Wallaroo Inference Server Tutorial: U-Net for Brain Segmentation

A demonstration of using the Computer Vision U-Net for Brain Segmentation model with Wallaroo Inference Server.

This tutorial and the assets can be downloaded as part of the Wallaroo Tutorials repository.

Wallaroo Inference Server: U-Net for Brain Segmentation

This notebook is used in conjunction with the Wallaroo Inference Server Free Edition for U-Net for Brain Segmentation. This provides a free Wallaroo license for performing inferences through the U-Net for Brain Segmentation model. The U-Net model is trained to detect lower-grade gliomas.

This tutorial demonstrates how to:

Prerequisites

  • A deployed Wallaroo Inference Server Free Edition with one of the following options:
    • Wallaroo.AI U-Net for Brain MRI Segmentation - x64
  • Access via port 8080 to the Wallaroo Inference Server Free Edition.

U-Net for Brain MRI Segmentation Model Schemas

Inputs

The U-Net for Brain MRI Segmentation Model takes the following inputs.

FieldTypeDescription
inputVariable length List(Float)Tensor in the shape (n, 3, 256, 256) float. This is the normalized pixel values of the 640x480 color image.

Outputs

The U-Net for Brain MRI Segmentation Model takes the following Outputs.

FieldTypeDescription
outputVariable length List(Float)A flattened numpy array of detected objects. When reshaped into a (1, 256, 256) returns where the bounding for a detected glioma.

Wallaroo Inference Server API Endpoints

The following HTTPS API endpoints are available for Wallaroo Inference Server.

Pipelines Endpoint

  • Endpoint: HTTPS GET /pipelines
  • Returns:
    • List of pipelines with the following fields.
      • id (String): The name of the pipeline.
      • status (String): The pipeline status. Running indicates the pipeline is available for inferences.

Pipeline Endpoint Example

The following demonstrates using curl to retrieve the Pipelines endpoint. Replace the HOSTNAME with the address of your Wallaroo Inference Server.

!curl HOSTNAME:8080/pipelines
{"pipelines":[{"id":"pt-unet","status":"Running"}]}

Models Endpoint

  • Endpoint: GET /models
  • Returns:
    • List of models with the following fields.
      • name (String): The name of the model.
      • sha (String): The sha hash of the model.
      • status (String): The model status. Running indicates the models is available for inferences.
      • version (String): The model version in UUID format.

Models Endpoint Example

The following demonstrates using curl to retrieve the Models endpoint. Replace the HOSTNAME with the address of your Wallaroo Inference Server.

!curl testboy.local:8080/models
{"models":[{"name":"pt-unet","version":"5a0f70fc-e33b-487c-80c9-24e23e5621b5","sha":"dfcd4b092e05564c36d28f1dfa7293f4233a384d81fe345c568b6bb68cafb0c8","status":"Running"}]}

Inference Endpoint

The following endpoints are available from the Wallaroo Server for Computer Vision Yolov8n deployment.

  • Endpoint: HTTPS POST /pipelines/hf-summarizer-standard
  • Headers:
    • Content-Type: application/vnd.apache.arrow.file: For Apache Arrow tables.
    • Content-Type: application/json; format=pandas-records: For pandas DataFrame in record format.
  • Input Parameters: The images must be in 256x256 format converted to a float tensor.DataFrame in application/json; format=pandas-records OR Apache Arrow table in application/vnd.apache.arrow.file with the shape (n, 3, 256, 256) then flattened, with the tensor values in the field input.
  • Returns:
    • Headers
      • Content-Type: application/json; format=pandas-records: pandas DataFrame in record format.
    • Data
      • time (Integer): The time since UNIX epoch.
      • in: The original input.
        • images: The flattened tensor values for the original image.
      • out: The outputs of the inference result separated by data type.
        • output: The float outputs for the inference. This list is flattened, and when reshaped into (1, 256, 256) that corresponds to a mask image showing the gliomas position.
      • check_failures (List[Integer]): Whether any validation checks were triggered. For more information, see Wallaroo SDK Essentials Guide: Pipeline Management: Anomaly Testing.
      • metadata: Additional data for the inference.
        • last_model: The model used for the inference.
          • model_name (String): The name of the model used.
          • model_sha (String): The sha of the model used.
        • pipeline_version (String): The pipeline version in UUID format.
        • elapsed (List[Integer]): A list of time in nanoseconds for:
          • [0] The time to serialize the input.
          • [1…n] How long each step took.
        • dropped (List): Any dropped input tables.

Inference Endpoint Example

The Wallaroo Inference Server accepts pandas DataFrame or Apache Arrow tables as inference inputs. The sample file ./data/TCGA_CS_4944.png is used as the sample input.

The following code segment demonstrates converting the image to a DataFrame.


input_image = Image.open(filename)
display(input_image)

# preprocess
m, s = np.mean(input_image, axis=(0, 1)), np.std(input_image, axis=(0, 1))
preprocess = transforms.Compose([
    transforms.ToTensor(),
    transforms.Normalize(mean=m, std=s),
])
input_tensor = preprocess(input_image)
input_batch = input_tensor.unsqueeze(0)

nimage = input_batch.detach().numpy()
nimage.shape

The following code segment demonstrates performing an inference through the Wallaroo Inference Server with the Yolov8n model deployed. Replace HOSTNAME with the hostname or IP address of your Wallaroo Inference Server instance.

# used to convert the Image into a numpy array
from PIL import Image
from torchvision import transforms

# used to convert the pandas DataFrame to an Arrow Table - 
# install with pip install wallaroo
import wallaroo

import pyarrow as pa
import numpy as np
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)
# convert the image to numpy arrays

filename = './data/TCGA_CS_4942_19970222_9.tif'

input_image = Image.open(filename)
display(input_image)

# preprocess
m, s = np.mean(input_image, axis=(0, 1)), np.std(input_image, axis=(0, 1))
preprocess = transforms.Compose([
    transforms.ToTensor(),
    transforms.Normalize(mean=m, std=s),
])
input_tensor = preprocess(input_image)
input_batch = input_tensor.unsqueeze(0)

nimage = input_batch.detach().numpy()
nimage.shape
(1, 3, 256, 256)
# convert to pandas DataFrame and save to JSON file

nimage = input_tensor.detach().numpy()

input_data = {
        "input": [nimage]
}
dataframe = pd.DataFrame(input_data)

# save dataframe to file for inference request later

dataframe.to_json('./data/inferencefile.df.json', orient="records")
# convert to arrow table and save to file

table = pa.table([
    pa.array(wallaroo.utils.flatten_np_array_columns(dataframe, 'input'))
], names=["input"])

# save arrow table to file

arrow_file_name = "./data/inferencefile.arrow"

with pa.OSFile(arrow_file_name, 'wb') as sink:
    with pa.ipc.new_file(sink, table.schema) as arrow_ipc:
        arrow_ipc.write(table)
        arrow_ipc.close()
!curl -X POST HOSTNAME:8080/pipelines/pt-unet \
    -H "Content-Type:application/json; format=pandas-records" \
    --data @./data/inferencefile.df.json
[{"time":1709827731788,"in":{"input":[[[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8025668263,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8028567433,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8025668263,-0.8028567433,-0.8024701476,-0.8024701476,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8024701476,-0.8025668263,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8028567433,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8028567433,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8024701476,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8025668263,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8024701476,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8028567433,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8024701476,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8024701476,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8024701476,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8024701476,-0.8025668263,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8024701476,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8023735285,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8024701476,-0.8025668263,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8025668263,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8024701476,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8024701476,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8025668263,-0.8024701476,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8025668263,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8028567433,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8024701476,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8024701476,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8025668263,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8024701476,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8024701476,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8024701476,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8025668263,-0.8025668263,-0.8028567433,-0.8025668263,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8024701476,-0.8026634455,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8025668263,-0.8023735285,-0.8025668263,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8026634455,-0.8022768497,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8024701476,-0.8020835519,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8024701476,-0.8022768497,-0.8026634455,-0.8025668263,-0.8025668263,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8025668263,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8024701476,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8025668263,-0.8027601242,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8025668263,-0.8026634455,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8026634455,-0.8023735285,-0.8025668263,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8024701476,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8025668263,-0.8022768497,-0.8023735285,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8028567433,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8024701476,-0.8026634455,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8023735285,-0.8021802306,-0.8020835519,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8025668263,-0.8026634455,-0.8025668263,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8024701476,-0.8024701476,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.801890254,-0.8022768497,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8024701476,-0.8025668263,-0.8025668263,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8019868731,-0.8013103604,-0.8009237051,-0.8006337881,-0.8006337881,-0.800827086,-0.8013103604,-0.8020835519,-0.8025668263,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8024701476,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8022768497,-0.8025668263,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8020835519,-0.8017935753,-0.8016969562,-0.8022768497,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8023735285,-0.8014069796,-0.8001505136,-0.7995705009,-0.799377203,-0.7992805243,-0.7992805243,-0.799377203,-0.7994738221,-0.7995705009,-0.7999572158,-0.8005371094,-0.800827086,-0.8014069796,-0.8022768497,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8024701476,-0.8023735285,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8021802306,-0.8022768497,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.801117003,-0.800827086,-0.8002471328,-0.8020835519,-0.8023735285,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8025668263,-0.8025668263,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8022768497,-0.8012136817,-0.7998605371,-0.799377203,-0.7995705009,-0.7991839051,-0.7991839051,-0.7997637987,-0.7997637987,-0.7995705009,-0.7996671796,-0.7996671796,-0.7997637987,-0.7995705009,-0.7995705009,-0.8002471328,-0.801117003,-0.8016969562,-0.8023735285,-0.8027601242,-0.8027601242,-0.8028567433,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8019868731,-0.801890254,-0.8015036583,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8016002774,-0.800827086,-0.801117003,-0.8020835519,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8024701476,-0.8025668263,-0.8028567433,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8024701476,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8024701476,-0.8024701476,-0.8025668263,-0.8025668263,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8024701476,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8021802306,-0.8015036583,-0.8006337881,-0.7995705009,-0.7994738221,-0.7997637987,-0.7991839051,-0.7984106541,-0.7979274392,-0.7969608903,-0.7960910201,-0.7963809967,-0.797347486,-0.7975407839,-0.7977340817,-0.7982173562,-0.7981207371,-0.7983140349,-0.7994738221,-0.8004404902,-0.8012136817,-0.8020835519,-0.8024701476,-0.8024701476,-0.8023735285,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8024701476,-0.8025668263,-0.8017935753,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.801117003,-0.7999572158,-0.8007304072,-0.8013103604,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8024701476,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8024701476,-0.8024701476,-0.8024701476,-0.8023735285,-0.8023735285,-0.8024701476,-0.8024701476,-0.8024701476,-0.8024701476,-0.8024701476,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8023735285,-0.8024701476,-0.8023735285,-0.8016969562,-0.800827086,-0.7997637987,-0.7992805243,-0.7989906073,-0.7979274392,-0.7964776158,-0.7954144478,-0.7947378755,-0.7929013968,-0.7911616564,-0.7909683585,-0.7906783819,-0.7904850841,-0.7916449308,-0.7931913733,-0.7943512797,-0.7952211499,-0.795994401,-0.7976374626,-0.7990872264,-0.7997637987,-0.8006337881,-0.8016969562,-0.8024701476,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8025668263,-0.8025668263,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8022768497,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8015036583,-0.8005371094,-0.8017935753,-0.801117003,-0.8023735285,-0.8023735285,-0.8019868731,-0.8022768497,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8024701476,-0.8025668263,-0.8026634455,-0.8027601242,-0.8024701476,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8028567433,-0.8024701476,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8024701476,-0.8025668263,-0.8024701476,-0.8026634455,-0.8026634455,-0.8024701476,-0.8023735285,-0.8020835519,-0.8019868731,-0.801890254,-0.8014069796,-0.8014069796,-0.8016969562,-0.8016969562,-0.8016969562,-0.801890254,-0.8020835519,-0.8023735285,-0.8025668263,-0.8024701476,-0.8023735285,-0.8024701476,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8025668263,-0.8024701476,-0.8022768497,-0.801890254,-0.801117003,-0.8001505136,-0.7992805243,-0.7986039519,-0.7978307605,-0.795994401,-0.7934813499,-0.7921282053,-0.7918382287,-0.7912583351,-0.7915482521,-0.7941579819,-0.7966709137,-0.7954144478,-0.7922248244,-0.7909683585,-0.7910650373,-0.7922248244,-0.7947378755,-0.7958977222,-0.7952211499,-0.7963809967,-0.7982173562,-0.7990872264,-0.8001505136,-0.801117003,-0.801890254,-0.8025668263,-0.8025668263,-0.8023735285,-0.8025668263,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8024701476,-0.8024701476,-0.8025668263,-0.8025668263,-0.8025668263,-0.8024701476,-0.8025668263,-0.8025668263,-0.8021802306,-0.8020835519,-0.8024701476,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8024701476,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8024701476,-0.8022768497,-0.8017935753,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8015036583,-0.7981207371,-0.7991839051,-0.7997637987,-0.801890254,-0.8022768497,-0.8027601242,-0.8025668263,-0.8023735285,-0.8023735285,-0.8024701476,-0.8025668263,-0.8026634455,-0.8027601242,-0.8024701476,-0.8024701476,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8024701476,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8028567433,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8024701476,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8025668263,-0.8024701476,-0.8025668263,-0.8022768497,-0.8020835519,-0.8021802306,-0.801890254,-0.8017935753,-0.8016969562,-0.8013103604,-0.8009237051,-0.8006337881,-0.8005371094,-0.8005371094,-0.8005371094,-0.8005371094,-0.800827086,-0.8010203838,-0.801117003,-0.8014069796,-0.8016969562,-0.8019868731,-0.8020835519,-0.801890254,-0.8016969562,-0.801890254,-0.8020835519,-0.8020835519,-0.8021802306,-0.8022768497,-0.8022768497,-0.8023735285,-0.8024701476,-0.8021802306,-0.8016969562,-0.8013103604,-0.8007304072,-0.799377203,-0.7979274392,-0.797057569,-0.7958977222,-0.7935779691,-0.7920315266,-0.7924181223,-0.7932879925,-0.7940613031,-0.7963809967,-0.7997637987,-0.8012136817,-0.8014069796,-0.801890254,-0.8015036583,-0.7992805243,-0.7955111265,-0.7930946946,-0.7945445776,-0.7958010435,-0.7942546606,-0.7941579819,-0.7958977222,-0.7971541882,-0.7982173562,-0.799377203,-0.8001505136,-0.800827086,-0.8015036583,-0.8020835519,-0.8023735285,-0.8024701476,-0.8024701476,-0.8023735285,-0.8025668263,-0.8025668263,-0.8025668263,-0.8024701476,-0.8024701476,-0.8025668263,-0.8025668263,-0.8024701476,-0.8023735285,-0.8022768497,-0.8019868731,-0.801890254,-0.801890254,-0.801890254,-0.801890254,-0.8019868731,-0.8020835519,-0.8021802306,-0.8021802306,-0.8020835519,-0.8019868731,-0.8022768497,-0.8024701476,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8024701476,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8024701476,-0.8024701476,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8024701476,-0.8025668263,-0.8026634455,-0.8025668263,-0.8024701476,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8025668263,-0.8024701476,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8014069796,-0.8019868731,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8001505136,-0.7972508669,-0.7988939285,-0.800827086,-0.8014069796,-0.8017935753,-0.8019868731,-0.8021802306,-0.8023735285,-0.8027601242,-0.8025668263,-0.8022768497,-0.8023735285,-0.8025668263,-0.8025668263,-0.8023735285,-0.8023735285,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8024701476,-0.8024701476,-0.8025668263,-0.8025668263,-0.8024701476,-0.8025668263,-0.8024701476,-0.8024701476,-0.8025668263,-0.8024701476,-0.8025668263,-0.8025668263,-0.8025668263,-0.8025668263,-0.8024701476,-0.8023735285,-0.8023735285,-0.8022768497,-0.8021802306,-0.8023735285,-0.8023735285,-0.8020835519,-0.801890254,-0.8014069796,-0.800827086,-0.8002471328,-0.7998605371,-0.7997637987,-0.7995705009,-0.7995705009,-0.7995705009,-0.7992805243,-0.7992805243,-0.7994738221,-0.7994738221,-0.7997637987,-0.8002471328,-0.8003438115,-0.8002471328,-0.8002471328,-0.8003438115,-0.8004404902,-0.8003438115,-0.8005371094,-0.8006337881,-0.8005371094,-0.8006337881,-0.800827086,-0.8010203838,-0.800827086,-0.8002471328,-0.799377203,-0.7981207371,-0.7971541882,-0.7966709137,-0.7945445776,-0.7907750607,-0.7893252969,-0.7910650373,-0.7938680053,-0.7968642116,-0.7998605371,-0.8019868731,-0.8021802306,-0.8010203838,-0.8000538349,-0.8003438115,-0.8016002774,-0.8024701476,-0.8016969562,-0.7987973094,-0.7952211499,-0.7936747074,-0.793964684,-0.7931913733,-0.7929013968,-0.7948345542,-0.7966709137,-0.7975407839,-0.7987973094,-0.7996671796,-0.8001505136,-0.8010203838,-0.8016002774,-0.801890254,-0.8019868731,-0.8020835519,-0.8021802306,-0.8022768497,-0.8023735285,-0.8023735285,-0.8024701476,-0.8024701476,-0.8021802306,-0.8019868731,-0.8017935753,-0.8016969562,-0.8016002774,-0.8014069796,-0.8012136817,-0.801117003,-0.801117003,-0.801117003,-0.8012136817,-0.8014069796,-0.8016969562,-0.8017935753,-0.8017935753,-0.8016969562,-0.8017935753,-0.8021802306,-0.8024701476,-0.8024701476,-0.8025668263,-0.8025668263,-0.8025668263,-0.8026634455,-0.8024701476,-0.8024701476,-0.8026634455,-0.8025668263,-0.8024701476,-0.8024701476,-0.8023735285,-0.8025668263,-0.8026634455,-0.8024701476,-0.8022768497,-0.8025668263,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8024701476,-0.8025668263,-0.8023735285,-0.8023735285,-0.8024701476,-0.8024701476,-0.8025668263,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8024701476,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8026634455,-0.8024701476,-0.8024701476,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8024701476,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8024701476,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8025668263,-0.8028567433,-0.8023735285,-0.8023735285,-0.8026634455,-0.8021802306,-0.8016002774,-0.8016969562,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8013103604,-0.800827086,-0.8022768497,-0.8025668263,-0.8025668263,-0.8027601242,-0.8023735285,-0.8022768497,-0.8022768497,-0.8023735285,-0.8025668263,-0.8023735285,-0.8021802306,-0.8024701476,-0.8026634455,-0.8025668263,-0.8023735285,-0.8025668263,-0.8028567433,-0.8028567433,-0.8025668263,-0.8024701476,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8024701476,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8024701476,-0.8025668263,-0.8026634455,-0.8025668263,-0.8023735285,-0.801890254,-0.8010203838,-0.8000538349,-0.799377203,-0.7987006307,-0.7981207371,-0.7979274392,-0.7980240583,-0.7979274392,-0.7980240583,-0.7981207371,-0.7981207371,-0.7980240583,-0.7979274392,-0.7979274392,-0.7981207371,-0.7981207371,-0.7982173562,-0.7985073328,-0.7984106541,-0.7984106541,-0.7985073328,-0.7985073328,-0.7985073328,-0.7985073328,-0.7981207371,-0.7980240583,-0.7986039519,-0.7990872264,-0.7988939285,-0.7985073328,-0.7978307605,-0.7966709137,-0.7953178287,-0.7938680053,-0.791451633,-0.7889387012,-0.789131999,-0.7924181223,-0.7965742946,-0.8000538349,-0.8015036583,-0.8012136817,-0.8013103604,-0.8016969562,-0.8016969562,-0.8015036583,-0.8016969562,-0.8017935753,-0.8017935753,-0.801890254,-0.7998605371,-0.7957044244,-0.7929013968,-0.7918382287,-0.7917416096,-0.7928047776,-0.793964684,-0.7950278521,-0.7968642116,-0.7984106541,-0.7995705009,-0.8005371094,-0.8005371094,-0.7998605371,-0.7997637987,-0.8000538349,-0.8000538349,-0.7999572158,-0.8000538349,-0.8001505136,-0.8003438115,-0.8005371094,-0.8003438115,-0.7999572158,-0.7997637987,-0.7995705009,-0.799377203,-0.7989906073,-0.7987973094,-0.7987006307,-0.7988939285,-0.7991839051,-0.799377203,-0.7991839051,-0.799377203,-0.7999572158,-0.8003438115,-0.8006337881,-0.8010203838,-0.8012136817,-0.8014069796,-0.8016969562,-0.801890254,-0.8019868731,-0.8020835519,-0.8021802306,-0.8022768497,-0.8022768497,-0.8023735285,-0.8023735285,-0.8021802306,-0.8021802306,-0.8022768497,-0.8021802306,-0.8022768497,-0.8022768497,-0.8021802306,-0.8022768497,-0.8021802306,-0.8020835519,-0.8022768497,-0.8024701476,-0.8024701476,-0.8023735285,-0.8023735285,-0.8021802306,-0.8021802306,-0.8023735285,-0.8024701476,-0.8023735285,-0.8023735285,-0.8024701476,-0.8025668263,-0.8024701476,-0.8025668263,-0.8026634455,-0.8026634455,-0.8024701476,-0.8025668263,-0.8023735285,-0.8023735285,-0.8027601242,-0.8027601242,-0.8024701476,-0.8023735285,-0.8027601242,-0.8025668263,-0.8025668263,-0.8025668263,-0.8024701476,-0.8026634455,-0.8027601242,-0.8023735285,-0.8024701476,-0.8026634455,-0.8024701476,-0.8025668263,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8024701476,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8025668263,-0.8024701476,-0.8026634455,-0.8017935753,-0.801117003,-0.8020835519,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8021802306,-0.8019868731,-0.801890254,-0.8023735285,-0.801890254,-0.8025668263,-0.8025668263,-0.8025668263,-0.8024701476,-0.8026634455,-0.8023735285,-0.8026634455,-0.8027601242,-0.8024701476,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8024701476,-0.8025668263,-0.8026634455,-0.8024701476,-0.8026634455,-0.8027601242,-0.8026634455,-0.8024701476,-0.8024701476,-0.8026634455,-0.8025668263,-0.8023735285,-0.8024701476,-0.8024701476,-0.8023735285,-0.8023735285,-0.8023735285,-0.8024701476,-0.8026634455,-0.8026634455,-0.8024701476,-0.8025668263,-0.8027601242,-0.8027601242,-0.8025668263,-0.8024701476,-0.8025668263,-0.8024701476,-0.8024701476,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8024701476,-0.8025668263,-0.8025668263,-0.8025668263,-0.8025668263,-0.8025668263,-0.8024701476,-0.8025668263,-0.8025668263,-0.8024701476,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8024701476,-0.8021802306,-0.8016969562,-0.8006337881,-0.7990872264,-0.7982173562,-0.7980240583,-0.7979274392,-0.7979274392,-0.7979274392,-0.7978307605,-0.7977340817,-0.7980240583,-0.7981207371,-0.7979274392,-0.7979274392,-0.7981207371,-0.7980240583,-0.7980240583,-0.7983140349,-0.7984106541,-0.7983140349,-0.7984106541,-0.7984106541,-0.7984106541,-0.7985073328,-0.7987973094,-0.7987973094,-0.7985073328,-0.7985073328,-0.7987006307,-0.7987006307,-0.7983140349,-0.7981207371,-0.7983140349,-0.7981207371,-0.7966709137,-0.7957044244,-0.7950278521,-0.7927080989,-0.7904850841,-0.7920315266,-0.7964776158,-0.7997637987,-0.8005371094,-0.800827086,-0.8013103604,-0.801117003,-0.8012136817,-0.8016969562,-0.8016969562,-0.8015036583,-0.8017935753,-0.8016002774,-0.8007304072,-0.8004404902,-0.7988939285,-0.7944479585,-0.7913549542,-0.7920315266,-0.7930946946,-0.7933846712,-0.7942546606,-0.7957044244,-0.797347486,-0.7985073328,-0.7987973094,-0.7987006307,-0.7983140349,-0.7979274392,-0.7981207371,-0.7984106541,-0.7987006307,-0.7986039519,-0.7984106541,-0.7985073328,-0.7985073328,-0.7983140349,-0.7980240583,-0.7975407839,-0.7971541882,-0.797057569,-0.7971541882,-0.7972508669,-0.7972508669,-0.7974441648,-0.7977340817,-0.7978307605,-0.7976374626,-0.7975407839,-0.7978307605,-0.7985073328,-0.7991839051,-0.8000538349,-0.8007304072,-0.801117003,-0.8013103604,-0.8015036583,-0.8016969562,-0.8019868731,-0.8019868731,-0.801890254,-0.8019868731,-0.8020835519,-0.8021802306,-0.8022768497,-0.8021802306,-0.8019868731,-0.8020835519,-0.8020835519,-0.8020835519,-0.8020835519,-0.801890254,-0.8019868731,-0.8019868731,-0.8020835519,-0.8022768497,-0.8021802306,-0.8020835519,-0.8021802306,-0.8022768497,-0.8022768497,-0.8022768497,-0.8021802306,-0.8021802306,-0.8021802306,-0.8021802306,-0.8021802306,-0.8022768497,-0.8023735285,-0.8025668263,-0.8024701476,-0.8022768497,-0.8023735285,-0.8025668263,-0.8023735285,-0.8022768497,-0.8022768497,-0.8021802306,-0.8021802306,-0.8023735285,-0.8024701476,-0.8023735285,-0.8024701476,-0.8027601242,-0.8025668263,-0.8024701476,-0.8024701476,-0.8022768497,-0.8022768497,-0.8023735285,-0.8022768497,-0.8023735285,-0.8025668263,-0.8025668263,-0.8027601242,-0.8024701476,-0.8023735285,-0.8023735285,-0.8023735285,-0.8023735285,-0.8023735285,-0.8024701476,-0.8023735285,-0.8024701476,-0.8025668263,-0.8024701476,-0.8025668263,-0.8024701476,-0.8020835519,-0.8021802306,-0.8023735285,-0.8017935753,-0.8009237051,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8016969562,-0.8016969562,-0.8023735285,-0.8023735285,-0.8025668263,-0.8027601242,-0.8026634455,-0.8025668263,-0.8024701476,-0.8023735285,-0.8024701476,-0.8024701476,-0.8021802306,-0.8022768497,-0.8023735285,-0.8023735285,-0.8025668263,-0.8025668263,-0.8023735285,-0.8023735285,-0.8023735285,-0.8023735285,-0.8023735285,-0.8022768497,-0.8021802306,-0.8021802306,-0.8020835519,-0.8022768497,-0.8025668263,-0.8025668263,-0.8024701476,-0.8024701476,-0.8023735285,-0.8022768497,-0.8022768497,-0.8021802306,-0.8019868731,-0.8020835519,-0.8023735285,-0.8024701476,-0.8024701476,-0.8025668263,-0.8023735285,-0.8021802306,-0.8022768497,-0.8024701476,-0.8024701476,-0.8024701476,-0.8023735285,-0.8023735285,-0.8022768497,-0.8021802306,-0.8022768497,-0.8023735285,-0.8022768497,-0.8020835519,-0.8022768497,-0.8023735285,-0.8022768497,-0.8022768497,-0.8023735285,-0.8023735285,-0.8023735285,-0.8023735285,-0.8023735285,-0.8023735285,-0.8023735285,-0.8023735285,-0.8023735285,-0.8023735285,-0.8024701476,-0.8023735285,-0.801890254,-0.8013103604,-0.8007304072,-0.799377203,-0.7980240583,-0.7976374626,-0.7979274392,-0.7981207371,-0.7981207371,-0.7979274392,-0.7978307605,-0.7978307605,-0.7977340817,-0.7976374626,-0.7978307605,-0.7979274392,-0.7977340817,-0.7977340817,-0.7977340817,-0.7978307605,-0.7982173562,-0.7985073328,-0.7985073328,-0.7986039519,-0.7987973094,-0.7988939285,-0.7987973094,-0.7990872264,-0.7995705009,-0.7995705009,-0.7996671796,-0.7997637987,-0.7995705009,-0.7992805243,-0.7988939285,-0.7982173562,-0.7978307605,-0.7975407839,-0.7971541882,-0.7958010435,-0.7929013968,-0.7924181223,-0.7966709137,-0.8003438115,-0.8009237051,-0.8007304072,-0.8009237051,-0.8005371094,-0.7998605371,-0.7997637987,-0.8005371094,-0.801117003,-0.8007304072,-0.8004404902,-0.8010203838,-0.8014069796,-0.8005371094,-0.7995705009,-0.7975407839,-0.7944479585,-0.7940613031,-0.7958977222,-0.795994401,-0.7953178287,-0.796284318,-0.797057569,-0.7971541882,-0.7980240583,-0.7987973094,-0.7991839051,-0.7989906073,-0.7987006307,-0.7988939285,-0.7989906073,-0.7987973094,-0.7987006307,-0.7983140349,-0.7979274392,-0.7978307605,-0.7978307605,-0.7977340817,-0.7978307605,-0.7978307605,-0.7978307605,-0.7981207371,-0.7982173562,-0.7979274392,-0.7976374626,-0.7977340817,-0.7979274392,-0.7980240583,-0.7978307605,-0.7977340817,-0.7978307605,-0.7986039519,-0.7995705009,-0.8003438115,-0.8010203838,-0.8016969562,-0.8015036583,-0.8017935753,-0.8020835519,-0.8017935753,-0.801890254,-0.8019868731,-0.8020835519,-0.8021802306,-0.8021802306,-0.8019868731,-0.8019868731,-0.8020835519,-0.8020835519,-0.8019868731,-0.8019868731,-0.8020835519,-0.8019868731,-0.801890254,-0.8020835519,-0.8022768497,-0.8021802306,-0.8020835519,-0.8020835519,-0.8021802306,-0.8021802306,-0.8021802306,-0.8021802306,-0.8020835519,-0.8019868731,-0.8021802306,-0.8021802306,-0.8021802306,-0.8020835519,-0.8021802306,-0.8022768497,-0.8022768497,-0.8023735285,-0.8023735285,-0.8021802306,-0.8020835519,-0.8021802306,-0.8022768497,-0.8022768497,-0.8020835519,-0.801890254,-0.8021802306,-0.8021802306,-0.8021802306,-0.8023735285,-0.8021802306,-0.8020835519,-0.8021802306,-0.8022768497,-0.8023735285,-0.8024701476,-0.8022768497,-0.8022768497,-0.8023735285,-0.8021802306,-0.801890254,-0.8019868731,-0.8020835519,-0.8021802306,-0.8021802306,-0.8020835519,-0.8022768497,-0.8023735285,-0.8022768497,-0.8022768497,-0.8023735285,-0.8022768497,-0.8019868731,-0.8019868731,-0.8017935753,-0.801117003,-0.8012136817,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8022768497,-0.8014069796,-0.8019868731,-0.8024701476,-0.8022768497,-0.8016969562,-0.8019868731,-0.8021802306,-0.8021802306,-0.8022768497,-0.8020835519,-0.8020835519,-0.8021802306,-0.8021802306,-0.8020835519,-0.8021802306,-0.8025668263,-0.8026634455,-0.8024701476,-0.8023735285,-0.8024701476,-0.8025668263,-0.8025668263,-0.8024701476,-0.8022768497,-0.8021802306,-0.8022768497,-0.8022768497,-0.8025668263,-0.8027601242,-0.8024701476,-0.8023735285,-0.8024701476,-0.8023735285,-0.8022768497,-0.8022768497,-0.8021802306,-0.8022768497,-0.8024701476,-0.8024701476,-0.8021802306,-0.8022768497,-0.8023735285,-0.8022768497,-0.8021802306,-0.8024701476,-0.8026634455,-0.8026634455,-0.8025668263,-0.8023735285,-0.8023735285,-0.8023735285,-0.8022768497,-0.8021802306,-0.8022768497,-0.8024701476,-0.8025668263,-0.8024701476,-0.8022768497,-0.8023735285,-0.8025668263,-0.8024701476,-0.8022768497,-0.8022768497,-0.8023735285,-0.8024701476,-0.8022768497,-0.8022768497,-0.8025668263,-0.8025668263,-0.801890254,-0.8013103604,-0.801117003,-0.8000538349,-0.7985073328,-0.7980240583,-0.7979274392,-0.7980240583,-0.7982173562,-0.7982173562,-0.7980240583,-0.7981207371,-0.7980240583,-0.7979274392,-0.7979274392,-0.7979274392,-0.7977340817,-0.7978307605,-0.7981207371,-0.7980240583,-0.7979274392,-0.7978307605,-0.7978307605,-0.7977340817,-0.7977340817,-0.797347486,-0.7965742946,-0.7963809967,-0.7964776158,-0.7964776158,-0.7968642116,-0.7976374626,-0.7980240583,-0.7984106541,-0.7990872264,-0.7996671796,-0.7994738221,-0.7985073328,-0.7979274392,-0.7986039519,-0.7984106541,-0.7953178287,-0.7933846712,-0.7964776158,-0.8004404902,-0.8010203838,-0.8006337881,-0.8010203838,-0.800827086,-0.7999572158,-0.7994738221,-0.7998605371,-0.8005371094,-0.8004404902,-0.8002471328,-0.8004404902,-0.800827086,-0.8013103604,-0.800827086,-0.8003438115,-0.7998605371,-0.7980240583,-0.7967675924,-0.797347486,-0.7981207371,-0.7988939285,-0.7985073328,-0.797057569,-0.7974441648,-0.7986039519,-0.7989906073,-0.799377203,-0.7996671796,-0.7998605371,-0.7996671796,-0.7991839051,-0.7990872264,-0.7990872264,-0.7987006307,-0.7981207371,-0.7979274392,-0.7977340817,-0.7974441648,-0.7972508669,-0.797347486,-0.7974441648,-0.7975407839,-0.7977340817,-0.7981207371,-0.7980240583,-0.7980240583,-0.7982173562,-0.7981207371,-0.7979274392,-0.7976374626,-0.7976374626,-0.7977340817,-0.7974441648,-0.7980240583,-0.7992805243,-0.8005371094,-0.8015036583,-0.801890254,-0.8016002774,-0.8021802306,-0.8023735285,-0.8021802306,-0.8019868731,-0.8019868731,-0.8019868731,-0.8020835519,-0.8022768497,-0.8022768497,-0.8021802306,-0.8021802306,-0.8020835519,-0.801890254,-0.8017935753,-0.801890254,-0.8021802306,-0.8023735285,-0.8023735285,-0.8020835519,-0.8020835519,-0.8021802306,-0.8021802306,-0.8021802306,-0.8021802306,-0.8020835519,-0.8019868731,-0.8019868731,-0.8020835519,-0.8019868731,-0.801890254,-0.8021802306,-0.8023735285,-0.8021802306,-0.8022768497,-0.8024701476,-0.8023735285,-0.8021802306,-0.8021802306,-0.8023735285,-0.8024701476,-0.8023735285,-0.8022768497,-0.8020835519,-0.8022768497,-0.8022768497,-0.8021802306,-0.8020835519,-0.8020835519,-0.8020835519,-0.8020835519,-0.8019868731,-0.8019868731,-0.8020835519,-0.8021802306,-0.8022768497,-0.8024701476,-0.8023735285,-0.8021802306,-0.8020835519,-0.8021802306,-0.8022768497,-0.8022768497,-0.8024701476,-0.8022768497,-0.8023735285,-0.8025668263,-0.8024701476,-0.8022768497,-0.8021802306,-0.8023735285,-0.8027601242,-0.8024701476,-0.8023735285,-0.8006337881,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.801890254,-0.8024701476,-0.8023735285,-0.8019868731,-0.8024701476,-0.8024701476,-0.8025668263,-0.8026634455,-0.8025668263,-0.8023735285,-0.8021802306,-0.8022768497,-0.8023735285,-0.8022768497,-0.8022768497,-0.8025668263,-0.8025668263,-0.8025668263,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8026634455,-0.8024701476,-0.8024701476,-0.8023735285,-0.8022768497,-0.8025668263,-0.8026634455,-0.8024701476,-0.8025668263,-0.8026634455,-0.8024701476,-0.8025668263,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8025668263,-0.8024701476,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8024701476,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8024701476,-0.8024701476,-0.8025668263,-0.8027601242,-0.8024701476,-0.8024701476,-0.8019868731,-0.8010203838,-0.8002471328,-0.7991839051,-0.7981207371,-0.7983140349,-0.7987973094,-0.7987006307,-0.7984106541,-0.7981207371,-0.7979274392,-0.7981207371,-0.7981207371,-0.7978307605,-0.7976374626,-0.7977340817,-0.7979274392,-0.7979274392,-0.7979274392,-0.7981207371,-0.7980240583,-0.7975407839,-0.7968642116,-0.795994401,-0.7950278521,-0.7940613031,-0.7929013968,-0.7920315266,-0.7921282053,-0.792514801,-0.7924181223,-0.7921282053,-0.7924181223,-0.7929013968,-0.7934813499,-0.7950278521,-0.7976374626,-0.7992805243,-0.7987973094,-0.7982173562,-0.7986039519,-0.7981207371,-0.797057569,-0.7980240583,-0.8004404902,-0.8015036583,-0.8009237051,-0.8006337881,-0.8010203838,-0.8013103604,-0.8007304072,-0.7990872264,-0.7992805243,-0.8007304072,-0.8001505136,-0.7992805243,-0.8003438115,-0.8012136817,-0.8003438115,-0.7985073328,-0.7984106541,-0.8000538349,-0.8000538349,-0.7984106541,-0.7972508669,-0.7977340817,-0.7987006307,-0.7979274392,-0.7971541882,-0.7985073328,-0.799377203,-0.7990872264,-0.7991839051,-0.7990872264,-0.7985073328,-0.7975407839,-0.7967675924,-0.7965742946,-0.797057569,-0.797347486,-0.797347486,-0.7976374626,-0.7981207371,-0.7981207371,-0.7981207371,-0.7982173562,-0.7980240583,-0.7978307605,-0.7978307605,-0.7980240583,-0.7980240583,-0.7981207371,-0.7982173562,-0.7982173562,-0.7983140349,-0.7985073328,-0.7984106541,-0.7979274392,-0.7975407839,-0.7974441648,-0.7974441648,-0.7980240583,-0.7997637987,-0.8013103604,-0.801890254,-0.8021802306,-0.8024701476,-0.8024701476,-0.8023735285,-0.8022768497,-0.8020835519,-0.8019868731,-0.8020835519,-0.8020835519,-0.8020835519,-0.8020835519,-0.8020835519,-0.8021802306,-0.8020835519,-0.8020835519,-0.8021802306,-0.8022768497,-0.8022768497,-0.8020835519,-0.801890254,-0.8021802306,-0.8023735285,-0.8023735285,-0.8021802306,-0.8021802306,-0.8022768497,-0.8022768497,-0.8022768497,-0.8021802306,-0.8020835519,-0.8021802306,-0.8022768497,-0.8020835519,-0.8020835519,-0.8022768497,-0.8023735285,-0.8023735285,-0.8021802306,-0.8022768497,-0.8024701476,-0.8023735285,-0.8022768497,-0.8022768497,-0.8023735285,-0.8023735285,-0.8022768497,-0.8022768497,-0.8023735285,-0.8022768497,-0.8021802306,-0.8022768497,-0.8020835519,-0.801890254,-0.8021802306,-0.8021802306,-0.8021802306,-0.8021802306,-0.8019868731,-0.8021802306,-0.8022768497,-0.8022768497,-0.8022768497,-0.8022768497,-0.8023735285,-0.8022768497,-0.8022768497,-0.8023735285,-0.8022768497,-0.8024701476,-0.8027601242,-0.8025668263,-0.8017935753,-0.8021802306,-0.8002471328,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8006337881,-0.8000538349,-0.8025668263,-0.8025668263,-0.8020835519,-0.8023735285,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8024701476,-0.8025668263,-0.8026634455,-0.8025668263,-0.8024701476,-0.8023735285,-0.8024701476,-0.8024701476,-0.8022768497,-0.8024701476,-0.8025668263,-0.8024701476,-0.8023735285,-0.8025668263,-0.8024701476,-0.8022768497,-0.8023735285,-0.8024701476,-0.8023735285,-0.8024701476,-0.8024701476,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8024701476,-0.8024701476,-0.8024701476,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8024701476,-0.8022768497,-0.8021802306,-0.8022768497,-0.8023735285,-0.8024701476,-0.8025668263,-0.8025668263,-0.8027601242,-0.8025668263,-0.8024701476,-0.8025668263,-0.8025668263,-0.8024701476,-0.8024701476,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8026634455,-0.8025668263,-0.8022768497,-0.8014069796,-0.8002471328,-0.7995705009,-0.7987973094,-0.7984106541,-0.7988939285,-0.7989906073,-0.7979274392,-0.797057569,-0.7960910201,-0.7954144478,-0.7958977222,-0.7965742946,-0.797057569,-0.7972508669,-0.7975407839,-0.7980240583,-0.7986039519,-0.7985073328,-0.7982173562,-0.7980240583,-0.7976374626,-0.7971541882,-0.7965742946,-0.7952211499,-0.7931913733,-0.7915482521,-0.7908717394,-0.7909683585,-0.7912583351,-0.791451633,-0.7915482521,-0.791451633,-0.7913549542,-0.7910650373,-0.7903884649,-0.7907750607,-0.7942546606,-0.7982173562,-0.7985073328,-0.7969608903,-0.7969608903,-0.7969608903,-0.7975407839,-0.8000538349,-0.801117003,-0.8006337881,-0.8007304072,-0.8004404902,-0.7998605371,-0.8000538349,-0.7997637987,-0.7986039519,-0.7988939285,-0.7998605371,-0.7997637987,-0.7998605371,-0.8002471328,-0.7997637987,-0.7984106541,-0.7965742946,-0.7961876988,-0.7983140349,-0.8004404902,-0.8005371094,-0.7986039519,-0.7963809967,-0.7947378755,-0.7944479585,-0.7965742946,-0.7990872264,-0.7994738221,-0.7977340817,-0.7952211499,-0.7937713861,-0.7926114798,-0.7913549542,-0.7908717394,-0.7910650373,-0.7912583351,-0.7918382287,-0.7922248244,-0.7929013968,-0.7946412563,-0.7958977222,-0.7967675924,-0.7978307605,-0.7982173562,-0.7982173562,-0.7982173562,-0.7980240583,-0.7981207371,-0.7981207371,-0.7978307605,-0.7979274392,-0.7981207371,-0.7982173562,-0.7984106541,-0.7983140349,-0.7983140349,-0.7983140349,-0.7982173562,-0.7980240583,-0.7977340817,-0.7985073328,-0.8004404902,-0.8017935753,-0.8022768497,-0.8021802306,-0.8022768497,-0.8024701476,-0.8022768497,-0.8019868731,-0.8019868731,-0.8020835519,-0.8021802306,-0.8020835519,-0.8019868731,-0.8019868731,-0.8020835519,-0.8020835519,-0.8020835519,-0.801890254,-0.8020835519,-0.8023735285,-0.8021802306,-0.8019868731,-0.8021802306,-0.8022768497,-0.8021802306,-0.8020835519,-0.8022768497,-0.8021802306,-0.8021802306,-0.8022768497,-0.8021802306,-0.8020835519,-0.8021802306,-0.8021802306,-0.8020835519,-0.8022768497,-0.8024701476,-0.8024701476,-0.8022768497,-0.8020835519,-0.8021802306,-0.8023735285,-0.8021802306,-0.8020835519,-0.8021802306,-0.8022768497,-0.8022768497,-0.8022768497,-0.8024701476,-0.8025668263,-0.8023735285,-0.8022768497,-0.8022768497,-0.8021802306,-0.8022768497,-0.8024701476,-0.8022768497,-0.8020835519,-0.8022768497,-0.8024701476,-0.8023735285,-0.8024701476,-0.8026634455,-0.8024701476,-0.8022768497,-0.8024701476,-0.8023735285,-0.8021802306,-0.8025668263,-0.8023735285,-0.8026634455,-0.8024701476,-0.8016002774,-0.8017935753,-0.8016002774,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.801890254,-0.801117003,-0.8024701476,-0.8024701476,-0.8023735285,-0.8022768497,-0.8022768497,-0.8025668263,-0.8025668263,-0.8022768497,-0.8021802306,-0.8024701476,-0.8025668263,-0.8024701476,-0.8022768497,-0.8023735285,-0.8024701476,-0.8022768497,-0.8022768497,-0.8022768497,-0.8022768497,-0.8020835519,-0.8021802306,-0.8024701476,-0.8022768497,-0.8021802306,-0.8023735285,-0.8024701476,-0.8022768497,-0.8023735285,-0.8024701476,-0.8025668263,-0.8025668263,-0.8022768497,-0.8021802306,-0.8023735285,-0.8023735285,-0.8023735285,-0.8023735285,-0.8024701476,-0.8025668263,-0.8025668263,-0.8024701476,-0.8023735285,-0.8022768497,-0.8021802306,-0.8020835519,-0.8020835519,-0.8023735285,-0.8025668263,-0.8025668263,-0.8025668263,-0.8024701476,-0.8025668263,-0.8024701476,-0.8022768497,-0.8023735285,-0.8023735285,-0.8024701476,-0.8025668263,-0.8024701476,-0.8024701476,-0.8024701476,-0.8023735285,-0.8024701476,-0.8023735285,-0.8022768497,-0.8015036583,-0.8000538349,-0.7991839051,-0.7985073328,-0.7985073328,-0.7992805243,-0.7982173562,-0.7958977222,-0.7946412563,-0.7942546606,-0.7943512797,-0.7954144478,-0.7967675924,-0.7976374626,-0.7980240583,-0.7981207371,-0.7987006307,-0.7991839051,-0.7992805243,-0.7991839051,-0.7989906073,-0.7986039519,-0.7983140349,-0.7983140349,-0.7977340817,-0.7963809967,-0.7949311733,-0.7937713861,-0.7929980755,-0.7924181223,-0.7916449308,-0.7910650373,-0.791451633,-0.7923215032,-0.7928047776,-0.7926114798,-0.7924181223,-0.791451633,-0.7908717394,-0.7943512797,-0.7982173562,-0.7969608903,-0.7950278521,-0.797057569,-0.799377203,-0.8000538349,-0.8000538349,-0.8002471328,-0.8007304072,-0.8004404902,-0.799377203,-0.7979274392,-0.7954144478,-0.7943512797,-0.7954144478,-0.7958010435,-0.7965742946,-0.7982173562,-0.7979274392,-0.7974441648,-0.7986039519,-0.7987006307,-0.7975407839,-0.797057569,-0.7988939285,-0.8014069796,-0.8007304072,-0.7964776158,-0.7924181223,-0.7928047776,-0.7964776158,-0.7979274392,-0.7966709137,-0.7952211499,-0.7935779691,-0.7915482521,-0.7905817628,-0.7902917862,-0.7902917862,-0.7899051905,-0.7892286181,-0.7890353203,-0.7895185947,-0.7903884649,-0.7918382287,-0.7933846712,-0.7947378755,-0.795994401,-0.797057569,-0.7978307605,-0.7982173562,-0.7984106541,-0.7983140349,-0.7980240583,-0.7976374626,-0.797347486,-0.797347486,-0.797347486,-0.797347486,-0.7975407839,-0.7976374626,-0.7979274392,-0.7985073328,-0.7987006307,-0.7980240583,-0.7974441648,-0.7981207371,-0.7999572158,-0.8013103604,-0.801890254,-0.8023735285,-0.8025668263,-0.8022768497,-0.8022768497,-0.8022768497,-0.8022768497,-0.8022768497,-0.8021802306,-0.8021802306,-0.8022768497,-0.8022768497,-0.8022768497,-0.8020835519,-0.8020835519,-0.8021802306,-0.8021802306,-0.8020835519,-0.8020835519,-0.8020835519,-0.8022768497,-0.8023735285,-0.8021802306,-0.8021802306,-0.8023735285,-0.8020835519,-0.8020835519,-0.8022768497,-0.8020835519,-0.8021802306,-0.8022768497,-0.8021802306,-0.8022768497,-0.8022768497,-0.8022768497,-0.8022768497,-0.8021802306,-0.8020835519,-0.8023735285,-0.8023735285,-0.8023735285,-0.8023735285,-0.8022768497,-0.8021802306,-0.8021802306,-0.8019868731,-0.8021802306,-0.8023735285,-0.8021802306,-0.8020835519,-0.8022768497,-0.8019868731,-0.8019868731,-0.8023735285,-0.8022768497,-0.8020835519,-0.8020835519,-0.8022768497,-0.8023735285,-0.8024701476,-0.8023735285,-0.8021802306,-0.8022768497,-0.8022768497,-0.8022768497,-0.8021802306,-0.8020835519,-0.8020835519,-0.8016969562,-0.8016002774,-0.8013103604,-0.800827086,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8022768497,-0.8022768497,-0.8010203838,-0.8022768497,-0.8026634455,-0.8020835519,-0.8023735285,-0.8022768497,-0.8019868731,-0.8019868731,-0.8023735285,-0.8022768497,-0.8021802306,-0.8021802306,-0.8020835519,-0.8021802306,-0.8022768497,-0.8021802306,-0.8021802306,-0.8022768497,-0.8021802306,-0.8020835519,-0.8020835519,-0.8021802306,-0.8020835519,-0.8022768497,-0.8023735285,-0.8021802306,-0.8021802306,-0.8022768497,-0.8022768497,-0.8021802306,-0.8023735285,-0.8024701476,-0.8022768497,-0.8021802306,-0.8020835519,-0.8020835519,-0.8021802306,-0.8021802306,-0.8021802306,-0.8020835519,-0.8021802306,-0.8024701476,-0.8023735285,-0.8022768497,-0.8022768497,-0.8022768497,-0.8022768497,-0.8021802306,-0.8021802306,-0.8022768497,-0.8022768497,-0.8022768497,-0.8021802306,-0.8021802306,-0.8021802306,-0.8023735285,-0.8024701476,-0.8023735285,-0.8022768497,-0.8024701476,-0.8025668263,-0.8021802306,-0.8021802306,-0.8020835519,-0.8014069796,-0.7998605371,-0.7987973094,-0.7985073328,-0.7985073328,-0.7983140349,-0.7966709137,-0.7940613031,-0.7933846712,-0.7944479585,-0.7954144478,-0.7963809967,-0.797347486,-0.7981207371,-0.7986039519,-0.7986039519,-0.7986039519,-0.7990872264,-0.799377203,-0.7992805243,-0.7990872264,-0.7991839051,-0.799377203,-0.7990872264,-0.7987973094,-0.7984106541,-0.7975407839,-0.7966709137,-0.7961876988,-0.7958010435,-0.7950278521,-0.7934813499,-0.7919349074,-0.7919349074,-0.7930946946,-0.7938680053,-0.7937713861,-0.7931913733,-0.7915482521,-0.7896152139,-0.7920315266,-0.7968642116,-0.7972508669,-0.7958977222,-0.7982173562,-0.8003438115,-0.7999572158,-0.7995705009,-0.7997637987,-0.7996671796,-0.7996671796,-0.7994738221,-0.7983140349,-0.7958010435,-0.7938680053,-0.7938680053,-0.7942546606,-0.7951245308,-0.7964776158,-0.797057569,-0.7982173562,-0.8001505136,-0.8007304072,-0.8003438115,-0.7986039519,-0.7971541882,-0.7992805243,-0.801117003,-0.7978307605,-0.7933846712,-0.7935779691,-0.7967675924,-0.7967675924,-0.7940613031,-0.7941579819,-0.7949311733,-0.7941579819,-0.7932879925,-0.7927080989,-0.7920315266,-0.7918382287,-0.7912583351,-0.7908717394,-0.7917416096,-0.7933846712,-0.7946412563,-0.7955111265,-0.7964776158,-0.797347486,-0.7978307605,-0.7982173562,-0.7983140349,-0.7984106541,-0.7986039519,-0.7987006307,-0.7985073328,-0.7981207371,-0.7976374626,-0.7971541882,-0.7967675924,-0.795994401,-0.7952211499,-0.7953178287,-0.7961876988,-0.7971541882,-0.7979274392,-0.7980240583,-0.7976374626,-0.7983140349,-0.7996671796,-0.8009237051,-0.8019868731,-0.8025668263,-0.8024701476,-0.8023735285,-0.8022768497,-0.8021802306,-0.8023735285,-0.8023735285,-0.8022768497,-0.8021802306,-0.8021802306,-0.8022768497,-0.8023735285,-0.8022768497,-0.8021802306,-0.8021802306,-0.8020835519,-0.8017935753,-0.8019868731,-0.8020835519,-0.8021802306,-0.8023735285,-0.8023735285,-0.8021802306,-0.8020835519,-0.8021802306,-0.8022768497,-0.8021802306,-0.8019868731,-0.8019868731,-0.8019868731,-0.8020835519,-0.8021802306,-0.8020835519,-0.8021802306,-0.8023735285,-0.8022768497,-0.8022768497,-0.8022768497,-0.8021802306,-0.8020835519,-0.8019868731,-0.8021802306,-0.8020835519,-0.801890254,-0.8020835519,-0.8021802306,-0.8020835519,-0.8020835519,-0.8020835519,-0.8020835519,-0.8020835519,-0.8021802306,-0.8024701476,-0.8023735285,-0.8021802306,-0.8021802306,-0.8020835519,-0.8021802306,-0.8019868731,-0.8020835519,-0.8022768497,-0.8021802306,-0.8020835519,-0.8020835519,-0.8017935753,-0.8014069796,-0.801117003,-0.8019868731,-0.8014069796,-0.8016969562,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8007304072,-0.801117003,-0.8025668263,-0.8021802306,-0.8025668263,-0.801890254,-0.801890254,-0.8020835519,-0.8022768497,-0.8023735285,-0.8019868731,-0.801890254,-0.8021802306,-0.8020835519,-0.8017935753,-0.8019868731,-0.8021802306,-0.8021802306,-0.8021802306,-0.8022768497,-0.8021802306,-0.8020835519,-0.8020835519,-0.8020835519,-0.8021802306,-0.8021802306,-0.8021802306,-0.8021802306,-0.8019868731,-0.8021802306,-0.8022768497,-0.8020835519,-0.8022768497,-0.8023735285,-0.8022768497,-0.8022768497,-0.8022768497,-0.801890254,-0.801890254,-0.8019868731,-0.8022768497,-0.8022768497,-0.8020835519,-0.8021802306,-0.8020835519,-0.8020835519,-0.8020835519,-0.8022768497,-0.8024701476,-0.8023735285,-0.8022768497,-0.8024701476,-0.8022768497,-0.8020835519,-0.8021802306,-0.8022768497,-0.8022768497,-0.8022768497,-0.8022768497,-0.8021802306,-0.8021802306,-0.8023735285,-0.8025668263,-0.8024701476,-0.8022768497,-0.801117003,-0.7996671796,-0.7986039519,-0.7985073328,-0.7981207371,-0.7966709137,-0.7943512797,-0.7923215032,-0.7922248244,-0.7944479585,-0.7963809967,-0.7971541882,-0.7976374626,-0.7981207371,-0.7985073328,-0.7988939285,-0.7990872264,-0.7991839051,-0.799377203,-0.7995705009,-0.7994738221,-0.7992805243,-0.7992805243,-0.7996671796,-0.7997637987,-0.7995705009,-0.7992805243,-0.7988939285,-0.7985073328,-0.7982173562,-0.7979274392,-0.7971541882,-0.7955111265,-0.7943512797,-0.793964684,-0.7932879925,-0.7931913733,-0.7936747074,-0.7929980755,-0.791451633,-0.7912583351,-0.7926114798,-0.7945445776,-0.7964776158,-0.7983140349,-0.7997637987,-0.8000538349,-0.7994738221,-0.7991839051,-0.799377203,-0.7994738221,-0.7995705009,-0.799377203,-0.7991839051,-0.7985073328,-0.797347486,-0.7971541882,-0.7977340817,-0.7977340817,-0.7980240583,-0.7987973094,-0.7998605371,-0.8009237051,-0.8014069796,-0.801117003,-0.8001505136,-0.7984106541,-0.7983140349,-0.7997637987,-0.799377203,-0.7964776158,-0.7942546606,-0.7941579819,-0.793964684,-0.7926114798,-0.7923215032,-0.7935779691,-0.7936747074,-0.7933846712,-0.7934813499,-0.7933846712,-0.7931913733,-0.7935779691,-0.7945445776,-0.7955111265,-0.7961876988,-0.7968642116,-0.7975407839,-0.7983140349,-0.7987973094,-0.7988939285,-0.7987973094,-0.7987006307,-0.7985073328,-0.7986039519,-0.7987006307,-0.7986039519,-0.7986039519,-0.7984106541,-0.7978307605,-0.7975407839,-0.7968642116,-0.7956077456,-0.7948345542,-0.7940613031,-0.7937713861,-0.7950278521,-0.797057569,-0.7981207371,-0.7979274392,-0.7979274392,-0.7990872264,-0.8006337881,-0.8017935753,-0.8022768497,-0.8021802306,-0.8022768497,-0.8024701476,-0.8024701476,-0.8023735285,-0.8024701476,-0.8024701476,-0.8023735285,-0.8024701476,-0.8024701476,-0.8023735285,-0.8023735285,-0.8024701476,-0.8023735285,-0.8020835519,-0.8020835519,-0.8021802306,-0.8021802306,-0.8022768497,-0.8021802306,-0.8021802306,-0.8022768497,-0.8022768497,-0.8024701476,-0.8023735285,-0.8021802306,-0.8022768497,-0.8021802306,-0.8020835519,-0.8021802306,-0.801890254,-0.8017935753,-0.8021802306,-0.8022768497,-0.8022768497,-0.8023735285,-0.8023735285,-0.8020835519,-0.8019868731,-0.8021802306,-0.8022768497,-0.8020835519,-0.8020835519,-0.8019868731,-0.801890254,-0.8019868731,-0.801890254,-0.8020835519,-0.8021802306,-0.801890254,-0.8019868731,-0.8021802306,-0.8021802306,-0.8020835519,-0.801890254,-0.8019868731,-0.801890254,-0.8017935753,-0.801890254,-0.8016002774,-0.8016002774,-0.8019868731,-0.8016002774,-0.801117003,-0.8013103604,-0.8016002774,-0.8015036583,-0.8012136817,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8007304072,-0.801117003,-0.8016002774,-0.8025668263,-0.8022768497,-0.8019868731,-0.8024701476,-0.8024701476,-0.8021802306,-0.8020835519,-0.8019868731,-0.8021802306,-0.8024701476,-0.8024701476,-0.8021802306,-0.8021802306,-0.8024701476,-0.8023735285,-0.8020835519,-0.8019868731,-0.8020835519,-0.8021802306,-0.8022768497,-0.8022768497,-0.8021802306,-0.8020835519,-0.8021802306,-0.8022768497,-0.8021802306,-0.8020835519,-0.8021802306,-0.8023735285,-0.8023735285,-0.8020835519,-0.8020835519,-0.8023735285,-0.8023735285,-0.8022768497,-0.8023735285,-0.8022768497,-0.8022768497,-0.8023735285,-0.8022768497,-0.8021802306,-0.8022768497,-0.8021802306,-0.8022768497,-0.8023735285,-0.8023735285,-0.8023735285,-0.8023735285,-0.8023735285,-0.8022768497,-0.8023735285,-0.8024701476,-0.8023735285,-0.8024701476,-0.8024701476,-0.8023735285,-0.8023735285,-0.8023735285,-0.8022768497,-0.8024701476,-0.8022768497,-0.8013103604,-0.7996671796,-0.7985073328,-0.7983140349,-0.7975407839,-0.7950278521,-0.7923215032,-0.791451633,-0.7924181223,-0.7942546606,-0.795994401,-0.7971541882,-0.7978307605,-0.7987006307,-0.799377203,-0.799377203,-0.7995705009,-0.7999572158,-0.7995705009,-0.799377203,-0.7995705009,-0.7996671796,-0.7997637987,-0.7998605371,-0.7998605371,-0.7998605371,-0.7998605371,-0.7995705009,-0.7992805243,-0.7991839051,-0.7989906073,-0.7984106541,-0.7971541882,-0.795994401,-0.7956077456,-0.7941579819,-0.7918382287,-0.7926114798,-0.7950278521,-0.7954144478,-0.7948345542,-0.7954144478,-0.7954144478,-0.7955111265,-0.7980240583,-0.800827086,-0.8006337881,-0.7989906073,-0.7984106541,-0.7987973094,-0.7994738221,-0.8001505136,-0.8003438115,-0.8001505136,-0.7995705009,-0.7989906073,-0.7988939285,-0.7990872264,-0.799377203,-0.7992805243,-0.7988939285,-0.7991839051,-0.8006337881,-0.8016969562,-0.8016002774,-0.801117003,-0.8005371094,-0.8001505136,-0.7992805243,-0.7977340817,-0.797347486,-0.7985073328,-0.7981207371,-0.7957044244,-0.7942546606,-0.7936747074,-0.7926114798,-0.7924181223,-0.7933846712,-0.7937713861,-0.7929980755,-0.7920315266,-0.7919349074,-0.7931913733,-0.7953178287,-0.7972508669,-0.7978307605,-0.7980240583,-0.7988939285,-0.7994738221,-0.7995705009,-0.7995705009,-0.7994738221,-0.7994738221,-0.799377203,-0.7990872264,-0.7989906073,-0.7989906073,-0.7987973094,-0.7986039519,-0.7981207371,-0.7977340817,-0.7974441648,-0.7968642116,-0.796284318,-0.7954144478,-0.7943512797,-0.7934813499,-0.7936747074,-0.7958977222,-0.7979274392,-0.7975407839,-0.7972508669,-0.7988939285,-0.8006337881,-0.8016002774,-0.8019868731,-0.8019868731,-0.8021802306,-0.8022768497,-0.8021802306,-0.8023735285,-0.8022768497,-0.8022768497,-0.8025668263,-0.8023735285,-0.8020835519,-0.8022768497,-0.8023735285,-0.8020835519,-0.8019868731,-0.8020835519,-0.8021802306,-0.8021802306,-0.8021802306,-0.8022768497,-0.8024701476,-0.8023735285,-0.8022768497,-0.8023735285,-0.8023735285,-0.8023735285,-0.8023735285,-0.8022768497,-0.8021802306,-0.8021802306,-0.8021802306,-0.8021802306,-0.8022768497,-0.8022768497,-0.8022768497,-0.8022768497,-0.8022768497,-0.8022768497,-0.8023735285,-0.8021802306,-0.8017935753,-0.8019868731,-0.8020835519,-0.8019868731,-0.8022768497,-0.8021802306,-0.801890254,-0.8022768497,-0.8022768497,-0.801890254,-0.8021802306,-0.8022768497,-0.8020835519,-0.8019868731,-0.8019868731,-0.8020835519,-0.8021802306,-0.8019868731,-0.8020835519,-0.8019868731,-0.8017935753,-0.8021802306,-0.8020835519,-0.8021802306,-0.801890254,-0.8014069796,-0.801890254,-0.7994738221,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8021802306,-0.801117003,-0.8013103604,-0.8016969562,-0.8015036583,-0.8017935753,-0.8020835519,-0.8017935753,-0.8019868731,-0.8019868731,-0.801890254,-0.8020835519,-0.8022768497,-0.8020835519,-0.8020835519,-0.8023735285,-0.8021802306,-0.801890254,-0.801890254,-0.8020835519,-0.8020835519,-0.8019868731,-0.8021802306,-0.8020835519,-0.8020835519,-0.8022768497,-0.8021802306,-0.8021802306,-0.8021802306,-0.8020835519,-0.8023735285,-0.8023735285,-0.8020835519,-0.8021802306,-0.8020835519,-0.801890254,-0.8020835519,-0.8021802306,-0.8022768497,-0.8024701476,-0.8022768497,-0.8021802306,-0.8021802306,-0.8021802306,-0.8022768497,-0.8023735285,-0.8022768497,-0.8022768497,-0.8022768497,-0.8021802306,-0.8023735285,-0.8024701476,-0.8022768497,-0.8022768497,-0.8024701476,-0.8023735285,-0.8022768497,-0.8022768497,-0.8023735285,-0.8024701476,-0.8023735285,-0.8022768497,-0.8022768497,-0.8015036583,-0.7998605371,-0.7986039519,-0.7983140349,-0.797057569,-0.7943512797,-0.7922248244,-0.7917416096,-0.7928047776,-0.7942546606,-0.7956077456,-0.7969608903,-0.7977340817,-0.7983140349,-0.7990872264,-0.7994738221,-0.7995705009,-0.7997637987,-0.7997637987,-0.7997637987,-0.7996671796,-0.7997637987,-0.8000538349,-0.8001505136,-0.8000538349,-0.7997637987,-0.7995705009,-0.799377203,-0.7991839051,-0.7988939285,-0.7987973094,-0.7984106541,-0.7974441648,-0.7966709137,-0.7958977222,-0.7945445776,-0.7930946946,-0.7929013968,-0.7943512797,-0.795994401,-0.795994401,-0.7958977222,-0.7979274392,-0.7988939285,-0.7971541882,-0.7979274392,-0.800827086,-0.7998605371,-0.7978307605,-0.7987006307,-0.7995705009,-0.7995705009,-0.7999572158,-0.8005371094,-0.8009237051,-0.8006337881,-0.8000538349,-0.7995705009,-0.799377203,-0.7997637987,-0.8005371094,-0.8007304072,-0.8005371094,-0.8007304072,-0.8009237051,-0.8009237051,-0.8010203838,-0.8010203838,-0.8005371094,-0.7995705009,-0.7977340817,-0.7968642116,-0.7986039519,-0.7996671796,-0.7980240583,-0.7972508669,-0.7981207371,-0.7967675924,-0.7943512797,-0.7950278521,-0.796284318,-0.7947378755,-0.7922248244,-0.7913549542,-0.7922248244,-0.7941579819,-0.7969608903,-0.7987973094,-0.7991839051,-0.799377203,-0.7998605371,-0.7999572158,-0.7999572158,-0.7999572158,-0.7999572158,-0.7999572158,-0.7998605371,-0.7996671796,-0.7994738221,-0.7992805243,-0.799377203,-0.7992805243,-0.7983140349,-0.7977340817,-0.7972508669,-0.7963809967,-0.7953178287,-0.7948345542,-0.7953178287,-0.7944479585,-0.7928047776,-0.7949311733,-0.7983140349,-0.7980240583,-0.797057569,-0.7985073328,-0.8004404902,-0.8016969562,-0.8021802306,-0.8022768497,-0.8023735285,-0.8022768497,-0.8020835519,-0.8020835519,-0.8021802306,-0.8022768497,-0.8022768497,-0.8022768497,-0.8021802306,-0.8022768497,-0.8022768497,-0.8021802306,-0.8022768497,-0.8021802306,-0.8020835519,-0.8022768497,-0.8024701476,-0.8024701476,-0.8023735285,-0.8022768497,-0.8023735285,-0.8023735285,-0.8023735285,-0.8022768497,-0.8021802306,-0.8023735285,-0.8022768497,-0.8024701476,-0.8025668263,-0.8023735285,-0.8022768497,-0.8021802306,-0.8020835519,-0.8020835519,-0.8020835519,-0.8020835519,-0.8020835519,-0.8019868731,-0.8021802306,-0.8022768497,-0.8021802306,-0.8021802306,-0.8021802306,-0.8021802306,-0.8022768497,-0.8022768497,-0.8022768497,-0.8022768497,-0.8019868731,-0.801890254,-0.8019868731,-0.8023735285,-0.8023735285,-0.8020835519,-0.8024701476,-0.8026634455,-0.8022768497,-0.8022768497,-0.8019868731,-0.8023735285,-0.8025668263,-0.8023735285,-0.8025668263,-0.8016002774,-0.7995705009,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8014069796,-0.8012136817,-0.8024701476,-0.8024701476,-0.8021802306,-0.8022768497,-0.8021802306,-0.8021802306,-0.8021802306,-0.8021802306,-0.8021802306,-0.8021802306,-0.8020835519,-0.8021802306,-0.8024701476,-0.8025668263,-0.8023735285,-0.8020835519,-0.8020835519,-0.8022768497,-0.8021802306,-0.8020835519,-0.8020835519,-0.8022768497,-0.8024701476,-0.8023735285,-0.8023735285,-0.8025668263,-0.8024701476,-0.8022768497,-0.8024701476,-0.8024701476,-0.8022768497,-0.8022768497,-0.8022768497,-0.8021802306,-0.8022768497,-0.8022768497,-0.8023735285,-0.8024701476,-0.8024701476,-0.8024701476,-0.8023735285,-0.8022768497,-0.8023735285,-0.8024701476,-0.8024701476,-0.8024701476,-0.8024701476,-0.8023735285,-0.8024701476,-0.8026634455,-0.8025668263,-0.8024701476,-0.8026634455,-0.8025668263,-0.8024701476,-0.8024701476,-0.8024701476,-0.8023735285,-0.8024701476,-0.8024701476,-0.8016969562,-0.7998605371,-0.7986039519,-0.7984106541,-0.7967675924,-0.7941579819,-0.7933846712,-0.7935779691,-0.7943512797,-0.7948345542,-0.7951245308,-0.7966709137,-0.7978307605,-0.7980240583,-0.7987006307,-0.7991839051,-0.799377203,-0.799377203,-0.799377203,-0.7995705009,-0.7997637987,-0.7998605371,-0.7998605371,-0.8001505136,-0.8000538349,-0.7997637987,-0.7997637987,-0.7994738221,-0.7989906073,-0.7987006307,-0.7984106541,-0.7982173562,-0.797347486,-0.796284318,-0.7955111265,-0.7944479585,-0.7932879925,-0.7933846712,-0.7945445776,-0.7948345542,-0.7934813499,-0.7922248244,-0.7930946946,-0.7960910201,-0.7974441648,-0.7958977222,-0.7972508669,-0.8005371094,-0.7996671796,-0.7983140349,-0.7994738221,-0.7999572158,-0.7998605371,-0.7998605371,-0.7998605371,-0.7997637987,-0.7995705009,-0.8001505136,-0.8010203838,-0.800827086,-0.8006337881,-0.8010203838,-0.801117003,-0.8006337881,-0.7997637987,-0.7995705009,-0.7998605371,-0.8002471328,-0.8006337881,-0.8005371094,-0.8002471328,-0.799377203,-0.7982173562,-0.7990872264,-0.7997637987,-0.7979274392,-0.7978307605,-0.7994738221,-0.7982173562,-0.7950278521,-0.7940613031,-0.7951245308,-0.7950278521,-0.7937713861,-0.7929013968,-0.7928047776,-0.7942546606,-0.7967675924,-0.7987006307,-0.7991839051,-0.799377203,-0.7996671796,-0.7997637987,-0.7997637987,-0.8000538349,-0.7999572158,-0.7998605371,-0.8000538349,-0.8000538349,-0.7998605371,-0.7996671796,-0.7994738221,-0.7994738221,-0.7990872264,-0.7984106541,-0.7978307605,-0.7968642116,-0.7958010435,-0.7944479585,-0.7941579819,-0.7956077456,-0.7943512797,-0.791451633,-0.793964684,-0.7982173562,-0.7975407839,-0.7963809967,-0.7984106541,-0.8005371094,-0.8015036583,-0.801890254,-0.8020835519,-0.8020835519,-0.801890254,-0.8019868731,-0.8021802306,-0.8021802306,-0.8021802306,-0.8022768497,-0.8021802306,-0.8019868731,-0.801890254,-0.8020835519,-0.8022768497,-0.8021802306,-0.8019868731,-0.8020835519,-0.8022768497,-0.8024701476,-0.8021802306,-0.8019868731,-0.8019868731,-0.8019868731,-0.8020835519,-0.8022768497,-0.8022768497,-0.8020835519,-0.8021802306,-0.8024701476,-0.8025668263,-0.8023735285,-0.8020835519,-0.8020835519,-0.8022768497,-0.8022768497,-0.8019868731,-0.8019868731,-0.8021802306,-0.8023735285,-0.8023735285,-0.8024701476,-0.8024701476,-0.8023735285,-0.8022768497,-0.8023735285,-0.8022768497,-0.8021802306,-0.8021802306,-0.8020835519,-0.8022768497,-0.8024701476,-0.8023735285,-0.8024701476,-0.8025668263,-0.8021802306,-0.8020835519,-0.8023735285,-0.8026634455,-0.8024701476,-0.8022768497,-0.8025668263,-0.8026634455,-0.8023735285,-0.8020835519,-0.801890254,-0.8007304072,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.801117003,-0.8013103604,-0.8023735285,-0.8024701476,-0.8025668263,-0.8025668263,-0.8023735285,-0.8023735285,-0.8022768497,-0.8023735285,-0.8025668263,-0.8022768497,-0.8020835519,-0.8022768497,-0.8024701476,-0.8023735285,-0.8021802306,-0.8020835519,-0.8022768497,-0.8024701476,-0.8021802306,-0.8021802306,-0.8020835519,-0.8020835519,-0.8022768497,-0.8023735285,-0.8023735285,-0.8023735285,-0.8021802306,-0.8023735285,-0.8023735285,-0.8023735285,-0.8024701476,-0.8022768497,-0.8021802306,-0.8026634455,-0.8028567433,-0.8024701476,-0.8022768497,-0.8022768497,-0.8022768497,-0.8023735285,-0.8023735285,-0.8022768497,-0.8023735285,-0.8024701476,-0.8022768497,-0.8022768497,-0.8024701476,-0.8023735285,-0.8022768497,-0.8024701476,-0.8025668263,-0.8024701476,-0.8023735285,-0.8024701476,-0.8025668263,-0.8024701476,-0.8022768497,-0.8024701476,-0.8025668263,-0.8019868731,-0.8000538349,-0.7985073328,-0.7986039519,-0.797057569,-0.793964684,-0.7938680053,-0.7955111265,-0.7956077456,-0.7956077456,-0.796284318,-0.7974441648,-0.7979274392,-0.7977340817,-0.7979274392,-0.7986039519,-0.7992805243,-0.7991839051,-0.7987006307,-0.7989906073,-0.7995705009,-0.7998605371,-0.7999572158,-0.8000538349,-0.8001505136,-0.8000538349,-0.7997637987,-0.7995705009,-0.7992805243,-0.7988939285,-0.7985073328,-0.7983140349,-0.7980240583,-0.797347486,-0.7963809967,-0.7948345542,-0.7934813499,-0.7936747074,-0.7946412563,-0.7953178287,-0.7946412563,-0.7916449308,-0.7893252969,-0.7906783819,-0.7933846712,-0.7934813499,-0.7936747074,-0.7977340817,-0.8005371094,-0.7996671796,-0.7994738221,-0.8000538349,-0.7995705009,-0.7991839051,-0.7992805243,-0.799377203,-0.7986039519,-0.7983140349,-0.7989906073,-0.7989906073,-0.7994738221,-0.801117003,-0.8009237051,-0.7992805243,-0.7987973094,-0.7988939285,-0.7987006307,-0.7987006307,-0.7989906073,-0.7994738221,-0.7996671796,-0.8001505136,-0.8001505136,-0.7988939285,-0.7992805243,-0.8001505136,-0.7977340817,-0.7954144478,-0.7957044244,-0.7945445776,-0.7922248244,-0.7916449308,-0.792514801,-0.7941579819,-0.7952211499,-0.7948345542,-0.7942546606,-0.7952211499,-0.7969608903,-0.7984106541,-0.7989906073,-0.7992805243,-0.799377203,-0.7994738221,-0.7995705009,-0.7996671796,-0.7996671796,-0.7996671796,-0.7998605371,-0.8000538349,-0.8001505136,-0.8001505136,-0.7995705009,-0.7992805243,-0.7994738221,-0.799377203,-0.7987006307,-0.7976374626,-0.797057569,-0.7967675924,-0.7950278521,-0.793964684,-0.7952211499,-0.7934813499,-0.7907750607,-0.7936747074,-0.7975407839,-0.797057569,-0.7967675924,-0.7987006307,-0.8004404902,-0.8014069796,-0.8019868731,-0.8021802306,-0.8021802306,-0.8021802306,-0.8021802306,-0.8021802306,-0.8020835519,-0.8020835519,-0.8019868731,-0.801890254,-0.801890254,-0.8020835519,-0.8019868731,-0.8020835519,-0.8022768497,-0.8021802306,-0.8020835519,-0.8021802306,-0.8021802306,-0.8020835519,-0.8019868731,-0.8020835519,-0.8021802306,-0.8021802306,-0.801890254,-0.801890254,-0.8021802306,-0.8021802306,-0.8019868731,-0.8019868731,-0.8020835519,-0.8021802306,-0.8020835519,-0.8020835519,-0.8022768497,-0.8021802306,-0.8021802306,-0.8022768497,-0.8021802306,-0.8020835519,-0.8023735285,-0.8025668263,-0.8024701476,-0.8022768497,-0.8023735285,-0.8022768497,-0.8019868731,-0.801890254,-0.8021802306,-0.8024701476,-0.8023735285,-0.8019868731,-0.801890254,-0.8021802306,-0.8021802306,-0.8021802306,-0.8021802306,-0.801890254,-0.801890254,-0.8021802306,-0.8020835519,-0.8017935753,-0.8015036583,-0.8010203838,-0.8015036583,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.7997637987,-0.801117003,-0.8022768497,-0.8020835519,-0.8022768497,-0.8022768497,-0.8021802306,-0.8022768497,-0.8023735285,-0.8025668263,-0.8024701476,-0.8020835519,-0.8021802306,-0.8024701476,-0.8023735285,-0.8021802306,-0.8020835519,-0.8022768497,-0.8024701476,-0.8024701476,-0.8021802306,-0.8021802306,-0.8022768497,-0.8021802306,-0.8021802306,-0.8022768497,-0.8022768497,-0.8021802306,-0.8023735285,-0.8023735285,-0.8023735285,-0.8024701476,-0.8025668263,-0.8024701476,-0.8022768497,-0.8024701476,-0.8026634455,-0.8023735285,-0.8022768497,-0.8023735285,-0.8023735285,-0.8021802306,-0.8023735285,-0.8025668263,-0.8023735285,-0.8023735285,-0.8024701476,-0.8022768497,-0.8023735285,-0.8024701476,-0.8027601242,-0.8025668263,-0.8023735285,-0.8024701476,-0.8024701476,-0.8023735285,-0.8024701476,-0.8025668263,-0.8025668263,-0.8026634455,-0.8022768497,-0.8005371094,-0.7986039519,-0.7986039519,-0.7977340817,-0.7943512797,-0.7941579819,-0.7972508669,-0.7980240583,-0.797057569,-0.7969608903,-0.7977340817,-0.7981207371,-0.7979274392,-0.7978307605,-0.7981207371,-0.7986039519,-0.7991839051,-0.7988939285,-0.7985073328,-0.7990872264,-0.7997637987,-0.8000538349,-0.8001505136,-0.8000538349,-0.7998605371,-0.7997637987,-0.7996671796,-0.7994738221,-0.7992805243,-0.7991839051,-0.7989906073,-0.7987006307,-0.7985073328,-0.7982173562,-0.7971541882,-0.7952211499,-0.7938680053,-0.7946412563,-0.7958010435,-0.7950278521,-0.7929980755,-0.7905817628,-0.7883586884,-0.7893252969,-0.7920315266,-0.7923215032,-0.7937713861,-0.7985073328,-0.8002471328,-0.7992805243,-0.7994738221,-0.799377203,-0.7987006307,-0.7985073328,-0.7984106541,-0.7983140349,-0.7981207371,-0.7982173562,-0.7983140349,-0.7978307605,-0.7990872264,-0.8013103604,-0.8013103604,-0.7991839051,-0.7981207371,-0.7983140349,-0.7981207371,-0.7981207371,-0.7984106541,-0.7984106541,-0.7986039519,-0.7995705009,-0.8004404902,-0.7998605371,-0.7995705009,-0.8003438115,-0.7981207371,-0.7941579819,-0.7930946946,-0.7915482521,-0.7889387012,-0.789421916,-0.7915482521,-0.7936747074,-0.7958977222,-0.795994401,-0.7950278521,-0.7958977222,-0.7977340817,-0.7986039519,-0.7990872264,-0.7994738221,-0.7992805243,-0.7991839051,-0.7994738221,-0.7996671796,-0.7996671796,-0.7997637987,-0.7997637987,-0.7999572158,-0.8001505136,-0.8001505136,-0.7997637987,-0.799377203,-0.7991839051,-0.7991839051,-0.7989906073,-0.7981207371,-0.797347486,-0.7974441648,-0.7971541882,-0.7954144478,-0.7948345542,-0.7955111265,-0.7936747074,-0.791451633,-0.7938680053,-0.7972508669,-0.7967675924,-0.7966709137,-0.7989906073,-0.800827086,-0.8016969562,-0.8019868731,-0.8020835519,-0.8023735285,-0.8022768497,-0.8021802306,-0.8020835519,-0.8019868731,-0.8021802306,-0.8022768497,-0.8021802306,-0.8021802306,-0.8021802306,-0.8020835519,-0.8022768497,-0.8020835519,-0.801890254,-0.8021802306,-0.8024701476,-0.8023735285,-0.8020835519,-0.8020835519,-0.8021802306,-0.8022768497,-0.8020835519,-0.8019868731,-0.8021802306,-0.8022768497,-0.8021802306,-0.8023735285,-0.8024701476,-0.8023735285,-0.8021802306,-0.8021802306,-0.8022768497,-0.8022768497,-0.8022768497,-0.8022768497,-0.8022768497,-0.8022768497,-0.8022768497,-0.8022768497,-0.8022768497,-0.8022768497,-0.8022768497,-0.8023735285,-0.8022768497,-0.8020835519,-0.8021802306,-0.8023735285,-0.8023735285,-0.8021802306,-0.8019868731,-0.8020835519,-0.8022768497,-0.8021802306,-0.8017935753,-0.8019868731,-0.8024701476,-0.8023735285,-0.8022768497,-0.8019868731,-0.8016969562,-0.8016969562,-0.8014069796,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8014069796,-0.8023735285,-0.8024701476,-0.8024701476,-0.8025668263,-0.8025668263,-0.8025668263,-0.8025668263,-0.8023735285,-0.8023735285,-0.8025668263,-0.8026634455,-0.8023735285,-0.8023735285,-0.8025668263,-0.8024701476,-0.8024701476,-0.8024701476,-0.8024701476,-0.8024701476,-0.8024701476,-0.8024701476,-0.8024701476,-0.8023735285,-0.8023735285,-0.8023735285,-0.8023735285,-0.8023735285,-0.8024701476,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8024701476,-0.8022768497,-0.8026634455,-0.8027601242,-0.8023735285,-0.8021802306,-0.8023735285,-0.8022768497,-0.8021802306,-0.8023735285,-0.8025668263,-0.8023735285,-0.8024701476,-0.8026634455,-0.8024701476,-0.8023735285,-0.8024701476,-0.8026634455,-0.8025668263,-0.8024701476,-0.8025668263,-0.8026634455,-0.8025668263,-0.8024701476,-0.8025668263,-0.8026634455,-0.8024701476,-0.801117003,-0.7988939285,-0.7985073328,-0.7982173562,-0.7951245308,-0.7944479585,-0.7980240583,-0.7996671796,-0.7988939285,-0.7984106541,-0.7982173562,-0.7979274392,-0.7975407839,-0.7975407839,-0.7977340817,-0.7979274392,-0.7984106541,-0.7985073328,-0.7982173562,-0.7987006307,-0.799377203,-0.7996671796,-0.7999572158,-0.8000538349,-0.7999572158,-0.7997637987,-0.7995705009,-0.7995705009,-0.799377203,-0.7990872264,-0.7989906073,-0.7989906073,-0.7987973094,-0.7987973094,-0.7986039519,-0.7977340817,-0.795994401,-0.7943512797,-0.7943512797,-0.7946412563,-0.7922248244,-0.7896152139,-0.7885520458,-0.7878754735,-0.7895185947,-0.7921282053,-0.7928047776,-0.7951245308,-0.7992805243,-0.7999572158,-0.7990872264,-0.7991839051,-0.7987006307,-0.7979274392,-0.7979274392,-0.7979274392,-0.7978307605,-0.7976374626,-0.7975407839,-0.7979274392,-0.7985073328,-0.7997637987,-0.8010203838,-0.8005371094,-0.7986039519,-0.7977340817,-0.7976374626,-0.7974441648,-0.7976374626,-0.7980240583,-0.7979274392,-0.7981207371,-0.7987006307,-0.7996671796,-0.8000538349,-0.7999572158,-0.8006337881,-0.7988939285,-0.7945445776,-0.7930946946,-0.7916449308,-0.788648665,-0.7888420224,-0.7908717394,-0.7924181223,-0.7946412563,-0.7955111265,-0.7950278521,-0.7961876988,-0.7983140349,-0.7992805243,-0.7995705009,-0.7998605371,-0.7997637987,-0.799377203,-0.799377203,-0.7996671796,-0.7999572158,-0.7999572158,-0.7997637987,-0.8000538349,-0.8003438115,-0.8002471328,-0.7999572158,-0.799377203,-0.7987973094,-0.7989906073,-0.7989906073,-0.7983140349,-0.7979274392,-0.7975407839,-0.7972508669,-0.7971541882,-0.7961876988,-0.7954144478,-0.7958010435,-0.7944479585,-0.7924181223,-0.793964684,-0.7963809967,-0.7963809967,-0.7972508669,-0.7994738221,-0.800827086,-0.8016002774,-0.8020835519,-0.8022768497,-0.8021802306,-0.8021802306,-0.8021802306,-0.8019868731,-0.8020835519,-0.8022768497,-0.8021802306,-0.8020835519,-0.8020835519,-0.8020835519,-0.8019868731,-0.801890254,-0.8019868731,-0.8022768497,-0.8021802306,-0.8020835519,-0.8019868731,-0.8019868731,-0.8022768497,-0.8022768497,-0.8020835519,-0.8020835519,-0.8020835519,-0.8020835519,-0.8022768497,-0.8023735285,-0.8023735285,-0.8021802306,-0.8020835519,-0.8022768497,-0.8020835519,-0.8017935753,-0.8019868731,-0.8021802306,-0.8021802306,-0.8022768497,-0.8020835519,-0.8020835519,-0.8022768497,-0.8020835519,-0.8021802306,-0.8023735285,-0.8023735285,-0.8021802306,-0.8021802306,-0.8022768497,-0.8022768497,-0.8021802306,-0.8020835519,-0.8020835519,-0.8022768497,-0.8024701476,-0.8023735285,-0.8023735285,-0.8024701476,-0.8023735285,-0.8022768497,-0.8022768497,-0.8019868731,-0.8016969562,-0.8021802306,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.801890254,-0.8023735285,-0.8024701476,-0.8024701476,-0.8027601242,-0.8026634455,-0.8024701476,-0.8024701476,-0.8023735285,-0.8023735285,-0.8023735285,-0.8024701476,-0.8022768497,-0.8022768497,-0.8025668263,-0.8026634455,-0.8024701476,-0.8024701476,-0.8023735285,-0.8024701476,-0.8025668263,-0.8024701476,-0.8022768497,-0.8021802306,-0.8022768497,-0.8022768497,-0.8022768497,-0.8024701476,-0.8024701476,-0.8023735285,-0.8024701476,-0.8024701476,-0.8024701476,-0.8023735285,-0.8022768497,-0.8024701476,-0.8025668263,-0.8023735285,-0.8024701476,-0.8024701476,-0.8023735285,-0.8023735285,-0.8023735285,-0.8024701476,-0.8025668263,-0.8023735285,-0.8023735285,-0.8026634455,-0.8026634455,-0.8024701476,-0.8025668263,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.801890254,-0.7994738221,-0.7982173562,-0.7983140349,-0.7960910201,-0.7946412563,-0.7981207371,-0.8007304072,-0.7995705009,-0.7987973094,-0.7987006307,-0.7978307605,-0.7975407839,-0.7977340817,-0.7974441648,-0.7974441648,-0.7980240583,-0.7980240583,-0.797347486,-0.7976374626,-0.7985073328,-0.7989906073,-0.7992805243,-0.7996671796,-0.7996671796,-0.7997637987,-0.7995705009,-0.799377203,-0.7994738221,-0.7994738221,-0.7990872264,-0.7989906073,-0.7987973094,-0.7987006307,-0.7987973094,-0.7984106541,-0.7977340817,-0.7963809967,-0.7943512797,-0.7930946946,-0.7920315266,-0.7897118926,-0.7879720926,-0.7872955203,-0.7874888182,-0.7904850841,-0.7933846712,-0.7937713861,-0.7960910201,-0.7995705009,-0.8000538349,-0.7992805243,-0.7988939285,-0.7981207371,-0.7976374626,-0.7974441648,-0.797347486,-0.7974441648,-0.797347486,-0.7976374626,-0.7978307605,-0.7974441648,-0.7986039519,-0.8007304072,-0.8003438115,-0.7980240583,-0.7974441648,-0.7976374626,-0.7972508669,-0.7972508669,-0.7975407839,-0.7975407839,-0.7975407839,-0.7978307605,-0.7988939285,-0.7996671796,-0.7998605371,-0.8006337881,-0.7990872264,-0.7950278521,-0.7932879925,-0.7923215032,-0.7898085713,-0.7885520458,-0.7889387012,-0.7904850841,-0.7928047776,-0.7936747074,-0.7943512797,-0.7960910201,-0.7979274392,-0.7992805243,-0.7997637987,-0.7995705009,-0.7995705009,-0.7995705009,-0.7994738221,-0.7997637987,-0.8000538349,-0.8001505136,-0.8000538349,-0.7999572158,-0.8001505136,-0.8002471328,-0.7999572158,-0.7991839051,-0.7987973094,-0.7989906073,-0.7987973094,-0.7982173562,-0.7980240583,-0.7977340817,-0.7974441648,-0.7976374626,-0.797347486,-0.7965742946,-0.7966709137,-0.7972508669,-0.7956077456,-0.7931913733,-0.793964684,-0.7960910201,-0.7965742946,-0.7975407839,-0.7996671796,-0.801117003,-0.8019868731,-0.8021802306,-0.8019868731,-0.8019868731,-0.8021802306,-0.8020835519,-0.8019868731,-0.8021802306,-0.8019868731,-0.8017935753,-0.801890254,-0.8020835519,-0.8020835519,-0.8019868731,-0.8021802306,-0.8022768497,-0.8020835519,-0.8020835519,-0.8022768497,-0.8021802306,-0.8019868731,-0.8021802306,-0.8021802306,-0.8020835519,-0.8020835519,-0.8020835519,-0.8020835519,-0.8022768497,-0.8021802306,-0.8020835519,-0.8020835519,-0.8021802306,-0.8021802306,-0.8019868731,-0.8019868731,-0.8021802306,-0.8021802306,-0.8022768497,-0.8022768497,-0.8020835519,-0.8022768497,-0.8023735285,-0.8022768497,-0.8022768497,-0.8020835519,-0.8019868731,-0.8021802306,-0.8020835519,-0.8019868731,-0.8019868731,-0.8019868731,-0.8021802306,-0.8023735285,-0.8022768497,-0.8020835519,-0.8020835519,-0.8022768497,-0.8023735285,-0.8022768497,-0.8021802306,-0.801890254,-0.8014069796,-0.8010203838,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8010203838,-0.8025668263,-0.8021802306,-0.8022768497,-0.8024701476,-0.8022768497,-0.8022768497,-0.8023735285,-0.8023735285,-0.8022768497,-0.8021802306,-0.8022768497,-0.8020835519,-0.8022768497,-0.8023735285,-0.8022768497,-0.8024701476,-0.8025668263,-0.8025668263,-0.8023735285,-0.8023735285,-0.8024701476,-0.8021802306,-0.8021802306,-0.8023735285,-0.8022768497,-0.8022768497,-0.8023735285,-0.8024701476,-0.8025668263,-0.8025668263,-0.8024701476,-0.8026634455,-0.8024701476,-0.8022768497,-0.8024701476,-0.8024701476,-0.8022768497,-0.8024701476,-0.8025668263,-0.8025668263,-0.8025668263,-0.8025668263,-0.8024701476,-0.8024701476,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8023735285,-0.8005371094,-0.7983140349,-0.7980240583,-0.7968642116,-0.7949311733,-0.7978307605,-0.8015036583,-0.8006337881,-0.7989906073,-0.7992805243,-0.7989906073,-0.7977340817,-0.7972508669,-0.7971541882,-0.7968642116,-0.797347486,-0.7980240583,-0.7978307605,-0.7975407839,-0.7977340817,-0.7981207371,-0.7987006307,-0.7990872264,-0.7992805243,-0.799377203,-0.7994738221,-0.799377203,-0.799377203,-0.7994738221,-0.7994738221,-0.7992805243,-0.7988939285,-0.7987973094,-0.7987973094,-0.7983140349,-0.7977340817,-0.7969608903,-0.7950278521,-0.7932879925,-0.7919349074,-0.7902917862,-0.7893252969,-0.7882620692,-0.7865223289,-0.7874888182,-0.7919349074,-0.7942546606,-0.7943512797,-0.7969608903,-0.7999572158,-0.8000538349,-0.7990872264,-0.7980240583,-0.7974441648,-0.797347486,-0.797057569,-0.7971541882,-0.7972508669,-0.7969608903,-0.7971541882,-0.7976374626,-0.7974441648,-0.7987973094,-0.8006337881,-0.7997637987,-0.7977340817,-0.7974441648,-0.797347486,-0.7966709137,-0.7965742946,-0.7968642116,-0.797057569,-0.7971541882,-0.797347486,-0.7985073328,-0.7995705009,-0.7995705009,-0.8000538349,-0.7991839051,-0.795994401,-0.7940613031,-0.7929013968,-0.7901951671,-0.7881653905,-0.7883586884,-0.7899051905,-0.7916449308,-0.7923215032,-0.7935779691,-0.7958977222,-0.7978307605,-0.7988939285,-0.799377203,-0.799377203,-0.799377203,-0.799377203,-0.7995705009,-0.7998605371,-0.8001505136,-0.8002471328,-0.8000538349,-0.7998605371,-0.8000538349,-0.8000538349,-0.7997637987,-0.7992805243,-0.7988939285,-0.7987006307,-0.7985073328,-0.7982173562,-0.7976374626,-0.7972508669,-0.7975407839,-0.7979274392,-0.7975407839,-0.7975407839,-0.7982173562,-0.7987973094,-0.7987973094,-0.7966709137,-0.793964684,-0.7944479585,-0.7960910201,-0.7964776158,-0.7980240583,-0.8001505136,-0.8014069796,-0.801890254,-0.8016969562,-0.801890254,-0.8019868731,-0.8019868731,-0.801890254,-0.801890254,-0.801890254,-0.801890254,-0.801890254,-0.8019868731,-0.8021802306,-0.8021802306,-0.8020835519,-0.8019868731,-0.8020835519,-0.8019868731,-0.801890254,-0.801890254,-0.801890254,-0.8020835519,-0.8021802306,-0.8020835519,-0.8020835519,-0.8021802306,-0.8021802306,-0.8021802306,-0.8021802306,-0.8020835519,-0.8021802306,-0.8021802306,-0.8021802306,-0.8021802306,-0.8021802306,-0.8021802306,-0.8021802306,-0.8022768497,-0.8024701476,-0.8023735285,-0.8021802306,-0.8022768497,-0.8022768497,-0.8021802306,-0.8020835519,-0.8020835519,-0.8019868731,-0.8019868731,-0.8021802306,-0.8022768497,-0.8022768497,-0.8021802306,-0.8020835519,-0.8021802306,-0.8022768497,-0.8024701476,-0.8024701476,-0.8021802306,-0.8022768497,-0.8024701476,-0.8026634455,-0.8022768497,-0.7999572158,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8016002774,-0.8023735285,-0.8021802306,-0.8024701476,-0.8023735285,-0.8020835519,-0.8022768497,-0.8023735285,-0.8022768497,-0.8023735285,-0.8023735285,-0.8022768497,-0.8022768497,-0.8022768497,-0.8024701476,-0.8024701476,-0.8024701476,-0.8026634455,-0.8024701476,-0.8023735285,-0.8025668263,-0.8025668263,-0.8023735285,-0.8023735285,-0.8025668263,-0.8025668263,-0.8024701476,-0.8024701476,-0.8025668263,-0.8025668263,-0.8025668263,-0.8024701476,-0.8024701476,-0.8023735285,-0.8024701476,-0.8023735285,-0.8021802306,-0.8023735285,-0.8025668263,-0.8025668263,-0.8025668263,-0.8024701476,-0.8023735285,-0.8024701476,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8024701476,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8013103604,-0.7987006307,-0.7976374626,-0.7971541882,-0.7950278521,-0.7964776158,-0.8015036583,-0.8021802306,-0.7996671796,-0.7989906073,-0.7997637987,-0.7996671796,-0.7983140349,-0.7971541882,-0.7966709137,-0.7966709137,-0.797347486,-0.7979274392,-0.7981207371,-0.7982173562,-0.7981207371,-0.7983140349,-0.7986039519,-0.7988939285,-0.7991839051,-0.799377203,-0.799377203,-0.7992805243,-0.7990872264,-0.7988939285,-0.7989906073,-0.7990872264,-0.7987006307,-0.7985073328,-0.7984106541,-0.7977340817,-0.7971541882,-0.7954144478,-0.7929980755,-0.7923215032,-0.7917416096,-0.7902917862,-0.7895185947,-0.7881653905,-0.786618948,-0.789131999,-0.7934813499,-0.7945445776,-0.7951245308,-0.7981207371,-0.8000538349,-0.7996671796,-0.7982173562,-0.7971541882,-0.7972508669,-0.7972508669,-0.7965742946,-0.7965742946,-0.7967675924,-0.7964776158,-0.7969608903,-0.7974441648,-0.7969608903,-0.7987006307,-0.801117003,-0.7998605371,-0.7974441648,-0.797347486,-0.7971541882,-0.796284318,-0.7961876988,-0.796284318,-0.7965742946,-0.7967675924,-0.7969608903,-0.7985073328,-0.7999572158,-0.7996671796,-0.7997637987,-0.7995705009,-0.7968642116,-0.7947378755,-0.7937713861,-0.7905817628,-0.787392199,-0.7876821756,-0.789421916,-0.7908717394,-0.7924181223,-0.793964684,-0.7958010435,-0.7976374626,-0.7985073328,-0.7987006307,-0.7989906073,-0.7991839051,-0.7992805243,-0.7992805243,-0.7994738221,-0.7998605371,-0.7999572158,-0.7998605371,-0.7996671796,-0.7997637987,-0.7998605371,-0.7997637987,-0.799377203,-0.7988939285,-0.7983140349,-0.7982173562,-0.7981207371,-0.7972508669,-0.7964776158,-0.7968642116,-0.797347486,-0.797057569,-0.7971541882,-0.7981207371,-0.7991839051,-0.8000538349,-0.8001505136,-0.7975407839,-0.7944479585,-0.7948345542,-0.7963809967,-0.7969608903,-0.7985073328,-0.8006337881,-0.8016002774,-0.801890254,-0.801890254,-0.801890254,-0.801890254,-0.8017935753,-0.8017935753,-0.8019868731,-0.801890254,-0.8017935753,-0.8019868731,-0.8020835519,-0.8021802306,-0.8021802306,-0.8019868731,-0.8019868731,-0.8019868731,-0.8019868731,-0.8019868731,-0.8021802306,-0.8021802306,-0.8021802306,-0.8022768497,-0.8023735285,-0.8022768497,-0.8022768497,-0.8022768497,-0.8021802306,-0.8020835519,-0.8020835519,-0.8020835519,-0.8021802306,-0.8019868731,-0.8020835519,-0.8020835519,-0.801890254,-0.8021802306,-0.8023735285,-0.8021802306,-0.8020835519,-0.8021802306,-0.8022768497,-0.8021802306,-0.8021802306,-0.8021802306,-0.801890254,-0.801890254,-0.8023735285,-0.8023735285,-0.8020835519,-0.8020835519,-0.8021802306,-0.8022768497,-0.8021802306,-0.8021802306,-0.8022768497,-0.8024701476,-0.8025668263,-0.8025668263,-0.8022768497,-0.8014069796,-0.8016969562,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8013103604,-0.8015036583,-0.8019868731,-0.8023735285,-0.8020835519,-0.8021802306,-0.8022768497,-0.8021802306,-0.8022768497,-0.8023735285,-0.8024701476,-0.8024701476,-0.8023735285,-0.8022768497,-0.8024701476,-0.8025668263,-0.8023735285,-0.8023735285,-0.8024701476,-0.8021802306,-0.8021802306,-0.8023735285,-0.8024701476,-0.8022768497,-0.8022768497,-0.8022768497,-0.8022768497,-0.8024701476,-0.8026634455,-0.8025668263,-0.8023735285,-0.8023735285,-0.8023735285,-0.8023735285,-0.8023735285,-0.8023735285,-0.8022768497,-0.8023735285,-0.8023735285,-0.8023735285,-0.8023735285,-0.8024701476,-0.8024701476,-0.8023735285,-0.8024701476,-0.8024701476,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8019868731,-0.7997637987,-0.7967675924,-0.7965742946,-0.796284318,-0.7952211499,-0.7991839051,-0.8025668263,-0.801117003,-0.799377203,-0.7987973094,-0.799377203,-0.8002471328,-0.7987006307,-0.7968642116,-0.7967675924,-0.7972508669,-0.7974441648,-0.7975407839,-0.7979274392,-0.7981207371,-0.7978307605,-0.7980240583,-0.7981207371,-0.7981207371,-0.7985073328,-0.7991839051,-0.799377203,-0.7991839051,-0.7988939285,-0.7987973094,-0.7989906073,-0.7987973094,-0.7985073328,-0.7982173562,-0.7977340817,-0.797057569,-0.795994401,-0.793964684,-0.7921282053,-0.7917416096,-0.7916449308,-0.7911616564,-0.7897118926,-0.7872955203,-0.7875854969,-0.7916449308,-0.7947378755,-0.7950278521,-0.7967675924,-0.7994738221,-0.7997637987,-0.7986039519,-0.7976374626,-0.7972508669,-0.7972508669,-0.7967675924,-0.7961876988,-0.796284318,-0.7963809967,-0.796284318,-0.7969608903,-0.797347486,-0.7972508669,-0.7995705009,-0.8016002774,-0.7995705009,-0.7971541882,-0.7972508669,-0.7969608903,-0.7961876988,-0.795994401,-0.7960910201,-0.7964776158,-0.7966709137,-0.7967675924,-0.7984106541,-0.8005371094,-0.8000538349,-0.7985073328,-0.7984106541,-0.7978307605,-0.7958977222,-0.7942546606,-0.7910650373,-0.7871022224,-0.7864256501,-0.788648665,-0.7907750607,-0.7918382287,-0.7929980755,-0.7948345542,-0.7966709137,-0.7982173562,-0.7987973094,-0.7986039519,-0.7987973094,-0.7992805243,-0.7992805243,-0.799377203,-0.7996671796,-0.7997637987,-0.7996671796,-0.7995705009,-0.7994738221,-0.7994738221,-0.7994738221,-0.7991839051,-0.7985073328,-0.7982173562,-0.7978307605,-0.7968642116,-0.7965742946,-0.7965742946,-0.7961876988,-0.7961876988,-0.7965742946,-0.7968642116,-0.7975407839,-0.7982173562,-0.7988939285,-0.8002471328,-0.8005371094,-0.7971541882,-0.7941579819,-0.7952211499,-0.7964776158,-0.7969608903,-0.7988939285,-0.800827086,-0.8015036583,-0.8017935753,-0.8017935753,-0.8016969562,-0.8016002774,-0.8017935753,-0.801890254,-0.8016969562,-0.8017935753,-0.8017935753,-0.8017935753,-0.801890254,-0.801890254,-0.801890254,-0.8019868731,-0.8019868731,-0.8021802306,-0.8021802306,-0.801890254,-0.8019868731,-0.8021802306,-0.8019868731,-0.8020835519,-0.8021802306,-0.8019868731,-0.801890254,-0.8019868731,-0.8019868731,-0.8017935753,-0.8019868731,-0.8021802306,-0.8020835519,-0.8020835519,-0.8020835519,-0.8019868731,-0.8021802306,-0.8021802306,-0.8020835519,-0.8021802306,-0.8022768497,-0.8022768497,-0.8022768497,-0.8019868731,-0.8019868731,-0.8020835519,-0.8021802306,-0.8022768497,-0.8022768497,-0.8022768497,-0.8022768497,-0.8023735285,-0.8022768497,-0.8023735285,-0.8022768497,-0.8023735285,-0.8026634455,-0.8026634455,-0.8025668263,-0.801890254,-0.8023735285,-0.8019868731,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8025668263,-0.8026634455,-0.801890254,-0.8017935753,-0.8019868731,-0.8021802306,-0.8022768497,-0.8021802306,-0.8022768497,-0.8021802306,-0.8021802306,-0.8022768497,-0.8022768497,-0.8020835519,-0.8021802306,-0.8021802306,-0.8021802306,-0.8022768497,-0.8021802306,-0.8020835519,-0.8019868731,-0.8020835519,-0.8021802306,-0.8023735285,-0.8022768497,-0.8020835519,-0.8021802306,-0.8024701476,-0.8023735285,-0.8021802306,-0.8021802306,-0.8021802306,-0.8022768497,-0.8021802306,-0.8020835519,-0.8023735285,-0.8024701476,-0.8021802306,-0.8021802306,-0.8022768497,-0.8024701476,-0.8025668263,-0.8025668263,-0.8024701476,-0.8024701476,-0.8024701476,-0.8025668263,-0.8027601242,-0.8026634455,-0.8023735285,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8020835519,-0.8010203838,-0.7978307605,-0.7950278521,-0.7957044244,-0.7955111265,-0.7965742946,-0.8010203838,-0.8019868731,-0.8003438115,-0.799377203,-0.7979274392,-0.7987006307,-0.8006337881,-0.7994738221,-0.7971541882,-0.7966709137,-0.7968642116,-0.7967675924,-0.7967675924,-0.7975407839,-0.7980240583,-0.7977340817,-0.797347486,-0.7972508669,-0.7972508669,-0.7977340817,-0.7982173562,-0.7986039519,-0.7987973094,-0.7987973094,-0.7988939285,-0.7988939285,-0.7984106541,-0.7980240583,-0.7978307605,-0.7971541882,-0.796284318,-0.7951245308,-0.7930946946,-0.7913549542,-0.7920315266,-0.7933846712,-0.7931913733,-0.7901951671,-0.786618948,-0.7878754735,-0.7932879925,-0.7958977222,-0.7961876988,-0.7983140349,-0.8000538349,-0.7989906073,-0.7975407839,-0.7971541882,-0.7971541882,-0.7968642116,-0.7961876988,-0.7961876988,-0.7965742946,-0.7964776158,-0.7963809967,-0.7969608903,-0.797347486,-0.7979274392,-0.8004404902,-0.8016002774,-0.7988939285,-0.797057569,-0.797347486,-0.7968642116,-0.7964776158,-0.7963809967,-0.7958977222,-0.795994401,-0.7964776158,-0.7964776158,-0.7968642116,-0.7987006307,-0.8001505136,-0.7996671796,-0.7990872264,-0.7989906073,-0.7974441648,-0.7948345542,-0.7917416096,-0.7879720926,-0.7864256501,-0.7888420224,-0.7916449308,-0.7913549542,-0.7913549542,-0.7934813499,-0.7958977222,-0.797347486,-0.7981207371,-0.7981207371,-0.7982173562,-0.7987006307,-0.7989906073,-0.7992805243,-0.7994738221,-0.7992805243,-0.7992805243,-0.799377203,-0.7991839051,-0.7990872264,-0.7990872264,-0.7991839051,-0.7989906073,-0.7981207371,-0.7968642116,-0.7960910201,-0.7963809967,-0.7966709137,-0.7961876988,-0.7961876988,-0.7966709137,-0.7968642116,-0.7976374626,-0.7981207371,-0.7975407839,-0.7981207371,-0.8006337881,-0.8004404902,-0.7961876988,-0.7942546606,-0.7957044244,-0.796284318,-0.7974441648,-0.7996671796,-0.8010203838,-0.8016969562,-0.8017935753,-0.8016002774,-0.8016969562,-0.8017935753,-0.8017935753,-0.8016969562,-0.8017935753,-0.801890254,-0.8019868731,-0.8019868731,-0.8019868731,-0.801890254,-0.8017935753,-0.801890254,-0.8019868731,-0.801890254,-0.801890254,-0.801890254,-0.8019868731,-0.8019868731,-0.8019868731,-0.8019868731,-0.8019868731,-0.8019868731,-0.8019868731,-0.8019868731,-0.8020835519,-0.8020835519,-0.8019868731,-0.8019868731,-0.801890254,-0.801890254,-0.8020835519,-0.8021802306,-0.8020835519,-0.8022768497,-0.8022768497,-0.8020835519,-0.8021802306,-0.8021802306,-0.8020835519,-0.8022768497,-0.8023735285,-0.8022768497,-0.8022768497,-0.8021802306,-0.8021802306,-0.8022768497,-0.8023735285,-0.8021802306,-0.8022768497,-0.8022768497,-0.8021802306,-0.8023735285,-0.8020835519,-0.8020835519,-0.8022768497,-0.8025668263,-0.8025668263,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8009237051,-0.8014069796,-0.8020835519,-0.8012136817,-0.8019868731,-0.8017935753,-0.8017935753,-0.8020835519,-0.8019868731,-0.8019868731,-0.8020835519,-0.8022768497,-0.8022768497,-0.8022768497,-0.8021802306,-0.8022768497,-0.8023735285,-0.8021802306,-0.8021802306,-0.8021802306,-0.8021802306,-0.8021802306,-0.8023735285,-0.8023735285,-0.8024701476,-0.8024701476,-0.8024701476,-0.8020835519,-0.8021802306,-0.8023735285,-0.8021802306,-0.8021802306,-0.8022768497,-0.8022768497,-0.8022768497,-0.8024701476,-0.8024701476,-0.8023735285,-0.8022768497,-0.8022768497,-0.8023735285,-0.8023735285,-0.8025668263,-0.8024701476,-0.8022768497,-0.8024701476,-0.8025668263,-0.8025668263,-0.8024701476,-0.8023735285,-0.8024701476,-0.8024701476,-0.8024701476,-0.8024701476,-0.8024701476,-0.8024701476,-0.8025668263,-0.8016002774,-0.7997637987,-0.7961876988,-0.7950278521,-0.7953178287,-0.7948345542,-0.7983140349,-0.8016002774,-0.8005371094,-0.7997637987,-0.7990872264,-0.7976374626,-0.7991839051,-0.8015036583,-0.8003438115,-0.7975407839,-0.7965742946,-0.7968642116,-0.7967675924,-0.7967675924,-0.7971541882,-0.7971541882,-0.7969608903,-0.7965742946,-0.7965742946,-0.7971541882,-0.7976374626,-0.7979274392,-0.7984106541,-0.7986039519,-0.7980240583,-0.7979274392,-0.7983140349,-0.7982173562,-0.7977340817,-0.7971541882,-0.7963809967,-0.7956077456,-0.7940613031,-0.7919349074,-0.7918382287,-0.7940613031,-0.7951245308,-0.7940613031,-0.7898085713,-0.786329031,-0.7884553671,-0.7940613031,-0.7963809967,-0.7971541882,-0.7994738221,-0.7995705009,-0.7976374626,-0.7969608903,-0.797057569,-0.7967675924,-0.796284318,-0.7960910201,-0.7964776158,-0.7966709137,-0.796284318,-0.7964776158,-0.7971541882,-0.797057569,-0.7975407839,-0.8003438115,-0.8013103604,-0.7985073328,-0.7969608903,-0.7971541882,-0.7966709137,-0.7963809967,-0.7963809967,-0.7958977222,-0.7958010435,-0.7961876988,-0.7963809967,-0.7961876988,-0.7966709137,-0.7982173562,-0.8004404902,-0.8015036583,-0.8001505136,-0.7981207371,-0.7963809967,-0.7931913733,-0.7887453437,-0.786618948,-0.789131999,-0.7929013968,-0.7919349074,-0.7900018692,-0.7922248244,-0.7949311733,-0.796284318,-0.797347486,-0.7978307605,-0.7977340817,-0.7981207371,-0.7987006307,-0.7987973094,-0.7987973094,-0.7988939285,-0.7989906073,-0.7988939285,-0.7986039519,-0.7985073328,-0.7986039519,-0.7987006307,-0.7986039519,-0.7978307605,-0.7968642116,-0.7968642116,-0.7969608903,-0.7967675924,-0.7968642116,-0.7966709137,-0.7963809967,-0.797057569,-0.7984106541,-0.7987973094,-0.7976374626,-0.797347486,-0.7994738221,-0.8016002774,-0.7992805243,-0.7956077456,-0.7956077456,-0.795994401,-0.7960910201,-0.7983140349,-0.8004404902,-0.8013103604,-0.8017935753,-0.8016969562,-0.8016969562,-0.801890254,-0.801890254,-0.8017935753,-0.8017935753,-0.801890254,-0.8019868731,-0.8019868731,-0.8020835519,-0.8020835519,-0.801890254,-0.8017935753,-0.801890254,-0.8017935753,-0.8016002774,-0.801890254,-0.8020835519,-0.8019868731,-0.8019868731,-0.8019868731,-0.8021802306,-0.8024701476,-0.8021802306,-0.8019868731,-0.8022768497,-0.8021802306,-0.8020835519,-0.8021802306,-0.8019868731,-0.801890254,-0.8020835519,-0.8022768497,-0.8022768497,-0.8021802306,-0.8022768497,-0.8023735285,-0.8021802306,-0.8019868731,-0.8021802306,-0.8023735285,-0.8021802306,-0.8020835519,-0.8022768497,-0.8022768497,-0.8020835519,-0.8020835519,-0.8021802306,-0.8022768497,-0.8023735285,-0.8021802306,-0.8019868731,-0.8024701476,-0.8025668263,-0.8023735285,-0.8022768497,-0.8016969562,-0.8014069796,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8013103604,-0.801890254,-0.8016002774,-0.8019868731,-0.8022768497,-0.8019868731,-0.8020835519,-0.8019868731,-0.8021802306,-0.8022768497,-0.8022768497,-0.8023735285,-0.8023735285,-0.8022768497,-0.8019868731,-0.8020835519,-0.8020835519,-0.8020835519,-0.8020835519,-0.8020835519,-0.8021802306,-0.8022768497,-0.8022768497,-0.8022768497,-0.8020835519,-0.8017935753,-0.8020835519,-0.8023735285,-0.8022768497,-0.8022768497,-0.8022768497,-0.8021802306,-0.8023735285,-0.8023735285,-0.8022768497,-0.8024701476,-0.8024701476,-0.8024701476,-0.8025668263,-0.8025668263,-0.8023735285,-0.8023735285,-0.8023735285,-0.8024701476,-0.8022768497,-0.8022768497,-0.8024701476,-0.8025668263,-0.8023735285,-0.8024701476,-0.8023735285,-0.8023735285,-0.8023735285,-0.8022768497,-0.8023735285,-0.8024701476,-0.801890254,-0.8005371094,-0.7980240583,-0.7949311733,-0.7950278521,-0.7954144478,-0.795994401,-0.7991839051,-0.8005371094,-0.7999572158,-0.8001505136,-0.7991839051,-0.7982173562,-0.7994738221,-0.8014069796,-0.8012136817,-0.7987006307,-0.7966709137,-0.7965742946,-0.7966709137,-0.7966709137,-0.7964776158,-0.796284318,-0.7963809967,-0.796284318,-0.7958977222,-0.7957044244,-0.7961876988,-0.797057569,-0.7982173562,-0.7984106541,-0.7974441648,-0.7972508669,-0.7980240583,-0.7978307605,-0.797057569,-0.7964776158,-0.7958977222,-0.7945445776,-0.7929980755,-0.7932879925,-0.7945445776,-0.7947378755,-0.7935779691,-0.7904850841,-0.7871022224,-0.7859423757,-0.7889387012,-0.7940613031,-0.7969608903,-0.7982173562,-0.7994738221,-0.7985073328,-0.7967675924,-0.7966709137,-0.7967675924,-0.796284318,-0.7960910201,-0.7961876988,-0.796284318,-0.7966709137,-0.7967675924,-0.7963809967,-0.7967675924,-0.797057569,-0.7972508669,-0.7992805243,-0.8002471328,-0.7981207371,-0.797057569,-0.797057569,-0.7965742946,-0.7964776158,-0.7966709137,-0.796284318,-0.7958010435,-0.7958977222,-0.7963809967,-0.7964776158,-0.7965742946,-0.7971541882,-0.7985073328,-0.8005371094,-0.8007304072,-0.7989906073,-0.7974441648,-0.7943512797,-0.7892286181,-0.7867156267,-0.7887453437,-0.7926114798,-0.7935779691,-0.7909683585,-0.7911616564,-0.793964684,-0.7957044244,-0.7967675924,-0.7979274392,-0.7980240583,-0.7977340817,-0.7981207371,-0.7986039519,-0.7985073328,-0.7983140349,-0.7981207371,-0.7981207371,-0.7979274392,-0.7972508669,-0.7971541882,-0.7976374626,-0.7976374626,-0.7975407839,-0.7974441648,-0.7969608903,-0.7967675924,-0.7966709137,-0.7963809967,-0.795994401,-0.795994401,-0.797057569,-0.7991839051,-0.7995705009,-0.7979274392,-0.7975407839,-0.7988939285,-0.8013103604,-0.8013103604,-0.7974441648,-0.7958977222,-0.7963809967,-0.7951245308,-0.7961876988,-0.7992805243,-0.8006337881,-0.8016002774,-0.801890254,-0.8016002774,-0.8017935753,-0.8017935753,-0.8017935753,-0.8017935753,-0.8016969562,-0.8016969562,-0.8016969562,-0.8017935753,-0.8020835519,-0.801890254,-0.8017935753,-0.801890254,-0.801890254,-0.801890254,-0.8019868731,-0.801890254,-0.8017935753,-0.801890254,-0.801890254,-0.801890254,-0.801890254,-0.8021802306,-0.8021802306,-0.801890254,-0.8016969562,-0.8017935753,-0.8020835519,-0.801890254,-0.801890254,-0.8020835519,-0.8020835519,-0.8019868731,-0.8020835519,-0.8023735285,-0.8022768497,-0.8019868731,-0.8020835519,-0.8020835519,-0.8020835519,-0.8021802306,-0.8021802306,-0.8019868731,-0.8020835519,-0.8022768497,-0.8021802306,-0.8020835519,-0.8022768497,-0.8021802306,-0.8021802306,-0.8019868731,-0.8022768497,-0.8022768497,-0.8024701476,-0.8020835519,-0.8021802306,-0.8002471328,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8017935753,-0.8017935753,-0.801890254,-0.8020835519,-0.8023735285,-0.8020835519,-0.801890254,-0.8019868731,-0.8021802306,-0.8023735285,-0.8022768497,-0.8022768497,-0.8021802306,-0.8020835519,-0.8022768497,-0.8022768497,-0.8020835519,-0.8020835519,-0.8019868731,-0.8019868731,-0.8022768497,-0.8023735285,-0.8022768497,-0.8022768497,-0.8022768497,-0.8021802306,-0.8021802306,-0.8023735285,-0.8021802306,-0.8020835519,-0.8021802306,-0.8021802306,-0.8021802306,-0.8021802306,-0.8021802306,-0.8022768497,-0.8023735285,-0.8022768497,-0.8024701476,-0.8025668263,-0.8024701476,-0.8023735285,-0.8023735285,-0.8022768497,-0.8022768497,-0.8022768497,-0.8023735285,-0.8024701476,-0.8023735285,-0.8023735285,-0.8022768497,-0.8021802306,-0.8023735285,-0.8021802306,-0.8022768497,-0.8022768497,-0.8013103604,-0.7994738221,-0.7957044244,-0.7936747074,-0.7947378755,-0.7950278521,-0.795994401,-0.7979274392,-0.7987006307,-0.7995705009,-0.7998605371,-0.7996671796,-0.7999572158,-0.7999572158,-0.800827086,-0.8019868731,-0.8002471328,-0.7974441648,-0.7964776158,-0.7964776158,-0.7966709137,-0.797347486,-0.7974441648,-0.797057569,-0.796284318,-0.7951245308,-0.7944479585,-0.7947378755,-0.7957044244,-0.7972508669,-0.7978307605,-0.797347486,-0.7974441648,-0.7976374626,-0.7969608903,-0.7966709137,-0.7965742946,-0.7950278521,-0.7935779691,-0.7948345542,-0.7956077456,-0.7944479585,-0.7923215032,-0.789131999,-0.7869089246,-0.7860390544,-0.786329031,-0.7893252969,-0.7944479585,-0.7976374626,-0.7989906073,-0.7991839051,-0.7978307605,-0.7967675924,-0.7966709137,-0.7963809967,-0.7960910201,-0.795994401,-0.7961876988,-0.7964776158,-0.7966709137,-0.7966709137,-0.7963809967,-0.7964776158,-0.7971541882,-0.7975407839,-0.7982173562,-0.7987973094,-0.7980240583,-0.7971541882,-0.7968642116,-0.7964776158,-0.7965742946,-0.7967675924,-0.7965742946,-0.7961876988,-0.7957044244,-0.7956077456,-0.7961876988,-0.7968642116,-0.7975407839,-0.7981207371,-0.7996671796,-0.8010203838,-0.8002471328,-0.7986039519,-0.7956077456,-0.7897118926,-0.7858456969,-0.787392199,-0.7916449308,-0.7946412563,-0.7938680053,-0.7919349074,-0.7931913733,-0.7950278521,-0.7958977222,-0.7968642116,-0.7978307605,-0.7975407839,-0.797347486,-0.7979274392,-0.7982173562,-0.7980240583,-0.7978307605,-0.7974441648,-0.7966709137,-0.795994401,-0.7957044244,-0.7961876988,-0.7967675924,-0.7972508669,-0.797347486,-0.7967675924,-0.7965742946,-0.796284318,-0.7958010435,-0.795994401,-0.7958977222,-0.7972508669,-0.8003438115,-0.7995705009,-0.796284318,-0.797347486,-0.7997637987,-0.800827086,-0.8016002774,-0.7986039519,-0.7952211499,-0.7960910201,-0.7955111265,-0.7945445776,-0.7976374626,-0.7998605371,-0.800827086,-0.801890254,-0.8016969562,-0.8016002774,-0.8017935753,-0.8016969562,-0.8016969562,-0.801890254,-0.801890254,-0.8017935753,-0.8016969562,-0.8017935753,-0.8019868731,-0.8021802306,-0.8020835519,-0.8019868731,-0.8021802306,-0.8021802306,-0.8017935753,-0.8016969562,-0.801890254,-0.801890254,-0.8017935753,-0.8019868731,-0.8020835519,-0.8021802306,-0.8021802306,-0.8021802306,-0.8020835519,-0.8019868731,-0.8020835519,-0.8022768497,-0.8020835519,-0.8016969562,-0.8019868731,-0.8021802306,-0.8019868731,-0.8020835519,-0.8021802306,-0.8020835519,-0.8021802306,-0.8019868731,-0.8019868731,-0.8020835519,-0.801890254,-0.8020835519,-0.8021802306,-0.8019868731,-0.8020835519,-0.8021802306,-0.8021802306,-0.8020835519,-0.8020835519,-0.8021802306,-0.801890254,-0.8016969562,-0.8014069796,-0.801890254,-0.8020835519,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8016002774,-0.8017935753,-0.8023735285,-0.8022768497,-0.8020835519,-0.8021802306,-0.8020835519,-0.8019868731,-0.8021802306,-0.8023735285,-0.8022768497,-0.8021802306,-0.8020835519,-0.8019868731,-0.8021802306,-0.8021802306,-0.8019868731,-0.8020835519,-0.8022768497,-0.8023735285,-0.8024701476,-0.8023735285,-0.8020835519,-0.8020835519,-0.8023735285,-0.8024701476,-0.8022768497,-0.8022768497,-0.8022768497,-0.8022768497,-0.8022768497,-0.8021802306,-0.8022768497,-0.8022768497,-0.8021802306,-0.8022768497,-0.8022768497,-0.8022768497,-0.8023735285,-0.8024701476,-0.8022768497,-0.8023735285,-0.8023735285,-0.8023735285,-0.8024701476,-0.8023735285,-0.8024701476,-0.8023735285,-0.8022768497,-0.8021802306,-0.8021802306,-0.8022768497,-0.8024701476,-0.8024701476,-0.8023735285,-0.8016969562,-0.8007304072,-0.7982173562,-0.7937713861,-0.793964684,-0.7956077456,-0.7945445776,-0.7946412563,-0.7955111265,-0.7968642116,-0.7985073328,-0.7981207371,-0.7979274392,-0.7987973094,-0.7992805243,-0.8005371094,-0.8019868731,-0.8013103604,-0.7983140349,-0.795994401,-0.795994401,-0.7966709137,-0.7977340817,-0.7985073328,-0.7975407839,-0.795994401,-0.7949311733,-0.7942546606,-0.7941579819,-0.7950278521,-0.7961876988,-0.7967675924,-0.7968642116,-0.7964776158,-0.7956077456,-0.7956077456,-0.7966709137,-0.7960910201,-0.7936747074,-0.7936747074,-0.7954144478,-0.7956077456,-0.7928047776,-0.7883586884,-0.7858456969,-0.7858456969,-0.786618948,-0.7876821756,-0.7908717394,-0.7953178287,-0.7983140349,-0.7994738221,-0.7990872264,-0.7977340817,-0.7969608903,-0.7966709137,-0.7961876988,-0.7958977222,-0.7958977222,-0.7964776158,-0.7969608903,-0.7966709137,-0.7965742946,-0.7965742946,-0.7963809967,-0.7968642116,-0.7975407839,-0.7977340817,-0.7978307605,-0.7975407839,-0.7969608903,-0.7966709137,-0.7965742946,-0.7965742946,-0.7966709137,-0.7966709137,-0.7963809967,-0.7958977222,-0.7957044244,-0.7960910201,-0.7966709137,-0.7972508669,-0.7976374626,-0.7987006307,-0.8004404902,-0.8006337881,-0.7994738221,-0.797057569,-0.7913549542,-0.7859423757,-0.7864256501,-0.7904850841,-0.7931913733,-0.7934813499,-0.7933846712,-0.7938680053,-0.7948345542,-0.7954144478,-0.796284318,-0.7974441648,-0.7979274392,-0.7975407839,-0.7975407839,-0.7977340817,-0.7974441648,-0.7971541882,-0.7965742946,-0.7958977222,-0.7950278521,-0.7942546606,-0.7944479585,-0.7956077456,-0.7966709137,-0.7969608903,-0.7969608903,-0.7968642116,-0.796284318,-0.795994401,-0.795994401,-0.7958977222,-0.7980240583,-0.8010203838,-0.7996671796,-0.796284318,-0.797347486,-0.8000538349,-0.8000538349,-0.8005371094,-0.7992805243,-0.7944479585,-0.7945445776,-0.7965742946,-0.7944479585,-0.7952211499,-0.7985073328,-0.7998605371,-0.8013103604,-0.801890254,-0.8016002774,-0.801890254,-0.8019868731,-0.8020835519,-0.8020835519,-0.801890254,-0.8019868731,-0.8019868731,-0.8019868731,-0.8019868731,-0.801890254,-0.801890254,-0.801890254,-0.8020835519,-0.8021802306,-0.8019868731,-0.801890254,-0.801890254,-0.801890254,-0.801890254,-0.801890254,-0.8020835519,-0.8020835519,-0.8019868731,-0.8017935753,-0.801890254,-0.8020835519,-0.8021802306,-0.8020835519,-0.801890254,-0.801890254,-0.8019868731,-0.8019868731,-0.8019868731,-0.8020835519,-0.8021802306,-0.8020835519,-0.8021802306,-0.8020835519,-0.8019868731,-0.8020835519,-0.8020835519,-0.8021802306,-0.8020835519,-0.8019868731,-0.8022768497,-0.8023735285,-0.8023735285,-0.8022768497,-0.8020835519,-0.8019868731,-0.8019868731,-0.8021802306,-0.801890254,-0.8016969562,-0.8013103604,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8009237051,-0.8012136817,-0.8023735285,-0.8023735285,-0.8021802306,-0.8021802306,-0.8021802306,-0.8021802306,-0.8022768497,-0.8022768497,-0.8022768497,-0.8021802306,-0.8017935753,-0.801890254,-0.8021802306,-0.8019868731,-0.801890254,-0.8020835519,-0.8020835519,-0.8021802306,-0.8021802306,-0.8019868731,-0.8019868731,-0.8020835519,-0.8021802306,-0.8021802306,-0.8021802306,-0.8022768497,-0.8021802306,-0.8020835519,-0.8020835519,-0.8020835519,-0.8021802306,-0.8022768497,-0.8023735285,-0.8021802306,-0.8020835519,-0.8019868731,-0.8021802306,-0.8023735285,-0.8023735285,-0.8023735285,-0.8021802306,-0.8022768497,-0.8025668263,-0.8024701476,-0.8023735285,-0.8024701476,-0.8022768497,-0.8020835519,-0.8022768497,-0.8023735285,-0.8021802306,-0.8025668263,-0.8023735285,-0.8010203838,-0.8002471328,-0.7965742946,-0.7932879925,-0.7954144478,-0.7960910201,-0.7940613031,-0.7928047776,-0.7928047776,-0.7956077456,-0.7978307605,-0.7972508669,-0.7972508669,-0.7975407839,-0.7977340817,-0.7988939285,-0.8010203838,-0.8023735285,-0.7999572158,-0.7966709137,-0.7964776158,-0.7969608903,-0.797057569,-0.7976374626,-0.7974441648,-0.7960910201,-0.7946412563,-0.7935779691,-0.7931913733,-0.7935779691,-0.793964684,-0.7948345542,-0.7958010435,-0.7948345542,-0.7933846712,-0.7941579819,-0.7952211499,-0.793964684,-0.7930946946,-0.7943512797,-0.7956077456,-0.7942546606,-0.7892286181,-0.7859423757,-0.7852658033,-0.7852658033,-0.7860390544,-0.789131999,-0.7931913733,-0.7963809967,-0.7986039519,-0.7995705009,-0.7987006307,-0.7974441648,-0.7969608903,-0.7967675924,-0.796284318,-0.7958010435,-0.7958977222,-0.7964776158,-0.7969608903,-0.7969608903,-0.7967675924,-0.7965742946,-0.7963809967,-0.7967675924,-0.7972508669,-0.7974441648,-0.7975407839,-0.7975407839,-0.7971541882,-0.7965742946,-0.7963809967,-0.7966709137,-0.7968642116,-0.7966709137,-0.7963809967,-0.7958010435,-0.7956077456,-0.795994401,-0.7964776158,-0.7969608903,-0.797347486,-0.7980240583,-0.7994738221,-0.8003438115,-0.7996671796,-0.7977340817,-0.7934813499,-0.7879720926,-0.7859423757,-0.7878754735,-0.7904850841,-0.7912583351,-0.7927080989,-0.7945445776,-0.7945445776,-0.7937713861,-0.7949311733,-0.796284318,-0.7967675924,-0.7969608903,-0.7969608903,-0.797057569,-0.7967675924,-0.7961876988,-0.7957044244,-0.7944479585,-0.7929980755,-0.7928047776,-0.7938680053,-0.7948345542,-0.7958010435,-0.7963809967,-0.7965742946,-0.7963809967,-0.796284318,-0.7961876988,-0.7961876988,-0.797057569,-0.7997637987,-0.801117003,-0.7995705009,-0.7981207371,-0.7984106541,-0.7990872264,-0.7986039519,-0.7983140349,-0.7984106541,-0.795994401,-0.7951245308,-0.7969608903,-0.7947378755,-0.7931913733,-0.7969608903,-0.7990872264,-0.8000538349,-0.8016002774,-0.8016969562,-0.8016969562,-0.8020835519,-0.8019868731,-0.8019868731,-0.801890254,-0.801890254,-0.8020835519,-0.8020835519,-0.801890254,-0.8017935753,-0.8017935753,-0.801890254,-0.8019868731,-0.8020835519,-0.8019868731,-0.8020835519,-0.8020835519,-0.8019868731,-0.801890254,-0.801890254,-0.8019868731,-0.8019868731,-0.8017935753,-0.801890254,-0.8019868731,-0.8019868731,-0.8021802306,-0.8020835519,-0.801890254,-0.8019868731,-0.8019868731,-0.8019868731,-0.8020835519,-0.8019868731,-0.8020835519,-0.8022768497,-0.8022768497,-0.8020835519,-0.8020835519,-0.8019868731,-0.8020835519,-0.8020835519,-0.8020835519,-0.8022768497,-0.8023735285,-0.8023735285,-0.8022768497,-0.8021802306,-0.8021802306,-0.8019868731,-0.8020835519,-0.8022768497,-0.801890254,-0.8024701476,-0.8015036583,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8023735285,-0.8020835519,-0.8023735285,-0.8022768497,-0.8017935753,-0.801890254,-0.8020835519,-0.801890254,-0.801890254,-0.8020835519,-0.8021802306,-0.8020835519,-0.8019868731,-0.8017935753,-0.8019868731,-0.8020835519,-0.8019868731,-0.8021802306,-0.8023735285,-0.8022768497,-0.8021802306,-0.801890254,-0.8020835519,-0.8022768497,-0.8020835519,-0.8019868731,-0.8022768497,-0.8021802306,-0.8021802306,-0.8021802306,-0.8022768497,-0.8022768497,-0.8022768497,-0.8022768497,-0.8022768497,-0.8021802306,-0.8021802306,-0.8022768497,-0.8024701476,-0.8025668263,-0.8021802306,-0.8019868731,-0.8022768497,-0.8023735285,-0.8023735285,-0.8023735285,-0.8024701476,-0.8023735285,-0.8022768497,-0.8024701476,-0.8024701476,-0.8024701476,-0.8023735285,-0.8016002774,-0.8002471328,-0.7985073328,-0.7937713861,-0.7932879925,-0.7963809967,-0.7958977222,-0.7929980755,-0.7900018692,-0.7911616564,-0.7961876988,-0.7977340817,-0.7972508669,-0.7976374626,-0.7972508669,-0.797347486,-0.7977340817,-0.7990872264,-0.8017935753,-0.8014069796,-0.7981207371,-0.7964776158,-0.7961876988,-0.7963809967,-0.7968642116,-0.7965742946,-0.7956077456,-0.7946412563,-0.7934813499,-0.7923215032,-0.791451633,-0.7916449308,-0.7930946946,-0.7937713861,-0.7929013968,-0.7927080989,-0.7929980755,-0.7922248244,-0.792514801,-0.7941579819,-0.7950278521,-0.7956077456,-0.7920315266,-0.7871989012,-0.7857490778,-0.7856523991,-0.7849758267,-0.7859423757,-0.789421916,-0.7941579819,-0.7974441648,-0.7985073328,-0.7988939285,-0.7983140349,-0.797347486,-0.797057569,-0.7965742946,-0.795994401,-0.7958977222,-0.7961876988,-0.7964776158,-0.7966709137,-0.7968642116,-0.7969608903,-0.7966709137,-0.7964776158,-0.7968642116,-0.7972508669,-0.7972508669,-0.7975407839,-0.7975407839,-0.797057569,-0.7965742946,-0.7964776158,-0.7965742946,-0.7967675924,-0.7967675924,-0.7967675924,-0.796284318,-0.7955111265,-0.7956077456,-0.7960910201,-0.7965742946,-0.7972508669,-0.7980240583,-0.7988939285,-0.7996671796,-0.7998605371,-0.7984106541,-0.7945445776,-0.7897118926,-0.7871989012,-0.7872955203,-0.7881653905,-0.789131999,-0.791451633,-0.7944479585,-0.7947378755,-0.7934813499,-0.7933846712,-0.7944479585,-0.7947378755,-0.7948345542,-0.7955111265,-0.7956077456,-0.7955111265,-0.7953178287,-0.7941579819,-0.792514801,-0.7917416096,-0.7918382287,-0.7926114798,-0.7943512797,-0.7958010435,-0.796284318,-0.7963809967,-0.7964776158,-0.796284318,-0.7958010435,-0.795994401,-0.7986039519,-0.8012136817,-0.8006337881,-0.7986039519,-0.7981207371,-0.7984106541,-0.7983140349,-0.7982173562,-0.7971541882,-0.7960910201,-0.7961876988,-0.7961876988,-0.7969608903,-0.7958010435,-0.7929013968,-0.7948345542,-0.7985073328,-0.7989906073,-0.8004404902,-0.801890254,-0.8017935753,-0.8017935753,-0.8017935753,-0.801890254,-0.801890254,-0.8016002774,-0.8016969562,-0.8019868731,-0.8019868731,-0.801890254,-0.801890254,-0.801890254,-0.8017935753,-0.8017935753,-0.8019868731,-0.801890254,-0.8017935753,-0.8019868731,-0.8020835519,-0.801890254,-0.801890254,-0.801890254,-0.801890254,-0.8020835519,-0.8020835519,-0.8020835519,-0.8021802306,-0.8022768497,-0.8021802306,-0.8019868731,-0.801890254,-0.8019868731,-0.8019868731,-0.8020835519,-0.8022768497,-0.8022768497,-0.8021802306,-0.8021802306,-0.8020835519,-0.801890254,-0.8019868731,-0.8020835519,-0.801890254,-0.8020835519,-0.8022768497,-0.8022768497,-0.8024701476,-0.8023735285,-0.8023735285,-0.8024701476,-0.8020835519,-0.8017935753,-0.8023735285,-0.8023735285,-0.8026634455,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8007304072,-0.8014069796,-0.8024701476,-0.8024701476,-0.8023735285,-0.8021802306,-0.8023735285,-0.8022768497,-0.8022768497,-0.8021802306,-0.801890254,-0.801890254,-0.8020835519,-0.8019868731,-0.801890254,-0.801890254,-0.8017935753,-0.801890254,-0.8020835519,-0.8022768497,-0.8022768497,-0.8021802306,-0.801890254,-0.8021802306,-0.8022768497,-0.8022768497,-0.8022768497,-0.8020835519,-0.8021802306,-0.8023735285,-0.8020835519,-0.8022768497,-0.8023735285,-0.8021802306,-0.8021802306,-0.8020835519,-0.8021802306,-0.8024701476,-0.8024701476,-0.8023735285,-0.8022768497,-0.8020835519,-0.8020835519,-0.8022768497,-0.8022768497,-0.8021802306,-0.8022768497,-0.8024701476,-0.8026634455,-0.8024701476,-0.8023735285,-0.8022768497,-0.8025668263,-0.8021802306,-0.8005371094,-0.8000538349,-0.7957044244,-0.7910650373,-0.7943512797,-0.7967675924,-0.7942546606,-0.7904850841,-0.7872955203,-0.7908717394,-0.7967675924,-0.7972508669,-0.7968642116,-0.7972508669,-0.7965742946,-0.7967675924,-0.7976374626,-0.7983140349,-0.7999572158,-0.8012136817,-0.8000538349,-0.7976374626,-0.7968642116,-0.797347486,-0.797347486,-0.7967675924,-0.7950278521,-0.7930946946,-0.7918382287,-0.7909683585,-0.7902917862,-0.7905817628,-0.7919349074,-0.792514801,-0.7924181223,-0.7926114798,-0.7917416096,-0.7913549542,-0.7945445776,-0.7963809967,-0.7954144478,-0.7944479585,-0.7900018692,-0.7865223289,-0.7856523991,-0.7854591012,-0.7853624225,-0.7865223289,-0.7901951671,-0.7955111265,-0.7984106541,-0.7989906073,-0.7989906073,-0.7979274392,-0.797057569,-0.7968642116,-0.7961876988,-0.7958977222,-0.7958977222,-0.7961876988,-0.7967675924,-0.7967675924,-0.7967675924,-0.7969608903,-0.7965742946,-0.796284318,-0.7964776158,-0.7969608903,-0.797347486,-0.7976374626,-0.797347486,-0.7969608903,-0.7966709137,-0.796284318,-0.7963809967,-0.7965742946,-0.7966709137,-0.7967675924,-0.7963809967,-0.795994401,-0.7957044244,-0.7956077456,-0.795994401,-0.7967675924,-0.7975407839,-0.7985073328,-0.7990872264,-0.7995705009,-0.7991839051,-0.7954144478,-0.7900984883,-0.7878754735,-0.7876821756,-0.7867156267,-0.7867156267,-0.7898085713,-0.7930946946,-0.7942546606,-0.7949311733,-0.7946412563,-0.7933846712,-0.7927080989,-0.7926114798,-0.7933846712,-0.793964684,-0.7933846712,-0.7926114798,-0.791451633,-0.7900984883,-0.7904850841,-0.7916449308,-0.7927080989,-0.7946412563,-0.7963809967,-0.796284318,-0.7960910201,-0.7969608903,-0.7968642116,-0.7952211499,-0.7961876988,-0.8003438115,-0.8017935753,-0.7997637987,-0.7984106541,-0.7981207371,-0.7971541882,-0.7964776158,-0.797347486,-0.7967675924,-0.7935779691,-0.7934813499,-0.7949311733,-0.7954144478,-0.7963809967,-0.7936747074,-0.7908717394,-0.7947378755,-0.7982173562,-0.7990872264,-0.8012136817,-0.8019868731,-0.8016969562,-0.801890254,-0.801890254,-0.801890254,-0.8017935753,-0.8016969562,-0.8017935753,-0.801890254,-0.8017935753,-0.8017935753,-0.8017935753,-0.8016969562,-0.801890254,-0.8019868731,-0.801890254,-0.801890254,-0.801890254,-0.8017935753,-0.8017935753,-0.8019868731,-0.8019868731,-0.8020835519,-0.8020835519,-0.8019868731,-0.8019868731,-0.8019868731,-0.8020835519,-0.8019868731,-0.8017935753,-0.8017935753,-0.8017935753,-0.8017935753,-0.801890254,-0.8021802306,-0.8022768497,-0.8020835519,-0.8019868731,-0.8020835519,-0.8017935753,-0.801890254,-0.8020835519,-0.801890254,-0.801890254,-0.8020835519,-0.8021802306,-0.8022768497,-0.8021802306,-0.8021802306,-0.8021802306,-0.8021802306,-0.8021802306,-0.8016002774,-0.8007304072,-0.8002471328,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8010203838,-0.801117003,-0.8019868731,-0.801890254,-0.8021802306,-0.8024701476,-0.8020835519,-0.8021802306,-0.8019868731,-0.8021802306,-0.8022768497,-0.8021802306,-0.8020835519,-0.801890254,-0.801890254,-0.8019868731,-0.8020835519,-0.8021802306,-0.8020835519,-0.801890254,-0.8020835519,-0.8020835519,-0.8020835519,-0.8022768497,-0.8021802306,-0.8022768497,-0.8023735285,-0.8020835519,-0.8022768497,-0.8024701476,-0.8020835519,-0.8020835519,-0.8021802306,-0.8020835519,-0.8022768497,-0.8021802306,-0.8021802306,-0.8024701476,-0.8023735285,-0.8023735285,-0.8023735285,-0.8021802306,-0.8021802306,-0.8022768497,-0.8022768497,-0.8023735285,-0.8023735285,-0.8023735285,-0.8023735285,-0.8023735285,-0.8022768497,-0.8023735285,-0.8023735285,-0.8009237051,-0.8000538349,-0.7991839051,-0.7929980755,-0.7917416096,-0.796284318,-0.7958010435,-0.7924181223,-0.7883586884,-0.7865223289,-0.791451633,-0.7957044244,-0.7954144478,-0.7956077456,-0.7967675924,-0.7966709137,-0.7958977222,-0.7968642116,-0.7980240583,-0.7980240583,-0.7994738221,-0.8004404902,-0.7987973094,-0.7981207371,-0.7982173562,-0.7971541882,-0.795994401,-0.7943512797,-0.7919349074,-0.7904850841,-0.7899051905,-0.7897118926,-0.7900984883,-0.7908717394,-0.7921282053,-0.7931913733,-0.7924181223,-0.7910650373,-0.7926114798,-0.7967675924,-0.7975407839,-0.7958010435,-0.7927080989,-0.7888420224,-0.7864256501,-0.7852658033,-0.7857490778,-0.7864256501,-0.7870056033,-0.7908717394,-0.7965742946,-0.7991839051,-0.799377203,-0.7988939285,-0.7975407839,-0.7967675924,-0.7965742946,-0.7960910201,-0.7958977222,-0.7958010435,-0.7961876988,-0.7968642116,-0.7968642116,-0.7968642116,-0.797057569,-0.7966709137,-0.7964776158,-0.7966709137,-0.7969608903,-0.7976374626,-0.7979274392,-0.7974441648,-0.7971541882,-0.7968642116,-0.796284318,-0.7963809967,-0.7966709137,-0.7967675924,-0.7968642116,-0.7965742946,-0.796284318,-0.795994401,-0.7956077456,-0.7958010435,-0.7961876988,-0.7965742946,-0.7979274392,-0.7988939285,-0.7992805243,-0.799377203,-0.7958977222,-0.7900018692,-0.7877787948,-0.7875854969,-0.7853624225,-0.7849758267,-0.7885520458,-0.7918382287,-0.7938680053,-0.7960910201,-0.795994401,-0.7932879925,-0.7917416096,-0.7916449308,-0.7917416096,-0.7921282053,-0.7922248244,-0.791451633,-0.7901951671,-0.7893252969,-0.7892286181,-0.7906783819,-0.7934813499,-0.7958010435,-0.7967675924,-0.7965742946,-0.7960910201,-0.7971541882,-0.7984106541,-0.7983140349,-0.7991839051,-0.801117003,-0.8001505136,-0.7984106541,-0.7982173562,-0.7972508669,-0.795994401,-0.7958977222,-0.796284318,-0.796284318,-0.7929013968,-0.7910650373,-0.7936747074,-0.7943512797,-0.7953178287,-0.7954144478,-0.7905817628,-0.7919349074,-0.7978307605,-0.7985073328,-0.7996671796,-0.801890254,-0.8017935753,-0.8017935753,-0.801890254,-0.801890254,-0.8020835519,-0.801890254,-0.801890254,-0.8019868731,-0.8019868731,-0.8019868731,-0.8019868731,-0.801890254,-0.8017935753,-0.801890254,-0.801890254,-0.8019868731,-0.8020835519,-0.801890254,-0.801890254,-0.8020835519,-0.8020835519,-0.8019868731,-0.801890254,-0.8019868731,-0.8020835519,-0.801890254,-0.8017935753,-0.8021802306,-0.8021802306,-0.801890254,-0.8019868731,-0.8020835519,-0.801890254,-0.8020835519,-0.8022768497,-0.8021802306,-0.801890254,-0.801890254,-0.801890254,-0.801890254,-0.8020835519,-0.8020835519,-0.8020835519,-0.8022768497,-0.8021802306,-0.8021802306,-0.8021802306,-0.8021802306,-0.8020835519,-0.8019868731,-0.8023735285,-0.8027601242,-0.8016969562,-0.8002471328,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8024701476,-0.8016969562,-0.8015036583,-0.8017935753,-0.8019868731,-0.8019868731,-0.8020835519,-0.8019868731,-0.8020835519,-0.8019868731,-0.801890254,-0.8020835519,-0.8019868731,-0.801890254,-0.8019868731,-0.8021802306,-0.8021802306,-0.8019868731,-0.8020835519,-0.8022768497,-0.8021802306,-0.8020835519,-0.8020835519,-0.8020835519,-0.8020835519,-0.8021802306,-0.8021802306,-0.8022768497,-0.8024701476,-0.8024701476,-0.8022768497,-0.8020835519,-0.8020835519,-0.8022768497,-0.8022768497,-0.8022768497,-0.8024701476,-0.8022768497,-0.8020835519,-0.8021802306,-0.8023735285,-0.8023735285,-0.8022768497,-0.8022768497,-0.8023735285,-0.8023735285,-0.8022768497,-0.8023735285,-0.8024701476,-0.8024701476,-0.8022768497,-0.801890254,-0.801890254,-0.7996671796,-0.8001505136,-0.796284318,-0.7912583351,-0.7948345542,-0.7971541882,-0.7945445776,-0.7919349074,-0.7871989012,-0.7872955203,-0.7928047776,-0.7945445776,-0.7937713861,-0.7943512797,-0.7958977222,-0.797057569,-0.7960910201,-0.7966709137,-0.7980240583,-0.7969608903,-0.7975407839,-0.7994738221,-0.7985073328,-0.7979274392,-0.7986039519,-0.7965742946,-0.7935779691,-0.7921282053,-0.7916449308,-0.7907750607,-0.7898085713,-0.7895185947,-0.7897118926,-0.7900984883,-0.7917416096,-0.7930946946,-0.7923215032,-0.7922248244,-0.7938680053,-0.7956077456,-0.7971541882,-0.7963809967,-0.7920315266,-0.7879720926,-0.7857490778,-0.7846859097,-0.7861357331,-0.7870056033,-0.7872955203,-0.7913549542,-0.7971541882,-0.8002471328,-0.8002471328,-0.7984106541,-0.7969608903,-0.7967675924,-0.7963809967,-0.7958977222,-0.7957044244,-0.7958010435,-0.7964776158,-0.7968642116,-0.7967675924,-0.7968642116,-0.7967675924,-0.7964776158,-0.7966709137,-0.7969608903,-0.7971541882,-0.7977340817,-0.7980240583,-0.7975407839,-0.7971541882,-0.7968642116,-0.7963809967,-0.7964776158,-0.7967675924,-0.7967675924,-0.7967675924,-0.7966709137,-0.7964776158,-0.7960910201,-0.7955111265,-0.7956077456,-0.795994401,-0.796284318,-0.797347486,-0.7984106541,-0.7987973094,-0.7992805243,-0.7966709137,-0.7909683585,-0.7883586884,-0.7877787948,-0.7850725055,-0.7846859097,-0.7877787948,-0.7901951671,-0.7934813499,-0.7972508669,-0.7971541882,-0.7942546606,-0.7923215032,-0.7918382287,-0.7917416096,-0.7912583351,-0.7910650373,-0.7905817628,-0.7890353203,-0.7881653905,-0.7885520458,-0.7895185947,-0.7920315266,-0.7953178287,-0.7967675924,-0.7968642116,-0.7974441648,-0.7981207371,-0.7979274392,-0.7990872264,-0.8012136817,-0.8005371094,-0.7986039519,-0.7985073328,-0.7976374626,-0.7954144478,-0.7951245308,-0.7955111265,-0.7951245308,-0.7961876988,-0.7941579819,-0.789421916,-0.791451633,-0.7945445776,-0.7940613031,-0.795994401,-0.793964684,-0.7913549542,-0.7966709137,-0.7992805243,-0.7980240583,-0.8004404902,-0.8020835519,-0.8017935753,-0.801890254,-0.801890254,-0.8019868731,-0.801890254,-0.8017935753,-0.8019868731,-0.8020835519,-0.8019868731,-0.8019868731,-0.8019868731,-0.801890254,-0.8017935753,-0.8019868731,-0.8020835519,-0.8021802306,-0.8020835519,-0.8020835519,-0.8019868731,-0.8019868731,-0.8019868731,-0.8020835519,-0.8021802306,-0.8019868731,-0.8020835519,-0.8021802306,-0.8021802306,-0.8021802306,-0.8020835519,-0.8019868731,-0.8020835519,-0.8021802306,-0.8022768497,-0.8021802306,-0.8020835519,-0.8022768497,-0.8023735285,-0.8020835519,-0.8020835519,-0.8020835519,-0.8020835519,-0.8020835519,-0.8022768497,-0.8024701476,-0.8022768497,-0.8022768497,-0.8022768497,-0.8021802306,-0.8020835519,-0.8021802306,-0.8016969562,-0.8016002774,-0.8020835519,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.801890254,-0.8019868731,-0.8025668263,-0.8019868731,-0.8023735285,-0.8024701476,-0.8022768497,-0.8024701476,-0.8024701476,-0.8020835519,-0.801890254,-0.8020835519,-0.8019868731,-0.801890254,-0.8020835519,-0.8019868731,-0.801890254,-0.8022768497,-0.8024701476,-0.8020835519,-0.8020835519,-0.8023735285,-0.8022768497,-0.8020835519,-0.8023735285,-0.8022768497,-0.8020835519,-0.8023735285,-0.8022768497,-0.8021802306,-0.8023735285,-0.8021802306,-0.8021802306,-0.8023735285,-0.8020835519,-0.8021802306,-0.8024701476,-0.8021802306,-0.8020835519,-0.8021802306,-0.8022768497,-0.8022768497,-0.8022768497,-0.8023735285,-0.8023735285,-0.8022768497,-0.8021802306,-0.8023735285,-0.8021802306,-0.8022768497,-0.8023735285,-0.8022768497,-0.7999572158,-0.7997637987,-0.7991839051,-0.792514801,-0.7918382287,-0.7969608903,-0.796284318,-0.7938680053,-0.7900984883,-0.7854591012,-0.7890353203,-0.7948345542,-0.7949311733,-0.7945445776,-0.7954144478,-0.7958977222,-0.7967675924,-0.7969608903,-0.7964776158,-0.7974441648,-0.7981207371,-0.7982173562,-0.8001505136,-0.7999572158,-0.7969608903,-0.7958977222,-0.7953178287,-0.7919349074,-0.7895185947,-0.7900018692,-0.7900018692,-0.789131999,-0.7889387012,-0.7888420224,-0.7895185947,-0.7917416096,-0.7929980755,-0.7928047776,-0.7932879925,-0.7930946946,-0.7933846712,-0.7963809967,-0.7968642116,-0.792514801,-0.7883586884,-0.7857490778,-0.7844925523,-0.7858456969,-0.786329031,-0.7876821756,-0.7934813499,-0.7986039519,-0.8002471328,-0.799377203,-0.7971541882,-0.7961876988,-0.7964776158,-0.7960910201,-0.7956077456,-0.7956077456,-0.7958977222,-0.7965742946,-0.7966709137,-0.7966709137,-0.7967675924,-0.7966709137,-0.7965742946,-0.7965742946,-0.7966709137,-0.7968642116,-0.7976374626,-0.7983140349,-0.7977340817,-0.797057569,-0.7968642116,-0.7965742946,-0.7963809967,-0.796284318,-0.796284318,-0.7965742946,-0.7967675924,-0.7963809967,-0.7960910201,-0.7956077456,-0.7953178287,-0.7954144478,-0.795994401,-0.7968642116,-0.7976374626,-0.7983140349,-0.7989906073,-0.7976374626,-0.7931913733,-0.7895185947,-0.7875854969,-0.7852658033,-0.7850725055,-0.7874888182,-0.7897118926,-0.7931913733,-0.7968642116,-0.7971541882,-0.7951245308,-0.7932879925,-0.7919349074,-0.7917416096,-0.7916449308,-0.7906783819,-0.789421916,-0.7880687714,-0.7871022224,-0.7872955203,-0.7884553671,-0.7910650373,-0.7943512797,-0.7961876988,-0.7969608903,-0.7972508669,-0.796284318,-0.7961876988,-0.7988939285,-0.8007304072,-0.7990872264,-0.7981207371,-0.7987006307,-0.7961876988,-0.7935779691,-0.7942546606,-0.7943512797,-0.7936747074,-0.7958977222,-0.7952211499,-0.7888420224,-0.788648665,-0.7935779691,-0.7935779691,-0.7951245308,-0.7966709137,-0.7922248244,-0.7933846712,-0.7987973094,-0.7981207371,-0.7982173562,-0.8012136817,-0.8020835519,-0.8017935753,-0.8019868731,-0.8020835519,-0.8019868731,-0.8017935753,-0.8017935753,-0.8019868731,-0.8020835519,-0.8020835519,-0.8020835519,-0.8019868731,-0.8017935753,-0.8017935753,-0.8019868731,-0.801890254,-0.801890254,-0.8020835519,-0.8020835519,-0.801890254,-0.8020835519,-0.8022768497,-0.8021802306,-0.8020835519,-0.8019868731,-0.8022768497,-0.8020835519,-0.8019868731,-0.8020835519,-0.8019868731,-0.801890254,-0.8021802306,-0.8022768497,-0.8019868731,-0.8019868731,-0.8023735285,-0.8024701476,-0.8019868731,-0.801890254,-0.8020835519,-0.8019868731,-0.8020835519,-0.8020835519,-0.8020835519,-0.8021802306,-0.8021802306,-0.8020835519,-0.8021802306,-0.8020835519,-0.8024701476,-0.8021802306,-0.8009237051,-0.7998605371,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8020835519,-0.8020835519,-0.8020835519,-0.8019868731,-0.8022768497,-0.8024701476,-0.8020835519,-0.8020835519,-0.8023735285,-0.8020835519,-0.8021802306,-0.8021802306,-0.8020835519,-0.8020835519,-0.801890254,-0.8019868731,-0.8021802306,-0.8023735285,-0.8024701476,-0.8022768497,-0.8022768497,-0.8025668263,-0.8022768497,-0.8021802306,-0.8023735285,-0.8021802306,-0.8020835519,-0.8023735285,-0.8021802306,-0.8021802306,-0.8023735285,-0.8022768497,-0.8022768497,-0.8024701476,-0.8022768497,-0.8023735285,-0.8023735285,-0.8023735285,-0.8023735285,-0.8022768497,-0.8023735285,-0.8024701476,-0.8021802306,-0.8022768497,-0.8024701476,-0.8023735285,-0.8022768497,-0.8022768497,-0.8022768497,-0.8025668263,-0.8023735285,-0.801117003,-0.7991839051,-0.7998605371,-0.7952211499,-0.7896152139,-0.7936747074,-0.7972508669,-0.7950278521,-0.7920315266,-0.7868123055,-0.7857490778,-0.7923215032,-0.7964776158,-0.7957044244,-0.7963809967,-0.7977340817,-0.7971541882,-0.797057569,-0.7972508669,-0.7953178287,-0.7953178287,-0.7985073328,-0.8000538349,-0.8006337881,-0.801117003,-0.7987006307,-0.7957044244,-0.7935779691,-0.7900984883,-0.7879720926,-0.7883586884,-0.7878754735,-0.7880687714,-0.788648665,-0.7881653905,-0.789131999,-0.791451633,-0.7929013968,-0.7937713861,-0.7940613031,-0.7929013968,-0.7933846712,-0.7956077456,-0.7958977222,-0.7929013968,-0.7898085713,-0.7865223289,-0.7847825289,-0.7859423757,-0.7869089246,-0.7898085713,-0.7958010435,-0.7990872264,-0.7987973094,-0.7974441648,-0.795994401,-0.7957044244,-0.7958010435,-0.7954144478,-0.7952211499,-0.7953178287,-0.7957044244,-0.7964776158,-0.7965742946,-0.7964776158,-0.7964776158,-0.7966709137,-0.7965742946,-0.7963809967,-0.7964776158,-0.7968642116,-0.7975407839,-0.7981207371,-0.7977340817,-0.797057569,-0.797057569,-0.7966709137,-0.7963809967,-0.7964776158,-0.7961876988,-0.7961876988,-0.7966709137,-0.7966709137,-0.7961876988,-0.7956077456,-0.7950278521,-0.7950278521,-0.7956077456,-0.7961876988,-0.797057569,-0.7982173562,-0.7992805243,-0.7983140349,-0.7950278521,-0.7916449308,-0.789131999,-0.7871989012,-0.7870056033,-0.7885520458,-0.7910650373,-0.7940613031,-0.7960910201,-0.7964776158,-0.7958010435,-0.7941579819,-0.7924181223,-0.7918382287,-0.7913549542,-0.7898085713,-0.7885520458,-0.7876821756,-0.7869089246,-0.7864256501,-0.7870056033,-0.7898085713,-0.7929980755,-0.7945445776,-0.7963809967,-0.7963809967,-0.7943512797,-0.7960910201,-0.7995705009,-0.7984106541,-0.7958977222,-0.7969608903,-0.7979274392,-0.7947378755,-0.7927080989,-0.7944479585,-0.7950278521,-0.7937713861,-0.7950278521,-0.7957044244,-0.7902917862,-0.7871022224,-0.7916449308,-0.7934813499,-0.7938680053,-0.7978307605,-0.7945445776,-0.7900018692,-0.7958010435,-0.8000538349,-0.7986039519,-0.7994738221,-0.8015036583,-0.801890254,-0.8019868731,-0.8021802306,-0.8021802306,-0.8019868731,-0.801890254,-0.8019868731,-0.8021802306,-0.8022768497,-0.8021802306,-0.8019868731,-0.8020835519,-0.8020835519,-0.8019868731,-0.8019868731,-0.8019868731,-0.801890254,-0.8019868731,-0.8019868731,-0.8019868731,-0.8020835519,-0.8020835519,-0.8021802306,-0.8020835519,-0.8020835519,-0.8019868731,-0.8019868731,-0.8020835519,-0.8020835519,-0.8020835519,-0.8020835519,-0.801890254,-0.8017935753,-0.8022768497,-0.8022768497,-0.8021802306,-0.8023735285,-0.8021802306,-0.801890254,-0.8020835519,-0.8022768497,-0.8022768497,-0.8019868731,-0.8019868731,-0.8021802306,-0.8020835519,-0.8021802306,-0.8019868731,-0.8022768497,-0.8026634455,-0.8017935753,-0.8015036583,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8000538349,-0.7999572158,-0.801890254,-0.8024701476,-0.8022768497,-0.8026634455,-0.8024701476,-0.8023735285,-0.8023735285,-0.8023735285,-0.8023735285,-0.8021802306,-0.8022768497,-0.8022768497,-0.8022768497,-0.8022768497,-0.8023735285,-0.8023735285,-0.8023735285,-0.8021802306,-0.8023735285,-0.8022768497,-0.8020835519,-0.8022768497,-0.8024701476,-0.8023735285,-0.8024701476,-0.8023735285,-0.8021802306,-0.8021802306,-0.8022768497,-0.8022768497,-0.8024701476,-0.8023735285,-0.8022768497,-0.8024701476,-0.8023735285,-0.8024701476,-0.8023735285,-0.8023735285,-0.8024701476,-0.8023735285,-0.8020835519,-0.8024701476,-0.8025668263,-0.8025668263,-0.8025668263,-0.8022768497,-0.8023735285,-0.8024701476,-0.8022768497,-0.7995705009,-0.7995705009,-0.7978307605,-0.7902917862,-0.7897118926,-0.7960910201,-0.7968642116,-0.7940613031,-0.7900018692,-0.7853624225,-0.7879720926,-0.7941579819,-0.7963809967,-0.7968642116,-0.7979274392,-0.7981207371,-0.7979274392,-0.7982173562,-0.7975407839,-0.7954144478,-0.7951245308,-0.7977340817,-0.7994738221,-0.799377203,-0.7996671796,-0.7999572158,-0.7982173562,-0.7947378755,-0.7915482521,-0.7909683585,-0.7908717394,-0.7893252969,-0.7890353203,-0.7892286181,-0.7884553671,-0.7892286181,-0.7912583351,-0.7930946946,-0.7944479585,-0.7945445776,-0.7935779691,-0.7941579819,-0.7956077456,-0.7953178287,-0.7931913733,-0.7908717394,-0.7878754735,-0.7862323523,-0.7869089246,-0.7883586884,-0.7922248244,-0.7972508669,-0.7987973094,-0.7980240583,-0.7968642116,-0.7956077456,-0.7953178287,-0.7955111265,-0.7951245308,-0.7949311733,-0.7952211499,-0.7957044244,-0.7960910201,-0.7961876988,-0.796284318,-0.7964776158,-0.7966709137,-0.7965742946,-0.7964776158,-0.7967675924,-0.7969608903,-0.7974441648,-0.7981207371,-0.7977340817,-0.7969608903,-0.7968642116,-0.7966709137,-0.7963809967,-0.796284318,-0.795994401,-0.7960910201,-0.7965742946,-0.7966709137,-0.796284318,-0.7958010435,-0.7950278521,-0.7948345542,-0.7952211499,-0.7958010435,-0.7968642116,-0.7981207371,-0.7990872264,-0.7987006307,-0.7965742946,-0.7938680053,-0.791451633,-0.789131999,-0.7884553671,-0.7897118926,-0.7921282053,-0.7947378755,-0.7958977222,-0.7961876988,-0.7961876988,-0.7951245308,-0.7931913733,-0.7924181223,-0.7913549542,-0.7892286181,-0.7880687714,-0.7876821756,-0.786618948,-0.7858456969,-0.7859423757,-0.7883586884,-0.7919349074,-0.7929980755,-0.7934813499,-0.7935779691,-0.7952211499,-0.7983140349,-0.7986039519,-0.795994401,-0.7955111265,-0.7965742946,-0.7965742946,-0.7945445776,-0.7929013968,-0.7947378755,-0.7966709137,-0.7952211499,-0.7948345542,-0.7964776158,-0.7930946946,-0.7871989012,-0.7893252969,-0.7929013968,-0.7921282053,-0.795994401,-0.797057569,-0.7900984883,-0.7900984883,-0.7958977222,-0.797347486,-0.7981207371,-0.8006337881,-0.8019868731,-0.8020835519,-0.801890254,-0.8020835519,-0.8019868731,-0.8019868731,-0.8021802306,-0.8019868731,-0.8019868731,-0.8020835519,-0.8019868731,-0.8019868731,-0.8022768497,-0.8023735285,-0.8021802306,-0.801890254,-0.8017935753,-0.8021802306,-0.8022768497,-0.8020835519,-0.8020835519,-0.8021802306,-0.8020835519,-0.8021802306,-0.8021802306,-0.8019868731,-0.801890254,-0.8019868731,-0.801890254,-0.8020835519,-0.8020835519,-0.801890254,-0.801890254,-0.8021802306,-0.8022768497,-0.801890254,-0.8021802306,-0.8024701476,-0.8019868731,-0.801890254,-0.8021802306,-0.8021802306,-0.8021802306,-0.8021802306,-0.8020835519,-0.8022768497,-0.8022768497,-0.8021802306,-0.8019868731,-0.8013103604,-0.8020835519,-0.8010203838,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.7997637987,-0.8005371094,-0.8027601242,-0.8028567433,-0.8026634455,-0.8024701476,-0.8021802306,-0.8024701476,-0.8022768497,-0.8021802306,-0.8024701476,-0.8024701476,-0.8022768497,-0.8021802306,-0.8021802306,-0.8021802306,-0.8023735285,-0.8025668263,-0.8023735285,-0.8020835519,-0.8022768497,-0.8019868731,-0.8017935753,-0.8021802306,-0.8022768497,-0.8022768497,-0.8024701476,-0.8023735285,-0.8022768497,-0.8023735285,-0.8021802306,-0.8024701476,-0.8024701476,-0.8020835519,-0.8020835519,-0.8023735285,-0.8023735285,-0.8023735285,-0.8023735285,-0.8025668263,-0.8026634455,-0.8023735285,-0.8022768497,-0.8024701476,-0.8024701476,-0.8024701476,-0.8026634455,-0.8022768497,-0.8023735285,-0.8024701476,-0.8012136817,-0.7991839051,-0.7991839051,-0.7942546606,-0.7882620692,-0.7927080989,-0.7976374626,-0.7952211499,-0.7920315266,-0.7876821756,-0.7853624225,-0.7898085713,-0.7943512797,-0.795994401,-0.7975407839,-0.7976374626,-0.797347486,-0.7980240583,-0.7979274392,-0.7958977222,-0.7945445776,-0.7960910201,-0.7979274392,-0.7981207371,-0.7987006307,-0.7994738221,-0.7992805243,-0.7994738221,-0.7988939285,-0.7967675924,-0.7945445776,-0.7934813499,-0.792514801,-0.7908717394,-0.789421916,-0.7887453437,-0.7890353203,-0.7905817628,-0.7930946946,-0.7947378755,-0.7947378755,-0.793964684,-0.7938680053,-0.7951245308,-0.7954144478,-0.793964684,-0.7918382287,-0.7899051905,-0.7889387012,-0.789131999,-0.7907750607,-0.7947378755,-0.7983140349,-0.7987006307,-0.7978307605,-0.7967675924,-0.7956077456,-0.7951245308,-0.7950278521,-0.7950278521,-0.7952211499,-0.7955111265,-0.7958010435,-0.7960910201,-0.795994401,-0.7960910201,-0.7961876988,-0.7964776158,-0.7965742946,-0.7967675924,-0.797057569,-0.7971541882,-0.7975407839,-0.7980240583,-0.7976374626,-0.7968642116,-0.7967675924,-0.7966709137,-0.7961876988,-0.795994401,-0.7958977222,-0.795994401,-0.7963809967,-0.7965742946,-0.796284318,-0.7958977222,-0.7952211499,-0.7948345542,-0.7951245308,-0.7957044244,-0.7964776158,-0.7975407839,-0.7984106541,-0.7987973094,-0.7979274392,-0.7958010435,-0.7929013968,-0.7905817628,-0.7904850841,-0.7917416096,-0.7932879925,-0.7954144478,-0.7960910201,-0.795994401,-0.7968642116,-0.795994401,-0.7940613031,-0.7935779691,-0.7917416096,-0.7888420224,-0.7880687714,-0.7879720926,-0.7871989012,-0.7865223289,-0.786329031,-0.7882620692,-0.7931913733,-0.7952211499,-0.7930946946,-0.7941579819,-0.7988939285,-0.8005371094,-0.7983140349,-0.7960910201,-0.7957044244,-0.795994401,-0.795994401,-0.7954144478,-0.7941579819,-0.7950278521,-0.797057569,-0.7965742946,-0.7954144478,-0.7965742946,-0.7953178287,-0.789131999,-0.7874888182,-0.791451633,-0.7921282053,-0.7940613031,-0.7977340817,-0.7928047776,-0.7853624225,-0.7864256501,-0.7929013968,-0.7975407839,-0.7996671796,-0.8016002774,-0.8022768497,-0.8019868731,-0.8021802306,-0.8022768497,-0.8021802306,-0.8021802306,-0.8020835519,-0.8021802306,-0.8021802306,-0.8019868731,-0.8020835519,-0.8022768497,-0.8023735285,-0.8021802306,-0.8022768497,-0.8024701476,-0.8023735285,-0.8022768497,-0.8020835519,-0.8020835519,-0.8020835519,-0.8022768497,-0.8023735285,-0.8022768497,-0.8022768497,-0.8020835519,-0.8020835519,-0.8020835519,-0.8019868731,-0.8021802306,-0.8022768497,-0.8021802306,-0.8021802306,-0.8022768497,-0.8021802306,-0.8022768497,-0.8023735285,-0.8022768497,-0.8022768497,-0.8022768497,-0.8021802306,-0.8023735285,-0.8024701476,-0.8022768497,-0.8022768497,-0.8021802306,-0.8020835519,-0.8016969562,-0.8016002774,-0.8019868731,-0.8003438115,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8012136817,-0.8022768497,-0.8016002774,-0.8021802306,-0.8026634455,-0.8016969562,-0.8019868731,-0.8021802306,-0.801890254,-0.801890254,-0.8021802306,-0.8023735285,-0.8021802306,-0.8021802306,-0.8022768497,-0.8023735285,-0.8025668263,-0.8024701476,-0.8021802306,-0.8022768497,-0.8024701476,-0.8021802306,-0.8021802306,-0.8021802306,-0.8021802306,-0.8024701476,-0.8024701476,-0.8023735285,-0.8026634455,-0.8026634455,-0.8024701476,-0.8024701476,-0.8024701476,-0.8022768497,-0.8025668263,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8025668263,-0.8024701476,-0.8023735285,-0.8025668263,-0.8025668263,-0.8025668263,-0.8025668263,-0.8025668263,-0.8024701476,-0.8024701476,-0.8022768497,-0.7998605371,-0.799377203,-0.7978307605,-0.7911616564,-0.7900018692,-0.7964776158,-0.7972508669,-0.7927080989,-0.789131999,-0.7853624225,-0.7858456969,-0.7922248244,-0.796284318,-0.7956077456,-0.7957044244,-0.7976374626,-0.7979274392,-0.7972508669,-0.7960910201,-0.7932879925,-0.7929013968,-0.7963809967,-0.7983140349,-0.7987973094,-0.7994738221,-0.799377203,-0.7997637987,-0.8006337881,-0.8007304072,-0.799377203,-0.7957044244,-0.7929980755,-0.7936747074,-0.7927080989,-0.7896152139,-0.7884553671,-0.7889387012,-0.7900984883,-0.7928047776,-0.7951245308,-0.7956077456,-0.7943512797,-0.7931913733,-0.7942546606,-0.7957044244,-0.7943512797,-0.7918382287,-0.7908717394,-0.7907750607,-0.7909683585,-0.7930946946,-0.7966709137,-0.7988939285,-0.7986039519,-0.7976374626,-0.7966709137,-0.7957044244,-0.7950278521,-0.7949311733,-0.7950278521,-0.7953178287,-0.7956077456,-0.7960910201,-0.7965742946,-0.7964776158,-0.7960910201,-0.795994401,-0.796284318,-0.7964776158,-0.7965742946,-0.7967675924,-0.7969608903,-0.7975407839,-0.7980240583,-0.7975407839,-0.7968642116,-0.7967675924,-0.7966709137,-0.7961876988,-0.7958977222,-0.7958010435,-0.795994401,-0.7963809967,-0.7966709137,-0.7964776158,-0.7958977222,-0.7952211499,-0.7948345542,-0.7950278521,-0.7953178287,-0.795994401,-0.797057569,-0.7978307605,-0.7983140349,-0.7982173562,-0.7967675924,-0.7942546606,-0.7926114798,-0.7931913733,-0.7940613031,-0.7947378755,-0.7961876988,-0.7965742946,-0.7960910201,-0.7968642116,-0.7966709137,-0.7950278521,-0.7940613031,-0.7917416096,-0.788648665,-0.7878754735,-0.7881653905,-0.7874888182,-0.787392199,-0.7880687714,-0.7898085713,-0.7934813499,-0.7958977222,-0.795994401,-0.7989906073,-0.8016969562,-0.7994738221,-0.7971541882,-0.7972508669,-0.7966709137,-0.7963809967,-0.7963809967,-0.7950278521,-0.7943512797,-0.7960910201,-0.7976374626,-0.797347486,-0.7960910201,-0.7958010435,-0.7958977222,-0.7919349074,-0.787392199,-0.789421916,-0.7924181223,-0.7941579819,-0.7967675924,-0.7942546606,-0.788648665,-0.7893252969,-0.7942546606,-0.7974441648,-0.7989906073,-0.8010203838,-0.8023735285,-0.8022768497,-0.8021802306,-0.8020835519,-0.8019868731,-0.8021802306,-0.8021802306,-0.8022768497,-0.8023735285,-0.8023735285,-0.8023735285,-0.8022768497,-0.8020835519,-0.8019868731,-0.8022768497,-0.8025668263,-0.8022768497,-0.8020835519,-0.8020835519,-0.8020835519,-0.8021802306,-0.8022768497,-0.8024701476,-0.8022768497,-0.8021802306,-0.8021802306,-0.8022768497,-0.8022768497,-0.8022768497,-0.8022768497,-0.8024701476,-0.8024701476,-0.8023735285,-0.8023735285,-0.8024701476,-0.8026634455,-0.8026634455,-0.8023735285,-0.8023735285,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8025668263,-0.8022768497,-0.8026634455,-0.8026634455,-0.8026634455,-0.8022768497,-0.8013103604,-0.8016002774,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8007304072,-0.8016002774,-0.8021802306,-0.8025668263,-0.8026634455,-0.8025668263,-0.8026634455,-0.8024701476,-0.8020835519,-0.8024701476,-0.8026634455,-0.8026634455,-0.8025668263,-0.8023735285,-0.8024701476,-0.8026634455,-0.8025668263,-0.8024701476,-0.8024701476,-0.8028567433,-0.8026634455,-0.8023735285,-0.8025668263,-0.8025668263,-0.8023735285,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8025668263,-0.8024701476,-0.8024701476,-0.8024701476,-0.8025668263,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8024701476,-0.8024701476,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8024701476,-0.8007304072,-0.799377203,-0.7992805243,-0.7948345542,-0.7897118926,-0.7934813499,-0.7982173562,-0.7953178287,-0.7909683585,-0.787392199,-0.7847825289,-0.7870056033,-0.7926114798,-0.7968642116,-0.7972508669,-0.7968642116,-0.7980240583,-0.7981207371,-0.7971541882,-0.795994401,-0.7940613031,-0.7945445776,-0.7971541882,-0.7987006307,-0.7991839051,-0.7986039519,-0.7979274392,-0.7995705009,-0.8005371094,-0.8000538349,-0.7994738221,-0.7967675924,-0.7940613031,-0.7943512797,-0.7941579819,-0.7910650373,-0.7888420224,-0.789131999,-0.7909683585,-0.7934813499,-0.7954144478,-0.7961876988,-0.7949311733,-0.7930946946,-0.7941579819,-0.795994401,-0.7948345542,-0.7923215032,-0.7912583351,-0.7913549542,-0.7922248244,-0.7946412563,-0.7980240583,-0.799377203,-0.7982173562,-0.797057569,-0.7963809967,-0.7955111265,-0.7951245308,-0.7951245308,-0.7950278521,-0.7952211499,-0.7958010435,-0.796284318,-0.7964776158,-0.7963809967,-0.796284318,-0.796284318,-0.7961876988,-0.7961876988,-0.7965742946,-0.7967675924,-0.7969608903,-0.7976374626,-0.7979274392,-0.797347486,-0.7968642116,-0.7968642116,-0.7967675924,-0.796284318,-0.7958010435,-0.7958010435,-0.795994401,-0.7963809967,-0.7965742946,-0.7963809967,-0.7958977222,-0.7953178287,-0.7948345542,-0.7948345542,-0.7952211499,-0.7958977222,-0.7968642116,-0.7974441648,-0.7978307605,-0.7982173562,-0.7972508669,-0.7951245308,-0.7943512797,-0.7951245308,-0.7956077456,-0.7958977222,-0.7968642116,-0.7967675924,-0.7960910201,-0.7968642116,-0.7972508669,-0.7960910201,-0.7948345542,-0.7921282053,-0.7888420224,-0.7882620692,-0.7887453437,-0.7879720926,-0.7878754735,-0.7895185947,-0.7913549542,-0.7931913733,-0.7957044244,-0.7987973094,-0.8009237051,-0.8007304072,-0.7986039519,-0.7974441648,-0.7976374626,-0.7976374626,-0.7972508669,-0.7966709137,-0.7956077456,-0.7949311733,-0.7965742946,-0.7980240583,-0.7974441648,-0.7965742946,-0.7957044244,-0.7951245308,-0.7931913733,-0.788648665,-0.7881653905,-0.7912583351,-0.7935779691,-0.7958010435,-0.7946412563,-0.7934813499,-0.7969608903,-0.7979274392,-0.7969608903,-0.7986039519,-0.8007304072,-0.8020835519,-0.8021802306,-0.801890254,-0.8021802306,-0.8021802306,-0.8021802306,-0.8021802306,-0.8021802306,-0.8024701476,-0.8024701476,-0.8023735285,-0.8021802306,-0.8021802306,-0.8021802306,-0.8019868731,-0.8021802306,-0.8025668263,-0.8022768497,-0.8022768497,-0.8024701476,-0.8023735285,-0.8022768497,-0.8026634455,-0.8025668263,-0.8022768497,-0.8023735285,-0.8023735285,-0.8023735285,-0.8023735285,-0.8022768497,-0.8025668263,-0.8025668263,-0.8023735285,-0.8023735285,-0.8024701476,-0.8023735285,-0.8025668263,-0.8024701476,-0.8022768497,-0.8023735285,-0.8023735285,-0.8024701476,-0.8023735285,-0.8021802306,-0.8023735285,-0.8024701476,-0.8025668263,-0.8024701476,-0.8023735285,-0.8022768497,-0.800827086,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8020835519,-0.8023735285,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8023735285,-0.8023735285,-0.8025668263,-0.8025668263,-0.8025668263,-0.8024701476,-0.8022768497,-0.8023735285,-0.8026634455,-0.8024701476,-0.8023735285,-0.8026634455,-0.8025668263,-0.8024701476,-0.8023735285,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8024701476,-0.8025668263,-0.8027601242,-0.8027601242,-0.8023735285,-0.8024701476,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8024701476,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8019868731,-0.7997637987,-0.7995705009,-0.7981207371,-0.7924181223,-0.7913549542,-0.7965742946,-0.7968642116,-0.7932879925,-0.7901951671,-0.7857490778,-0.7855557799,-0.7895185947,-0.7923215032,-0.7958010435,-0.7983140349,-0.7980240583,-0.7976374626,-0.7974441648,-0.7974441648,-0.7969608903,-0.7957044244,-0.7958010435,-0.7968642116,-0.7979274392,-0.7989906073,-0.7983140349,-0.7976374626,-0.8000538349,-0.8016002774,-0.8009237051,-0.7998605371,-0.7983140349,-0.7960910201,-0.7954144478,-0.7955111265,-0.7934813499,-0.7903884649,-0.7898085713,-0.7918382287,-0.7945445776,-0.7961876988,-0.7965742946,-0.7956077456,-0.7942546606,-0.7948345542,-0.7958977222,-0.7949311733,-0.7930946946,-0.7923215032,-0.7927080989,-0.7941579819,-0.7965742946,-0.7989906073,-0.7995705009,-0.7982173562,-0.7972508669,-0.7966709137,-0.7956077456,-0.7951245308,-0.7951245308,-0.7949311733,-0.7951245308,-0.795994401,-0.7963809967,-0.7963809967,-0.7961876988,-0.7960910201,-0.796284318,-0.796284318,-0.7963809967,-0.7967675924,-0.7968642116,-0.797057569,-0.7977340817,-0.7976374626,-0.7969608903,-0.7967675924,-0.7967675924,-0.7965742946,-0.796284318,-0.7957044244,-0.7957044244,-0.7960910201,-0.796284318,-0.7964776158,-0.796284318,-0.795994401,-0.7954144478,-0.7949311733,-0.7949311733,-0.7954144478,-0.7958977222,-0.7966709137,-0.7974441648,-0.7980240583,-0.7986039519,-0.7977340817,-0.7958977222,-0.7956077456,-0.7966709137,-0.7966709137,-0.7963809967,-0.797057569,-0.797057569,-0.7964776158,-0.7972508669,-0.7977340817,-0.7969608903,-0.7956077456,-0.7926114798,-0.789131999,-0.789131999,-0.7900018692,-0.789131999,-0.7897118926,-0.7917416096,-0.7929013968,-0.7948345542,-0.7984106541,-0.8007304072,-0.8010203838,-0.8004404902,-0.7992805243,-0.7982173562,-0.7981207371,-0.7982173562,-0.7980240583,-0.7976374626,-0.797057569,-0.7963809967,-0.7966709137,-0.7974441648,-0.7974441648,-0.7972508669,-0.7963809967,-0.7949311733,-0.7937713861,-0.7901951671,-0.7876821756,-0.7897118926,-0.7924181223,-0.7950278521,-0.7952211499,-0.7940613031,-0.7958010435,-0.796284318,-0.7958977222,-0.7983140349,-0.8004404902,-0.801890254,-0.8024701476,-0.8020835519,-0.8023735285,-0.8023735285,-0.8020835519,-0.8022768497,-0.8024701476,-0.8025668263,-0.8023735285,-0.8024701476,-0.8025668263,-0.8024701476,-0.8024701476,-0.8023735285,-0.8022768497,-0.8025668263,-0.8023735285,-0.8022768497,-0.8026634455,-0.8025668263,-0.8022768497,-0.8025668263,-0.8026634455,-0.8024701476,-0.8024701476,-0.8024701476,-0.8024701476,-0.8023735285,-0.8023735285,-0.8027601242,-0.8026634455,-0.8024701476,-0.8026634455,-0.8025668263,-0.8024701476,-0.8025668263,-0.8027601242,-0.8026634455,-0.8025668263,-0.8024701476,-0.8026634455,-0.8026634455,-0.8024701476,-0.8024701476,-0.8025668263,-0.8028567433,-0.8024701476,-0.8023735285,-0.8026634455,-0.8019868731,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8026634455,-0.8022768497,-0.8025668263,-0.8027601242,-0.8027601242,-0.8024701476,-0.8025668263,-0.8025668263,-0.8023735285,-0.8026634455,-0.8027601242,-0.8024701476,-0.8024701476,-0.8024701476,-0.8025668263,-0.8026634455,-0.8025668263,-0.8025668263,-0.8024701476,-0.8025668263,-0.8024701476,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8024701476,-0.8024701476,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8009237051,-0.7994738221,-0.7992805243,-0.7956077456,-0.7910650373,-0.793964684,-0.797057569,-0.7938680053,-0.7917416096,-0.7883586884,-0.7841059566,-0.787392199,-0.7922248244,-0.7940613031,-0.7968642116,-0.7982173562,-0.7975407839,-0.7960910201,-0.7942546606,-0.7954144478,-0.7967675924,-0.7952211499,-0.7952211499,-0.7972508669,-0.7986039519,-0.7986039519,-0.797057569,-0.7966709137,-0.7994738221,-0.8009237051,-0.8002471328,-0.8001505136,-0.7999572158,-0.7981207371,-0.7968642116,-0.797057569,-0.7954144478,-0.7924181223,-0.7912583351,-0.7928047776,-0.7954144478,-0.7971541882,-0.797057569,-0.795994401,-0.7953178287,-0.7958010435,-0.7960910201,-0.7950278521,-0.7938680053,-0.7935779691,-0.793964684,-0.7955111265,-0.7978307605,-0.7995705009,-0.7994738221,-0.7981207371,-0.797347486,-0.7967675924,-0.7958010435,-0.7952211499,-0.7951245308,-0.7950278521,-0.7954144478,-0.7961876988,-0.7964776158,-0.7964776158,-0.796284318,-0.795994401,-0.7960910201,-0.7963809967,-0.7964776158,-0.7967675924,-0.7967675924,-0.797057569,-0.7977340817,-0.7977340817,-0.7972508669,-0.7968642116,-0.7966709137,-0.7965742946,-0.7961876988,-0.7956077456,-0.7957044244,-0.7961876988,-0.796284318,-0.7964776158,-0.7965742946,-0.7961876988,-0.7956077456,-0.7951245308,-0.7952211499,-0.7958010435,-0.796284318,-0.797057569,-0.7978307605,-0.7982173562,-0.7985073328,-0.7982173562,-0.7969608903,-0.796284318,-0.7969608903,-0.7972508669,-0.7966709137,-0.7968642116,-0.7972508669,-0.7969608903,-0.797347486,-0.7979274392,-0.7980240583,-0.7967675924,-0.7934813499,-0.7906783819,-0.7911616564,-0.7917416096,-0.7917416096,-0.7928047776,-0.7933846712,-0.7944479585,-0.7979274392,-0.8006337881,-0.8005371094,-0.8000538349,-0.8001505136,-0.7994738221,-0.7983140349,-0.7980240583,-0.7984106541,-0.7982173562,-0.7977340817,-0.7976374626,-0.797347486,-0.7964776158,-0.7966709137,-0.7982173562,-0.7987973094,-0.7972508669,-0.7960910201,-0.7965742946,-0.7934813499,-0.7875854969,-0.7880687714,-0.7920315266,-0.7941579819,-0.7956077456,-0.7946412563,-0.7923215032,-0.792514801,-0.7955111265,-0.7983140349,-0.7996671796,-0.8013103604,-0.8025668263,-0.8021802306,-0.8020835519,-0.8022768497,-0.8021802306,-0.8023735285,-0.8024701476,-0.8025668263,-0.8024701476,-0.8024701476,-0.8025668263,-0.8025668263,-0.8025668263,-0.8025668263,-0.8024701476,-0.8024701476,-0.8024701476,-0.8024701476,-0.8024701476,-0.8023735285,-0.8023735285,-0.8023735285,-0.8023735285,-0.8022768497,-0.8023735285,-0.8024701476,-0.8023735285,-0.8024701476,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8025668263,-0.8024701476,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8024701476,-0.8021802306,-0.8026634455,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8016002774,-0.8016969562,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8024701476,-0.8024701476,-0.8026634455,-0.8026634455,-0.8024701476,-0.8025668263,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8023735285,-0.8022768497,-0.8024701476,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8019868731,-0.7998605371,-0.799377203,-0.7982173562,-0.792514801,-0.7900984883,-0.7942546606,-0.7949311733,-0.7924181223,-0.7904850841,-0.7856523991,-0.7846859097,-0.7904850841,-0.7941579819,-0.7958977222,-0.7984106541,-0.7987973094,-0.7969608903,-0.7957044244,-0.7957044244,-0.7963809967,-0.7967675924,-0.7960910201,-0.7961876988,-0.7980240583,-0.7988939285,-0.7980240583,-0.7968642116,-0.7968642116,-0.7990872264,-0.8005371094,-0.8003438115,-0.8002471328,-0.8001505136,-0.7991839051,-0.7986039519,-0.7988939285,-0.7977340817,-0.7953178287,-0.7938680053,-0.7938680053,-0.7958010435,-0.7979274392,-0.7977340817,-0.7961876988,-0.7958977222,-0.7964776158,-0.7963809967,-0.7955111265,-0.7949311733,-0.7949311733,-0.7955111265,-0.7965742946,-0.7984106541,-0.7998605371,-0.7994738221,-0.7979274392,-0.797057569,-0.7967675924,-0.7960910201,-0.7954144478,-0.7951245308,-0.7953178287,-0.7958010435,-0.796284318,-0.7963809967,-0.7961876988,-0.795994401,-0.795994401,-0.7960910201,-0.7961876988,-0.796284318,-0.7964776158,-0.7966709137,-0.797057569,-0.7976374626,-0.7975407839,-0.7971541882,-0.7967675924,-0.7966709137,-0.7964776158,-0.7958977222,-0.7954144478,-0.7957044244,-0.7960910201,-0.7961876988,-0.7963809967,-0.7965742946,-0.7960910201,-0.7955111265,-0.7953178287,-0.7954144478,-0.7958010435,-0.7963809967,-0.7972508669,-0.7980240583,-0.7985073328,-0.7987973094,-0.7986039519,-0.7977340817,-0.7969608903,-0.7972508669,-0.797347486,-0.7968642116,-0.7971541882,-0.7976374626,-0.7974441648,-0.7975407839,-0.7977340817,-0.7984106541,-0.7978307605,-0.7944479585,-0.7926114798,-0.7937713861,-0.7940613031,-0.7941579819,-0.7949311733,-0.7952211499,-0.7974441648,-0.8004404902,-0.800827086,-0.7996671796,-0.799377203,-0.7997637987,-0.7997637987,-0.7989906073,-0.7981207371,-0.7979274392,-0.7981207371,-0.7979274392,-0.7977340817,-0.7974441648,-0.7961876988,-0.7958010435,-0.797347486,-0.7983140349,-0.7975407839,-0.7967675924,-0.7978307605,-0.7961876988,-0.789131999,-0.7861357331,-0.7901951671,-0.7931913733,-0.7951245308,-0.7960910201,-0.7924181223,-0.7901951671,-0.7942546606,-0.7982173562,-0.7989906073,-0.8006337881,-0.8025668263,-0.8023735285,-0.8019868731,-0.8022768497,-0.8024701476,-0.8025668263,-0.8024701476,-0.8024701476,-0.8024701476,-0.8025668263,-0.8026634455,-0.8025668263,-0.8024701476,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8028567433,-0.8024701476,-0.8024701476,-0.8025668263,-0.8023735285,-0.8023735285,-0.8025668263,-0.8024701476,-0.8024701476,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8024701476,-0.8024701476,-0.8024701476,-0.8025668263,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8024701476,-0.8024701476,-0.8025668263,-0.8016002774,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8007304072,-0.8007304072,-0.8021802306,-0.8022768497,-0.8026634455,-0.8024701476,-0.8027601242,-0.8026634455,-0.8023735285,-0.8022768497,-0.8025668263,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8024701476,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8024701476,-0.8026634455,-0.8027601242,-0.8024701476,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8024701476,-0.8026634455,-0.8010203838,-0.7995705009,-0.7991839051,-0.7953178287,-0.7905817628,-0.7918382287,-0.7936747074,-0.7924181223,-0.7916449308,-0.7883586884,-0.7846859097,-0.7881653905,-0.7930946946,-0.7947378755,-0.7972508669,-0.7990872264,-0.7980240583,-0.797057569,-0.7977340817,-0.7975407839,-0.7964776158,-0.7971541882,-0.7974441648,-0.7967675924,-0.7974441648,-0.7978307605,-0.7972508669,-0.7975407839,-0.7982173562,-0.7991839051,-0.8001505136,-0.8004404902,-0.8000538349,-0.7997637987,-0.7990872264,-0.799377203,-0.8002471328,-0.7990872264,-0.797057569,-0.7963809967,-0.7956077456,-0.7958010435,-0.7983140349,-0.7983140349,-0.7965742946,-0.7967675924,-0.7976374626,-0.797057569,-0.7958977222,-0.7956077456,-0.795994401,-0.7965742946,-0.7976374626,-0.7988939285,-0.7995705009,-0.7990872264,-0.7977340817,-0.797057569,-0.7968642116,-0.7961876988,-0.7955111265,-0.7952211499,-0.7954144478,-0.7958977222,-0.7961876988,-0.7963809967,-0.7963809967,-0.7961876988,-0.7960910201,-0.7960910201,-0.7960910201,-0.7961876988,-0.7964776158,-0.7966709137,-0.7971541882,-0.7975407839,-0.7972508669,-0.7967675924,-0.7965742946,-0.7964776158,-0.7961876988,-0.7956077456,-0.7954144478,-0.7958010435,-0.7960910201,-0.7961876988,-0.7963809967,-0.7964776158,-0.796284318,-0.7955111265,-0.7951245308,-0.7955111265,-0.7958977222,-0.7963809967,-0.7971541882,-0.7977340817,-0.7985073328,-0.7989906073,-0.7985073328,-0.7976374626,-0.797347486,-0.7976374626,-0.7972508669,-0.7969608903,-0.7977340817,-0.7981207371,-0.7979274392,-0.7975407839,-0.797347486,-0.7980240583,-0.7972508669,-0.7946412563,-0.7943512797,-0.7958977222,-0.7961876988,-0.795994401,-0.7969608903,-0.7989906073,-0.8006337881,-0.8004404902,-0.8001505136,-0.8000538349,-0.7995705009,-0.7997637987,-0.7999572158,-0.7994738221,-0.7987973094,-0.7985073328,-0.7984106541,-0.7980240583,-0.7971541882,-0.7965742946,-0.7964776158,-0.7966709137,-0.7969608903,-0.7974441648,-0.7981207371,-0.7971541882,-0.7960910201,-0.7967675924,-0.7927080989,-0.7862323523,-0.7870056033,-0.7911616564,-0.7938680053,-0.7958010435,-0.7927080989,-0.7888420224,-0.7924181223,-0.7976374626,-0.7987973094,-0.7998605371,-0.8020835519,-0.8026634455,-0.8022768497,-0.8023735285,-0.8025668263,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8024701476,-0.8024701476,-0.8024701476,-0.8024701476,-0.8025668263,-0.8027601242,-0.8027601242,-0.8024701476,-0.8024701476,-0.8028567433,-0.8028567433,-0.8026634455,-0.8025668263,-0.8026634455,-0.8025668263,-0.8024701476,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8024701476,-0.8025668263,-0.8026634455,-0.8025668263,-0.8025668263,-0.8024701476,-0.8023735285,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8024701476,-0.8025668263,-0.8026634455,-0.8025668263,-0.8027601242,-0.8023735285,-0.8019868731,-0.801890254,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.800827086,-0.8017935753,-0.8022768497,-0.8025668263,-0.8027601242,-0.8024701476,-0.8026634455,-0.8025668263,-0.8023735285,-0.8024701476,-0.8025668263,-0.8024701476,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8028567433,-0.8027601242,-0.8028567433,-0.8025668263,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8024701476,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8023735285,-0.8023735285,-0.7997637987,-0.7995705009,-0.7984106541,-0.7911616564,-0.7880687714,-0.7921282053,-0.7928047776,-0.7916449308,-0.7904850841,-0.7860390544,-0.7859423757,-0.7917416096,-0.7941579819,-0.7949311733,-0.7978307605,-0.7992805243,-0.7981207371,-0.797347486,-0.797057569,-0.7961876988,-0.7960910201,-0.7971541882,-0.7971541882,-0.7966709137,-0.7971541882,-0.7968642116,-0.7957044244,-0.7966709137,-0.7983140349,-0.7990872264,-0.799377203,-0.7995705009,-0.799377203,-0.799377203,-0.7992805243,-0.7996671796,-0.8006337881,-0.7999572158,-0.7976374626,-0.7969608903,-0.7971541882,-0.797057569,-0.7981207371,-0.7988939285,-0.7974441648,-0.7972508669,-0.7984106541,-0.7980240583,-0.7967675924,-0.7964776158,-0.7967675924,-0.797347486,-0.7984106541,-0.7990872264,-0.7989906073,-0.7986039519,-0.7976374626,-0.7968642116,-0.7966709137,-0.7960910201,-0.7956077456,-0.7955111265,-0.7955111265,-0.795994401,-0.7963809967,-0.7965742946,-0.7965742946,-0.796284318,-0.795994401,-0.795994401,-0.795994401,-0.7960910201,-0.796284318,-0.7965742946,-0.797347486,-0.7977340817,-0.797057569,-0.7966709137,-0.7966709137,-0.7964776158,-0.795994401,-0.7954144478,-0.7953178287,-0.7957044244,-0.795994401,-0.7961876988,-0.7963809967,-0.796284318,-0.7960910201,-0.7954144478,-0.7950278521,-0.7956077456,-0.7958977222,-0.7960910201,-0.7966709137,-0.7971541882,-0.7976374626,-0.7979274392,-0.7977340817,-0.7974441648,-0.7975407839,-0.7977340817,-0.797347486,-0.797347486,-0.7980240583,-0.7982173562,-0.7979274392,-0.797347486,-0.7971541882,-0.7976374626,-0.7965742946,-0.7949311733,-0.7958977222,-0.797057569,-0.7972508669,-0.7979274392,-0.7988939285,-0.8003438115,-0.800827086,-0.8000538349,-0.7999572158,-0.8002471328,-0.8000538349,-0.7996671796,-0.7994738221,-0.7992805243,-0.7991839051,-0.7989906073,-0.7987006307,-0.7981207371,-0.7977340817,-0.797347486,-0.797057569,-0.7972508669,-0.797347486,-0.7968642116,-0.7977340817,-0.7982173562,-0.795994401,-0.7965742946,-0.7960910201,-0.7888420224,-0.7855557799,-0.789421916,-0.7923215032,-0.7941579819,-0.7924181223,-0.7882620692,-0.7907750607,-0.7965742946,-0.7984106541,-0.7991839051,-0.8016002774,-0.8027601242,-0.8023735285,-0.8023735285,-0.8025668263,-0.8026634455,-0.8025668263,-0.8024701476,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8025668263,-0.8025668263,-0.8026634455,-0.8025668263,-0.8024701476,-0.8025668263,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8025668263,-0.8027601242,-0.8025668263,-0.8024701476,-0.8027601242,-0.8026634455,-0.8027601242,-0.8024701476,-0.8024701476,-0.8025668263,-0.8027601242,-0.8024701476,-0.8024701476,-0.8020835519,-0.8022768497,-0.8012136817,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8016002774,-0.8021802306,-0.8023735285,-0.8025668263,-0.8026634455,-0.8024701476,-0.8026634455,-0.8026634455,-0.8025668263,-0.8024701476,-0.8024701476,-0.8024701476,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8013103604,-0.7994738221,-0.7999572158,-0.796284318,-0.7887453437,-0.7879720926,-0.7919349074,-0.7926114798,-0.7913549542,-0.7882620692,-0.7851691246,-0.7876821756,-0.7935779691,-0.7960910201,-0.7963809967,-0.7983140349,-0.799377203,-0.7971541882,-0.795994401,-0.7969608903,-0.797347486,-0.7972508669,-0.7968642116,-0.795994401,-0.7961876988,-0.7968642116,-0.7958010435,-0.7950278521,-0.7967675924,-0.7984106541,-0.7990872264,-0.7990872264,-0.7991839051,-0.7991839051,-0.7991839051,-0.799377203,-0.7996671796,-0.7998605371,-0.8004404902,-0.7996671796,-0.7981207371,-0.7982173562,-0.7985073328,-0.7983140349,-0.7988939285,-0.7981207371,-0.7975407839,-0.7985073328,-0.7986039519,-0.7978307605,-0.7976374626,-0.7975407839,-0.7977340817,-0.7984106541,-0.7984106541,-0.7982173562,-0.7983140349,-0.7979274392,-0.7971541882,-0.7966709137,-0.7961876988,-0.7958010435,-0.7955111265,-0.7957044244,-0.796284318,-0.7965742946,-0.7965742946,-0.7963809967,-0.7961876988,-0.795994401,-0.795994401,-0.795994401,-0.7961876988,-0.7963809967,-0.7965742946,-0.7972508669,-0.7976374626,-0.797057569,-0.7967675924,-0.7968642116,-0.7964776158,-0.7958010435,-0.7953178287,-0.7952211499,-0.7955111265,-0.7958010435,-0.7960910201,-0.7963809967,-0.796284318,-0.7958010435,-0.7953178287,-0.7951245308,-0.7954144478,-0.7958977222,-0.795994401,-0.7961876988,-0.7964776158,-0.7966709137,-0.7968642116,-0.797057569,-0.797057569,-0.797347486,-0.7976374626,-0.7975407839,-0.7979274392,-0.7982173562,-0.7979274392,-0.7977340817,-0.7972508669,-0.7972508669,-0.7975407839,-0.7965742946,-0.7961876988,-0.797347486,-0.7978307605,-0.7982173562,-0.7990872264,-0.7992805243,-0.7992805243,-0.7997637987,-0.7998605371,-0.7996671796,-0.7995705009,-0.7998605371,-0.7996671796,-0.7987973094,-0.7987973094,-0.799377203,-0.7991839051,-0.7984106541,-0.7979274392,-0.7977340817,-0.7975407839,-0.7972508669,-0.7971541882,-0.7972508669,-0.7969608903,-0.7967675924,-0.7975407839,-0.7965742946,-0.7954144478,-0.7960910201,-0.7918382287,-0.7861357331,-0.7878754735,-0.7912583351,-0.7923215032,-0.7919349074,-0.7882620692,-0.7888420224,-0.7951245308,-0.7983140349,-0.7988939285,-0.8009237051,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8025668263,-0.8025668263,-0.8024701476,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8025668263,-0.8024701476,-0.8025668263,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8025668263,-0.8024701476,-0.801890254,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8016969562,-0.8021802306,-0.8024701476,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8023735285,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8023735285,-0.8023735285,-0.8001505136,-0.7997637987,-0.7988939285,-0.7930946946,-0.7881653905,-0.7893252969,-0.7915482521,-0.7918382287,-0.7898085713,-0.7867156267,-0.7864256501,-0.7898085713,-0.7943512797,-0.7974441648,-0.7978307605,-0.7979274392,-0.7975407839,-0.7963809967,-0.7972508669,-0.7983140349,-0.7976374626,-0.7975407839,-0.7976374626,-0.797057569,-0.7971541882,-0.7972508669,-0.7965742946,-0.7967675924,-0.7978307605,-0.7985073328,-0.7989906073,-0.7991839051,-0.7992805243,-0.7992805243,-0.7992805243,-0.799377203,-0.7994738221,-0.7992805243,-0.7996671796,-0.8001505136,-0.7992805243,-0.7985073328,-0.7985073328,-0.7987006307,-0.7988939285,-0.7987006307,-0.7983140349,-0.7987006307,-0.7987973094,-0.7983140349,-0.7982173562,-0.7980240583,-0.7979274392,-0.7982173562,-0.7981207371,-0.7978307605,-0.7980240583,-0.7980240583,-0.7974441648,-0.7968642116,-0.7964776158,-0.795994401,-0.7954144478,-0.7955111265,-0.7961876988,-0.7967675924,-0.7966709137,-0.7963809967,-0.7961876988,-0.795994401,-0.7960910201,-0.7960910201,-0.7961876988,-0.7965742946,-0.7966709137,-0.7968642116,-0.7974441648,-0.7972508669,-0.7965742946,-0.7965742946,-0.796284318,-0.7956077456,-0.7953178287,-0.7952211499,-0.7955111265,-0.7958010435,-0.7958977222,-0.796284318,-0.7963809967,-0.7958010435,-0.7954144478,-0.7952211499,-0.7951245308,-0.7956077456,-0.795994401,-0.7960910201,-0.7961876988,-0.796284318,-0.7964776158,-0.7967675924,-0.7968642116,-0.7971541882,-0.7975407839,-0.7977340817,-0.7982173562,-0.7982173562,-0.7976374626,-0.7974441648,-0.7972508669,-0.7972508669,-0.797347486,-0.797057569,-0.797347486,-0.7983140349,-0.7987006307,-0.7987973094,-0.7988939285,-0.7988939285,-0.7990872264,-0.7991839051,-0.7988939285,-0.7987973094,-0.7988939285,-0.7990872264,-0.7990872264,-0.7988939285,-0.7991839051,-0.7997637987,-0.7991839051,-0.7978307605,-0.7975407839,-0.7975407839,-0.7971541882,-0.7975407839,-0.7978307605,-0.797057569,-0.7968642116,-0.7971541882,-0.797347486,-0.7965742946,-0.7948345542,-0.7952211499,-0.7937713861,-0.7874888182,-0.7862323523,-0.7900984883,-0.7913549542,-0.7911616564,-0.788648665,-0.7875854969,-0.7934813499,-0.7983140349,-0.7986039519,-0.8002471328,-0.8022768497,-0.8025668263,-0.8024701476,-0.8024701476,-0.8025668263,-0.8025668263,-0.8024701476,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.801890254,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.801890254,-0.8020835519,-0.8023735285,-0.8025668263,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8024701476,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8023735285,-0.8016969562,-0.7996671796,-0.799377203,-0.7969608903,-0.7907750607,-0.7872955203,-0.7879720926,-0.789421916,-0.7905817628,-0.7892286181,-0.786618948,-0.7872955203,-0.7911616564,-0.7954144478,-0.7981207371,-0.7979274392,-0.7967675924,-0.7966709137,-0.7976374626,-0.7983140349,-0.7975407839,-0.7968642116,-0.7974441648,-0.7979274392,-0.7975407839,-0.797347486,-0.797347486,-0.7977340817,-0.7980240583,-0.7978307605,-0.7978307605,-0.7985073328,-0.7989906073,-0.799377203,-0.799377203,-0.7992805243,-0.799377203,-0.7994738221,-0.7991839051,-0.7990872264,-0.799377203,-0.7994738221,-0.7987006307,-0.7984106541,-0.7987006307,-0.7988939285,-0.7989906073,-0.7987006307,-0.7987006307,-0.7988939285,-0.7985073328,-0.7982173562,-0.7983140349,-0.7982173562,-0.7980240583,-0.7979274392,-0.7975407839,-0.797347486,-0.7976374626,-0.797347486,-0.7968642116,-0.7965742946,-0.7961876988,-0.7956077456,-0.7956077456,-0.796284318,-0.7968642116,-0.7967675924,-0.7964776158,-0.796284318,-0.7958977222,-0.7958977222,-0.795994401,-0.7960910201,-0.7964776158,-0.7966709137,-0.7968642116,-0.7974441648,-0.7974441648,-0.7965742946,-0.7963809967,-0.7963809967,-0.7957044244,-0.7952211499,-0.7953178287,-0.7955111265,-0.7957044244,-0.795994401,-0.7960910201,-0.7961876988,-0.795994401,-0.7956077456,-0.7953178287,-0.7952211499,-0.7954144478,-0.7957044244,-0.795994401,-0.796284318,-0.7963809967,-0.7963809967,-0.7965742946,-0.7969608903,-0.7972508669,-0.7974441648,-0.7978307605,-0.7982173562,-0.7977340817,-0.797347486,-0.7974441648,-0.7975407839,-0.7974441648,-0.7972508669,-0.7974441648,-0.7980240583,-0.7984106541,-0.7985073328,-0.7984106541,-0.7983140349,-0.7984106541,-0.7986039519,-0.7987973094,-0.7987006307,-0.7986039519,-0.7987006307,-0.7987973094,-0.7987973094,-0.7987973094,-0.7992805243,-0.7998605371,-0.799377203,-0.7977340817,-0.7971541882,-0.7975407839,-0.7976374626,-0.7976374626,-0.7978307605,-0.797347486,-0.7966709137,-0.7966709137,-0.7974441648,-0.7977340817,-0.796284318,-0.7958977222,-0.7960910201,-0.7904850841,-0.7858456969,-0.789421916,-0.7919349074,-0.7905817628,-0.7885520458,-0.7869089246,-0.7910650373,-0.7974441648,-0.7987973094,-0.7994738221,-0.801890254,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8024701476,-0.8025668263,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8025668263,-0.8026634455,-0.8025668263,-0.8020835519,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8022768497,-0.8025668263,-0.8023735285,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8023735285,-0.800827086,-0.7996671796,-0.799377203,-0.7947378755,-0.788648665,-0.7874888182,-0.7888420224,-0.7900018692,-0.7901951671,-0.7878754735,-0.7865223289,-0.7883586884,-0.7919349074,-0.7961876988,-0.7985073328,-0.7978307605,-0.7971541882,-0.7975407839,-0.7983140349,-0.7981207371,-0.7966709137,-0.795994401,-0.7969608903,-0.7975407839,-0.7965742946,-0.7963809967,-0.7978307605,-0.7985073328,-0.7977340817,-0.7975407839,-0.7984106541,-0.7987006307,-0.7988939285,-0.7994738221,-0.7996671796,-0.7995705009,-0.7992805243,-0.7988939285,-0.7986039519,-0.7986039519,-0.7988939285,-0.799377203,-0.7992805243,-0.7988939285,-0.7988939285,-0.7989906073,-0.7989906073,-0.7987973094,-0.7984106541,-0.7986039519,-0.7986039519,-0.7982173562,-0.7981207371,-0.7981207371,-0.7976374626,-0.7975407839,-0.7972508669,-0.7969608903,-0.797057569,-0.7969608903,-0.7967675924,-0.7965742946,-0.7960910201,-0.7956077456,-0.7957044244,-0.7963809967,-0.7968642116,-0.7967675924,-0.7964776158,-0.796284318,-0.7958977222,-0.7958010435,-0.7958010435,-0.7958977222,-0.7963809967,-0.7965742946,-0.7966709137,-0.7974441648,-0.7975407839,-0.7966709137,-0.7963809967,-0.7963809967,-0.7957044244,-0.7952211499,-0.7953178287,-0.7956077456,-0.7958010435,-0.795994401,-0.7961876988,-0.796284318,-0.7960910201,-0.7956077456,-0.7951245308,-0.7951245308,-0.7954144478,-0.7956077456,-0.7957044244,-0.795994401,-0.796284318,-0.7964776158,-0.7966709137,-0.7969608903,-0.7971541882,-0.7975407839,-0.7979274392,-0.7977340817,-0.797347486,-0.7971541882,-0.7972508669,-0.7975407839,-0.7976374626,-0.7975407839,-0.7977340817,-0.7981207371,-0.7983140349,-0.7982173562,-0.7980240583,-0.7980240583,-0.7983140349,-0.7986039519,-0.7986039519,-0.7985073328,-0.7985073328,-0.7985073328,-0.7986039519,-0.7988939285,-0.7989906073,-0.799377203,-0.8000538349,-0.799377203,-0.7975407839,-0.7968642116,-0.7971541882,-0.7974441648,-0.7975407839,-0.797347486,-0.7976374626,-0.7978307605,-0.7961876988,-0.7958010435,-0.7982173562,-0.7978307605,-0.795994401,-0.7977340817,-0.7942546606,-0.7857490778,-0.7871022224,-0.7926114798,-0.7910650373,-0.7879720926,-0.7872955203,-0.7901951671,-0.7960910201,-0.7985073328,-0.7988939285,-0.8014069796,-0.8026634455,-0.8026634455,-0.8024701476,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8024701476,-0.8026634455,-0.8024701476,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8023735285,-0.8025668263,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8026634455,-0.8025668263,-0.801890254,-0.8025668263,-0.8027601242,-0.8028567433,-0.8026634455,-0.8023735285,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8024701476,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8021802306,-0.8000538349,-0.7996671796,-0.7984106541,-0.792514801,-0.7881653905,-0.7893252969,-0.7923215032,-0.7929980755,-0.7890353203,-0.7861357331,-0.7880687714,-0.7900984883,-0.7926114798,-0.7969608903,-0.7984106541,-0.797347486,-0.797347486,-0.7980240583,-0.7983140349,-0.7979274392,-0.797347486,-0.7972508669,-0.797347486,-0.7969608903,-0.7966709137,-0.7972508669,-0.7984106541,-0.7982173562,-0.7969608903,-0.797347486,-0.7987973094,-0.7992805243,-0.799377203,-0.7996671796,-0.7998605371,-0.7998605371,-0.7992805243,-0.7987006307,-0.7985073328,-0.7986039519,-0.7987973094,-0.7992805243,-0.7996671796,-0.7991839051,-0.7987006307,-0.7988939285,-0.7989906073,-0.7987973094,-0.7986039519,-0.7986039519,-0.7984106541,-0.7980240583,-0.7978307605,-0.7977340817,-0.797347486,-0.7971541882,-0.797057569,-0.7969608903,-0.797057569,-0.7968642116,-0.7967675924,-0.7965742946,-0.7958977222,-0.7956077456,-0.795994401,-0.7963809967,-0.7967675924,-0.7969608903,-0.7964776158,-0.795994401,-0.7958010435,-0.7957044244,-0.7958010435,-0.7958977222,-0.796284318,-0.7965742946,-0.7964776158,-0.7971541882,-0.7976374626,-0.7967675924,-0.7961876988,-0.796284318,-0.7956077456,-0.7949311733,-0.7951245308,-0.7954144478,-0.7957044244,-0.7960910201,-0.796284318,-0.7963809967,-0.7960910201,-0.7955111265,-0.7950278521,-0.7950278521,-0.7954144478,-0.7955111265,-0.7955111265,-0.7958010435,-0.796284318,-0.7965742946,-0.7968642116,-0.7969608903,-0.7971541882,-0.7977340817,-0.7977340817,-0.7971541882,-0.797057569,-0.7972508669,-0.7972508669,-0.797347486,-0.7975407839,-0.7977340817,-0.7979274392,-0.7980240583,-0.7980240583,-0.7979274392,-0.7979274392,-0.7980240583,-0.7984106541,-0.7985073328,-0.7983140349,-0.7980240583,-0.7982173562,-0.7984106541,-0.7985073328,-0.7989906073,-0.799377203,-0.7995705009,-0.8001505136,-0.7996671796,-0.7978307605,-0.797057569,-0.797057569,-0.7968642116,-0.7974441648,-0.7978307605,-0.7975407839,-0.7979274392,-0.7976374626,-0.796284318,-0.7974441648,-0.7984106541,-0.795994401,-0.7965742946,-0.7963809967,-0.7881653905,-0.7849758267,-0.7915482521,-0.7930946946,-0.7889387012,-0.7865223289,-0.788648665,-0.7946412563,-0.7981207371,-0.7986039519,-0.8009237051,-0.8026634455,-0.8025668263,-0.8024701476,-0.8025668263,-0.8026634455,-0.8026634455,-0.8024701476,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8023735285,-0.8025668263,-0.8027601242,-0.8025668263,-0.8024701476,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8028567433,-0.8026634455,-0.8025668263,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8024701476,-0.8025668263,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.801890254,-0.801117003,-0.8016969562,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8024701476,-0.8024701476,-0.8024701476,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8028567433,-0.8026634455,-0.8025668263,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8024701476,-0.8027601242,-0.8027601242,-0.8023735285,-0.8016969562,-0.7997637987,-0.799377203,-0.796284318,-0.7904850841,-0.7876821756,-0.7899051905,-0.7934813499,-0.7917416096,-0.7865223289,-0.7861357331,-0.7889387012,-0.7915482521,-0.7955111265,-0.7984106541,-0.7980240583,-0.797347486,-0.7979274392,-0.7980240583,-0.7975407839,-0.7975407839,-0.7979274392,-0.7978307605,-0.7974441648,-0.7971541882,-0.7974441648,-0.7985073328,-0.7988939285,-0.797347486,-0.796284318,-0.7971541882,-0.7982173562,-0.7987006307,-0.7994738221,-0.7999572158,-0.8001505136,-0.7999572158,-0.7994738221,-0.7989906073,-0.7987006307,-0.7987973094,-0.7991839051,-0.7994738221,-0.7995705009,-0.7990872264,-0.7985073328,-0.7986039519,-0.7988939285,-0.7987973094,-0.7985073328,-0.7983140349,-0.7982173562,-0.7980240583,-0.7977340817,-0.7975407839,-0.7974441648,-0.797057569,-0.7968642116,-0.7967675924,-0.7968642116,-0.7966709137,-0.7965742946,-0.7963809967,-0.7958977222,-0.7957044244,-0.7960910201,-0.7965742946,-0.7967675924,-0.7966709137,-0.7963809967,-0.795994401,-0.7956077456,-0.7955111265,-0.7958977222,-0.7960910201,-0.7960910201,-0.7963809967,-0.7963809967,-0.7969608903,-0.7977340817,-0.797057569,-0.7961876988,-0.7961876988,-0.7956077456,-0.7948345542,-0.7950278521,-0.7953178287,-0.7955111265,-0.7960910201,-0.7963809967,-0.796284318,-0.7961876988,-0.7957044244,-0.7951245308,-0.7949311733,-0.7951245308,-0.7955111265,-0.7956077456,-0.7958977222,-0.7965742946,-0.7968642116,-0.7967675924,-0.7968642116,-0.7972508669,-0.7975407839,-0.797347486,-0.7969608903,-0.797057569,-0.7972508669,-0.7972508669,-0.7972508669,-0.7974441648,-0.7976374626,-0.7978307605,-0.7980240583,-0.7979274392,-0.7977340817,-0.7978307605,-0.7982173562,-0.7982173562,-0.7982173562,-0.7981207371,-0.7981207371,-0.7983140349,-0.7987006307,-0.7988939285,-0.7991839051,-0.7994738221,-0.7995705009,-0.8000538349,-0.8000538349,-0.7988939285,-0.7981207371,-0.7977340817,-0.7971541882,-0.797347486,-0.7979274392,-0.7976374626,-0.7976374626,-0.7982173562,-0.7975407839,-0.797057569,-0.7984106541,-0.797057569,-0.7950278521,-0.7965742946,-0.792514801,-0.7858456969,-0.7890353203,-0.7931913733,-0.7898085713,-0.7859423757,-0.7870056033,-0.7930946946,-0.7979274392,-0.7986039519,-0.8003438115,-0.8025668263,-0.8026634455,-0.8024701476,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8025668263,-0.8026634455,-0.8025668263,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8019868731,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8016969562,-0.8021802306,-0.8016002774,-0.8023735285,-0.8027601242,-0.8024701476,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8024701476,-0.8023735285,-0.8027601242,-0.8026634455,-0.8022768497,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8024701476,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8024701476,-0.8025668263,-0.8009237051,-0.799377203,-0.7986039519,-0.7944479585,-0.7885520458,-0.7864256501,-0.789421916,-0.7923215032,-0.7890353203,-0.7854591012,-0.7868123055,-0.7899051905,-0.7943512797,-0.7978307605,-0.7976374626,-0.7972508669,-0.7978307605,-0.7980240583,-0.7976374626,-0.7969608903,-0.7971541882,-0.7978307605,-0.7975407839,-0.7969608903,-0.7978307605,-0.7990872264,-0.7987973094,-0.7972508669,-0.7958010435,-0.7954144478,-0.7961876988,-0.7969608903,-0.7980240583,-0.7991839051,-0.7999572158,-0.8002471328,-0.8000538349,-0.7997637987,-0.799377203,-0.7989906073,-0.7991839051,-0.7997637987,-0.7997637987,-0.7994738221,-0.7992805243,-0.7987973094,-0.7982173562,-0.7983140349,-0.7984106541,-0.7980240583,-0.7977340817,-0.7979274392,-0.7978307605,-0.7975407839,-0.797347486,-0.7972508669,-0.7969608903,-0.7967675924,-0.7965742946,-0.7964776158,-0.796284318,-0.7961876988,-0.7960910201,-0.7958977222,-0.7957044244,-0.795994401,-0.7965742946,-0.7967675924,-0.7965742946,-0.796284318,-0.7958977222,-0.7954144478,-0.7953178287,-0.7956077456,-0.7960910201,-0.7963809967,-0.796284318,-0.7960910201,-0.7969608903,-0.7978307605,-0.797057569,-0.7960910201,-0.7960910201,-0.7957044244,-0.7948345542,-0.7948345542,-0.7953178287,-0.7956077456,-0.7958977222,-0.7961876988,-0.796284318,-0.7961876988,-0.7958010435,-0.7952211499,-0.7950278521,-0.7952211499,-0.7957044244,-0.7958977222,-0.7960910201,-0.7966709137,-0.7968642116,-0.7967675924,-0.7969608903,-0.7972508669,-0.7972508669,-0.7968642116,-0.7967675924,-0.7967675924,-0.7969608903,-0.7971541882,-0.7972508669,-0.797347486,-0.7976374626,-0.7978307605,-0.7982173562,-0.7982173562,-0.7977340817,-0.7977340817,-0.7981207371,-0.7982173562,-0.7983140349,-0.7985073328,-0.7985073328,-0.7987006307,-0.7988939285,-0.7990872264,-0.7994738221,-0.7997637987,-0.7996671796,-0.7997637987,-0.8001505136,-0.7996671796,-0.7987006307,-0.7981207371,-0.7976374626,-0.7974441648,-0.7976374626,-0.7976374626,-0.7975407839,-0.7978307605,-0.7982173562,-0.7976374626,-0.7978307605,-0.7986039519,-0.7964776158,-0.7958977222,-0.7950278521,-0.788648665,-0.7879720926,-0.7930946946,-0.7908717394,-0.7861357331,-0.7867156267,-0.7916449308,-0.7971541882,-0.7988939285,-0.8000538349,-0.8024701476,-0.8027601242,-0.8024701476,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8024701476,-0.8025668263,-0.8026634455,-0.8028567433,-0.8024701476,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8012136817,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8017935753,-0.8022768497,-0.801890254,-0.8023735285,-0.8026634455,-0.8024701476,-0.8025668263,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8024701476,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8024701476,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8024701476,-0.8027601242,-0.8024701476,-0.8024701476,-0.8027601242,-0.8025668263,-0.8022768497,-0.7999572158,-0.799377203,-0.7978307605,-0.7918382287,-0.786618948,-0.7862323523,-0.7890353203,-0.7903884649,-0.7877787948,-0.7860390544,-0.7879720926,-0.7920315266,-0.7955111265,-0.7961876988,-0.7961876988,-0.7971541882,-0.7978307605,-0.7977340817,-0.797057569,-0.7968642116,-0.7975407839,-0.7980240583,-0.7975407839,-0.797347486,-0.7991839051,-0.8002471328,-0.7976374626,-0.7943512797,-0.7935779691,-0.7946412563,-0.7957044244,-0.7968642116,-0.7983140349,-0.7992805243,-0.7997637987,-0.8004404902,-0.8003438115,-0.7997637987,-0.7994738221,-0.7992805243,-0.7994738221,-0.8000538349,-0.7999572158,-0.7994738221,-0.7991839051,-0.7985073328,-0.7978307605,-0.7978307605,-0.7979274392,-0.7978307605,-0.7978307605,-0.7977340817,-0.7974441648,-0.7972508669,-0.797057569,-0.7969608903,-0.7967675924,-0.7965742946,-0.7964776158,-0.7963809967,-0.7961876988,-0.7961876988,-0.795994401,-0.7957044244,-0.7958010435,-0.7961876988,-0.7966709137,-0.7968642116,-0.7965742946,-0.7958977222,-0.7955111265,-0.7953178287,-0.7952211499,-0.7955111265,-0.7960910201,-0.7963809967,-0.7960910201,-0.796284318,-0.7972508669,-0.7975407839,-0.7966709137,-0.7961876988,-0.7960910201,-0.7955111265,-0.7947378755,-0.7947378755,-0.7954144478,-0.7957044244,-0.7957044244,-0.795994401,-0.7961876988,-0.795994401,-0.7957044244,-0.7953178287,-0.7952211499,-0.7954144478,-0.7955111265,-0.7958010435,-0.7964776158,-0.7966709137,-0.7966709137,-0.7968642116,-0.7971541882,-0.7971541882,-0.7969608903,-0.7967675924,-0.7966709137,-0.7964776158,-0.7966709137,-0.7968642116,-0.7969608903,-0.7972508669,-0.7976374626,-0.7978307605,-0.7983140349,-0.7984106541,-0.7979274392,-0.7976374626,-0.7977340817,-0.7979274392,-0.7983140349,-0.7987973094,-0.7988939285,-0.7987973094,-0.7988939285,-0.7992805243,-0.7996671796,-0.7998605371,-0.7997637987,-0.7999572158,-0.8005371094,-0.8002471328,-0.7988939285,-0.7980240583,-0.7978307605,-0.7978307605,-0.7977340817,-0.7975407839,-0.7974441648,-0.7974441648,-0.7978307605,-0.7977340817,-0.7975407839,-0.7987973094,-0.7984106541,-0.7961876988,-0.7948345542,-0.7898085713,-0.7869089246,-0.7921282053,-0.7919349074,-0.7854591012,-0.7854591012,-0.7909683585,-0.7960910201,-0.7985073328,-0.7997637987,-0.8021802306,-0.8026634455,-0.8023735285,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8022768497,-0.8022768497,-0.8025668263,-0.8027601242,-0.8027601242,-0.8025668263,-0.8024701476,-0.8026634455,-0.8028567433,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8024701476,-0.8027601242,-0.8026634455,-0.801890254,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8001505136,-0.8013103604,-0.8015036583,-0.8024701476,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8024701476,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8024701476,-0.8027601242,-0.8024701476,-0.8015036583,-0.7992805243,-0.7994738221,-0.7964776158,-0.7892286181,-0.7854591012,-0.7865223289,-0.7893252969,-0.7900018692,-0.7872955203,-0.7867156267,-0.7905817628,-0.7934813499,-0.7937713861,-0.7949311733,-0.7963809967,-0.797057569,-0.7980240583,-0.7982173562,-0.7972508669,-0.797347486,-0.7981207371,-0.7978307605,-0.7972508669,-0.7984106541,-0.8002471328,-0.7985073328,-0.7936747074,-0.7911616564,-0.7922248244,-0.7943512797,-0.7963809967,-0.7981207371,-0.7987973094,-0.7987006307,-0.7991839051,-0.8000538349,-0.7998605371,-0.7991839051,-0.7991839051,-0.799377203,-0.7991839051,-0.7992805243,-0.7991839051,-0.7988939285,-0.7987006307,-0.7980240583,-0.7974441648,-0.7974441648,-0.7974441648,-0.7975407839,-0.7977340817,-0.7975407839,-0.797347486,-0.7971541882,-0.7971541882,-0.797057569,-0.7966709137,-0.7965742946,-0.7965742946,-0.796284318,-0.7960910201,-0.796284318,-0.7960910201,-0.7954144478,-0.7956077456,-0.7961876988,-0.7966709137,-0.7968642116,-0.7966709137,-0.795994401,-0.7953178287,-0.7949311733,-0.7951245308,-0.7957044244,-0.7960910201,-0.796284318,-0.795994401,-0.796284318,-0.7972508669,-0.797347486,-0.7963809967,-0.7958977222,-0.7958010435,-0.7954144478,-0.7947378755,-0.7946412563,-0.7951245308,-0.7956077456,-0.795994401,-0.7960910201,-0.795994401,-0.795994401,-0.7958010435,-0.7952211499,-0.7948345542,-0.7951245308,-0.7955111265,-0.7958977222,-0.7964776158,-0.7968642116,-0.7969608903,-0.797057569,-0.7972508669,-0.797057569,-0.7969608903,-0.7967675924,-0.7964776158,-0.7964776158,-0.7966709137,-0.7966709137,-0.7967675924,-0.797057569,-0.7974441648,-0.7978307605,-0.7984106541,-0.7984106541,-0.7981207371,-0.7979274392,-0.7978307605,-0.7978307605,-0.7983140349,-0.7987973094,-0.7990872264,-0.7992805243,-0.7991839051,-0.7991839051,-0.7997637987,-0.7999572158,-0.7994738221,-0.7997637987,-0.8004404902,-0.8001505136,-0.7991839051,-0.7982173562,-0.7977340817,-0.7978307605,-0.7978307605,-0.7977340817,-0.7978307605,-0.7978307605,-0.7977340817,-0.7980240583,-0.7978307605,-0.7978307605,-0.7984106541,-0.797347486,-0.7949311733,-0.7899051905,-0.786329031,-0.7906783819,-0.792514801,-0.7864256501,-0.784589231,-0.789421916,-0.7950278521,-0.7983140349,-0.7995705009,-0.8016002774,-0.8026634455,-0.8022768497,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8024701476,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8024701476,-0.8026634455,-0.8026634455,-0.8023735285,-0.8026634455,-0.8027601242,-0.8024701476,-0.8027601242,-0.8027601242,-0.8022768497,-0.8014069796,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.7977340817,-0.8000538349,-0.8006337881,-0.8025668263,-0.8026634455,-0.8022768497,-0.8026634455,-0.8026634455,-0.8025668263,-0.8023735285,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8025668263,-0.8027601242,-0.8025668263,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8006337881,-0.799377203,-0.7991839051,-0.7945445776,-0.7881653905,-0.7860390544,-0.7874888182,-0.7900984883,-0.7896152139,-0.786618948,-0.7879720926,-0.7929980755,-0.7953178287,-0.7956077456,-0.7961876988,-0.7958977222,-0.7965742946,-0.7981207371,-0.7978307605,-0.7974441648,-0.7983140349,-0.7982173562,-0.7972508669,-0.7974441648,-0.7995705009,-0.7997637987,-0.7952211499,-0.7900018692,-0.7897118926,-0.7930946946,-0.7958010435,-0.7969608903,-0.7974441648,-0.7974441648,-0.7976374626,-0.7981207371,-0.7985073328,-0.7982173562,-0.7978307605,-0.7979274392,-0.7981207371,-0.7981207371,-0.7984106541,-0.7985073328,-0.7984106541,-0.7983140349,-0.7978307605,-0.7972508669,-0.7971541882,-0.7971541882,-0.7972508669,-0.7972508669,-0.797347486,-0.797347486,-0.797057569,-0.797057569,-0.797057569,-0.7966709137,-0.7963809967,-0.7964776158,-0.796284318,-0.7960910201,-0.7961876988,-0.795994401,-0.7955111265,-0.7956077456,-0.7960910201,-0.7964776158,-0.7965742946,-0.7964776158,-0.796284318,-0.7956077456,-0.7948345542,-0.7949311733,-0.7956077456,-0.7958977222,-0.795994401,-0.7958010435,-0.7964776158,-0.7979274392,-0.7977340817,-0.796284318,-0.7958977222,-0.7958010435,-0.7952211499,-0.7947378755,-0.7946412563,-0.7950278521,-0.7954144478,-0.7958010435,-0.7960910201,-0.7961876988,-0.795994401,-0.7958977222,-0.7955111265,-0.7951245308,-0.7953178287,-0.7958010435,-0.795994401,-0.7963809967,-0.7966709137,-0.7968642116,-0.7971541882,-0.7971541882,-0.7968642116,-0.7967675924,-0.7963809967,-0.796284318,-0.7964776158,-0.7964776158,-0.7964776158,-0.7967675924,-0.7969608903,-0.7972508669,-0.7979274392,-0.7984106541,-0.7982173562,-0.7979274392,-0.7980240583,-0.7981207371,-0.7982173562,-0.7984106541,-0.7986039519,-0.7988939285,-0.7992805243,-0.799377203,-0.7994738221,-0.7997637987,-0.7998605371,-0.7991839051,-0.7987006307,-0.7990872264,-0.8001505136,-0.8002471328,-0.7990872264,-0.7978307605,-0.7974441648,-0.7975407839,-0.7977340817,-0.7980240583,-0.7982173562,-0.7975407839,-0.797347486,-0.7977340817,-0.7978307605,-0.7979274392,-0.797347486,-0.797057569,-0.7929980755,-0.7862323523,-0.7884553671,-0.7932879925,-0.7889387012,-0.7851691246,-0.788648665,-0.7942546606,-0.7979274392,-0.7990872264,-0.801117003,-0.8026634455,-0.8023735285,-0.8024701476,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8025668263,-0.8022768497,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8024701476,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8025668263,-0.8023735285,-0.8024701476,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.801890254,-0.8023735285,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8010203838,-0.8010203838,-0.8007304072,-0.8024701476,-0.8025668263,-0.8023735285,-0.8024701476,-0.8025668263,-0.8027601242,-0.8022768497,-0.8025668263,-0.8027601242,-0.8023735285,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8024701476,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8025668263,-0.8025668263,-0.8027601242,-0.8023735285,-0.8025668263,-0.8000538349,-0.7997637987,-0.7981207371,-0.792514801,-0.7877787948,-0.786618948,-0.7889387012,-0.7910650373,-0.7878754735,-0.7859423757,-0.7897118926,-0.7937713861,-0.795994401,-0.7975407839,-0.7971541882,-0.796284318,-0.7968642116,-0.7974441648,-0.7972508669,-0.7977340817,-0.7980240583,-0.797347486,-0.797057569,-0.7985073328,-0.8001505136,-0.7977340817,-0.7918382287,-0.7900984883,-0.7933846712,-0.7958010435,-0.7960910201,-0.7956077456,-0.7953178287,-0.7960910201,-0.797057569,-0.797057569,-0.7964776158,-0.7961876988,-0.796284318,-0.7968642116,-0.797347486,-0.7978307605,-0.7986039519,-0.7987973094,-0.7985073328,-0.7982173562,-0.7977340817,-0.7971541882,-0.7971541882,-0.7971541882,-0.797057569,-0.7971541882,-0.7972508669,-0.7971541882,-0.797057569,-0.7969608903,-0.7968642116,-0.7966709137,-0.7963809967,-0.796284318,-0.7961876988,-0.7960910201,-0.7960910201,-0.795994401,-0.7957044244,-0.7956077456,-0.7958977222,-0.7963809967,-0.7964776158,-0.7961876988,-0.7960910201,-0.7958010435,-0.7951245308,-0.7950278521,-0.7957044244,-0.795994401,-0.7958010435,-0.7960910201,-0.7971541882,-0.7978307605,-0.797057569,-0.7960910201,-0.7958977222,-0.7957044244,-0.7951245308,-0.7948345542,-0.7948345542,-0.7949311733,-0.7952211499,-0.7958010435,-0.796284318,-0.7961876988,-0.7958977222,-0.7958010435,-0.7955111265,-0.7953178287,-0.7954144478,-0.7955111265,-0.7958010435,-0.796284318,-0.7965742946,-0.7967675924,-0.797057569,-0.797057569,-0.7966709137,-0.7963809967,-0.7960910201,-0.796284318,-0.7964776158,-0.7961876988,-0.7961876988,-0.7966709137,-0.7969608903,-0.7972508669,-0.7979274392,-0.7985073328,-0.7983140349,-0.7978307605,-0.7979274392,-0.7980240583,-0.7979274392,-0.7980240583,-0.7983140349,-0.7985073328,-0.7989906073,-0.799377203,-0.7997637987,-0.7998605371,-0.7998605371,-0.7996671796,-0.7987006307,-0.7982173562,-0.799377203,-0.8004404902,-0.7997637987,-0.7985073328,-0.7977340817,-0.7976374626,-0.7976374626,-0.7981207371,-0.7985073328,-0.797057569,-0.7958977222,-0.7967675924,-0.7981207371,-0.7987006307,-0.7976374626,-0.7981207371,-0.7971541882,-0.7897118926,-0.7878754735,-0.7926114798,-0.7899051905,-0.7867156267,-0.7905817628,-0.7946412563,-0.7971541882,-0.7991839051,-0.8010203838,-0.8026634455,-0.8024701476,-0.8022768497,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8024701476,-0.8025668263,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8023735285,-0.8026634455,-0.8027601242,-0.8024701476,-0.8024701476,-0.8027601242,-0.8013103604,-0.8013103604,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8003438115,-0.8012136817,-0.801890254,-0.8025668263,-0.8026634455,-0.8024701476,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8023735285,-0.8016002774,-0.7996671796,-0.7997637987,-0.7971541882,-0.7915482521,-0.7871989012,-0.7865223289,-0.7901951671,-0.7909683585,-0.7869089246,-0.7870056033,-0.7902917862,-0.7918382287,-0.7952211499,-0.7983140349,-0.7976374626,-0.7969608903,-0.797057569,-0.7967675924,-0.7975407839,-0.7980240583,-0.7972508669,-0.7971541882,-0.7984106541,-0.8001505136,-0.7995705009,-0.7943512797,-0.7906783819,-0.7929980755,-0.7955111265,-0.7949311733,-0.7942546606,-0.7950278521,-0.7956077456,-0.7954144478,-0.7952211499,-0.7952211499,-0.7956077456,-0.7963809967,-0.7975407839,-0.7983140349,-0.7986039519,-0.7985073328,-0.7987006307,-0.7987973094,-0.7985073328,-0.7981207371,-0.7976374626,-0.797057569,-0.7969608903,-0.797057569,-0.7968642116,-0.7969608903,-0.7971541882,-0.7969608903,-0.7969608903,-0.7971541882,-0.7968642116,-0.7966709137,-0.7965742946,-0.7963809967,-0.7961876988,-0.795994401,-0.795994401,-0.7958977222,-0.7955111265,-0.7954144478,-0.7958010435,-0.7961876988,-0.796284318,-0.7961876988,-0.795994401,-0.7957044244,-0.7950278521,-0.7947378755,-0.7955111265,-0.795994401,-0.795994401,-0.7967675924,-0.7975407839,-0.7978307605,-0.7971541882,-0.7961876988,-0.7956077456,-0.7955111265,-0.7951245308,-0.7945445776,-0.7947378755,-0.7950278521,-0.7955111265,-0.7960910201,-0.796284318,-0.7960910201,-0.795994401,-0.7956077456,-0.7954144478,-0.7954144478,-0.7953178287,-0.7954144478,-0.795994401,-0.7963809967,-0.7964776158,-0.7966709137,-0.7969608903,-0.7968642116,-0.7964776158,-0.7960910201,-0.7958010435,-0.795994401,-0.796284318,-0.796284318,-0.7963809967,-0.7965742946,-0.7968642116,-0.7972508669,-0.7978307605,-0.7984106541,-0.7982173562,-0.7977340817,-0.7978307605,-0.7978307605,-0.7974441648,-0.797347486,-0.7975407839,-0.7980240583,-0.7987006307,-0.7992805243,-0.7997637987,-0.7998605371,-0.7996671796,-0.8000538349,-0.7997637987,-0.7979274392,-0.7978307605,-0.7995705009,-0.8000538349,-0.7994738221,-0.7987006307,-0.7980240583,-0.7978307605,-0.7981207371,-0.7982173562,-0.797347486,-0.7965742946,-0.7969608903,-0.797347486,-0.7987006307,-0.7987973094,-0.7971541882,-0.7974441648,-0.7945445776,-0.7901951671,-0.7926114798,-0.7915482521,-0.7859423757,-0.7881653905,-0.7940613031,-0.7969608903,-0.7989906073,-0.8009237051,-0.8023735285,-0.8024701476,-0.8022768497,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8024701476,-0.8026634455,-0.8026634455,-0.8026634455,-0.8023735285,-0.8019868731,-0.8019868731,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8012136817,-0.8020835519,-0.8021802306,-0.8024701476,-0.8027601242,-0.8024701476,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8025668263,-0.8024701476,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8025668263,-0.8024701476,-0.8025668263,-0.8007304072,-0.7994738221,-0.7992805243,-0.7957044244,-0.7901951671,-0.7860390544,-0.7869089246,-0.7912583351,-0.7903884649,-0.7871022224,-0.7882620692,-0.7900018692,-0.792514801,-0.7972508669,-0.7987973094,-0.7976374626,-0.7972508669,-0.7971541882,-0.7974441648,-0.7981207371,-0.7975407839,-0.797347486,-0.7988939285,-0.8007304072,-0.8002471328,-0.7958010435,-0.7915482521,-0.7919349074,-0.7927080989,-0.7913549542,-0.7917416096,-0.7944479585,-0.7958977222,-0.7950278521,-0.7943512797,-0.7947378755,-0.7958977222,-0.7971541882,-0.7981207371,-0.7985073328,-0.7987973094,-0.7991839051,-0.7990872264,-0.7987006307,-0.7983140349,-0.7981207371,-0.7980240583,-0.7977340817,-0.7971541882,-0.7969608903,-0.7968642116,-0.7965742946,-0.7965742946,-0.7967675924,-0.7967675924,-0.7968642116,-0.797057569,-0.7969608903,-0.7967675924,-0.7966709137,-0.7964776158,-0.796284318,-0.7960910201,-0.795994401,-0.7958977222,-0.7957044244,-0.7956077456,-0.7957044244,-0.795994401,-0.7960910201,-0.795994401,-0.7958977222,-0.7957044244,-0.7951245308,-0.7946412563,-0.7953178287,-0.7958977222,-0.7958010435,-0.7972508669,-0.7988939285,-0.7989906073,-0.7974441648,-0.7961876988,-0.7956077456,-0.7954144478,-0.7949311733,-0.7944479585,-0.7946412563,-0.7951245308,-0.7958010435,-0.796284318,-0.7961876988,-0.7960910201,-0.795994401,-0.7957044244,-0.7955111265,-0.7954144478,-0.7954144478,-0.7957044244,-0.7960910201,-0.7964776158,-0.7964776158,-0.7964776158,-0.7966709137,-0.7966709137,-0.7963809967,-0.795994401,-0.7957044244,-0.7958977222,-0.7963809967,-0.7967675924,-0.7966709137,-0.7964776158,-0.7967675924,-0.7972508669,-0.7978307605,-0.7983140349,-0.7983140349,-0.7982173562,-0.7983140349,-0.7983140349,-0.7978307605,-0.7974441648,-0.7972508669,-0.7969608903,-0.7972508669,-0.7982173562,-0.7992805243,-0.7994738221,-0.7990872264,-0.7996671796,-0.8002471328,-0.7983140349,-0.7963809967,-0.7975407839,-0.7994738221,-0.8001505136,-0.7991839051,-0.7977340817,-0.7977340817,-0.7978307605,-0.7976374626,-0.7979274392,-0.7976374626,-0.7974441648,-0.7972508669,-0.7979274392,-0.7990872264,-0.7977340817,-0.7963809967,-0.7941579819,-0.7905817628,-0.7923215032,-0.7926114798,-0.7861357331,-0.7860390544,-0.7930946946,-0.797347486,-0.7987973094,-0.800827086,-0.8024701476,-0.8024701476,-0.8022768497,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8024701476,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8024701476,-0.8016969562,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.7971541882,-0.7992805243,-0.8003438115,-0.8027601242,-0.8025668263,-0.8019868731,-0.8024701476,-0.8024701476,-0.8024701476,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8025668263,-0.8024701476,-0.8026634455,-0.8024701476,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8028567433,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8022768497,-0.8021802306,-0.8024701476,-0.8027601242,-0.8022768497,-0.8024701476,-0.8006337881,-0.7997637987,-0.7983140349,-0.7938680053,-0.7880687714,-0.7849758267,-0.7883586884,-0.7923215032,-0.7903884649,-0.7892286181,-0.7907750607,-0.7929013968,-0.7971541882,-0.7995705009,-0.7982173562,-0.7976374626,-0.7978307605,-0.7979274392,-0.7982173562,-0.7979274392,-0.7972508669,-0.7982173562,-0.8006337881,-0.8016002774,-0.7975407839,-0.7916449308,-0.7906783819,-0.7922248244,-0.7905817628,-0.7900018692,-0.7932879925,-0.7956077456,-0.7948345542,-0.7945445776,-0.7958010435,-0.7969608903,-0.7976374626,-0.7980240583,-0.7982173562,-0.7980240583,-0.7980240583,-0.7987973094,-0.7992805243,-0.7988939285,-0.7982173562,-0.7980240583,-0.7977340817,-0.797347486,-0.7969608903,-0.7966709137,-0.7965742946,-0.7964776158,-0.7964776158,-0.7965742946,-0.7965742946,-0.7966709137,-0.7968642116,-0.7968642116,-0.7966709137,-0.7964776158,-0.7963809967,-0.796284318,-0.795994401,-0.7957044244,-0.7956077456,-0.7956077456,-0.7955111265,-0.7956077456,-0.7960910201,-0.7963809967,-0.7961876988,-0.795994401,-0.7958977222,-0.7953178287,-0.7950278521,-0.7955111265,-0.7958010435,-0.7958977222,-0.7969608903,-0.7983140349,-0.7985073328,-0.7975407839,-0.796284318,-0.7955111265,-0.7954144478,-0.7949311733,-0.7944479585,-0.7946412563,-0.7953178287,-0.795994401,-0.796284318,-0.7960910201,-0.795994401,-0.795994401,-0.7957044244,-0.7953178287,-0.7952211499,-0.7954144478,-0.7956077456,-0.795994401,-0.7963809967,-0.7965742946,-0.7965742946,-0.7965742946,-0.7964776158,-0.7960910201,-0.7958977222,-0.795994401,-0.796284318,-0.7964776158,-0.7967675924,-0.7969608903,-0.7969608903,-0.7974441648,-0.7982173562,-0.7987973094,-0.7990872264,-0.7987973094,-0.7984106541,-0.7986039519,-0.7988939285,-0.7987973094,-0.7987973094,-0.7987006307,-0.7980240583,-0.797347486,-0.7972508669,-0.7978307605,-0.7989906073,-0.7997637987,-0.7998605371,-0.7997637987,-0.7992805243,-0.7972508669,-0.7958977222,-0.7974441648,-0.7999572158,-0.7999572158,-0.7981207371,-0.7974441648,-0.7976374626,-0.797347486,-0.797347486,-0.7974441648,-0.7975407839,-0.7975407839,-0.7975407839,-0.7984106541,-0.7985073328,-0.7974441648,-0.7943512797,-0.7901951671,-0.7910650373,-0.7923215032,-0.7870056033,-0.7853624225,-0.7923215032,-0.7972508669,-0.7985073328,-0.8004404902,-0.8023735285,-0.8026634455,-0.8024701476,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8025668263,-0.8019868731,-0.8021802306,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8024701476,-0.8025668263,-0.8023735285,-0.8025668263,-0.8025668263,-0.8021802306,-0.8023735285,-0.801890254,-0.800827086,-0.8016969562,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8000538349,-0.8000538349,-0.8010203838,-0.8025668263,-0.8027601242,-0.8025668263,-0.8026634455,-0.8024701476,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8024701476,-0.8026634455,-0.8024701476,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8025668263,-0.8028567433,-0.8028567433,-0.8023735285,-0.8021802306,-0.8003438115,-0.7995705009,-0.7974441648,-0.7923215032,-0.786329031,-0.7855557799,-0.7910650373,-0.7922248244,-0.789421916,-0.7911616564,-0.7943512797,-0.7971541882,-0.7997637987,-0.7989906073,-0.7969608903,-0.797347486,-0.7982173562,-0.7981207371,-0.7976374626,-0.7974441648,-0.7982173562,-0.7998605371,-0.8012136817,-0.8000538349,-0.7958977222,-0.7922248244,-0.7920315266,-0.7926114798,-0.7920315266,-0.7931913733,-0.7958010435,-0.7960910201,-0.7952211499,-0.7961876988,-0.7972508669,-0.797347486,-0.7971541882,-0.7974441648,-0.7985073328,-0.7991839051,-0.7995705009,-0.7992805243,-0.7987973094,-0.7985073328,-0.7981207371,-0.7976374626,-0.797347486,-0.797057569,-0.7967675924,-0.7965742946,-0.7963809967,-0.7965742946,-0.7967675924,-0.7966709137,-0.7965742946,-0.7965742946,-0.7964776158,-0.7965742946,-0.7966709137,-0.7965742946,-0.7963809967,-0.796284318,-0.7958977222,-0.7956077456,-0.7953178287,-0.7951245308,-0.7954144478,-0.795994401,-0.796284318,-0.7964776158,-0.7963809967,-0.795994401,-0.7958010435,-0.7953178287,-0.7950278521,-0.7955111265,-0.7958010435,-0.7958977222,-0.7963809967,-0.7969608903,-0.7977340817,-0.7979274392,-0.7965742946,-0.7955111265,-0.7956077456,-0.7950278521,-0.7942546606,-0.7947378755,-0.7954144478,-0.795994401,-0.796284318,-0.7963809967,-0.7960910201,-0.7958977222,-0.7956077456,-0.7952211499,-0.7952211499,-0.7953178287,-0.7956077456,-0.7960910201,-0.7963809967,-0.7964776158,-0.7965742946,-0.7965742946,-0.796284318,-0.7958977222,-0.7957044244,-0.7963809967,-0.7967675924,-0.7966709137,-0.7968642116,-0.7969608903,-0.7971541882,-0.7980240583,-0.7987973094,-0.7990872264,-0.7994738221,-0.7994738221,-0.7991839051,-0.7988939285,-0.7987973094,-0.7987006307,-0.7988939285,-0.7989906073,-0.7988939285,-0.7985073328,-0.7978307605,-0.797347486,-0.797347486,-0.7985073328,-0.7997637987,-0.8000538349,-0.8001505136,-0.7992805243,-0.7966709137,-0.7953178287,-0.7975407839,-0.7999572158,-0.7997637987,-0.7980240583,-0.7974441648,-0.7976374626,-0.7969608903,-0.7968642116,-0.7974441648,-0.7971541882,-0.7975407839,-0.7986039519,-0.7976374626,-0.7966709137,-0.7961876988,-0.7926114798,-0.7910650373,-0.7924181223,-0.7878754735,-0.7841059566,-0.7902917862,-0.7965742946,-0.7980240583,-0.8000538349,-0.8023735285,-0.8027601242,-0.8024701476,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8024701476,-0.8023735285,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8024701476,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8025668263,-0.8026634455,-0.8027601242,-0.8024701476,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8023735285,-0.8025668263,-0.8025668263,-0.8025668263,-0.8024701476,-0.8022768497,-0.8023735285,-0.8021802306,-0.8025668263,-0.8025668263,-0.8024701476,-0.8013103604,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8009237051,-0.8016002774,-0.8023735285,-0.8025668263,-0.8025668263,-0.8022768497,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8024701476,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8023735285,-0.8024701476,-0.8027601242,-0.8025668263,-0.8024701476,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8025668263,-0.8028567433,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8024701476,-0.8023735285,-0.8028567433,-0.8025668263,-0.8024701476,-0.8016969562,-0.7998605371,-0.7987973094,-0.7966709137,-0.7917416096,-0.7856523991,-0.7871022224,-0.7930946946,-0.7911616564,-0.7877787948,-0.7916449308,-0.7958977222,-0.7977340817,-0.7982173562,-0.797057569,-0.7964776158,-0.7974441648,-0.7980240583,-0.7977340817,-0.7971541882,-0.7975407839,-0.7996671796,-0.8014069796,-0.8003438115,-0.7978307605,-0.7955111265,-0.7936747074,-0.7932879925,-0.7940613031,-0.7947378755,-0.7958977222,-0.7967675924,-0.7966709137,-0.7966709137,-0.7969608903,-0.7971541882,-0.7972508669,-0.797057569,-0.7974441648,-0.7990872264,-0.7999572158,-0.7999572158,-0.7997637987,-0.7988939285,-0.7981207371,-0.7979274392,-0.7974441648,-0.7968642116,-0.7966709137,-0.7965742946,-0.7967675924,-0.7965742946,-0.7964776158,-0.7966709137,-0.7966709137,-0.7964776158,-0.7963809967,-0.7964776158,-0.7966709137,-0.7968642116,-0.7967675924,-0.796284318,-0.7960910201,-0.7958977222,-0.7958010435,-0.7955111265,-0.7954144478,-0.7958010435,-0.7963809967,-0.7964776158,-0.7963809967,-0.7964776158,-0.796284318,-0.7958977222,-0.7955111265,-0.7953178287,-0.7956077456,-0.7958010435,-0.7957044244,-0.7961876988,-0.797057569,-0.7974441648,-0.7969608903,-0.7960910201,-0.7958010435,-0.7956077456,-0.7949311733,-0.7945445776,-0.7950278521,-0.7955111265,-0.795994401,-0.7964776158,-0.7965742946,-0.7961876988,-0.7958977222,-0.7955111265,-0.7952211499,-0.7953178287,-0.7954144478,-0.7957044244,-0.7961876988,-0.7964776158,-0.7964776158,-0.7964776158,-0.7963809967,-0.7960910201,-0.7958010435,-0.7961876988,-0.7967675924,-0.7968642116,-0.7966709137,-0.7965742946,-0.7969608903,-0.7978307605,-0.7987006307,-0.7992805243,-0.7997637987,-0.8000538349,-0.7997637987,-0.7988939285,-0.7980240583,-0.7975407839,-0.7975407839,-0.7980240583,-0.7982173562,-0.7977340817,-0.7976374626,-0.7979274392,-0.7978307605,-0.7969608903,-0.7958977222,-0.7972508669,-0.7997637987,-0.8005371094,-0.7994738221,-0.7976374626,-0.7952211499,-0.7941579819,-0.7966709137,-0.7999572158,-0.7995705009,-0.7977340817,-0.7977340817,-0.7975407839,-0.7972508669,-0.7977340817,-0.7971541882,-0.7968642116,-0.7986039519,-0.7980240583,-0.7957044244,-0.7957044244,-0.7938680053,-0.791451633,-0.7924181223,-0.7896152139,-0.7847825289,-0.7889387012,-0.796284318,-0.7983140349,-0.7996671796,-0.8020835519,-0.8027601242,-0.8024701476,-0.8024701476,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8024701476,-0.8024701476,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8024701476,-0.8025668263,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8023735285,-0.8019868731,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.7980240583,-0.7997637987,-0.8006337881,-0.8023735285,-0.8025668263,-0.801890254,-0.8024701476,-0.8024701476,-0.8023735285,-0.8024701476,-0.8025668263,-0.8025668263,-0.8023735285,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8024701476,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8025668263,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8025668263,-0.8026634455,-0.8028567433,-0.8022768497,-0.8023735285,-0.8025668263,-0.8022768497,-0.8023735285,-0.801117003,-0.7995705009,-0.7985073328,-0.7954144478,-0.789421916,-0.7846859097,-0.7884553671,-0.7933846712,-0.7900018692,-0.7881653905,-0.7928047776,-0.7954144478,-0.7957044244,-0.7965742946,-0.7972508669,-0.7977340817,-0.7981207371,-0.7975407839,-0.7969608903,-0.797347486,-0.7987006307,-0.8007304072,-0.8014069796,-0.7998605371,-0.7975407839,-0.7955111265,-0.7944479585,-0.7948345542,-0.7956077456,-0.7963809967,-0.797057569,-0.7972508669,-0.7968642116,-0.7967675924,-0.7969608903,-0.7972508669,-0.797347486,-0.7971541882,-0.797347486,-0.7985073328,-0.7991839051,-0.7995705009,-0.7997637987,-0.7990872264,-0.7982173562,-0.7980240583,-0.7974441648,-0.7968642116,-0.7965742946,-0.7965742946,-0.7966709137,-0.7965742946,-0.7964776158,-0.7963809967,-0.7963809967,-0.796284318,-0.796284318,-0.7964776158,-0.7967675924,-0.7968642116,-0.7965742946,-0.796284318,-0.795994401,-0.7958010435,-0.7955111265,-0.7955111265,-0.7958010435,-0.795994401,-0.7961876988,-0.796284318,-0.7964776158,-0.7965742946,-0.7963809967,-0.7960910201,-0.7956077456,-0.7953178287,-0.7957044244,-0.795994401,-0.7958977222,-0.7960910201,-0.7968642116,-0.7972508669,-0.7966709137,-0.7960910201,-0.795994401,-0.7956077456,-0.7950278521,-0.7949311733,-0.7953178287,-0.7958010435,-0.796284318,-0.7964776158,-0.7963809967,-0.796284318,-0.7961876988,-0.7957044244,-0.7953178287,-0.7953178287,-0.7955111265,-0.7957044244,-0.7961876988,-0.7964776158,-0.7964776158,-0.7963809967,-0.7960910201,-0.7958977222,-0.7960910201,-0.7965742946,-0.7967675924,-0.7965742946,-0.7967675924,-0.7969608903,-0.7972508669,-0.7981207371,-0.7992805243,-0.7999572158,-0.7997637987,-0.7989906073,-0.7984106541,-0.7979274392,-0.7977340817,-0.7978307605,-0.7976374626,-0.7972508669,-0.7967675924,-0.7963809967,-0.7965742946,-0.797057569,-0.797347486,-0.7975407839,-0.7967675924,-0.7950278521,-0.7964776158,-0.7994738221,-0.7997637987,-0.7982173562,-0.797057569,-0.7945445776,-0.7932879925,-0.7969608903,-0.7997637987,-0.7984106541,-0.7975407839,-0.7978307605,-0.7977340817,-0.7978307605,-0.7972508669,-0.7963809967,-0.7978307605,-0.7987973094,-0.7966709137,-0.7954144478,-0.7937713861,-0.791451633,-0.792514801,-0.7908717394,-0.7852658033,-0.7879720926,-0.795994401,-0.7983140349,-0.7988939285,-0.8016002774,-0.8027601242,-0.8023735285,-0.8022768497,-0.8026634455,-0.8026634455,-0.8027601242,-0.8024701476,-0.8027601242,-0.8027601242,-0.8024701476,-0.8022768497,-0.8026634455,-0.8024701476,-0.8025668263,-0.8025668263,-0.8025668263,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8025668263,-0.8023735285,-0.8025668263,-0.8024701476,-0.8023735285,-0.8026634455,-0.8024701476,-0.8026634455,-0.8021802306,-0.8012136817,-0.8016969562,-0.7997637987,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.800827086,-0.801890254,-0.8015036583,-0.8025668263,-0.8027601242,-0.8026634455,-0.8028567433,-0.8023735285,-0.8024701476,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8024701476,-0.8023735285,-0.8027601242,-0.8022768497,-0.8027601242,-0.8009237051,-0.799377203,-0.7981207371,-0.7935779691,-0.7860390544,-0.7842026353,-0.7905817628,-0.7930946946,-0.7892286181,-0.7895185947,-0.7926114798,-0.7932879925,-0.7950278521,-0.7977340817,-0.7978307605,-0.797057569,-0.7972508669,-0.7972508669,-0.7972508669,-0.7983140349,-0.7998605371,-0.8007304072,-0.8010203838,-0.8000538349,-0.7971541882,-0.7952211499,-0.7957044244,-0.7965742946,-0.7967675924,-0.7968642116,-0.797057569,-0.7969608903,-0.7964776158,-0.7965742946,-0.7969608903,-0.797057569,-0.7971541882,-0.7974441648,-0.797347486,-0.7975407839,-0.7985073328,-0.7995705009,-0.7999572158,-0.7989906073,-0.7978307605,-0.797347486,-0.797057569,-0.7967675924,-0.7967675924,-0.7966709137,-0.7965742946,-0.7965742946,-0.7966709137,-0.7965742946,-0.7964776158,-0.7964776158,-0.7963809967,-0.7961876988,-0.7964776158,-0.7966709137,-0.7965742946,-0.7961876988,-0.795994401,-0.7958010435,-0.7956077456,-0.7955111265,-0.7958010435,-0.796284318,-0.7963809967,-0.796284318,-0.7966709137,-0.7967675924,-0.7963809967,-0.7960910201,-0.7957044244,-0.7954144478,-0.7957044244,-0.7961876988,-0.7960910201,-0.7958977222,-0.7966709137,-0.7972508669,-0.7966709137,-0.7961876988,-0.795994401,-0.7955111265,-0.7951245308,-0.7953178287,-0.7955111265,-0.7958977222,-0.796284318,-0.7964776158,-0.7963809967,-0.7963809967,-0.796284318,-0.7958977222,-0.7954144478,-0.7953178287,-0.7954144478,-0.7956077456,-0.7960910201,-0.7963809967,-0.7963809967,-0.7961876988,-0.7958977222,-0.795994401,-0.796284318,-0.7963809967,-0.7965742946,-0.7965742946,-0.7969608903,-0.7966709137,-0.7964776158,-0.7975407839,-0.7984106541,-0.7991839051,-0.7985073328,-0.7982173562,-0.7986039519,-0.7989906073,-0.7994738221,-0.7992805243,-0.7983140349,-0.7971541882,-0.7967675924,-0.7968642116,-0.7969608903,-0.7969608903,-0.797057569,-0.7976374626,-0.7978307605,-0.7960910201,-0.7945445776,-0.7967675924,-0.7994738221,-0.7994738221,-0.7989906073,-0.7974441648,-0.7934813499,-0.7933846712,-0.7980240583,-0.7996671796,-0.7979274392,-0.7976374626,-0.7979274392,-0.7974441648,-0.7972508669,-0.7969608903,-0.7977340817,-0.7987006307,-0.7974441648,-0.7966709137,-0.7952211499,-0.7915482521,-0.7919349074,-0.7917416096,-0.7856523991,-0.7861357331,-0.7946412563,-0.7983140349,-0.7984106541,-0.800827086,-0.8027601242,-0.8026634455,-0.8023735285,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8024701476,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8024701476,-0.801117003,-0.8015036583,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8002471328,-0.8015036583,-0.8016969562,-0.8024701476,-0.8026634455,-0.8025668263,-0.8026634455,-0.8021802306,-0.8025668263,-0.8023735285,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8028567433,-0.8025668263,-0.8026634455,-0.8026634455,-0.8023735285,-0.8025668263,-0.8001505136,-0.7987973094,-0.7974441648,-0.7919349074,-0.7846859097,-0.7854591012,-0.7926114798,-0.7931913733,-0.789421916,-0.7901951671,-0.7920315266,-0.7934813499,-0.796284318,-0.7975407839,-0.7967675924,-0.7958010435,-0.795994401,-0.797057569,-0.7977340817,-0.7990872264,-0.8006337881,-0.8012136817,-0.8012136817,-0.7987973094,-0.7955111265,-0.7954144478,-0.7966709137,-0.797057569,-0.797057569,-0.7969608903,-0.7967675924,-0.7967675924,-0.7967675924,-0.7968642116,-0.7969608903,-0.7967675924,-0.7968642116,-0.797347486,-0.7972508669,-0.7972508669,-0.7981207371,-0.7989906073,-0.7990872264,-0.7982173562,-0.7971541882,-0.7968642116,-0.7971541882,-0.7969608903,-0.7967675924,-0.7965742946,-0.7966709137,-0.7969608903,-0.7968642116,-0.7966709137,-0.7967675924,-0.7964776158,-0.796284318,-0.7963809967,-0.7964776158,-0.7964776158,-0.7963809967,-0.7961876988,-0.7958977222,-0.7957044244,-0.7957044244,-0.7957044244,-0.795994401,-0.7963809967,-0.7963809967,-0.796284318,-0.7965742946,-0.7966709137,-0.7963809967,-0.7960910201,-0.7958977222,-0.7956077456,-0.7958010435,-0.796284318,-0.7960910201,-0.7960910201,-0.7971541882,-0.7974441648,-0.7966709137,-0.796284318,-0.7961876988,-0.7957044244,-0.7952211499,-0.7954144478,-0.7958010435,-0.7958977222,-0.7964776158,-0.7972508669,-0.7969608903,-0.796284318,-0.7963809967,-0.7963809967,-0.7957044244,-0.7952211499,-0.7954144478,-0.7958010435,-0.7961876988,-0.796284318,-0.7961876988,-0.795994401,-0.7958977222,-0.7960910201,-0.7963809967,-0.7963809967,-0.7963809967,-0.7965742946,-0.7968642116,-0.7972508669,-0.7976374626,-0.7977340817,-0.7976374626,-0.7981207371,-0.7985073328,-0.7991839051,-0.7999572158,-0.8001505136,-0.7995705009,-0.7989906073,-0.7984106541,-0.7978307605,-0.7975407839,-0.797347486,-0.7972508669,-0.7972508669,-0.7972508669,-0.7974441648,-0.7978307605,-0.797347486,-0.795994401,-0.7964776158,-0.7983140349,-0.7990872264,-0.7995705009,-0.7989906073,-0.7947378755,-0.7918382287,-0.7953178287,-0.7995705009,-0.7990872264,-0.7976374626,-0.7978307605,-0.7976374626,-0.797347486,-0.7974441648,-0.7976374626,-0.7983140349,-0.7975407839,-0.7965742946,-0.7951245308,-0.7917416096,-0.7919349074,-0.7929013968,-0.7868123055,-0.7842026353,-0.7921282053,-0.7981207371,-0.7984106541,-0.7999572158,-0.8024701476,-0.8026634455,-0.8023735285,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8025668263,-0.8022768497,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8024701476,-0.8025668263,-0.8022768497,-0.8025668263,-0.8021802306,-0.8025668263,-0.8023735285,-0.8024701476,-0.8025668263,-0.8023735285,-0.8024701476,-0.8025668263,-0.8024701476,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8023735285,-0.8022768497,-0.8026634455,-0.8025668263,-0.8024701476,-0.8015036583,-0.8010203838,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8017935753,-0.8023735285,-0.8016969562,-0.8025668263,-0.8024701476,-0.8025668263,-0.8019868731,-0.8022768497,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8024701476,-0.8019868731,-0.7997637987,-0.7985073328,-0.795994401,-0.7897118926,-0.7837193608,-0.7870056033,-0.7940613031,-0.7929980755,-0.7901951671,-0.7917416096,-0.7933846712,-0.7952211499,-0.7965742946,-0.7960910201,-0.796284318,-0.7967675924,-0.7968642116,-0.7975407839,-0.7987006307,-0.8004404902,-0.8015036583,-0.8005371094,-0.7985073328,-0.7964776158,-0.7958010435,-0.7965742946,-0.797057569,-0.7969608903,-0.7968642116,-0.7966709137,-0.7965742946,-0.7967675924,-0.7969608903,-0.7968642116,-0.7969608903,-0.7969608903,-0.797057569,-0.7972508669,-0.797057569,-0.7967675924,-0.7975407839,-0.7988939285,-0.799377203,-0.7982173562,-0.7968642116,-0.7968642116,-0.7971541882,-0.7968642116,-0.7968642116,-0.7968642116,-0.7966709137,-0.7968642116,-0.797057569,-0.7968642116,-0.7964776158,-0.796284318,-0.7964776158,-0.7965742946,-0.7964776158,-0.7964776158,-0.7964776158,-0.7961876988,-0.7958010435,-0.7957044244,-0.7957044244,-0.7958977222,-0.7961876988,-0.7964776158,-0.7964776158,-0.796284318,-0.796284318,-0.796284318,-0.7961876988,-0.795994401,-0.7958010435,-0.7956077456,-0.7958977222,-0.7964776158,-0.796284318,-0.7961876988,-0.7968642116,-0.797057569,-0.7965742946,-0.796284318,-0.7960910201,-0.7957044244,-0.7953178287,-0.7954144478,-0.7958977222,-0.7960910201,-0.7965742946,-0.797347486,-0.797347486,-0.7965742946,-0.796284318,-0.796284318,-0.795994401,-0.7955111265,-0.7956077456,-0.7958977222,-0.795994401,-0.795994401,-0.795994401,-0.7960910201,-0.7961876988,-0.7961876988,-0.7963809967,-0.7965742946,-0.7964776158,-0.7965742946,-0.797057569,-0.7971541882,-0.797057569,-0.7969608903,-0.7969608903,-0.7971541882,-0.7975407839,-0.7985073328,-0.8000538349,-0.8005371094,-0.7994738221,-0.7987973094,-0.7986039519,-0.7979274392,-0.7972508669,-0.797057569,-0.7972508669,-0.797057569,-0.7968642116,-0.7971541882,-0.7976374626,-0.7975407839,-0.797057569,-0.7974441648,-0.7984106541,-0.7980240583,-0.7986039519,-0.7995705009,-0.7963809967,-0.7926114798,-0.7944479585,-0.7991839051,-0.8007304072,-0.7990872264,-0.7979274392,-0.7977340817,-0.7978307605,-0.7975407839,-0.7969608903,-0.7977340817,-0.7981207371,-0.7963809967,-0.7940613031,-0.7913549542,-0.7917416096,-0.7938680053,-0.788648665,-0.7836227417,-0.7900984883,-0.7975407839,-0.7986039519,-0.7995705009,-0.8021802306,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8024701476,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8024701476,-0.8022768497,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8023735285,-0.8024701476,-0.8026634455,-0.8026634455,-0.8026634455,-0.8021802306,-0.8021802306,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8025668263,-0.8028567433,-0.8024701476,-0.8026634455,-0.8024701476,-0.8026634455,-0.8023735285,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8024701476,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8024701476,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8023735285,-0.8016969562,-0.7996671796,-0.7984106541,-0.7947378755,-0.7874888182,-0.7839126587,-0.789421916,-0.7949311733,-0.7931913733,-0.7915482521,-0.7931913733,-0.7949311733,-0.795994401,-0.796284318,-0.7967675924,-0.7976374626,-0.7979274392,-0.7977340817,-0.7984106541,-0.8001505136,-0.8017935753,-0.8017935753,-0.7991839051,-0.7960910201,-0.7958977222,-0.797057569,-0.7971541882,-0.797057569,-0.797057569,-0.7967675924,-0.7965742946,-0.7965742946,-0.7965742946,-0.7964776158,-0.7964776158,-0.7967675924,-0.7968642116,-0.7967675924,-0.7969608903,-0.7972508669,-0.7969608903,-0.7969608903,-0.7987973094,-0.8004404902,-0.7994738221,-0.7977340817,-0.797347486,-0.7972508669,-0.7968642116,-0.7965742946,-0.7965742946,-0.7965742946,-0.7965742946,-0.7965742946,-0.7965742946,-0.7964776158,-0.7961876988,-0.7960910201,-0.796284318,-0.7963809967,-0.7963809967,-0.796284318,-0.7961876988,-0.7958977222,-0.7957044244,-0.7958977222,-0.795994401,-0.7961876988,-0.7963809967,-0.7963809967,-0.796284318,-0.796284318,-0.796284318,-0.7961876988,-0.7961876988,-0.7958010435,-0.7955111265,-0.7958977222,-0.7964776158,-0.7964776158,-0.7964776158,-0.7969608903,-0.797057569,-0.796284318,-0.7960910201,-0.796284318,-0.7958977222,-0.7956077456,-0.7958010435,-0.7960910201,-0.796284318,-0.7963809967,-0.7963809967,-0.7966709137,-0.7968642116,-0.7964776158,-0.7961876988,-0.7960910201,-0.7956077456,-0.7954144478,-0.7957044244,-0.7956077456,-0.7957044244,-0.795994401,-0.795994401,-0.7957044244,-0.7960910201,-0.7965742946,-0.7965742946,-0.7964776158,-0.7968642116,-0.7969608903,-0.7967675924,-0.7967675924,-0.7967675924,-0.7967675924,-0.7968642116,-0.797057569,-0.7975407839,-0.7984106541,-0.7991839051,-0.7994738221,-0.7991839051,-0.7987006307,-0.7981207371,-0.7976374626,-0.7974441648,-0.797347486,-0.797057569,-0.7968642116,-0.7969608903,-0.7972508669,-0.797347486,-0.7971541882,-0.797347486,-0.7979274392,-0.7980240583,-0.7981207371,-0.7990872264,-0.7989906073,-0.7969608903,-0.7958010435,-0.7981207371,-0.8010203838,-0.800827086,-0.7987006307,-0.7976374626,-0.7980240583,-0.7978307605,-0.7969608903,-0.7978307605,-0.7986039519,-0.7965742946,-0.7944479585,-0.7916449308,-0.7905817628,-0.7935779691,-0.7904850841,-0.7839126587,-0.7881653905,-0.7964776158,-0.7983140349,-0.7989906073,-0.8017935753,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8025668263,-0.8025668263,-0.8023735285,-0.8024701476,-0.8026634455,-0.8023735285,-0.8026634455,-0.8027601242,-0.8025668263,-0.8024701476,-0.8021802306,-0.8024701476,-0.8027601242,-0.8027601242,-0.8026634455,-0.8024701476,-0.8024701476,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8012136817,-0.8017935753,-0.8020835519,-0.8027601242,-0.8024701476,-0.8023735285,-0.8028567433,-0.8025668263,-0.8023735285,-0.8025668263,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8028567433,-0.8026634455,-0.8028567433,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8022768497,-0.8024701476,-0.8024701476,-0.8010203838,-0.7989906073,-0.7985073328,-0.7943512797,-0.786329031,-0.7842992544,-0.7911616564,-0.7958010435,-0.7935779691,-0.7922248244,-0.7948345542,-0.7968642116,-0.7965742946,-0.7969608903,-0.7980240583,-0.7979274392,-0.7976374626,-0.7982173562,-0.7996671796,-0.801117003,-0.8016969562,-0.8013103604,-0.7991839051,-0.797057569,-0.797057569,-0.797347486,-0.797057569,-0.797057569,-0.7968642116,-0.7965742946,-0.7965742946,-0.7964776158,-0.796284318,-0.7961876988,-0.796284318,-0.7965742946,-0.7968642116,-0.7967675924,-0.7966709137,-0.7969608903,-0.7968642116,-0.797057569,-0.7987006307,-0.7996671796,-0.7987006307,-0.7975407839,-0.7971541882,-0.7969608903,-0.7969608903,-0.7967675924,-0.7965742946,-0.7963809967,-0.7963809967,-0.7963809967,-0.7963809967,-0.7965742946,-0.796284318,-0.7958977222,-0.795994401,-0.796284318,-0.7961876988,-0.7961876988,-0.7961876988,-0.7958977222,-0.7957044244,-0.7958977222,-0.7960910201,-0.796284318,-0.796284318,-0.7961876988,-0.7961876988,-0.796284318,-0.7961876988,-0.7960910201,-0.7960910201,-0.7958010435,-0.7955111265,-0.7957044244,-0.796284318,-0.7966709137,-0.7966709137,-0.7968642116,-0.7972508669,-0.7969608903,-0.7965742946,-0.7965742946,-0.7961876988,-0.7957044244,-0.7958010435,-0.795994401,-0.796284318,-0.7963809967,-0.7961876988,-0.796284318,-0.7964776158,-0.7964776158,-0.7965742946,-0.7963809967,-0.7956077456,-0.7952211499,-0.7955111265,-0.7958010435,-0.7957044244,-0.7957044244,-0.7958977222,-0.7958010435,-0.7958977222,-0.7964776158,-0.7964776158,-0.796284318,-0.7966709137,-0.7968642116,-0.7965742946,-0.7965742946,-0.7966709137,-0.7965742946,-0.7966709137,-0.797057569,-0.7975407839,-0.7978307605,-0.7981207371,-0.7987973094,-0.799377203,-0.7989906073,-0.7983140349,-0.7979274392,-0.7977340817,-0.7975407839,-0.7972508669,-0.797057569,-0.7968642116,-0.7968642116,-0.7971541882,-0.7972508669,-0.7971541882,-0.7975407839,-0.7979274392,-0.7981207371,-0.7982173562,-0.7989906073,-0.7995705009,-0.7981207371,-0.7976374626,-0.7997637987,-0.8009237051,-0.7997637987,-0.7982173562,-0.7978307605,-0.7981207371,-0.7974441648,-0.7981207371,-0.7990872264,-0.796284318,-0.7940613031,-0.7927080989,-0.7910650373,-0.7929980755,-0.7911616564,-0.784589231,-0.786618948,-0.7948345542,-0.7981207371,-0.7990872264,-0.8014069796,-0.8027601242,-0.8026634455,-0.8026634455,-0.8024701476,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8024701476,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8024701476,-0.8025668263,-0.8023735285,-0.8026634455,-0.8024701476,-0.8025668263,-0.8024701476,-0.8024701476,-0.8027601242,-0.8026634455,-0.8024701476,-0.8025668263,-0.8025668263,-0.8024701476,-0.8023735285,-0.8023735285,-0.801890254,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8014069796,-0.801890254,-0.8022768497,-0.8025668263,-0.8027601242,-0.8023735285,-0.8025668263,-0.8027601242,-0.8026634455,-0.8025668263,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8028567433,-0.8024701476,-0.8022768497,-0.8026634455,-0.8023735285,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8025668263,-0.7997637987,-0.7978307605,-0.7971541882,-0.792514801,-0.7849758267,-0.7842026353,-0.7923215032,-0.797057569,-0.7940613031,-0.7935779691,-0.797057569,-0.7974441648,-0.7966709137,-0.7977340817,-0.7980240583,-0.7974441648,-0.7978307605,-0.7989906073,-0.8002471328,-0.8010203838,-0.8013103604,-0.800827086,-0.7990872264,-0.7977340817,-0.7972508669,-0.7971541882,-0.797057569,-0.7969608903,-0.7967675924,-0.7966709137,-0.7966709137,-0.7965742946,-0.7963809967,-0.7963809967,-0.7963809967,-0.7964776158,-0.7967675924,-0.7968642116,-0.7967675924,-0.7969608903,-0.7968642116,-0.797347486,-0.7987973094,-0.799377203,-0.7981207371,-0.797347486,-0.7975407839,-0.7972508669,-0.7968642116,-0.7968642116,-0.7969608903,-0.7966709137,-0.7963809967,-0.796284318,-0.7960910201,-0.7960910201,-0.796284318,-0.7960910201,-0.7958977222,-0.795994401,-0.7961876988,-0.7961876988,-0.7960910201,-0.795994401,-0.7958977222,-0.7960910201,-0.796284318,-0.7961876988,-0.7960910201,-0.7961876988,-0.7960910201,-0.795994401,-0.7961876988,-0.7961876988,-0.795994401,-0.7957044244,-0.7957044244,-0.795994401,-0.7965742946,-0.7963809967,-0.7968642116,-0.7998605371,-0.801117003,-0.7985073328,-0.7967675924,-0.7967675924,-0.796284318,-0.7958010435,-0.7957044244,-0.7958977222,-0.796284318,-0.796284318,-0.7960910201,-0.795994401,-0.7960910201,-0.796284318,-0.7964776158,-0.796284318,-0.7958977222,-0.7953178287,-0.7953178287,-0.7957044244,-0.7958010435,-0.7956077456,-0.7958010435,-0.7961876988,-0.7960910201,-0.7961876988,-0.7965742946,-0.7965742946,-0.7965742946,-0.7966709137,-0.7964776158,-0.7965742946,-0.7967675924,-0.7966709137,-0.7966709137,-0.7969608903,-0.7972508669,-0.7978307605,-0.7984106541,-0.7987006307,-0.7990872264,-0.7990872264,-0.7987973094,-0.7987006307,-0.7987006307,-0.7980240583,-0.7972508669,-0.7971541882,-0.7969608903,-0.7966709137,-0.7968642116,-0.7972508669,-0.797347486,-0.7976374626,-0.7975407839,-0.7975407839,-0.7977340817,-0.7976374626,-0.7985073328,-0.7996671796,-0.799377203,-0.7998605371,-0.800827086,-0.8004404902,-0.7991839051,-0.7983140349,-0.7984106541,-0.7980240583,-0.7977340817,-0.7989906073,-0.7974441648,-0.7935779691,-0.7919349074,-0.7919349074,-0.7933846712,-0.7921282053,-0.7861357331,-0.7856523991,-0.7927080989,-0.7974441648,-0.7990872264,-0.8013103604,-0.8026634455,-0.8027601242,-0.8026634455,-0.8024701476,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8024701476,-0.8024701476,-0.8023735285,-0.8027601242,-0.8024701476,-0.8024701476,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8024701476,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8024701476,-0.8023735285,-0.8026634455,-0.8026634455,-0.8025668263,-0.8021802306,-0.8023735285,-0.8027601242,-0.8026634455,-0.8024701476,-0.8024701476,-0.8026634455,-0.8025668263,-0.8026634455,-0.8022768497,-0.801890254,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8015036583,-0.8021802306,-0.8020835519,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8024701476,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8023735285,-0.8025668263,-0.8025668263,-0.8023735285,-0.8025668263,-0.8024701476,-0.8027601242,-0.8025668263,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8023735285,-0.8020835519,-0.7994738221,-0.7977340817,-0.7951245308,-0.789421916,-0.7843959332,-0.786329031,-0.7940613031,-0.7966709137,-0.7942546606,-0.7958010435,-0.7975407839,-0.795994401,-0.7964776158,-0.7979274392,-0.7976374626,-0.7976374626,-0.7983140349,-0.7994738221,-0.8003438115,-0.8009237051,-0.8016969562,-0.8010203838,-0.7987973094,-0.7974441648,-0.7971541882,-0.7971541882,-0.7971541882,-0.7969608903,-0.7967675924,-0.7968642116,-0.7969608903,-0.7968642116,-0.7965742946,-0.7964776158,-0.7964776158,-0.7964776158,-0.7966709137,-0.7967675924,-0.7966709137,-0.7967675924,-0.7969608903,-0.7974441648,-0.7986039519,-0.7991839051,-0.7982173562,-0.7971541882,-0.7969608903,-0.797057569,-0.7969608903,-0.7967675924,-0.7967675924,-0.7965742946,-0.7963809967,-0.7960910201,-0.7958977222,-0.795994401,-0.7960910201,-0.7958977222,-0.7958977222,-0.795994401,-0.795994401,-0.795994401,-0.795994401,-0.795994401,-0.7958977222,-0.795994401,-0.796284318,-0.7960910201,-0.7958977222,-0.7958977222,-0.795994401,-0.7961876988,-0.796284318,-0.7961876988,-0.795994401,-0.7960910201,-0.7958010435,-0.7957044244,-0.7964776158,-0.7961876988,-0.7965742946,-0.8002471328,-0.8007304072,-0.7994738221,-0.796284318,-0.7966709137,-0.7965742946,-0.795994401,-0.795994401,-0.7960910201,-0.7960910201,-0.795994401,-0.7958977222,-0.7958977222,-0.795994401,-0.796284318,-0.796284318,-0.7961876988,-0.7958010435,-0.7953178287,-0.7953178287,-0.7955111265,-0.7957044244,-0.7957044244,-0.7958010435,-0.795994401,-0.795994401,-0.795994401,-0.7961876988,-0.796284318,-0.7963809967,-0.7964776158,-0.7963809967,-0.7963809967,-0.7966709137,-0.7968642116,-0.7968642116,-0.797057569,-0.797057569,-0.7966709137,-0.7974441648,-0.7987973094,-0.7989906073,-0.7987006307,-0.7988939285,-0.7994738221,-0.7990872264,-0.7977340817,-0.7971541882,-0.7972508669,-0.797057569,-0.7967675924,-0.7965742946,-0.7967675924,-0.7972508669,-0.797347486,-0.797347486,-0.797347486,-0.7975407839,-0.7975407839,-0.7976374626,-0.7992805243,-0.8005371094,-0.800827086,-0.8010203838,-0.8010203838,-0.8000538349,-0.7986039519,-0.7981207371,-0.7984106541,-0.7974441648,-0.7974441648,-0.7985073328,-0.7958977222,-0.7915482521,-0.7909683585,-0.7932879925,-0.7928047776,-0.7871022224,-0.7847825289,-0.7908717394,-0.7967675924,-0.7985073328,-0.8006337881,-0.8026634455,-0.8026634455,-0.8023735285,-0.8025668263,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8023735285,-0.8022768497,-0.8025668263,-0.8027601242,-0.8024701476,-0.8025668263,-0.8026634455,-0.8024701476,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8027601242,-0.8023735285,-0.8023735285,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8019868731,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8009237051,-0.801890254,-0.8016002774,-0.8026634455,-0.8022768497,-0.8024701476,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8024701476,-0.8023735285,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8022768497,-0.8016969562,-0.7995705009,-0.7981207371,-0.7944479585,-0.7884553671,-0.7847825289,-0.7892286181,-0.7963809967,-0.7958010435,-0.7940613031,-0.7966709137,-0.796284318,-0.7952211499,-0.7969608903,-0.7976374626,-0.7975407839,-0.7980240583,-0.7989906073,-0.8005371094,-0.800827086,-0.8007304072,-0.8014069796,-0.8002471328,-0.7982173562,-0.797347486,-0.7971541882,-0.7971541882,-0.7971541882,-0.7968642116,-0.7968642116,-0.797057569,-0.797057569,-0.7968642116,-0.7966709137,-0.7964776158,-0.7964776158,-0.7965742946,-0.7968642116,-0.7969608903,-0.7968642116,-0.7968642116,-0.7969608903,-0.797347486,-0.7987973094,-0.7992805243,-0.7976374626,-0.7963809967,-0.7963809967,-0.7964776158,-0.7965742946,-0.7965742946,-0.7963809967,-0.796284318,-0.796284318,-0.7961876988,-0.7960910201,-0.7960910201,-0.795994401,-0.7958977222,-0.7960910201,-0.7961876988,-0.7961876988,-0.7961876988,-0.7961876988,-0.795994401,-0.7958977222,-0.7961876988,-0.7965742946,-0.795994401,-0.7956077456,-0.7958010435,-0.7960910201,-0.7961876988,-0.796284318,-0.7961876988,-0.796284318,-0.7963809967,-0.7961876988,-0.7958977222,-0.7961876988,-0.7965742946,-0.7965742946,-0.7980240583,-0.799377203,-0.7981207371,-0.7963809967,-0.7966709137,-0.7965742946,-0.7958010435,-0.7957044244,-0.7958977222,-0.795994401,-0.7958977222,-0.7958977222,-0.7958977222,-0.7958977222,-0.795994401,-0.7960910201,-0.7961876988,-0.795994401,-0.7955111265,-0.7952211499,-0.7954144478,-0.7957044244,-0.7958010435,-0.7958977222,-0.795994401,-0.7960910201,-0.795994401,-0.7958977222,-0.795994401,-0.7961876988,-0.796284318,-0.7961876988,-0.7961876988,-0.7964776158,-0.7969608903,-0.7969608903,-0.7968642116,-0.7968642116,-0.7961876988,-0.7963809967,-0.7979274392,-0.7990872264,-0.7987006307,-0.7986039519,-0.7988939285,-0.7987006307,-0.7981207371,-0.7975407839,-0.7972508669,-0.797057569,-0.7967675924,-0.796284318,-0.796284318,-0.7964776158,-0.7966709137,-0.7971541882,-0.797347486,-0.797347486,-0.7974441648,-0.797347486,-0.7980240583,-0.7990872264,-0.8000538349,-0.8010203838,-0.8016002774,-0.801117003,-0.7992805243,-0.7980240583,-0.7983140349,-0.7980240583,-0.7965742946,-0.797347486,-0.7985073328,-0.7945445776,-0.7902917862,-0.7921282053,-0.7931913733,-0.7875854969,-0.784589231,-0.7900018692,-0.795994401,-0.7982173562,-0.8002471328,-0.8024701476,-0.8026634455,-0.8023735285,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8024701476,-0.8023735285,-0.8024701476,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8023735285,-0.8024701476,-0.8023735285,-0.8023735285,-0.8026634455,-0.8026634455,-0.8026634455,-0.8024701476,-0.8026634455,-0.8026634455,-0.8023735285,-0.8019868731,-0.8016969562,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8014069796,-0.8025668263,-0.8023735285,-0.8024701476,-0.8026634455,-0.8023735285,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8024701476,-0.8026634455,-0.8024701476,-0.8012136817,-0.799377203,-0.7977340817,-0.7931913733,-0.7870056033,-0.7848792076,-0.7910650373,-0.7971541882,-0.7953178287,-0.7944479585,-0.7963809967,-0.7954144478,-0.7958010435,-0.7975407839,-0.7974441648,-0.797347486,-0.7982173562,-0.8002471328,-0.8016969562,-0.8006337881,-0.8000538349,-0.8001505136,-0.7987006307,-0.7975407839,-0.797347486,-0.7971541882,-0.7971541882,-0.7971541882,-0.797057569,-0.797057569,-0.797057569,-0.7968642116,-0.7966709137,-0.7965742946,-0.7964776158,-0.7965742946,-0.7966709137,-0.7969608903,-0.797057569,-0.797057569,-0.7971541882,-0.7971541882,-0.7978307605,-0.7992805243,-0.7987006307,-0.7969608903,-0.797057569,-0.7975407839,-0.7968642116,-0.7965742946,-0.7963809967,-0.7961876988,-0.7961876988,-0.7961876988,-0.7960910201,-0.7961876988,-0.7961876988,-0.7961876988,-0.796284318,-0.796284318,-0.7963809967,-0.7963809967,-0.7960910201,-0.7961876988,-0.796284318,-0.7960910201,-0.7960910201,-0.796284318,-0.7958010435,-0.7956077456,-0.7958977222,-0.795994401,-0.795994401,-0.7961876988,-0.7963809967,-0.796284318,-0.796284318,-0.796284318,-0.7961876988,-0.7961876988,-0.7964776158,-0.7966709137,-0.7971541882,-0.7975407839,-0.7969608903,-0.7963809967,-0.7966709137,-0.7965742946,-0.7958977222,-0.7957044244,-0.795994401,-0.7960910201,-0.7958977222,-0.7958010435,-0.7958977222,-0.7958977222,-0.7960910201,-0.7960910201,-0.7958977222,-0.7958010435,-0.7956077456,-0.7954144478,-0.7955111265,-0.7958010435,-0.7958010435,-0.7958010435,-0.7958977222,-0.7958977222,-0.795994401,-0.7958977222,-0.7958010435,-0.795994401,-0.795994401,-0.7958977222,-0.7960910201,-0.7963809967,-0.7964776158,-0.7967675924,-0.7969608903,-0.7971541882,-0.7974441648,-0.7975407839,-0.7981207371,-0.7990872264,-0.7992805243,-0.7989906073,-0.7991839051,-0.7991839051,-0.7987973094,-0.7981207371,-0.7974441648,-0.7971541882,-0.7968642116,-0.7963809967,-0.796284318,-0.7963809967,-0.7963809967,-0.7965742946,-0.7969608903,-0.7971541882,-0.7972508669,-0.7971541882,-0.7974441648,-0.7987006307,-0.8001505136,-0.8009237051,-0.8013103604,-0.8016969562,-0.8005371094,-0.7985073328,-0.7980240583,-0.7984106541,-0.7969608903,-0.7956077456,-0.7977340817,-0.7980240583,-0.7927080989,-0.7916449308,-0.7940613031,-0.7895185947,-0.7847825289,-0.7890353203,-0.7953178287,-0.7982173562,-0.8005371094,-0.8025668263,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8024701476,-0.8024701476,-0.8024701476,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8024701476,-0.8021802306,-0.8016969562,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8012136817,-0.8023735285,-0.8021802306,-0.8025668263,-0.8024701476,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8028567433,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8024701476,-0.8026634455,-0.8027601242,-0.8006337881,-0.799377203,-0.797057569,-0.7906783819,-0.784589231,-0.7852658033,-0.7924181223,-0.7958977222,-0.7940613031,-0.7947378755,-0.7961876988,-0.795994401,-0.7971541882,-0.7978307605,-0.797347486,-0.7975407839,-0.7992805243,-0.8014069796,-0.8012136817,-0.8001505136,-0.7998605371,-0.7987973094,-0.7976374626,-0.7975407839,-0.7974441648,-0.7972508669,-0.7971541882,-0.7971541882,-0.797057569,-0.7967675924,-0.7967675924,-0.7968642116,-0.7967675924,-0.7965742946,-0.7965742946,-0.7963809967,-0.7964776158,-0.7971541882,-0.797347486,-0.7972508669,-0.7971541882,-0.7974441648,-0.7985073328,-0.799377203,-0.7986039519,-0.7975407839,-0.797347486,-0.797057569,-0.7965742946,-0.7963809967,-0.7961876988,-0.7960910201,-0.795994401,-0.7960910201,-0.795994401,-0.795994401,-0.796284318,-0.7964776158,-0.7964776158,-0.7964776158,-0.796284318,-0.7961876988,-0.796284318,-0.7964776158,-0.7964776158,-0.7961876988,-0.7960910201,-0.7960910201,-0.7958977222,-0.7957044244,-0.795994401,-0.795994401,-0.7960910201,-0.7963809967,-0.7963809967,-0.7960910201,-0.7960910201,-0.7961876988,-0.795994401,-0.7960910201,-0.7963809967,-0.7964776158,-0.7966709137,-0.7971541882,-0.7969608903,-0.7965742946,-0.7964776158,-0.796284318,-0.795994401,-0.795994401,-0.7960910201,-0.796284318,-0.795994401,-0.7958977222,-0.795994401,-0.7958977222,-0.7958977222,-0.795994401,-0.7958977222,-0.7957044244,-0.7955111265,-0.7953178287,-0.7955111265,-0.7956077456,-0.7955111265,-0.7958010435,-0.795994401,-0.7958010435,-0.7958010435,-0.7958977222,-0.7958977222,-0.7958010435,-0.7958977222,-0.7958010435,-0.795994401,-0.7964776158,-0.7963809967,-0.796284318,-0.7965742946,-0.7967675924,-0.7975407839,-0.7984106541,-0.7986039519,-0.7990872264,-0.7997637987,-0.799377203,-0.7989906073,-0.7991839051,-0.7994738221,-0.7988939285,-0.7975407839,-0.7967675924,-0.7966709137,-0.7964776158,-0.796284318,-0.7960910201,-0.7960910201,-0.7963809967,-0.7964776158,-0.7967675924,-0.7969608903,-0.797057569,-0.7977340817,-0.7989906073,-0.8002471328,-0.800827086,-0.801117003,-0.8017935753,-0.8013103604,-0.799377203,-0.7981207371,-0.7983140349,-0.7979274392,-0.7957044244,-0.7957044244,-0.7982173562,-0.7964776158,-0.7936747074,-0.7942546606,-0.7902917862,-0.7852658033,-0.7885520458,-0.7946412563,-0.7979274392,-0.8004404902,-0.8023735285,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8024701476,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8024701476,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8027601242,-0.8025668263,-0.8025668263,-0.8019868731,-0.8015036583,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8014069796,-0.8023735285,-0.8019868731,-0.8028567433,-0.8023735285,-0.8022768497,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8025668263,-0.8025668263,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8028567433,-0.8026634455,-0.8028567433,-0.8027601242,-0.8023735285,-0.8023735285,-0.8003438115,-0.7987973094,-0.7952211499,-0.7892286181,-0.7844925523,-0.7861357331,-0.7928047776,-0.7946412563,-0.7929980755,-0.7945445776,-0.7965742946,-0.797347486,-0.7979274392,-0.7977340817,-0.7974441648,-0.7982173562,-0.8005371094,-0.8017935753,-0.8010203838,-0.8003438115,-0.7992805243,-0.7978307605,-0.7975407839,-0.7976374626,-0.7972508669,-0.7971541882,-0.797057569,-0.7969608903,-0.7969608903,-0.7968642116,-0.7966709137,-0.7966709137,-0.7967675924,-0.7967675924,-0.7965742946,-0.796284318,-0.7965742946,-0.7971541882,-0.7976374626,-0.7977340817,-0.7975407839,-0.7979274392,-0.7990872264,-0.7994738221,-0.7986039519,-0.7977340817,-0.7969608903,-0.7966709137,-0.7965742946,-0.7961876988,-0.7958977222,-0.7960910201,-0.795994401,-0.7958977222,-0.7961876988,-0.7961876988,-0.7960910201,-0.796284318,-0.7964776158,-0.7963809967,-0.7963809967,-0.796284318,-0.7961876988,-0.7965742946,-0.7966709137,-0.7961876988,-0.7961876988,-0.796284318,-0.795994401,-0.7957044244,-0.795994401,-0.7961876988,-0.796284318,-0.796284318,-0.7960910201,-0.7961876988,-0.796284318,-0.7961876988,-0.7961876988,-0.796284318,-0.7963809967,-0.7964776158,-0.7967675924,-0.7969608903,-0.7968642116,-0.7967675924,-0.7965742946,-0.7960910201,-0.795994401,-0.7961876988,-0.7961876988,-0.7961876988,-0.7960910201,-0.7960910201,-0.7961876988,-0.7961876988,-0.7958977222,-0.7958010435,-0.7958010435,-0.7958977222,-0.7958977222,-0.7957044244,-0.7957044244,-0.7958977222,-0.7958010435,-0.7958977222,-0.7960910201,-0.795994401,-0.7958977222,-0.795994401,-0.795994401,-0.795994401,-0.7958977222,-0.7958010435,-0.7960910201,-0.7963809967,-0.7963809967,-0.7963809967,-0.7963809967,-0.796284318,-0.7963809967,-0.7967675924,-0.7972508669,-0.7983140349,-0.799377203,-0.799377203,-0.7983140349,-0.7974441648,-0.7983140349,-0.7986039519,-0.7974441648,-0.7968642116,-0.7969608903,-0.7963809967,-0.7958977222,-0.7960910201,-0.796284318,-0.796284318,-0.7963809967,-0.7968642116,-0.7971541882,-0.7972508669,-0.7978307605,-0.7986039519,-0.7997637987,-0.8012136817,-0.8017935753,-0.8016969562,-0.8013103604,-0.8001505136,-0.7987973094,-0.7980240583,-0.7982173562,-0.797347486,-0.7957044244,-0.7966709137,-0.7976374626,-0.7960910201,-0.7944479585,-0.7901951671,-0.7856523991,-0.7878754735,-0.7936747074,-0.7974441648,-0.7999572158,-0.8020835519,-0.8028567433,-0.8025668263,-0.8024701476,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8023735285,-0.8026634455,-0.8027601242,-0.8028567433,-0.8024701476,-0.8026634455,-0.8028567433,-0.8027601242,-0.8025668263,-0.8023735285,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8020835519,-0.801890254,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8023735285,-0.8027601242,-0.8021802306,-0.8021802306,-0.8022768497,-0.8022768497,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8024701476,-0.8026634455,-0.8026634455,-0.8024701476,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8024701476,-0.8016969562,-0.7998605371,-0.7980240583,-0.7930946946,-0.7872955203,-0.7842992544,-0.7874888182,-0.7935779691,-0.7938680053,-0.7917416096,-0.7941579819,-0.7971541882,-0.7978307605,-0.7979274392,-0.7979274392,-0.7979274392,-0.7992805243,-0.8012136817,-0.801890254,-0.8012136817,-0.7997637987,-0.7979274392,-0.7972508669,-0.7975407839,-0.797347486,-0.7971541882,-0.7972508669,-0.797057569,-0.7968642116,-0.7969608903,-0.7968642116,-0.7965742946,-0.7965742946,-0.7965742946,-0.7965742946,-0.7966709137,-0.7965742946,-0.7968642116,-0.7974441648,-0.7976374626,-0.7979274392,-0.7986039519,-0.7992805243,-0.799377203,-0.7989906073,-0.7984106541,-0.7979274392,-0.7972508669,-0.7965742946,-0.7964776158,-0.7961876988,-0.7958010435,-0.7958010435,-0.7958977222,-0.795994401,-0.796284318,-0.7964776158,-0.7963809967,-0.7963809967,-0.7964776158,-0.7963809967,-0.7961876988,-0.7965742946,-0.7967675924,-0.7966709137,-0.7965742946,-0.796284318,-0.7961876988,-0.7963809967,-0.7960910201,-0.7956077456,-0.7957044244,-0.7960910201,-0.7963809967,-0.7963809967,-0.7960910201,-0.795994401,-0.7963809967,-0.7964776158,-0.796284318,-0.7963809967,-0.796284318,-0.796284318,-0.7967675924,-0.797057569,-0.7967675924,-0.7966709137,-0.7968642116,-0.7964776158,-0.7960910201,-0.795994401,-0.7961876988,-0.7960910201,-0.795994401,-0.7960910201,-0.7960910201,-0.795994401,-0.7958977222,-0.7958010435,-0.795994401,-0.7958977222,-0.7956077456,-0.7957044244,-0.795994401,-0.7958977222,-0.7958010435,-0.795994401,-0.795994401,-0.7958977222,-0.795994401,-0.795994401,-0.795994401,-0.7960910201,-0.7958977222,-0.7958977222,-0.7960910201,-0.796284318,-0.796284318,-0.7963809967,-0.7963809967,-0.7964776158,-0.7967675924,-0.7967675924,-0.796284318,-0.7969608903,-0.7984106541,-0.7991839051,-0.7991839051,-0.7983140349,-0.7975407839,-0.7978307605,-0.7974441648,-0.7967675924,-0.7966709137,-0.796284318,-0.7960910201,-0.7961876988,-0.7961876988,-0.7963809967,-0.7966709137,-0.7968642116,-0.7972508669,-0.7974441648,-0.7980240583,-0.7989906073,-0.7992805243,-0.8003438115,-0.8015036583,-0.8015036583,-0.8013103604,-0.8009237051,-0.7994738221,-0.7979274392,-0.7978307605,-0.7978307605,-0.7965742946,-0.796284318,-0.797057569,-0.7968642116,-0.7957044244,-0.7912583351,-0.7865223289,-0.7883586884,-0.7932879925,-0.7966709137,-0.799377203,-0.8016002774,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8024701476,-0.8025668263,-0.8026634455,-0.8028567433,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8023735285,-0.8023735285,-0.8022768497,-0.8025668263,-0.8028567433,-0.8025668263,-0.8026634455,-0.8024701476,-0.8024701476,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8012136817,-0.8022768497,-0.8024701476,-0.8020835519,-0.8021802306,-0.8024701476,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8028567433,-0.8025668263,-0.8024701476,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8026634455,-0.8025668263,-0.8025668263,-0.8012136817,-0.7994738221,-0.7975407839,-0.7919349074,-0.7857490778,-0.784589231,-0.7901951671,-0.7952211499,-0.7929980755,-0.7915482521,-0.7952211499,-0.7971541882,-0.7972508669,-0.7981207371,-0.7982173562,-0.7985073328,-0.8002471328,-0.8017935753,-0.8016969562,-0.8001505136,-0.7983140349,-0.7974441648,-0.7972508669,-0.797347486,-0.7974441648,-0.797347486,-0.7971541882,-0.797057569,-0.797057569,-0.7969608903,-0.7966709137,-0.7964776158,-0.7965742946,-0.7963809967,-0.7963809967,-0.7967675924,-0.7969608903,-0.7972508669,-0.7975407839,-0.7981207371,-0.7990872264,-0.7994738221,-0.7990872264,-0.7986039519,-0.7982173562,-0.7977340817,-0.7974441648,-0.7971541882,-0.7967675924,-0.7963809967,-0.7961876988,-0.795994401,-0.7958977222,-0.795994401,-0.7961876988,-0.796284318,-0.7963809967,-0.7963809967,-0.7964776158,-0.7963809967,-0.7963809967,-0.7963809967,-0.7961876988,-0.7958010435,-0.7958977222,-0.7963809967,-0.7964776158,-0.7961876988,-0.7961876988,-0.7961876988,-0.7958010435,-0.7955111265,-0.7957044244,-0.7958977222,-0.795994401,-0.7961876988,-0.795994401,-0.7958977222,-0.796284318,-0.796284318,-0.796284318,-0.7964776158,-0.7966709137,-0.7969608903,-0.7971541882,-0.7969608903,-0.7966709137,-0.7965742946,-0.796284318,-0.795994401,-0.795994401,-0.7960910201,-0.795994401,-0.795994401,-0.7961876988,-0.7960910201,-0.7958010435,-0.7958010435,-0.7958010435,-0.7958010435,-0.795994401,-0.7958010435,-0.7957044244,-0.7958010435,-0.795994401,-0.7960910201,-0.7958977222,-0.7958010435,-0.7958977222,-0.7958010435,-0.7958977222,-0.7960910201,-0.7960910201,-0.7958977222,-0.7958977222,-0.7958977222,-0.795994401,-0.7961876988,-0.7960910201,-0.7958977222,-0.7958977222,-0.7965742946,-0.7977340817,-0.7974441648,-0.7963809967,-0.7971541882,-0.7987973094,-0.799377203,-0.7991839051,-0.7988939285,-0.7983140349,-0.797347486,-0.7965742946,-0.7963809967,-0.7961876988,-0.7958977222,-0.7960910201,-0.7966709137,-0.7969608903,-0.7968642116,-0.7968642116,-0.797347486,-0.7979274392,-0.7984106541,-0.7987973094,-0.7987006307,-0.7988939285,-0.8002471328,-0.8016002774,-0.8017935753,-0.8014069796,-0.8001505136,-0.7985073328,-0.7979274392,-0.7981207371,-0.7974441648,-0.7965742946,-0.7964776158,-0.7976374626,-0.7979274392,-0.7926114798,-0.7867156267,-0.7880687714,-0.7921282053,-0.7953178287,-0.7987973094,-0.801117003,-0.8023735285,-0.8027601242,-0.8025668263,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8023735285,-0.8022768497,-0.8024701476,-0.8024701476,-0.8022768497,-0.8024701476,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8024701476,-0.8025668263,-0.8023735285,-0.8019868731,-0.8024701476,-0.8023735285,-0.8025668263,-0.8024701476,-0.8020835519,-0.8022768497,-0.8017935753,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8019868731,-0.8026634455,-0.8020835519,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8023735285,-0.8022768497,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8025668263,-0.8013103604,-0.7990872264,-0.7958977222,-0.7906783819,-0.786618948,-0.7897118926,-0.7966709137,-0.7965742946,-0.7924181223,-0.793964684,-0.7964776158,-0.796284318,-0.7974441648,-0.7984106541,-0.7982173562,-0.7992805243,-0.801117003,-0.8020835519,-0.8007304072,-0.7986039519,-0.7976374626,-0.7974441648,-0.7972508669,-0.797347486,-0.7977340817,-0.7974441648,-0.7971541882,-0.7971541882,-0.7969608903,-0.7965742946,-0.7965742946,-0.7964776158,-0.7963809967,-0.7964776158,-0.7963809967,-0.7966709137,-0.797347486,-0.7976374626,-0.7980240583,-0.7988939285,-0.7991839051,-0.7987973094,-0.7983140349,-0.7976374626,-0.7972508669,-0.7971541882,-0.7971541882,-0.7972508669,-0.7971541882,-0.7966709137,-0.7961876988,-0.7960910201,-0.795994401,-0.795994401,-0.7960910201,-0.7964776158,-0.7965742946,-0.796284318,-0.796284318,-0.7963809967,-0.796284318,-0.7964776158,-0.7963809967,-0.7955111265,-0.7955111265,-0.796284318,-0.7963809967,-0.7960910201,-0.796284318,-0.796284318,-0.7958010435,-0.7957044244,-0.7958977222,-0.7957044244,-0.7958010435,-0.795994401,-0.7958010435,-0.7957044244,-0.7958010435,-0.7958977222,-0.795994401,-0.7960910201,-0.7960910201,-0.7965742946,-0.7971541882,-0.797057569,-0.7965742946,-0.7961876988,-0.7958977222,-0.7957044244,-0.7958010435,-0.7958977222,-0.7958010435,-0.7958010435,-0.7958010435,-0.7958977222,-0.7958977222,-0.7958977222,-0.7958010435,-0.7955111265,-0.7954144478,-0.7955111265,-0.7957044244,-0.795994401,-0.7960910201,-0.7958010435,-0.7958010435,-0.7961876988,-0.7958010435,-0.7952211499,-0.7957044244,-0.7960910201,-0.7958977222,-0.7958977222,-0.795994401,-0.7958010435,-0.7957044244,-0.7958977222,-0.7958977222,-0.795994401,-0.795994401,-0.796284318,-0.7969608903,-0.7976374626,-0.797347486,-0.7967675924,-0.7979274392,-0.7992805243,-0.7992805243,-0.7990872264,-0.7988939285,-0.7977340817,-0.7969608903,-0.7968642116,-0.7964776158,-0.7961876988,-0.796284318,-0.7965742946,-0.7968642116,-0.797347486,-0.7975407839,-0.7976374626,-0.7978307605,-0.7976374626,-0.7976374626,-0.7982173562,-0.7984106541,-0.7992805243,-0.8010203838,-0.8017935753,-0.8016002774,-0.8012136817,-0.7995705009,-0.7980240583,-0.7981207371,-0.7980240583,-0.7965742946,-0.7957044244,-0.7975407839,-0.7989906073,-0.7935779691,-0.786329031,-0.7869089246,-0.7909683585,-0.7942546606,-0.7983140349,-0.8012136817,-0.8022768497,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8025668263,-0.8022768497,-0.8025668263,-0.8027601242,-0.8025668263,-0.8024701476,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8024701476,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8025668263,-0.8021802306,-0.8022768497,-0.8025668263,-0.8019868731,-0.8025668263,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8020835519,-0.8023735285,-0.8022768497,-0.8025668263,-0.8025668263,-0.8024701476,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8024701476,-0.8025668263,-0.8024701476,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8022768497,-0.8023735285,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8024701476,-0.8026634455,-0.8012136817,-0.7985073328,-0.7947378755,-0.789421916,-0.7875854969,-0.7956077456,-0.801890254,-0.7964776158,-0.7927080989,-0.7960910201,-0.7967675924,-0.7964776158,-0.7981207371,-0.7982173562,-0.7982173562,-0.8003438115,-0.8022768497,-0.8016002774,-0.7988939285,-0.7974441648,-0.797347486,-0.7972508669,-0.797057569,-0.7971541882,-0.7977340817,-0.7978307605,-0.797057569,-0.7967675924,-0.7968642116,-0.7966709137,-0.7965742946,-0.7964776158,-0.7965742946,-0.7966709137,-0.7966709137,-0.7969608903,-0.7977340817,-0.7984106541,-0.7987973094,-0.7986039519,-0.7979274392,-0.7978307605,-0.7977340817,-0.797347486,-0.7971541882,-0.7974441648,-0.7976374626,-0.7974441648,-0.797347486,-0.7969608903,-0.7964776158,-0.7960910201,-0.795994401,-0.7960910201,-0.7961876988,-0.7964776158,-0.7966709137,-0.7964776158,-0.7961876988,-0.7960910201,-0.7963809967,-0.7963809967,-0.7956077456,-0.7948345542,-0.7950278521,-0.7957044244,-0.7960910201,-0.7961876988,-0.7963809967,-0.7960910201,-0.7956077456,-0.7958010435,-0.7960910201,-0.795994401,-0.7960910201,-0.795994401,-0.7958010435,-0.7958010435,-0.7957044244,-0.7957044244,-0.7957044244,-0.7956077456,-0.795994401,-0.7965742946,-0.7967675924,-0.7965742946,-0.7965742946,-0.7963809967,-0.7958977222,-0.7957044244,-0.7958010435,-0.7958010435,-0.7957044244,-0.7956077456,-0.7957044244,-0.7958010435,-0.7958010435,-0.7958010435,-0.7958010435,-0.7957044244,-0.7955111265,-0.7953178287,-0.7951245308,-0.7955111265,-0.795994401,-0.7961876988,-0.7958977222,-0.7953178287,-0.7953178287,-0.7958977222,-0.7960910201,-0.7958010435,-0.7958010435,-0.7960910201,-0.795994401,-0.7958010435,-0.7958010435,-0.7955111265,-0.7954144478,-0.7958010435,-0.7960910201,-0.796284318,-0.7969608903,-0.7974441648,-0.7976374626,-0.7976374626,-0.7974441648,-0.7980240583,-0.7988939285,-0.799377203,-0.7990872264,-0.7980240583,-0.7967675924,-0.7963809967,-0.7961876988,-0.7961876988,-0.7963809967,-0.7965742946,-0.797057569,-0.7976374626,-0.7976374626,-0.7974441648,-0.7972508669,-0.7971541882,-0.797057569,-0.7976374626,-0.7983140349,-0.7985073328,-0.7995705009,-0.8014069796,-0.8020835519,-0.8019868731,-0.8009237051,-0.7987006307,-0.7978307605,-0.7980240583,-0.797057569,-0.7958010435,-0.7964776158,-0.7980240583,-0.7947378755,-0.7878754735,-0.7861357331,-0.7899051905,-0.793964684,-0.7977340817,-0.800827086,-0.8023735285,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8023735285,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8024701476,-0.8023735285,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8023735285,-0.8022768497,-0.8025668263,-0.8024701476,-0.8021802306,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8022768497,-0.8023735285,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8024701476,-0.8023735285,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8024701476,-0.8025668263,-0.8028567433,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8023735285,-0.8020835519,-0.8024701476,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8022768497,-0.8026634455,-0.801117003,-0.7981207371,-0.7929013968,-0.786329031,-0.7861357331,-0.7951245308,-0.7999572158,-0.7955111265,-0.7936747074,-0.796284318,-0.7972508669,-0.7976374626,-0.7981207371,-0.7979274392,-0.7991839051,-0.8016002774,-0.8022768497,-0.7998605371,-0.7975407839,-0.797347486,-0.7974441648,-0.7971541882,-0.797057569,-0.7972508669,-0.7977340817,-0.7977340817,-0.7969608903,-0.7965742946,-0.7965742946,-0.7965742946,-0.7966709137,-0.7966709137,-0.7964776158,-0.7964776158,-0.7966709137,-0.7972508669,-0.7983140349,-0.7988939285,-0.7984106541,-0.7977340817,-0.797347486,-0.7972508669,-0.7974441648,-0.7977340817,-0.7978307605,-0.7977340817,-0.7977340817,-0.7975407839,-0.797347486,-0.797057569,-0.7965742946,-0.7961876988,-0.7960910201,-0.7961876988,-0.796284318,-0.7964776158,-0.7964776158,-0.7963809967,-0.7960910201,-0.7960910201,-0.7964776158,-0.7963809967,-0.7957044244,-0.7950278521,-0.7951245308,-0.7958010435,-0.7960910201,-0.7956077456,-0.7954144478,-0.7955111265,-0.7958977222,-0.796284318,-0.7967675924,-0.7967675924,-0.7961876988,-0.7957044244,-0.7956077456,-0.7956077456,-0.7956077456,-0.7955111265,-0.7957044244,-0.7960910201,-0.7960910201,-0.7966709137,-0.7976374626,-0.797057569,-0.7960910201,-0.7961876988,-0.7960910201,-0.7958010435,-0.7957044244,-0.7957044244,-0.7957044244,-0.7956077456,-0.7956077456,-0.7956077456,-0.7957044244,-0.7956077456,-0.7956077456,-0.7956077456,-0.7955111265,-0.7958010435,-0.795994401,-0.7954144478,-0.7951245308,-0.7951245308,-0.7946412563,-0.7946412563,-0.7956077456,-0.795994401,-0.795994401,-0.7958010435,-0.7958010435,-0.795994401,-0.7961876988,-0.7958010435,-0.7954144478,-0.7955111265,-0.7954144478,-0.7955111265,-0.7958010435,-0.7958977222,-0.7965742946,-0.7977340817,-0.7980240583,-0.7979274392,-0.7982173562,-0.7980240583,-0.7978307605,-0.7986039519,-0.7989906073,-0.7980240583,-0.7967675924,-0.7963809967,-0.7960910201,-0.795994401,-0.7963809967,-0.7968642116,-0.7971541882,-0.797347486,-0.7974441648,-0.7971541882,-0.797057569,-0.7972508669,-0.7971541882,-0.7972508669,-0.7977340817,-0.7977340817,-0.7984106541,-0.8005371094,-0.8019868731,-0.8020835519,-0.801890254,-0.7999572158,-0.7979274392,-0.7979274392,-0.7976374626,-0.795994401,-0.7954144478,-0.7971541882,-0.7971541882,-0.7915482521,-0.786329031,-0.7876821756,-0.7926114798,-0.797347486,-0.8006337881,-0.8020835519,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8025668263,-0.8024701476,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8022768497,-0.8023735285,-0.8025668263,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8023735285,-0.8027601242,-0.8024701476,-0.8026634455,-0.8024701476,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8022768497,-0.8026634455,-0.8027601242,-0.8023735285,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8024701476,-0.8023735285,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8024701476,-0.8027601242,-0.8025668263,-0.8022768497,-0.8025668263,-0.8027601242,-0.8028567433,-0.8025668263,-0.8025668263,-0.8025668263,-0.8022768497,-0.8021802306,-0.8025668263,-0.8024701476,-0.8024701476,-0.8025668263,-0.8028567433,-0.8027601242,-0.8024701476,-0.8024701476,-0.8028567433,-0.8010203838,-0.7980240583,-0.7923215032,-0.7856523991,-0.7857490778,-0.7921282053,-0.7954144478,-0.7949311733,-0.7952211499,-0.796284318,-0.7976374626,-0.7985073328,-0.7982173562,-0.7982173562,-0.8002471328,-0.8024701476,-0.8015036583,-0.7984106541,-0.7971541882,-0.797347486,-0.7972508669,-0.797347486,-0.7971541882,-0.7971541882,-0.7976374626,-0.7976374626,-0.7972508669,-0.7969608903,-0.7968642116,-0.7968642116,-0.7967675924,-0.7963809967,-0.7963809967,-0.7963809967,-0.7968642116,-0.7980240583,-0.7982173562,-0.7977340817,-0.7977340817,-0.7977340817,-0.7974441648,-0.797347486,-0.7976374626,-0.7978307605,-0.7977340817,-0.7977340817,-0.7977340817,-0.7976374626,-0.7974441648,-0.797057569,-0.7966709137,-0.796284318,-0.7960910201,-0.7963809967,-0.7963809967,-0.7960910201,-0.7961876988,-0.796284318,-0.795994401,-0.795994401,-0.7958977222,-0.7958010435,-0.7960910201,-0.796284318,-0.7963809967,-0.7964776158,-0.7960910201,-0.795994401,-0.7963809967,-0.7967675924,-0.7972508669,-0.7974441648,-0.797057569,-0.7966709137,-0.7960910201,-0.7957044244,-0.7956077456,-0.7955111265,-0.7958977222,-0.7960910201,-0.7958977222,-0.795994401,-0.7960910201,-0.7965742946,-0.7979274392,-0.7975407839,-0.7958977222,-0.7958010435,-0.795994401,-0.7956077456,-0.7954144478,-0.7954144478,-0.7954144478,-0.7954144478,-0.7955111265,-0.7956077456,-0.7957044244,-0.7956077456,-0.7954144478,-0.7953178287,-0.7953178287,-0.7958010435,-0.796284318,-0.7956077456,-0.7944479585,-0.7944479585,-0.7952211499,-0.7957044244,-0.7958010435,-0.7958977222,-0.795994401,-0.7958977222,-0.7957044244,-0.7958977222,-0.795994401,-0.7955111265,-0.7952211499,-0.7953178287,-0.7952211499,-0.7953178287,-0.7956077456,-0.7958977222,-0.7964776158,-0.7975407839,-0.7978307605,-0.7975407839,-0.7978307605,-0.7983140349,-0.7981207371,-0.7984106541,-0.7990872264,-0.7984106541,-0.797057569,-0.7965742946,-0.7963809967,-0.7961876988,-0.796284318,-0.7966709137,-0.7968642116,-0.7969608903,-0.797057569,-0.797057569,-0.7969608903,-0.797057569,-0.797057569,-0.7969608903,-0.797347486,-0.7977340817,-0.7976374626,-0.7988939285,-0.8009237051,-0.8016969562,-0.8019868731,-0.8009237051,-0.7986039519,-0.7979274392,-0.7981207371,-0.7965742946,-0.7950278521,-0.7969608903,-0.7988939285,-0.7943512797,-0.7880687714,-0.7877787948,-0.7915482521,-0.7961876988,-0.8003438115,-0.8021802306,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8024701476,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8024701476,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8025668263,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8024701476,-0.8022768497,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.801890254,-0.8026634455,-0.8022768497,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8024701476,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8022768497,-0.8022768497,-0.8025668263,-0.8024701476,-0.8023735285,-0.8024701476,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8024701476,-0.8023735285,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8026634455,-0.8006337881,-0.7977340817,-0.7954144478,-0.7902917862,-0.7879720926,-0.7926114798,-0.795994401,-0.7957044244,-0.7955111265,-0.7963809967,-0.7980240583,-0.7985073328,-0.7977340817,-0.7987006307,-0.8013103604,-0.8021802306,-0.7998605371,-0.7975407839,-0.7975407839,-0.7975407839,-0.7971541882,-0.7972508669,-0.7971541882,-0.797057569,-0.7975407839,-0.7977340817,-0.797347486,-0.797057569,-0.7969608903,-0.7968642116,-0.7966709137,-0.7964776158,-0.7963809967,-0.7965742946,-0.7972508669,-0.7977340817,-0.797347486,-0.7969608903,-0.7974441648,-0.7977340817,-0.7977340817,-0.7979274392,-0.7979274392,-0.7978307605,-0.7978307605,-0.7979274392,-0.7979274392,-0.7978307605,-0.7976374626,-0.7972508669,-0.7967675924,-0.796284318,-0.7960910201,-0.7961876988,-0.796284318,-0.7960910201,-0.795994401,-0.7961876988,-0.7961876988,-0.7960910201,-0.7958010435,-0.7958010435,-0.7956077456,-0.7955111265,-0.7958977222,-0.795994401,-0.7964776158,-0.7976374626,-0.7980240583,-0.7980240583,-0.7980240583,-0.797347486,-0.7963809967,-0.7958977222,-0.7958010435,-0.7958010435,-0.7957044244,-0.7956077456,-0.7958010435,-0.795994401,-0.7960910201,-0.7961876988,-0.795994401,-0.7967675924,-0.7979274392,-0.797057569,-0.7957044244,-0.7958010435,-0.7958977222,-0.7955111265,-0.7955111265,-0.7957044244,-0.7957044244,-0.7956077456,-0.7955111265,-0.7954144478,-0.7954144478,-0.7954144478,-0.7955111265,-0.7957044244,-0.7960910201,-0.7960910201,-0.7958010435,-0.7955111265,-0.7952211499,-0.7953178287,-0.7957044244,-0.7956077456,-0.7955111265,-0.7958977222,-0.7958977222,-0.7956077456,-0.7954144478,-0.7956077456,-0.7957044244,-0.7958010435,-0.7955111265,-0.7953178287,-0.7954144478,-0.7955111265,-0.7955111265,-0.7957044244,-0.7960910201,-0.7968642116,-0.7976374626,-0.797347486,-0.7971541882,-0.7974441648,-0.7977340817,-0.7980240583,-0.7987973094,-0.7987006307,-0.7976374626,-0.7968642116,-0.7965742946,-0.7963809967,-0.7961876988,-0.796284318,-0.7966709137,-0.7967675924,-0.7966709137,-0.7968642116,-0.7968642116,-0.7968642116,-0.797057569,-0.797057569,-0.7971541882,-0.7974441648,-0.797057569,-0.797347486,-0.7997637987,-0.8016002774,-0.8017935753,-0.8016969562,-0.7999572158,-0.7979274392,-0.7981207371,-0.7974441648,-0.7957044244,-0.7969608903,-0.7977340817,-0.7934813499,-0.7881653905,-0.7868123055,-0.7895185947,-0.7948345542,-0.7998605371,-0.8022768497,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8024701476,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8024701476,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8024701476,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8024701476,-0.8025668263,-0.8027601242,-0.8024701476,-0.8024701476,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8024701476,-0.8023735285,-0.8026634455,-0.8024701476,-0.8023735285,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8009237051,-0.8021802306,-0.8017935753,-0.8027601242,-0.8024701476,-0.8025668263,-0.8025668263,-0.8023735285,-0.8025668263,-0.8025668263,-0.8023735285,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8024701476,-0.8027601242,-0.8026634455,-0.8025668263,-0.8024701476,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8024701476,-0.8024701476,-0.8025668263,-0.8023735285,-0.8004404902,-0.7967675924,-0.7950278521,-0.7907750607,-0.7884553671,-0.7941579819,-0.7986039519,-0.795994401,-0.7938680053,-0.7958010435,-0.7981207371,-0.7981207371,-0.7976374626,-0.7995705009,-0.8019868731,-0.8010203838,-0.7981207371,-0.797347486,-0.7978307605,-0.7974441648,-0.7968642116,-0.7967675924,-0.7971541882,-0.797347486,-0.797347486,-0.7976374626,-0.7975407839,-0.7969608903,-0.7966709137,-0.7966709137,-0.7965742946,-0.7964776158,-0.7964776158,-0.7967675924,-0.797057569,-0.797057569,-0.7969608903,-0.7971541882,-0.797347486,-0.7974441648,-0.7975407839,-0.7976374626,-0.7979274392,-0.7978307605,-0.7977340817,-0.7978307605,-0.7977340817,-0.7975407839,-0.7972508669,-0.7969608903,-0.7967675924,-0.7964776158,-0.7961876988,-0.7960910201,-0.7961876988,-0.7960910201,-0.7960910201,-0.796284318,-0.796284318,-0.7958977222,-0.7956077456,-0.7958010435,-0.7958977222,-0.7958977222,-0.7958977222,-0.795994401,-0.7968642116,-0.7979274392,-0.7977340817,-0.797057569,-0.7967675924,-0.796284318,-0.7957044244,-0.7956077456,-0.7957044244,-0.7956077456,-0.7956077456,-0.7956077456,-0.7957044244,-0.7957044244,-0.7960910201,-0.796284318,-0.7958977222,-0.7966709137,-0.7982173562,-0.7972508669,-0.7956077456,-0.7957044244,-0.795994401,-0.7956077456,-0.7954144478,-0.7957044244,-0.7961876988,-0.796284318,-0.795994401,-0.7957044244,-0.7954144478,-0.7953178287,-0.7958010435,-0.7963809967,-0.7963809967,-0.795994401,-0.7956077456,-0.7954144478,-0.7954144478,-0.7952211499,-0.7951245308,-0.7952211499,-0.7954144478,-0.7956077456,-0.7958977222,-0.7957044244,-0.7954144478,-0.7955111265,-0.7956077456,-0.7958010435,-0.7958010435,-0.7955111265,-0.7954144478,-0.7953178287,-0.7955111265,-0.7958010435,-0.795994401,-0.7965742946,-0.797347486,-0.7974441648,-0.7968642116,-0.7964776158,-0.7963809967,-0.7968642116,-0.7980240583,-0.7984106541,-0.7974441648,-0.7965742946,-0.7966709137,-0.7966709137,-0.7960910201,-0.7958977222,-0.7965742946,-0.7969608903,-0.7966709137,-0.7964776158,-0.7965742946,-0.7966709137,-0.7969608903,-0.7971541882,-0.7972508669,-0.7972508669,-0.7969608903,-0.7968642116,-0.7987006307,-0.8010203838,-0.8017935753,-0.801890254,-0.8005371094,-0.7984106541,-0.7981207371,-0.7974441648,-0.795994401,-0.7969608903,-0.7974441648,-0.7935779691,-0.7881653905,-0.7860390544,-0.7884553671,-0.7941579819,-0.7995705009,-0.8020835519,-0.8025668263,-0.8026634455,-0.8024701476,-0.8024701476,-0.8025668263,-0.8025668263,-0.8025668263,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8025668263,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8023735285,-0.8026634455,-0.8025668263,-0.8022768497,-0.8026634455,-0.8027601242,-0.8027601242,-0.8024701476,-0.8019868731,-0.8014069796,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8014069796,-0.8025668263,-0.8024701476,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8024701476,-0.8024701476,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8025668263,-0.8024701476,-0.8025668263,-0.8026634455,-0.8025668263,-0.8025668263,-0.8002471328,-0.7961876988,-0.7924181223,-0.7879720926,-0.7881653905,-0.7946412563,-0.7981207371,-0.7957044244,-0.7938680053,-0.7957044244,-0.7980240583,-0.7981207371,-0.7982173562,-0.8006337881,-0.8019868731,-0.7995705009,-0.7971541882,-0.797347486,-0.7975407839,-0.797057569,-0.7969608903,-0.7969608903,-0.7971541882,-0.7972508669,-0.7972508669,-0.7975407839,-0.7974441648,-0.7969608903,-0.7969608903,-0.7969608903,-0.7965742946,-0.796284318,-0.7964776158,-0.7966709137,-0.7966709137,-0.7968642116,-0.797057569,-0.797057569,-0.7972508669,-0.797347486,-0.797347486,-0.7975407839,-0.7977340817,-0.7977340817,-0.7978307605,-0.7977340817,-0.7976374626,-0.7975407839,-0.7972508669,-0.7967675924,-0.7964776158,-0.7964776158,-0.7963809967,-0.7963809967,-0.7963809967,-0.7960910201,-0.7960910201,-0.7963809967,-0.796284318,-0.7958010435,-0.7956077456,-0.7956077456,-0.7956077456,-0.7957044244,-0.7958010435,-0.7958977222,-0.796284318,-0.7963809967,-0.7963809967,-0.7963809967,-0.796284318,-0.7958010435,-0.7956077456,-0.7957044244,-0.7955111265,-0.7955111265,-0.7956077456,-0.7956077456,-0.7958010435,-0.7958977222,-0.7957044244,-0.7958977222,-0.7958010435,-0.7963809967,-0.7978307605,-0.7974441648,-0.7958010435,-0.7956077456,-0.7958977222,-0.7957044244,-0.7955111265,-0.7956077456,-0.7958977222,-0.7963809967,-0.7966709137,-0.7964776158,-0.7958977222,-0.7957044244,-0.7958977222,-0.7958977222,-0.7957044244,-0.7954144478,-0.7953178287,-0.7953178287,-0.7953178287,-0.7954144478,-0.7953178287,-0.7952211499,-0.7953178287,-0.7955111265,-0.7958010435,-0.7960910201,-0.795994401,-0.7957044244,-0.7955111265,-0.7955111265,-0.7955111265,-0.7954144478,-0.7953178287,-0.7952211499,-0.7952211499,-0.7956077456,-0.795994401,-0.796284318,-0.7965742946,-0.7968642116,-0.7969608903,-0.7967675924,-0.796284318,-0.7963809967,-0.7968642116,-0.797057569,-0.7968642116,-0.7966709137,-0.7963809967,-0.796284318,-0.796284318,-0.7963809967,-0.796284318,-0.7960910201,-0.7961876988,-0.7964776158,-0.7965742946,-0.7965742946,-0.7966709137,-0.7969608903,-0.7971541882,-0.7972508669,-0.7972508669,-0.797057569,-0.7979274392,-0.8002471328,-0.801890254,-0.8023735285,-0.801117003,-0.7990872264,-0.7983140349,-0.7976374626,-0.7958977222,-0.7967675924,-0.7991839051,-0.7967675924,-0.7902917862,-0.7871989012,-0.789131999,-0.7935779691,-0.7989906073,-0.8020835519,-0.8023735285,-0.8025668263,-0.8024701476,-0.8025668263,-0.8025668263,-0.8025668263,-0.8024701476,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8024701476,-0.8025668263,-0.8026634455,-0.8024701476,-0.8025668263,-0.8027601242,-0.8024701476,-0.8023735285,-0.8023735285,-0.8023735285,-0.8024701476,-0.8024701476,-0.8023735285,-0.8019868731,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8017935753,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8025668263,-0.8024701476,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8002471328,-0.795994401,-0.7905817628,-0.7860390544,-0.7878754735,-0.7942546606,-0.7972508669,-0.7967675924,-0.7958010435,-0.7958977222,-0.7976374626,-0.7983140349,-0.7990872264,-0.8017935753,-0.8016969562,-0.7984106541,-0.7969608903,-0.797347486,-0.7972508669,-0.7969608903,-0.7969608903,-0.797057569,-0.7971541882,-0.797347486,-0.797347486,-0.797347486,-0.7974441648,-0.797347486,-0.7969608903,-0.7967675924,-0.7966709137,-0.7965742946,-0.7964776158,-0.7963809967,-0.7966709137,-0.797057569,-0.797057569,-0.797057569,-0.7972508669,-0.797347486,-0.797347486,-0.7975407839,-0.7979274392,-0.7981207371,-0.7981207371,-0.7981207371,-0.7978307605,-0.7976374626,-0.7974441648,-0.7969608903,-0.7965742946,-0.7964776158,-0.7963809967,-0.7963809967,-0.7963809967,-0.7963809967,-0.7963809967,-0.7961876988,-0.7958977222,-0.7958977222,-0.7957044244,-0.7956077456,-0.7958010435,-0.7958977222,-0.7958010435,-0.7958010435,-0.795994401,-0.7961876988,-0.7960910201,-0.795994401,-0.7958977222,-0.7957044244,-0.7955111265,-0.7955111265,-0.7955111265,-0.7955111265,-0.7955111265,-0.7956077456,-0.7957044244,-0.7955111265,-0.7956077456,-0.7958977222,-0.7956077456,-0.796284318,-0.7977340817,-0.7974441648,-0.795994401,-0.7957044244,-0.7958977222,-0.7958010435,-0.7954144478,-0.7953178287,-0.7957044244,-0.7961876988,-0.796284318,-0.7961876988,-0.7957044244,-0.7954144478,-0.7954144478,-0.7953178287,-0.7952211499,-0.7952211499,-0.7953178287,-0.7954144478,-0.7953178287,-0.7953178287,-0.7954144478,-0.7953178287,-0.7952211499,-0.7951245308,-0.7952211499,-0.7958010435,-0.7960910201,-0.795994401,-0.7958010435,-0.7955111265,-0.7953178287,-0.7955111265,-0.7956077456,-0.7953178287,-0.7951245308,-0.7952211499,-0.7957044244,-0.7960910201,-0.7965742946,-0.7967675924,-0.7968642116,-0.797057569,-0.7971541882,-0.7971541882,-0.797057569,-0.7968642116,-0.7967675924,-0.7966709137,-0.7964776158,-0.796284318,-0.7963809967,-0.796284318,-0.7961876988,-0.7960910201,-0.7960910201,-0.796284318,-0.7963809967,-0.7963809967,-0.7965742946,-0.7967675924,-0.797057569,-0.7972508669,-0.7974441648,-0.797347486,-0.7976374626,-0.799377203,-0.8014069796,-0.8024701476,-0.801890254,-0.7998605371,-0.7984106541,-0.7979274392,-0.7964776158,-0.7963809967,-0.799377203,-0.7984106541,-0.7918382287,-0.7872955203,-0.7882620692,-0.7926114798,-0.7982173562,-0.801890254,-0.8023735285,-0.8024701476,-0.8025668263,-0.8025668263,-0.8024701476,-0.8024701476,-0.8025668263,-0.8025668263,-0.8024701476,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8022768497,-0.8020835519,-0.8024701476,-0.8024701476,-0.8019868731,-0.8020835519,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8016969562,-0.8019868731,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8002471328,-0.7956077456,-0.789421916,-0.7853624225,-0.7879720926,-0.7941579819,-0.7971541882,-0.7966709137,-0.7956077456,-0.795994401,-0.7975407839,-0.7986039519,-0.8003438115,-0.8021802306,-0.8003438115,-0.7974441648,-0.7971541882,-0.7974441648,-0.797057569,-0.7967675924,-0.7968642116,-0.797057569,-0.797057569,-0.7971541882,-0.7972508669,-0.797057569,-0.797057569,-0.797057569,-0.7969608903,-0.7967675924,-0.7965742946,-0.7966709137,-0.7966709137,-0.7965742946,-0.7967675924,-0.7969608903,-0.797057569,-0.797347486,-0.7974441648,-0.7974441648,-0.7976374626,-0.7979274392,-0.7979274392,-0.7980240583,-0.7982173562,-0.7980240583,-0.7979274392,-0.7976374626,-0.7972508669,-0.797057569,-0.7968642116,-0.7965742946,-0.796284318,-0.7963809967,-0.7964776158,-0.7961876988,-0.7961876988,-0.796284318,-0.7960910201,-0.7957044244,-0.7956077456,-0.7958010435,-0.7957044244,-0.7958010435,-0.795994401,-0.795994401,-0.7958977222,-0.795994401,-0.7960910201,-0.7960910201,-0.7958977222,-0.7958010435,-0.7956077456,-0.7955111265,-0.7953178287,-0.7953178287,-0.7955111265,-0.7956077456,-0.7955111265,-0.7955111265,-0.7955111265,-0.7955111265,-0.7952211499,-0.7960910201,-0.7978307605,-0.7975407839,-0.7960910201,-0.7958010435,-0.7958977222,-0.7956077456,-0.7955111265,-0.7953178287,-0.7951245308,-0.7953178287,-0.7955111265,-0.7956077456,-0.7955111265,-0.7953178287,-0.7953178287,-0.7953178287,-0.7952211499,-0.7952211499,-0.7955111265,-0.7956077456,-0.7956077456,-0.7954144478,-0.7953178287,-0.7954144478,-0.7954144478,-0.7951245308,-0.7949311733,-0.7951245308,-0.7957044244,-0.7961876988,-0.7961876988,-0.7957044244,-0.7953178287,-0.7953178287,-0.7954144478,-0.7953178287,-0.7953178287,-0.7953178287,-0.7956077456,-0.7960910201,-0.7965742946,-0.7966709137,-0.7967675924,-0.797057569,-0.797057569,-0.797057569,-0.797347486,-0.7972508669,-0.7966709137,-0.796284318,-0.7960910201,-0.795994401,-0.7960910201,-0.7963809967,-0.7961876988,-0.7958977222,-0.795994401,-0.7961876988,-0.7961876988,-0.7964776158,-0.7967675924,-0.7969608903,-0.797057569,-0.797057569,-0.7972508669,-0.7975407839,-0.7975407839,-0.7986039519,-0.8007304072,-0.8019868731,-0.8019868731,-0.8009237051,-0.7989906073,-0.7981207371,-0.7969608903,-0.7963809967,-0.799377203,-0.7994738221,-0.7928047776,-0.7860390544,-0.7851691246,-0.7904850841,-0.7982173562,-0.8020835519,-0.8022768497,-0.8024701476,-0.8026634455,-0.8025668263,-0.8024701476,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8025668263,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8023735285,-0.8014069796,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.801117003,-0.8007304072,-0.8026634455,-0.8023735285,-0.8025668263,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8025668263,-0.8025668263,-0.8026634455,-0.8024701476,-0.8025668263,-0.8024701476,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8000538349,-0.7954144478,-0.7900018692,-0.7865223289,-0.7885520458,-0.7936747074,-0.7958977222,-0.7947378755,-0.7944479585,-0.7966709137,-0.7982173562,-0.7991839051,-0.8014069796,-0.8017935753,-0.7990872264,-0.7972508669,-0.7971541882,-0.7971541882,-0.7968642116,-0.7967675924,-0.797057569,-0.7971541882,-0.797057569,-0.797057569,-0.7969608903,-0.797057569,-0.797057569,-0.7967675924,-0.7967675924,-0.7967675924,-0.7966709137,-0.7965742946,-0.7965742946,-0.7963809967,-0.7966709137,-0.797057569,-0.7972508669,-0.7972508669,-0.797347486,-0.7975407839,-0.7978307605,-0.7979274392,-0.7980240583,-0.7981207371,-0.7983140349,-0.7982173562,-0.7979274392,-0.7977340817,-0.7974441648,-0.7972508669,-0.797057569,-0.7967675924,-0.7964776158,-0.7965742946,-0.7965742946,-0.796284318,-0.795994401,-0.795994401,-0.7958010435,-0.7958010435,-0.7958977222,-0.7957044244,-0.7956077456,-0.7958010435,-0.7958977222,-0.7958010435,-0.7958977222,-0.795994401,-0.795994401,-0.7960910201,-0.7960910201,-0.7958977222,-0.7956077456,-0.7954144478,-0.7953178287,-0.7956077456,-0.7958010435,-0.7957044244,-0.7955111265,-0.7955111265,-0.7955111265,-0.7956077456,-0.7954144478,-0.7960910201,-0.7976374626,-0.797347486,-0.7957044244,-0.7953178287,-0.7955111265,-0.7955111265,-0.7956077456,-0.7955111265,-0.7952211499,-0.7952211499,-0.7951245308,-0.7951245308,-0.7953178287,-0.7953178287,-0.7954144478,-0.7956077456,-0.7956077456,-0.7955111265,-0.7954144478,-0.7954144478,-0.7954144478,-0.7952211499,-0.7951245308,-0.7953178287,-0.7954144478,-0.7951245308,-0.7950278521,-0.7952211499,-0.7954144478,-0.7957044244,-0.795994401,-0.7958977222,-0.7953178287,-0.7952211499,-0.7953178287,-0.7952211499,-0.7953178287,-0.7955111265,-0.7958010435,-0.796284318,-0.7964776158,-0.7964776158,-0.7968642116,-0.7971541882,-0.797057569,-0.797057569,-0.797057569,-0.7967675924,-0.7966709137,-0.7964776158,-0.796284318,-0.795994401,-0.795994401,-0.7960910201,-0.795994401,-0.7958010435,-0.795994401,-0.7963809967,-0.7966709137,-0.7968642116,-0.797057569,-0.797057569,-0.7971541882,-0.797347486,-0.797347486,-0.7974441648,-0.797347486,-0.7980240583,-0.8001505136,-0.8017935753,-0.8021802306,-0.8016969562,-0.7998605371,-0.7985073328,-0.797347486,-0.7966709137,-0.7997637987,-0.8005371094,-0.7927080989,-0.7840093374,-0.7838160396,-0.7908717394,-0.7984106541,-0.8016002774,-0.8021802306,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8024701476,-0.8027601242,-0.8024701476,-0.8022768497,-0.8022768497,-0.8014069796,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8016002774,-0.8016969562,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.7997637987,-0.7946412563,-0.7899051905,-0.7869089246,-0.7871022224,-0.7919349074,-0.7958010435,-0.7950278521,-0.7952211499,-0.7976374626,-0.7984106541,-0.8000538349,-0.8023735285,-0.8012136817,-0.7983140349,-0.797347486,-0.7972508669,-0.7968642116,-0.7966709137,-0.7967675924,-0.7969608903,-0.7969608903,-0.7968642116,-0.797057569,-0.7969608903,-0.7969608903,-0.7969608903,-0.7967675924,-0.7965742946,-0.7966709137,-0.7964776158,-0.796284318,-0.7964776158,-0.7965742946,-0.7967675924,-0.7971541882,-0.7972508669,-0.7971541882,-0.7974441648,-0.7978307605,-0.7979274392,-0.7980240583,-0.7983140349,-0.7984106541,-0.7982173562,-0.7982173562,-0.7982173562,-0.7977340817,-0.7974441648,-0.797347486,-0.797057569,-0.7968642116,-0.7967675924,-0.7966709137,-0.7964776158,-0.796284318,-0.795994401,-0.795994401,-0.7958977222,-0.7957044244,-0.7956077456,-0.7956077456,-0.7957044244,-0.7958977222,-0.7960910201,-0.7960910201,-0.795994401,-0.7961876988,-0.796284318,-0.7960910201,-0.7958977222,-0.7957044244,-0.7956077456,-0.7957044244,-0.7956077456,-0.7954144478,-0.7956077456,-0.7957044244,-0.7957044244,-0.7956077456,-0.7955111265,-0.7957044244,-0.7957044244,-0.7961876988,-0.7975407839,-0.7975407839,-0.7958977222,-0.7951245308,-0.7954144478,-0.7957044244,-0.7957044244,-0.7956077456,-0.7955111265,-0.7953178287,-0.7954144478,-0.7954144478,-0.7953178287,-0.7954144478,-0.7956077456,-0.7955111265,-0.7955111265,-0.7955111265,-0.7955111265,-0.7955111265,-0.7953178287,-0.7951245308,-0.7952211499,-0.7951245308,-0.7950278521,-0.7950278521,-0.7952211499,-0.7951245308,-0.7951245308,-0.7955111265,-0.7957044244,-0.7956077456,-0.7954144478,-0.7953178287,-0.7955111265,-0.7955111265,-0.7954144478,-0.7954144478,-0.7956077456,-0.7961876988,-0.7966709137,-0.7966709137,-0.7969608903,-0.7974441648,-0.797347486,-0.797057569,-0.797057569,-0.7967675924,-0.7963809967,-0.796284318,-0.796284318,-0.7961876988,-0.7960910201,-0.795994401,-0.7958977222,-0.7960910201,-0.7963809967,-0.7966709137,-0.7969608903,-0.797057569,-0.797057569,-0.797057569,-0.7971541882,-0.797347486,-0.797347486,-0.797347486,-0.797347486,-0.7977340817,-0.7994738221,-0.8014069796,-0.8020835519,-0.8021802306,-0.8009237051,-0.7990872264,-0.7978307605,-0.797347486,-0.7994738221,-0.7990872264,-0.7911616564,-0.786618948,-0.7915482521,-0.7958010435,-0.7979274392,-0.8010203838,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8024701476,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8024701476,-0.8014069796,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8023735285,-0.8024701476,-0.8024701476,-0.8025668263,-0.8028567433,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8023735285,-0.7997637987,-0.7936747074,-0.789131999,-0.7865223289,-0.7859423757,-0.7908717394,-0.7958977222,-0.7958010435,-0.796284318,-0.7980240583,-0.7987973094,-0.8012136817,-0.8025668263,-0.7999572158,-0.7976374626,-0.7974441648,-0.7972508669,-0.7968642116,-0.7967675924,-0.7969608903,-0.797057569,-0.7968642116,-0.7969608903,-0.797057569,-0.7969608903,-0.7969608903,-0.797057569,-0.7968642116,-0.7966709137,-0.7964776158,-0.7963809967,-0.7963809967,-0.7964776158,-0.7966709137,-0.7968642116,-0.797057569,-0.797057569,-0.7972508669,-0.7974441648,-0.7976374626,-0.7978307605,-0.7980240583,-0.7981207371,-0.7982173562,-0.7982173562,-0.7981207371,-0.7979274392,-0.7976374626,-0.7975407839,-0.7974441648,-0.797057569,-0.7968642116,-0.7967675924,-0.7965742946,-0.7963809967,-0.7961876988,-0.795994401,-0.7958977222,-0.7958010435,-0.7957044244,-0.7958010435,-0.7958977222,-0.795994401,-0.7958977222,-0.795994401,-0.7961876988,-0.796284318,-0.7960910201,-0.7960910201,-0.7963809967,-0.7960910201,-0.7956077456,-0.7955111265,-0.7955111265,-0.7955111265,-0.7955111265,-0.7956077456,-0.7956077456,-0.7955111265,-0.7955111265,-0.7955111265,-0.7957044244,-0.7957044244,-0.7960910201,-0.797347486,-0.797347486,-0.795994401,-0.7955111265,-0.7957044244,-0.7956077456,-0.7956077456,-0.7956077456,-0.7953178287,-0.7951245308,-0.7952211499,-0.7952211499,-0.7952211499,-0.7954144478,-0.7955111265,-0.7955111265,-0.7954144478,-0.7956077456,-0.7956077456,-0.7956077456,-0.7956077456,-0.7955111265,-0.7953178287,-0.7952211499,-0.7951245308,-0.7950278521,-0.7950278521,-0.7950278521,-0.7949311733,-0.7952211499,-0.7956077456,-0.7956077456,-0.7954144478,-0.7954144478,-0.7955111265,-0.7953178287,-0.7953178287,-0.7954144478,-0.7955111265,-0.795994401,-0.7965742946,-0.7966709137,-0.7971541882,-0.7977340817,-0.7974441648,-0.7971541882,-0.797057569,-0.7968642116,-0.7965742946,-0.7963809967,-0.7961876988,-0.7961876988,-0.7961876988,-0.7958977222,-0.7958010435,-0.7961876988,-0.7966709137,-0.7971541882,-0.7971541882,-0.7968642116,-0.7969608903,-0.797347486,-0.7975407839,-0.7976374626,-0.797347486,-0.797347486,-0.7975407839,-0.7976374626,-0.7987973094,-0.800827086,-0.8019868731,-0.8023735285,-0.8016969562,-0.7997637987,-0.7981207371,-0.7976374626,-0.7990872264,-0.7975407839,-0.7904850841,-0.7893252969,-0.7954144478,-0.7971541882,-0.7975407839,-0.8010203838,-0.8026634455,-0.8025668263,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8028567433,-0.8026634455,-0.8024701476,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8024701476,-0.8026634455,-0.8026634455,-0.8026634455,-0.8021802306,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8024701476,-0.8022768497,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8022768497,-0.7998605371,-0.7949311733,-0.7901951671,-0.7870056033,-0.7855557799,-0.789131999,-0.7947378755,-0.7968642116,-0.797347486,-0.7982173562,-0.7995705009,-0.8021802306,-0.8022768497,-0.7990872264,-0.7974441648,-0.7974441648,-0.7971541882,-0.7969608903,-0.7968642116,-0.7969608903,-0.7971541882,-0.7971541882,-0.7971541882,-0.7971541882,-0.7969608903,-0.7968642116,-0.7968642116,-0.7968642116,-0.7967675924,-0.7964776158,-0.796284318,-0.7963809967,-0.7965742946,-0.7965742946,-0.7967675924,-0.797057569,-0.797057569,-0.7972508669,-0.7976374626,-0.7976374626,-0.7978307605,-0.7982173562,-0.7984106541,-0.7984106541,-0.7982173562,-0.7981207371,-0.7981207371,-0.7979274392,-0.7977340817,-0.7975407839,-0.7972508669,-0.797057569,-0.7968642116,-0.7964776158,-0.7963809967,-0.7961876988,-0.795994401,-0.7958010435,-0.7956077456,-0.7957044244,-0.795994401,-0.7958977222,-0.7958010435,-0.795994401,-0.7963809967,-0.7964776158,-0.7961876988,-0.7960910201,-0.7960910201,-0.7960910201,-0.7958010435,-0.7957044244,-0.7956077456,-0.7955111265,-0.7956077456,-0.7958010435,-0.7957044244,-0.7955111265,-0.7955111265,-0.7956077456,-0.7955111265,-0.7957044244,-0.7957044244,-0.795994401,-0.7971541882,-0.7972508669,-0.7958977222,-0.7954144478,-0.7957044244,-0.7956077456,-0.7953178287,-0.7953178287,-0.7953178287,-0.7950278521,-0.7952211499,-0.7954144478,-0.7951245308,-0.7950278521,-0.7955111265,-0.7956077456,-0.7956077456,-0.7957044244,-0.7957044244,-0.7957044244,-0.7957044244,-0.7958977222,-0.795994401,-0.7956077456,-0.7952211499,-0.7953178287,-0.7952211499,-0.7951245308,-0.7950278521,-0.7950278521,-0.7952211499,-0.7952211499,-0.7952211499,-0.7954144478,-0.7955111265,-0.7953178287,-0.7953178287,-0.7955111265,-0.7956077456,-0.7960910201,-0.7963809967,-0.7964776158,-0.797347486,-0.7983140349,-0.7979274392,-0.797347486,-0.7971541882,-0.7967675924,-0.7965742946,-0.7967675924,-0.7965742946,-0.796284318,-0.795994401,-0.7958977222,-0.7961876988,-0.7965742946,-0.7968642116,-0.797057569,-0.7971541882,-0.7971541882,-0.7971541882,-0.7975407839,-0.7980240583,-0.7980240583,-0.7977340817,-0.7975407839,-0.7975407839,-0.7975407839,-0.7982173562,-0.8002471328,-0.8016969562,-0.8022768497,-0.8019868731,-0.8004404902,-0.7982173562,-0.7977340817,-0.7992805243,-0.7971541882,-0.7899051905,-0.7874888182,-0.7911616564,-0.7938680053,-0.7967675924,-0.8005371094,-0.8021802306,-0.8024701476,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8022768497,-0.8026634455,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8025668263,-0.8024701476,-0.8027601242,-0.8021802306,-0.7998605371,-0.7950278521,-0.7899051905,-0.7867156267,-0.7853624225,-0.7881653905,-0.7940613031,-0.7976374626,-0.7979274392,-0.7980240583,-0.8000538349,-0.8024701476,-0.8016002774,-0.7985073328,-0.7971541882,-0.7972508669,-0.7971541882,-0.7969608903,-0.7969608903,-0.797057569,-0.7972508669,-0.7971541882,-0.7971541882,-0.7971541882,-0.797057569,-0.7969608903,-0.7967675924,-0.7966709137,-0.7965742946,-0.7963809967,-0.7960910201,-0.7960910201,-0.7963809967,-0.7965742946,-0.7968642116,-0.797057569,-0.7971541882,-0.797347486,-0.7974441648,-0.7974441648,-0.7976374626,-0.7978307605,-0.7980240583,-0.7983140349,-0.7982173562,-0.7980240583,-0.7978307605,-0.7978307605,-0.7977340817,-0.7975407839,-0.7972508669,-0.7969608903,-0.7966709137,-0.7964776158,-0.7961876988,-0.7958977222,-0.7958010435,-0.7958010435,-0.7957044244,-0.7957044244,-0.7957044244,-0.7957044244,-0.795994401,-0.7963809967,-0.7967675924,-0.7967675924,-0.796284318,-0.7960910201,-0.7961876988,-0.7961876988,-0.7958977222,-0.7955111265,-0.7957044244,-0.7958010435,-0.7955111265,-0.7955111265,-0.7957044244,-0.7956077456,-0.7955111265,-0.7955111265,-0.7955111265,-0.7957044244,-0.7956077456,-0.7958977222,-0.797057569,-0.7971541882,-0.7958010435,-0.7954144478,-0.7957044244,-0.7954144478,-0.7953178287,-0.7954144478,-0.7952211499,-0.7951245308,-0.7952211499,-0.7954144478,-0.7953178287,-0.7951245308,-0.7953178287,-0.7956077456,-0.7955111265,-0.7954144478,-0.7956077456,-0.7956077456,-0.7956077456,-0.7957044244,-0.7957044244,-0.7956077456,-0.7954144478,-0.7951245308,-0.7950278521,-0.7951245308,-0.7950278521,-0.7949311733,-0.7950278521,-0.7952211499,-0.7951245308,-0.7950278521,-0.7954144478,-0.7956077456,-0.7955111265,-0.7955111265,-0.7956077456,-0.7958977222,-0.7963809967,-0.7965742946,-0.797347486,-0.7984106541,-0.7981207371,-0.7974441648,-0.7974441648,-0.7972508669,-0.797057569,-0.797057569,-0.7965742946,-0.7960910201,-0.795994401,-0.7960910201,-0.7964776158,-0.7966709137,-0.7967675924,-0.797347486,-0.7979274392,-0.7981207371,-0.7984106541,-0.7985073328,-0.7980240583,-0.7976374626,-0.7976374626,-0.7974441648,-0.7976374626,-0.7976374626,-0.7980240583,-0.7996671796,-0.8013103604,-0.801890254,-0.8020835519,-0.8010203838,-0.7986039519,-0.7980240583,-0.799377203,-0.7964776158,-0.7892286181,-0.7860390544,-0.7883586884,-0.7920315266,-0.796284318,-0.7999572158,-0.8016002774,-0.8024701476,-0.8026634455,-0.8024701476,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8017935753,-0.8019868731,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8028567433,-0.8022768497,-0.7996671796,-0.7945445776,-0.7898085713,-0.7867156267,-0.7859423757,-0.7898085713,-0.7955111265,-0.7981207371,-0.7979274392,-0.7983140349,-0.8006337881,-0.8026634455,-0.801117003,-0.7983140349,-0.797347486,-0.7972508669,-0.7967675924,-0.7965742946,-0.7967675924,-0.7969608903,-0.797057569,-0.7972508669,-0.797347486,-0.7971541882,-0.797057569,-0.7971541882,-0.7971541882,-0.7967675924,-0.796284318,-0.7961876988,-0.7961876988,-0.7961876988,-0.7961876988,-0.7964776158,-0.7969608903,-0.7971541882,-0.7971541882,-0.7971541882,-0.7971541882,-0.7974441648,-0.7976374626,-0.7977340817,-0.7979274392,-0.7980240583,-0.7979274392,-0.7978307605,-0.7977340817,-0.7978307605,-0.7976374626,-0.797057569,-0.7969608903,-0.7969608903,-0.7965742946,-0.7963809967,-0.7963809967,-0.7960910201,-0.7958977222,-0.7958977222,-0.7958977222,-0.7957044244,-0.7957044244,-0.7960910201,-0.7964776158,-0.7963809967,-0.7965742946,-0.7966709137,-0.7963809967,-0.7961876988,-0.7961876988,-0.7958977222,-0.7955111265,-0.7955111265,-0.7956077456,-0.7956077456,-0.7954144478,-0.7954144478,-0.7957044244,-0.7957044244,-0.7954144478,-0.7955111265,-0.7954144478,-0.7954144478,-0.7955111265,-0.7957044244,-0.7964776158,-0.7966709137,-0.7958010435,-0.7956077456,-0.7958010435,-0.7954144478,-0.7953178287,-0.7953178287,-0.7953178287,-0.7953178287,-0.7953178287,-0.7952211499,-0.7952211499,-0.7950278521,-0.7950278521,-0.7952211499,-0.7952211499,-0.7953178287,-0.7955111265,-0.7957044244,-0.7958010435,-0.7956077456,-0.7954144478,-0.7957044244,-0.7957044244,-0.7954144478,-0.7951245308,-0.7952211499,-0.7952211499,-0.7950278521,-0.7951245308,-0.7952211499,-0.7952211499,-0.7952211499,-0.7951245308,-0.7952211499,-0.7954144478,-0.7956077456,-0.7958010435,-0.795994401,-0.796284318,-0.7964776158,-0.7969608903,-0.7977340817,-0.7972508669,-0.7965742946,-0.7967675924,-0.7974441648,-0.7972508669,-0.7966709137,-0.7961876988,-0.795994401,-0.7960910201,-0.7961876988,-0.7964776158,-0.7967675924,-0.7969608903,-0.7975407839,-0.7980240583,-0.7979274392,-0.7978307605,-0.7978307605,-0.7976374626,-0.7976374626,-0.7975407839,-0.797347486,-0.7975407839,-0.7978307605,-0.7979274392,-0.7991839051,-0.801117003,-0.8017935753,-0.8019868731,-0.801890254,-0.799377203,-0.7977340817,-0.7990872264,-0.7958977222,-0.7883586884,-0.7858456969,-0.7883586884,-0.7917416096,-0.7960910201,-0.7995705009,-0.8013103604,-0.8023735285,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8024701476,-0.8025668263,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8024701476,-0.8025668263,-0.8025668263,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8025668263,-0.8025668263,-0.8025668263,-0.8016969562,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8025668263,-0.8025668263,-0.8024701476,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.7999572158,-0.7953178287,-0.7908717394,-0.7868123055,-0.787392199,-0.793964684,-0.7984106541,-0.7983140349,-0.7981207371,-0.7990872264,-0.8013103604,-0.8024701476,-0.8003438115,-0.7976374626,-0.7972508669,-0.7972508669,-0.7966709137,-0.7964776158,-0.7967675924,-0.7968642116,-0.7969608903,-0.7971541882,-0.7971541882,-0.797057569,-0.797057569,-0.797057569,-0.7968642116,-0.7967675924,-0.7965742946,-0.7964776158,-0.7963809967,-0.7961876988,-0.7961876988,-0.7965742946,-0.7968642116,-0.7969608903,-0.797057569,-0.7971541882,-0.7972508669,-0.797347486,-0.7977340817,-0.7980240583,-0.7981207371,-0.7980240583,-0.7979274392,-0.7978307605,-0.7978307605,-0.7977340817,-0.7976374626,-0.7972508669,-0.7969608903,-0.7969608903,-0.7969608903,-0.7965742946,-0.796284318,-0.7961876988,-0.7958977222,-0.7957044244,-0.7961876988,-0.796284318,-0.7960910201,-0.796284318,-0.7963809967,-0.796284318,-0.7964776158,-0.7964776158,-0.796284318,-0.795994401,-0.7958977222,-0.7956077456,-0.7955111265,-0.7956077456,-0.7956077456,-0.7957044244,-0.7957044244,-0.7955111265,-0.7954144478,-0.7955111265,-0.7955111265,-0.7954144478,-0.7953178287,-0.7954144478,-0.7955111265,-0.7957044244,-0.7963809967,-0.7964776158,-0.7958010435,-0.7957044244,-0.7957044244,-0.7954144478,-0.7954144478,-0.7955111265,-0.7954144478,-0.7953178287,-0.7954144478,-0.7955111265,-0.7953178287,-0.7952211499,-0.7951245308,-0.7950278521,-0.7951245308,-0.7951245308,-0.7951245308,-0.7958977222,-0.7963809967,-0.7958977222,-0.7956077456,-0.7958977222,-0.7960910201,-0.795994401,-0.7957044244,-0.7955111265,-0.7954144478,-0.7953178287,-0.7952211499,-0.7951245308,-0.7951245308,-0.7951245308,-0.7951245308,-0.7952211499,-0.7955111265,-0.7955111265,-0.7955111265,-0.795994401,-0.796284318,-0.796284318,-0.7966709137,-0.7972508669,-0.7966709137,-0.7958977222,-0.796284318,-0.7968642116,-0.7964776158,-0.795994401,-0.795994401,-0.7961876988,-0.796284318,-0.7964776158,-0.7967675924,-0.7969608903,-0.797057569,-0.797347486,-0.7977340817,-0.7975407839,-0.797057569,-0.797057569,-0.7972508669,-0.7974441648,-0.7974441648,-0.7974441648,-0.7976374626,-0.7978307605,-0.7979274392,-0.7990872264,-0.8010203838,-0.801890254,-0.801890254,-0.8020835519,-0.7999572158,-0.7976374626,-0.7986039519,-0.795994401,-0.7881653905,-0.7856523991,-0.7883586884,-0.7905817628,-0.7942546606,-0.7986039519,-0.8010203838,-0.8021802306,-0.8026634455,-0.8026634455,-0.8026634455,-0.8024701476,-0.8025668263,-0.8025668263,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8028567433,-0.8025668263,-0.8025668263,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8023735285,-0.8023735285,-0.8026634455,-0.8026634455,-0.8022768497,-0.8020835519,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.801890254,-0.8016969562,-0.8027601242,-0.8025668263,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8025668263,-0.8025668263,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8002471328,-0.7955111265,-0.789131999,-0.7855557799,-0.7904850841,-0.7980240583,-0.7994738221,-0.7982173562,-0.7983140349,-0.7994738221,-0.801890254,-0.8025668263,-0.7999572158,-0.7975407839,-0.7971541882,-0.7971541882,-0.7968642116,-0.7967675924,-0.7965742946,-0.7966709137,-0.7968642116,-0.797057569,-0.7971541882,-0.797057569,-0.797057569,-0.7971541882,-0.7969608903,-0.7967675924,-0.7967675924,-0.7965742946,-0.796284318,-0.7961876988,-0.796284318,-0.7964776158,-0.7966709137,-0.7968642116,-0.7969608903,-0.7971541882,-0.797347486,-0.7974441648,-0.7975407839,-0.7977340817,-0.7979274392,-0.7978307605,-0.7978307605,-0.7979274392,-0.7978307605,-0.7976374626,-0.7974441648,-0.7974441648,-0.7971541882,-0.7967675924,-0.7966709137,-0.7964776158,-0.796284318,-0.796284318,-0.7960910201,-0.7958977222,-0.796284318,-0.7964776158,-0.796284318,-0.7961876988,-0.7961876988,-0.796284318,-0.7964776158,-0.796284318,-0.795994401,-0.7958977222,-0.795994401,-0.7958977222,-0.7958010435,-0.7956077456,-0.7956077456,-0.7957044244,-0.7956077456,-0.7955111265,-0.7955111265,-0.7956077456,-0.7956077456,-0.7955111265,-0.7956077456,-0.7957044244,-0.7957044244,-0.7957044244,-0.7961876988,-0.7961876988,-0.7956077456,-0.7954144478,-0.7954144478,-0.7953178287,-0.7954144478,-0.7954144478,-0.7955111265,-0.7955111265,-0.7953178287,-0.7953178287,-0.7954144478,-0.7953178287,-0.7953178287,-0.7952211499,-0.7953178287,-0.7954144478,-0.7952211499,-0.7953178287,-0.7958010435,-0.795994401,-0.7960910201,-0.7960910201,-0.795994401,-0.7958977222,-0.7958010435,-0.7956077456,-0.7954144478,-0.7953178287,-0.7953178287,-0.7951245308,-0.7949311733,-0.7950278521,-0.7951245308,-0.7953178287,-0.7954144478,-0.7953178287,-0.7955111265,-0.795994401,-0.796284318,-0.7963809967,-0.7965742946,-0.7965742946,-0.7965742946,-0.7964776158,-0.7964776158,-0.7964776158,-0.796284318,-0.7960910201,-0.7961876988,-0.796284318,-0.7963809967,-0.7967675924,-0.7969608903,-0.7969608903,-0.7971541882,-0.7972508669,-0.7972508669,-0.7974441648,-0.7975407839,-0.7974441648,-0.797347486,-0.797347486,-0.7972508669,-0.7971541882,-0.797347486,-0.7978307605,-0.7981207371,-0.7989906073,-0.8006337881,-0.8016002774,-0.8016969562,-0.8017935753,-0.8006337881,-0.7983140349,-0.7980240583,-0.7980240583,-0.7937713861,-0.7883586884,-0.7869089246,-0.7883586884,-0.791451633,-0.7963809967,-0.8003438115,-0.801890254,-0.8024701476,-0.8028567433,-0.8027601242,-0.8025668263,-0.8025668263,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8024701476,-0.8025668263,-0.8025668263,-0.8025668263,-0.8026634455,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8015036583,-0.8015036583,-0.8026634455,-0.8025668263,-0.8028567433,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8005371094,-0.7956077456,-0.7882620692,-0.7858456969,-0.7926114798,-0.7991839051,-0.7992805243,-0.7978307605,-0.7983140349,-0.8000538349,-0.8022768497,-0.8024701476,-0.7997637987,-0.797347486,-0.7971541882,-0.7972508669,-0.7967675924,-0.7964776158,-0.7964776158,-0.7966709137,-0.7967675924,-0.7968642116,-0.7969608903,-0.797057569,-0.7971541882,-0.7971541882,-0.797057569,-0.7969608903,-0.7967675924,-0.7964776158,-0.7964776158,-0.7964776158,-0.796284318,-0.7963809967,-0.7966709137,-0.7968642116,-0.797057569,-0.797057569,-0.7971541882,-0.797347486,-0.7974441648,-0.7975407839,-0.7979274392,-0.7982173562,-0.7979274392,-0.7977340817,-0.7977340817,-0.7976374626,-0.7974441648,-0.797347486,-0.797057569,-0.7966709137,-0.7965742946,-0.7964776158,-0.796284318,-0.7961876988,-0.795994401,-0.795994401,-0.7961876988,-0.796284318,-0.7960910201,-0.7960910201,-0.7960910201,-0.7961876988,-0.796284318,-0.7961876988,-0.795994401,-0.795994401,-0.795994401,-0.795994401,-0.7958977222,-0.7958010435,-0.7957044244,-0.7957044244,-0.7957044244,-0.7955111265,-0.7954144478,-0.7955111265,-0.7955111265,-0.7955111265,-0.7955111265,-0.7956077456,-0.7956077456,-0.7955111265,-0.7958010435,-0.7960910201,-0.7958010435,-0.7955111265,-0.7956077456,-0.7954144478,-0.7950278521,-0.7949311733,-0.7952211499,-0.7954144478,-0.7953178287,-0.7953178287,-0.7954144478,-0.7953178287,-0.7954144478,-0.7955111265,-0.7954144478,-0.7954144478,-0.7953178287,-0.7951245308,-0.7951245308,-0.7956077456,-0.7960910201,-0.7960910201,-0.7958010435,-0.7958010435,-0.7957044244,-0.7953178287,-0.7954144478,-0.7957044244,-0.7957044244,-0.7954144478,-0.7950278521,-0.7949311733,-0.7951245308,-0.7952211499,-0.7952211499,-0.7952211499,-0.7955111265,-0.795994401,-0.7963809967,-0.7963809967,-0.7963809967,-0.7963809967,-0.7964776158,-0.7963809967,-0.7961876988,-0.7960910201,-0.7960910201,-0.7961876988,-0.796284318,-0.796284318,-0.7963809967,-0.7968642116,-0.797057569,-0.7969608903,-0.7969608903,-0.7971541882,-0.797057569,-0.7971541882,-0.797347486,-0.7971541882,-0.797057569,-0.7972508669,-0.7972508669,-0.7972508669,-0.797347486,-0.7975407839,-0.7979274392,-0.7987006307,-0.8001505136,-0.8014069796,-0.8016002774,-0.8016969562,-0.8009237051,-0.7989906073,-0.7976374626,-0.7992805243,-0.7997637987,-0.7934813499,-0.7871022224,-0.7876821756,-0.7913549542,-0.7954144478,-0.7996671796,-0.8017935753,-0.8023735285,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8024701476,-0.8025668263,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8028567433,-0.8024701476,-0.8025668263,-0.8021802306,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8019868731,-0.8017935753,-0.8025668263,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8009237051,-0.7953178287,-0.7883586884,-0.7878754735,-0.793964684,-0.7986039519,-0.7987006307,-0.7978307605,-0.7984106541,-0.8004404902,-0.8024701476,-0.8020835519,-0.7992805243,-0.7972508669,-0.7972508669,-0.797347486,-0.797057569,-0.7967675924,-0.7966709137,-0.7966709137,-0.7965742946,-0.7965742946,-0.7967675924,-0.7968642116,-0.7969608903,-0.7968642116,-0.7969608903,-0.797057569,-0.7969608903,-0.7967675924,-0.7966709137,-0.7964776158,-0.796284318,-0.796284318,-0.7964776158,-0.7967675924,-0.7968642116,-0.7969608903,-0.7971541882,-0.7974441648,-0.7976374626,-0.7977340817,-0.7977340817,-0.7978307605,-0.7979274392,-0.7978307605,-0.7976374626,-0.7976374626,-0.7974441648,-0.797057569,-0.7968642116,-0.7968642116,-0.7967675924,-0.7963809967,-0.7960910201,-0.7960910201,-0.7958977222,-0.7958010435,-0.795994401,-0.795994401,-0.795994401,-0.7961876988,-0.7960910201,-0.7961876988,-0.796284318,-0.796284318,-0.7961876988,-0.7961876988,-0.7960910201,-0.7960910201,-0.7958010435,-0.7956077456,-0.7956077456,-0.7957044244,-0.7956077456,-0.7955111265,-0.7955111265,-0.7954144478,-0.7954144478,-0.7954144478,-0.7955111265,-0.7957044244,-0.7956077456,-0.7955111265,-0.7958010435,-0.7960910201,-0.7958010435,-0.7955111265,-0.7955111265,-0.7955111265,-0.7953178287,-0.7952211499,-0.7952211499,-0.7952211499,-0.7953178287,-0.7953178287,-0.7955111265,-0.7956077456,-0.7955111265,-0.7954144478,-0.7955111265,-0.7954144478,-0.7952211499,-0.7952211499,-0.7952211499,-0.7955111265,-0.7958977222,-0.795994401,-0.7958977222,-0.7957044244,-0.7955111265,-0.7953178287,-0.7953178287,-0.7956077456,-0.7958010435,-0.7955111265,-0.7952211499,-0.7951245308,-0.7952211499,-0.7953178287,-0.7953178287,-0.7954144478,-0.7955111265,-0.7958977222,-0.7961876988,-0.796284318,-0.796284318,-0.7963809967,-0.7963809967,-0.796284318,-0.7961876988,-0.7960910201,-0.7961876988,-0.7961876988,-0.7961876988,-0.7963809967,-0.7967675924,-0.7968642116,-0.7968642116,-0.7968642116,-0.7968642116,-0.797057569,-0.7971541882,-0.7971541882,-0.7971541882,-0.7971541882,-0.7971541882,-0.7972508669,-0.7972508669,-0.7975407839,-0.7976374626,-0.7975407839,-0.7979274392,-0.7988939285,-0.8004404902,-0.8015036583,-0.8015036583,-0.8016969562,-0.8015036583,-0.7994738221,-0.7980240583,-0.7990872264,-0.7982173562,-0.7923215032,-0.7871989012,-0.787392199,-0.7901951671,-0.7940613031,-0.7984106541,-0.8012136817,-0.8023735285,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8023735285,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8024701476,-0.8023735285,-0.8027601242,-0.8020835519,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8016969562,-0.8015036583,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8028567433,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8009237051,-0.7951245308,-0.7889387012,-0.7887453437,-0.7932879925,-0.7972508669,-0.7984106541,-0.7979274392,-0.7987006307,-0.8009237051,-0.8022768497,-0.801890254,-0.7996671796,-0.7974441648,-0.797057569,-0.7972508669,-0.797057569,-0.797057569,-0.797057569,-0.7967675924,-0.7964776158,-0.7964776158,-0.7967675924,-0.7967675924,-0.7966709137,-0.7966709137,-0.7967675924,-0.7968642116,-0.7969608903,-0.7969608903,-0.7966709137,-0.7963809967,-0.796284318,-0.796284318,-0.796284318,-0.7966709137,-0.7967675924,-0.7967675924,-0.7969608903,-0.7974441648,-0.7974441648,-0.7975407839,-0.7977340817,-0.7977340817,-0.7977340817,-0.7977340817,-0.7976374626,-0.7974441648,-0.7972508669,-0.797057569,-0.7969608903,-0.7968642116,-0.7964776158,-0.796284318,-0.7963809967,-0.796284318,-0.7958010435,-0.7958977222,-0.795994401,-0.7958010435,-0.7957044244,-0.7958010435,-0.7961876988,-0.7963809967,-0.7961876988,-0.795994401,-0.7958977222,-0.7958977222,-0.795994401,-0.7960910201,-0.7958977222,-0.7958010435,-0.7957044244,-0.7957044244,-0.7956077456,-0.7954144478,-0.7955111265,-0.7956077456,-0.7956077456,-0.7955111265,-0.7955111265,-0.7956077456,-0.7956077456,-0.7958010435,-0.7961876988,-0.795994401,-0.7956077456,-0.7954144478,-0.7952211499,-0.7952211499,-0.7954144478,-0.7953178287,-0.7953178287,-0.7953178287,-0.7952211499,-0.7953178287,-0.7953178287,-0.7954144478,-0.7955111265,-0.7953178287,-0.7954144478,-0.7956077456,-0.7956077456,-0.7956077456,-0.7956077456,-0.7954144478,-0.7954144478,-0.7956077456,-0.795994401,-0.7961876988,-0.7955111265,-0.7951245308,-0.7953178287,-0.7954144478,-0.7955111265,-0.7955111265,-0.7952211499,-0.7951245308,-0.7951245308,-0.7952211499,-0.7954144478,-0.7956077456,-0.7956077456,-0.7958977222,-0.7960910201,-0.7961876988,-0.796284318,-0.796284318,-0.796284318,-0.7960910201,-0.7958977222,-0.795994401,-0.7961876988,-0.796284318,-0.7963809967,-0.7964776158,-0.7967675924,-0.7968642116,-0.7967675924,-0.7969608903,-0.797057569,-0.7969608903,-0.797057569,-0.7971541882,-0.7971541882,-0.7971541882,-0.7972508669,-0.7971541882,-0.7971541882,-0.7971541882,-0.7974441648,-0.7977340817,-0.7977340817,-0.7984106541,-0.8002471328,-0.8015036583,-0.8014069796,-0.8019868731,-0.8020835519,-0.7996671796,-0.7986039519,-0.7990872264,-0.7949311733,-0.7880687714,-0.7861357331,-0.7877787948,-0.7893252969,-0.7924181223,-0.7971541882,-0.8006337881,-0.8021802306,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8024701476,-0.8025668263,-0.8027601242,-0.8026634455,-0.8020835519,-0.801890254,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8023735285,-0.8024701476,-0.8028567433,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8028567433,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8024701476,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8005371094,-0.7951245308,-0.789421916,-0.7874888182,-0.7900984883,-0.7953178287,-0.7983140349,-0.7983140349,-0.7988939285,-0.801117003,-0.8025668263,-0.8005371094,-0.7957044244,-0.7954144478,-0.7976374626,-0.7975407839,-0.797057569,-0.7972508669,-0.7969608903,-0.7967675924,-0.7965742946,-0.7964776158,-0.7964776158,-0.7964776158,-0.7966709137,-0.7966709137,-0.7967675924,-0.7968642116,-0.7967675924,-0.7967675924,-0.7966709137,-0.7964776158,-0.7963809967,-0.796284318,-0.7961876988,-0.7965742946,-0.7968642116,-0.7965742946,-0.7967675924,-0.7971541882,-0.797347486,-0.797347486,-0.7975407839,-0.7977340817,-0.7976374626,-0.7974441648,-0.7975407839,-0.7974441648,-0.7972508669,-0.797057569,-0.7968642116,-0.7965742946,-0.796284318,-0.7961876988,-0.7961876988,-0.7961876988,-0.7958977222,-0.7958010435,-0.7957044244,-0.7957044244,-0.7958010435,-0.7958010435,-0.7957044244,-0.7958977222,-0.7960910201,-0.7960910201,-0.7958977222,-0.7961876988,-0.7964776158,-0.796284318,-0.7958977222,-0.7958010435,-0.7958977222,-0.7958977222,-0.7957044244,-0.7955111265,-0.7955111265,-0.7957044244,-0.7957044244,-0.7954144478,-0.7954144478,-0.7956077456,-0.7956077456,-0.7958010435,-0.7960910201,-0.7960910201,-0.7958010435,-0.7955111265,-0.7955111265,-0.7955111265,-0.7954144478,-0.7953178287,-0.7954144478,-0.7953178287,-0.7952211499,-0.7953178287,-0.7953178287,-0.7954144478,-0.7955111265,-0.7956077456,-0.7955111265,-0.7955111265,-0.7956077456,-0.7958010435,-0.7957044244,-0.7954144478,-0.7953178287,-0.7952211499,-0.7954144478,-0.7958010435,-0.7956077456,-0.7952211499,-0.7953178287,-0.7954144478,-0.7955111265,-0.7955111265,-0.7952211499,-0.7949311733,-0.7950278521,-0.7952211499,-0.7954144478,-0.7953178287,-0.7953178287,-0.7957044244,-0.7958977222,-0.7958977222,-0.795994401,-0.7960910201,-0.795994401,-0.7958010435,-0.7958010435,-0.7958977222,-0.7961876988,-0.796284318,-0.7963809967,-0.7965742946,-0.7968642116,-0.7969608903,-0.7969608903,-0.7969608903,-0.7968642116,-0.7969608903,-0.7971541882,-0.7971541882,-0.797057569,-0.797347486,-0.797347486,-0.7971541882,-0.7971541882,-0.7971541882,-0.7974441648,-0.7977340817,-0.7978307605,-0.7983140349,-0.8001505136,-0.8015036583,-0.8013103604,-0.801890254,-0.8023735285,-0.7999572158,-0.7987006307,-0.7991839051,-0.7943512797,-0.7871989012,-0.7862323523,-0.7880687714,-0.789131999,-0.7921282053,-0.7965742946,-0.7999572158,-0.801890254,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8024701476,-0.8021802306,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8021802306,-0.8020835519,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8002471328,-0.7954144478,-0.7903884649,-0.7864256501,-0.7869089246,-0.7932879925,-0.7985073328,-0.7987006307,-0.7989906073,-0.8016002774,-0.8024701476,-0.7999572158,-0.796284318,-0.7968642116,-0.7982173562,-0.7977340817,-0.7975407839,-0.7976374626,-0.7971541882,-0.7968642116,-0.7965742946,-0.7963809967,-0.7964776158,-0.7965742946,-0.7967675924,-0.7967675924,-0.7968642116,-0.7968642116,-0.7966709137,-0.7966709137,-0.7967675924,-0.7966709137,-0.7964776158,-0.7963809967,-0.7961876988,-0.796284318,-0.7964776158,-0.7966709137,-0.7968642116,-0.7969608903,-0.7971541882,-0.7972508669,-0.7972508669,-0.797347486,-0.7974441648,-0.7974441648,-0.7974441648,-0.797347486,-0.7971541882,-0.7969608903,-0.7967675924,-0.7965742946,-0.796284318,-0.7960910201,-0.795994401,-0.7958010435,-0.7957044244,-0.7957044244,-0.7957044244,-0.7957044244,-0.7958010435,-0.7957044244,-0.7956077456,-0.7958010435,-0.795994401,-0.795994401,-0.7961876988,-0.7963809967,-0.796284318,-0.7961876988,-0.795994401,-0.7957044244,-0.7957044244,-0.7957044244,-0.7955111265,-0.7953178287,-0.7955111265,-0.7957044244,-0.7956077456,-0.7955111265,-0.7954144478,-0.7955111265,-0.7955111265,-0.7956077456,-0.7958977222,-0.795994401,-0.7957044244,-0.7956077456,-0.7957044244,-0.7956077456,-0.7956077456,-0.7956077456,-0.7955111265,-0.7952211499,-0.7951245308,-0.7953178287,-0.7953178287,-0.7953178287,-0.7955111265,-0.7955111265,-0.7955111265,-0.7958010435,-0.7958010435,-0.7957044244,-0.7958010435,-0.7957044244,-0.7954144478,-0.7953178287,-0.7954144478,-0.7953178287,-0.7952211499,-0.7951245308,-0.7951245308,-0.7951245308,-0.7953178287,-0.7955111265,-0.7953178287,-0.7949311733,-0.7950278521,-0.7951245308,-0.7953178287,-0.7954144478,-0.7955111265,-0.7957044244,-0.7958010435,-0.7958977222,-0.795994401,-0.7960910201,-0.795994401,-0.7957044244,-0.7956077456,-0.7958977222,-0.7963809967,-0.7965742946,-0.7964776158,-0.7965742946,-0.7968642116,-0.7969608903,-0.7969608903,-0.7969608903,-0.7969608903,-0.7969608903,-0.797057569,-0.7971541882,-0.7971541882,-0.7972508669,-0.797347486,-0.797347486,-0.7971541882,-0.7972508669,-0.7975407839,-0.7976374626,-0.7975407839,-0.7978307605,-0.7996671796,-0.8016969562,-0.8016002774,-0.8013103604,-0.8020835519,-0.8005371094,-0.7988939285,-0.7994738221,-0.7955111265,-0.7882620692,-0.7860390544,-0.7870056033,-0.7880687714,-0.7912583351,-0.7955111265,-0.7990872264,-0.8016969562,-0.8025668263,-0.8026634455,-0.8024701476,-0.8025668263,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8024701476,-0.8025668263,-0.8028567433,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8023735285,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8016002774,-0.8015036583,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8025668263,-0.8025668263,-0.8028567433,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8004404902,-0.7961876988,-0.7912583351,-0.786618948,-0.7860390544,-0.7927080989,-0.7987006307,-0.7987973094,-0.7992805243,-0.8020835519,-0.8025668263,-0.8002471328,-0.7981207371,-0.7974441648,-0.797347486,-0.7972508669,-0.797347486,-0.7974441648,-0.7974441648,-0.7972508669,-0.7967675924,-0.7964776158,-0.7964776158,-0.7964776158,-0.7966709137,-0.7967675924,-0.7967675924,-0.7968642116,-0.7967675924,-0.7967675924,-0.7969608903,-0.7967675924,-0.7964776158,-0.7960910201,-0.7961876988,-0.7963809967,-0.7965742946,-0.7965742946,-0.7967675924,-0.7969608903,-0.7969608903,-0.7971541882,-0.797347486,-0.7974441648,-0.7975407839,-0.7976374626,-0.7975407839,-0.7972508669,-0.7971541882,-0.797057569,-0.7966709137,-0.7963809967,-0.7964776158,-0.7963809967,-0.7960910201,-0.7958010435,-0.7958977222,-0.7960910201,-0.795994401,-0.7958977222,-0.7958977222,-0.7958010435,-0.7958010435,-0.7960910201,-0.795994401,-0.7956077456,-0.7958977222,-0.7963809967,-0.796284318,-0.7960910201,-0.7961876988,-0.7960910201,-0.7958010435,-0.7958010435,-0.7956077456,-0.7956077456,-0.7956077456,-0.7956077456,-0.7956077456,-0.7956077456,-0.7955111265,-0.7954144478,-0.7955111265,-0.7957044244,-0.7958010435,-0.7958010435,-0.7957044244,-0.7955111265,-0.7955111265,-0.7954144478,-0.7953178287,-0.7953178287,-0.7956077456,-0.7955111265,-0.7951245308,-0.7952211499,-0.7954144478,-0.7953178287,-0.7953178287,-0.7955111265,-0.7957044244,-0.7958977222,-0.7960910201,-0.7958977222,-0.7958010435,-0.7957044244,-0.7953178287,-0.7952211499,-0.7952211499,-0.7952211499,-0.7953178287,-0.7952211499,-0.7950278521,-0.7950278521,-0.7953178287,-0.7955111265,-0.7955111265,-0.7953178287,-0.7951245308,-0.7951245308,-0.7953178287,-0.7955111265,-0.7956077456,-0.7957044244,-0.7957044244,-0.7957044244,-0.795994401,-0.7961876988,-0.7958977222,-0.7956077456,-0.7956077456,-0.795994401,-0.7964776158,-0.7966709137,-0.7966709137,-0.7965742946,-0.7966709137,-0.7968642116,-0.7969608903,-0.797057569,-0.797057569,-0.797057569,-0.7971541882,-0.797347486,-0.7974441648,-0.797347486,-0.7972508669,-0.797057569,-0.797057569,-0.7971541882,-0.7971541882,-0.7975407839,-0.7975407839,-0.7967675924,-0.7984106541,-0.8013103604,-0.8016002774,-0.8012136817,-0.8020835519,-0.8009237051,-0.7989906073,-0.799377203,-0.7965742946,-0.7895185947,-0.7861357331,-0.7867156267,-0.7879720926,-0.7906783819,-0.7944479585,-0.7984106541,-0.8014069796,-0.8024701476,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8024701476,-0.8025668263,-0.8021802306,-0.8016969562,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8013103604,-0.801117003,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8005371094,-0.7961876988,-0.7916449308,-0.7872955203,-0.786618948,-0.7929980755,-0.7987006307,-0.7989906073,-0.7999572158,-0.8025668263,-0.8024701476,-0.7997637987,-0.7972508669,-0.7969608903,-0.7972508669,-0.7971541882,-0.7972508669,-0.7974441648,-0.7972508669,-0.7968642116,-0.7965742946,-0.7965742946,-0.7964776158,-0.7963809967,-0.7964776158,-0.7965742946,-0.7967675924,-0.7968642116,-0.7968642116,-0.7968642116,-0.7969608903,-0.7967675924,-0.7964776158,-0.796284318,-0.7961876988,-0.7961876988,-0.7963809967,-0.7966709137,-0.7967675924,-0.7967675924,-0.7969608903,-0.7972508669,-0.7972508669,-0.797347486,-0.7974441648,-0.7974441648,-0.7972508669,-0.7969608903,-0.7969608903,-0.7969608903,-0.7967675924,-0.7966709137,-0.7963809967,-0.7961876988,-0.7961876988,-0.7960910201,-0.795994401,-0.795994401,-0.795994401,-0.7958010435,-0.795994401,-0.7960910201,-0.7958977222,-0.7957044244,-0.7958010435,-0.7958010435,-0.7958977222,-0.7961876988,-0.7963809967,-0.7963809967,-0.796284318,-0.7960910201,-0.7958010435,-0.7957044244,-0.7957044244,-0.7956077456,-0.7955111265,-0.7954144478,-0.7955111265,-0.7956077456,-0.7955111265,-0.7955111265,-0.7955111265,-0.7956077456,-0.7958010435,-0.795994401,-0.7958010435,-0.7954144478,-0.7955111265,-0.7956077456,-0.7954144478,-0.7955111265,-0.7954144478,-0.7952211499,-0.7953178287,-0.7954144478,-0.7954144478,-0.7953178287,-0.7952211499,-0.7955111265,-0.795994401,-0.7960910201,-0.7958977222,-0.7958977222,-0.7958977222,-0.7957044244,-0.7955111265,-0.7953178287,-0.7951245308,-0.7950278521,-0.7950278521,-0.7953178287,-0.7951245308,-0.7949311733,-0.7952211499,-0.7955111265,-0.7956077456,-0.7954144478,-0.7952211499,-0.7952211499,-0.7953178287,-0.7953178287,-0.7955111265,-0.7956077456,-0.7957044244,-0.7957044244,-0.7958010435,-0.7958977222,-0.7957044244,-0.7953178287,-0.7956077456,-0.7960910201,-0.7961876988,-0.7964776158,-0.7967675924,-0.7967675924,-0.7967675924,-0.7968642116,-0.7968642116,-0.7968642116,-0.7971541882,-0.797347486,-0.7971541882,-0.7971541882,-0.7975407839,-0.7974441648,-0.7971541882,-0.797057569,-0.797057569,-0.7972508669,-0.7972508669,-0.7976374626,-0.7980240583,-0.7965742946,-0.797057569,-0.8005371094,-0.8014069796,-0.8009237051,-0.8021802306,-0.8015036583,-0.7992805243,-0.7994738221,-0.797057569,-0.7899051905,-0.786329031,-0.7869089246,-0.7875854969,-0.789421916,-0.7932879925,-0.7976374626,-0.8009237051,-0.8021802306,-0.8025668263,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8024701476,-0.8022768497,-0.8014069796,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8024701476,-0.8024701476,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8024701476,-0.8025668263,-0.8026634455,-0.8025668263,-0.8002471328,-0.7958010435,-0.7915482521,-0.7874888182,-0.7870056033,-0.7931913733,-0.7987006307,-0.7989906073,-0.8001505136,-0.8024701476,-0.801890254,-0.7990872264,-0.797347486,-0.797347486,-0.797347486,-0.7971541882,-0.7972508669,-0.7972508669,-0.7969608903,-0.7967675924,-0.7966709137,-0.7964776158,-0.7965742946,-0.7966709137,-0.7966709137,-0.7965742946,-0.7966709137,-0.7967675924,-0.7968642116,-0.7968642116,-0.7967675924,-0.7966709137,-0.7964776158,-0.796284318,-0.7958977222,-0.7960910201,-0.7963809967,-0.7965742946,-0.7966709137,-0.7967675924,-0.7969608903,-0.797057569,-0.7971541882,-0.797347486,-0.7974441648,-0.7974441648,-0.7972508669,-0.7969608903,-0.7967675924,-0.7967675924,-0.7967675924,-0.7965742946,-0.796284318,-0.795994401,-0.795994401,-0.795994401,-0.7958977222,-0.7958977222,-0.7958010435,-0.7958010435,-0.7958977222,-0.7958977222,-0.7958010435,-0.7958010435,-0.7958010435,-0.7957044244,-0.7958977222,-0.7960910201,-0.796284318,-0.796284318,-0.7963809967,-0.7961876988,-0.7958010435,-0.7956077456,-0.7956077456,-0.7956077456,-0.7956077456,-0.7956077456,-0.7956077456,-0.7956077456,-0.7956077456,-0.7957044244,-0.7956077456,-0.7956077456,-0.7958010435,-0.7958977222,-0.7957044244,-0.7956077456,-0.7955111265,-0.7956077456,-0.7956077456,-0.7955111265,-0.7954144478,-0.7953178287,-0.7953178287,-0.7955111265,-0.7954144478,-0.7953178287,-0.7954144478,-0.7956077456,-0.7958977222,-0.7960910201,-0.795994401,-0.7958010435,-0.7957044244,-0.7954144478,-0.7953178287,-0.7952211499,-0.7952211499,-0.7952211499,-0.7950278521,-0.7951245308,-0.7952211499,-0.7951245308,-0.7952211499,-0.7954144478,-0.7955111265,-0.7953178287,-0.7951245308,-0.7951245308,-0.7953178287,-0.7954144478,-0.7957044244,-0.7957044244,-0.7956077456,-0.7957044244,-0.7957044244,-0.7957044244,-0.7956077456,-0.7954144478,-0.7955111265,-0.7958977222,-0.796284318,-0.7964776158,-0.7965742946,-0.7966709137,-0.7968642116,-0.797057569,-0.797057569,-0.797057569,-0.7971541882,-0.7971541882,-0.7972508669,-0.7974441648,-0.7974441648,-0.7972508669,-0.7969608903,-0.7969608903,-0.797057569,-0.7972508669,-0.797347486,-0.7975407839,-0.7978307605,-0.797057569,-0.7974441648,-0.8002471328,-0.8012136817,-0.8009237051,-0.8021802306,-0.8015036583,-0.7991839051,-0.7994738221,-0.7972508669,-0.7899051905,-0.7859423757,-0.7865223289,-0.786329031,-0.7878754735,-0.7928047776,-0.797347486,-0.8002471328,-0.8019868731,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8024701476,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8024701476,-0.8023735285,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8020835519,-0.8019868731,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8025668263,-0.8024701476,-0.8026634455,-0.8025668263,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8023735285,-0.7998605371,-0.7952211499,-0.7902917862,-0.786618948,-0.7871022224,-0.7937713861,-0.7989906073,-0.7990872264,-0.8003438115,-0.8025668263,-0.8016969562,-0.7986039519,-0.7972508669,-0.7972508669,-0.7971541882,-0.7968642116,-0.7969608903,-0.7969608903,-0.7967675924,-0.7967675924,-0.7967675924,-0.7966709137,-0.7963809967,-0.7965742946,-0.7967675924,-0.7965742946,-0.7966709137,-0.7967675924,-0.7966709137,-0.7967675924,-0.7967675924,-0.7965742946,-0.7963809967,-0.7960910201,-0.7958977222,-0.795994401,-0.7963809967,-0.7964776158,-0.7965742946,-0.7967675924,-0.7969608903,-0.7969608903,-0.7969608903,-0.7971541882,-0.7972508669,-0.7972508669,-0.797057569,-0.7969608903,-0.7967675924,-0.7966709137,-0.7965742946,-0.7963809967,-0.7960910201,-0.795994401,-0.795994401,-0.795994401,-0.795994401,-0.7958977222,-0.7958977222,-0.7958977222,-0.7958977222,-0.795994401,-0.7960910201,-0.7958977222,-0.7955111265,-0.7957044244,-0.7958977222,-0.7960910201,-0.7961876988,-0.7961876988,-0.7961876988,-0.7960910201,-0.7958977222,-0.7958010435,-0.7957044244,-0.7956077456,-0.7955111265,-0.7955111265,-0.7957044244,-0.7957044244,-0.7956077456,-0.7955111265,-0.7954144478,-0.7954144478,-0.7957044244,-0.7958010435,-0.7957044244,-0.7954144478,-0.7955111265,-0.7957044244,-0.7956077456,-0.7954144478,-0.7956077456,-0.7957044244,-0.7955111265,-0.7954144478,-0.7954144478,-0.7954144478,-0.7954144478,-0.7957044244,-0.7960910201,-0.7960910201,-0.7958010435,-0.7956077456,-0.7955111265,-0.7952211499,-0.7951245308,-0.7951245308,-0.7951245308,-0.7952211499,-0.7952211499,-0.7950278521,-0.7950278521,-0.7951245308,-0.7952211499,-0.7953178287,-0.7954144478,-0.7953178287,-0.7953178287,-0.7951245308,-0.7950278521,-0.7954144478,-0.7957044244,-0.7957044244,-0.7956077456,-0.7956077456,-0.7956077456,-0.7956077456,-0.7955111265,-0.7954144478,-0.7955111265,-0.7958977222,-0.7961876988,-0.796284318,-0.796284318,-0.7964776158,-0.7967675924,-0.7968642116,-0.7967675924,-0.797057569,-0.7972508669,-0.7971541882,-0.797347486,-0.7975407839,-0.7974441648,-0.797057569,-0.7969608903,-0.7971541882,-0.7971541882,-0.7971541882,-0.7971541882,-0.7972508669,-0.7977340817,-0.7976374626,-0.7981207371,-0.8002471328,-0.8009237051,-0.8007304072,-0.8019868731,-0.8016002774,-0.7992805243,-0.7994738221,-0.7978307605,-0.7904850841,-0.7856523991,-0.7861357331,-0.786618948,-0.7885520458,-0.7928047776,-0.796284318,-0.799377203,-0.801890254,-0.8026634455,-0.8025668263,-0.8024701476,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8025668263,-0.8021802306,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.801117003,-0.8009237051,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8019868731,-0.7995705009,-0.7953178287,-0.7903884649,-0.7861357331,-0.7872955203,-0.7945445776,-0.7989906073,-0.7989906073,-0.8013103604,-0.8021802306,-0.8012136817,-0.7980240583,-0.7972508669,-0.7974441648,-0.797057569,-0.7968642116,-0.7967675924,-0.7966709137,-0.7967675924,-0.7966709137,-0.7965742946,-0.7965742946,-0.7963809967,-0.7964776158,-0.7966709137,-0.7968642116,-0.7968642116,-0.7966709137,-0.7967675924,-0.7968642116,-0.7967675924,-0.7966709137,-0.7963809967,-0.7960910201,-0.795994401,-0.795994401,-0.7960910201,-0.7964776158,-0.7967675924,-0.7968642116,-0.7968642116,-0.7969608903,-0.7971541882,-0.7972508669,-0.7972508669,-0.7972508669,-0.797057569,-0.7969608903,-0.7968642116,-0.7967675924,-0.7967675924,-0.7964776158,-0.795994401,-0.795994401,-0.7961876988,-0.7960910201,-0.795994401,-0.795994401,-0.795994401,-0.7960910201,-0.7958977222,-0.7958977222,-0.795994401,-0.7958010435,-0.7956077456,-0.7958010435,-0.7958010435,-0.7957044244,-0.7958010435,-0.7960910201,-0.7961876988,-0.795994401,-0.7957044244,-0.7958010435,-0.7958977222,-0.7958010435,-0.7956077456,-0.7954144478,-0.7955111265,-0.7956077456,-0.7956077456,-0.7956077456,-0.7954144478,-0.7953178287,-0.7956077456,-0.7958010435,-0.7956077456,-0.7955111265,-0.7956077456,-0.7957044244,-0.7956077456,-0.7955111265,-0.7955111265,-0.7955111265,-0.7955111265,-0.7955111265,-0.7955111265,-0.7954144478,-0.7955111265,-0.7956077456,-0.7958010435,-0.7958977222,-0.7957044244,-0.7954144478,-0.7955111265,-0.7954144478,-0.7953178287,-0.7953178287,-0.7951245308,-0.7950278521,-0.7951245308,-0.7950278521,-0.7950278521,-0.7949311733,-0.7950278521,-0.7952211499,-0.7953178287,-0.7953178287,-0.7953178287,-0.7952211499,-0.7952211499,-0.7954144478,-0.7955111265,-0.7956077456,-0.7956077456,-0.7955111265,-0.7954144478,-0.7953178287,-0.7954144478,-0.7955111265,-0.7955111265,-0.7958010435,-0.7961876988,-0.7961876988,-0.7961876988,-0.7965742946,-0.7967675924,-0.7968642116,-0.7968642116,-0.797057569,-0.797057569,-0.797057569,-0.797057569,-0.7971541882,-0.7971541882,-0.797057569,-0.7969608903,-0.7969608903,-0.7968642116,-0.7972508669,-0.7972508669,-0.797057569,-0.7977340817,-0.7982173562,-0.7986039519,-0.8004404902,-0.801117003,-0.8003438115,-0.8016002774,-0.801890254,-0.7994738221,-0.799377203,-0.7986039519,-0.7916449308,-0.7860390544,-0.7862323523,-0.7871989012,-0.7890353203,-0.7924181223,-0.7956077456,-0.7988939285,-0.8015036583,-0.8025668263,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8028567433,-0.8028567433,-0.8025668263,-0.8024701476,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8024701476,-0.8025668263,-0.8025668263,-0.8026634455,-0.8025668263,-0.8020835519,-0.8013103604,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8020835519,-0.801890254,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8019868731,-0.7991839051,-0.7944479585,-0.789421916,-0.7857490778,-0.7874888182,-0.7947378755,-0.7988939285,-0.799377203,-0.801890254,-0.8026634455,-0.8003438115,-0.7975407839,-0.7971541882,-0.7974441648,-0.7971541882,-0.7967675924,-0.7967675924,-0.7965742946,-0.7965742946,-0.7965742946,-0.7965742946,-0.7964776158,-0.7963809967,-0.7963809967,-0.7963809967,-0.7965742946,-0.7967675924,-0.7966709137,-0.7967675924,-0.7969608903,-0.7968642116,-0.7967675924,-0.7965742946,-0.7960910201,-0.7960910201,-0.7961876988,-0.7961876988,-0.796284318,-0.7965742946,-0.7966709137,-0.7966709137,-0.7969608903,-0.797057569,-0.7971541882,-0.797347486,-0.7972508669,-0.797057569,-0.7969608903,-0.7966709137,-0.7966709137,-0.7966709137,-0.7965742946,-0.7963809967,-0.796284318,-0.7960910201,-0.7960910201,-0.7960910201,-0.7958977222,-0.7958977222,-0.7960910201,-0.7958977222,-0.7960910201,-0.7963809967,-0.7960910201,-0.7956077456,-0.7956077456,-0.7957044244,-0.7957044244,-0.7958010435,-0.7958977222,-0.795994401,-0.7958977222,-0.7958010435,-0.7958010435,-0.7958010435,-0.7958010435,-0.7958010435,-0.7955111265,-0.7955111265,-0.7955111265,-0.7955111265,-0.7956077456,-0.7957044244,-0.7956077456,-0.7958977222,-0.795994401,-0.7957044244,-0.7956077456,-0.7956077456,-0.7956077456,-0.7956077456,-0.7955111265,-0.7956077456,-0.7956077456,-0.7955111265,-0.7955111265,-0.7955111265,-0.7954144478,-0.7955111265,-0.7955111265,-0.7953178287,-0.7954144478,-0.7955111265,-0.7954144478,-0.7952211499,-0.7953178287,-0.7954144478,-0.7955111265,-0.7952211499,-0.7951245308,-0.7951245308,-0.7951245308,-0.7952211499,-0.7952211499,-0.7952211499,-0.7952211499,-0.7953178287,-0.7953178287,-0.7954144478,-0.7954144478,-0.7954144478,-0.7955111265,-0.7955111265,-0.7956077456,-0.7956077456,-0.7954144478,-0.7954144478,-0.7954144478,-0.7955111265,-0.7953178287,-0.7954144478,-0.7958977222,-0.796284318,-0.7964776158,-0.7966709137,-0.7969608903,-0.7969608903,-0.7968642116,-0.7969608903,-0.797057569,-0.797057569,-0.7969608903,-0.797057569,-0.797057569,-0.797057569,-0.7969608903,-0.7968642116,-0.7967675924,-0.7968642116,-0.797057569,-0.7971541882,-0.7975407839,-0.7979274392,-0.7978307605,-0.7982173562,-0.8001505136,-0.8012136817,-0.800827086,-0.8017935753,-0.8019868731,-0.7997637987,-0.7992805243,-0.7987006307,-0.7924181223,-0.7865223289,-0.7861357331,-0.7868123055,-0.7878754735,-0.7908717394,-0.7945445776,-0.7985073328,-0.8015036583,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8021802306,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8022768497,-0.8023735285,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8024701476,-0.8025668263,-0.8026634455,-0.8028567433,-0.8028567433,-0.8025668263,-0.8026634455,-0.8028567433,-0.8026634455,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8024701476,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8021802306,-0.7987973094,-0.7937713861,-0.789421916,-0.7860390544,-0.7877787948,-0.7950278521,-0.7990872264,-0.7998605371,-0.8021802306,-0.8025668263,-0.7997637987,-0.7976374626,-0.7974441648,-0.7974441648,-0.797057569,-0.7968642116,-0.7968642116,-0.7966709137,-0.7964776158,-0.7963809967,-0.7964776158,-0.7964776158,-0.796284318,-0.796284318,-0.7963809967,-0.7965742946,-0.7966709137,-0.7966709137,-0.7968642116,-0.7968642116,-0.7968642116,-0.7967675924,-0.7966709137,-0.796284318,-0.7958977222,-0.7958977222,-0.7958977222,-0.795994401,-0.7963809967,-0.7965742946,-0.7966709137,-0.7968642116,-0.7969608903,-0.7969608903,-0.797057569,-0.797057569,-0.7968642116,-0.7967675924,-0.7966709137,-0.7965742946,-0.7965742946,-0.7964776158,-0.796284318,-0.7961876988,-0.795994401,-0.795994401,-0.795994401,-0.795994401,-0.7960910201,-0.7958010435,-0.7956077456,-0.7967675924,-0.797347486,-0.7963809967,-0.7956077456,-0.7956077456,-0.7957044244,-0.7958010435,-0.7958010435,-0.7957044244,-0.7957044244,-0.7957044244,-0.7957044244,-0.7957044244,-0.7956077456,-0.7956077456,-0.7956077456,-0.7956077456,-0.7956077456,-0.7956077456,-0.7955111265,-0.7957044244,-0.7957044244,-0.7957044244,-0.7958010435,-0.7960910201,-0.7958977222,-0.7956077456,-0.7956077456,-0.7957044244,-0.7958010435,-0.7956077456,-0.7955111265,-0.7956077456,-0.7957044244,-0.7956077456,-0.7955111265,-0.7955111265,-0.7956077456,-0.7954144478,-0.7954144478,-0.7955111265,-0.7953178287,-0.7952211499,-0.7953178287,-0.7952211499,-0.7951245308,-0.7953178287,-0.7953178287,-0.7952211499,-0.7952211499,-0.7951245308,-0.7950278521,-0.7950278521,-0.7951245308,-0.7952211499,-0.7953178287,-0.7953178287,-0.7952211499,-0.7953178287,-0.7954144478,-0.7956077456,-0.7956077456,-0.7955111265,-0.7955111265,-0.7954144478,-0.7953178287,-0.7954144478,-0.7955111265,-0.7955111265,-0.7955111265,-0.7958977222,-0.796284318,-0.7965742946,-0.7967675924,-0.7967675924,-0.7967675924,-0.7968642116,-0.797057569,-0.797057569,-0.797057569,-0.797057569,-0.7968642116,-0.7969608903,-0.797057569,-0.7969608903,-0.7969608903,-0.7969608903,-0.7969608903,-0.797057569,-0.797347486,-0.7976374626,-0.7976374626,-0.797347486,-0.797347486,-0.7988939285,-0.8007304072,-0.801117003,-0.801890254,-0.8021802306,-0.7998605371,-0.7991839051,-0.7989906073,-0.7929013968,-0.786618948,-0.7861357331,-0.7870056033,-0.787392199,-0.7895185947,-0.7933846712,-0.7980240583,-0.8013103604,-0.8024701476,-0.8025668263,-0.8024701476,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8026634455,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8024701476,-0.8027601242,-0.8023735285,-0.8022768497,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8024701476,-0.8022768497,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8024701476,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.801890254,-0.7986039519,-0.7938680053,-0.7895185947,-0.7862323523,-0.7881653905,-0.7951245308,-0.7990872264,-0.8000538349,-0.8023735285,-0.8022768497,-0.799377203,-0.7976374626,-0.797347486,-0.7972508669,-0.7972508669,-0.7971541882,-0.797057569,-0.7968642116,-0.7967675924,-0.7965742946,-0.7963809967,-0.796284318,-0.796284318,-0.796284318,-0.7963809967,-0.7965742946,-0.7965742946,-0.7965742946,-0.7966709137,-0.7969608903,-0.797057569,-0.7968642116,-0.7967675924,-0.7964776158,-0.795994401,-0.7958010435,-0.7958977222,-0.795994401,-0.796284318,-0.7965742946,-0.7967675924,-0.7967675924,-0.7967675924,-0.7969608903,-0.7969608903,-0.7968642116,-0.7968642116,-0.7966709137,-0.7965742946,-0.7964776158,-0.7964776158,-0.7963809967,-0.796284318,-0.796284318,-0.7960910201,-0.7958977222,-0.795994401,-0.7960910201,-0.7961876988,-0.7956077456,-0.7956077456,-0.7975407839,-0.7985073328,-0.7968642116,-0.7958010435,-0.7958010435,-0.7956077456,-0.7957044244,-0.7958010435,-0.7957044244,-0.7957044244,-0.7957044244,-0.7956077456,-0.7956077456,-0.7957044244,-0.795994401,-0.795994401,-0.7958010435,-0.7957044244,-0.7956077456,-0.7958010435,-0.7958977222,-0.7955111265,-0.7955111265,-0.795994401,-0.7960910201,-0.7958977222,-0.7957044244,-0.7957044244,-0.7957044244,-0.7956077456,-0.7956077456,-0.7958010435,-0.7957044244,-0.7955111265,-0.7957044244,-0.7958010435,-0.7957044244,-0.7956077456,-0.7954144478,-0.7953178287,-0.7953178287,-0.7952211499,-0.7953178287,-0.7954144478,-0.7951245308,-0.7950278521,-0.7954144478,-0.7954144478,-0.7953178287,-0.7955111265,-0.7955111265,-0.7951245308,-0.7951245308,-0.7953178287,-0.7953178287,-0.7951245308,-0.7953178287,-0.7955111265,-0.7954144478,-0.7954144478,-0.7956077456,-0.7956077456,-0.7955111265,-0.7955111265,-0.7954144478,-0.7953178287,-0.7954144478,-0.7955111265,-0.7955111265,-0.7958010435,-0.796284318,-0.7966709137,-0.7967675924,-0.7967675924,-0.7968642116,-0.7969608903,-0.7971541882,-0.7971541882,-0.7971541882,-0.7971541882,-0.7971541882,-0.797057569,-0.7969608903,-0.7969608903,-0.7969608903,-0.7968642116,-0.7968642116,-0.797057569,-0.797347486,-0.7975407839,-0.7974441648,-0.7974441648,-0.7975407839,-0.7974441648,-0.7983140349,-0.8002471328,-0.8010203838,-0.8017935753,-0.8021802306,-0.7997637987,-0.7990872264,-0.7989906073,-0.7930946946,-0.7871022224,-0.786618948,-0.7870056033,-0.7876821756,-0.7903884649,-0.7935779691,-0.7974441648,-0.801117003,-0.8025668263,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8025668263,-0.8021802306,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8024701476,-0.8024701476,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8014069796,-0.7978307605,-0.7926114798,-0.7874888182,-0.7848792076,-0.7884553671,-0.7957044244,-0.7991839051,-0.8001505136,-0.8024701476,-0.8022768497,-0.7992805243,-0.7977340817,-0.7975407839,-0.7974441648,-0.7974441648,-0.797347486,-0.7972508669,-0.7971541882,-0.7971541882,-0.7969608903,-0.7968642116,-0.7968642116,-0.7964776158,-0.7961876988,-0.7960910201,-0.7960910201,-0.7963809967,-0.7964776158,-0.7965742946,-0.7966709137,-0.7967675924,-0.7966709137,-0.7966709137,-0.7965742946,-0.796284318,-0.7958977222,-0.7958010435,-0.7958977222,-0.7958977222,-0.795994401,-0.7963809967,-0.7965742946,-0.7967675924,-0.7968642116,-0.7968642116,-0.7968642116,-0.7967675924,-0.7965742946,-0.7965742946,-0.7964776158,-0.796284318,-0.7961876988,-0.7961876988,-0.7961876988,-0.7960910201,-0.795994401,-0.7958977222,-0.7958977222,-0.7960910201,-0.7958010435,-0.7955111265,-0.797347486,-0.7992805243,-0.7984106541,-0.7963809967,-0.7958010435,-0.7957044244,-0.7956077456,-0.7956077456,-0.7956077456,-0.7956077456,-0.7957044244,-0.7957044244,-0.7958010435,-0.795994401,-0.795994401,-0.7958977222,-0.7958977222,-0.795994401,-0.795994401,-0.7958010435,-0.7956077456,-0.7956077456,-0.7956077456,-0.795994401,-0.796284318,-0.795994401,-0.7956077456,-0.7956077456,-0.7956077456,-0.7957044244,-0.7958010435,-0.7958010435,-0.7957044244,-0.7956077456,-0.7957044244,-0.7957044244,-0.7956077456,-0.7956077456,-0.7957044244,-0.7955111265,-0.7953178287,-0.7952211499,-0.7952211499,-0.7953178287,-0.7953178287,-0.7954144478,-0.7955111265,-0.7954144478,-0.7954144478,-0.7956077456,-0.7955111265,-0.7952211499,-0.7952211499,-0.7954144478,-0.7953178287,-0.7951245308,-0.7953178287,-0.7956077456,-0.7956077456,-0.7953178287,-0.7953178287,-0.7954144478,-0.7955111265,-0.7956077456,-0.7955111265,-0.7954144478,-0.7954144478,-0.7954144478,-0.7953178287,-0.7957044244,-0.7964776158,-0.7967675924,-0.7966709137,-0.7967675924,-0.7971541882,-0.797347486,-0.7971541882,-0.7968642116,-0.7967675924,-0.7969608903,-0.7971541882,-0.7968642116,-0.7967675924,-0.7967675924,-0.7968642116,-0.7967675924,-0.7967675924,-0.7971541882,-0.7971541882,-0.7971541882,-0.797347486,-0.7974441648,-0.7975407839,-0.7974441648,-0.7980240583,-0.7998605371,-0.8010203838,-0.8019868731,-0.8019868731,-0.7995705009,-0.7991839051,-0.7987006307,-0.7919349074,-0.786329031,-0.786329031,-0.7865223289,-0.7878754735,-0.7910650373,-0.7935779691,-0.797057569,-0.8009237051,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8019868731,-0.8019868731,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8023735285,-0.8024701476,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8013103604,-0.7974441648,-0.7926114798,-0.7878754735,-0.7850725055,-0.788648665,-0.7960910201,-0.799377203,-0.8005371094,-0.8026634455,-0.8022768497,-0.7994738221,-0.7976374626,-0.7972508669,-0.7974441648,-0.797347486,-0.7971541882,-0.7972508669,-0.7972508669,-0.7971541882,-0.7969608903,-0.797057569,-0.7971541882,-0.7967675924,-0.7964776158,-0.796284318,-0.7961876988,-0.7961876988,-0.796284318,-0.7964776158,-0.7965742946,-0.7965742946,-0.7964776158,-0.7966709137,-0.7967675924,-0.7964776158,-0.795994401,-0.7958977222,-0.7958977222,-0.7958977222,-0.795994401,-0.7961876988,-0.7964776158,-0.7966709137,-0.7966709137,-0.7966709137,-0.7967675924,-0.7965742946,-0.7964776158,-0.7964776158,-0.7964776158,-0.7964776158,-0.796284318,-0.795994401,-0.7960910201,-0.7960910201,-0.7958977222,-0.795994401,-0.7960910201,-0.7960910201,-0.795994401,-0.7956077456,-0.7964776158,-0.7982173562,-0.7987006307,-0.7978307605,-0.7967675924,-0.795994401,-0.7958010435,-0.7956077456,-0.7953178287,-0.7954144478,-0.7956077456,-0.7958010435,-0.7960910201,-0.795994401,-0.7958010435,-0.7958977222,-0.795994401,-0.7960910201,-0.795994401,-0.7957044244,-0.7955111265,-0.7956077456,-0.7956077456,-0.795994401,-0.7964776158,-0.795994401,-0.7955111265,-0.7956077456,-0.7957044244,-0.7958010435,-0.7957044244,-0.7957044244,-0.7958977222,-0.7958010435,-0.7956077456,-0.7956077456,-0.7957044244,-0.7956077456,-0.7953178287,-0.7952211499,-0.7953178287,-0.7953178287,-0.7954144478,-0.7956077456,-0.7958010435,-0.7955111265,-0.7953178287,-0.7953178287,-0.7953178287,-0.7955111265,-0.7955111265,-0.7953178287,-0.7951245308,-0.7951245308,-0.7953178287,-0.7955111265,-0.7955111265,-0.7953178287,-0.7954144478,-0.7955111265,-0.7954144478,-0.7955111265,-0.7955111265,-0.7954144478,-0.7954144478,-0.7955111265,-0.7953178287,-0.7955111265,-0.7957044244,-0.7958010435,-0.7961876988,-0.7967675924,-0.7969608903,-0.7969608903,-0.7968642116,-0.7968642116,-0.7969608903,-0.7968642116,-0.7966709137,-0.7966709137,-0.7967675924,-0.7968642116,-0.7967675924,-0.7966709137,-0.7966709137,-0.7966709137,-0.7966709137,-0.7967675924,-0.7968642116,-0.7969608903,-0.7971541882,-0.7971541882,-0.7974441648,-0.7975407839,-0.7978307605,-0.7996671796,-0.8012136817,-0.8023735285,-0.8021802306,-0.7996671796,-0.7994738221,-0.7986039519,-0.7911616564,-0.7858456969,-0.786329031,-0.786618948,-0.7875854969,-0.7904850841,-0.793964684,-0.7976374626,-0.800827086,-0.8025668263,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8024701476,-0.8026634455,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8024701476,-0.8024701476,-0.8026634455,-0.8026634455,-0.8025668263,-0.801890254,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8019868731,-0.801890254,-0.8026634455,-0.8027601242,-0.8023735285,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8024701476,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8009237051,-0.7975407839,-0.7929980755,-0.7881653905,-0.7850725055,-0.7888420224,-0.7964776158,-0.7996671796,-0.8007304072,-0.8026634455,-0.8020835519,-0.7997637987,-0.7984106541,-0.7977340817,-0.7975407839,-0.7974441648,-0.7974441648,-0.7976374626,-0.7975407839,-0.7972508669,-0.7972508669,-0.7972508669,-0.797057569,-0.7969608903,-0.7966709137,-0.7961876988,-0.7961876988,-0.7961876988,-0.7960910201,-0.7961876988,-0.7964776158,-0.7965742946,-0.7965742946,-0.7965742946,-0.7966709137,-0.7964776158,-0.7961876988,-0.795994401,-0.7957044244,-0.7958010435,-0.7961876988,-0.7961876988,-0.796284318,-0.7964776158,-0.7965742946,-0.7965742946,-0.7965742946,-0.7964776158,-0.796284318,-0.7961876988,-0.796284318,-0.7963809967,-0.796284318,-0.796284318,-0.796284318,-0.7961876988,-0.7960910201,-0.7960910201,-0.7958977222,-0.7958010435,-0.7958010435,-0.7957044244,-0.7958977222,-0.7966709137,-0.7972508669,-0.7978307605,-0.7982173562,-0.797057569,-0.7958977222,-0.7957044244,-0.7955111265,-0.7953178287,-0.7956077456,-0.7958977222,-0.795994401,-0.795994401,-0.795994401,-0.7960910201,-0.7958977222,-0.7958010435,-0.7957044244,-0.7955111265,-0.7954144478,-0.7954144478,-0.7956077456,-0.7964776158,-0.797057569,-0.7963809967,-0.7956077456,-0.7955111265,-0.7957044244,-0.7957044244,-0.7957044244,-0.7957044244,-0.7958010435,-0.795994401,-0.7958977222,-0.7958010435,-0.7956077456,-0.7954144478,-0.7952211499,-0.7952211499,-0.7951245308,-0.7954144478,-0.7960910201,-0.7964776158,-0.7958977222,-0.7953178287,-0.7952211499,-0.7954144478,-0.7956077456,-0.7955111265,-0.7954144478,-0.7953178287,-0.7953178287,-0.7952211499,-0.7954144478,-0.7955111265,-0.7956077456,-0.7956077456,-0.7957044244,-0.7956077456,-0.7954144478,-0.7955111265,-0.7955111265,-0.7953178287,-0.7954144478,-0.7956077456,-0.7956077456,-0.7954144478,-0.7955111265,-0.7958010435,-0.7960910201,-0.7964776158,-0.7967675924,-0.7966709137,-0.7965742946,-0.7967675924,-0.7966709137,-0.7965742946,-0.7964776158,-0.7965742946,-0.7966709137,-0.7967675924,-0.7967675924,-0.7965742946,-0.7964776158,-0.7966709137,-0.7966709137,-0.7965742946,-0.7966709137,-0.7968642116,-0.7968642116,-0.7969608903,-0.797347486,-0.7974441648,-0.7978307605,-0.7996671796,-0.8013103604,-0.8023735285,-0.8020835519,-0.7995705009,-0.7990872264,-0.7990872264,-0.7932879925,-0.7874888182,-0.786618948,-0.7864256501,-0.7870056033,-0.7901951671,-0.7940613031,-0.7978307605,-0.801117003,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8023735285,-0.8023735285,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8023735285,-0.8027601242,-0.8019868731,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8023735285,-0.8023735285,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8024701476,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8022768497,-0.8003438115,-0.7971541882,-0.792514801,-0.7875854969,-0.7850725055,-0.789131999,-0.7968642116,-0.8000538349,-0.801117003,-0.8028567433,-0.801890254,-0.7995705009,-0.7985073328,-0.7981207371,-0.7978307605,-0.7977340817,-0.7976374626,-0.7975407839,-0.7974441648,-0.7972508669,-0.7971541882,-0.7971541882,-0.7971541882,-0.7971541882,-0.7968642116,-0.7964776158,-0.7965742946,-0.7965742946,-0.7961876988,-0.7960910201,-0.7961876988,-0.7961876988,-0.796284318,-0.7964776158,-0.7964776158,-0.7963809967,-0.796284318,-0.7960910201,-0.7958977222,-0.7958010435,-0.795994401,-0.7960910201,-0.7961876988,-0.796284318,-0.7963809967,-0.7964776158,-0.7964776158,-0.7963809967,-0.7961876988,-0.796284318,-0.7963809967,-0.796284318,-0.7961876988,-0.7961876988,-0.7960910201,-0.795994401,-0.7961876988,-0.795994401,-0.7957044244,-0.7957044244,-0.7958977222,-0.7958977222,-0.7958010435,-0.7958977222,-0.795994401,-0.7964776158,-0.7979274392,-0.7984106541,-0.7965742946,-0.7953178287,-0.7957044244,-0.7957044244,-0.7955111265,-0.7957044244,-0.7958010435,-0.7958977222,-0.7958010435,-0.7958010435,-0.7958010435,-0.7956077456,-0.7956077456,-0.7956077456,-0.7956077456,-0.7955111265,-0.7956077456,-0.7963809967,-0.7968642116,-0.7963809967,-0.7957044244,-0.7955111265,-0.7956077456,-0.7956077456,-0.7956077456,-0.7957044244,-0.7958010435,-0.7958977222,-0.7958977222,-0.7958010435,-0.7956077456,-0.7956077456,-0.7956077456,-0.7953178287,-0.7952211499,-0.796284318,-0.7972508669,-0.7965742946,-0.7953178287,-0.7952211499,-0.7954144478,-0.7953178287,-0.7953178287,-0.7955111265,-0.7954144478,-0.7953178287,-0.7954144478,-0.7954144478,-0.7953178287,-0.7953178287,-0.7954144478,-0.7955111265,-0.7956077456,-0.7955111265,-0.7954144478,-0.7955111265,-0.7955111265,-0.7954144478,-0.7954144478,-0.7955111265,-0.7955111265,-0.7954144478,-0.7955111265,-0.7956077456,-0.7958977222,-0.796284318,-0.7964776158,-0.7963809967,-0.796284318,-0.7963809967,-0.7963809967,-0.7964776158,-0.7961876988,-0.7961876988,-0.7965742946,-0.7966709137,-0.7963809967,-0.7963809967,-0.7965742946,-0.7967675924,-0.7969608903,-0.7968642116,-0.7966709137,-0.7968642116,-0.7971541882,-0.7972508669,-0.7974441648,-0.7974441648,-0.7979274392,-0.7997637987,-0.8014069796,-0.8023735285,-0.8020835519,-0.799377203,-0.7987973094,-0.7995705009,-0.7943512797,-0.7879720926,-0.7867156267,-0.7867156267,-0.7876821756,-0.7905817628,-0.7936747074,-0.7974441648,-0.8013103604,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8024701476,-0.8020835519,-0.8022768497,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8022768497,-0.8021802306,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8024701476,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8023735285,-0.8001505136,-0.796284318,-0.7917416096,-0.7871989012,-0.7849758267,-0.7892286181,-0.7966709137,-0.8000538349,-0.8014069796,-0.8028567433,-0.8017935753,-0.7992805243,-0.7979274392,-0.7976374626,-0.7977340817,-0.7976374626,-0.7976374626,-0.7974441648,-0.797347486,-0.7974441648,-0.7974441648,-0.797347486,-0.7971541882,-0.7969608903,-0.7968642116,-0.7968642116,-0.7968642116,-0.7967675924,-0.7963809967,-0.7960910201,-0.795994401,-0.796284318,-0.796284318,-0.796284318,-0.7963809967,-0.7963809967,-0.7963809967,-0.7963809967,-0.7960910201,-0.7958977222,-0.7958977222,-0.795994401,-0.7961876988,-0.796284318,-0.7963809967,-0.7964776158,-0.7963809967,-0.796284318,-0.7961876988,-0.796284318,-0.796284318,-0.7961876988,-0.7961876988,-0.796284318,-0.7961876988,-0.7961876988,-0.796284318,-0.7958977222,-0.7957044244,-0.795994401,-0.7960910201,-0.795994401,-0.7960910201,-0.7958977222,-0.7955111265,-0.7955111265,-0.7963809967,-0.7978307605,-0.7976374626,-0.795994401,-0.7955111265,-0.7958010435,-0.7958010435,-0.7958010435,-0.7957044244,-0.7956077456,-0.7958010435,-0.7958977222,-0.7958977222,-0.7957044244,-0.7955111265,-0.7955111265,-0.7957044244,-0.7957044244,-0.7958010435,-0.7961876988,-0.7961876988,-0.7958010435,-0.7956077456,-0.7956077456,-0.7957044244,-0.7957044244,-0.7956077456,-0.7955111265,-0.7958010435,-0.7958010435,-0.7957044244,-0.7956077456,-0.7958010435,-0.7957044244,-0.7953178287,-0.7955111265,-0.7965742946,-0.7974441648,-0.797057569,-0.795994401,-0.7953178287,-0.7952211499,-0.7953178287,-0.7953178287,-0.7953178287,-0.7955111265,-0.7955111265,-0.7954144478,-0.7954144478,-0.7953178287,-0.7954144478,-0.7955111265,-0.7955111265,-0.7957044244,-0.7956077456,-0.7953178287,-0.7953178287,-0.7955111265,-0.7954144478,-0.7953178287,-0.7953178287,-0.7955111265,-0.7956077456,-0.7955111265,-0.7955111265,-0.7957044244,-0.7958977222,-0.795994401,-0.795994401,-0.7960910201,-0.7960910201,-0.7960910201,-0.796284318,-0.796284318,-0.796284318,-0.7963809967,-0.7964776158,-0.7966709137,-0.7968642116,-0.7969608903,-0.797057569,-0.7972508669,-0.7972508669,-0.797057569,-0.797057569,-0.7971541882,-0.7972508669,-0.797347486,-0.7975407839,-0.7976374626,-0.7981207371,-0.7997637987,-0.8013103604,-0.8024701476,-0.8021802306,-0.7994738221,-0.7988939285,-0.7990872264,-0.7929013968,-0.7867156267,-0.7865223289,-0.786618948,-0.7870056033,-0.7901951671,-0.793964684,-0.7981207371,-0.801890254,-0.8026634455,-0.8024701476,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8024701476,-0.8028567433,-0.8023735285,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8017935753,-0.8017935753,-0.8025668263,-0.8025668263,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8028567433,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8025668263,-0.7999572158,-0.7951245308,-0.7903884649,-0.7865223289,-0.7847825289,-0.7896152139,-0.797347486,-0.8003438115,-0.8015036583,-0.8026634455,-0.8016002774,-0.7989906073,-0.7978307605,-0.7975407839,-0.7975407839,-0.797347486,-0.797347486,-0.7977340817,-0.7976374626,-0.7974441648,-0.7975407839,-0.7976374626,-0.797347486,-0.7972508669,-0.7972508669,-0.7969608903,-0.7967675924,-0.7968642116,-0.7966709137,-0.7963809967,-0.7963809967,-0.7963809967,-0.7961876988,-0.7961876988,-0.796284318,-0.796284318,-0.796284318,-0.7961876988,-0.795994401,-0.7958010435,-0.7958010435,-0.7958010435,-0.7958977222,-0.7960910201,-0.796284318,-0.7961876988,-0.7961876988,-0.7961876988,-0.7960910201,-0.7960910201,-0.7963809967,-0.796284318,-0.7960910201,-0.7961876988,-0.7960910201,-0.7961876988,-0.7964776158,-0.7961876988,-0.7957044244,-0.7956077456,-0.7958010435,-0.795994401,-0.7960910201,-0.7958010435,-0.7958010435,-0.7958977222,-0.7953178287,-0.7956077456,-0.797057569,-0.7971541882,-0.795994401,-0.7957044244,-0.7958977222,-0.7958977222,-0.7958977222,-0.7958010435,-0.7958977222,-0.7960910201,-0.7958977222,-0.7958010435,-0.7958010435,-0.7956077456,-0.7957044244,-0.7957044244,-0.795994401,-0.7965742946,-0.7966709137,-0.7960910201,-0.7958977222,-0.7958977222,-0.7958010435,-0.7957044244,-0.7956077456,-0.7958010435,-0.795994401,-0.7958977222,-0.7958977222,-0.7958977222,-0.7958010435,-0.7956077456,-0.7958010435,-0.7966709137,-0.7972508669,-0.7966709137,-0.7957044244,-0.7954144478,-0.7955111265,-0.7954144478,-0.7953178287,-0.7953178287,-0.7954144478,-0.7954144478,-0.7953178287,-0.7952211499,-0.7952211499,-0.7952211499,-0.7954144478,-0.7957044244,-0.7958010435,-0.7957044244,-0.7956077456,-0.7955111265,-0.7955111265,-0.7954144478,-0.7954144478,-0.7955111265,-0.7955111265,-0.7955111265,-0.7956077456,-0.7956077456,-0.7956077456,-0.7958977222,-0.7960910201,-0.7960910201,-0.796284318,-0.7963809967,-0.796284318,-0.796284318,-0.7963809967,-0.7964776158,-0.7966709137,-0.7968642116,-0.7967675924,-0.7968642116,-0.797057569,-0.7972508669,-0.7972508669,-0.797347486,-0.7974441648,-0.797347486,-0.7972508669,-0.7971541882,-0.7974441648,-0.7977340817,-0.7977340817,-0.7977340817,-0.7984106541,-0.7999572158,-0.8015036583,-0.8026634455,-0.8020835519,-0.7992805243,-0.7988939285,-0.7987006307,-0.7923215032,-0.786618948,-0.7864256501,-0.786618948,-0.7876821756,-0.7915482521,-0.7950278521,-0.7987006307,-0.8020835519,-0.8025668263,-0.8024701476,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8025668263,-0.8022768497,-0.8025668263,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8024701476,-0.8027601242,-0.8027601242,-0.8021802306,-0.801890254,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8021802306,-0.8022768497,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8022768497,-0.7995705009,-0.7951245308,-0.7906783819,-0.7867156267,-0.7851691246,-0.7902917862,-0.7976374626,-0.8000538349,-0.8015036583,-0.8025668263,-0.8013103604,-0.7985073328,-0.7978307605,-0.7977340817,-0.7975407839,-0.797347486,-0.797347486,-0.7972508669,-0.797347486,-0.7977340817,-0.7975407839,-0.797347486,-0.7974441648,-0.7974441648,-0.7972508669,-0.797057569,-0.7968642116,-0.7969608903,-0.7967675924,-0.7965742946,-0.7965742946,-0.7963809967,-0.7964776158,-0.7965742946,-0.796284318,-0.7961876988,-0.796284318,-0.7961876988,-0.795994401,-0.795994401,-0.7958977222,-0.7958010435,-0.7958010435,-0.7958977222,-0.7958977222,-0.7958977222,-0.7960910201,-0.7960910201,-0.795994401,-0.7960910201,-0.7963809967,-0.7963809967,-0.7961876988,-0.7960910201,-0.7960910201,-0.7961876988,-0.7963809967,-0.7961876988,-0.7958010435,-0.7958010435,-0.795994401,-0.7958977222,-0.7958977222,-0.795994401,-0.7958010435,-0.7957044244,-0.7956077456,-0.7955111265,-0.7960910201,-0.7968642116,-0.7964776158,-0.7958010435,-0.795994401,-0.7960910201,-0.7958010435,-0.7957044244,-0.7958977222,-0.7958977222,-0.7958010435,-0.7957044244,-0.7958010435,-0.7958010435,-0.7956077456,-0.7957044244,-0.796284318,-0.7966709137,-0.7964776158,-0.7961876988,-0.795994401,-0.7958977222,-0.7958010435,-0.7956077456,-0.7957044244,-0.7958977222,-0.7958010435,-0.7958010435,-0.7958977222,-0.7958010435,-0.7957044244,-0.7961876988,-0.7968642116,-0.7966709137,-0.7958010435,-0.7954144478,-0.7954144478,-0.7954144478,-0.7954144478,-0.7953178287,-0.7952211499,-0.7951245308,-0.7951245308,-0.7952211499,-0.7953178287,-0.7953178287,-0.7955111265,-0.7953178287,-0.7953178287,-0.7956077456,-0.7958010435,-0.7956077456,-0.7955111265,-0.7954144478,-0.7954144478,-0.7955111265,-0.7955111265,-0.7955111265,-0.7954144478,-0.7955111265,-0.7955111265,-0.7955111265,-0.7957044244,-0.7960910201,-0.7961876988,-0.7964776158,-0.7967675924,-0.7968642116,-0.7967675924,-0.7966709137,-0.7967675924,-0.7968642116,-0.7969608903,-0.7969608903,-0.797057569,-0.7971541882,-0.797057569,-0.7972508669,-0.7974441648,-0.7974441648,-0.7974441648,-0.7976374626,-0.7975407839,-0.797347486,-0.797347486,-0.7976374626,-0.7982173562,-0.7984106541,-0.7989906073,-0.8007304072,-0.801890254,-0.8025668263,-0.8021802306,-0.7994738221,-0.7987006307,-0.7986039519,-0.7931913733,-0.7872955203,-0.7860390544,-0.7867156267,-0.7893252969,-0.7928047776,-0.7954144478,-0.7988939285,-0.801890254,-0.8025668263,-0.8024701476,-0.8025668263,-0.8025668263,-0.8026634455,-0.8025668263,-0.8024701476,-0.8025668263,-0.8026634455,-0.8025668263,-0.8024701476,-0.8025668263,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8020835519,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8016969562,-0.8015036583,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8024701476,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8020835519,-0.7994738221,-0.7953178287,-0.7912583351,-0.7872955203,-0.7853624225,-0.7903884649,-0.797347486,-0.7998605371,-0.8016969562,-0.8026634455,-0.801117003,-0.7987006307,-0.7977340817,-0.7975407839,-0.7975407839,-0.7974441648,-0.797347486,-0.7972508669,-0.7972508669,-0.7974441648,-0.7974441648,-0.7975407839,-0.7975407839,-0.797347486,-0.797057569,-0.7967675924,-0.7968642116,-0.797057569,-0.7969608903,-0.7968642116,-0.7966709137,-0.7965742946,-0.7964776158,-0.7964776158,-0.796284318,-0.7961876988,-0.7961876988,-0.7963809967,-0.7963809967,-0.7961876988,-0.7958977222,-0.7958010435,-0.7958010435,-0.7958977222,-0.7960910201,-0.7961876988,-0.796284318,-0.7963809967,-0.7960910201,-0.7958977222,-0.7961876988,-0.7961876988,-0.7960910201,-0.796284318,-0.7961876988,-0.7961876988,-0.7963809967,-0.7961876988,-0.7958977222,-0.795994401,-0.7960910201,-0.795994401,-0.795994401,-0.795994401,-0.7958010435,-0.7957044244,-0.7960910201,-0.7960910201,-0.7958977222,-0.7963809967,-0.7965742946,-0.7960910201,-0.7961876988,-0.7966709137,-0.7963809967,-0.7958010435,-0.7957044244,-0.7956077456,-0.7956077456,-0.7955111265,-0.7957044244,-0.7958010435,-0.7958010435,-0.795994401,-0.7963809967,-0.7964776158,-0.796284318,-0.795994401,-0.795994401,-0.7958977222,-0.7957044244,-0.7957044244,-0.7958977222,-0.7958977222,-0.7957044244,-0.7958010435,-0.7958977222,-0.795994401,-0.7963809967,-0.7967675924,-0.796284318,-0.7954144478,-0.7950278521,-0.7953178287,-0.7955111265,-0.7955111265,-0.7953178287,-0.7954144478,-0.7953178287,-0.7952211499,-0.7955111265,-0.7955111265,-0.7952211499,-0.7953178287,-0.7954144478,-0.7954144478,-0.7956077456,-0.7958010435,-0.7957044244,-0.7956077456,-0.7956077456,-0.7954144478,-0.7953178287,-0.7953178287,-0.7955111265,-0.7957044244,-0.7957044244,-0.7956077456,-0.7954144478,-0.7954144478,-0.7958977222,-0.7963809967,-0.7964776158,-0.7966709137,-0.7967675924,-0.7967675924,-0.7967675924,-0.7968642116,-0.797057569,-0.7971541882,-0.797057569,-0.7969608903,-0.7969608903,-0.7971541882,-0.797347486,-0.7976374626,-0.7977340817,-0.7978307605,-0.7979274392,-0.7979274392,-0.7977340817,-0.7975407839,-0.7979274392,-0.7985073328,-0.7990872264,-0.7991839051,-0.7996671796,-0.800827086,-0.8016969562,-0.8023735285,-0.8022768497,-0.7995705009,-0.7984106541,-0.7984106541,-0.7930946946,-0.7871022224,-0.7861357331,-0.787392199,-0.7901951671,-0.7934813499,-0.7958010435,-0.7992805243,-0.8021802306,-0.8023735285,-0.8022768497,-0.8025668263,-0.8024701476,-0.8025668263,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8024701476,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8020835519,-0.8019868731,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8019868731,-0.8016969562,-0.8026634455,-0.8022768497,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8019868731,-0.799377203,-0.7954144478,-0.7909683585,-0.7870056033,-0.7855557799,-0.7905817628,-0.7974441648,-0.7999572158,-0.8016969562,-0.8025668263,-0.801117003,-0.7985073328,-0.7977340817,-0.7975407839,-0.797347486,-0.797347486,-0.7974441648,-0.7974441648,-0.797347486,-0.7971541882,-0.7972508669,-0.797347486,-0.797347486,-0.7975407839,-0.797347486,-0.797057569,-0.797057569,-0.7971541882,-0.7969608903,-0.7968642116,-0.7969608903,-0.7967675924,-0.7965742946,-0.7963809967,-0.796284318,-0.7964776158,-0.7964776158,-0.796284318,-0.796284318,-0.7961876988,-0.7960910201,-0.795994401,-0.7958977222,-0.7958977222,-0.7961876988,-0.7961876988,-0.7958977222,-0.7960910201,-0.7960910201,-0.7957044244,-0.7958977222,-0.7964776158,-0.7964776158,-0.7963809967,-0.7960910201,-0.795994401,-0.7964776158,-0.7965742946,-0.7960910201,-0.795994401,-0.795994401,-0.7958977222,-0.7958010435,-0.7958977222,-0.7958977222,-0.7958010435,-0.7957044244,-0.7958977222,-0.7958010435,-0.795994401,-0.7967675924,-0.7969608903,-0.7966709137,-0.7964776158,-0.7965742946,-0.7965742946,-0.796284318,-0.7958010435,-0.7956077456,-0.7957044244,-0.7956077456,-0.7958010435,-0.795994401,-0.7960910201,-0.796284318,-0.7965742946,-0.7963809967,-0.7961876988,-0.7960910201,-0.7960910201,-0.7958010435,-0.7957044244,-0.7958010435,-0.7958977222,-0.795994401,-0.795994401,-0.7961876988,-0.7966709137,-0.7968642116,-0.7960910201,-0.7952211499,-0.7953178287,-0.7954144478,-0.7954144478,-0.7955111265,-0.7953178287,-0.7953178287,-0.7954144478,-0.7953178287,-0.7953178287,-0.7954144478,-0.7954144478,-0.7953178287,-0.7953178287,-0.7955111265,-0.7955111265,-0.7958010435,-0.7960910201,-0.7956077456,-0.7952211499,-0.7953178287,-0.7954144478,-0.7955111265,-0.7954144478,-0.7954144478,-0.7957044244,-0.7958977222,-0.7958010435,-0.7955111265,-0.7955111265,-0.7960910201,-0.7964776158,-0.7967675924,-0.7971541882,-0.7971541882,-0.797057569,-0.797057569,-0.7972508669,-0.797057569,-0.7971541882,-0.797347486,-0.7975407839,-0.7975407839,-0.7974441648,-0.7974441648,-0.7976374626,-0.7976374626,-0.7976374626,-0.7976374626,-0.7976374626,-0.7978307605,-0.7983140349,-0.7986039519,-0.7987973094,-0.7991839051,-0.7991839051,-0.799377203,-0.8006337881,-0.8015036583,-0.8022768497,-0.8022768497,-0.7991839051,-0.7980240583,-0.7983140349,-0.7929013968,-0.7868123055,-0.786618948,-0.7877787948,-0.7893252969,-0.7929013968,-0.796284318,-0.799377203,-0.8017935753,-0.8022768497,-0.8022768497,-0.8024701476,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8025668263,-0.8024701476,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8024701476,-0.8022768497,-0.8024701476,-0.8022768497,-0.8021802306,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8016969562,-0.8013103604,-0.8028567433,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8024701476,-0.8027601242,-0.8023735285,-0.8024701476,-0.8025668263,-0.8024701476,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8022768497,-0.7994738221,-0.7953178287,-0.7907750607,-0.7867156267,-0.7856523991,-0.7912583351,-0.7981207371,-0.8001505136,-0.8015036583,-0.8026634455,-0.8010203838,-0.7984106541,-0.7975407839,-0.7975407839,-0.7974441648,-0.7972508669,-0.797347486,-0.7974441648,-0.797347486,-0.7975407839,-0.797347486,-0.797057569,-0.797057569,-0.797057569,-0.7971541882,-0.797347486,-0.7974441648,-0.7972508669,-0.7971541882,-0.797057569,-0.7969608903,-0.7969608903,-0.7967675924,-0.7964776158,-0.7963809967,-0.7966709137,-0.7967675924,-0.7964776158,-0.7960910201,-0.795994401,-0.7958977222,-0.7958977222,-0.795994401,-0.7958977222,-0.795994401,-0.7960910201,-0.7958977222,-0.7958010435,-0.7960910201,-0.7961876988,-0.7960910201,-0.7963809967,-0.7964776158,-0.7963809967,-0.796284318,-0.7965742946,-0.7968642116,-0.7965742946,-0.7960910201,-0.795994401,-0.7960910201,-0.795994401,-0.7958977222,-0.7960910201,-0.7961876988,-0.795994401,-0.7958977222,-0.7958977222,-0.7958010435,-0.7956077456,-0.795994401,-0.7966709137,-0.797057569,-0.7967675924,-0.7964776158,-0.7967675924,-0.7972508669,-0.7966709137,-0.7958977222,-0.7958010435,-0.7958977222,-0.7958977222,-0.7960910201,-0.7963809967,-0.796284318,-0.7960910201,-0.7960910201,-0.7961876988,-0.7960910201,-0.7958977222,-0.7958977222,-0.7958977222,-0.7958010435,-0.7963809967,-0.7968642116,-0.7968642116,-0.7969608903,-0.7968642116,-0.7958977222,-0.7950278521,-0.7954144478,-0.7957044244,-0.7955111265,-0.7956077456,-0.7956077456,-0.7955111265,-0.7955111265,-0.7955111265,-0.7954144478,-0.7955111265,-0.7954144478,-0.7954144478,-0.7955111265,-0.7956077456,-0.7956077456,-0.7958977222,-0.7958010435,-0.7955111265,-0.7954144478,-0.7957044244,-0.7956077456,-0.7954144478,-0.7954144478,-0.7956077456,-0.7957044244,-0.7957044244,-0.7956077456,-0.7956077456,-0.7955111265,-0.7955111265,-0.795994401,-0.7963809967,-0.7966709137,-0.7968642116,-0.797057569,-0.7972508669,-0.797347486,-0.7971541882,-0.797057569,-0.7971541882,-0.797347486,-0.7974441648,-0.7974441648,-0.797347486,-0.797347486,-0.797347486,-0.797347486,-0.7974441648,-0.7976374626,-0.7979274392,-0.7983140349,-0.7983140349,-0.7981207371,-0.7982173562,-0.7987006307,-0.7984106541,-0.7987006307,-0.8004404902,-0.8016002774,-0.8023735285,-0.8020835519,-0.7992805243,-0.7983140349,-0.7980240583,-0.7921282053,-0.7872955203,-0.7874888182,-0.787392199,-0.7885520458,-0.7929013968,-0.7965742946,-0.7992805243,-0.8016969562,-0.8022768497,-0.8021802306,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8024701476,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8025668263,-0.8023735285,-0.8027601242,-0.8019868731,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8025668263,-0.8023735285,-0.8023735285,-0.8025668263,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8025668263,-0.8024701476,-0.7999572158,-0.7960910201,-0.791451633,-0.786329031,-0.7847825289,-0.7909683585,-0.7983140349,-0.8005371094,-0.8017935753,-0.8025668263,-0.8012136817,-0.7986039519,-0.7976374626,-0.7976374626,-0.7975407839,-0.7974441648,-0.7974441648,-0.7974441648,-0.797347486,-0.7972508669,-0.7971541882,-0.7971541882,-0.797057569,-0.797057569,-0.7972508669,-0.7971541882,-0.797057569,-0.797057569,-0.7971541882,-0.7971541882,-0.7972508669,-0.797057569,-0.7968642116,-0.7968642116,-0.7966709137,-0.7966709137,-0.7967675924,-0.7964776158,-0.7961876988,-0.795994401,-0.795994401,-0.795994401,-0.7958977222,-0.7958977222,-0.7960910201,-0.795994401,-0.795994401,-0.795994401,-0.7960910201,-0.796284318,-0.796284318,-0.796284318,-0.7963809967,-0.7964776158,-0.7964776158,-0.7967675924,-0.7969608903,-0.7966709137,-0.7960910201,-0.7958977222,-0.7961876988,-0.796284318,-0.7961876988,-0.796284318,-0.7963809967,-0.7961876988,-0.7960910201,-0.795994401,-0.7958977222,-0.7957044244,-0.7957044244,-0.7958010435,-0.7960910201,-0.7966709137,-0.7971541882,-0.7972508669,-0.7972508669,-0.797057569,-0.7963809967,-0.795994401,-0.7960910201,-0.7960910201,-0.796284318,-0.7961876988,-0.795994401,-0.7961876988,-0.796284318,-0.7960910201,-0.7960910201,-0.795994401,-0.795994401,-0.795994401,-0.7965742946,-0.7976374626,-0.7981207371,-0.7977340817,-0.7968642116,-0.7958010435,-0.7952211499,-0.7954144478,-0.7958010435,-0.7958010435,-0.7957044244,-0.7956077456,-0.7955111265,-0.7955111265,-0.7955111265,-0.7957044244,-0.7958010435,-0.7957044244,-0.7957044244,-0.7956077456,-0.7957044244,-0.7957044244,-0.7957044244,-0.795994401,-0.7961876988,-0.7960910201,-0.7958977222,-0.7956077456,-0.7954144478,-0.7954144478,-0.7955111265,-0.7954144478,-0.7955111265,-0.7957044244,-0.7957044244,-0.7957044244,-0.7956077456,-0.7956077456,-0.795994401,-0.7964776158,-0.7966709137,-0.7966709137,-0.7968642116,-0.7969608903,-0.7967675924,-0.7967675924,-0.7969608903,-0.797057569,-0.797057569,-0.7972508669,-0.7971541882,-0.7972508669,-0.797347486,-0.7972508669,-0.7972508669,-0.7975407839,-0.7978307605,-0.7980240583,-0.7981207371,-0.7982173562,-0.7984106541,-0.7986039519,-0.7984106541,-0.7978307605,-0.7984106541,-0.8001505136,-0.8015036583,-0.8025668263,-0.8019868731,-0.7992805243,-0.7988939285,-0.7978307605,-0.7917416096,-0.7871989012,-0.7870056033,-0.7874888182,-0.7896152139,-0.7936747074,-0.7967675924,-0.7995705009,-0.8019868731,-0.8023735285,-0.8022768497,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8028567433,-0.8026634455,-0.8024701476,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8026634455,-0.8028567433,-0.8025668263,-0.8026634455,-0.8022768497,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.801890254,-0.8016002774,-0.8025668263,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8022768497,-0.8021802306,-0.8023735285,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8024701476,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8006337881,-0.7964776158,-0.7912583351,-0.7865223289,-0.7853624225,-0.7910650373,-0.7984106541,-0.8006337881,-0.8017935753,-0.8023735285,-0.8014069796,-0.7987006307,-0.7981207371,-0.7977340817,-0.7974441648,-0.7974441648,-0.7976374626,-0.7974441648,-0.7972508669,-0.7971541882,-0.797057569,-0.797057569,-0.797057569,-0.797057569,-0.7969608903,-0.7967675924,-0.7968642116,-0.797057569,-0.7969608903,-0.797057569,-0.7971541882,-0.7971541882,-0.797057569,-0.7967675924,-0.7963809967,-0.7964776158,-0.7967675924,-0.7965742946,-0.796284318,-0.7963809967,-0.7961876988,-0.795994401,-0.7960910201,-0.7961876988,-0.795994401,-0.795994401,-0.7960910201,-0.7960910201,-0.7958977222,-0.795994401,-0.7961876988,-0.796284318,-0.796284318,-0.7963809967,-0.7963809967,-0.7964776158,-0.7968642116,-0.7968642116,-0.7963809967,-0.7961876988,-0.7963809967,-0.7961876988,-0.796284318,-0.7964776158,-0.796284318,-0.7960910201,-0.795994401,-0.795994401,-0.795994401,-0.7958977222,-0.7958977222,-0.795994401,-0.795994401,-0.795994401,-0.7963809967,-0.7968642116,-0.797057569,-0.7969608903,-0.7968642116,-0.7966709137,-0.7966709137,-0.7964776158,-0.7963809967,-0.7967675924,-0.7966709137,-0.7961876988,-0.795994401,-0.7960910201,-0.7960910201,-0.7961876988,-0.7961876988,-0.7965742946,-0.7977340817,-0.7985073328,-0.7982173562,-0.7967675924,-0.7956077456,-0.7953178287,-0.7956077456,-0.7958010435,-0.7958010435,-0.7958977222,-0.7958010435,-0.7955111265,-0.7955111265,-0.7957044244,-0.7958977222,-0.795994401,-0.7960910201,-0.7960910201,-0.7958977222,-0.7958010435,-0.7958010435,-0.7960910201,-0.7961876988,-0.7961876988,-0.7960910201,-0.7958977222,-0.7957044244,-0.7955111265,-0.7954144478,-0.7954144478,-0.7954144478,-0.7955111265,-0.7957044244,-0.7957044244,-0.7956077456,-0.7957044244,-0.7958010435,-0.7958010435,-0.7960910201,-0.7965742946,-0.7968642116,-0.7967675924,-0.7966709137,-0.7967675924,-0.7968642116,-0.7968642116,-0.7967675924,-0.7966709137,-0.7968642116,-0.7971541882,-0.7971541882,-0.7971541882,-0.797347486,-0.7974441648,-0.7976374626,-0.7979274392,-0.7981207371,-0.7983140349,-0.7982173562,-0.7980240583,-0.7978307605,-0.7979274392,-0.7982173562,-0.7976374626,-0.7978307605,-0.7999572158,-0.8017935753,-0.8026634455,-0.8017935753,-0.7991839051,-0.7991839051,-0.7983140349,-0.7911616564,-0.7860390544,-0.7862323523,-0.7871022224,-0.7897118926,-0.793964684,-0.7967675924,-0.7992805243,-0.8016969562,-0.8022768497,-0.8021802306,-0.8024701476,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8025668263,-0.8026634455,-0.8025668263,-0.8024701476,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8024701476,-0.8024701476,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8021802306,-0.8022768497,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8024701476,-0.8024701476,-0.8023735285,-0.8023735285,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8025668263,-0.8024701476,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8013103604,-0.7971541882,-0.7922248244,-0.7876821756,-0.7854591012,-0.7904850841,-0.7981207371,-0.8007304072,-0.8016969562,-0.8025668263,-0.8015036583,-0.7990872264,-0.7983140349,-0.7980240583,-0.7976374626,-0.7974441648,-0.797347486,-0.7972508669,-0.7972508669,-0.7972508669,-0.7969608903,-0.7967675924,-0.7969608903,-0.797057569,-0.7968642116,-0.7967675924,-0.7968642116,-0.7969608903,-0.797057569,-0.797057569,-0.7969608903,-0.7968642116,-0.7968642116,-0.7968642116,-0.7967675924,-0.7965742946,-0.7965742946,-0.7964776158,-0.796284318,-0.7961876988,-0.795994401,-0.795994401,-0.795994401,-0.795994401,-0.795994401,-0.7961876988,-0.7961876988,-0.795994401,-0.7960910201,-0.796284318,-0.7961876988,-0.7961876988,-0.7963809967,-0.7963809967,-0.796284318,-0.7963809967,-0.7967675924,-0.7967675924,-0.7963809967,-0.796284318,-0.7964776158,-0.7964776158,-0.7964776158,-0.7965742946,-0.7964776158,-0.796284318,-0.796284318,-0.7961876988,-0.795994401,-0.795994401,-0.795994401,-0.7960910201,-0.7961876988,-0.796284318,-0.796284318,-0.796284318,-0.7964776158,-0.7969608903,-0.797347486,-0.7974441648,-0.7972508669,-0.7968642116,-0.7965742946,-0.7965742946,-0.7963809967,-0.795994401,-0.795994401,-0.796284318,-0.7961876988,-0.7960910201,-0.7968642116,-0.7980240583,-0.7988939285,-0.7986039519,-0.7971541882,-0.7960910201,-0.7960910201,-0.7961876988,-0.7960910201,-0.7958977222,-0.7958010435,-0.7957044244,-0.7957044244,-0.7958977222,-0.795994401,-0.795994401,-0.795994401,-0.7960910201,-0.7961876988,-0.7961876988,-0.795994401,-0.7958977222,-0.7960910201,-0.7960910201,-0.7960910201,-0.7963809967,-0.796284318,-0.7958977222,-0.7958010435,-0.7958010435,-0.7956077456,-0.7954144478,-0.7955111265,-0.7957044244,-0.7957044244,-0.7956077456,-0.7957044244,-0.7957044244,-0.7956077456,-0.7958010435,-0.796284318,-0.7964776158,-0.7963809967,-0.7964776158,-0.7966709137,-0.7966709137,-0.7965742946,-0.7966709137,-0.7967675924,-0.7966709137,-0.7965742946,-0.7968642116,-0.7972508669,-0.797347486,-0.7975407839,-0.7978307605,-0.7980240583,-0.7982173562,-0.7980240583,-0.7977340817,-0.7975407839,-0.7974441648,-0.7975407839,-0.7979274392,-0.7983140349,-0.7975407839,-0.7979274392,-0.8004404902,-0.8019868731,-0.8026634455,-0.8015036583,-0.7989906073,-0.7994738221,-0.7974441648,-0.7895185947,-0.7854591012,-0.7865223289,-0.7872955203,-0.7897118926,-0.7936747074,-0.7964776158,-0.799377203,-0.8020835519,-0.8025668263,-0.8021802306,-0.8023735285,-0.8025668263,-0.8024701476,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8024701476,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8020835519,-0.8019868731,-0.8025668263,-0.8024701476,-0.8025668263,-0.8028567433,-0.8026634455,-0.8028567433,-0.8028567433,-0.8025668263,-0.8023735285,-0.8024701476,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8025668263,-0.8027601242,-0.8021802306,-0.7985073328,-0.7933846712,-0.7884553671,-0.7858456969,-0.7902917862,-0.7979274392,-0.8007304072,-0.8016002774,-0.8021802306,-0.8021802306,-0.799377203,-0.7984106541,-0.7983140349,-0.7977340817,-0.7972508669,-0.7974441648,-0.797347486,-0.7972508669,-0.7971541882,-0.7968642116,-0.7968642116,-0.7969608903,-0.7968642116,-0.7967675924,-0.7965742946,-0.7964776158,-0.7965742946,-0.7966709137,-0.7967675924,-0.7968642116,-0.7966709137,-0.7966709137,-0.7967675924,-0.7965742946,-0.7964776158,-0.7964776158,-0.7963809967,-0.796284318,-0.795994401,-0.7958977222,-0.795994401,-0.795994401,-0.795994401,-0.7960910201,-0.7960910201,-0.795994401,-0.795994401,-0.796284318,-0.796284318,-0.7961876988,-0.7963809967,-0.796284318,-0.7961876988,-0.7963809967,-0.7965742946,-0.7964776158,-0.7967675924,-0.7966709137,-0.796284318,-0.7963809967,-0.7965742946,-0.7964776158,-0.7963809967,-0.7961876988,-0.7960910201,-0.7961876988,-0.7961876988,-0.7961876988,-0.7960910201,-0.7961876988,-0.7960910201,-0.7958977222,-0.795994401,-0.7961876988,-0.7963809967,-0.796284318,-0.796284318,-0.797057569,-0.7978307605,-0.7975407839,-0.797057569,-0.7968642116,-0.7965742946,-0.7963809967,-0.7964776158,-0.7965742946,-0.7966709137,-0.7968642116,-0.7975407839,-0.7987973094,-0.7992805243,-0.7986039519,-0.7974441648,-0.7964776158,-0.7963809967,-0.796284318,-0.7960910201,-0.795994401,-0.7958977222,-0.7958977222,-0.7960910201,-0.795994401,-0.7960910201,-0.796284318,-0.7963809967,-0.7963809967,-0.7963809967,-0.7963809967,-0.7961876988,-0.795994401,-0.7961876988,-0.796284318,-0.796284318,-0.7963809967,-0.7964776158,-0.796284318,-0.7960910201,-0.795994401,-0.7958010435,-0.7956077456,-0.7955111265,-0.7956077456,-0.7956077456,-0.7956077456,-0.7957044244,-0.7957044244,-0.7957044244,-0.7958010435,-0.795994401,-0.7960910201,-0.7963809967,-0.7964776158,-0.7967675924,-0.797057569,-0.797057569,-0.7969608903,-0.7968642116,-0.7969608903,-0.7969608903,-0.7968642116,-0.797057569,-0.797347486,-0.7974441648,-0.7977340817,-0.7981207371,-0.7981207371,-0.7977340817,-0.797347486,-0.7971541882,-0.7974441648,-0.7976374626,-0.797347486,-0.7975407839,-0.7980240583,-0.7974441648,-0.7982173562,-0.8009237051,-0.8019868731,-0.8023735285,-0.8016002774,-0.7989906073,-0.7988939285,-0.7968642116,-0.7893252969,-0.7857490778,-0.7870056033,-0.787392199,-0.789421916,-0.7936747074,-0.7967675924,-0.7997637987,-0.8024701476,-0.8025668263,-0.8020835519,-0.8022768497,-0.8024701476,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8024701476,-0.8025668263,-0.8026634455,-0.8025668263,-0.8026634455,-0.8028567433,-0.8026634455,-0.8023735285,-0.8021802306,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.801890254,-0.8013103604,-0.8026634455,-0.8024701476,-0.8026634455,-0.8023735285,-0.8025668263,-0.8027601242,-0.8026634455,-0.8024701476,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8025668263,-0.8024701476,-0.8025668263,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8024701476,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8022768497,-0.7991839051,-0.7945445776,-0.789421916,-0.7857490778,-0.7897118926,-0.7976374626,-0.8007304072,-0.8015036583,-0.8025668263,-0.8022768497,-0.7998605371,-0.7985073328,-0.7981207371,-0.7976374626,-0.7972508669,-0.797347486,-0.7972508669,-0.7971541882,-0.7971541882,-0.7969608903,-0.797057569,-0.797057569,-0.7968642116,-0.7966709137,-0.7964776158,-0.7963809967,-0.7965742946,-0.7965742946,-0.7964776158,-0.7965742946,-0.7964776158,-0.7964776158,-0.7964776158,-0.7963809967,-0.7963809967,-0.7964776158,-0.796284318,-0.7961876988,-0.7960910201,-0.7960910201,-0.7960910201,-0.7960910201,-0.795994401,-0.795994401,-0.7958977222,-0.7960910201,-0.7961876988,-0.7961876988,-0.7961876988,-0.796284318,-0.796284318,-0.796284318,-0.796284318,-0.7964776158,-0.7965742946,-0.7965742946,-0.7966709137,-0.7966709137,-0.7965742946,-0.7965742946,-0.7965742946,-0.7963809967,-0.7963809967,-0.7963809967,-0.7963809967,-0.796284318,-0.795994401,-0.795994401,-0.795994401,-0.7958010435,-0.7958977222,-0.7960910201,-0.795994401,-0.7958977222,-0.795994401,-0.796284318,-0.796284318,-0.7961876988,-0.7969608903,-0.7980240583,-0.7980240583,-0.7976374626,-0.7977340817,-0.7975407839,-0.7971541882,-0.7971541882,-0.7975407839,-0.7980240583,-0.7988939285,-0.7991839051,-0.7986039519,-0.7979274392,-0.7976374626,-0.797347486,-0.7964776158,-0.795994401,-0.7960910201,-0.795994401,-0.7958010435,-0.7958977222,-0.796284318,-0.796284318,-0.7961876988,-0.7961876988,-0.7963809967,-0.7965742946,-0.7966709137,-0.7964776158,-0.7963809967,-0.7963809967,-0.796284318,-0.7963809967,-0.7963809967,-0.796284318,-0.796284318,-0.7961876988,-0.7960910201,-0.796284318,-0.7960910201,-0.7958010435,-0.7957044244,-0.7956077456,-0.7956077456,-0.7958010435,-0.7958010435,-0.7955111265,-0.7956077456,-0.7958977222,-0.7961876988,-0.7961876988,-0.7964776158,-0.7967675924,-0.7967675924,-0.7965742946,-0.7968642116,-0.7969608903,-0.7968642116,-0.7971541882,-0.7974441648,-0.797347486,-0.797347486,-0.7976374626,-0.7979274392,-0.7979274392,-0.7978307605,-0.7976374626,-0.7975407839,-0.7976374626,-0.7974441648,-0.797347486,-0.797347486,-0.7971541882,-0.7976374626,-0.7979274392,-0.7964776158,-0.7975407839,-0.8012136817,-0.8021802306,-0.8021802306,-0.801890254,-0.7991839051,-0.7986039519,-0.7968642116,-0.7900984883,-0.7865223289,-0.7871989012,-0.7874888182,-0.7897118926,-0.7935779691,-0.7966709137,-0.7999572158,-0.8022768497,-0.8023735285,-0.8019868731,-0.8021802306,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8024701476,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8024701476,-0.8024701476,-0.8023735285,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8015036583,-0.801117003,-0.8023735285,-0.8023735285,-0.8025668263,-0.8027601242,-0.8024701476,-0.8023735285,-0.8024701476,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8023735285,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8024701476,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8023735285,-0.8023735285,-0.8006337881,-0.7969608903,-0.7916449308,-0.7861357331,-0.7881653905,-0.7965742946,-0.8007304072,-0.801117003,-0.8025668263,-0.8025668263,-0.8002471328,-0.7986039519,-0.7981207371,-0.7978307605,-0.7976374626,-0.7975407839,-0.7972508669,-0.7972508669,-0.7974441648,-0.797347486,-0.797057569,-0.7969608903,-0.7969608903,-0.7967675924,-0.7965742946,-0.7966709137,-0.7967675924,-0.7966709137,-0.7965742946,-0.7964776158,-0.796284318,-0.796284318,-0.796284318,-0.796284318,-0.7963809967,-0.796284318,-0.795994401,-0.7958977222,-0.795994401,-0.7960910201,-0.7958977222,-0.7958977222,-0.795994401,-0.7960910201,-0.7960910201,-0.795994401,-0.7958977222,-0.795994401,-0.7961876988,-0.7963809967,-0.7963809967,-0.7964776158,-0.7965742946,-0.7964776158,-0.796284318,-0.7964776158,-0.7963809967,-0.796284318,-0.7964776158,-0.7965742946,-0.7965742946,-0.7964776158,-0.7965742946,-0.7965742946,-0.7964776158,-0.796284318,-0.7960910201,-0.795994401,-0.7958010435,-0.7958010435,-0.7960910201,-0.7961876988,-0.795994401,-0.795994401,-0.795994401,-0.7961876988,-0.796284318,-0.7958977222,-0.7961876988,-0.7976374626,-0.7983140349,-0.7984106541,-0.7983140349,-0.7980240583,-0.7977340817,-0.7972508669,-0.7980240583,-0.7987973094,-0.7983140349,-0.7978307605,-0.7977340817,-0.7979274392,-0.7976374626,-0.7969608903,-0.7964776158,-0.7960910201,-0.795994401,-0.795994401,-0.7960910201,-0.7961876988,-0.796284318,-0.7961876988,-0.7961876988,-0.7961876988,-0.796284318,-0.7963809967,-0.7965742946,-0.7967675924,-0.7967675924,-0.7965742946,-0.7965742946,-0.7965742946,-0.796284318,-0.7961876988,-0.7963809967,-0.7965742946,-0.7966709137,-0.7964776158,-0.795994401,-0.7957044244,-0.7957044244,-0.7957044244,-0.7957044244,-0.7957044244,-0.7957044244,-0.7957044244,-0.7957044244,-0.7958010435,-0.7961876988,-0.7963809967,-0.7963809967,-0.7966709137,-0.7968642116,-0.7969608903,-0.797347486,-0.7974441648,-0.7974441648,-0.7976374626,-0.7977340817,-0.7974441648,-0.7974441648,-0.7977340817,-0.7977340817,-0.7975407839,-0.7974441648,-0.7975407839,-0.7975407839,-0.7975407839,-0.7974441648,-0.797347486,-0.7975407839,-0.797347486,-0.7976374626,-0.7982173562,-0.7969608903,-0.797347486,-0.800827086,-0.8019868731,-0.8021802306,-0.8013103604,-0.7987973094,-0.7987973094,-0.7965742946,-0.7897118926,-0.7865223289,-0.7871022224,-0.7874888182,-0.7900018692,-0.7936747074,-0.7968642116,-0.8000538349,-0.8020835519,-0.8023735285,-0.8021802306,-0.8022768497,-0.8024701476,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8022768497,-0.8023735285,-0.801890254,-0.8017935753,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.801890254,-0.8017935753,-0.8027601242,-0.8027601242,-0.8025668263,-0.8022768497,-0.8023735285,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8024701476,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8024701476,-0.8025668263,-0.8017935753,-0.7984106541,-0.7935779691,-0.7876821756,-0.787392199,-0.7952211499,-0.8006337881,-0.8009237051,-0.8023735285,-0.8025668263,-0.8007304072,-0.7987973094,-0.7983140349,-0.7981207371,-0.7977340817,-0.7976374626,-0.7977340817,-0.7975407839,-0.797347486,-0.7972508669,-0.7971541882,-0.797057569,-0.7969608903,-0.7967675924,-0.7966709137,-0.7965742946,-0.7966709137,-0.7968642116,-0.7969608903,-0.7966709137,-0.7965742946,-0.7964776158,-0.796284318,-0.795994401,-0.795994401,-0.7961876988,-0.7960910201,-0.7958010435,-0.795994401,-0.7963809967,-0.7961876988,-0.7958977222,-0.795994401,-0.7961876988,-0.7958977222,-0.7956077456,-0.7956077456,-0.7958010435,-0.7958977222,-0.7961876988,-0.796284318,-0.7960910201,-0.796284318,-0.7964776158,-0.7960910201,-0.7960910201,-0.7963809967,-0.7963809967,-0.796284318,-0.7963809967,-0.7964776158,-0.7965742946,-0.7964776158,-0.796284318,-0.7960910201,-0.795994401,-0.795994401,-0.7958010435,-0.7957044244,-0.7957044244,-0.7957044244,-0.7956077456,-0.7955111265,-0.7956077456,-0.7958977222,-0.795994401,-0.795994401,-0.7958977222,-0.7960910201,-0.7968642116,-0.7978307605,-0.7987973094,-0.7987973094,-0.7978307605,-0.7972508669,-0.7968642116,-0.7985073328,-0.7984106541,-0.7977340817,-0.7967675924,-0.797057569,-0.7974441648,-0.7967675924,-0.796284318,-0.7961876988,-0.7958977222,-0.7958977222,-0.7958977222,-0.7958010435,-0.795994401,-0.7960910201,-0.7961876988,-0.7960910201,-0.7961876988,-0.796284318,-0.7963809967,-0.7963809967,-0.7965742946,-0.7967675924,-0.7967675924,-0.7963809967,-0.796284318,-0.7964776158,-0.7964776158,-0.7966709137,-0.7968642116,-0.7966709137,-0.7963809967,-0.795994401,-0.7958010435,-0.7957044244,-0.7955111265,-0.7955111265,-0.7958977222,-0.7958977222,-0.7956077456,-0.7955111265,-0.7958010435,-0.7961876988,-0.7966709137,-0.797057569,-0.797057569,-0.7971541882,-0.7974441648,-0.7971541882,-0.7967675924,-0.7967675924,-0.7969608903,-0.7971541882,-0.797347486,-0.7975407839,-0.7974441648,-0.797347486,-0.7974441648,-0.7975407839,-0.797347486,-0.797347486,-0.7974441648,-0.7975407839,-0.7975407839,-0.7974441648,-0.7974441648,-0.7977340817,-0.7982173562,-0.7980240583,-0.7992805243,-0.8014069796,-0.8020835519,-0.8023735285,-0.8010203838,-0.7989906073,-0.7995705009,-0.795994401,-0.7884553671,-0.7865223289,-0.7871989012,-0.7872955203,-0.7902917862,-0.7942546606,-0.7968642116,-0.7997637987,-0.8020835519,-0.8022768497,-0.8021802306,-0.8022768497,-0.8022768497,-0.8024701476,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8024701476,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8024701476,-0.8023735285,-0.8024701476,-0.801890254,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8019868731,-0.8019868731,-0.8023735285,-0.8024701476,-0.8024701476,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8024701476,-0.8028567433,-0.8024701476,-0.8025668263,-0.8024701476,-0.8025668263,-0.8022768497,-0.7998605371,-0.7953178287,-0.7892286181,-0.7871989012,-0.7935779691,-0.8002471328,-0.8013103604,-0.8017935753,-0.8026634455,-0.8014069796,-0.7990872264,-0.7979274392,-0.7977340817,-0.7974441648,-0.797347486,-0.7977340817,-0.7977340817,-0.797347486,-0.7972508669,-0.7972508669,-0.7972508669,-0.7972508669,-0.797057569,-0.797057569,-0.7969608903,-0.7968642116,-0.7968642116,-0.7968642116,-0.7968642116,-0.7967675924,-0.7965742946,-0.7964776158,-0.7963809967,-0.7963809967,-0.7963809967,-0.7961876988,-0.7958977222,-0.7958010435,-0.7960910201,-0.7960910201,-0.795994401,-0.795994401,-0.7960910201,-0.795994401,-0.7958977222,-0.7958977222,-0.7958010435,-0.7958010435,-0.795994401,-0.796284318,-0.796284318,-0.7961876988,-0.7964776158,-0.7966709137,-0.7964776158,-0.7963809967,-0.7963809967,-0.7963809967,-0.7963809967,-0.7964776158,-0.7964776158,-0.795994401,-0.7958977222,-0.7960910201,-0.7958977222,-0.7958010435,-0.7958010435,-0.7957044244,-0.7957044244,-0.7956077456,-0.7956077456,-0.7955111265,-0.7955111265,-0.7956077456,-0.7958010435,-0.7960910201,-0.7960910201,-0.796284318,-0.7967675924,-0.7974441648,-0.7988939285,-0.7989906073,-0.7975407839,-0.7972508669,-0.7971541882,-0.7984106541,-0.7976374626,-0.7966709137,-0.7945445776,-0.7955111265,-0.7966709137,-0.796284318,-0.7961876988,-0.7961876988,-0.795994401,-0.795994401,-0.795994401,-0.7958977222,-0.7958010435,-0.7958977222,-0.7961876988,-0.7961876988,-0.7960910201,-0.7960910201,-0.7960910201,-0.7961876988,-0.7963809967,-0.7964776158,-0.7963809967,-0.7964776158,-0.7965742946,-0.7963809967,-0.7968642116,-0.7976374626,-0.797347486,-0.7967675924,-0.7966709137,-0.796284318,-0.7957044244,-0.7955111265,-0.7955111265,-0.7956077456,-0.7957044244,-0.7958010435,-0.7958010435,-0.7956077456,-0.7958010435,-0.796284318,-0.7966709137,-0.7969608903,-0.7968642116,-0.7964776158,-0.7961876988,-0.796284318,-0.7965742946,-0.7967675924,-0.7969608903,-0.7971541882,-0.7972508669,-0.7971541882,-0.7974441648,-0.7975407839,-0.797347486,-0.7971541882,-0.797347486,-0.7972508669,-0.797057569,-0.7972508669,-0.797347486,-0.7974441648,-0.7976374626,-0.7978307605,-0.7977340817,-0.7981207371,-0.8003438115,-0.8020835519,-0.8019868731,-0.8022768497,-0.800827086,-0.7992805243,-0.8000538349,-0.7955111265,-0.7875854969,-0.7860390544,-0.7868123055,-0.7869089246,-0.7900984883,-0.7940613031,-0.797057569,-0.8002471328,-0.8020835519,-0.8022768497,-0.8022768497,-0.8023735285,-0.8024701476,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8024701476,-0.8027601242,-0.8025668263,-0.8028567433,-0.8028567433,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8024701476,-0.801890254,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8022768497,-0.8020835519,-0.8024701476,-0.8024701476,-0.8025668263,-0.8026634455,-0.8024701476,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8024701476,-0.8022768497,-0.8023735285,-0.8023735285,-0.8005371094,-0.7971541882,-0.7918382287,-0.7874888182,-0.791451633,-0.7991839051,-0.8016002774,-0.8014069796,-0.8023735285,-0.8020835519,-0.7996671796,-0.7976374626,-0.7975407839,-0.7977340817,-0.797347486,-0.797347486,-0.7976374626,-0.7975407839,-0.797347486,-0.797347486,-0.7972508669,-0.797057569,-0.797057569,-0.7971541882,-0.7971541882,-0.797057569,-0.7969608903,-0.7967675924,-0.7966709137,-0.7967675924,-0.7967675924,-0.7966709137,-0.7965742946,-0.7967675924,-0.7966709137,-0.796284318,-0.7958977222,-0.7958977222,-0.796284318,-0.7961876988,-0.795994401,-0.7960910201,-0.795994401,-0.7958977222,-0.7958977222,-0.7958010435,-0.7957044244,-0.7958010435,-0.7960910201,-0.796284318,-0.7965742946,-0.7965742946,-0.7967675924,-0.7968642116,-0.7966709137,-0.796284318,-0.7961876988,-0.7961876988,-0.7963809967,-0.7964776158,-0.7961876988,-0.795994401,-0.7958977222,-0.7958010435,-0.7958010435,-0.7957044244,-0.7956077456,-0.7955111265,-0.7957044244,-0.7958010435,-0.7956077456,-0.7954144478,-0.7955111265,-0.7954144478,-0.7955111265,-0.7960910201,-0.7961876988,-0.7961876988,-0.7965742946,-0.7971541882,-0.7987006307,-0.7986039519,-0.7974441648,-0.7974441648,-0.797347486,-0.7985073328,-0.797347486,-0.7955111265,-0.7945445776,-0.7963809967,-0.7965742946,-0.7958010435,-0.7961876988,-0.7964776158,-0.7960910201,-0.7958977222,-0.7958977222,-0.7960910201,-0.7960910201,-0.7958977222,-0.7958977222,-0.7958010435,-0.795994401,-0.7961876988,-0.7961876988,-0.7961876988,-0.796284318,-0.796284318,-0.7963809967,-0.7964776158,-0.7963809967,-0.7969608903,-0.7977340817,-0.7976374626,-0.7972508669,-0.797057569,-0.7967675924,-0.7961876988,-0.7957044244,-0.7957044244,-0.7958010435,-0.7957044244,-0.7958010435,-0.7958977222,-0.7958010435,-0.7958010435,-0.795994401,-0.7960910201,-0.7963809967,-0.7967675924,-0.7967675924,-0.7966709137,-0.7968642116,-0.7971541882,-0.7971541882,-0.797347486,-0.7976374626,-0.7974441648,-0.7971541882,-0.7971541882,-0.7971541882,-0.7971541882,-0.797347486,-0.7971541882,-0.7971541882,-0.797347486,-0.7974441648,-0.7975407839,-0.7974441648,-0.7974441648,-0.7976374626,-0.7978307605,-0.7975407839,-0.7981207371,-0.8003438115,-0.801890254,-0.8022768497,-0.8024701476,-0.8004404902,-0.7992805243,-0.7996671796,-0.7942546606,-0.787392199,-0.786618948,-0.7869089246,-0.7874888182,-0.7907750607,-0.7941579819,-0.7974441648,-0.8007304072,-0.8021802306,-0.8021802306,-0.8021802306,-0.8022768497,-0.8023735285,-0.8024701476,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8024701476,-0.8024701476,-0.8025668263,-0.8025668263,-0.8024701476,-0.8022768497,-0.8022768497,-0.8024701476,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8023735285,-0.8023735285,-0.8025668263,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8024701476,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8020835519,-0.8017935753,-0.8021802306,-0.8026634455,-0.800827086,-0.7975407839,-0.7926114798,-0.7871022224,-0.7890353203,-0.7975407839,-0.8015036583,-0.8013103604,-0.8022768497,-0.8023735285,-0.8002471328,-0.7978307605,-0.7975407839,-0.7977340817,-0.797347486,-0.7972508669,-0.797347486,-0.797347486,-0.797347486,-0.797347486,-0.7971541882,-0.7969608903,-0.7971541882,-0.7971541882,-0.7967675924,-0.7968642116,-0.7971541882,-0.7969608903,-0.7967675924,-0.7968642116,-0.7968642116,-0.7965742946,-0.7965742946,-0.7966709137,-0.7963809967,-0.796284318,-0.7963809967,-0.7960910201,-0.7958977222,-0.7960910201,-0.796284318,-0.7961876988,-0.795994401,-0.795994401,-0.795994401,-0.7958977222,-0.7958977222,-0.7960910201,-0.7961876988,-0.796284318,-0.7965742946,-0.7965742946,-0.7966709137,-0.7966709137,-0.7967675924,-0.7967675924,-0.7964776158,-0.7963809967,-0.7964776158,-0.796284318,-0.7958977222,-0.7958010435,-0.7958010435,-0.7958010435,-0.7958010435,-0.7958010435,-0.7956077456,-0.7957044244,-0.7958977222,-0.7958010435,-0.7955111265,-0.7956077456,-0.7958010435,-0.7955111265,-0.7955111265,-0.7958977222,-0.7958977222,-0.796284318,-0.7967675924,-0.797347486,-0.7987973094,-0.7982173562,-0.7967675924,-0.7965742946,-0.7971541882,-0.7984106541,-0.7966709137,-0.7954144478,-0.796284318,-0.7972508669,-0.7964776158,-0.7958010435,-0.795994401,-0.795994401,-0.795994401,-0.795994401,-0.7958010435,-0.7958010435,-0.7960910201,-0.7961876988,-0.7958977222,-0.7956077456,-0.7956077456,-0.7957044244,-0.795994401,-0.7961876988,-0.7960910201,-0.7960910201,-0.7961876988,-0.7960910201,-0.7968642116,-0.7979274392,-0.7977340817,-0.7971541882,-0.7972508669,-0.7971541882,-0.7966709137,-0.796284318,-0.7958977222,-0.7957044244,-0.7956077456,-0.7957044244,-0.795994401,-0.7958977222,-0.7957044244,-0.7958010435,-0.7958977222,-0.795994401,-0.7964776158,-0.7968642116,-0.7967675924,-0.7969608903,-0.7972508669,-0.797057569,-0.7967675924,-0.7968642116,-0.7971541882,-0.797057569,-0.7969608903,-0.797057569,-0.7969608903,-0.7969608903,-0.7971541882,-0.797057569,-0.797057569,-0.7972508669,-0.7974441648,-0.797347486,-0.797347486,-0.7975407839,-0.7977340817,-0.7978307605,-0.7975407839,-0.7979274392,-0.8003438115,-0.8020835519,-0.8023735285,-0.8021802306,-0.8002471328,-0.7998605371,-0.7990872264,-0.7926114798,-0.7875854969,-0.7878754735,-0.7877787948,-0.7885520458,-0.7913549542,-0.7940613031,-0.797347486,-0.8005371094,-0.8019868731,-0.8021802306,-0.8020835519,-0.8022768497,-0.8023735285,-0.8023735285,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8025668263,-0.8024701476,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8023735285,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8016969562,-0.8016002774,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8024701476,-0.8025668263,-0.8027601242,-0.8023735285,-0.8020835519,-0.8016969562,-0.8019868731,-0.8024701476,-0.8013103604,-0.7984106541,-0.7934813499,-0.7872955203,-0.7884553671,-0.7968642116,-0.8014069796,-0.8012136817,-0.8019868731,-0.8024701476,-0.8006337881,-0.7982173562,-0.7974441648,-0.7974441648,-0.7971541882,-0.797057569,-0.7971541882,-0.797057569,-0.7971541882,-0.7972508669,-0.7972508669,-0.7972508669,-0.797057569,-0.7968642116,-0.7968642116,-0.7968642116,-0.7969608903,-0.7969608903,-0.7967675924,-0.7967675924,-0.7967675924,-0.7964776158,-0.7963809967,-0.7965742946,-0.7964776158,-0.7964776158,-0.796284318,-0.7960910201,-0.7960910201,-0.795994401,-0.795994401,-0.7961876988,-0.796284318,-0.7960910201,-0.7958977222,-0.795994401,-0.7960910201,-0.7960910201,-0.7960910201,-0.7964776158,-0.7968642116,-0.7969608903,-0.7968642116,-0.7967675924,-0.7966709137,-0.7965742946,-0.7966709137,-0.7967675924,-0.7964776158,-0.7961876988,-0.795994401,-0.795994401,-0.7960910201,-0.795994401,-0.7958977222,-0.7958977222,-0.7960910201,-0.7961876988,-0.7960910201,-0.795994401,-0.7958977222,-0.7958977222,-0.795994401,-0.7958010435,-0.7958010435,-0.795994401,-0.7957044244,-0.795994401,-0.7969608903,-0.7980240583,-0.7981207371,-0.7963809967,-0.7958977222,-0.795994401,-0.797057569,-0.7977340817,-0.7960910201,-0.7955111265,-0.7967675924,-0.7965742946,-0.795994401,-0.795994401,-0.7961876988,-0.795994401,-0.795994401,-0.7958010435,-0.7955111265,-0.7955111265,-0.7957044244,-0.7958977222,-0.7956077456,-0.7953178287,-0.7954144478,-0.7955111265,-0.7955111265,-0.7956077456,-0.7958010435,-0.7958977222,-0.7963809967,-0.797347486,-0.7980240583,-0.7977340817,-0.7974441648,-0.7975407839,-0.7974441648,-0.797057569,-0.7966709137,-0.7963809967,-0.7958977222,-0.7957044244,-0.7958010435,-0.7958977222,-0.7960910201,-0.7960910201,-0.7958010435,-0.7956077456,-0.7958977222,-0.796284318,-0.796284318,-0.7963809967,-0.7964776158,-0.7964776158,-0.7963809967,-0.7967675924,-0.7969608903,-0.7966709137,-0.7964776158,-0.7967675924,-0.7969608903,-0.7968642116,-0.7967675924,-0.797057569,-0.7971541882,-0.797057569,-0.7972508669,-0.797347486,-0.7972508669,-0.7974441648,-0.7975407839,-0.7975407839,-0.7976374626,-0.7978307605,-0.7975407839,-0.7981207371,-0.8004404902,-0.8019868731,-0.8021802306,-0.8017935753,-0.8002471328,-0.7999572158,-0.7987006307,-0.7919349074,-0.7871989012,-0.7875854969,-0.7874888182,-0.7879720926,-0.7911616564,-0.7943512797,-0.797347486,-0.8005371094,-0.8022768497,-0.8021802306,-0.8019868731,-0.8022768497,-0.8024701476,-0.8024701476,-0.8025668263,-0.8024701476,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8025668263,-0.8025668263,-0.8028567433,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8024701476,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8023735285,-0.8023735285,-0.8026634455,-0.801890254,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8012136817,-0.8007304072,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8023735285,-0.8024701476,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8021802306,-0.8017935753,-0.8019868731,-0.8024701476,-0.8012136817,-0.7985073328,-0.7942546606,-0.7875854969,-0.7865223289,-0.7947378755,-0.8010203838,-0.8013103604,-0.8017935753,-0.8026634455,-0.8015036583,-0.7985073328,-0.797347486,-0.7974441648,-0.7972508669,-0.797057569,-0.7969608903,-0.7969608903,-0.797057569,-0.7969608903,-0.7968642116,-0.7967675924,-0.7967675924,-0.7966709137,-0.7966709137,-0.7966709137,-0.7967675924,-0.7967675924,-0.7966709137,-0.7966709137,-0.7966709137,-0.7964776158,-0.7964776158,-0.7964776158,-0.7963809967,-0.7963809967,-0.7961876988,-0.7960910201,-0.7961876988,-0.796284318,-0.7961876988,-0.7963809967,-0.7964776158,-0.7960910201,-0.7958977222,-0.795994401,-0.7960910201,-0.7961876988,-0.7961876988,-0.796284318,-0.7967675924,-0.7971541882,-0.7972508669,-0.7969608903,-0.7963809967,-0.796284318,-0.7964776158,-0.7965742946,-0.796284318,-0.7960910201,-0.7960910201,-0.7961876988,-0.7960910201,-0.7960910201,-0.7961876988,-0.7960910201,-0.7960910201,-0.7960910201,-0.7960910201,-0.7960910201,-0.795994401,-0.7958977222,-0.7958977222,-0.7958977222,-0.7960910201,-0.7961876988,-0.7958977222,-0.795994401,-0.7968642116,-0.7978307605,-0.7965742946,-0.7940613031,-0.7951245308,-0.7956077456,-0.7967675924,-0.7965742946,-0.7953178287,-0.795994401,-0.7972508669,-0.7965742946,-0.7960910201,-0.7964776158,-0.7964776158,-0.795994401,-0.7958010435,-0.7957044244,-0.7956077456,-0.7956077456,-0.7956077456,-0.7956077456,-0.7954144478,-0.7954144478,-0.7955111265,-0.7954144478,-0.7954144478,-0.7957044244,-0.7963809967,-0.797057569,-0.7977340817,-0.7977340817,-0.7972508669,-0.7972508669,-0.797347486,-0.797347486,-0.797347486,-0.7969608903,-0.7965742946,-0.796284318,-0.7958977222,-0.7955111265,-0.7956077456,-0.7958977222,-0.7961876988,-0.795994401,-0.7957044244,-0.7957044244,-0.7958977222,-0.7960910201,-0.796284318,-0.7964776158,-0.7964776158,-0.7965742946,-0.7963809967,-0.796284318,-0.7965742946,-0.7967675924,-0.7964776158,-0.7965742946,-0.7968642116,-0.7969608903,-0.797057569,-0.7971541882,-0.7972508669,-0.7974441648,-0.7975407839,-0.797347486,-0.7974441648,-0.7975407839,-0.7974441648,-0.7974441648,-0.7975407839,-0.7978307605,-0.7974441648,-0.7981207371,-0.800827086,-0.8024701476,-0.8023735285,-0.8016969562,-0.8001505136,-0.8001505136,-0.7981207371,-0.7909683585,-0.7870056033,-0.7874888182,-0.786618948,-0.7877787948,-0.7921282053,-0.7952211499,-0.7978307605,-0.8009237051,-0.8023735285,-0.8021802306,-0.8019868731,-0.8021802306,-0.8024701476,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8023735285,-0.8022768497,-0.8022768497,-0.8016969562,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8021802306,-0.801890254,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8024701476,-0.8024701476,-0.8027601242,-0.8028567433,-0.8026634455,-0.8028567433,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8025668263,-0.8024701476,-0.8026634455,-0.8027601242,-0.8023735285,-0.801890254,-0.8022768497,-0.8026634455,-0.801117003,-0.7981207371,-0.7944479585,-0.7881653905,-0.7852658033,-0.7923215032,-0.8002471328,-0.8012136817,-0.8014069796,-0.8026634455,-0.801890254,-0.7989906073,-0.7975407839,-0.7976374626,-0.7974441648,-0.7971541882,-0.7972508669,-0.797057569,-0.7968642116,-0.7967675924,-0.7966709137,-0.7966709137,-0.7965742946,-0.7964776158,-0.7963809967,-0.7963809967,-0.7964776158,-0.7963809967,-0.796284318,-0.7961876988,-0.796284318,-0.7963809967,-0.796284318,-0.7963809967,-0.7963809967,-0.7961876988,-0.7961876988,-0.795994401,-0.7958977222,-0.7960910201,-0.7961876988,-0.7961876988,-0.7961876988,-0.795994401,-0.795994401,-0.795994401,-0.7958977222,-0.7960910201,-0.796284318,-0.796284318,-0.7965742946,-0.7968642116,-0.7968642116,-0.7969608903,-0.7968642116,-0.7963809967,-0.7961876988,-0.796284318,-0.795994401,-0.795994401,-0.7960910201,-0.7960910201,-0.7960910201,-0.796284318,-0.7963809967,-0.7960910201,-0.7958010435,-0.7960910201,-0.796284318,-0.796284318,-0.7961876988,-0.795994401,-0.7960910201,-0.7961876988,-0.796284318,-0.7964776158,-0.7960910201,-0.7958977222,-0.7966709137,-0.7977340817,-0.7963809967,-0.793964684,-0.7949311733,-0.7953178287,-0.7960910201,-0.7958010435,-0.7957044244,-0.7966709137,-0.7968642116,-0.7966709137,-0.796284318,-0.796284318,-0.7961876988,-0.7958010435,-0.7958010435,-0.7958977222,-0.7958010435,-0.7956077456,-0.7957044244,-0.7958010435,-0.7957044244,-0.7955111265,-0.7954144478,-0.7953178287,-0.7954144478,-0.795994401,-0.7966709137,-0.7972508669,-0.7974441648,-0.7972508669,-0.7971541882,-0.7971541882,-0.797347486,-0.7974441648,-0.7972508669,-0.7968642116,-0.7965742946,-0.7961876988,-0.7958010435,-0.7956077456,-0.7956077456,-0.7958010435,-0.795994401,-0.7958977222,-0.7958010435,-0.7958010435,-0.7957044244,-0.7958010435,-0.7961876988,-0.7963809967,-0.796284318,-0.796284318,-0.7961876988,-0.795994401,-0.796284318,-0.7966709137,-0.7968642116,-0.797057569,-0.7971541882,-0.797057569,-0.7969608903,-0.7971541882,-0.797347486,-0.7975407839,-0.7974441648,-0.797347486,-0.7974441648,-0.7976374626,-0.7976374626,-0.7975407839,-0.7975407839,-0.7977340817,-0.7977340817,-0.7986039519,-0.8010203838,-0.8023735285,-0.8023735285,-0.8012136817,-0.7998605371,-0.8002471328,-0.7971541882,-0.7895185947,-0.7864256501,-0.7871022224,-0.7869089246,-0.7887453437,-0.7921282053,-0.7948345542,-0.7981207371,-0.8009237051,-0.8021802306,-0.8022768497,-0.801890254,-0.8019868731,-0.8024701476,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8024701476,-0.8025668263,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8023735285,-0.8024701476,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8020835519,-0.8020835519,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8025668263,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8024701476,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8020835519,-0.8021802306,-0.8023735285,-0.8014069796,-0.7983140349,-0.7945445776,-0.7898085713,-0.7864256501,-0.7912583351,-0.799377203,-0.8015036583,-0.8012136817,-0.8026634455,-0.8025668263,-0.8000538349,-0.7980240583,-0.7975407839,-0.7975407839,-0.7971541882,-0.797057569,-0.797057569,-0.7969608903,-0.7967675924,-0.7966709137,-0.7966709137,-0.7966709137,-0.7964776158,-0.7964776158,-0.7964776158,-0.7963809967,-0.7963809967,-0.796284318,-0.7960910201,-0.7960910201,-0.7963809967,-0.796284318,-0.7961876988,-0.7963809967,-0.7961876988,-0.7958010435,-0.795994401,-0.7964776158,-0.7964776158,-0.796284318,-0.796284318,-0.796284318,-0.795994401,-0.795994401,-0.795994401,-0.7958977222,-0.795994401,-0.7960910201,-0.796284318,-0.7967675924,-0.7969608903,-0.7967675924,-0.7968642116,-0.7967675924,-0.7963809967,-0.7961876988,-0.7960910201,-0.7960910201,-0.7961876988,-0.796284318,-0.796284318,-0.796284318,-0.7964776158,-0.7965742946,-0.796284318,-0.795994401,-0.7960910201,-0.796284318,-0.7961876988,-0.7961876988,-0.7964776158,-0.7965742946,-0.796284318,-0.7961876988,-0.7964776158,-0.7961876988,-0.7953178287,-0.7965742946,-0.7979274392,-0.7953178287,-0.7933846712,-0.7951245308,-0.7950278521,-0.7954144478,-0.7953178287,-0.795994401,-0.797057569,-0.7969608903,-0.797057569,-0.7967675924,-0.7963809967,-0.796284318,-0.7961876988,-0.7960910201,-0.7958977222,-0.7957044244,-0.7958010435,-0.7958977222,-0.7958010435,-0.7956077456,-0.7957044244,-0.7955111265,-0.7954144478,-0.7956077456,-0.7958977222,-0.796284318,-0.7967675924,-0.7971541882,-0.7974441648,-0.7974441648,-0.7972508669,-0.7974441648,-0.7974441648,-0.797347486,-0.797347486,-0.7968642116,-0.795994401,-0.7957044244,-0.7958977222,-0.7958977222,-0.7958977222,-0.795994401,-0.7960910201,-0.795994401,-0.7958010435,-0.7958977222,-0.7961876988,-0.796284318,-0.796284318,-0.7963809967,-0.7964776158,-0.7964776158,-0.796284318,-0.7961876988,-0.7966709137,-0.7972508669,-0.7972508669,-0.797057569,-0.7972508669,-0.797347486,-0.7974441648,-0.7975407839,-0.797347486,-0.797347486,-0.7975407839,-0.7976374626,-0.7975407839,-0.7975407839,-0.7976374626,-0.7976374626,-0.7976374626,-0.7975407839,-0.7989906073,-0.8013103604,-0.8022768497,-0.8022768497,-0.8012136817,-0.7999572158,-0.8000538349,-0.7958977222,-0.7883586884,-0.7862323523,-0.7871989012,-0.7874888182,-0.789131999,-0.7919349074,-0.7951245308,-0.7984106541,-0.8010203838,-0.8022768497,-0.8023735285,-0.8020835519,-0.8021802306,-0.8023735285,-0.8024701476,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8023735285,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8025668263,-0.8024701476,-0.8024701476,-0.8027601242,-0.8026634455,-0.8020835519,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8019868731,-0.8016002774,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8024701476,-0.8023735285,-0.8015036583,-0.7986039519,-0.7943512797,-0.7895185947,-0.7856523991,-0.7887453437,-0.7969608903,-0.8010203838,-0.8010203838,-0.8021802306,-0.8025668263,-0.8015036583,-0.7987006307,-0.797347486,-0.7975407839,-0.7974441648,-0.7971541882,-0.797057569,-0.797057569,-0.797057569,-0.7969608903,-0.7966709137,-0.7966709137,-0.7966709137,-0.7965742946,-0.7964776158,-0.7964776158,-0.7963809967,-0.7964776158,-0.7963809967,-0.7961876988,-0.796284318,-0.796284318,-0.796284318,-0.796284318,-0.7960910201,-0.7958977222,-0.795994401,-0.7960910201,-0.795994401,-0.795994401,-0.796284318,-0.7963809967,-0.7961876988,-0.7960910201,-0.7960910201,-0.7960910201,-0.7961876988,-0.7960910201,-0.796284318,-0.7967675924,-0.7969608903,-0.7969608903,-0.7968642116,-0.7968642116,-0.7965742946,-0.796284318,-0.796284318,-0.7961876988,-0.7960910201,-0.796284318,-0.796284318,-0.7964776158,-0.7966709137,-0.7964776158,-0.7961876988,-0.7960910201,-0.7961876988,-0.7963809967,-0.796284318,-0.7963809967,-0.7967675924,-0.7967675924,-0.7966709137,-0.7964776158,-0.7964776158,-0.7967675924,-0.795994401,-0.7955111265,-0.7961876988,-0.7948345542,-0.7938680053,-0.7951245308,-0.7950278521,-0.7950278521,-0.7948345542,-0.7960910201,-0.7977340817,-0.7978307605,-0.7974441648,-0.797057569,-0.7965742946,-0.796284318,-0.7961876988,-0.7960910201,-0.7960910201,-0.7960910201,-0.7961876988,-0.7960910201,-0.7958977222,-0.7958977222,-0.7958977222,-0.7956077456,-0.7956077456,-0.7958977222,-0.7961876988,-0.7963809967,-0.7967675924,-0.7971541882,-0.797057569,-0.7969608903,-0.7971541882,-0.7972508669,-0.7971541882,-0.7974441648,-0.7976374626,-0.7967675924,-0.7958977222,-0.7958010435,-0.7958977222,-0.7958977222,-0.795994401,-0.7960910201,-0.795994401,-0.7958977222,-0.7958977222,-0.795994401,-0.796284318,-0.7963809967,-0.796284318,-0.796284318,-0.7965742946,-0.7964776158,-0.796284318,-0.7966709137,-0.7969608903,-0.797057569,-0.7972508669,-0.7974441648,-0.7974441648,-0.797347486,-0.7974441648,-0.7974441648,-0.7974441648,-0.7975407839,-0.7975407839,-0.7976374626,-0.7976374626,-0.7975407839,-0.7974441648,-0.7976374626,-0.7978307605,-0.7976374626,-0.7991839051,-0.8016969562,-0.8022768497,-0.801890254,-0.800827086,-0.8000538349,-0.8001505136,-0.7954144478,-0.7882620692,-0.7865223289,-0.787392199,-0.7874888182,-0.7889387012,-0.7919349074,-0.7955111265,-0.7989906073,-0.8015036583,-0.8022768497,-0.8021802306,-0.8022768497,-0.8023735285,-0.8024701476,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8024701476,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8024701476,-0.8021802306,-0.8022768497,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8017935753,-0.8015036583,-0.8026634455,-0.8025668263,-0.8027601242,-0.8028567433,-0.8025668263,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8024701476,-0.8022768497,-0.8022768497,-0.8013103604,-0.7987973094,-0.7950278521,-0.7902917862,-0.7857490778,-0.786618948,-0.7942546606,-0.8000538349,-0.8009237051,-0.8015036583,-0.8026634455,-0.8023735285,-0.7998605371,-0.7977340817,-0.7976374626,-0.7977340817,-0.7974441648,-0.797347486,-0.797347486,-0.7971541882,-0.7971541882,-0.797057569,-0.7969608903,-0.7966709137,-0.7964776158,-0.7965742946,-0.7965742946,-0.7964776158,-0.7964776158,-0.7964776158,-0.7964776158,-0.7963809967,-0.7961876988,-0.7964776158,-0.7965742946,-0.7960910201,-0.795994401,-0.7961876988,-0.7961876988,-0.7960910201,-0.7960910201,-0.7961876988,-0.796284318,-0.7963809967,-0.7960910201,-0.795994401,-0.795994401,-0.795994401,-0.7960910201,-0.796284318,-0.7965742946,-0.7968642116,-0.7969608903,-0.7968642116,-0.7968642116,-0.7966709137,-0.7964776158,-0.796284318,-0.7961876988,-0.796284318,-0.7963809967,-0.7963809967,-0.7966709137,-0.7968642116,-0.7964776158,-0.7961876988,-0.7961876988,-0.796284318,-0.796284318,-0.7961876988,-0.7966709137,-0.7971541882,-0.797347486,-0.7977340817,-0.7974441648,-0.797057569,-0.7977340817,-0.7969608903,-0.7958977222,-0.7964776158,-0.7960910201,-0.7953178287,-0.7955111265,-0.7949311733,-0.7948345542,-0.7951245308,-0.7963809967,-0.7975407839,-0.7976374626,-0.7972508669,-0.7971541882,-0.7969608903,-0.7964776158,-0.7960910201,-0.795994401,-0.795994401,-0.795994401,-0.7960910201,-0.7961876988,-0.7960910201,-0.7958977222,-0.7958010435,-0.7958010435,-0.7958010435,-0.7958010435,-0.7960910201,-0.7964776158,-0.7965742946,-0.7968642116,-0.7969608903,-0.7968642116,-0.797057569,-0.7974441648,-0.7975407839,-0.7977340817,-0.7976374626,-0.7967675924,-0.795994401,-0.7958010435,-0.7958010435,-0.7958977222,-0.7960910201,-0.7960910201,-0.7960910201,-0.795994401,-0.7958010435,-0.7958977222,-0.7961876988,-0.7964776158,-0.7965742946,-0.7963809967,-0.7963809967,-0.7963809967,-0.7964776158,-0.7966709137,-0.7969608903,-0.7972508669,-0.7977340817,-0.7981207371,-0.7983140349,-0.7981207371,-0.7979274392,-0.7977340817,-0.7977340817,-0.7976374626,-0.7974441648,-0.7976374626,-0.7976374626,-0.7974441648,-0.7975407839,-0.7980240583,-0.7981207371,-0.7980240583,-0.7995705009,-0.8016002774,-0.8020835519,-0.8016002774,-0.8000538349,-0.7998605371,-0.7999572158,-0.7945445776,-0.7878754735,-0.7871022224,-0.787392199,-0.7872955203,-0.7898085713,-0.7928047776,-0.7954144478,-0.7989906073,-0.8017935753,-0.8025668263,-0.8023735285,-0.8023735285,-0.8022768497,-0.8023735285,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8023735285,-0.8027601242,-0.8020835519,-0.8019868731,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8017935753,-0.8016969562,-0.8026634455,-0.8025668263,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8025668263,-0.8024701476,-0.8021802306,-0.800827086,-0.7985073328,-0.7956077456,-0.7916449308,-0.7868123055,-0.7857490778,-0.7919349074,-0.7989906073,-0.800827086,-0.801117003,-0.8024701476,-0.8026634455,-0.8014069796,-0.7988939285,-0.7977340817,-0.7976374626,-0.7974441648,-0.797347486,-0.7974441648,-0.797347486,-0.797347486,-0.7971541882,-0.797347486,-0.797347486,-0.7971541882,-0.7969608903,-0.7967675924,-0.7965742946,-0.7964776158,-0.7965742946,-0.7964776158,-0.7963809967,-0.7961876988,-0.7963809967,-0.7965742946,-0.7963809967,-0.7960910201,-0.7961876988,-0.796284318,-0.7960910201,-0.795994401,-0.795994401,-0.796284318,-0.7965742946,-0.7963809967,-0.795994401,-0.795994401,-0.7961876988,-0.7961876988,-0.7963809967,-0.7966709137,-0.7969608903,-0.797057569,-0.7968642116,-0.7967675924,-0.7966709137,-0.7964776158,-0.796284318,-0.7960910201,-0.7960910201,-0.7963809967,-0.7965742946,-0.7971541882,-0.797347486,-0.7969608903,-0.7964776158,-0.7963809967,-0.7964776158,-0.796284318,-0.7964776158,-0.7971541882,-0.797347486,-0.7974441648,-0.7978307605,-0.7977340817,-0.7979274392,-0.7983140349,-0.7980240583,-0.7979274392,-0.7974441648,-0.7961876988,-0.795994401,-0.7963809967,-0.7956077456,-0.7948345542,-0.7952211499,-0.7969608903,-0.7979274392,-0.7976374626,-0.7979274392,-0.7981207371,-0.7975407839,-0.7967675924,-0.7963809967,-0.7960910201,-0.7958977222,-0.795994401,-0.7960910201,-0.796284318,-0.796284318,-0.7960910201,-0.795994401,-0.7960910201,-0.7958010435,-0.7957044244,-0.795994401,-0.7964776158,-0.7966709137,-0.7969608903,-0.797057569,-0.797057569,-0.7974441648,-0.7977340817,-0.7978307605,-0.7979274392,-0.7975407839,-0.7964776158,-0.7958010435,-0.7958010435,-0.7958010435,-0.7958010435,-0.795994401,-0.795994401,-0.795994401,-0.795994401,-0.7957044244,-0.7958977222,-0.7961876988,-0.7963809967,-0.7966709137,-0.7968642116,-0.7965742946,-0.7966709137,-0.7968642116,-0.7969608903,-0.7969608903,-0.797057569,-0.7975407839,-0.7981207371,-0.7981207371,-0.7979274392,-0.7977340817,-0.7978307605,-0.7982173562,-0.7983140349,-0.7979274392,-0.7977340817,-0.7975407839,-0.7976374626,-0.7979274392,-0.7982173562,-0.7983140349,-0.7985073328,-0.8001505136,-0.8019868731,-0.8025668263,-0.8015036583,-0.7999572158,-0.8007304072,-0.7987973094,-0.7910650373,-0.786618948,-0.787392199,-0.7870056033,-0.7871022224,-0.7903884649,-0.7936747074,-0.7960910201,-0.7990872264,-0.8017935753,-0.8025668263,-0.8024701476,-0.8024701476,-0.8024701476,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8024701476,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8024701476,-0.8025668263,-0.8026634455,-0.8024701476,-0.8024701476,-0.8024701476,-0.801890254,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8019868731,-0.8016002774,-0.8025668263,-0.8025668263,-0.8025668263,-0.8027601242,-0.8025668263,-0.8027601242,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8024701476,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8028567433,-0.8026634455,-0.8025668263,-0.8027601242,-0.8020835519,-0.8002471328,-0.7986039519,-0.7954144478,-0.7905817628,-0.7868123055,-0.7853624225,-0.7895185947,-0.797347486,-0.8009237051,-0.8009237051,-0.8017935753,-0.8027601242,-0.8025668263,-0.8003438115,-0.7980240583,-0.7976374626,-0.7976374626,-0.7972508669,-0.7971541882,-0.7974441648,-0.7976374626,-0.7975407839,-0.7974441648,-0.7975407839,-0.7975407839,-0.7974441648,-0.7971541882,-0.7967675924,-0.7966709137,-0.7965742946,-0.7963809967,-0.7964776158,-0.7963809967,-0.7963809967,-0.7964776158,-0.7961876988,-0.795994401,-0.796284318,-0.7963809967,-0.796284318,-0.7960910201,-0.7958977222,-0.7960910201,-0.7964776158,-0.7963809967,-0.7960910201,-0.7960910201,-0.796284318,-0.7963809967,-0.7963809967,-0.7965742946,-0.7967675924,-0.7967675924,-0.7967675924,-0.7967675924,-0.7966709137,-0.7965742946,-0.7963809967,-0.7961876988,-0.7960910201,-0.7964776158,-0.7966709137,-0.7971541882,-0.7975407839,-0.7969608903,-0.796284318,-0.796284318,-0.7964776158,-0.7964776158,-0.797057569,-0.7974441648,-0.7971541882,-0.7971541882,-0.7976374626,-0.7978307605,-0.7982173562,-0.7987973094,-0.7987973094,-0.7984106541,-0.7979274392,-0.7977340817,-0.7978307605,-0.7977340817,-0.7968642116,-0.7960910201,-0.7968642116,-0.7984106541,-0.7985073328,-0.7977340817,-0.7981207371,-0.7986039519,-0.7978307605,-0.7967675924,-0.7963809967,-0.796284318,-0.7960910201,-0.795994401,-0.7958977222,-0.795994401,-0.796284318,-0.7961876988,-0.7961876988,-0.7961876988,-0.7961876988,-0.795994401,-0.7960910201,-0.7963809967,-0.7967675924,-0.7968642116,-0.7971541882,-0.7972508669,-0.7975407839,-0.7977340817,-0.7979274392,-0.7981207371,-0.7975407839,-0.7961876988,-0.7957044244,-0.7958977222,-0.7960910201,-0.7960910201,-0.7960910201,-0.7961876988,-0.795994401,-0.7958977222,-0.7958977222,-0.795994401,-0.7960910201,-0.796284318,-0.7966709137,-0.7967675924,-0.7965742946,-0.7965742946,-0.7967675924,-0.7967675924,-0.797057569,-0.797347486,-0.7974441648,-0.7975407839,-0.7974441648,-0.7972508669,-0.7974441648,-0.7977340817,-0.7981207371,-0.7983140349,-0.7984106541,-0.7981207371,-0.7979274392,-0.7980240583,-0.7981207371,-0.7983140349,-0.7983140349,-0.7989906073,-0.8007304072,-0.8022768497,-0.8024701476,-0.8009237051,-0.8001505136,-0.8010203838,-0.7967675924,-0.788648665,-0.786329031,-0.7871989012,-0.7865223289,-0.787392199,-0.7905817628,-0.793964684,-0.7966709137,-0.799377203,-0.8016969562,-0.8023735285,-0.8023735285,-0.8024701476,-0.8024701476,-0.8024701476,-0.8024701476,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8025668263,-0.8025668263,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8028567433,-0.8025668263,-0.8024701476,-0.8023735285,-0.8023735285,-0.8024701476,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8024701476,-0.8022768497,-0.8026634455,-0.8024701476,-0.8027601242,-0.8025668263,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8024701476,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8024701476,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8024701476,-0.8025668263,-0.8016002774,-0.8000538349,-0.7985073328,-0.7950278521,-0.7903884649,-0.7874888182,-0.7855557799,-0.7876821756,-0.7956077456,-0.8005371094,-0.8006337881,-0.8012136817,-0.8022768497,-0.8024701476,-0.8012136817,-0.7988939285,-0.7976374626,-0.7976374626,-0.7976374626,-0.7975407839,-0.7974441648,-0.7974441648,-0.7974441648,-0.7975407839,-0.7975407839,-0.7974441648,-0.7974441648,-0.7974441648,-0.797057569,-0.7965742946,-0.7965742946,-0.7967675924,-0.7965742946,-0.7964776158,-0.7965742946,-0.7965742946,-0.7965742946,-0.7964776158,-0.7964776158,-0.7963809967,-0.7963809967,-0.7961876988,-0.795994401,-0.7960910201,-0.796284318,-0.7961876988,-0.7960910201,-0.796284318,-0.7961876988,-0.7960910201,-0.7963809967,-0.7967675924,-0.7967675924,-0.7966709137,-0.7966709137,-0.7966709137,-0.7964776158,-0.7963809967,-0.7963809967,-0.7963809967,-0.7963809967,-0.7965742946,-0.7967675924,-0.797057569,-0.7972508669,-0.7968642116,-0.7963809967,-0.7965742946,-0.7964776158,-0.7965742946,-0.7972508669,-0.797347486,-0.7971541882,-0.7972508669,-0.7974441648,-0.7980240583,-0.7982173562,-0.7982173562,-0.7987006307,-0.7988939285,-0.7984106541,-0.7985073328,-0.7989906073,-0.7986039519,-0.7978307605,-0.7977340817,-0.7984106541,-0.7987973094,-0.7983140349,-0.7978307605,-0.7978307605,-0.7980240583,-0.7978307605,-0.797057569,-0.796284318,-0.7960910201,-0.795994401,-0.795994401,-0.795994401,-0.7960910201,-0.796284318,-0.7964776158,-0.7963809967,-0.7961876988,-0.7960910201,-0.7960910201,-0.7960910201,-0.7963809967,-0.7966709137,-0.7968642116,-0.7971541882,-0.7974441648,-0.7975407839,-0.7978307605,-0.7982173562,-0.7982173562,-0.797057569,-0.7958977222,-0.7957044244,-0.7958977222,-0.795994401,-0.7960910201,-0.7961876988,-0.795994401,-0.7958977222,-0.7960910201,-0.7961876988,-0.795994401,-0.795994401,-0.796284318,-0.7964776158,-0.7965742946,-0.7965742946,-0.7965742946,-0.7966709137,-0.7967675924,-0.7967675924,-0.7968642116,-0.7971541882,-0.7972508669,-0.7972508669,-0.7974441648,-0.7975407839,-0.7975407839,-0.7976374626,-0.7977340817,-0.7977340817,-0.7976374626,-0.7976374626,-0.7979274392,-0.7981207371,-0.7984106541,-0.7988939285,-0.7995705009,-0.800827086,-0.8021802306,-0.8022768497,-0.8006337881,-0.8005371094,-0.7996671796,-0.7930946946,-0.7872955203,-0.7871989012,-0.7875854969,-0.7869089246,-0.7882620692,-0.7918382287,-0.7948345542,-0.7968642116,-0.7995705009,-0.801890254,-0.8022768497,-0.8022768497,-0.8023735285,-0.8023735285,-0.8023735285,-0.8024701476,-0.8027601242,-0.8025668263,-0.8028567433,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8025668263,-0.8027601242,-0.8028567433,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8028567433,-0.8025668263,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8023735285,-0.8025668263,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.801117003,-0.8007304072,-0.8025668263,-0.8021802306,-0.8026634455,-0.8024701476,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8023735285,-0.8014069796,-0.7998605371,-0.7985073328,-0.7955111265,-0.7904850841,-0.7879720926,-0.7871022224,-0.7868123055,-0.7922248244,-0.7991839051,-0.8007304072,-0.8007304072,-0.801890254,-0.8022768497,-0.8014069796,-0.7990872264,-0.7972508669,-0.7972508669,-0.7977340817,-0.7976374626,-0.7975407839,-0.7976374626,-0.7975407839,-0.7975407839,-0.7978307605,-0.7976374626,-0.7974441648,-0.7974441648,-0.7971541882,-0.7967675924,-0.7964776158,-0.7965742946,-0.7964776158,-0.7963809967,-0.7965742946,-0.7967675924,-0.7966709137,-0.7965742946,-0.7965742946,-0.7965742946,-0.7963809967,-0.7960910201,-0.795994401,-0.7960910201,-0.7964776158,-0.7964776158,-0.7964776158,-0.796284318,-0.795994401,-0.7960910201,-0.7964776158,-0.7968642116,-0.7969608903,-0.7967675924,-0.7964776158,-0.7964776158,-0.7965742946,-0.7964776158,-0.7963809967,-0.796284318,-0.7961876988,-0.7966709137,-0.7969608903,-0.7966709137,-0.7969608903,-0.7972508669,-0.7968642116,-0.7965742946,-0.7966709137,-0.7971541882,-0.797347486,-0.797057569,-0.7969608903,-0.7972508669,-0.7974441648,-0.7979274392,-0.7982173562,-0.7978307605,-0.7980240583,-0.7984106541,-0.7982173562,-0.7983140349,-0.7984106541,-0.7975407839,-0.7969608903,-0.7977340817,-0.7987973094,-0.7988939285,-0.7983140349,-0.7978307605,-0.7977340817,-0.7978307605,-0.7975407839,-0.7968642116,-0.7963809967,-0.7961876988,-0.7961876988,-0.7960910201,-0.795994401,-0.7960910201,-0.7963809967,-0.7968642116,-0.7967675924,-0.7963809967,-0.796284318,-0.796284318,-0.7961876988,-0.7964776158,-0.7967675924,-0.7969608903,-0.7972508669,-0.7976374626,-0.7979274392,-0.7981207371,-0.7982173562,-0.7980240583,-0.7968642116,-0.795994401,-0.7958010435,-0.7958010435,-0.7958010435,-0.7960910201,-0.7961876988,-0.7960910201,-0.795994401,-0.7958977222,-0.795994401,-0.795994401,-0.795994401,-0.7960910201,-0.796284318,-0.7964776158,-0.7965742946,-0.7965742946,-0.7965742946,-0.7966709137,-0.7966709137,-0.7968642116,-0.7968642116,-0.797057569,-0.7972508669,-0.797057569,-0.7971541882,-0.7976374626,-0.7976374626,-0.7975407839,-0.7975407839,-0.7974441648,-0.7976374626,-0.7978307605,-0.7977340817,-0.7979274392,-0.7986039519,-0.7996671796,-0.8010203838,-0.8024701476,-0.8019868731,-0.8006337881,-0.801117003,-0.7982173562,-0.7900984883,-0.786329031,-0.7875854969,-0.7874888182,-0.787392199,-0.789421916,-0.7927080989,-0.7953178287,-0.7972508669,-0.7999572158,-0.801890254,-0.8021802306,-0.8023735285,-0.8022768497,-0.8021802306,-0.8023735285,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8024701476,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8024701476,-0.8024701476,-0.8021802306,-0.8014069796,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8012136817,-0.800827086,-0.8025668263,-0.8025668263,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8024701476,-0.8015036583,-0.8000538349,-0.7982173562,-0.7954144478,-0.7908717394,-0.7876821756,-0.7869089246,-0.7854591012,-0.7878754735,-0.7958010435,-0.8005371094,-0.8005371094,-0.8013103604,-0.8021802306,-0.8019868731,-0.8005371094,-0.7984106541,-0.7974441648,-0.7976374626,-0.7977340817,-0.7976374626,-0.7978307605,-0.7978307605,-0.7977340817,-0.7978307605,-0.7976374626,-0.797347486,-0.797347486,-0.797057569,-0.7966709137,-0.7964776158,-0.7965742946,-0.7965742946,-0.7964776158,-0.7965742946,-0.7967675924,-0.7969608903,-0.7968642116,-0.7968642116,-0.7966709137,-0.7963809967,-0.7963809967,-0.7963809967,-0.796284318,-0.796284318,-0.796284318,-0.7963809967,-0.7964776158,-0.796284318,-0.7961876988,-0.7961876988,-0.796284318,-0.7965742946,-0.7966709137,-0.7964776158,-0.7965742946,-0.7966709137,-0.7966709137,-0.7965742946,-0.7964776158,-0.7964776158,-0.7967675924,-0.7967675924,-0.7964776158,-0.7967675924,-0.7971541882,-0.7968642116,-0.7966709137,-0.7971541882,-0.7975407839,-0.797057569,-0.7964776158,-0.7966709137,-0.7971541882,-0.7974441648,-0.7978307605,-0.7981207371,-0.7977340817,-0.797347486,-0.7975407839,-0.7977340817,-0.7976374626,-0.797057569,-0.7968642116,-0.7971541882,-0.7979274392,-0.7987973094,-0.7987006307,-0.7980240583,-0.7977340817,-0.7975407839,-0.7975407839,-0.7974441648,-0.7969608903,-0.7964776158,-0.7963809967,-0.796284318,-0.7960910201,-0.795994401,-0.7961876988,-0.796284318,-0.7965742946,-0.7969608903,-0.7967675924,-0.7964776158,-0.7963809967,-0.796284318,-0.7963809967,-0.7966709137,-0.7969608903,-0.7971541882,-0.7975407839,-0.7978307605,-0.7979274392,-0.7981207371,-0.7980240583,-0.7967675924,-0.7957044244,-0.7958010435,-0.7958977222,-0.7958010435,-0.7961876988,-0.7961876988,-0.795994401,-0.7958977222,-0.7958977222,-0.795994401,-0.7960910201,-0.7958977222,-0.795994401,-0.7961876988,-0.796284318,-0.7964776158,-0.7967675924,-0.797057569,-0.7968642116,-0.7967675924,-0.7967675924,-0.7967675924,-0.7968642116,-0.7969608903,-0.7968642116,-0.7969608903,-0.797347486,-0.797347486,-0.7974441648,-0.7975407839,-0.797347486,-0.7976374626,-0.7978307605,-0.7978307605,-0.7978307605,-0.7984106541,-0.8000538349,-0.801890254,-0.8023735285,-0.8012136817,-0.8007304072,-0.800827086,-0.7958010435,-0.7885520458,-0.7867156267,-0.7875854969,-0.7871022224,-0.7874888182,-0.7898085713,-0.7929980755,-0.7952211499,-0.797347486,-0.8002471328,-0.8020835519,-0.8022768497,-0.8024701476,-0.8025668263,-0.8023735285,-0.8024701476,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8024701476,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8025668263,-0.8024701476,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8019868731,-0.8016002774,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8013103604,-0.8007304072,-0.8025668263,-0.8026634455,-0.8025668263,-0.8025668263,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8028567433,-0.8023735285,-0.8015036583,-0.8004404902,-0.7982173562,-0.7951245308,-0.7919349074,-0.7887453437,-0.7871989012,-0.786329031,-0.7871022224,-0.7932879925,-0.7994738221,-0.8004404902,-0.8005371094,-0.8016969562,-0.8022768497,-0.8016969562,-0.8001505136,-0.7981207371,-0.7974441648,-0.7978307605,-0.7980240583,-0.7976374626,-0.7976374626,-0.7978307605,-0.7976374626,-0.7972508669,-0.7972508669,-0.797347486,-0.797057569,-0.7965742946,-0.7963809967,-0.7966709137,-0.7966709137,-0.7966709137,-0.7966709137,-0.7966709137,-0.7968642116,-0.7968642116,-0.7966709137,-0.7964776158,-0.7963809967,-0.7963809967,-0.7963809967,-0.796284318,-0.7961876988,-0.7960910201,-0.7963809967,-0.7965742946,-0.796284318,-0.795994401,-0.7960910201,-0.796284318,-0.7964776158,-0.7964776158,-0.7964776158,-0.7964776158,-0.7965742946,-0.7964776158,-0.7963809967,-0.7965742946,-0.7965742946,-0.7965742946,-0.7966709137,-0.7965742946,-0.7966709137,-0.7971541882,-0.7971541882,-0.797057569,-0.797347486,-0.7972508669,-0.7966709137,-0.7963809967,-0.7964776158,-0.7968642116,-0.797347486,-0.7977340817,-0.7978307605,-0.7981207371,-0.7982173562,-0.7980240583,-0.7977340817,-0.7976374626,-0.7979274392,-0.7980240583,-0.7974441648,-0.7975407839,-0.7986039519,-0.7986039519,-0.7982173562,-0.7981207371,-0.7975407839,-0.7972508669,-0.7972508669,-0.7969608903,-0.7965742946,-0.7964776158,-0.7963809967,-0.7961876988,-0.7960910201,-0.7960910201,-0.7963809967,-0.7964776158,-0.7967675924,-0.7969608903,-0.7966709137,-0.796284318,-0.796284318,-0.796284318,-0.7966709137,-0.7972508669,-0.7974441648,-0.7976374626,-0.7977340817,-0.7980240583,-0.7983140349,-0.7975407839,-0.796284318,-0.7958977222,-0.7958977222,-0.795994401,-0.7960910201,-0.796284318,-0.7961876988,-0.795994401,-0.7958977222,-0.795994401,-0.7961876988,-0.7961876988,-0.795994401,-0.795994401,-0.7961876988,-0.796284318,-0.7963809967,-0.7966709137,-0.7966709137,-0.7966709137,-0.7966709137,-0.7965742946,-0.7965742946,-0.7966709137,-0.7968642116,-0.7968642116,-0.7967675924,-0.7968642116,-0.7969608903,-0.7971541882,-0.7972508669,-0.7971541882,-0.7972508669,-0.7976374626,-0.7978307605,-0.7976374626,-0.7986039519,-0.801117003,-0.8026634455,-0.8020835519,-0.8009237051,-0.8009237051,-0.7992805243,-0.7923215032,-0.7867156267,-0.7868123055,-0.787392199,-0.7871022224,-0.7877787948,-0.7895185947,-0.7927080989,-0.7954144478,-0.7974441648,-0.8002471328,-0.8021802306,-0.8024701476,-0.8025668263,-0.8026634455,-0.8023735285,-0.8024701476,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8024701476,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8024701476,-0.8027601242,-0.8024701476,-0.8021802306,-0.8023735285,-0.8017935753,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8022768497,-0.8021802306,-0.8025668263,-0.8024701476,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8016969562,-0.8001505136,-0.7977340817,-0.7946412563,-0.7915482521,-0.789131999,-0.7883586884,-0.7878754735,-0.787392199,-0.7916449308,-0.7981207371,-0.8001505136,-0.8001505136,-0.8014069796,-0.8021802306,-0.8023735285,-0.8017935753,-0.7995705009,-0.7974441648,-0.7974441648,-0.7978307605,-0.7975407839,-0.7975407839,-0.7978307605,-0.7976374626,-0.7974441648,-0.7974441648,-0.7971541882,-0.7969608903,-0.7967675924,-0.7966709137,-0.7965742946,-0.7966709137,-0.7967675924,-0.7968642116,-0.7968642116,-0.7968642116,-0.7968642116,-0.7967675924,-0.7965742946,-0.7963809967,-0.7964776158,-0.7963809967,-0.7963809967,-0.7963809967,-0.796284318,-0.796284318,-0.7963809967,-0.796284318,-0.7961876988,-0.796284318,-0.7961876988,-0.7963809967,-0.7967675924,-0.7966709137,-0.796284318,-0.7963809967,-0.7967675924,-0.7966709137,-0.7965742946,-0.7967675924,-0.7966709137,-0.7964776158,-0.7963809967,-0.7965742946,-0.7969608903,-0.7974441648,-0.7975407839,-0.797057569,-0.7965742946,-0.7965742946,-0.7967675924,-0.7965742946,-0.7966709137,-0.797347486,-0.7975407839,-0.7971541882,-0.7974441648,-0.7978307605,-0.7980240583,-0.7983140349,-0.7986039519,-0.7983140349,-0.7972508669,-0.7965742946,-0.7976374626,-0.7989906073,-0.7989906073,-0.7985073328,-0.7981207371,-0.7975407839,-0.7972508669,-0.797057569,-0.7968642116,-0.7967675924,-0.7965742946,-0.7963809967,-0.7961876988,-0.7960910201,-0.7961876988,-0.796284318,-0.7963809967,-0.7966709137,-0.797057569,-0.7969608903,-0.7964776158,-0.7963809967,-0.7965742946,-0.7969608903,-0.7972508669,-0.7975407839,-0.7978307605,-0.7982173562,-0.7985073328,-0.7984106541,-0.797347486,-0.7961876988,-0.795994401,-0.795994401,-0.7958977222,-0.7960910201,-0.7961876988,-0.7961876988,-0.7960910201,-0.795994401,-0.7960910201,-0.795994401,-0.7958977222,-0.795994401,-0.7960910201,-0.7960910201,-0.7960910201,-0.796284318,-0.7963809967,-0.7963809967,-0.7964776158,-0.7966709137,-0.7966709137,-0.7966709137,-0.7966709137,-0.7967675924,-0.7967675924,-0.7966709137,-0.7966709137,-0.7967675924,-0.7967675924,-0.7968642116,-0.7971541882,-0.7972508669,-0.7975407839,-0.7975407839,-0.7974441648,-0.7989906073,-0.8016002774,-0.8025668263,-0.8016969562,-0.8007304072,-0.8009237051,-0.7977340817,-0.7902917862,-0.7865223289,-0.7871989012,-0.7870056033,-0.7871022224,-0.7878754735,-0.7893252969,-0.7923215032,-0.7952211499,-0.7976374626,-0.8005371094,-0.8023735285,-0.8026634455,-0.8025668263,-0.8024701476,-0.8024701476,-0.8024701476,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8025668263,-0.8025668263,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8023735285,-0.8021802306,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8024701476,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8016002774,-0.8001505136,-0.7974441648,-0.7938680053,-0.7912583351,-0.7890353203,-0.7874888182,-0.786618948,-0.7852658033,-0.7877787948,-0.7955111265,-0.7997637987,-0.7996671796,-0.800827086,-0.8016969562,-0.8020835519,-0.8025668263,-0.8016969562,-0.7985073328,-0.797057569,-0.7975407839,-0.7977340817,-0.7976374626,-0.7976374626,-0.7975407839,-0.7975407839,-0.7975407839,-0.797347486,-0.797057569,-0.7966709137,-0.7966709137,-0.7967675924,-0.7967675924,-0.797057569,-0.797057569,-0.797057569,-0.7971541882,-0.7969608903,-0.7965742946,-0.7963809967,-0.7963809967,-0.7963809967,-0.7963809967,-0.7963809967,-0.7963809967,-0.7961876988,-0.796284318,-0.7966709137,-0.7965742946,-0.796284318,-0.7961876988,-0.796284318,-0.7963809967,-0.7968642116,-0.7968642116,-0.7964776158,-0.796284318,-0.7963809967,-0.7966709137,-0.7966709137,-0.7966709137,-0.7965742946,-0.7963809967,-0.7964776158,-0.7964776158,-0.7965742946,-0.7976374626,-0.7981207371,-0.7971541882,-0.7963809967,-0.7964776158,-0.7965742946,-0.7965742946,-0.7965742946,-0.7968642116,-0.7974441648,-0.7975407839,-0.797347486,-0.7969608903,-0.7968642116,-0.797057569,-0.7971541882,-0.7968642116,-0.7965742946,-0.7972508669,-0.7984106541,-0.7988939285,-0.7988939285,-0.7987973094,-0.7982173562,-0.797347486,-0.7971541882,-0.7972508669,-0.797057569,-0.7966709137,-0.7965742946,-0.7967675924,-0.7963809967,-0.7960910201,-0.7961876988,-0.796284318,-0.796284318,-0.7965742946,-0.7972508669,-0.797347486,-0.7965742946,-0.796284318,-0.7964776158,-0.7968642116,-0.7972508669,-0.7975407839,-0.7980240583,-0.7984106541,-0.7986039519,-0.7984106541,-0.7971541882,-0.795994401,-0.7958977222,-0.7958977222,-0.7958977222,-0.7960910201,-0.7961876988,-0.7960910201,-0.795994401,-0.7960910201,-0.7961876988,-0.7960910201,-0.7960910201,-0.7961876988,-0.796284318,-0.796284318,-0.7963809967,-0.7964776158,-0.7963809967,-0.7965742946,-0.7966709137,-0.7964776158,-0.7966709137,-0.7968642116,-0.7968642116,-0.7965742946,-0.7967675924,-0.797057569,-0.7967675924,-0.7966709137,-0.7967675924,-0.7969608903,-0.7972508669,-0.7974441648,-0.7976374626,-0.7975407839,-0.7978307605,-0.8000538349,-0.8021802306,-0.8022768497,-0.8013103604,-0.8007304072,-0.8003438115,-0.7961876988,-0.7901951671,-0.7884553671,-0.789131999,-0.7885520458,-0.7874888182,-0.7871989012,-0.7893252969,-0.7928047776,-0.7953178287,-0.7977340817,-0.800827086,-0.8024701476,-0.8024701476,-0.8024701476,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8024701476,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8024701476,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8024701476,-0.8024701476,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8021802306,-0.8012136817,-0.7996671796,-0.7976374626,-0.7947378755,-0.791451633,-0.7892286181,-0.7877787948,-0.7870056033,-0.7853624225,-0.7855557799,-0.7920315266,-0.7987973094,-0.7997637987,-0.8001505136,-0.8016002774,-0.8017935753,-0.8024701476,-0.8027601242,-0.800827086,-0.7985073328,-0.7980240583,-0.7980240583,-0.7975407839,-0.7974441648,-0.7975407839,-0.7975407839,-0.7976374626,-0.7976374626,-0.7971541882,-0.7966709137,-0.7965742946,-0.7966709137,-0.7968642116,-0.797057569,-0.797057569,-0.797057569,-0.7971541882,-0.7969608903,-0.7964776158,-0.796284318,-0.796284318,-0.7963809967,-0.7961876988,-0.7961876988,-0.796284318,-0.796284318,-0.7963809967,-0.7966709137,-0.7964776158,-0.7961876988,-0.7960910201,-0.7963809967,-0.7964776158,-0.7965742946,-0.7965742946,-0.7965742946,-0.7963809967,-0.7960910201,-0.7961876988,-0.7966709137,-0.7966709137,-0.7963809967,-0.7963809967,-0.7965742946,-0.7964776158,-0.7967675924,-0.7977340817,-0.7979274392,-0.797057569,-0.7964776158,-0.7963809967,-0.7964776158,-0.7965742946,-0.7964776158,-0.7965742946,-0.7972508669,-0.7977340817,-0.7975407839,-0.7974441648,-0.797347486,-0.797057569,-0.7969608903,-0.797057569,-0.7974441648,-0.7982173562,-0.7987006307,-0.7987006307,-0.7988939285,-0.7988939285,-0.7980240583,-0.797057569,-0.7968642116,-0.7972508669,-0.7971541882,-0.7968642116,-0.7969608903,-0.7969608903,-0.7964776158,-0.7961876988,-0.7961876988,-0.7963809967,-0.7964776158,-0.796284318,-0.7968642116,-0.7974441648,-0.7968642116,-0.7961876988,-0.7964776158,-0.797057569,-0.7974441648,-0.7977340817,-0.7981207371,-0.7985073328,-0.7987973094,-0.7982173562,-0.7969608903,-0.7960910201,-0.795994401,-0.7958010435,-0.7958010435,-0.7960910201,-0.7961876988,-0.7961876988,-0.7960910201,-0.7961876988,-0.7961876988,-0.7960910201,-0.7960910201,-0.796284318,-0.7961876988,-0.7963809967,-0.7965742946,-0.7964776158,-0.7964776158,-0.7966709137,-0.7966709137,-0.7966709137,-0.7968642116,-0.7969608903,-0.7969608903,-0.797057569,-0.7972508669,-0.797347486,-0.7971541882,-0.797057569,-0.797057569,-0.7971541882,-0.797347486,-0.7975407839,-0.7975407839,-0.7972508669,-0.7984106541,-0.8012136817,-0.8025668263,-0.8016969562,-0.8007304072,-0.8007304072,-0.7985073328,-0.7923215032,-0.7879720926,-0.7883586884,-0.7892286181,-0.789131999,-0.7880687714,-0.7874888182,-0.7900018692,-0.7932879925,-0.7955111265,-0.7981207371,-0.8009237051,-0.8022768497,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8025668263,-0.8023735285,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8024701476,-0.8021802306,-0.8022768497,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8020835519,-0.801890254,-0.8027601242,-0.8023735285,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8021802306,-0.8009237051,-0.7990872264,-0.7972508669,-0.7951245308,-0.7917416096,-0.7888420224,-0.7875854969,-0.7874888182,-0.7869089246,-0.7858456969,-0.7893252969,-0.7968642116,-0.7999572158,-0.7996671796,-0.8009237051,-0.8017935753,-0.8017935753,-0.8026634455,-0.8025668263,-0.8002471328,-0.7981207371,-0.7978307605,-0.7978307605,-0.7974441648,-0.7975407839,-0.7976374626,-0.7974441648,-0.797347486,-0.7969608903,-0.7965742946,-0.7965742946,-0.7967675924,-0.7967675924,-0.7967675924,-0.797057569,-0.7972508669,-0.7971541882,-0.7969608903,-0.7966709137,-0.7963809967,-0.7963809967,-0.7963809967,-0.796284318,-0.7963809967,-0.7963809967,-0.796284318,-0.7961876988,-0.7963809967,-0.7965742946,-0.7964776158,-0.7961876988,-0.7963809967,-0.7964776158,-0.7965742946,-0.7967675924,-0.7966709137,-0.7964776158,-0.7963809967,-0.7963809967,-0.7967675924,-0.7968642116,-0.7964776158,-0.796284318,-0.7964776158,-0.7965742946,-0.7967675924,-0.797347486,-0.7975407839,-0.797057569,-0.7965742946,-0.7964776158,-0.7964776158,-0.7965742946,-0.7964776158,-0.7964776158,-0.7968642116,-0.7969608903,-0.7967675924,-0.7972508669,-0.7976374626,-0.7974441648,-0.7974441648,-0.7978307605,-0.7982173562,-0.7986039519,-0.7985073328,-0.7985073328,-0.7989906073,-0.7986039519,-0.7975407839,-0.7968642116,-0.7965742946,-0.797057569,-0.797347486,-0.7969608903,-0.7967675924,-0.7968642116,-0.7966709137,-0.7964776158,-0.7963809967,-0.7963809967,-0.7963809967,-0.7964776158,-0.7968642116,-0.7972508669,-0.7971541882,-0.7967675924,-0.7965742946,-0.7967675924,-0.7975407839,-0.7979274392,-0.7982173562,-0.7986039519,-0.7986039519,-0.7978307605,-0.7965742946,-0.7958977222,-0.795994401,-0.7960910201,-0.7960910201,-0.7961876988,-0.7961876988,-0.795994401,-0.795994401,-0.795994401,-0.7960910201,-0.7961876988,-0.7961876988,-0.7961876988,-0.7961876988,-0.796284318,-0.796284318,-0.7963809967,-0.7965742946,-0.7968642116,-0.7968642116,-0.7967675924,-0.7968642116,-0.7971541882,-0.797347486,-0.7974441648,-0.7975407839,-0.7975407839,-0.7975407839,-0.7974441648,-0.7974441648,-0.7975407839,-0.7975407839,-0.7977340817,-0.7977340817,-0.7978307605,-0.7998605371,-0.8021802306,-0.8024701476,-0.8012136817,-0.8006337881,-0.8005371094,-0.795994401,-0.7887453437,-0.7861357331,-0.7871989012,-0.787392199,-0.7875854969,-0.7878754735,-0.7882620692,-0.7906783819,-0.7935779691,-0.7956077456,-0.7982173562,-0.8012136817,-0.8025668263,-0.8025668263,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8024701476,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8024701476,-0.8025668263,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8024701476,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8024701476,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8017935753,-0.8015036583,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8007304072,-0.8002471328,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.801890254,-0.8005371094,-0.7990872264,-0.7972508669,-0.7949311733,-0.7917416096,-0.788648665,-0.7871022224,-0.7867156267,-0.7871989012,-0.786618948,-0.7871022224,-0.7931913733,-0.7991839051,-0.7997637987,-0.7995705009,-0.8006337881,-0.8013103604,-0.8020835519,-0.8026634455,-0.8021802306,-0.7995705009,-0.7978307605,-0.7979274392,-0.7977340817,-0.7974441648,-0.7975407839,-0.7974441648,-0.7974441648,-0.797057569,-0.7965742946,-0.7965742946,-0.7967675924,-0.7968642116,-0.7969608903,-0.7972508669,-0.797347486,-0.7971541882,-0.797057569,-0.7969608903,-0.7968642116,-0.7966709137,-0.7965742946,-0.7964776158,-0.7963809967,-0.7964776158,-0.7963809967,-0.796284318,-0.7963809967,-0.7966709137,-0.7966709137,-0.7963809967,-0.796284318,-0.796284318,-0.7964776158,-0.7967675924,-0.7967675924,-0.7964776158,-0.7964776158,-0.7966709137,-0.7967675924,-0.7967675924,-0.7965742946,-0.7964776158,-0.7963809967,-0.7963809967,-0.7968642116,-0.797347486,-0.7971541882,-0.7966709137,-0.7966709137,-0.7965742946,-0.7965742946,-0.7965742946,-0.7963809967,-0.7964776158,-0.7967675924,-0.7967675924,-0.7969608903,-0.7977340817,-0.7983140349,-0.7983140349,-0.7982173562,-0.7980240583,-0.7978307605,-0.7979274392,-0.7979274392,-0.7984106541,-0.7990872264,-0.7986039519,-0.7972508669,-0.7965742946,-0.7966709137,-0.7969608903,-0.7969608903,-0.7967675924,-0.7965742946,-0.7966709137,-0.7967675924,-0.7968642116,-0.7965742946,-0.7963809967,-0.7964776158,-0.7966709137,-0.7969608903,-0.7969608903,-0.7967675924,-0.7967675924,-0.7965742946,-0.7966709137,-0.7976374626,-0.7984106541,-0.7986039519,-0.7987973094,-0.7986039519,-0.797347486,-0.7960910201,-0.7958977222,-0.7960910201,-0.7961876988,-0.7963809967,-0.7963809967,-0.7961876988,-0.7960910201,-0.7960910201,-0.7960910201,-0.7960910201,-0.7961876988,-0.796284318,-0.796284318,-0.7963809967,-0.7965742946,-0.7966709137,-0.7967675924,-0.7969608903,-0.797057569,-0.7971541882,-0.7971541882,-0.797057569,-0.7972508669,-0.797347486,-0.7977340817,-0.7981207371,-0.7979274392,-0.7976374626,-0.7975407839,-0.7976374626,-0.7976374626,-0.7976374626,-0.7976374626,-0.7975407839,-0.7986039519,-0.8012136817,-0.8025668263,-0.8019868731,-0.800827086,-0.8010203838,-0.7998605371,-0.7934813499,-0.7875854969,-0.7871989012,-0.7875854969,-0.7871989012,-0.7874888182,-0.7876821756,-0.788648665,-0.7908717394,-0.7933846712,-0.7958977222,-0.7987973094,-0.8014069796,-0.8024701476,-0.8025668263,-0.8026634455,-0.8028567433,-0.8025668263,-0.8025668263,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8023735285,-0.8022768497,-0.801890254,-0.8012136817,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.801117003,-0.8005371094,-0.8027601242,-0.8021802306,-0.8026634455,-0.8024701476,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8019868731,-0.8001505136,-0.7984106541,-0.7961876988,-0.7936747074,-0.7910650373,-0.788648665,-0.7871022224,-0.7865223289,-0.7870056033,-0.786618948,-0.7856523991,-0.7896152139,-0.7965742946,-0.7990872264,-0.7992805243,-0.8004404902,-0.8012136817,-0.8012136817,-0.8019868731,-0.8027601242,-0.8015036583,-0.7987006307,-0.7975407839,-0.7976374626,-0.7976374626,-0.7976374626,-0.7975407839,-0.7972508669,-0.797057569,-0.7968642116,-0.7967675924,-0.7967675924,-0.7968642116,-0.797057569,-0.7972508669,-0.797347486,-0.797347486,-0.797347486,-0.7972508669,-0.7969608903,-0.7968642116,-0.7968642116,-0.7968642116,-0.7967675924,-0.7965742946,-0.796284318,-0.796284318,-0.7963809967,-0.7965742946,-0.7963809967,-0.796284318,-0.7963809967,-0.796284318,-0.796284318,-0.7964776158,-0.7964776158,-0.7964776158,-0.7965742946,-0.7965742946,-0.7967675924,-0.7967675924,-0.7964776158,-0.7963809967,-0.7964776158,-0.7964776158,-0.7966709137,-0.797057569,-0.7969608903,-0.7965742946,-0.7963809967,-0.7964776158,-0.7965742946,-0.7965742946,-0.7963809967,-0.7964776158,-0.7964776158,-0.7963809967,-0.7967675924,-0.7976374626,-0.7983140349,-0.7984106541,-0.7982173562,-0.7981207371,-0.7982173562,-0.7981207371,-0.7979274392,-0.7986039519,-0.7992805243,-0.7986039519,-0.7972508669,-0.7966709137,-0.7966709137,-0.7966709137,-0.7971541882,-0.797347486,-0.797057569,-0.7967675924,-0.7966709137,-0.7967675924,-0.7966709137,-0.7964776158,-0.7963809967,-0.7966709137,-0.7969608903,-0.7968642116,-0.7967675924,-0.797057569,-0.7968642116,-0.7966709137,-0.797347486,-0.7983140349,-0.7988939285,-0.7988939285,-0.7980240583,-0.7965742946,-0.795994401,-0.7958977222,-0.795994401,-0.7961876988,-0.796284318,-0.795994401,-0.7958977222,-0.7958977222,-0.7960910201,-0.7961876988,-0.796284318,-0.796284318,-0.7960910201,-0.796284318,-0.7966709137,-0.7969608903,-0.797057569,-0.797057569,-0.7968642116,-0.7969608903,-0.7971541882,-0.7971541882,-0.797057569,-0.7972508669,-0.797347486,-0.7976374626,-0.7981207371,-0.7983140349,-0.7979274392,-0.7976374626,-0.7976374626,-0.7976374626,-0.7977340817,-0.7975407839,-0.7975407839,-0.7996671796,-0.8022768497,-0.8025668263,-0.8015036583,-0.8009237051,-0.8014069796,-0.7980240583,-0.7900984883,-0.786618948,-0.7876821756,-0.7875854969,-0.7875854969,-0.7878754735,-0.7875854969,-0.7887453437,-0.7912583351,-0.7935779691,-0.7958977222,-0.7988939285,-0.8016002774,-0.8024701476,-0.8025668263,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8025668263,-0.8024701476,-0.8026634455,-0.8025668263,-0.8027601242,-0.8025668263,-0.8026634455,-0.8024701476,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8025668263,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8024701476,-0.801890254,-0.8016969562,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8025668263,-0.8023735285,-0.8027601242,-0.8024701476,-0.8026634455,-0.8024701476,-0.8025668263,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8020835519,-0.8002471328,-0.7979274392,-0.7948345542,-0.7920315266,-0.7901951671,-0.7882620692,-0.7869089246,-0.7864256501,-0.786618948,-0.7867156267,-0.7857490778,-0.7877787948,-0.7946412563,-0.7989906073,-0.7992805243,-0.8003438115,-0.8015036583,-0.800827086,-0.8003438115,-0.8019868731,-0.8026634455,-0.8004404902,-0.7980240583,-0.7977340817,-0.7978307605,-0.7976374626,-0.7975407839,-0.797347486,-0.797057569,-0.7969608903,-0.7969608903,-0.7968642116,-0.7969608903,-0.7971541882,-0.797057569,-0.797057569,-0.797347486,-0.7975407839,-0.7972508669,-0.7969608903,-0.7969608903,-0.7968642116,-0.7968642116,-0.7968642116,-0.7966709137,-0.7964776158,-0.7964776158,-0.7963809967,-0.7963809967,-0.7964776158,-0.7965742946,-0.7964776158,-0.796284318,-0.7961876988,-0.7964776158,-0.7966709137,-0.7964776158,-0.7964776158,-0.7967675924,-0.7968642116,-0.7967675924,-0.7964776158,-0.7964776158,-0.7966709137,-0.7965742946,-0.7965742946,-0.7969608903,-0.7968642116,-0.7964776158,-0.7963809967,-0.7964776158,-0.7963809967,-0.7964776158,-0.7964776158,-0.7963809967,-0.7964776158,-0.7964776158,-0.7966709137,-0.7974441648,-0.7981207371,-0.7979274392,-0.7979274392,-0.7987006307,-0.7989906073,-0.7984106541,-0.7982173562,-0.7985073328,-0.7988939285,-0.7984106541,-0.797347486,-0.7965742946,-0.7964776158,-0.7967675924,-0.7972508669,-0.797347486,-0.7969608903,-0.7969608903,-0.7968642116,-0.7965742946,-0.7966709137,-0.7965742946,-0.7963809967,-0.7965742946,-0.7969608903,-0.7968642116,-0.7966709137,-0.7968642116,-0.7967675924,-0.7964776158,-0.7969608903,-0.7982173562,-0.7990872264,-0.7985073328,-0.7971541882,-0.7963809967,-0.7961876988,-0.795994401,-0.7961876988,-0.7964776158,-0.7963809967,-0.7961876988,-0.7960910201,-0.7960910201,-0.7960910201,-0.796284318,-0.7964776158,-0.7966709137,-0.7967675924,-0.7969608903,-0.7971541882,-0.7972508669,-0.7972508669,-0.7972508669,-0.7972508669,-0.797057569,-0.7968642116,-0.7969608903,-0.797057569,-0.797057569,-0.7972508669,-0.7975407839,-0.7978307605,-0.7984106541,-0.7984106541,-0.7979274392,-0.7976374626,-0.7976374626,-0.7979274392,-0.7979274392,-0.7986039519,-0.8009237051,-0.8023735285,-0.8020835519,-0.801117003,-0.8012136817,-0.8012136817,-0.7955111265,-0.7878754735,-0.7864256501,-0.7874888182,-0.787392199,-0.7874888182,-0.7872955203,-0.7871022224,-0.7883586884,-0.7909683585,-0.7938680053,-0.7960910201,-0.7987973094,-0.8016002774,-0.8024701476,-0.8023735285,-0.8025668263,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8024701476,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8023735285,-0.8022768497,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8017935753,-0.7999572158,-0.7978307605,-0.7947378755,-0.7913549542,-0.7892286181,-0.7877787948,-0.7869089246,-0.7868123055,-0.7870056033,-0.7874888182,-0.7864256501,-0.7876821756,-0.7949311733,-0.7997637987,-0.7991839051,-0.7994738221,-0.801117003,-0.8014069796,-0.799377203,-0.7984106541,-0.801117003,-0.8021802306,-0.7994738221,-0.7978307605,-0.7978307605,-0.7976374626,-0.7974441648,-0.7972508669,-0.7971541882,-0.7969608903,-0.7967675924,-0.7967675924,-0.7969608903,-0.7971541882,-0.7971541882,-0.7971541882,-0.7972508669,-0.7971541882,-0.797057569,-0.797057569,-0.7968642116,-0.7966709137,-0.7965742946,-0.7968642116,-0.7971541882,-0.797057569,-0.7965742946,-0.7963809967,-0.7963809967,-0.7965742946,-0.7966709137,-0.7964776158,-0.7961876988,-0.7960910201,-0.796284318,-0.7964776158,-0.7964776158,-0.7964776158,-0.7965742946,-0.7966709137,-0.7968642116,-0.7967675924,-0.7964776158,-0.7964776158,-0.7965742946,-0.7966709137,-0.7968642116,-0.7966709137,-0.7963809967,-0.796284318,-0.7964776158,-0.7966709137,-0.7965742946,-0.7965742946,-0.7966709137,-0.7965742946,-0.7964776158,-0.7966709137,-0.7971541882,-0.7979274392,-0.7980240583,-0.7982173562,-0.7996671796,-0.8001505136,-0.7987973094,-0.7978307605,-0.7979274392,-0.7983140349,-0.7980240583,-0.797057569,-0.7965742946,-0.7967675924,-0.7967675924,-0.7969608903,-0.797347486,-0.797347486,-0.797057569,-0.7967675924,-0.7967675924,-0.7968642116,-0.7966709137,-0.7963809967,-0.7964776158,-0.7968642116,-0.7967675924,-0.7963809967,-0.7967675924,-0.797057569,-0.7965742946,-0.7966709137,-0.7982173562,-0.7989906073,-0.7977340817,-0.7964776158,-0.796284318,-0.796284318,-0.7960910201,-0.7960910201,-0.796284318,-0.796284318,-0.7961876988,-0.7960910201,-0.7961876988,-0.7963809967,-0.7967675924,-0.797057569,-0.797057569,-0.797057569,-0.7972508669,-0.7974441648,-0.7974441648,-0.7974441648,-0.7974441648,-0.7972508669,-0.7971541882,-0.7972508669,-0.7971541882,-0.797057569,-0.797057569,-0.797347486,-0.7975407839,-0.7974441648,-0.7977340817,-0.7983140349,-0.7983140349,-0.7981207371,-0.7983140349,-0.7981207371,-0.7983140349,-0.8002471328,-0.8020835519,-0.8021802306,-0.8015036583,-0.800827086,-0.8014069796,-0.7994738221,-0.7920315266,-0.7869089246,-0.787392199,-0.7874888182,-0.7870056033,-0.787392199,-0.7871989012,-0.7870056033,-0.7879720926,-0.7906783819,-0.7938680053,-0.7961876988,-0.7988939285,-0.8014069796,-0.8024701476,-0.8024701476,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8024701476,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8024701476,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8020835519,-0.8016969562,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8016002774,-0.7997637987,-0.7979274392,-0.7957044244,-0.7919349074,-0.7883586884,-0.7870056033,-0.7869089246,-0.7867156267,-0.7868123055,-0.7872955203,-0.7867156267,-0.7880687714,-0.7948345542,-0.799377203,-0.7987006307,-0.7989906073,-0.8009237051,-0.8017935753,-0.7988939285,-0.7946412563,-0.797347486,-0.8027601242,-0.8015036583,-0.7983140349,-0.7978307605,-0.7979274392,-0.7975407839,-0.7972508669,-0.7971541882,-0.7971541882,-0.7969608903,-0.7968642116,-0.7968642116,-0.797057569,-0.7971541882,-0.797057569,-0.797057569,-0.7969608903,-0.7969608903,-0.797057569,-0.797057569,-0.7968642116,-0.797057569,-0.7972508669,-0.797347486,-0.797347486,-0.7969608903,-0.7965742946,-0.7963809967,-0.7963809967,-0.7966709137,-0.7967675924,-0.7965742946,-0.7963809967,-0.7963809967,-0.7963809967,-0.7965742946,-0.7965742946,-0.7964776158,-0.7965742946,-0.7966709137,-0.7966709137,-0.7965742946,-0.7964776158,-0.7964776158,-0.7964776158,-0.7964776158,-0.7966709137,-0.7965742946,-0.7963809967,-0.7963809967,-0.7964776158,-0.7963809967,-0.7964776158,-0.7966709137,-0.7966709137,-0.7966709137,-0.7967675924,-0.797057569,-0.7975407839,-0.7975407839,-0.7983140349,-0.800827086,-0.8015036583,-0.7992805243,-0.7979274392,-0.7979274392,-0.7976374626,-0.7975407839,-0.7972508669,-0.7967675924,-0.7965742946,-0.7966709137,-0.7969608903,-0.7974441648,-0.7976374626,-0.797347486,-0.7969608903,-0.7967675924,-0.7966709137,-0.7963809967,-0.7961876988,-0.7964776158,-0.7969608903,-0.7967675924,-0.7963809967,-0.7968642116,-0.7971541882,-0.7964776158,-0.7964776158,-0.7978307605,-0.7983140349,-0.797057569,-0.7961876988,-0.7961876988,-0.7961876988,-0.7961876988,-0.796284318,-0.7961876988,-0.7961876988,-0.7960910201,-0.7960910201,-0.796284318,-0.7966709137,-0.797057569,-0.7971541882,-0.7972508669,-0.7974441648,-0.7975407839,-0.7977340817,-0.7978307605,-0.7978307605,-0.7975407839,-0.797347486,-0.797347486,-0.7974441648,-0.7974441648,-0.797347486,-0.7971541882,-0.7971541882,-0.7972508669,-0.797347486,-0.7975407839,-0.7978307605,-0.7981207371,-0.7982173562,-0.7982173562,-0.7982173562,-0.7997637987,-0.801890254,-0.8023735285,-0.801890254,-0.801117003,-0.8010203838,-0.8013103604,-0.7963809967,-0.7884553671,-0.7867156267,-0.7880687714,-0.7875854969,-0.7872955203,-0.787392199,-0.787392199,-0.7874888182,-0.7885520458,-0.7919349074,-0.7948345542,-0.7965742946,-0.7988939285,-0.8012136817,-0.8024701476,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8024701476,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8024701476,-0.8026634455,-0.8024701476,-0.8023735285,-0.8023735285,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8022768497,-0.8021802306,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8015036583,-0.7995705009,-0.7977340817,-0.7958977222,-0.7926114798,-0.7888420224,-0.7870056033,-0.786618948,-0.7864256501,-0.7861357331,-0.786329031,-0.7861357331,-0.7870056033,-0.792514801,-0.7982173562,-0.7987006307,-0.7984106541,-0.8000538349,-0.8015036583,-0.8005371094,-0.7961876988,-0.7953178287,-0.8007304072,-0.8025668263,-0.7996671796,-0.7976374626,-0.7979274392,-0.7979274392,-0.7976374626,-0.7975407839,-0.7975407839,-0.7972508669,-0.7968642116,-0.7968642116,-0.7969608903,-0.7969608903,-0.7969608903,-0.7968642116,-0.7967675924,-0.7968642116,-0.797057569,-0.797057569,-0.7969608903,-0.797347486,-0.7977340817,-0.7976374626,-0.7974441648,-0.7971541882,-0.7967675924,-0.7964776158,-0.7964776158,-0.7966709137,-0.7966709137,-0.796284318,-0.7961876988,-0.796284318,-0.7965742946,-0.7966709137,-0.7964776158,-0.7965742946,-0.7966709137,-0.7965742946,-0.7966709137,-0.7968642116,-0.7967675924,-0.7965742946,-0.7965742946,-0.7965742946,-0.7965742946,-0.7965742946,-0.7966709137,-0.7966709137,-0.7964776158,-0.7964776158,-0.7964776158,-0.7965742946,-0.7968642116,-0.7968642116,-0.7966709137,-0.7969608903,-0.7975407839,-0.7975407839,-0.7987006307,-0.801890254,-0.8024701476,-0.799377203,-0.7978307605,-0.7976374626,-0.797057569,-0.7971541882,-0.7974441648,-0.7974441648,-0.797347486,-0.7968642116,-0.7967675924,-0.7974441648,-0.7979274392,-0.7978307605,-0.797347486,-0.7968642116,-0.7966709137,-0.7964776158,-0.7961876988,-0.7966709137,-0.797057569,-0.7967675924,-0.796284318,-0.7966709137,-0.797057569,-0.7964776158,-0.796284318,-0.7969608903,-0.797057569,-0.7966709137,-0.7963809967,-0.7961876988,-0.7961876988,-0.7964776158,-0.7963809967,-0.7958977222,-0.7958977222,-0.7963809967,-0.7963809967,-0.7964776158,-0.7969608903,-0.7971541882,-0.7971541882,-0.7972508669,-0.797347486,-0.7974441648,-0.7975407839,-0.7976374626,-0.7977340817,-0.7979274392,-0.7979274392,-0.7977340817,-0.7975407839,-0.797347486,-0.797347486,-0.7972508669,-0.797347486,-0.7974441648,-0.7974441648,-0.7974441648,-0.7976374626,-0.7978307605,-0.7979274392,-0.7981207371,-0.799377203,-0.8016002774,-0.8023735285,-0.8019868731,-0.8016002774,-0.800827086,-0.8012136817,-0.8002471328,-0.7932879925,-0.7869089246,-0.7869089246,-0.7875854969,-0.7872955203,-0.7875854969,-0.7875854969,-0.7872955203,-0.7874888182,-0.789131999,-0.7924181223,-0.7951245308,-0.7966709137,-0.7987973094,-0.8013103604,-0.8024701476,-0.8025668263,-0.8027601242,-0.8025668263,-0.8024701476,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8025668263,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8025668263,-0.8022768497,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8028567433,-0.8014069796,-0.7992805243,-0.7972508669,-0.7950278521,-0.7917416096,-0.7888420224,-0.7871989012,-0.7864256501,-0.786329031,-0.7861357331,-0.786329031,-0.7861357331,-0.7861357331,-0.7908717394,-0.7975407839,-0.799377203,-0.7984106541,-0.7994738221,-0.8013103604,-0.8016002774,-0.7989906073,-0.7969608903,-0.7999572158,-0.8023735285,-0.8016969562,-0.7987973094,-0.7980240583,-0.7980240583,-0.7977340817,-0.7976374626,-0.7977340817,-0.7975407839,-0.797057569,-0.797057569,-0.7971541882,-0.7968642116,-0.7967675924,-0.7968642116,-0.7969608903,-0.7968642116,-0.7968642116,-0.7971541882,-0.797347486,-0.7974441648,-0.7976374626,-0.7977340817,-0.7975407839,-0.7971541882,-0.7968642116,-0.7967675924,-0.7965742946,-0.7966709137,-0.7969608903,-0.7966709137,-0.796284318,-0.796284318,-0.7963809967,-0.7964776158,-0.7964776158,-0.7964776158,-0.7965742946,-0.7967675924,-0.7967675924,-0.7966709137,-0.7966709137,-0.7966709137,-0.7966709137,-0.7967675924,-0.7966709137,-0.7965742946,-0.7966709137,-0.7966709137,-0.7965742946,-0.7966709137,-0.7965742946,-0.7965742946,-0.7969608903,-0.797057569,-0.7967675924,-0.7967675924,-0.7968642116,-0.797057569,-0.7988939285,-0.8022768497,-0.8021802306,-0.7997637987,-0.7977340817,-0.797347486,-0.7969608903,-0.7969608903,-0.7976374626,-0.7978307605,-0.7972508669,-0.7968642116,-0.7969608903,-0.797347486,-0.7979274392,-0.7981207371,-0.7976374626,-0.7969608903,-0.7966709137,-0.7965742946,-0.7965742946,-0.7966709137,-0.7967675924,-0.7966709137,-0.7965742946,-0.7968642116,-0.7971541882,-0.7968642116,-0.7964776158,-0.7965742946,-0.7965742946,-0.7963809967,-0.7961876988,-0.7961876988,-0.796284318,-0.7963809967,-0.796284318,-0.795994401,-0.7960910201,-0.7963809967,-0.7963809967,-0.7964776158,-0.7967675924,-0.7969608903,-0.7968642116,-0.7968642116,-0.7969608903,-0.797057569,-0.7971541882,-0.7972508669,-0.7972508669,-0.7975407839,-0.7978307605,-0.7980240583,-0.7980240583,-0.7977340817,-0.7974441648,-0.7975407839,-0.7977340817,-0.7976374626,-0.7975407839,-0.7974441648,-0.7976374626,-0.7980240583,-0.7983140349,-0.7990872264,-0.8009237051,-0.8021802306,-0.8021802306,-0.801890254,-0.8014069796,-0.800827086,-0.801117003,-0.7983140349,-0.791451633,-0.787392199,-0.7871989012,-0.7871022224,-0.7870056033,-0.787392199,-0.7872955203,-0.7864256501,-0.786618948,-0.7893252969,-0.7922248244,-0.793964684,-0.7958977222,-0.7985073328,-0.801117003,-0.8021802306,-0.8022768497,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8024701476,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8023735285,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8009237051,-0.8026634455,-0.8023735285,-0.8024701476,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8024701476,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8024701476,-0.8025668263,-0.8025668263,-0.8028567433,-0.8012136817,-0.7987973094,-0.797057569,-0.7946412563,-0.7910650373,-0.7884553671,-0.7869089246,-0.786329031,-0.786618948,-0.7867156267,-0.7868123055,-0.7865223289,-0.7864256501,-0.7908717394,-0.7975407839,-0.7995705009,-0.7985073328,-0.7991839051,-0.8007304072,-0.8015036583,-0.8012136817,-0.8009237051,-0.8016969562,-0.8026634455,-0.8027601242,-0.8005371094,-0.7984106541,-0.7978307605,-0.7980240583,-0.7979274392,-0.7978307605,-0.7976374626,-0.7971541882,-0.797057569,-0.7971541882,-0.797057569,-0.797057569,-0.797347486,-0.797347486,-0.7971541882,-0.7971541882,-0.797347486,-0.797347486,-0.7976374626,-0.7976374626,-0.7974441648,-0.7972508669,-0.797057569,-0.7967675924,-0.7966709137,-0.7964776158,-0.7965742946,-0.7968642116,-0.7968642116,-0.7964776158,-0.7963809967,-0.7965742946,-0.7965742946,-0.7965742946,-0.7965742946,-0.7966709137,-0.7968642116,-0.7968642116,-0.7968642116,-0.7966709137,-0.7966709137,-0.7967675924,-0.7966709137,-0.7965742946,-0.7965742946,-0.7965742946,-0.7966709137,-0.7967675924,-0.7966709137,-0.7964776158,-0.7965742946,-0.7968642116,-0.7969608903,-0.7969608903,-0.7969608903,-0.7966709137,-0.7968642116,-0.7989906073,-0.8017935753,-0.801890254,-0.7997637987,-0.7978307605,-0.7971541882,-0.797057569,-0.797057569,-0.797347486,-0.7976374626,-0.7971541882,-0.7969608903,-0.797057569,-0.7974441648,-0.7978307605,-0.7974441648,-0.7967675924,-0.7968642116,-0.7969608903,-0.7966709137,-0.7965742946,-0.7967675924,-0.7968642116,-0.7966709137,-0.7966709137,-0.7969608903,-0.7969608903,-0.7966709137,-0.7965742946,-0.7963809967,-0.7961876988,-0.7961876988,-0.7961876988,-0.7961876988,-0.796284318,-0.7963809967,-0.796284318,-0.796284318,-0.7961876988,-0.796284318,-0.7963809967,-0.7964776158,-0.7966709137,-0.7967675924,-0.7966709137,-0.7968642116,-0.797057569,-0.797057569,-0.797057569,-0.7971541882,-0.7971541882,-0.7971541882,-0.7974441648,-0.7977340817,-0.7980240583,-0.7981207371,-0.7977340817,-0.7974441648,-0.7974441648,-0.7976374626,-0.7976374626,-0.7975407839,-0.7977340817,-0.7980240583,-0.7985073328,-0.8001505136,-0.8021802306,-0.8026634455,-0.8016969562,-0.8012136817,-0.800827086,-0.801117003,-0.8006337881,-0.7950278521,-0.7883586884,-0.7871989012,-0.7875854969,-0.7871989012,-0.7874888182,-0.7878754735,-0.787392199,-0.7870056033,-0.7880687714,-0.7900984883,-0.7917416096,-0.7938680053,-0.796284318,-0.7982173562,-0.8006337881,-0.8021802306,-0.8024701476,-0.8026634455,-0.8027601242,-0.8025668263,-0.8024701476,-0.8025668263,-0.8025668263,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8024701476,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8024701476,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8024701476,-0.8024701476,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8023735285,-0.8023735285,-0.8016002774,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8017935753,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8024701476,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.801117003,-0.7985073328,-0.7964776158,-0.7945445776,-0.7915482521,-0.7887453437,-0.787392199,-0.7868123055,-0.7868123055,-0.7868123055,-0.7867156267,-0.7867156267,-0.7870056033,-0.7903884649,-0.7960910201,-0.7985073328,-0.7981207371,-0.7986039519,-0.7998605371,-0.8012136817,-0.8020835519,-0.8017935753,-0.8015036583,-0.8017935753,-0.8025668263,-0.8019868731,-0.7997637987,-0.7983140349,-0.7983140349,-0.7981207371,-0.7976374626,-0.797347486,-0.797057569,-0.797057569,-0.7972508669,-0.7974441648,-0.7974441648,-0.7974441648,-0.797347486,-0.7972508669,-0.7974441648,-0.7975407839,-0.7975407839,-0.7976374626,-0.7977340817,-0.7977340817,-0.7976374626,-0.797347486,-0.7967675924,-0.7965742946,-0.7965742946,-0.7965742946,-0.7966709137,-0.7966709137,-0.7965742946,-0.7964776158,-0.7964776158,-0.7965742946,-0.7966709137,-0.7966709137,-0.7964776158,-0.7964776158,-0.7967675924,-0.7969608903,-0.7969608903,-0.7969608903,-0.7969608903,-0.7967675924,-0.7964776158,-0.7965742946,-0.7967675924,-0.7967675924,-0.7968642116,-0.7967675924,-0.7967675924,-0.7967675924,-0.7968642116,-0.7969608903,-0.7969608903,-0.7969608903,-0.7965742946,-0.7966709137,-0.7990872264,-0.8021802306,-0.8021802306,-0.799377203,-0.7976374626,-0.797057569,-0.7971541882,-0.797057569,-0.7969608903,-0.797057569,-0.797057569,-0.7969608903,-0.7969608903,-0.7971541882,-0.7980240583,-0.7987006307,-0.7978307605,-0.7967675924,-0.7968642116,-0.7969608903,-0.7966709137,-0.7967675924,-0.7969608903,-0.7966709137,-0.7966709137,-0.7971541882,-0.7969608903,-0.7963809967,-0.796284318,-0.7963809967,-0.7961876988,-0.7960910201,-0.796284318,-0.7965742946,-0.7964776158,-0.7963809967,-0.7963809967,-0.7961876988,-0.796284318,-0.7964776158,-0.7964776158,-0.7965742946,-0.7968642116,-0.7968642116,-0.7967675924,-0.7967675924,-0.7967675924,-0.7966709137,-0.7968642116,-0.797057569,-0.7972508669,-0.7972508669,-0.797347486,-0.7975407839,-0.7977340817,-0.7979274392,-0.7979274392,-0.7975407839,-0.7974441648,-0.7976374626,-0.7976374626,-0.7977340817,-0.7978307605,-0.7977340817,-0.7987973094,-0.8014069796,-0.8026634455,-0.8012136817,-0.8003438115,-0.800827086,-0.8006337881,-0.8010203838,-0.7997637987,-0.7928047776,-0.7868123055,-0.786618948,-0.7870056033,-0.7867156267,-0.787392199,-0.7876821756,-0.7876821756,-0.7883586884,-0.7896152139,-0.7903884649,-0.7915482521,-0.7940613031,-0.7961876988,-0.7979274392,-0.8005371094,-0.8023735285,-0.8024701476,-0.8024701476,-0.8027601242,-0.8025668263,-0.8024701476,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8025668263,-0.8026634455,-0.8024701476,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8024701476,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8025668263,-0.8020835519,-0.8022768497,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8015036583,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8012136817,-0.7981207371,-0.7961876988,-0.7945445776,-0.7911616564,-0.7880687714,-0.786618948,-0.7860390544,-0.7862323523,-0.7868123055,-0.7872955203,-0.7875854969,-0.787392199,-0.7889387012,-0.7923215032,-0.7946412563,-0.7963809967,-0.7985073328,-0.7996671796,-0.8004404902,-0.8014069796,-0.8015036583,-0.801117003,-0.8013103604,-0.8022768497,-0.8027601242,-0.8016002774,-0.7992805243,-0.7983140349,-0.7981207371,-0.7977340817,-0.7972508669,-0.7972508669,-0.797347486,-0.7974441648,-0.7974441648,-0.7975407839,-0.7974441648,-0.7974441648,-0.7977340817,-0.7976374626,-0.7974441648,-0.7976374626,-0.7979274392,-0.7977340817,-0.7974441648,-0.797347486,-0.7971541882,-0.7969608903,-0.7968642116,-0.7965742946,-0.7964776158,-0.7966709137,-0.7966709137,-0.7966709137,-0.7965742946,-0.7965742946,-0.7966709137,-0.7967675924,-0.7966709137,-0.7965742946,-0.7965742946,-0.7966709137,-0.7968642116,-0.7967675924,-0.7966709137,-0.7966709137,-0.7968642116,-0.7968642116,-0.7967675924,-0.7968642116,-0.7968642116,-0.7968642116,-0.7968642116,-0.7968642116,-0.7968642116,-0.7968642116,-0.7968642116,-0.7965742946,-0.7965742946,-0.7967675924,-0.7966709137,-0.7987006307,-0.8025668263,-0.8025668263,-0.7988939285,-0.7969608903,-0.797057569,-0.7969608903,-0.7967675924,-0.7968642116,-0.7967675924,-0.7966709137,-0.7968642116,-0.7969608903,-0.7968642116,-0.797347486,-0.7985073328,-0.7984106541,-0.7971541882,-0.7966709137,-0.7968642116,-0.7966709137,-0.7965742946,-0.7966709137,-0.7966709137,-0.7967675924,-0.797057569,-0.7968642116,-0.7964776158,-0.7964776158,-0.7964776158,-0.796284318,-0.7961876988,-0.796284318,-0.7963809967,-0.7963809967,-0.7963809967,-0.7964776158,-0.796284318,-0.7961876988,-0.7964776158,-0.7967675924,-0.7968642116,-0.7968642116,-0.7967675924,-0.7966709137,-0.7965742946,-0.7966709137,-0.7967675924,-0.7966709137,-0.7967675924,-0.7971541882,-0.7974441648,-0.7974441648,-0.797347486,-0.7976374626,-0.7978307605,-0.7979274392,-0.7978307605,-0.7976374626,-0.7975407839,-0.7974441648,-0.7975407839,-0.7977340817,-0.7982173562,-0.8003438115,-0.8025668263,-0.8021802306,-0.7999572158,-0.8002471328,-0.8010203838,-0.800827086,-0.8010203838,-0.797347486,-0.7897118926,-0.786329031,-0.7871022224,-0.7869089246,-0.7867156267,-0.7870056033,-0.7869089246,-0.7871989012,-0.7877787948,-0.7879720926,-0.7892286181,-0.7921282053,-0.7941579819,-0.7953178287,-0.7979274392,-0.8009237051,-0.8022768497,-0.8023735285,-0.8024701476,-0.8025668263,-0.8024701476,-0.8023735285,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8024701476,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8025668263,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8024701476,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8024701476,-0.8023735285,-0.8023735285,-0.8019868731,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8015036583,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8024701476,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8010203838,-0.7976374626,-0.7964776158,-0.7950278521,-0.7906783819,-0.7874888182,-0.7869089246,-0.7870056033,-0.7876821756,-0.7879720926,-0.7874888182,-0.7871989012,-0.7867156267,-0.7867156267,-0.7878754735,-0.7900018692,-0.7935779691,-0.7976374626,-0.7994738221,-0.7997637987,-0.8006337881,-0.8012136817,-0.8010203838,-0.8010203838,-0.8016969562,-0.8026634455,-0.8027601242,-0.8007304072,-0.7984106541,-0.7977340817,-0.7976374626,-0.7972508669,-0.7972508669,-0.797347486,-0.797347486,-0.797347486,-0.7975407839,-0.7978307605,-0.7976374626,-0.7975407839,-0.7977340817,-0.7977340817,-0.7975407839,-0.7976374626,-0.7976374626,-0.7974441648,-0.797057569,-0.7968642116,-0.7967675924,-0.7966709137,-0.7966709137,-0.7965742946,-0.7965742946,-0.7968642116,-0.7968642116,-0.7966709137,-0.7965742946,-0.7965742946,-0.7964776158,-0.7966709137,-0.7968642116,-0.7968642116,-0.7968642116,-0.7968642116,-0.7967675924,-0.7967675924,-0.7967675924,-0.7966709137,-0.7965742946,-0.7964776158,-0.7966709137,-0.7968642116,-0.7967675924,-0.7966709137,-0.7967675924,-0.7969608903,-0.7968642116,-0.7967675924,-0.7966709137,-0.7965742946,-0.7968642116,-0.7966709137,-0.7985073328,-0.801890254,-0.8020835519,-0.7980240583,-0.796284318,-0.797057569,-0.7968642116,-0.7967675924,-0.7969608903,-0.7969608903,-0.7971541882,-0.797057569,-0.7969608903,-0.7969608903,-0.797057569,-0.797347486,-0.7972508669,-0.797057569,-0.7969608903,-0.7967675924,-0.7965742946,-0.7966709137,-0.7967675924,-0.7967675924,-0.797057569,-0.797057569,-0.7966709137,-0.7965742946,-0.7966709137,-0.796284318,-0.796284318,-0.7963809967,-0.7961876988,-0.7961876988,-0.7963809967,-0.796284318,-0.7961876988,-0.7961876988,-0.796284318,-0.7964776158,-0.7967675924,-0.7968642116,-0.7968642116,-0.7968642116,-0.7967675924,-0.7966709137,-0.7967675924,-0.7967675924,-0.7967675924,-0.7967675924,-0.7969608903,-0.797347486,-0.797347486,-0.7974441648,-0.7976374626,-0.7976374626,-0.7977340817,-0.7977340817,-0.7977340817,-0.7976374626,-0.7976374626,-0.7975407839,-0.7980240583,-0.8004404902,-0.8020835519,-0.800827086,-0.8000538349,-0.8010203838,-0.8016002774,-0.800827086,-0.8006337881,-0.801117003,-0.7963809967,-0.788648665,-0.7862323523,-0.7870056033,-0.7869089246,-0.7870056033,-0.7871022224,-0.7870056033,-0.7870056033,-0.7871022224,-0.7869089246,-0.7881653905,-0.7926114798,-0.7954144478,-0.7957044244,-0.7981207371,-0.8013103604,-0.8024701476,-0.8024701476,-0.8024701476,-0.8025668263,-0.8025668263,-0.8024701476,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8025668263,-0.8021802306,-0.801890254,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8007304072,-0.8025668263,-0.8024701476,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8022768497,-0.8016002774,-0.7980240583,-0.7966709137,-0.7958977222,-0.7922248244,-0.7880687714,-0.7868123055,-0.7880687714,-0.7884553671,-0.7871989012,-0.786329031,-0.7864256501,-0.786329031,-0.786329031,-0.7869089246,-0.7875854969,-0.7902917862,-0.7957044244,-0.799377203,-0.7995705009,-0.8000538349,-0.8012136817,-0.8012136817,-0.8007304072,-0.8009237051,-0.8019868731,-0.8026634455,-0.8021802306,-0.7994738221,-0.7978307605,-0.7978307605,-0.7977340817,-0.7976374626,-0.7976374626,-0.7976374626,-0.7976374626,-0.7978307605,-0.7979274392,-0.7978307605,-0.7975407839,-0.7976374626,-0.7978307605,-0.7975407839,-0.7975407839,-0.7977340817,-0.7974441648,-0.797057569,-0.7968642116,-0.7966709137,-0.7966709137,-0.7967675924,-0.7967675924,-0.7967675924,-0.7968642116,-0.7969608903,-0.7968642116,-0.7964776158,-0.7961876988,-0.7965742946,-0.7966709137,-0.7964776158,-0.7964776158,-0.7967675924,-0.7968642116,-0.7967675924,-0.7966709137,-0.7966709137,-0.7965742946,-0.796284318,-0.7965742946,-0.7968642116,-0.7966709137,-0.7965742946,-0.7965742946,-0.7965742946,-0.7966709137,-0.7967675924,-0.7967675924,-0.7967675924,-0.7968642116,-0.797057569,-0.7968642116,-0.7987006307,-0.8015036583,-0.8010203838,-0.797347486,-0.7965742946,-0.797057569,-0.7966709137,-0.7968642116,-0.7971541882,-0.797057569,-0.7969608903,-0.7969608903,-0.7968642116,-0.7966709137,-0.7967675924,-0.797057569,-0.7969608903,-0.7967675924,-0.7967675924,-0.7966709137,-0.7965742946,-0.7965742946,-0.7967675924,-0.7968642116,-0.7971541882,-0.7969608903,-0.7965742946,-0.7966709137,-0.7966709137,-0.796284318,-0.7961876988,-0.796284318,-0.7963809967,-0.7964776158,-0.7963809967,-0.7961876988,-0.7961876988,-0.7963809967,-0.7965742946,-0.7965742946,-0.7967675924,-0.7968642116,-0.7968642116,-0.7968642116,-0.7968642116,-0.7968642116,-0.7966709137,-0.7965742946,-0.7967675924,-0.797057569,-0.7972508669,-0.7972508669,-0.7972508669,-0.7974441648,-0.7976374626,-0.7976374626,-0.7977340817,-0.7978307605,-0.7978307605,-0.7979274392,-0.7979274392,-0.7981207371,-0.7997637987,-0.8025668263,-0.801890254,-0.7979274392,-0.7976374626,-0.8006337881,-0.8015036583,-0.8002471328,-0.8003438115,-0.8004404902,-0.7957044244,-0.7890353203,-0.7867156267,-0.7868123055,-0.786618948,-0.7867156267,-0.7868123055,-0.7870056033,-0.7871989012,-0.7871989012,-0.7867156267,-0.7882620692,-0.7929980755,-0.7957044244,-0.7958010435,-0.7982173562,-0.8015036583,-0.8025668263,-0.8025668263,-0.8026634455,-0.8025668263,-0.8025668263,-0.8024701476,-0.8024701476,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8028567433,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8017935753,-0.8014069796,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8016969562,-0.8024701476,-0.8024701476,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8024701476,-0.8021802306,-0.7987006307,-0.796284318,-0.7961876988,-0.7941579819,-0.7895185947,-0.7872955203,-0.7880687714,-0.7878754735,-0.786618948,-0.7865223289,-0.7867156267,-0.7865223289,-0.7865223289,-0.7868123055,-0.7871022224,-0.7882620692,-0.7916449308,-0.7963809967,-0.799377203,-0.8000538349,-0.8007304072,-0.8016969562,-0.8012136817,-0.8003438115,-0.8010203838,-0.8023735285,-0.8026634455,-0.8013103604,-0.7988939285,-0.7979274392,-0.7980240583,-0.7978307605,-0.7976374626,-0.7976374626,-0.7978307605,-0.7978307605,-0.7977340817,-0.7977340817,-0.7977340817,-0.7976374626,-0.7975407839,-0.7976374626,-0.7978307605,-0.7976374626,-0.7972508669,-0.7969608903,-0.7967675924,-0.7968642116,-0.7968642116,-0.7967675924,-0.7966709137,-0.7967675924,-0.7967675924,-0.7967675924,-0.7967675924,-0.7966709137,-0.7966709137,-0.7967675924,-0.7967675924,-0.7966709137,-0.7965742946,-0.7967675924,-0.7968642116,-0.7967675924,-0.7966709137,-0.7966709137,-0.7965742946,-0.7963809967,-0.7965742946,-0.7967675924,-0.7965742946,-0.7964776158,-0.7964776158,-0.7965742946,-0.7965742946,-0.7964776158,-0.7968642116,-0.7968642116,-0.7968642116,-0.7969608903,-0.7965742946,-0.7978307605,-0.8000538349,-0.7992805243,-0.7968642116,-0.7967675924,-0.797057569,-0.7967675924,-0.7969608903,-0.7971541882,-0.7971541882,-0.7971541882,-0.7968642116,-0.7967675924,-0.7968642116,-0.7966709137,-0.7966709137,-0.7967675924,-0.7965742946,-0.7964776158,-0.7966709137,-0.7966709137,-0.7965742946,-0.7968642116,-0.7971541882,-0.7972508669,-0.7969608903,-0.7966709137,-0.7965742946,-0.7964776158,-0.796284318,-0.7961876988,-0.7963809967,-0.7965742946,-0.7964776158,-0.7961876988,-0.796284318,-0.7965742946,-0.7965742946,-0.7965742946,-0.7967675924,-0.797057569,-0.7969608903,-0.7968642116,-0.7969608903,-0.7969608903,-0.7967675924,-0.7967675924,-0.7967675924,-0.7968642116,-0.7971541882,-0.797347486,-0.797347486,-0.7975407839,-0.7977340817,-0.7976374626,-0.7976374626,-0.7977340817,-0.7977340817,-0.7979274392,-0.7980240583,-0.7979274392,-0.7990872264,-0.8015036583,-0.8025668263,-0.8016969562,-0.8005371094,-0.8000538349,-0.8006337881,-0.8004404902,-0.8001505136,-0.8010203838,-0.7976374626,-0.7898085713,-0.7865223289,-0.7871022224,-0.7868123055,-0.7867156267,-0.7868123055,-0.7867156267,-0.7871022224,-0.7874888182,-0.7872955203,-0.7868123055,-0.7887453437,-0.7930946946,-0.7954144478,-0.795994401,-0.7985073328,-0.8016002774,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8024701476,-0.8025668263,-0.8025668263,-0.8023735285,-0.8023735285,-0.8021802306,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8020835519,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8028567433,-0.8025668263,-0.8025668263,-0.7992805243,-0.7963809967,-0.7961876988,-0.7943512797,-0.7910650373,-0.789421916,-0.7880687714,-0.7869089246,-0.7869089246,-0.7868123055,-0.786618948,-0.7865223289,-0.7865223289,-0.7868123055,-0.7871989012,-0.7872955203,-0.787392199,-0.7911616564,-0.7978307605,-0.8003438115,-0.7997637987,-0.8012136817,-0.8020835519,-0.8009237051,-0.8007304072,-0.8016002774,-0.8025668263,-0.8026634455,-0.8009237051,-0.7985073328,-0.7978307605,-0.7979274392,-0.7978307605,-0.7978307605,-0.7978307605,-0.7978307605,-0.7979274392,-0.7980240583,-0.7978307605,-0.7977340817,-0.7977340817,-0.7978307605,-0.7976374626,-0.7975407839,-0.797347486,-0.7971541882,-0.7969608903,-0.7968642116,-0.7968642116,-0.7967675924,-0.7967675924,-0.7967675924,-0.7968642116,-0.7968642116,-0.7969608903,-0.7968642116,-0.7965742946,-0.7965742946,-0.7967675924,-0.7967675924,-0.7967675924,-0.7968642116,-0.7967675924,-0.7967675924,-0.7967675924,-0.7967675924,-0.7966709137,-0.7965742946,-0.7966709137,-0.7966709137,-0.7965742946,-0.7964776158,-0.7964776158,-0.7965742946,-0.7967675924,-0.7968642116,-0.7971541882,-0.797057569,-0.7968642116,-0.7969608903,-0.7965742946,-0.7971541882,-0.7986039519,-0.7982173562,-0.7968642116,-0.7969608903,-0.797057569,-0.7968642116,-0.797057569,-0.797347486,-0.7975407839,-0.797347486,-0.797057569,-0.7971541882,-0.7969608903,-0.7967675924,-0.7967675924,-0.7967675924,-0.7966709137,-0.7966709137,-0.7967675924,-0.7967675924,-0.7967675924,-0.797057569,-0.7971541882,-0.7969608903,-0.7967675924,-0.7965742946,-0.7964776158,-0.7963809967,-0.7963809967,-0.7963809967,-0.7963809967,-0.7963809967,-0.7963809967,-0.7963809967,-0.7963809967,-0.7965742946,-0.7966709137,-0.7966709137,-0.7967675924,-0.7968642116,-0.7969608903,-0.7968642116,-0.7967675924,-0.7967675924,-0.7969608903,-0.7969608903,-0.7969608903,-0.7972508669,-0.7975407839,-0.7975407839,-0.7975407839,-0.7977340817,-0.7976374626,-0.7975407839,-0.7978307605,-0.7979274392,-0.7977340817,-0.7977340817,-0.7980240583,-0.7987973094,-0.8010203838,-0.8026634455,-0.8021802306,-0.8014069796,-0.8009237051,-0.8005371094,-0.8005371094,-0.7997637987,-0.8003438115,-0.8005371094,-0.7942546606,-0.7870056033,-0.7861357331,-0.7870056033,-0.7868123055,-0.7869089246,-0.7868123055,-0.7868123055,-0.7871022224,-0.7875854969,-0.787392199,-0.7868123055,-0.7888420224,-0.7929980755,-0.7952211499,-0.796284318,-0.7991839051,-0.8021802306,-0.8027601242,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8024701476,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8024701476,-0.8025668263,-0.8026634455,-0.8024701476,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8020835519,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8019868731,-0.8026634455,-0.8025668263,-0.8028567433,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8005371094,-0.797347486,-0.7958977222,-0.7942546606,-0.7917416096,-0.7893252969,-0.7871989012,-0.7864256501,-0.7868123055,-0.7868123055,-0.7870056033,-0.7871022224,-0.7871989012,-0.7871989012,-0.7869089246,-0.7868123055,-0.786618948,-0.787392199,-0.7927080989,-0.7987006307,-0.8000538349,-0.8004404902,-0.801890254,-0.8017935753,-0.801117003,-0.8013103604,-0.8017935753,-0.8027601242,-0.8027601242,-0.800827086,-0.7986039519,-0.7980240583,-0.7982173562,-0.7980240583,-0.7979274392,-0.7980240583,-0.7980240583,-0.7979274392,-0.7980240583,-0.7980240583,-0.7976374626,-0.7975407839,-0.7976374626,-0.7976374626,-0.797347486,-0.7969608903,-0.7969608903,-0.7969608903,-0.7968642116,-0.7968642116,-0.7969608903,-0.7968642116,-0.7966709137,-0.7966709137,-0.7969608903,-0.7969608903,-0.7966709137,-0.7966709137,-0.7965742946,-0.7966709137,-0.7969608903,-0.7969608903,-0.7967675924,-0.7967675924,-0.7967675924,-0.7966709137,-0.7966709137,-0.7968642116,-0.7968642116,-0.7969608903,-0.7968642116,-0.7966709137,-0.7966709137,-0.7966709137,-0.7967675924,-0.7969608903,-0.797057569,-0.7968642116,-0.7968642116,-0.797057569,-0.7968642116,-0.7971541882,-0.7979274392,-0.7977340817,-0.7968642116,-0.7968642116,-0.797057569,-0.797057569,-0.7972508669,-0.7974441648,-0.7976374626,-0.7976374626,-0.797347486,-0.797057569,-0.7968642116,-0.7968642116,-0.7967675924,-0.7967675924,-0.7969608903,-0.7968642116,-0.7967675924,-0.7969608903,-0.797057569,-0.797057569,-0.7969608903,-0.7966709137,-0.7964776158,-0.7965742946,-0.7965742946,-0.7965742946,-0.7964776158,-0.7963809967,-0.7963809967,-0.7964776158,-0.7963809967,-0.796284318,-0.7963809967,-0.7965742946,-0.7966709137,-0.7966709137,-0.7966709137,-0.7967675924,-0.7968642116,-0.7967675924,-0.7966709137,-0.7967675924,-0.7968642116,-0.797057569,-0.7972508669,-0.7974441648,-0.7976374626,-0.7978307605,-0.7978307605,-0.7977340817,-0.7977340817,-0.7979274392,-0.7979274392,-0.7978307605,-0.7978307605,-0.7978307605,-0.7984106541,-0.8004404902,-0.8024701476,-0.8026634455,-0.8020835519,-0.8014069796,-0.8009237051,-0.800827086,-0.8000538349,-0.7997637987,-0.800827086,-0.7976374626,-0.7902917862,-0.7867156267,-0.7867156267,-0.7865223289,-0.7869089246,-0.7871022224,-0.7868123055,-0.7867156267,-0.786618948,-0.7871989012,-0.7871989012,-0.7868123055,-0.789421916,-0.7938680053,-0.7954144478,-0.7963809967,-0.7997637987,-0.8023735285,-0.8024701476,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8024701476,-0.8024701476,-0.8026634455,-0.8027601242,-0.8024701476,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8023735285,-0.8021802306,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8014069796,-0.8025668263,-0.8023735285,-0.8025668263,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8024701476,-0.801890254,-0.7986039519,-0.7960910201,-0.7950278521,-0.7930946946,-0.7901951671,-0.7878754735,-0.7871022224,-0.7872955203,-0.7874888182,-0.7874888182,-0.787392199,-0.7871022224,-0.7869089246,-0.7869089246,-0.7872955203,-0.7874888182,-0.7862323523,-0.7880687714,-0.7954144478,-0.8003438115,-0.8001505136,-0.8007304072,-0.8021802306,-0.801890254,-0.8014069796,-0.8016969562,-0.8020835519,-0.8027601242,-0.8027601242,-0.8009237051,-0.7988939285,-0.7985073328,-0.7986039519,-0.7982173562,-0.7980240583,-0.7981207371,-0.7980240583,-0.7979274392,-0.7978307605,-0.7978307605,-0.7976374626,-0.7974441648,-0.797347486,-0.7972508669,-0.797057569,-0.7969608903,-0.797057569,-0.7969608903,-0.7967675924,-0.7967675924,-0.7967675924,-0.7967675924,-0.7967675924,-0.7968642116,-0.7968642116,-0.7968642116,-0.7967675924,-0.7965742946,-0.7967675924,-0.7971541882,-0.7971541882,-0.7968642116,-0.7966709137,-0.7966709137,-0.7967675924,-0.7968642116,-0.7969608903,-0.797057569,-0.7971541882,-0.7971541882,-0.7968642116,-0.7966709137,-0.7966709137,-0.7966709137,-0.7968642116,-0.797057569,-0.7969608903,-0.797057569,-0.7969608903,-0.7967675924,-0.7979274392,-0.7988939285,-0.7977340817,-0.7966709137,-0.7969608903,-0.7969608903,-0.7969608903,-0.7971541882,-0.7972508669,-0.7976374626,-0.7979274392,-0.7977340817,-0.7974441648,-0.7972508669,-0.7972508669,-0.7971541882,-0.797057569,-0.797057569,-0.7972508669,-0.797347486,-0.797347486,-0.7971541882,-0.7968642116,-0.7966709137,-0.7968642116,-0.7967675924,-0.7965742946,-0.7965742946,-0.7964776158,-0.7963809967,-0.7964776158,-0.7964776158,-0.7963809967,-0.796284318,-0.7963809967,-0.7963809967,-0.7963809967,-0.7965742946,-0.7967675924,-0.7966709137,-0.7967675924,-0.7968642116,-0.7967675924,-0.7968642116,-0.7968642116,-0.7969608903,-0.7972508669,-0.7972508669,-0.797347486,-0.7976374626,-0.7978307605,-0.7978307605,-0.7979274392,-0.7980240583,-0.7979274392,-0.7977340817,-0.7978307605,-0.7977340817,-0.7979274392,-0.7995705009,-0.801890254,-0.8025668263,-0.8021802306,-0.8017935753,-0.8012136817,-0.8013103604,-0.8012136817,-0.8000538349,-0.8006337881,-0.7998605371,-0.7932879925,-0.787392199,-0.7868123055,-0.7868123055,-0.786329031,-0.786618948,-0.7868123055,-0.7870056033,-0.7871022224,-0.786618948,-0.7865223289,-0.7865223289,-0.7868123055,-0.7901951671,-0.7945445776,-0.7956077456,-0.7968642116,-0.8005371094,-0.8025668263,-0.8025668263,-0.8025668263,-0.8025668263,-0.8025668263,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8025668263,-0.8024701476,-0.8025668263,-0.8016969562,-0.8016969562,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8021802306,-0.8025668263,-0.8024701476,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8024701476,-0.8026634455,-0.8003438115,-0.7971541882,-0.7956077456,-0.7945445776,-0.7923215032,-0.7899051905,-0.7883586884,-0.7876821756,-0.7875854969,-0.7872955203,-0.7870056033,-0.7871022224,-0.7874888182,-0.7874888182,-0.7871022224,-0.7874888182,-0.7872955203,-0.7870056033,-0.7913549542,-0.7983140349,-0.8004404902,-0.7996671796,-0.8010203838,-0.8022768497,-0.8016969562,-0.8014069796,-0.8017935753,-0.8022768497,-0.8027601242,-0.8026634455,-0.8009237051,-0.7992805243,-0.7986039519,-0.7982173562,-0.7979274392,-0.7979274392,-0.7979274392,-0.7978307605,-0.7978307605,-0.7979274392,-0.7978307605,-0.7977340817,-0.7976374626,-0.797347486,-0.7971541882,-0.797057569,-0.797057569,-0.797057569,-0.7969608903,-0.7969608903,-0.7968642116,-0.7967675924,-0.7967675924,-0.7968642116,-0.7968642116,-0.7969608903,-0.7968642116,-0.7965742946,-0.7965742946,-0.7969608903,-0.7971541882,-0.797057569,-0.7967675924,-0.7966709137,-0.7967675924,-0.7969608903,-0.7969608903,-0.797057569,-0.7974441648,-0.7974441648,-0.7969608903,-0.7966709137,-0.7966709137,-0.7967675924,-0.797057569,-0.7971541882,-0.7969608903,-0.7969608903,-0.7968642116,-0.797057569,-0.7984106541,-0.7987006307,-0.7971541882,-0.7967675924,-0.7972508669,-0.7969608903,-0.7969608903,-0.7971541882,-0.797347486,-0.7976374626,-0.7976374626,-0.7976374626,-0.7975407839,-0.797347486,-0.797347486,-0.797347486,-0.797347486,-0.7975407839,-0.7976374626,-0.797347486,-0.7968642116,-0.7967675924,-0.7968642116,-0.7968642116,-0.7968642116,-0.7966709137,-0.7965742946,-0.7965742946,-0.7966709137,-0.7965742946,-0.7964776158,-0.7964776158,-0.7963809967,-0.7964776158,-0.7964776158,-0.7964776158,-0.7964776158,-0.7965742946,-0.7967675924,-0.7967675924,-0.7966709137,-0.7966709137,-0.7967675924,-0.7967675924,-0.7967675924,-0.7968642116,-0.797057569,-0.7972508669,-0.7974441648,-0.7976374626,-0.7977340817,-0.7978307605,-0.7978307605,-0.7978307605,-0.7976374626,-0.7977340817,-0.7981207371,-0.7979274392,-0.7987973094,-0.8012136817,-0.8027601242,-0.8022768497,-0.8016002774,-0.801117003,-0.801117003,-0.8013103604,-0.8000538349,-0.8002471328,-0.8009237051,-0.7952211499,-0.7875854969,-0.786329031,-0.7874888182,-0.7869089246,-0.7864256501,-0.7864256501,-0.786618948,-0.7868123055,-0.7864256501,-0.7865223289,-0.7871022224,-0.7869089246,-0.7872955203,-0.7906783819,-0.7943512797,-0.7955111265,-0.7978307605,-0.8014069796,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8022768497,-0.8026634455,-0.8026634455,-0.8022768497,-0.8023735285,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8021802306,-0.8027601242,-0.8024701476,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8024701476,-0.8025668263,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8023735285,-0.8020835519,-0.7990872264,-0.7967675924,-0.7958010435,-0.7947378755,-0.792514801,-0.7901951671,-0.7887453437,-0.7876821756,-0.7871989012,-0.787392199,-0.7875854969,-0.7876821756,-0.7874888182,-0.7871989012,-0.7872955203,-0.7876821756,-0.7872955203,-0.7871989012,-0.7913549542,-0.7975407839,-0.7997637987,-0.7997637987,-0.8012136817,-0.8017935753,-0.8010203838,-0.8012136817,-0.8020835519,-0.8023735285,-0.8027601242,-0.8023735285,-0.8003438115,-0.7986039519,-0.7981207371,-0.7979274392,-0.7979274392,-0.7979274392,-0.7977340817,-0.7976374626,-0.7976374626,-0.7978307605,-0.7979274392,-0.7977340817,-0.7974441648,-0.7972508669,-0.797057569,-0.7969608903,-0.797057569,-0.7971541882,-0.7972508669,-0.7971541882,-0.7969608903,-0.7968642116,-0.7967675924,-0.7969608903,-0.797057569,-0.7971541882,-0.7969608903,-0.7966709137,-0.7967675924,-0.797057569,-0.797057569,-0.7969608903,-0.7968642116,-0.7969608903,-0.7972508669,-0.797347486,-0.797347486,-0.7972508669,-0.797347486,-0.7972508669,-0.7969608903,-0.7969608903,-0.797057569,-0.7971541882,-0.7969608903,-0.7969608903,-0.797057569,-0.7967675924,-0.7971541882,-0.7985073328,-0.7985073328,-0.7972508669,-0.797057569,-0.7972508669,-0.7972508669,-0.7972508669,-0.7972508669,-0.7971541882,-0.7972508669,-0.797347486,-0.7972508669,-0.7971541882,-0.7971541882,-0.7971541882,-0.7972508669,-0.7972508669,-0.797347486,-0.7972508669,-0.7971541882,-0.7969608903,-0.7969608903,-0.7969608903,-0.7968642116,-0.7967675924,-0.7967675924,-0.7965742946,-0.7964776158,-0.7965742946,-0.7965742946,-0.7965742946,-0.7965742946,-0.7964776158,-0.7964776158,-0.7963809967,-0.7964776158,-0.7965742946,-0.7965742946,-0.7966709137,-0.7967675924,-0.7967675924,-0.7967675924,-0.7966709137,-0.7966709137,-0.7968642116,-0.7968642116,-0.7969608903,-0.7971541882,-0.7972508669,-0.7974441648,-0.7974441648,-0.7974441648,-0.7976374626,-0.7977340817,-0.7975407839,-0.7977340817,-0.7978307605,-0.7981207371,-0.8001505136,-0.8023735285,-0.8021802306,-0.8013103604,-0.8010203838,-0.8007304072,-0.8014069796,-0.8010203838,-0.7999572158,-0.8009237051,-0.7984106541,-0.7902917862,-0.7860390544,-0.7865223289,-0.7864256501,-0.786329031,-0.7868123055,-0.7869089246,-0.7870056033,-0.786329031,-0.7855557799,-0.7867156267,-0.7878754735,-0.7868123055,-0.7877787948,-0.7924181223,-0.7951245308,-0.7956077456,-0.7987973094,-0.8020835519,-0.8024701476,-0.8023735285,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8022768497,-0.8019868731,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8016002774,-0.8020835519,-0.8024701476,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8023735285,-0.8025668263,-0.8027601242,-0.8027601242,-0.8013103604,-0.7987006307,-0.797347486,-0.7968642116,-0.7949311733,-0.7927080989,-0.7909683585,-0.7888420224,-0.7874888182,-0.7875854969,-0.787392199,-0.7871989012,-0.787392199,-0.7874888182,-0.7872955203,-0.7874888182,-0.7877787948,-0.7865223289,-0.7868123055,-0.7931913733,-0.7996671796,-0.8000538349,-0.7996671796,-0.801117003,-0.8010203838,-0.8004404902,-0.8012136817,-0.8020835519,-0.8023735285,-0.8027601242,-0.801890254,-0.7996671796,-0.7982173562,-0.7979274392,-0.7978307605,-0.7977340817,-0.7976374626,-0.7975407839,-0.7975407839,-0.7975407839,-0.7975407839,-0.7972508669,-0.7971541882,-0.7971541882,-0.797057569,-0.7969608903,-0.7971541882,-0.7972508669,-0.7974441648,-0.7976374626,-0.797347486,-0.7968642116,-0.7968642116,-0.797057569,-0.7969608903,-0.7969608903,-0.7971541882,-0.7969608903,-0.7966709137,-0.7969608903,-0.7971541882,-0.7969608903,-0.7967675924,-0.7969608903,-0.7972508669,-0.7976374626,-0.7977340817,-0.797347486,-0.7972508669,-0.7972508669,-0.7972508669,-0.7971541882,-0.7971541882,-0.7971541882,-0.797057569,-0.7969608903,-0.7971541882,-0.7968642116,-0.7972508669,-0.7988939285,-0.7989906073,-0.7974441648,-0.797057569,-0.7972508669,-0.7967675924,-0.7967675924,-0.7972508669,-0.7971541882,-0.797057569,-0.7971541882,-0.7972508669,-0.7971541882,-0.797057569,-0.797057569,-0.797057569,-0.7971541882,-0.797347486,-0.7972508669,-0.797057569,-0.797057569,-0.7969608903,-0.7967675924,-0.7967675924,-0.7965742946,-0.7964776158,-0.7966709137,-0.7966709137,-0.7965742946,-0.7965742946,-0.7964776158,-0.7963809967,-0.7964776158,-0.7965742946,-0.7965742946,-0.7964776158,-0.7965742946,-0.7965742946,-0.7966709137,-0.7968642116,-0.7967675924,-0.7966709137,-0.7969608903,-0.797057569,-0.7969608903,-0.797057569,-0.797057569,-0.797057569,-0.7972508669,-0.797347486,-0.7972508669,-0.7972508669,-0.7974441648,-0.797347486,-0.7975407839,-0.7979274392,-0.7980240583,-0.7992805243,-0.8017935753,-0.8025668263,-0.801890254,-0.8014069796,-0.800827086,-0.8009237051,-0.8009237051,-0.7999572158,-0.8009237051,-0.7998605371,-0.7923215032,-0.786618948,-0.7871022224,-0.7874888182,-0.7868123055,-0.7867156267,-0.7871022224,-0.7872955203,-0.7871989012,-0.7867156267,-0.7867156267,-0.7874888182,-0.7871989012,-0.7860390544,-0.7883586884,-0.7934813499,-0.7953178287,-0.796284318,-0.8000538349,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8028567433,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8023735285,-0.8023735285,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8023735285,-0.8026634455,-0.8024701476,-0.8024701476,-0.8020835519,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8022768497,-0.8024701476,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8024701476,-0.8023735285,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8024701476,-0.8007304072,-0.7988939285,-0.7976374626,-0.7964776158,-0.7952211499,-0.7938680053,-0.7917416096,-0.7896152139,-0.7882620692,-0.7874888182,-0.7874888182,-0.787392199,-0.7872955203,-0.7875854969,-0.787392199,-0.7872955203,-0.7876821756,-0.7877787948,-0.7910650373,-0.797347486,-0.7998605371,-0.7989906073,-0.7994738221,-0.8004404902,-0.8004404902,-0.8007304072,-0.8016002774,-0.8021802306,-0.8024701476,-0.8026634455,-0.801117003,-0.7988939285,-0.7979274392,-0.7979274392,-0.7977340817,-0.7975407839,-0.7976374626,-0.7975407839,-0.7974441648,-0.7974441648,-0.7972508669,-0.797057569,-0.797057569,-0.797057569,-0.7971541882,-0.7974441648,-0.7976374626,-0.7979274392,-0.7981207371,-0.7977340817,-0.797057569,-0.7969608903,-0.797057569,-0.797057569,-0.7969608903,-0.797057569,-0.7971541882,-0.7969608903,-0.7969608903,-0.797057569,-0.7969608903,-0.797057569,-0.7972508669,-0.7971541882,-0.7971541882,-0.7972508669,-0.797347486,-0.7972508669,-0.7972508669,-0.7972508669,-0.797347486,-0.7972508669,-0.7972508669,-0.7972508669,-0.7972508669,-0.797347486,-0.797057569,-0.797347486,-0.7987006307,-0.7986039519,-0.7972508669,-0.7968642116,-0.7971541882,-0.7969608903,-0.797057569,-0.797347486,-0.797347486,-0.7972508669,-0.7971541882,-0.7972508669,-0.7972508669,-0.7972508669,-0.7972508669,-0.7971541882,-0.7972508669,-0.7974441648,-0.797347486,-0.797057569,-0.7969608903,-0.7969608903,-0.7967675924,-0.7966709137,-0.7966709137,-0.7965742946,-0.7966709137,-0.7967675924,-0.7966709137,-0.7966709137,-0.7965742946,-0.7964776158,-0.7966709137,-0.7966709137,-0.7965742946,-0.7965742946,-0.7966709137,-0.7967675924,-0.7967675924,-0.7967675924,-0.7968642116,-0.7972508669,-0.7976374626,-0.7977340817,-0.7974441648,-0.797347486,-0.7972508669,-0.7972508669,-0.7972508669,-0.7971541882,-0.797057569,-0.7972508669,-0.7974441648,-0.7976374626,-0.7978307605,-0.7980240583,-0.7990872264,-0.8012136817,-0.8024701476,-0.8022768497,-0.8017935753,-0.801117003,-0.8009237051,-0.801117003,-0.7999572158,-0.8003438115,-0.8013103604,-0.7953178287,-0.7871989012,-0.7856523991,-0.786618948,-0.7864256501,-0.7871022224,-0.7875854969,-0.7871022224,-0.786618948,-0.7864256501,-0.7868123055,-0.787392199,-0.7870056033,-0.7860390544,-0.7870056033,-0.7908717394,-0.7936747074,-0.7946412563,-0.7979274392,-0.8019868731,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8025668263,-0.8024701476,-0.8024701476,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8023735285,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8023735285,-0.8009237051,-0.799377203,-0.7979274392,-0.7968642116,-0.7961876988,-0.7954144478,-0.7936747074,-0.7904850841,-0.7880687714,-0.7874888182,-0.7874888182,-0.7874888182,-0.7875854969,-0.7874888182,-0.7874888182,-0.7879720926,-0.7874888182,-0.7871989012,-0.7915482521,-0.7976374626,-0.799377203,-0.7986039519,-0.7990872264,-0.8002471328,-0.8005371094,-0.8009237051,-0.8017935753,-0.8023735285,-0.8027601242,-0.8024701476,-0.8005371094,-0.7985073328,-0.7981207371,-0.7980240583,-0.7979274392,-0.7978307605,-0.7975407839,-0.797347486,-0.797347486,-0.7971541882,-0.797057569,-0.797057569,-0.7972508669,-0.797347486,-0.7974441648,-0.7977340817,-0.7980240583,-0.7979274392,-0.7977340817,-0.797347486,-0.797057569,-0.7968642116,-0.7969608903,-0.797057569,-0.7969608903,-0.7968642116,-0.7969608903,-0.797057569,-0.7971541882,-0.7971541882,-0.797057569,-0.7972508669,-0.7974441648,-0.797347486,-0.7972508669,-0.797347486,-0.7974441648,-0.7972508669,-0.797347486,-0.7974441648,-0.797347486,-0.7972508669,-0.7972508669,-0.7972508669,-0.7972508669,-0.7969608903,-0.797347486,-0.7984106541,-0.7985073328,-0.7975407839,-0.7972508669,-0.7972508669,-0.7971541882,-0.7971541882,-0.797347486,-0.7974441648,-0.797347486,-0.797347486,-0.7974441648,-0.7975407839,-0.7976374626,-0.7977340817,-0.7977340817,-0.7979274392,-0.7979274392,-0.7974441648,-0.797057569,-0.797057569,-0.7971541882,-0.7969608903,-0.7967675924,-0.7967675924,-0.7966709137,-0.7967675924,-0.7968642116,-0.7967675924,-0.7967675924,-0.7967675924,-0.7965742946,-0.7964776158,-0.7966709137,-0.7967675924,-0.7968642116,-0.7968642116,-0.7967675924,-0.7965742946,-0.7967675924,-0.7972508669,-0.7977340817,-0.7978307605,-0.7978307605,-0.7978307605,-0.7977340817,-0.7974441648,-0.7974441648,-0.7972508669,-0.797057569,-0.7972508669,-0.7975407839,-0.7977340817,-0.7979274392,-0.7978307605,-0.7985073328,-0.8007304072,-0.8024701476,-0.8023735285,-0.801890254,-0.8009237051,-0.8005371094,-0.801117003,-0.8003438115,-0.7997637987,-0.8009237051,-0.7972508669,-0.7890353203,-0.7857490778,-0.7867156267,-0.7864256501,-0.7859423757,-0.7867156267,-0.7874888182,-0.7872955203,-0.7867156267,-0.7864256501,-0.7861357331,-0.786329031,-0.7861357331,-0.7859423757,-0.7890353203,-0.7929980755,-0.793964684,-0.7956077456,-0.8003438115,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8025668263,-0.8023735285,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8024701476,-0.8025668263,-0.8028567433,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8023735285,-0.801890254,-0.8004404902,-0.7984106541,-0.797347486,-0.7969608903,-0.7958977222,-0.7934813499,-0.7900984883,-0.7877787948,-0.7872955203,-0.7874888182,-0.7874888182,-0.7874888182,-0.7875854969,-0.787392199,-0.7871022224,-0.7860390544,-0.7870056033,-0.7929980755,-0.7984106541,-0.7989906073,-0.7983140349,-0.7989906073,-0.7998605371,-0.8004404902,-0.8013103604,-0.8020835519,-0.8024701476,-0.8027601242,-0.8022768497,-0.7999572158,-0.7982173562,-0.7981207371,-0.7980240583,-0.7978307605,-0.7977340817,-0.7975407839,-0.7974441648,-0.7972508669,-0.797057569,-0.797057569,-0.7974441648,-0.7976374626,-0.7976374626,-0.7978307605,-0.7981207371,-0.7981207371,-0.7978307605,-0.7974441648,-0.7972508669,-0.797057569,-0.797057569,-0.797057569,-0.7969608903,-0.7969608903,-0.7969608903,-0.7969608903,-0.797057569,-0.797057569,-0.7969608903,-0.7971541882,-0.7974441648,-0.7974441648,-0.797347486,-0.7974441648,-0.7974441648,-0.7974441648,-0.7976374626,-0.7975407839,-0.797347486,-0.7972508669,-0.7972508669,-0.7972508669,-0.7972508669,-0.7969608903,-0.7974441648,-0.7986039519,-0.7983140349,-0.797347486,-0.7972508669,-0.7972508669,-0.797057569,-0.7972508669,-0.7975407839,-0.7975407839,-0.7972508669,-0.7972508669,-0.7975407839,-0.7978307605,-0.7982173562,-0.7983140349,-0.7980240583,-0.7980240583,-0.7981207371,-0.7975407839,-0.7969608903,-0.7968642116,-0.7969608903,-0.7969608903,-0.7967675924,-0.7966709137,-0.7966709137,-0.7968642116,-0.797057569,-0.797057569,-0.7971541882,-0.7972508669,-0.797057569,-0.7968642116,-0.7968642116,-0.7968642116,-0.7968642116,-0.7968642116,-0.7968642116,-0.7968642116,-0.797057569,-0.797347486,-0.7978307605,-0.7981207371,-0.7980240583,-0.7979274392,-0.7978307605,-0.7977340817,-0.7977340817,-0.7976374626,-0.7976374626,-0.7978307605,-0.7979274392,-0.7978307605,-0.7977340817,-0.7986039519,-0.8007304072,-0.8022768497,-0.8024701476,-0.8021802306,-0.8012136817,-0.8003438115,-0.800827086,-0.8004404902,-0.7998605371,-0.8012136817,-0.7987006307,-0.7904850841,-0.7860390544,-0.7867156267,-0.7864256501,-0.7860390544,-0.7869089246,-0.7871989012,-0.7871022224,-0.7871989012,-0.7870056033,-0.7865223289,-0.7857490778,-0.7858456969,-0.7869089246,-0.7888420224,-0.7921282053,-0.793964684,-0.7946412563,-0.7983140349,-0.8021802306,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8025668263,-0.8021802306,-0.8024701476,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8024701476,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8023735285,-0.8007304072,-0.7985073328,-0.797057569,-0.7966709137,-0.7958977222,-0.7927080989,-0.7885520458,-0.7867156267,-0.787392199,-0.7877787948,-0.7874888182,-0.7871022224,-0.7868123055,-0.7871989012,-0.7874888182,-0.786618948,-0.789131999,-0.7955111265,-0.7989906073,-0.7986039519,-0.7985073328,-0.7990872264,-0.7996671796,-0.8006337881,-0.8016002774,-0.8022768497,-0.8025668263,-0.8027601242,-0.801890254,-0.7995705009,-0.7982173562,-0.7982173562,-0.7981207371,-0.7980240583,-0.7981207371,-0.7979274392,-0.797347486,-0.7971541882,-0.7971541882,-0.7972508669,-0.7974441648,-0.7977340817,-0.7979274392,-0.7980240583,-0.7981207371,-0.7978307605,-0.7975407839,-0.7974441648,-0.797347486,-0.7972508669,-0.797057569,-0.7969608903,-0.7972508669,-0.7972508669,-0.797057569,-0.7971541882,-0.7971541882,-0.7971541882,-0.7974441648,-0.7975407839,-0.7974441648,-0.7975407839,-0.7975407839,-0.7976374626,-0.7977340817,-0.7976374626,-0.7974441648,-0.797347486,-0.7974441648,-0.797347486,-0.7972508669,-0.797347486,-0.7971541882,-0.7975407839,-0.7985073328,-0.7983140349,-0.797347486,-0.7971541882,-0.7971541882,-0.7971541882,-0.7977340817,-0.7980240583,-0.7976374626,-0.797347486,-0.797347486,-0.7975407839,-0.7977340817,-0.7978307605,-0.7976374626,-0.7976374626,-0.7977340817,-0.7976374626,-0.7974441648,-0.7971541882,-0.7971541882,-0.7971541882,-0.7968642116,-0.7966709137,-0.7967675924,-0.7968642116,-0.7969608903,-0.797057569,-0.7972508669,-0.7974441648,-0.7975407839,-0.7976374626,-0.7975407839,-0.797347486,-0.7969608903,-0.7967675924,-0.7966709137,-0.7967675924,-0.7969608903,-0.7972508669,-0.7975407839,-0.7978307605,-0.7982173562,-0.7984106541,-0.7982173562,-0.7980240583,-0.7979274392,-0.7980240583,-0.7980240583,-0.7980240583,-0.7980240583,-0.7981207371,-0.7982173562,-0.7991839051,-0.8012136817,-0.8025668263,-0.8024701476,-0.8020835519,-0.8013103604,-0.7999572158,-0.8000538349,-0.8002471328,-0.7996671796,-0.8010203838,-0.8004404902,-0.7930946946,-0.7867156267,-0.786618948,-0.7871022224,-0.7861357331,-0.7867156267,-0.7872955203,-0.7867156267,-0.7865223289,-0.7865223289,-0.7862323523,-0.786329031,-0.7871022224,-0.7883586884,-0.7903884649,-0.7928047776,-0.7938680053,-0.7944479585,-0.7976374626,-0.8016002774,-0.8026634455,-0.8024701476,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8024701476,-0.8025668263,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8025668263,-0.8025668263,-0.8025668263,-0.8025668263,-0.800827086,-0.7979274392,-0.7967675924,-0.7964776158,-0.7946412563,-0.7909683585,-0.7879720926,-0.7876821756,-0.7880687714,-0.7875854969,-0.7872955203,-0.7871989012,-0.7871989012,-0.7874888182,-0.7871022224,-0.7872955203,-0.7918382287,-0.797347486,-0.7990872264,-0.7987973094,-0.7988939285,-0.7991839051,-0.7996671796,-0.8003438115,-0.8015036583,-0.8021802306,-0.8023735285,-0.8027601242,-0.8017935753,-0.7996671796,-0.7986039519,-0.7985073328,-0.7982173562,-0.7981207371,-0.7981207371,-0.7975407839,-0.7971541882,-0.797347486,-0.7974441648,-0.7975407839,-0.7977340817,-0.7979274392,-0.7981207371,-0.7981207371,-0.7978307605,-0.7974441648,-0.7972508669,-0.7972508669,-0.797347486,-0.7972508669,-0.797057569,-0.7971541882,-0.7972508669,-0.7971541882,-0.797057569,-0.7971541882,-0.7971541882,-0.7971541882,-0.7974441648,-0.7979274392,-0.7982173562,-0.7982173562,-0.7979274392,-0.7977340817,-0.7976374626,-0.7976374626,-0.7974441648,-0.7974441648,-0.7974441648,-0.7974441648,-0.7974441648,-0.7972508669,-0.7978307605,-0.7987973094,-0.7983140349,-0.797347486,-0.7972508669,-0.797347486,-0.7974441648,-0.7979274392,-0.7982173562,-0.7979274392,-0.7975407839,-0.797347486,-0.7974441648,-0.7974441648,-0.797347486,-0.797347486,-0.7972508669,-0.7972508669,-0.797347486,-0.797347486,-0.7971541882,-0.7972508669,-0.7971541882,-0.7967675924,-0.7965742946,-0.7966709137,-0.7968642116,-0.797057569,-0.7971541882,-0.797347486,-0.7974441648,-0.7975407839,-0.7976374626,-0.7977340817,-0.7978307605,-0.7976374626,-0.7971541882,-0.7968642116,-0.7965742946,-0.7967675924,-0.7974441648,-0.7977340817,-0.7976374626,-0.7978307605,-0.7983140349,-0.7985073328,-0.7983140349,-0.7980240583,-0.7980240583,-0.7981207371,-0.7980240583,-0.7980240583,-0.7987006307,-0.8001505136,-0.8019868731,-0.8026634455,-0.8021802306,-0.8021802306,-0.8017935753,-0.8000538349,-0.7995705009,-0.8000538349,-0.7996671796,-0.8005371094,-0.8007304072,-0.7948345542,-0.7879720926,-0.7867156267,-0.7871022224,-0.7862323523,-0.786618948,-0.7880687714,-0.7879720926,-0.7865223289,-0.7857490778,-0.7858456969,-0.7865223289,-0.7884553671,-0.7909683585,-0.7922248244,-0.7929980755,-0.7940613031,-0.7951245308,-0.7978307605,-0.8013103604,-0.8027601242,-0.8026634455,-0.8025668263,-0.8024701476,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8024701476,-0.8025668263,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8026634455,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8013103604,-0.8020835519,-0.8023735285,-0.8025668263,-0.8026634455,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8025668263,-0.8022768497,-0.8023735285,-0.8025668263,-0.8024701476,-0.8026634455,-0.8025668263,-0.8001505136,-0.7967675924,-0.7958010435,-0.7960910201,-0.7941579819,-0.7903884649,-0.7878754735,-0.7874888182,-0.7876821756,-0.7876821756,-0.7876821756,-0.7874888182,-0.787392199,-0.7871989012,-0.7869089246,-0.7889387012,-0.7934813499,-0.7974441648,-0.7989906073,-0.799377203,-0.799377203,-0.7992805243,-0.7995705009,-0.8006337881,-0.801890254,-0.8023735285,-0.8026634455,-0.8027601242,-0.801890254,-0.7997637987,-0.7985073328,-0.7983140349,-0.7983140349,-0.7979274392,-0.7974441648,-0.7971541882,-0.797347486,-0.7977340817,-0.7978307605,-0.7979274392,-0.7980240583,-0.7981207371,-0.7980240583,-0.7977340817,-0.7974441648,-0.797347486,-0.7974441648,-0.7974441648,-0.7974441648,-0.7972508669,-0.797057569,-0.7972508669,-0.7972508669,-0.797057569,-0.797057569,-0.7971541882,-0.797347486,-0.7975407839,-0.7979274392,-0.7985073328,-0.7987006307,-0.7982173562,-0.7979274392,-0.7978307605,-0.7977340817,-0.7975407839,-0.7975407839,-0.7975407839,-0.7975407839,-0.7974441648,-0.7974441648,-0.7982173562,-0.7987973094,-0.7983140349,-0.7975407839,-0.797347486,-0.7975407839,-0.7976374626,-0.7978307605,-0.7980240583,-0.7979274392,-0.7974441648,-0.7972508669,-0.7974441648,-0.7975407839,-0.7974441648,-0.7974441648,-0.797347486,-0.797057569,-0.797057569,-0.7971541882,-0.7969608903,-0.7968642116,-0.7968642116,-0.7969608903,-0.7969608903,-0.7969608903,-0.7968642116,-0.7969608903,-0.797057569,-0.7971541882,-0.797347486,-0.7976374626,-0.7977340817,-0.7979274392,-0.7979274392,-0.7978307605,-0.7974441648,-0.7969608903,-0.7967675924,-0.7969608903,-0.7974441648,-0.7975407839,-0.7976374626,-0.7978307605,-0.7980240583,-0.7985073328,-0.7987973094,-0.7987973094,-0.7986039519,-0.7981207371,-0.7983140349,-0.7995705009,-0.8010203838,-0.8020835519,-0.8022768497,-0.801890254,-0.8019868731,-0.8019868731,-0.8006337881,-0.7994738221,-0.7995705009,-0.7996671796,-0.8007304072,-0.800827086,-0.7951245308,-0.7878754735,-0.7862323523,-0.787392199,-0.7868123055,-0.7860390544,-0.7871989012,-0.7883586884,-0.7877787948,-0.7865223289,-0.786329031,-0.7876821756,-0.7899051905,-0.7918382287,-0.7935779691,-0.7946412563,-0.7955111265,-0.7971541882,-0.7997637987,-0.8017935753,-0.8024701476,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8024701476,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8023735285,-0.8021802306,-0.8016002774,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8017935753,-0.8022768497,-0.8022768497,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8024701476,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8025668263,-0.8024701476,-0.8022768497,-0.8021802306,-0.8022768497,-0.8024701476,-0.8024701476,-0.8024701476,-0.8028567433,-0.8021802306,-0.7988939285,-0.7960910201,-0.795994401,-0.7956077456,-0.792514801,-0.7887453437,-0.787392199,-0.7878754735,-0.7878754735,-0.7874888182,-0.7872955203,-0.787392199,-0.7875854969,-0.7875854969,-0.7874888182,-0.7887453437,-0.7928047776,-0.7974441648,-0.7991839051,-0.7991839051,-0.7992805243,-0.7991839051,-0.7995705009,-0.8010203838,-0.8021802306,-0.8023735285,-0.8025668263,-0.8027601242,-0.8017935753,-0.7995705009,-0.7984106541,-0.7984106541,-0.7982173562,-0.7975407839,-0.7972508669,-0.797347486,-0.7975407839,-0.7978307605,-0.7980240583,-0.7982173562,-0.7982173562,-0.7979274392,-0.7975407839,-0.7975407839,-0.7975407839,-0.7974441648,-0.7974441648,-0.7976374626,-0.7974441648,-0.7971541882,-0.797347486,-0.7974441648,-0.797347486,-0.797347486,-0.797347486,-0.7974441648,-0.7975407839,-0.7976374626,-0.7980240583,-0.7985073328,-0.7986039519,-0.7982173562,-0.7979274392,-0.7978307605,-0.7974441648,-0.797347486,-0.7974441648,-0.7974441648,-0.7974441648,-0.7974441648,-0.7981207371,-0.7989906073,-0.7986039519,-0.7975407839,-0.797347486,-0.7975407839,-0.7974441648,-0.7974441648,-0.7977340817,-0.7980240583,-0.7977340817,-0.797347486,-0.7976374626,-0.7976374626,-0.797347486,-0.7972508669,-0.7972508669,-0.7972508669,-0.7971541882,-0.797057569,-0.797057569,-0.7968642116,-0.7968642116,-0.7969608903,-0.7969608903,-0.797057569,-0.7971541882,-0.7969608903,-0.7968642116,-0.797057569,-0.7972508669,-0.797347486,-0.7977340817,-0.7980240583,-0.7981207371,-0.7979274392,-0.7976374626,-0.7971541882,-0.7968642116,-0.7972508669,-0.7975407839,-0.7975407839,-0.7976374626,-0.7979274392,-0.7981207371,-0.7981207371,-0.7987006307,-0.7988939285,-0.7981207371,-0.7984106541,-0.8002471328,-0.8020835519,-0.8024701476,-0.8016002774,-0.7999572158,-0.8010203838,-0.8022768497,-0.8009237051,-0.7995705009,-0.7997637987,-0.7996671796,-0.8003438115,-0.8009237051,-0.7961876988,-0.7885520458,-0.7859423757,-0.786618948,-0.7861357331,-0.7857490778,-0.7865223289,-0.787392199,-0.7870056033,-0.7861357331,-0.7869089246,-0.789421916,-0.7919349074,-0.7932879925,-0.793964684,-0.7957044244,-0.7983140349,-0.8002471328,-0.8014069796,-0.8023735285,-0.8025668263,-0.8024701476,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8019868731,-0.8021802306,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8016002774,-0.8020835519,-0.8023735285,-0.8025668263,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8025668263,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8023735285,-0.8020835519,-0.8019868731,-0.8020835519,-0.8023735285,-0.8026634455,-0.8025668263,-0.8024701476,-0.8026634455,-0.801117003,-0.7975407839,-0.7957044244,-0.7958010435,-0.7942546606,-0.7906783819,-0.7882620692,-0.7878754735,-0.7877787948,-0.787392199,-0.787392199,-0.7874888182,-0.787392199,-0.787392199,-0.7867156267,-0.7871022224,-0.7903884649,-0.793964684,-0.7963809967,-0.7982173562,-0.7988939285,-0.7985073328,-0.7985073328,-0.7992805243,-0.8009237051,-0.8022768497,-0.8023735285,-0.8023735285,-0.8027601242,-0.8015036583,-0.7991839051,-0.7983140349,-0.7984106541,-0.7980240583,-0.7977340817,-0.7978307605,-0.7979274392,-0.7981207371,-0.7982173562,-0.7983140349,-0.7984106541,-0.7983140349,-0.7978307605,-0.7974441648,-0.7974441648,-0.7976374626,-0.7976374626,-0.7976374626,-0.7975407839,-0.797347486,-0.797347486,-0.7972508669,-0.7972508669,-0.7974441648,-0.7974441648,-0.797347486,-0.7974441648,-0.7974441648,-0.7975407839,-0.7977340817,-0.7982173562,-0.7983140349,-0.7979274392,-0.7976374626,-0.7975407839,-0.7975407839,-0.7975407839,-0.7976374626,-0.7977340817,-0.7974441648,-0.7980240583,-0.7991839051,-0.7987973094,-0.7976374626,-0.7975407839,-0.7975407839,-0.797347486,-0.7974441648,-0.7977340817,-0.7980240583,-0.7979274392,-0.7977340817,-0.7978307605,-0.7978307605,-0.7975407839,-0.7972508669,-0.7971541882,-0.7969608903,-0.797057569,-0.7971541882,-0.7971541882,-0.7969608903,-0.7969608903,-0.7969608903,-0.7969608903,-0.797057569,-0.7972508669,-0.797057569,-0.7969608903,-0.797057569,-0.7971541882,-0.797347486,-0.7976374626,-0.7979274392,-0.7982173562,-0.7981207371,-0.7976374626,-0.7972508669,-0.797057569,-0.7972508669,-0.7977340817,-0.7977340817,-0.7974441648,-0.7978307605,-0.7982173562,-0.7981207371,-0.7983140349,-0.7987006307,-0.7988939285,-0.8004404902,-0.8022768497,-0.8025668263,-0.8022768497,-0.8015036583,-0.8009237051,-0.8014069796,-0.8012136817,-0.8000538349,-0.7994738221,-0.7999572158,-0.801117003,-0.8003438115,-0.7947378755,-0.7885520458,-0.786618948,-0.7867156267,-0.7865223289,-0.7857490778,-0.7858456969,-0.7877787948,-0.7880687714,-0.7858456969,-0.7856523991,-0.789421916,-0.7934813499,-0.7947378755,-0.7949311733,-0.7972508669,-0.8001505136,-0.8016969562,-0.8023735285,-0.8025668263,-0.8024701476,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8024701476,-0.8023735285,-0.8023735285,-0.801890254,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.801890254,-0.8024701476,-0.8024701476,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8024701476,-0.8021802306,-0.8020835519,-0.8020835519,-0.8022768497,-0.8023735285,-0.8024701476,-0.8024701476,-0.8023735285,-0.8027601242,-0.8021802306,-0.7991839051,-0.796284318,-0.7958977222,-0.7957044244,-0.7931913733,-0.789421916,-0.7874888182,-0.7874888182,-0.7878754735,-0.7876821756,-0.7872955203,-0.7871022224,-0.7869089246,-0.7868123055,-0.7883586884,-0.789421916,-0.7890353203,-0.7907750607,-0.7951245308,-0.7978307605,-0.7987006307,-0.7989906073,-0.7987006307,-0.7989906073,-0.8007304072,-0.8022768497,-0.8021802306,-0.8023735285,-0.8027601242,-0.801117003,-0.7987973094,-0.7982173562,-0.7982173562,-0.7981207371,-0.7982173562,-0.7983140349,-0.7984106541,-0.7983140349,-0.7983140349,-0.7982173562,-0.7981207371,-0.7979274392,-0.7976374626,-0.7976374626,-0.7977340817,-0.7978307605,-0.7978307605,-0.7974441648,-0.7972508669,-0.7972508669,-0.7972508669,-0.797347486,-0.7974441648,-0.7974441648,-0.797347486,-0.797347486,-0.7974441648,-0.7974441648,-0.7975407839,-0.7978307605,-0.7981207371,-0.7979274392,-0.7977340817,-0.7977340817,-0.7977340817,-0.7975407839,-0.7976374626,-0.7976374626,-0.7975407839,-0.7981207371,-0.7991839051,-0.7987973094,-0.7977340817,-0.7976374626,-0.7976374626,-0.797347486,-0.797347486,-0.7976374626,-0.7979274392,-0.7981207371,-0.7982173562,-0.7984106541,-0.7986039519,-0.7979274392,-0.7972508669,-0.7971541882,-0.7971541882,-0.7969608903,-0.7971541882,-0.797057569,-0.7968642116,-0.7969608903,-0.7969608903,-0.797057569,-0.797057569,-0.797057569,-0.797057569,-0.7969608903,-0.7971541882,-0.797347486,-0.7976374626,-0.7979274392,-0.7981207371,-0.7982173562,-0.7981207371,-0.7978307605,-0.7974441648,-0.797057569,-0.797347486,-0.7976374626,-0.7976374626,-0.7978307605,-0.7981207371,-0.7982173562,-0.7982173562,-0.7985073328,-0.7994738221,-0.8009237051,-0.8020835519,-0.8025668263,-0.8016002774,-0.8014069796,-0.8021802306,-0.8020835519,-0.8010203838,-0.7999572158,-0.7994738221,-0.7998605371,-0.8010203838,-0.7998605371,-0.7937713861,-0.787392199,-0.7861357331,-0.7868123055,-0.7862323523,-0.786329031,-0.7874888182,-0.7879720926,-0.7879720926,-0.7875854969,-0.7868123055,-0.7883586884,-0.792514801,-0.7948345542,-0.7955111265,-0.7983140349,-0.8014069796,-0.8020835519,-0.8021802306,-0.8024701476,-0.8025668263,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8024701476,-0.8025668263,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8023735285,-0.801890254,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8025668263,-0.8026634455,-0.8023735285,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8024701476,-0.8025668263,-0.8025668263,-0.8021802306,-0.8021802306,-0.8022768497,-0.8023735285,-0.8024701476,-0.8023735285,-0.8022768497,-0.8023735285,-0.8026634455,-0.8026634455,-0.8006337881,-0.7972508669,-0.7958010435,-0.7961876988,-0.7943512797,-0.7901951671,-0.7876821756,-0.7877787948,-0.7879720926,-0.7874888182,-0.7871989012,-0.7870056033,-0.7871022224,-0.7876821756,-0.7876821756,-0.7870056033,-0.7869089246,-0.7876821756,-0.7901951671,-0.7954144478,-0.7992805243,-0.7997637987,-0.7991839051,-0.7987973094,-0.7990872264,-0.8006337881,-0.801890254,-0.801890254,-0.8024701476,-0.8027601242,-0.8009237051,-0.7987973094,-0.7982173562,-0.7982173562,-0.7984106541,-0.7985073328,-0.7983140349,-0.7984106541,-0.7985073328,-0.7982173562,-0.7980240583,-0.7979274392,-0.7978307605,-0.7978307605,-0.7977340817,-0.7978307605,-0.7978307605,-0.7974441648,-0.797347486,-0.7975407839,-0.7974441648,-0.7974441648,-0.7975407839,-0.7974441648,-0.7974441648,-0.797347486,-0.7974441648,-0.7974441648,-0.7974441648,-0.7977340817,-0.7980240583,-0.7980240583,-0.7979274392,-0.7977340817,-0.7976374626,-0.7976374626,-0.7977340817,-0.7977340817,-0.7974441648,-0.7983140349,-0.799377203,-0.7986039519,-0.7975407839,-0.7975407839,-0.7976374626,-0.7974441648,-0.7974441648,-0.7975407839,-0.7978307605,-0.7982173562,-0.7986039519,-0.7989906073,-0.7988939285,-0.7979274392,-0.7972508669,-0.797347486,-0.797347486,-0.7971541882,-0.7972508669,-0.7971541882,-0.7969608903,-0.797057569,-0.797057569,-0.7971541882,-0.797347486,-0.797347486,-0.7972508669,-0.797057569,-0.797057569,-0.7971541882,-0.7975407839,-0.7981207371,-0.7984106541,-0.7984106541,-0.7983140349,-0.7979274392,-0.7974441648,-0.797347486,-0.7976374626,-0.7977340817,-0.7976374626,-0.7978307605,-0.7983140349,-0.7985073328,-0.7986039519,-0.7991839051,-0.8005371094,-0.8021802306,-0.8024701476,-0.8009237051,-0.8005371094,-0.8016002774,-0.8015036583,-0.8005371094,-0.8000538349,-0.7994738221,-0.8002471328,-0.8015036583,-0.7987006307,-0.7912583351,-0.7862323523,-0.7857490778,-0.7862323523,-0.7862323523,-0.7864256501,-0.7864256501,-0.7871022224,-0.7879720926,-0.7867156267,-0.7858456969,-0.7887453437,-0.7928047776,-0.7940613031,-0.7948345542,-0.7984106541,-0.8017935753,-0.8021802306,-0.801890254,-0.8021802306,-0.8022768497,-0.8023735285,-0.8024701476,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8024701476,-0.8026634455,-0.8025668263,-0.8026634455,-0.8024701476,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8024701476,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8023735285,-0.8028567433,-0.8024701476,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8023735285,-0.8021802306,-0.8021802306,-0.8022768497,-0.8022768497,-0.8023735285,-0.8023735285,-0.8022768497,-0.8021802306,-0.8023735285,-0.8028567433,-0.8017935753,-0.7985073328,-0.7960910201,-0.7963809967,-0.7952211499,-0.7911616564,-0.7881653905,-0.7875854969,-0.787392199,-0.7871022224,-0.7871022224,-0.7870056033,-0.7871989012,-0.7871989012,-0.7867156267,-0.7871022224,-0.7878754735,-0.7872955203,-0.7875854969,-0.7916449308,-0.7969608903,-0.7995705009,-0.7995705009,-0.7991839051,-0.7989906073,-0.7989906073,-0.8000538349,-0.8015036583,-0.8019868731,-0.8023735285,-0.8024701476,-0.8009237051,-0.7991839051,-0.7986039519,-0.7986039519,-0.7986039519,-0.7985073328,-0.7985073328,-0.7985073328,-0.7983140349,-0.7982173562,-0.7982173562,-0.7981207371,-0.7980240583,-0.7980240583,-0.7980240583,-0.7977340817,-0.797347486,-0.797347486,-0.7974441648,-0.7974441648,-0.7974441648,-0.7976374626,-0.7975407839,-0.7975407839,-0.7974441648,-0.7974441648,-0.7974441648,-0.7975407839,-0.7977340817,-0.7980240583,-0.7981207371,-0.7979274392,-0.7978307605,-0.7975407839,-0.7975407839,-0.7979274392,-0.7978307605,-0.7975407839,-0.7987006307,-0.7996671796,-0.7986039519,-0.7974441648,-0.7977340817,-0.7977340817,-0.7975407839,-0.7975407839,-0.7974441648,-0.7976374626,-0.7981207371,-0.7986039519,-0.7987973094,-0.7981207371,-0.797347486,-0.797347486,-0.7974441648,-0.7972508669,-0.7972508669,-0.7972508669,-0.797057569,-0.7969608903,-0.7969608903,-0.7969608903,-0.7971541882,-0.7974441648,-0.797347486,-0.7972508669,-0.7972508669,-0.7971541882,-0.7971541882,-0.7976374626,-0.7981207371,-0.7982173562,-0.7982173562,-0.7981207371,-0.7977340817,-0.7974441648,-0.7975407839,-0.7977340817,-0.7978307605,-0.7977340817,-0.7980240583,-0.7984106541,-0.7986039519,-0.7987973094,-0.8002471328,-0.8022768497,-0.8027601242,-0.8010203838,-0.8000538349,-0.8012136817,-0.8016969562,-0.8005371094,-0.7996671796,-0.799377203,-0.8003438115,-0.8012136817,-0.797347486,-0.7899051905,-0.7859423757,-0.786329031,-0.786618948,-0.7859423757,-0.7856523991,-0.7862323523,-0.7865223289,-0.7864256501,-0.7864256501,-0.7858456969,-0.7870056033,-0.7916449308,-0.7946412563,-0.7950278521,-0.7981207371,-0.8016969562,-0.8021802306,-0.801890254,-0.8019868731,-0.8019868731,-0.8019868731,-0.8020835519,-0.8022768497,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8023735285,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.800827086,-0.8016002774,-0.8017935753,-0.8025668263,-0.8025668263,-0.8024701476,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8024701476,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8024701476,-0.8023735285,-0.8023735285,-0.8021802306,-0.8020835519,-0.8021802306,-0.8021802306,-0.8020835519,-0.8022768497,-0.8024701476,-0.8026634455,-0.8024701476,-0.8000538349,-0.797057569,-0.7963809967,-0.795994401,-0.7929013968,-0.7892286181,-0.7877787948,-0.7872955203,-0.7869089246,-0.7871022224,-0.7874888182,-0.7872955203,-0.7868123055,-0.7871022224,-0.7871989012,-0.7868123055,-0.7872955203,-0.7877787948,-0.7880687714,-0.7907750607,-0.7956077456,-0.7990872264,-0.7997637987,-0.799377203,-0.7989906073,-0.7988939285,-0.7999572158,-0.8014069796,-0.8020835519,-0.8024701476,-0.8021802306,-0.8009237051,-0.8000538349,-0.7992805243,-0.7987006307,-0.7986039519,-0.7984106541,-0.7981207371,-0.7981207371,-0.7981207371,-0.7981207371,-0.7983140349,-0.7984106541,-0.7983140349,-0.7982173562,-0.7979274392,-0.7974441648,-0.797347486,-0.7974441648,-0.7975407839,-0.7976374626,-0.7975407839,-0.7975407839,-0.7975407839,-0.7975407839,-0.7975407839,-0.7976374626,-0.7977340817,-0.7979274392,-0.7983140349,-0.7984106541,-0.7980240583,-0.7976374626,-0.7976374626,-0.7977340817,-0.7978307605,-0.7977340817,-0.7977340817,-0.7988939285,-0.7996671796,-0.7985073328,-0.7976374626,-0.7977340817,-0.7977340817,-0.7976374626,-0.7977340817,-0.7975407839,-0.7975407839,-0.7980240583,-0.7985073328,-0.7983140349,-0.7975407839,-0.797347486,-0.7974441648,-0.7972508669,-0.7971541882,-0.7971541882,-0.7971541882,-0.7971541882,-0.797057569,-0.7969608903,-0.797057569,-0.797057569,-0.7972508669,-0.7972508669,-0.797347486,-0.7974441648,-0.7974441648,-0.7974441648,-0.7977340817,-0.7981207371,-0.7983140349,-0.7982173562,-0.7980240583,-0.7978307605,-0.7976374626,-0.7976374626,-0.7977340817,-0.7978307605,-0.7981207371,-0.7984106541,-0.7986039519,-0.7988939285,-0.8001505136,-0.8022768497,-0.8024701476,-0.8007304072,-0.8001505136,-0.8013103604,-0.8013103604,-0.8003438115,-0.7994738221,-0.7990872264,-0.8004404902,-0.801117003,-0.7955111265,-0.7875854969,-0.7848792076,-0.7862323523,-0.7869089246,-0.7871022224,-0.7878754735,-0.7876821756,-0.7864256501,-0.7862323523,-0.786618948,-0.786329031,-0.7871989012,-0.7907750607,-0.7941579819,-0.7953178287,-0.7977340817,-0.8015036583,-0.8024701476,-0.8017935753,-0.8020835519,-0.8020835519,-0.8016002774,-0.8017935753,-0.8020835519,-0.8022768497,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8022768497,-0.8019868731,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.801890254,-0.8023735285,-0.8023735285,-0.8024701476,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8024701476,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8022768497,-0.8021802306,-0.8023735285,-0.8021802306,-0.8019868731,-0.8021802306,-0.8022768497,-0.8023735285,-0.8025668263,-0.8026634455,-0.8025668263,-0.8012136817,-0.7979274392,-0.796284318,-0.795994401,-0.7935779691,-0.7896152139,-0.787392199,-0.7872955203,-0.7876821756,-0.7877787948,-0.7874888182,-0.7875854969,-0.7882620692,-0.7869089246,-0.7842026353,-0.7848792076,-0.7877787948,-0.7880687714,-0.7868123055,-0.7872955203,-0.7897118926,-0.793964684,-0.7983140349,-0.7999572158,-0.7994738221,-0.7988939285,-0.7990872264,-0.8004404902,-0.8017935753,-0.801890254,-0.8017935753,-0.801890254,-0.8012136817,-0.7997637987,-0.7987006307,-0.7983140349,-0.7980240583,-0.7979274392,-0.7981207371,-0.7982173562,-0.7982173562,-0.7982173562,-0.7983140349,-0.7983140349,-0.7981207371,-0.7978307605,-0.7975407839,-0.7974441648,-0.7976374626,-0.7978307605,-0.7977340817,-0.7974441648,-0.7974441648,-0.7975407839,-0.7975407839,-0.7977340817,-0.7980240583,-0.7980240583,-0.7981207371,-0.7985073328,-0.7984106541,-0.7978307605,-0.7976374626,-0.7977340817,-0.7979274392,-0.7981207371,-0.7979274392,-0.7980240583,-0.7996671796,-0.8002471328,-0.7986039519,-0.7976374626,-0.7977340817,-0.7975407839,-0.7975407839,-0.7976374626,-0.7976374626,-0.7975407839,-0.7980240583,-0.7984106541,-0.7979274392,-0.7972508669,-0.7972508669,-0.7972508669,-0.797057569,-0.7971541882,-0.7971541882,-0.7971541882,-0.797057569,-0.7969608903,-0.797057569,-0.7971541882,-0.797057569,-0.797057569,-0.797347486,-0.7974441648,-0.797347486,-0.7974441648,-0.7974441648,-0.7977340817,-0.7982173562,-0.7983140349,-0.7982173562,-0.7981207371,-0.7978307605,-0.7977340817,-0.7977340817,-0.7977340817,-0.7980240583,-0.7985073328,-0.7987006307,-0.7988939285,-0.8002471328,-0.8022768497,-0.8027601242,-0.801890254,-0.8010203838,-0.8013103604,-0.8012136817,-0.8000538349,-0.7991839051,-0.7991839051,-0.8003438115,-0.8005371094,-0.7948345542,-0.786618948,-0.7840093374,-0.7856523991,-0.786329031,-0.786329031,-0.7864256501,-0.7875854969,-0.788648665,-0.7877787948,-0.7865223289,-0.7860390544,-0.7870056033,-0.7905817628,-0.7938680053,-0.7947378755,-0.7971541882,-0.801117003,-0.8025668263,-0.8020835519,-0.8021802306,-0.8021802306,-0.8016002774,-0.8012136817,-0.8016969562,-0.8022768497,-0.8023735285,-0.8025668263,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8024701476,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8024701476,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8024701476,-0.8022768497,-0.8017935753,-0.8022768497,-0.8027601242,-0.8025668263,-0.8025668263,-0.8024701476,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8025668263,-0.8024701476,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8024701476,-0.8020835519,-0.8022768497,-0.8022768497,-0.8020835519,-0.8021802306,-0.8021802306,-0.8022768497,-0.8025668263,-0.8026634455,-0.8026634455,-0.8021802306,-0.7991839051,-0.7963809967,-0.7956077456,-0.7937713861,-0.7896152139,-0.7872955203,-0.7880687714,-0.7887453437,-0.7875854969,-0.7870056033,-0.7881653905,-0.7882620692,-0.7847825289,-0.7832360864,-0.7861357331,-0.7880687714,-0.787392199,-0.7871022224,-0.7874888182,-0.7874888182,-0.7882620692,-0.7927080989,-0.7984106541,-0.8002471328,-0.7992805243,-0.7991839051,-0.7997637987,-0.8005371094,-0.8012136817,-0.8019868731,-0.8024701476,-0.801890254,-0.8003438115,-0.7989906073,-0.7982173562,-0.7979274392,-0.7979274392,-0.7981207371,-0.7981207371,-0.7980240583,-0.7980240583,-0.7980240583,-0.7981207371,-0.7980240583,-0.7977340817,-0.7974441648,-0.7974441648,-0.7976374626,-0.7978307605,-0.7976374626,-0.7974441648,-0.7974441648,-0.7975407839,-0.7976374626,-0.7978307605,-0.7979274392,-0.7980240583,-0.7983140349,-0.7983140349,-0.7980240583,-0.7977340817,-0.7976374626,-0.7979274392,-0.7980240583,-0.7979274392,-0.7980240583,-0.7982173562,-0.7987006307,-0.7990872264,-0.7986039519,-0.7977340817,-0.7977340817,-0.7976374626,-0.7975407839,-0.7976374626,-0.7975407839,-0.7977340817,-0.7982173562,-0.7980240583,-0.7974441648,-0.7972508669,-0.7971541882,-0.7971541882,-0.7971541882,-0.7971541882,-0.797057569,-0.797057569,-0.7971541882,-0.7971541882,-0.797057569,-0.7969608903,-0.7971541882,-0.797347486,-0.7972508669,-0.7972508669,-0.797347486,-0.7974441648,-0.7974441648,-0.7979274392,-0.7985073328,-0.7985073328,-0.7985073328,-0.7983140349,-0.7979274392,-0.7979274392,-0.7980240583,-0.7980240583,-0.7982173562,-0.7986039519,-0.7991839051,-0.8005371094,-0.8021802306,-0.8024701476,-0.8020835519,-0.8017935753,-0.801890254,-0.8014069796,-0.8001505136,-0.7989906073,-0.7991839051,-0.8010203838,-0.8001505136,-0.7937713861,-0.7875854969,-0.7870056033,-0.7888420224,-0.7898085713,-0.7901951671,-0.7897118926,-0.7881653905,-0.7869089246,-0.7869089246,-0.7874888182,-0.7868123055,-0.7855557799,-0.7878754735,-0.7926114798,-0.7948345542,-0.7960910201,-0.7997637987,-0.8023735285,-0.8025668263,-0.8022768497,-0.8021802306,-0.801890254,-0.8016002774,-0.8015036583,-0.801890254,-0.8021802306,-0.8023735285,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8025668263,-0.8023735285,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8016002774,-0.8022768497,-0.8020835519,-0.8024701476,-0.8025668263,-0.8024701476,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8024701476,-0.8022768497,-0.8022768497,-0.8020835519,-0.8019868731,-0.8021802306,-0.8022768497,-0.8021802306,-0.8024701476,-0.8026634455,-0.8027601242,-0.8027601242,-0.8006337881,-0.797057569,-0.7957044244,-0.7949311733,-0.7919349074,-0.7895185947,-0.7892286181,-0.7884553671,-0.7870056033,-0.7877787948,-0.7885520458,-0.7855557799,-0.7838160396,-0.7871989012,-0.789131999,-0.7872955203,-0.7868123055,-0.7876821756,-0.7874888182,-0.7874888182,-0.787392199,-0.7878754735,-0.7922248244,-0.7981207371,-0.7999572158,-0.7992805243,-0.7991839051,-0.7997637987,-0.8005371094,-0.8015036583,-0.8019868731,-0.8023735285,-0.8020835519,-0.8000538349,-0.7984106541,-0.7981207371,-0.7980240583,-0.7977340817,-0.7977340817,-0.7977340817,-0.7977340817,-0.7977340817,-0.7978307605,-0.7978307605,-0.7976374626,-0.7974441648,-0.7975407839,-0.7977340817,-0.7977340817,-0.7976374626,-0.7975407839,-0.797347486,-0.7974441648,-0.7979274392,-0.7980240583,-0.7977340817,-0.7978307605,-0.7980240583,-0.7980240583,-0.7979274392,-0.7977340817,-0.7974441648,-0.7978307605,-0.7979274392,-0.7978307605,-0.7986039519,-0.7979274392,-0.795994401,-0.7969608903,-0.7987006307,-0.7981207371,-0.7976374626,-0.7978307605,-0.7975407839,-0.7974441648,-0.7977340817,-0.7981207371,-0.7980240583,-0.7974441648,-0.797347486,-0.797347486,-0.7972508669,-0.7971541882,-0.797057569,-0.797057569,-0.7971541882,-0.7971541882,-0.7972508669,-0.7972508669,-0.797057569,-0.797057569,-0.7971541882,-0.7972508669,-0.7972508669,-0.7971541882,-0.7972508669,-0.7974441648,-0.7976374626,-0.7981207371,-0.7986039519,-0.7987973094,-0.7987973094,-0.7985073328,-0.7982173562,-0.7982173562,-0.7983140349,-0.7984106541,-0.7984106541,-0.7989906073,-0.8005371094,-0.8022768497,-0.8025668263,-0.8019868731,-0.8017935753,-0.801890254,-0.8013103604,-0.8000538349,-0.7988939285,-0.7992805243,-0.801117003,-0.7997637987,-0.7926114798,-0.786618948,-0.7871022224,-0.7897118926,-0.7905817628,-0.7900984883,-0.7895185947,-0.7892286181,-0.788648665,-0.7876821756,-0.7867156267,-0.7868123055,-0.7868123055,-0.7860390544,-0.788648665,-0.7933846712,-0.7951245308,-0.7974441648,-0.8016002774,-0.8025668263,-0.8019868731,-0.8022768497,-0.8021802306,-0.8016969562,-0.8016969562,-0.801890254,-0.8020835519,-0.8022768497,-0.8024701476,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8019868731,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8010203838,-0.8016002774,-0.8017935753,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8022768497,-0.8023735285,-0.8021802306,-0.8017935753,-0.8017935753,-0.8022768497,-0.8024701476,-0.8025668263,-0.8028567433,-0.8027601242,-0.8027601242,-0.8019868731,-0.7986039519,-0.7960910201,-0.7958010435,-0.7948345542,-0.7923215032,-0.7899051905,-0.7881653905,-0.7876821756,-0.7887453437,-0.7875854969,-0.7858456969,-0.7892286181,-0.7923215032,-0.789131999,-0.786618948,-0.7874888182,-0.7876821756,-0.7875854969,-0.7880687714,-0.7881653905,-0.7871989012,-0.7870056033,-0.7912583351,-0.7975407839,-0.8000538349,-0.799377203,-0.7990872264,-0.7999572158,-0.8014069796,-0.8020835519,-0.8020835519,-0.8026634455,-0.8021802306,-0.7998605371,-0.7983140349,-0.7980240583,-0.7979274392,-0.7978307605,-0.7978307605,-0.7977340817,-0.7977340817,-0.7977340817,-0.7976374626,-0.7975407839,-0.7975407839,-0.7976374626,-0.7978307605,-0.7978307605,-0.7977340817,-0.7975407839,-0.797347486,-0.7974441648,-0.7978307605,-0.7980240583,-0.7979274392,-0.7980240583,-0.7981207371,-0.7980240583,-0.7978307605,-0.7977340817,-0.7975407839,-0.7977340817,-0.7978307605,-0.7980240583,-0.7986039519,-0.7980240583,-0.797057569,-0.7980240583,-0.7988939285,-0.7982173562,-0.7978307605,-0.7977340817,-0.7974441648,-0.7974441648,-0.7979274392,-0.7982173562,-0.7977340817,-0.7971541882,-0.797347486,-0.7974441648,-0.7971541882,-0.7972508669,-0.7972508669,-0.797057569,-0.7971541882,-0.7972508669,-0.7972508669,-0.7971541882,-0.797057569,-0.7972508669,-0.7972508669,-0.797057569,-0.7971541882,-0.7972508669,-0.7972508669,-0.7974441648,-0.7977340817,-0.7978307605,-0.7982173562,-0.7988939285,-0.7989906073,-0.7985073328,-0.7982173562,-0.7982173562,-0.7983140349,-0.7984106541,-0.7990872264,-0.800827086,-0.8021802306,-0.8023735285,-0.8022768497,-0.8017935753,-0.8010203838,-0.8006337881,-0.7999572158,-0.7987006307,-0.7989906073,-0.801117003,-0.7988939285,-0.7907750607,-0.7857490778,-0.786618948,-0.7877787948,-0.7876821756,-0.7874888182,-0.7869089246,-0.7861357331,-0.7858456969,-0.786329031,-0.7868123055,-0.7868123055,-0.7867156267,-0.7859423757,-0.7864256501,-0.7903884649,-0.793964684,-0.7953178287,-0.7986039519,-0.8020835519,-0.8022768497,-0.8017935753,-0.8020835519,-0.8019868731,-0.8017935753,-0.8019868731,-0.8021802306,-0.8022768497,-0.8024701476,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8024701476,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8025668263,-0.8025668263,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8023735285,-0.8024701476,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8014069796,-0.801890254,-0.8024701476,-0.8023735285,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8024701476,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8025668263,-0.8024701476,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8023735285,-0.8021802306,-0.8019868731,-0.801890254,-0.8019868731,-0.8022768497,-0.8025668263,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8010203838,-0.7972508669,-0.7957044244,-0.7958977222,-0.7943512797,-0.7919349074,-0.7899051905,-0.7888420224,-0.7880687714,-0.7874888182,-0.791451633,-0.795994401,-0.7927080989,-0.7872955203,-0.7870056033,-0.7876821756,-0.787392199,-0.7879720926,-0.7881653905,-0.7879720926,-0.7880687714,-0.7872955203,-0.7876821756,-0.7927080989,-0.7986039519,-0.7999572158,-0.7988939285,-0.7990872264,-0.8006337881,-0.8021802306,-0.8022768497,-0.8021802306,-0.8026634455,-0.801890254,-0.7995705009,-0.7982173562,-0.7982173562,-0.7984106541,-0.7982173562,-0.7979274392,-0.7978307605,-0.7979274392,-0.7979274392,-0.7979274392,-0.7979274392,-0.7979274392,-0.7979274392,-0.7980240583,-0.7980240583,-0.7978307605,-0.7976374626,-0.7975407839,-0.7978307605,-0.7980240583,-0.7980240583,-0.7980240583,-0.7980240583,-0.7980240583,-0.7978307605,-0.7977340817,-0.7977340817,-0.7979274392,-0.7981207371,-0.7983140349,-0.7983140349,-0.7978307605,-0.7975407839,-0.7983140349,-0.7986039519,-0.7979274392,-0.7976374626,-0.7976374626,-0.7974441648,-0.7974441648,-0.7977340817,-0.7978307605,-0.7976374626,-0.7974441648,-0.797347486,-0.797347486,-0.797347486,-0.7975407839,-0.7975407839,-0.797347486,-0.7971541882,-0.797347486,-0.7971541882,-0.7969608903,-0.7971541882,-0.797347486,-0.7972508669,-0.797347486,-0.797347486,-0.7971541882,-0.7971541882,-0.7972508669,-0.7975407839,-0.7977340817,-0.7979274392,-0.7986039519,-0.799377203,-0.7991839051,-0.7987973094,-0.7987006307,-0.7987973094,-0.799377203,-0.801117003,-0.8024701476,-0.8022768497,-0.8017935753,-0.8019868731,-0.801117003,-0.7995705009,-0.7991839051,-0.7995705009,-0.8000538349,-0.8006337881,-0.7975407839,-0.7899051905,-0.7846859097,-0.7857490778,-0.7871022224,-0.786618948,-0.7871022224,-0.787392199,-0.7865223289,-0.7861357331,-0.7860390544,-0.7858456969,-0.7860390544,-0.7865223289,-0.7861357331,-0.7852658033,-0.7878754735,-0.7926114798,-0.7942546606,-0.7955111265,-0.7997637987,-0.8023735285,-0.8021802306,-0.8019868731,-0.801890254,-0.801890254,-0.8020835519,-0.8021802306,-0.8023735285,-0.8025668263,-0.8028567433,-0.8026634455,-0.8024701476,-0.8025668263,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8025668263,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.801890254,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8015036583,-0.801890254,-0.8020835519,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8024701476,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8025668263,-0.8023735285,-0.8022768497,-0.8020835519,-0.8019868731,-0.8022768497,-0.8025668263,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8002471328,-0.7966709137,-0.7955111265,-0.7958010435,-0.7946412563,-0.7926114798,-0.7909683585,-0.788648665,-0.7881653905,-0.7921282053,-0.7933846712,-0.7888420224,-0.7867156267,-0.7875854969,-0.7874888182,-0.7874888182,-0.7876821756,-0.7874888182,-0.7872955203,-0.786329031,-0.7861357331,-0.7872955203,-0.7892286181,-0.7938680053,-0.7989906073,-0.7999572158,-0.7987973094,-0.7990872264,-0.8007304072,-0.8020835519,-0.8020835519,-0.8020835519,-0.8028567433,-0.8019868731,-0.7995705009,-0.7984106541,-0.7984106541,-0.7984106541,-0.7982173562,-0.7982173562,-0.7982173562,-0.7982173562,-0.7983140349,-0.7982173562,-0.7982173562,-0.7983140349,-0.7982173562,-0.7980240583,-0.7979274392,-0.7977340817,-0.7976374626,-0.7978307605,-0.7980240583,-0.7981207371,-0.7982173562,-0.7981207371,-0.7978307605,-0.7976374626,-0.7977340817,-0.7979274392,-0.7981207371,-0.7982173562,-0.7981207371,-0.7981207371,-0.7974441648,-0.796284318,-0.7972508669,-0.7984106541,-0.7982173562,-0.7977340817,-0.7978307605,-0.7976374626,-0.7975407839,-0.7978307605,-0.7979274392,-0.7979274392,-0.7977340817,-0.7975407839,-0.7975407839,-0.7976374626,-0.7975407839,-0.7974441648,-0.7975407839,-0.7975407839,-0.797347486,-0.7971541882,-0.7969608903,-0.797057569,-0.7972508669,-0.7974441648,-0.7974441648,-0.7975407839,-0.797347486,-0.7972508669,-0.7972508669,-0.7974441648,-0.7977340817,-0.7976374626,-0.7981207371,-0.799377203,-0.7999572158,-0.7997637987,-0.8001505136,-0.8010203838,-0.8015036583,-0.8020835519,-0.8025668263,-0.8020835519,-0.8007304072,-0.7997637987,-0.7994738221,-0.799377203,-0.7997637987,-0.800827086,-0.8010203838,-0.7974441648,-0.7903884649,-0.7861357331,-0.7864256501,-0.7871022224,-0.7868123055,-0.7870056033,-0.7871989012,-0.7871989012,-0.7871022224,-0.786618948,-0.7861357331,-0.7858456969,-0.7855557799,-0.7855557799,-0.7859423757,-0.7877787948,-0.7918382287,-0.7948345542,-0.7946412563,-0.7965742946,-0.801117003,-0.8026634455,-0.8022768497,-0.8021802306,-0.8019868731,-0.8020835519,-0.8021802306,-0.8023735285,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8024701476,-0.8025668263,-0.8027601242,-0.8028567433,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8024701476,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8022768497,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8017935753,-0.8023735285,-0.8023735285,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8024701476,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8023735285,-0.8023735285,-0.8024701476,-0.8025668263,-0.8024701476,-0.8024701476,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8023735285,-0.8003438115,-0.7974441648,-0.795994401,-0.7957044244,-0.7953178287,-0.7944479585,-0.7917416096,-0.7887453437,-0.7878754735,-0.7879720926,-0.7874888182,-0.7874888182,-0.7876821756,-0.7875854969,-0.7875854969,-0.7874888182,-0.7872955203,-0.7862323523,-0.784589231,-0.7851691246,-0.7871989012,-0.7872955203,-0.788648665,-0.7948345542,-0.8001505136,-0.8005371094,-0.7991839051,-0.7991839051,-0.8006337881,-0.8020835519,-0.8024701476,-0.8025668263,-0.8027601242,-0.8019868731,-0.7999572158,-0.7986039519,-0.7984106541,-0.7985073328,-0.7984106541,-0.7984106541,-0.7984106541,-0.7983140349,-0.7983140349,-0.7983140349,-0.7983140349,-0.7983140349,-0.7982173562,-0.7980240583,-0.7978307605,-0.7978307605,-0.7979274392,-0.7979274392,-0.7982173562,-0.7984106541,-0.7982173562,-0.7979274392,-0.7977340817,-0.7978307605,-0.7981207371,-0.7983140349,-0.7979274392,-0.7974441648,-0.7976374626,-0.797057569,-0.7961876988,-0.7968642116,-0.7978307605,-0.7980240583,-0.7980240583,-0.7980240583,-0.7979274392,-0.7979274392,-0.7979274392,-0.7979274392,-0.7980240583,-0.7978307605,-0.7977340817,-0.7978307605,-0.7977340817,-0.7975407839,-0.7978307605,-0.7981207371,-0.7980240583,-0.7975407839,-0.7972508669,-0.7972508669,-0.7972508669,-0.7974441648,-0.7977340817,-0.7977340817,-0.7976374626,-0.7977340817,-0.7978307605,-0.7976374626,-0.7975407839,-0.7979274392,-0.7979274392,-0.7982173562,-0.7994738221,-0.800827086,-0.8014069796,-0.8020835519,-0.8026634455,-0.8023735285,-0.8013103604,-0.8012136817,-0.801117003,-0.8000538349,-0.7991839051,-0.7991839051,-0.8002471328,-0.8014069796,-0.799377203,-0.7940613031,-0.789421916,-0.7871989012,-0.7880687714,-0.7895185947,-0.7883586884,-0.7870056033,-0.7872955203,-0.7871022224,-0.7870056033,-0.7870056033,-0.786329031,-0.7857490778,-0.7858456969,-0.7861357331,-0.7871022224,-0.7893252969,-0.7929013968,-0.7955111265,-0.7948345542,-0.7947378755,-0.7987973094,-0.8023735285,-0.8026634455,-0.8023735285,-0.8023735285,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8024701476,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8025668263,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8025668263,-0.8022768497,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8024701476,-0.8025668263,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8024701476,-0.8012136817,-0.7989906073,-0.7968642116,-0.7961876988,-0.7961876988,-0.7943512797,-0.7919349074,-0.7896152139,-0.787392199,-0.7869089246,-0.7877787948,-0.7879720926,-0.7874888182,-0.787392199,-0.7876821756,-0.7865223289,-0.7862323523,-0.7902917862,-0.7927080989,-0.7892286181,-0.786618948,-0.7871022224,-0.789421916,-0.7944479585,-0.7992805243,-0.8005371094,-0.7994738221,-0.7992805243,-0.8007304072,-0.8021802306,-0.8022768497,-0.8021802306,-0.8026634455,-0.8021802306,-0.8002471328,-0.7987973094,-0.7984106541,-0.7983140349,-0.7984106541,-0.7984106541,-0.7984106541,-0.7984106541,-0.7983140349,-0.7982173562,-0.7982173562,-0.7983140349,-0.7983140349,-0.7981207371,-0.7979274392,-0.7979274392,-0.7980240583,-0.7981207371,-0.7983140349,-0.7983140349,-0.7982173562,-0.7978307605,-0.7978307605,-0.7986039519,-0.7985073328,-0.797347486,-0.7968642116,-0.7971541882,-0.7958010435,-0.7955111265,-0.7969608903,-0.7978307605,-0.7979274392,-0.7977340817,-0.7979274392,-0.7980240583,-0.7979274392,-0.7977340817,-0.7977340817,-0.7979274392,-0.7979274392,-0.7977340817,-0.7977340817,-0.7977340817,-0.7979274392,-0.7981207371,-0.7983140349,-0.7980240583,-0.7974441648,-0.7971541882,-0.7972508669,-0.7975407839,-0.7977340817,-0.7978307605,-0.7979274392,-0.7979274392,-0.7980240583,-0.7980240583,-0.7980240583,-0.7980240583,-0.7981207371,-0.7982173562,-0.7992805243,-0.8010203838,-0.8023735285,-0.8028567433,-0.8026634455,-0.8023735285,-0.8019868731,-0.8013103604,-0.8004404902,-0.8000538349,-0.7998605371,-0.7996671796,-0.8004404902,-0.8012136817,-0.7983140349,-0.7916449308,-0.7870056033,-0.786618948,-0.7875854969,-0.7882620692,-0.7882620692,-0.7875854969,-0.7867156267,-0.7865223289,-0.7865223289,-0.7861357331,-0.7860390544,-0.7865223289,-0.7876821756,-0.7890353203,-0.7903884649,-0.7915482521,-0.7931913733,-0.7946412563,-0.7944479585,-0.7943512797,-0.7976374626,-0.8016969562,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8024701476,-0.8024701476,-0.8025668263,-0.8025668263,-0.8024701476,-0.8023735285,-0.8024701476,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8024701476,-0.8023735285,-0.8017935753,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8016002774,-0.8016002774,-0.8021802306,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8021802306,-0.8007304072,-0.7981207371,-0.7957044244,-0.7953178287,-0.7958010435,-0.7938680053,-0.7898085713,-0.7872955203,-0.7874888182,-0.7880687714,-0.7875854969,-0.7875854969,-0.7874888182,-0.7864256501,-0.7908717394,-0.7992805243,-0.7980240583,-0.789421916,-0.786618948,-0.7875854969,-0.7869089246,-0.787392199,-0.7918382287,-0.7978307605,-0.800827086,-0.8000538349,-0.799377203,-0.8005371094,-0.8020835519,-0.8020835519,-0.8019868731,-0.8026634455,-0.8024701476,-0.8010203838,-0.7994738221,-0.7987006307,-0.7987006307,-0.7989906073,-0.7989906073,-0.7984106541,-0.7982173562,-0.7983140349,-0.7981207371,-0.7981207371,-0.7984106541,-0.7983140349,-0.7980240583,-0.7979274392,-0.7979274392,-0.7982173562,-0.7984106541,-0.7983140349,-0.7981207371,-0.7980240583,-0.7981207371,-0.7984106541,-0.7986039519,-0.7980240583,-0.7971541882,-0.7963809967,-0.7946412563,-0.7944479585,-0.7963809967,-0.7980240583,-0.7989906073,-0.7986039519,-0.7980240583,-0.7980240583,-0.7979274392,-0.7977340817,-0.7978307605,-0.7978307605,-0.7977340817,-0.7977340817,-0.7977340817,-0.7979274392,-0.7982173562,-0.7982173562,-0.7981207371,-0.7978307605,-0.7974441648,-0.7972508669,-0.7974441648,-0.7977340817,-0.7979274392,-0.7979274392,-0.7978307605,-0.7980240583,-0.7981207371,-0.7982173562,-0.7983140349,-0.7984106541,-0.7987973094,-0.8000538349,-0.8016969562,-0.8025668263,-0.8027601242,-0.8023735285,-0.8020835519,-0.801890254,-0.8019868731,-0.801890254,-0.800827086,-0.7996671796,-0.7994738221,-0.8006337881,-0.8005371094,-0.7956077456,-0.7888420224,-0.7859423757,-0.7867156267,-0.7881653905,-0.7887453437,-0.7876821756,-0.7864256501,-0.786618948,-0.7871022224,-0.7867156267,-0.7859423757,-0.7864256501,-0.788648665,-0.7910650373,-0.7924181223,-0.7929980755,-0.7930946946,-0.7934813499,-0.7947378755,-0.7958010435,-0.7968642116,-0.799377203,-0.8016969562,-0.8024701476,-0.8027601242,-0.8026634455,-0.8024701476,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8024701476,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.801890254,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.801117003,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8024701476,-0.8025668263,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8024701476,-0.8024701476,-0.801890254,-0.7990872264,-0.7964776158,-0.795994401,-0.7954144478,-0.7936747074,-0.7907750607,-0.7879720926,-0.7872955203,-0.7877787948,-0.7879720926,-0.7869089246,-0.787392199,-0.7933846712,-0.7977340817,-0.7929980755,-0.7875854969,-0.787392199,-0.7876821756,-0.7871022224,-0.7867156267,-0.7870056033,-0.7903884649,-0.7965742946,-0.8007304072,-0.8005371094,-0.7994738221,-0.8001505136,-0.8015036583,-0.801890254,-0.8020835519,-0.8027601242,-0.8026634455,-0.8016969562,-0.8005371094,-0.7987006307,-0.7975407839,-0.7980240583,-0.7985073328,-0.7983140349,-0.7982173562,-0.7981207371,-0.7981207371,-0.7983140349,-0.7983140349,-0.7981207371,-0.7981207371,-0.7980240583,-0.7983140349,-0.7986039519,-0.7983140349,-0.7980240583,-0.7981207371,-0.7982173562,-0.7986039519,-0.7986039519,-0.7975407839,-0.7968642116,-0.7963809967,-0.7955111265,-0.7958010435,-0.797057569,-0.7980240583,-0.7992805243,-0.7990872264,-0.7980240583,-0.7978307605,-0.7979274392,-0.7977340817,-0.7977340817,-0.7977340817,-0.7976374626,-0.7978307605,-0.7978307605,-0.7980240583,-0.7983140349,-0.7984106541,-0.7981207371,-0.7978307605,-0.7974441648,-0.797347486,-0.7976374626,-0.7978307605,-0.7978307605,-0.7981207371,-0.7981207371,-0.7981207371,-0.7984106541,-0.7987006307,-0.7990872264,-0.7999572158,-0.8013103604,-0.8022768497,-0.8025668263,-0.8023735285,-0.8020835519,-0.8016969562,-0.8016002774,-0.8019868731,-0.8022768497,-0.8015036583,-0.7997637987,-0.7994738221,-0.8010203838,-0.8000538349,-0.7937713861,-0.787392199,-0.7854591012,-0.7862323523,-0.7872955203,-0.7881653905,-0.7875854969,-0.7871022224,-0.7872955203,-0.7868123055,-0.7865223289,-0.7864256501,-0.7867156267,-0.7898085713,-0.7936747074,-0.7944479585,-0.7936747074,-0.7941579819,-0.7957044244,-0.7972508669,-0.7988939285,-0.8003438115,-0.8015036583,-0.8021802306,-0.8023735285,-0.8024701476,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8024701476,-0.8021802306,-0.8014069796,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8020835519,-0.801890254,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8023735285,-0.8022768497,-0.8022768497,-0.8002471328,-0.796284318,-0.7951245308,-0.796284318,-0.7938680053,-0.789421916,-0.7874888182,-0.7878754735,-0.7876821756,-0.7869089246,-0.7876821756,-0.7898085713,-0.7901951671,-0.7882620692,-0.7872955203,-0.7871989012,-0.7870056033,-0.7872955203,-0.7874888182,-0.7872955203,-0.7871022224,-0.7887453437,-0.7941579819,-0.7996671796,-0.8004404902,-0.7989906073,-0.7994738221,-0.8010203838,-0.801890254,-0.8021802306,-0.8022768497,-0.8026634455,-0.8025668263,-0.8009237051,-0.7985073328,-0.7981207371,-0.7986039519,-0.7986039519,-0.7985073328,-0.7984106541,-0.7983140349,-0.7984106541,-0.7983140349,-0.7981207371,-0.7980240583,-0.7980240583,-0.7982173562,-0.7984106541,-0.7982173562,-0.7982173562,-0.7982173562,-0.7982173562,-0.7991839051,-0.7996671796,-0.7985073328,-0.7981207371,-0.7988939285,-0.7991839051,-0.799377203,-0.7999572158,-0.8001505136,-0.7998605371,-0.7990872264,-0.7983140349,-0.7981207371,-0.7979274392,-0.7976374626,-0.7977340817,-0.7977340817,-0.7976374626,-0.7977340817,-0.7979274392,-0.7979274392,-0.7982173562,-0.7984106541,-0.7981207371,-0.7977340817,-0.7976374626,-0.7977340817,-0.7979274392,-0.7979274392,-0.7979274392,-0.7983140349,-0.7985073328,-0.7985073328,-0.7989906073,-0.8002471328,-0.8013103604,-0.8021802306,-0.8025668263,-0.8022768497,-0.8019868731,-0.8016969562,-0.8015036583,-0.8013103604,-0.8012136817,-0.8016002774,-0.8012136817,-0.7996671796,-0.7995705009,-0.8009237051,-0.7987973094,-0.792514801,-0.787392199,-0.7862323523,-0.7867156267,-0.7869089246,-0.7871022224,-0.787392199,-0.7870056033,-0.7869089246,-0.7871022224,-0.7862323523,-0.7862323523,-0.7883586884,-0.7906783819,-0.7929013968,-0.7944479585,-0.7950278521,-0.7963809967,-0.7987973094,-0.8006337881,-0.8016002774,-0.8020835519,-0.8022768497,-0.8022768497,-0.8024701476,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8024701476,-0.8026634455,-0.8017935753,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8024701476,-0.8023735285,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8024701476,-0.8023735285,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8024701476,-0.8023735285,-0.8025668263,-0.8025668263,-0.8028567433,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8024701476,-0.8023735285,-0.8025668263,-0.8024701476,-0.8025668263,-0.8023735285,-0.8000538349,-0.7966709137,-0.7957044244,-0.7954144478,-0.7926114798,-0.7889387012,-0.7872955203,-0.787392199,-0.7874888182,-0.7874888182,-0.7876821756,-0.7877787948,-0.7876821756,-0.7871989012,-0.7860390544,-0.7856523991,-0.7867156267,-0.7876821756,-0.7876821756,-0.7875854969,-0.7870056033,-0.7871022224,-0.7923215032,-0.7991839051,-0.8006337881,-0.7991839051,-0.7994738221,-0.800827086,-0.8017935753,-0.8022768497,-0.8022768497,-0.8023735285,-0.8027601242,-0.8024701476,-0.8009237051,-0.799377203,-0.7986039519,-0.7985073328,-0.7986039519,-0.7987006307,-0.7986039519,-0.7984106541,-0.7983140349,-0.7980240583,-0.7979274392,-0.7981207371,-0.7982173562,-0.7983140349,-0.7985073328,-0.7987006307,-0.7987973094,-0.7994738221,-0.8009237051,-0.8017935753,-0.801890254,-0.8021802306,-0.8024701476,-0.8025668263,-0.8024701476,-0.8023735285,-0.8016969562,-0.8002471328,-0.7989906073,-0.7984106541,-0.7981207371,-0.7979274392,-0.7979274392,-0.7979274392,-0.7978307605,-0.7979274392,-0.7980240583,-0.7984106541,-0.7986039519,-0.7984106541,-0.7981207371,-0.7978307605,-0.7979274392,-0.7982173562,-0.7984106541,-0.7984106541,-0.7986039519,-0.7987973094,-0.7989906073,-0.7997637987,-0.801117003,-0.8023735285,-0.8026634455,-0.8023735285,-0.8020835519,-0.8019868731,-0.8017935753,-0.8016969562,-0.8017935753,-0.8015036583,-0.8007304072,-0.8000538349,-0.7991839051,-0.7992805243,-0.8002471328,-0.7969608903,-0.7898085713,-0.786618948,-0.7871989012,-0.7868123055,-0.786618948,-0.7871989012,-0.7871989012,-0.7871989012,-0.7871989012,-0.7870056033,-0.786618948,-0.7867156267,-0.7884553671,-0.7920315266,-0.7938680053,-0.7937713861,-0.7954144478,-0.7988939285,-0.8010203838,-0.8017935753,-0.8020835519,-0.8021802306,-0.8022768497,-0.8023735285,-0.8024701476,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8024701476,-0.8025668263,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8013103604,-0.801890254,-0.8024701476,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8024701476,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8024701476,-0.8023735285,-0.8023735285,-0.8023735285,-0.8023735285,-0.8024701476,-0.8025668263,-0.8022768497,-0.7999572158,-0.7968642116,-0.7961876988,-0.7949311733,-0.7903884649,-0.7871022224,-0.7872955203,-0.7874888182,-0.7872955203,-0.7876821756,-0.7878754735,-0.7875854969,-0.787392199,-0.786618948,-0.7864256501,-0.7872955203,-0.7879720926,-0.7877787948,-0.7876821756,-0.7880687714,-0.787392199,-0.7871022224,-0.7922248244,-0.799377203,-0.8007304072,-0.7990872264,-0.7989906073,-0.8001505136,-0.8014069796,-0.8021802306,-0.8021802306,-0.8023735285,-0.8026634455,-0.8025668263,-0.801890254,-0.8005371094,-0.7992805243,-0.7987006307,-0.7985073328,-0.7983140349,-0.7984106541,-0.7985073328,-0.7985073328,-0.7984106541,-0.7983140349,-0.7984106541,-0.7987006307,-0.7986039519,-0.7987006307,-0.7996671796,-0.8012136817,-0.8023735285,-0.8026634455,-0.8026634455,-0.8023735285,-0.8022768497,-0.8024701476,-0.8023735285,-0.8022768497,-0.8023735285,-0.801890254,-0.8009237051,-0.7996671796,-0.7985073328,-0.7980240583,-0.7982173562,-0.7982173562,-0.7980240583,-0.7980240583,-0.7981207371,-0.7985073328,-0.7987973094,-0.7987006307,-0.7982173562,-0.7979274392,-0.7981207371,-0.7986039519,-0.7990872264,-0.7992805243,-0.7994738221,-0.7998605371,-0.800827086,-0.8019868731,-0.8024701476,-0.8025668263,-0.8021802306,-0.8019868731,-0.801890254,-0.801890254,-0.8017935753,-0.8017935753,-0.8017935753,-0.800827086,-0.7992805243,-0.7987973094,-0.8003438115,-0.800827086,-0.7957044244,-0.7884553671,-0.7858456969,-0.786618948,-0.7870056033,-0.7868123055,-0.7869089246,-0.787392199,-0.7874888182,-0.7871989012,-0.7871022224,-0.7865223289,-0.7869089246,-0.7896152139,-0.7924181223,-0.7936747074,-0.7943512797,-0.7966709137,-0.8002471328,-0.8020835519,-0.8017935753,-0.801890254,-0.8023735285,-0.8024701476,-0.8022768497,-0.8020835519,-0.8021802306,-0.8023735285,-0.8024701476,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8024701476,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8024701476,-0.8016969562,-0.8014069796,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8016969562,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8024701476,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8023735285,-0.8021802306,-0.8022768497,-0.8022768497,-0.8021802306,-0.8023735285,-0.8023735285,-0.8024701476,-0.8021802306,-0.7992805243,-0.7963809967,-0.7955111265,-0.7924181223,-0.7879720926,-0.7869089246,-0.7874888182,-0.787392199,-0.787392199,-0.7874888182,-0.787392199,-0.7875854969,-0.7884553671,-0.7896152139,-0.7893252969,-0.7879720926,-0.7874888182,-0.7876821756,-0.7878754735,-0.7880687714,-0.7871022224,-0.7871022224,-0.7920315266,-0.7981207371,-0.8001505136,-0.7995705009,-0.7988939285,-0.799377203,-0.8007304072,-0.8019868731,-0.8022768497,-0.8021802306,-0.8022768497,-0.8026634455,-0.8027601242,-0.8020835519,-0.800827086,-0.7998605371,-0.7992805243,-0.7987973094,-0.7985073328,-0.7984106541,-0.7984106541,-0.7985073328,-0.7985073328,-0.7986039519,-0.7987973094,-0.7996671796,-0.8015036583,-0.8026634455,-0.8022768497,-0.8016969562,-0.8015036583,-0.8015036583,-0.801890254,-0.8019868731,-0.8015036583,-0.8013103604,-0.8016969562,-0.8021802306,-0.8024701476,-0.801890254,-0.8003438115,-0.7992805243,-0.7987973094,-0.7984106541,-0.7982173562,-0.7983140349,-0.7983140349,-0.7986039519,-0.7992805243,-0.799377203,-0.7989906073,-0.7987973094,-0.7991839051,-0.7998605371,-0.8006337881,-0.800827086,-0.801117003,-0.8017935753,-0.8024701476,-0.8024701476,-0.8019868731,-0.8017935753,-0.8017935753,-0.8017935753,-0.8016002774,-0.8012136817,-0.800827086,-0.8005371094,-0.7997637987,-0.7987006307,-0.7990872264,-0.800827086,-0.8004404902,-0.7958010435,-0.7896152139,-0.786618948,-0.7867156267,-0.7870056033,-0.7870056033,-0.7869089246,-0.7870056033,-0.7871022224,-0.7871989012,-0.7874888182,-0.7867156267,-0.7861357331,-0.7887453437,-0.7929980755,-0.7945445776,-0.7944479585,-0.797057569,-0.8009237051,-0.8022768497,-0.8020835519,-0.8022768497,-0.8022768497,-0.8020835519,-0.8021802306,-0.8021802306,-0.8021802306,-0.8023735285,-0.8024701476,-0.8023735285,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8023735285,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8024701476,-0.8024701476,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8024701476,-0.8024701476,-0.8020835519,-0.801890254,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8023735285,-0.8023735285,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8025668263,-0.8023735285,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8025668263,-0.8023735285,-0.8023735285,-0.8021802306,-0.8019868731,-0.8020835519,-0.8021802306,-0.8023735285,-0.8024701476,-0.8023735285,-0.8026634455,-0.801117003,-0.7976374626,-0.7956077456,-0.7935779691,-0.7895185947,-0.7871022224,-0.7871989012,-0.787392199,-0.7871989012,-0.7874888182,-0.7878754735,-0.7875854969,-0.7892286181,-0.7917416096,-0.7904850841,-0.7877787948,-0.7876821756,-0.7881653905,-0.7877787948,-0.7875854969,-0.7875854969,-0.7871989012,-0.7880687714,-0.792514801,-0.7982173562,-0.8010203838,-0.8006337881,-0.7994738221,-0.7990872264,-0.7999572158,-0.8015036583,-0.8021802306,-0.8020835519,-0.8020835519,-0.8023735285,-0.8026634455,-0.8027601242,-0.8024701476,-0.8017935753,-0.801117003,-0.8002471328,-0.7995705009,-0.7991839051,-0.7992805243,-0.7994738221,-0.7997637987,-0.8006337881,-0.8019868731,-0.8025668263,-0.8023735285,-0.8016002774,-0.8006337881,-0.8007304072,-0.8002471328,-0.7972508669,-0.796284318,-0.7988939285,-0.8002471328,-0.8000538349,-0.800827086,-0.8019868731,-0.8024701476,-0.8023735285,-0.8016969562,-0.8007304072,-0.8001505136,-0.7999572158,-0.7997637987,-0.7995705009,-0.7999572158,-0.8007304072,-0.8010203838,-0.8009237051,-0.8009237051,-0.8014069796,-0.801890254,-0.8020835519,-0.8022768497,-0.8022768497,-0.8021802306,-0.8020835519,-0.8019868731,-0.8016002774,-0.8012136817,-0.8014069796,-0.8015036583,-0.8009237051,-0.8000538349,-0.7992805243,-0.7987006307,-0.7988939285,-0.8001505136,-0.8013103604,-0.7986039519,-0.7918382287,-0.7871989012,-0.7869089246,-0.7870056033,-0.786618948,-0.7869089246,-0.7872955203,-0.7871989012,-0.7871022224,-0.7870056033,-0.7871022224,-0.7870056033,-0.786618948,-0.7880687714,-0.7921282053,-0.7944479585,-0.7945445776,-0.7972508669,-0.801117003,-0.8023735285,-0.8022768497,-0.8022768497,-0.8020835519,-0.8019868731,-0.801890254,-0.8020835519,-0.8021802306,-0.8023735285,-0.8024701476,-0.8024701476,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8021802306,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8007304072,-0.8012136817,-0.8025668263,-0.8025668263,-0.8026634455,-0.8025668263,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8023735285,-0.8022768497,-0.8021802306,-0.8020835519,-0.8020835519,-0.8020835519,-0.8021802306,-0.8024701476,-0.8024701476,-0.8026634455,-0.8024701476,-0.7992805243,-0.7956077456,-0.7940613031,-0.7911616564,-0.787392199,-0.7869089246,-0.7878754735,-0.7876821756,-0.7877787948,-0.7884553671,-0.7881653905,-0.7888420224,-0.7902917862,-0.7892286181,-0.7875854969,-0.7881653905,-0.7884553671,-0.7878754735,-0.7877787948,-0.7883586884,-0.7892286181,-0.7900018692,-0.7904850841,-0.7919349074,-0.7957044244,-0.7998605371,-0.8013103604,-0.8000538349,-0.7989906073,-0.7994738221,-0.800827086,-0.8017935753,-0.8021802306,-0.8021802306,-0.8019868731,-0.8021802306,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8020835519,-0.8016969562,-0.8015036583,-0.8016969562,-0.8019868731,-0.8022768497,-0.8025668263,-0.8021802306,-0.8016969562,-0.801117003,-0.7997637987,-0.7998605371,-0.7986039519,-0.7926114798,-0.7910650373,-0.7965742946,-0.7994738221,-0.7983140349,-0.7980240583,-0.7987973094,-0.8003438115,-0.8019868731,-0.8022768497,-0.8022768497,-0.8021802306,-0.8019868731,-0.8017935753,-0.801890254,-0.8019868731,-0.8021802306,-0.8024701476,-0.8024701476,-0.8021802306,-0.8022768497,-0.8022768497,-0.8020835519,-0.8017935753,-0.8017935753,-0.8014069796,-0.8013103604,-0.8014069796,-0.8012136817,-0.8010203838,-0.8012136817,-0.8007304072,-0.799377203,-0.7985073328,-0.7986039519,-0.7998605371,-0.8013103604,-0.8003438115,-0.7954144478,-0.7893252969,-0.7862323523,-0.7857490778,-0.7859423757,-0.7862323523,-0.7867156267,-0.7870056033,-0.7868123055,-0.7870056033,-0.787392199,-0.7874888182,-0.7872955203,-0.7867156267,-0.7872955203,-0.7912583351,-0.7946412563,-0.7946412563,-0.7961876988,-0.8005371094,-0.8024701476,-0.8020835519,-0.8019868731,-0.8019868731,-0.801890254,-0.8019868731,-0.8017935753,-0.8016969562,-0.801890254,-0.8020835519,-0.8024701476,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8023735285,-0.801890254,-0.8014069796,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8025668263,-0.8021802306,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8024701476,-0.8021802306,-0.8019868731,-0.8020835519,-0.8021802306,-0.8020835519,-0.8023735285,-0.8026634455,-0.8027601242,-0.8027601242,-0.800827086,-0.7971541882,-0.7948345542,-0.7922248244,-0.7883586884,-0.7868123055,-0.7876821756,-0.7880687714,-0.7880687714,-0.7881653905,-0.7879720926,-0.7881653905,-0.7884553671,-0.7879720926,-0.7877787948,-0.7882620692,-0.7884553671,-0.7882620692,-0.7880687714,-0.788648665,-0.7898085713,-0.7900018692,-0.7890353203,-0.7882620692,-0.7888420224,-0.7918382287,-0.7964776158,-0.8000538349,-0.8009237051,-0.7996671796,-0.7990872264,-0.7995705009,-0.8005371094,-0.8013103604,-0.8017935753,-0.8021802306,-0.8022768497,-0.8021802306,-0.8021802306,-0.8023735285,-0.8025668263,-0.8024701476,-0.8023735285,-0.8022768497,-0.8022768497,-0.8020835519,-0.801890254,-0.8016002774,-0.800827086,-0.8000538349,-0.7997637987,-0.799377203,-0.7979274392,-0.7954144478,-0.7945445776,-0.7960910201,-0.7972508669,-0.7974441648,-0.7971541882,-0.7972508669,-0.7987006307,-0.8005371094,-0.801117003,-0.8015036583,-0.801890254,-0.8020835519,-0.8020835519,-0.8019868731,-0.8017935753,-0.8017935753,-0.8017935753,-0.8017935753,-0.8016002774,-0.8014069796,-0.8014069796,-0.8012136817,-0.8010203838,-0.800827086,-0.8005371094,-0.8006337881,-0.8009237051,-0.8010203838,-0.8009237051,-0.7999572158,-0.7987006307,-0.7985073328,-0.7995705009,-0.8007304072,-0.8005371094,-0.7972508669,-0.7918382287,-0.787392199,-0.7859423757,-0.786618948,-0.7869089246,-0.7864256501,-0.7861357331,-0.7865223289,-0.7871022224,-0.7868123055,-0.7865223289,-0.787392199,-0.7875854969,-0.7867156267,-0.7871989012,-0.7906783819,-0.7941579819,-0.7949311733,-0.7960910201,-0.7997637987,-0.8022768497,-0.8021802306,-0.801890254,-0.8017935753,-0.8016969562,-0.8017935753,-0.8016969562,-0.8015036583,-0.8014069796,-0.8016969562,-0.8019868731,-0.8022768497,-0.8024701476,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8024701476,-0.8025668263,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8016002774,-0.8020835519,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8024701476,-0.8020835519,-0.8020835519,-0.8020835519,-0.8020835519,-0.8020835519,-0.8023735285,-0.8024701476,-0.8023735285,-0.8027601242,-0.8023735285,-0.7989906073,-0.7955111265,-0.7934813499,-0.7903884649,-0.7875854969,-0.7871022224,-0.7876821756,-0.7880687714,-0.7879720926,-0.7877787948,-0.7877787948,-0.7875854969,-0.7871022224,-0.7870056033,-0.7875854969,-0.7881653905,-0.7880687714,-0.7879720926,-0.7885520458,-0.789421916,-0.7893252969,-0.7883586884,-0.7880687714,-0.7880687714,-0.7876821756,-0.7889387012,-0.7932879925,-0.7980240583,-0.8005371094,-0.800827086,-0.7998605371,-0.7987973094,-0.7987973094,-0.7995705009,-0.800827086,-0.8017935753,-0.8022768497,-0.8023735285,-0.8024701476,-0.8023735285,-0.8020835519,-0.8019868731,-0.8019868731,-0.8017935753,-0.8016969562,-0.8014069796,-0.800827086,-0.8000538349,-0.7996671796,-0.7997637987,-0.7987973094,-0.7978307605,-0.7988939285,-0.7987973094,-0.7963809967,-0.7957044244,-0.796284318,-0.7968642116,-0.7983140349,-0.799377203,-0.7996671796,-0.8000538349,-0.8004404902,-0.800827086,-0.8009237051,-0.800827086,-0.8006337881,-0.8005371094,-0.8005371094,-0.8003438115,-0.8000538349,-0.8001505136,-0.8003438115,-0.7999572158,-0.7992805243,-0.7990872264,-0.7994738221,-0.7999572158,-0.8005371094,-0.8006337881,-0.8000538349,-0.7988939285,-0.7985073328,-0.7994738221,-0.8010203838,-0.8010203838,-0.7977340817,-0.7924181223,-0.7878754735,-0.7857490778,-0.7860390544,-0.7867156267,-0.7865223289,-0.7867156267,-0.7871022224,-0.7867156267,-0.7862323523,-0.786618948,-0.7871989012,-0.7870056033,-0.7871989012,-0.7875854969,-0.7869089246,-0.7888420224,-0.7937713861,-0.7951245308,-0.7950278521,-0.7986039519,-0.801890254,-0.8022768497,-0.8021802306,-0.8020835519,-0.8017935753,-0.8016002774,-0.8015036583,-0.8016002774,-0.8016969562,-0.8017935753,-0.8017935753,-0.8019868731,-0.8021802306,-0.8023735285,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8016969562,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8015036583,-0.801890254,-0.8025668263,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8024701476,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8024701476,-0.8022768497,-0.8022768497,-0.8022768497,-0.8024701476,-0.8024701476,-0.8024701476,-0.8025668263,-0.8027601242,-0.8027601242,-0.800827086,-0.7971541882,-0.7947378755,-0.7933846712,-0.7906783819,-0.7875854969,-0.786618948,-0.7869089246,-0.7870056033,-0.7871022224,-0.7871022224,-0.7868123055,-0.7874888182,-0.7885520458,-0.789131999,-0.7890353203,-0.7884553671,-0.7876821756,-0.7876821756,-0.7885520458,-0.7889387012,-0.788648665,-0.7885520458,-0.7885520458,-0.7881653905,-0.7878754735,-0.7881653905,-0.7900984883,-0.7943512797,-0.7986039519,-0.8007304072,-0.8006337881,-0.7994738221,-0.7984106541,-0.7984106541,-0.799377203,-0.8005371094,-0.8012136817,-0.801890254,-0.8024701476,-0.8023735285,-0.8022768497,-0.8021802306,-0.801890254,-0.8015036583,-0.8010203838,-0.8004404902,-0.8001505136,-0.8000538349,-0.7999572158,-0.7991839051,-0.7990872264,-0.8003438115,-0.7999572158,-0.7974441648,-0.795994401,-0.7958010435,-0.796284318,-0.7979274392,-0.7994738221,-0.7997637987,-0.7995705009,-0.7998605371,-0.8004404902,-0.8005371094,-0.8003438115,-0.8002471328,-0.7999572158,-0.7997637987,-0.7996671796,-0.7991839051,-0.7987973094,-0.7987973094,-0.7987973094,-0.7988939285,-0.7990872264,-0.7997637987,-0.8001505136,-0.7998605371,-0.7990872264,-0.7987973094,-0.7994738221,-0.8007304072,-0.8009237051,-0.7984106541,-0.7935779691,-0.7887453437,-0.786618948,-0.7862323523,-0.7858456969,-0.7856523991,-0.7864256501,-0.7869089246,-0.7867156267,-0.7870056033,-0.787392199,-0.7868123055,-0.7862323523,-0.786618948,-0.7870056033,-0.7870056033,-0.7867156267,-0.7874888182,-0.7910650373,-0.7945445776,-0.7949311733,-0.7967675924,-0.800827086,-0.8025668263,-0.8022768497,-0.8021802306,-0.8019868731,-0.8016969562,-0.8015036583,-0.8014069796,-0.8016002774,-0.8016969562,-0.8017935753,-0.801890254,-0.8019868731,-0.8022768497,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8025668263,-0.8025668263,-0.8028567433,-0.8025668263,-0.8024701476,-0.8015036583,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8019868731,-0.8023735285,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8025668263,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8023735285,-0.8023735285,-0.8023735285,-0.8022768497,-0.8023735285,-0.8024701476,-0.8027601242,-0.8026634455,-0.8028567433,-0.8025668263,-0.799377203,-0.7958010435,-0.7954144478,-0.7947378755,-0.7918382287,-0.7892286181,-0.7877787948,-0.7871989012,-0.7878754735,-0.789131999,-0.7902917862,-0.7918382287,-0.7934813499,-0.7930946946,-0.7917416096,-0.7913549542,-0.7900018692,-0.788648665,-0.7887453437,-0.7882620692,-0.7876821756,-0.7883586884,-0.788648665,-0.7882620692,-0.7883586884,-0.7883586884,-0.7880687714,-0.7887453437,-0.7909683585,-0.7946412563,-0.7987973094,-0.801117003,-0.8009237051,-0.7996671796,-0.7986039519,-0.7984106541,-0.7987973094,-0.7992805243,-0.7999572158,-0.8005371094,-0.8007304072,-0.8006337881,-0.8006337881,-0.8005371094,-0.8001505136,-0.7999572158,-0.8000538349,-0.7996671796,-0.799377203,-0.7992805243,-0.7994738221,-0.7998605371,-0.7990872264,-0.7974441648,-0.7963809967,-0.7965742946,-0.797347486,-0.7979274392,-0.7990872264,-0.7998605371,-0.7994738221,-0.7997637987,-0.800827086,-0.800827086,-0.8005371094,-0.8003438115,-0.8001505136,-0.8001505136,-0.7999572158,-0.7996671796,-0.7991839051,-0.7987973094,-0.7991839051,-0.7998605371,-0.7995705009,-0.7991839051,-0.7990872264,-0.7991839051,-0.7999572158,-0.8010203838,-0.8010203838,-0.7987006307,-0.7943512797,-0.7901951671,-0.7875854969,-0.7865223289,-0.786618948,-0.7869089246,-0.7871022224,-0.7868123055,-0.786329031,-0.7865223289,-0.7868123055,-0.7867156267,-0.7868123055,-0.7869089246,-0.786618948,-0.786329031,-0.7867156267,-0.7870056033,-0.786618948,-0.7885520458,-0.7929013968,-0.7947378755,-0.7956077456,-0.7991839051,-0.8021802306,-0.8024701476,-0.8022768497,-0.8022768497,-0.8019868731,-0.8016002774,-0.8013103604,-0.8013103604,-0.8015036583,-0.8016002774,-0.801890254,-0.8020835519,-0.8022768497,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8024701476,-0.8019868731,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8009237051,-0.8019868731,-0.8024701476,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8024701476,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.801890254,-0.7985073328,-0.7958010435,-0.7953178287,-0.7949311733,-0.7936747074,-0.7924181223,-0.791451633,-0.7916449308,-0.7933846712,-0.7945445776,-0.7946412563,-0.7950278521,-0.7948345542,-0.7942546606,-0.7941579819,-0.7929013968,-0.7923215032,-0.7923215032,-0.7902917862,-0.7884553671,-0.7883586884,-0.7882620692,-0.7881653905,-0.7881653905,-0.788648665,-0.7889387012,-0.7884553671,-0.7881653905,-0.7889387012,-0.7910650373,-0.7948345542,-0.7987973094,-0.801117003,-0.8013103604,-0.8003438115,-0.7996671796,-0.799377203,-0.7988939285,-0.7985073328,-0.7985073328,-0.7986039519,-0.7987006307,-0.7987973094,-0.7986039519,-0.7983140349,-0.7980240583,-0.7976374626,-0.7978307605,-0.7980240583,-0.7976374626,-0.7976374626,-0.797347486,-0.7964776158,-0.796284318,-0.7964776158,-0.7968642116,-0.7977340817,-0.7981207371,-0.7983140349,-0.7983140349,-0.7983140349,-0.7990872264,-0.7997637987,-0.7996671796,-0.7995705009,-0.7995705009,-0.7995705009,-0.799377203,-0.7990872264,-0.7989906073,-0.7987973094,-0.7986039519,-0.7987973094,-0.7990872264,-0.7995705009,-0.8004404902,-0.801117003,-0.8007304072,-0.7981207371,-0.7938680053,-0.7901951671,-0.7882620692,-0.7878754735,-0.7880687714,-0.7876821756,-0.7871022224,-0.7872955203,-0.7878754735,-0.7878754735,-0.7871989012,-0.7867156267,-0.7867156267,-0.7867156267,-0.7865223289,-0.7868123055,-0.7870056033,-0.7864256501,-0.7862323523,-0.7867156267,-0.7877787948,-0.7911616564,-0.7946412563,-0.7952211499,-0.7966709137,-0.8004404902,-0.8024701476,-0.8024701476,-0.8022768497,-0.8020835519,-0.801890254,-0.8016002774,-0.8013103604,-0.8014069796,-0.8015036583,-0.8016969562,-0.801890254,-0.8020835519,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8024701476,-0.8016002774,-0.8010203838,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.7995705009,-0.8009237051,-0.8022768497,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8025668263,-0.8025668263,-0.8024701476,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8016002774,-0.7991839051,-0.7965742946,-0.7952211499,-0.7949311733,-0.7946412563,-0.7941579819,-0.7945445776,-0.7957044244,-0.7966709137,-0.7976374626,-0.7982173562,-0.7983140349,-0.7985073328,-0.7981207371,-0.7969608903,-0.795994401,-0.7945445776,-0.7929980755,-0.7923215032,-0.7913549542,-0.7898085713,-0.7883586884,-0.7876821756,-0.7884553671,-0.7892286181,-0.7885520458,-0.7880687714,-0.7880687714,-0.7879720926,-0.7887453437,-0.7908717394,-0.7940613031,-0.7975407839,-0.8000538349,-0.8013103604,-0.8017935753,-0.8013103604,-0.800827086,-0.8007304072,-0.8007304072,-0.8005371094,-0.8004404902,-0.8004404902,-0.8003438115,-0.8002471328,-0.8001505136,-0.8003438115,-0.8006337881,-0.8001505136,-0.7992805243,-0.7990872264,-0.7990872264,-0.7987006307,-0.7985073328,-0.7985073328,-0.7987006307,-0.7985073328,-0.7982173562,-0.7983140349,-0.7982173562,-0.7982173562,-0.7985073328,-0.7985073328,-0.7985073328,-0.7985073328,-0.7984106541,-0.7987973094,-0.7989906073,-0.7987973094,-0.799377203,-0.8006337881,-0.801117003,-0.8009237051,-0.8005371094,-0.7991839051,-0.7965742946,-0.7926114798,-0.789131999,-0.7874888182,-0.7872955203,-0.7874888182,-0.7875854969,-0.7877787948,-0.7874888182,-0.7871989012,-0.7874888182,-0.7875854969,-0.7874888182,-0.7877787948,-0.787392199,-0.7867156267,-0.7867156267,-0.7868123055,-0.786618948,-0.7867156267,-0.7868123055,-0.786329031,-0.7859423757,-0.7884553671,-0.7933846712,-0.7954144478,-0.7951245308,-0.7977340817,-0.8015036583,-0.8025668263,-0.8023735285,-0.8023735285,-0.8020835519,-0.8017935753,-0.8016002774,-0.8017935753,-0.801890254,-0.8017935753,-0.8017935753,-0.8020835519,-0.8024701476,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8024701476,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8025668263,-0.8025668263,-0.8013103604,-0.7995705009,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8007304072,-0.8016969562,-0.8022768497,-0.8024701476,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8023735285,-0.800827086,-0.7992805243,-0.7985073328,-0.7979274392,-0.7978307605,-0.7987006307,-0.7995705009,-0.8003438115,-0.8012136817,-0.8016969562,-0.8016969562,-0.8015036583,-0.8013103604,-0.8009237051,-0.7996671796,-0.7976374626,-0.7961876988,-0.7954144478,-0.7942546606,-0.7929980755,-0.7917416096,-0.7895185947,-0.7879720926,-0.7885520458,-0.7890353203,-0.7884553671,-0.7878754735,-0.7880687714,-0.788648665,-0.7885520458,-0.7882620692,-0.7898085713,-0.7928047776,-0.7946412563,-0.795994401,-0.7978307605,-0.7989906073,-0.799377203,-0.7996671796,-0.7997637987,-0.7999572158,-0.7997637987,-0.7994738221,-0.7992805243,-0.799377203,-0.7992805243,-0.7987973094,-0.7987973094,-0.7999572158,-0.8007304072,-0.8004404902,-0.8006337881,-0.8010203838,-0.801117003,-0.8012136817,-0.8013103604,-0.8014069796,-0.8014069796,-0.8013103604,-0.8013103604,-0.8013103604,-0.8013103604,-0.8012136817,-0.801117003,-0.801117003,-0.8015036583,-0.8012136817,-0.7995705009,-0.7987006307,-0.7992805243,-0.7984106541,-0.7954144478,-0.7926114798,-0.7904850841,-0.7884553671,-0.7871989012,-0.7871022224,-0.7874888182,-0.7875854969,-0.7875854969,-0.7875854969,-0.7877787948,-0.7876821756,-0.7874888182,-0.7876821756,-0.787392199,-0.7868123055,-0.7875854969,-0.7880687714,-0.7871022224,-0.7867156267,-0.7870056033,-0.786618948,-0.7864256501,-0.7868123055,-0.7861357331,-0.7868123055,-0.7911616564,-0.7951245308,-0.7951245308,-0.7955111265,-0.7991839051,-0.8021802306,-0.8026634455,-0.8023735285,-0.8024701476,-0.8023735285,-0.8022768497,-0.8021802306,-0.8020835519,-0.8021802306,-0.8022768497,-0.8022768497,-0.8023735285,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8015036583,-0.8009237051,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8000538349,-0.8013103604,-0.8024701476,-0.8026634455,-0.8026634455,-0.8024701476,-0.8025668263,-0.8024701476,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8024701476,-0.8021802306,-0.8020835519,-0.8016969562,-0.8014069796,-0.801890254,-0.8022768497,-0.8021802306,-0.8020835519,-0.8022768497,-0.8024701476,-0.8024701476,-0.8022768497,-0.8021802306,-0.801890254,-0.8012136817,-0.8001505136,-0.7991839051,-0.7979274392,-0.7961876988,-0.7946412563,-0.7928047776,-0.7902917862,-0.7887453437,-0.7888420224,-0.7887453437,-0.7883586884,-0.7883586884,-0.7885520458,-0.788648665,-0.788648665,-0.7885520458,-0.7883586884,-0.7882620692,-0.7887453437,-0.7898085713,-0.7904850841,-0.7909683585,-0.7912583351,-0.7916449308,-0.7920315266,-0.7915482521,-0.7904850841,-0.7900018692,-0.7901951671,-0.7901951671,-0.7896152139,-0.7903884649,-0.7922248244,-0.7921282053,-0.791451633,-0.792514801,-0.7935779691,-0.7933846712,-0.793964684,-0.7951245308,-0.7958010435,-0.7965742946,-0.7972508669,-0.7972508669,-0.797057569,-0.7972508669,-0.7975407839,-0.7977340817,-0.7972508669,-0.7956077456,-0.7949311733,-0.7953178287,-0.7934813499,-0.7903884649,-0.789131999,-0.7884553671,-0.7875854969,-0.7877787948,-0.7881653905,-0.7879720926,-0.7878754735,-0.7877787948,-0.7876821756,-0.7876821756,-0.7874888182,-0.787392199,-0.7877787948,-0.7883586884,-0.7881653905,-0.7872955203,-0.7869089246,-0.787392199,-0.7875854969,-0.7869089246,-0.7867156267,-0.7870056033,-0.7867156267,-0.7861357331,-0.7858456969,-0.7867156267,-0.7901951671,-0.7946412563,-0.7956077456,-0.7946412563,-0.7969608903,-0.801117003,-0.8025668263,-0.8024701476,-0.8025668263,-0.8024701476,-0.8022768497,-0.8022768497,-0.8021802306,-0.8021802306,-0.8022768497,-0.8024701476,-0.8024701476,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8024701476,-0.8024701476,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8028567433,-0.8015036583,-0.8001505136,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8006337881,-0.8013103604,-0.8025668263,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8024701476,-0.8025668263,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8025668263,-0.8024701476,-0.8024701476,-0.8025668263,-0.8024701476,-0.8023735285,-0.8025668263,-0.8024701476,-0.8023735285,-0.8022768497,-0.8021802306,-0.801890254,-0.8016969562,-0.8013103604,-0.7997637987,-0.797347486,-0.7954144478,-0.7937713861,-0.7912583351,-0.7890353203,-0.7883586884,-0.7887453437,-0.788648665,-0.7881653905,-0.7883586884,-0.7885520458,-0.7881653905,-0.7882620692,-0.788648665,-0.7885520458,-0.7883586884,-0.7878754735,-0.7877787948,-0.7882620692,-0.7883586884,-0.7880687714,-0.7877787948,-0.7875854969,-0.7878754735,-0.7884553671,-0.7885520458,-0.7889387012,-0.7892286181,-0.7879720926,-0.7867156267,-0.7867156267,-0.7871022224,-0.7871022224,-0.7868123055,-0.7870056033,-0.7876821756,-0.7875854969,-0.7875854969,-0.7885520458,-0.7889387012,-0.7881653905,-0.7880687714,-0.788648665,-0.7892286181,-0.7889387012,-0.787392199,-0.7875854969,-0.7910650373,-0.791451633,-0.7878754735,-0.7870056033,-0.7881653905,-0.7880687714,-0.7878754735,-0.7880687714,-0.7876821756,-0.7871989012,-0.7872955203,-0.7875854969,-0.7874888182,-0.7875854969,-0.7876821756,-0.7876821756,-0.7876821756,-0.7875854969,-0.7871989012,-0.7869089246,-0.7869089246,-0.7869089246,-0.786618948,-0.786329031,-0.786329031,-0.7862323523,-0.786329031,-0.7874888182,-0.7901951671,-0.7940613031,-0.796284318,-0.7954144478,-0.7958977222,-0.7996671796,-0.8021802306,-0.8022768497,-0.8024701476,-0.8027601242,-0.8025668263,-0.8024701476,-0.8024701476,-0.8025668263,-0.8024701476,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8023735285,-0.8025668263,-0.8016969562,-0.8007304072,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8002471328,-0.800827086,-0.8024701476,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8025668263,-0.8023735285,-0.8023735285,-0.8021802306,-0.8020835519,-0.8021802306,-0.8022768497,-0.8021802306,-0.8022768497,-0.8024701476,-0.8022768497,-0.801890254,-0.8006337881,-0.7979274392,-0.7955111265,-0.7937713861,-0.7906783819,-0.7881653905,-0.7882620692,-0.7884553671,-0.7880687714,-0.7884553671,-0.788648665,-0.7882620692,-0.7882620692,-0.7883586884,-0.7884553671,-0.7888420224,-0.7887453437,-0.7884553671,-0.7889387012,-0.7890353203,-0.7884553671,-0.7884553671,-0.7892286181,-0.7896152139,-0.789421916,-0.7888420224,-0.7893252969,-0.7904850841,-0.7895185947,-0.7874888182,-0.7874888182,-0.7880687714,-0.7874888182,-0.7871989012,-0.7875854969,-0.7876821756,-0.7869089246,-0.7869089246,-0.7877787948,-0.7877787948,-0.7871022224,-0.7871989012,-0.7876821756,-0.7878754735,-0.7876821756,-0.7872955203,-0.7876821756,-0.7888420224,-0.7887453437,-0.7875854969,-0.7874888182,-0.7876821756,-0.7870056033,-0.7864256501,-0.7870056033,-0.7875854969,-0.7871989012,-0.7869089246,-0.7867156267,-0.786618948,-0.7867156267,-0.7867156267,-0.7867156267,-0.7868123055,-0.7869089246,-0.7870056033,-0.7869089246,-0.7862323523,-0.7856523991,-0.7857490778,-0.7870056033,-0.7882620692,-0.7889387012,-0.7906783819,-0.7928047776,-0.7942546606,-0.7950278521,-0.7949311733,-0.7965742946,-0.8002471328,-0.8023735285,-0.8022768497,-0.8024701476,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8024701476,-0.8024701476,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8025668263,-0.8016002774,-0.8003438115,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8014069796,-0.8017935753,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8024701476,-0.8023735285,-0.8022768497,-0.8020835519,-0.8020835519,-0.8020835519,-0.8021802306,-0.8023735285,-0.8023735285,-0.8024701476,-0.8024701476,-0.8025668263,-0.8024701476,-0.800827086,-0.7981207371,-0.7958977222,-0.7931913733,-0.7899051905,-0.7881653905,-0.7882620692,-0.7884553671,-0.7882620692,-0.7882620692,-0.7884553671,-0.7885520458,-0.788648665,-0.788648665,-0.7887453437,-0.7890353203,-0.789131999,-0.7890353203,-0.7887453437,-0.788648665,-0.7889387012,-0.7888420224,-0.7883586884,-0.7878754735,-0.787392199,-0.787392199,-0.7882620692,-0.7884553671,-0.7875854969,-0.7875854969,-0.7881653905,-0.7882620692,-0.7877787948,-0.7877787948,-0.7878754735,-0.7872955203,-0.7874888182,-0.7892286181,-0.7893252969,-0.7876821756,-0.787392199,-0.7881653905,-0.7883586884,-0.7880687714,-0.7875854969,-0.7874888182,-0.7876821756,-0.7876821756,-0.7881653905,-0.7887453437,-0.7890353203,-0.7893252969,-0.7899051905,-0.7902917862,-0.7902917862,-0.7903884649,-0.7901951671,-0.7898085713,-0.7892286181,-0.7879720926,-0.7869089246,-0.7868123055,-0.7867156267,-0.7865223289,-0.7864256501,-0.7865223289,-0.7868123055,-0.7875854969,-0.7897118926,-0.7923215032,-0.7930946946,-0.7933846712,-0.7947378755,-0.7954144478,-0.7951245308,-0.7955111265,-0.7977340817,-0.8009237051,-0.8025668263,-0.8024701476,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8020835519,-0.8015036583,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8024701476,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8023735285,-0.8021802306,-0.8021802306,-0.8022768497,-0.8020835519,-0.8017935753,-0.801890254,-0.801890254,-0.8017935753,-0.8019868731,-0.8023735285,-0.8022768497,-0.8024701476,-0.8025668263,-0.8025668263,-0.8025668263,-0.8010203838,-0.7975407839,-0.7952211499,-0.7931913733,-0.7895185947,-0.787392199,-0.7879720926,-0.7887453437,-0.7885520458,-0.7883586884,-0.7885520458,-0.7885520458,-0.7884553671,-0.7887453437,-0.789131999,-0.789131999,-0.7887453437,-0.7881653905,-0.7878754735,-0.7878754735,-0.7878754735,-0.7877787948,-0.7875854969,-0.7876821756,-0.7880687714,-0.7878754735,-0.7872955203,-0.7871989012,-0.7870056033,-0.7871022224,-0.7877787948,-0.7879720926,-0.7876821756,-0.7878754735,-0.7878754735,-0.7871022224,-0.7880687714,-0.7899051905,-0.7892286181,-0.7877787948,-0.7877787948,-0.7880687714,-0.7880687714,-0.7880687714,-0.7889387012,-0.7904850841,-0.7911616564,-0.7911616564,-0.791451633,-0.7917416096,-0.7927080989,-0.7938680053,-0.7943512797,-0.7943512797,-0.7943512797,-0.7942546606,-0.7940613031,-0.7935779691,-0.7921282053,-0.7911616564,-0.7916449308,-0.7920315266,-0.7913549542,-0.7904850841,-0.7903884649,-0.7917416096,-0.7932879925,-0.7944479585,-0.7952211499,-0.7950278521,-0.7946412563,-0.7954144478,-0.7968642116,-0.7984106541,-0.8003438115,-0.8020835519,-0.8025668263,-0.8023735285,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8024701476,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8024701476,-0.8025668263,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8022768497,-0.8023735285,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8028567433,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8024701476,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8024701476,-0.8020835519,-0.8020835519,-0.8021802306,-0.8021802306,-0.801890254,-0.8016002774,-0.8017935753,-0.8019868731,-0.801890254,-0.8019868731,-0.8021802306,-0.8022768497,-0.8023735285,-0.8023735285,-0.8027601242,-0.8025668263,-0.8000538349,-0.797347486,-0.7956077456,-0.7921282053,-0.7882620692,-0.7874888182,-0.7883586884,-0.7884553671,-0.7882620692,-0.7885520458,-0.788648665,-0.7882620692,-0.7883586884,-0.7883586884,-0.7878754735,-0.7877787948,-0.7882620692,-0.7890353203,-0.7893252969,-0.7896152139,-0.7897118926,-0.7893252969,-0.7898085713,-0.7910650373,-0.7909683585,-0.7896152139,-0.7887453437,-0.7885520458,-0.7883586884,-0.7883586884,-0.7880687714,-0.7872955203,-0.7870056033,-0.787392199,-0.7874888182,-0.7875854969,-0.7885520458,-0.7887453437,-0.7880687714,-0.7876821756,-0.7876821756,-0.7885520458,-0.7901951671,-0.7921282053,-0.793964684,-0.7949311733,-0.7952211499,-0.7958010435,-0.7964776158,-0.7967675924,-0.7971541882,-0.7980240583,-0.7985073328,-0.7983140349,-0.7982173562,-0.7979274392,-0.7967675924,-0.7954144478,-0.7944479585,-0.793964684,-0.7940613031,-0.7941579819,-0.7941579819,-0.7942546606,-0.7945445776,-0.7949311733,-0.7958010435,-0.797057569,-0.7981207371,-0.7988939285,-0.7997637987,-0.801117003,-0.8022768497,-0.8025668263,-0.8024701476,-0.8025668263,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8025668263,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8023735285,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8021802306,-0.8020835519,-0.8020835519,-0.8019868731,-0.8017935753,-0.8016969562,-0.8017935753,-0.8017935753,-0.8017935753,-0.801890254,-0.8019868731,-0.801890254,-0.8019868731,-0.8022768497,-0.8024701476,-0.8027601242,-0.8020835519,-0.799377203,-0.7968642116,-0.7941579819,-0.7900984883,-0.7874888182,-0.7877787948,-0.7880687714,-0.7880687714,-0.7883586884,-0.7883586884,-0.7877787948,-0.787392199,-0.7878754735,-0.7887453437,-0.7897118926,-0.7916449308,-0.7935779691,-0.7937713861,-0.7930946946,-0.7930946946,-0.7933846712,-0.7938680053,-0.7944479585,-0.7938680053,-0.792514801,-0.7924181223,-0.7927080989,-0.7923215032,-0.7915482521,-0.7904850841,-0.789421916,-0.7883586884,-0.7871989012,-0.7868123055,-0.7875854969,-0.7880687714,-0.7876821756,-0.7872955203,-0.7879720926,-0.7899051905,-0.7923215032,-0.7937713861,-0.7950278521,-0.797057569,-0.7987006307,-0.799377203,-0.7998605371,-0.8003438115,-0.8006337881,-0.8007304072,-0.8010203838,-0.8016002774,-0.8016002774,-0.8014069796,-0.8014069796,-0.801117003,-0.8002471328,-0.7990872264,-0.797347486,-0.795994401,-0.7958010435,-0.7961876988,-0.7967675924,-0.7976374626,-0.7988939285,-0.8003438115,-0.8013103604,-0.8017935753,-0.8022768497,-0.8025668263,-0.8025668263,-0.8024701476,-0.8025668263,-0.8027601242,-0.8028567433,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8020835519,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8021802306,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8024701476,-0.8021802306,-0.8020835519,-0.8017935753,-0.8017935753,-0.801890254,-0.8016969562,-0.8016969562,-0.8019868731,-0.8019868731,-0.8019868731,-0.8020835519,-0.8021802306,-0.8022768497,-0.8024701476,-0.8027601242,-0.8014069796,-0.7982173562,-0.7954144478,-0.7932879925,-0.7903884649,-0.7879720926,-0.7874888182,-0.7875854969,-0.7874888182,-0.7876821756,-0.7880687714,-0.7887453437,-0.7900018692,-0.7915482521,-0.7928047776,-0.7943512797,-0.795994401,-0.7967675924,-0.7967675924,-0.7971541882,-0.7978307605,-0.7980240583,-0.7979274392,-0.7974441648,-0.7965742946,-0.7961876988,-0.7960910201,-0.7958010435,-0.7949311733,-0.7934813499,-0.7928047776,-0.792514801,-0.7904850841,-0.7879720926,-0.7871022224,-0.7871989012,-0.787392199,-0.7884553671,-0.7909683585,-0.7934813499,-0.7947378755,-0.7961876988,-0.7986039519,-0.8003438115,-0.8007304072,-0.801117003,-0.8016002774,-0.8016002774,-0.8017935753,-0.801890254,-0.8017935753,-0.8019868731,-0.8022768497,-0.8023735285,-0.8023735285,-0.8023735285,-0.8023735285,-0.8022768497,-0.8016002774,-0.8009237051,-0.800827086,-0.800827086,-0.8012136817,-0.801890254,-0.8023735285,-0.8024701476,-0.8024701476,-0.8025668263,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8023735285,-0.8016969562,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8016969562,-0.801890254,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8023735285,-0.8022768497,-0.8020835519,-0.8020835519,-0.8019868731,-0.8017935753,-0.8017935753,-0.8017935753,-0.8020835519,-0.8020835519,-0.801890254,-0.8019868731,-0.8020835519,-0.8022768497,-0.8024701476,-0.8027601242,-0.8025668263,-0.8003438115,-0.7971541882,-0.7958977222,-0.7944479585,-0.791451633,-0.789421916,-0.788648665,-0.7885520458,-0.7896152139,-0.7912583351,-0.7929013968,-0.7938680053,-0.7946412563,-0.7960910201,-0.7976374626,-0.7987973094,-0.7997637987,-0.8002471328,-0.8007304072,-0.8010203838,-0.801117003,-0.8012136817,-0.800827086,-0.8001505136,-0.7995705009,-0.7995705009,-0.7994738221,-0.7985073328,-0.7971541882,-0.795994401,-0.7949311733,-0.7940613031,-0.792514801,-0.7905817628,-0.7899051905,-0.7904850841,-0.7924181223,-0.7945445776,-0.7949311733,-0.7961876988,-0.7995705009,-0.8015036583,-0.8014069796,-0.8016002774,-0.8019868731,-0.8020835519,-0.8016969562,-0.8016969562,-0.8019868731,-0.8019868731,-0.8021802306,-0.8026634455,-0.8025668263,-0.8023735285,-0.8024701476,-0.8025668263,-0.8024701476,-0.8023735285,-0.8023735285,-0.8023735285,-0.8022768497,-0.8024701476,-0.8025668263,-0.8024701476,-0.8024701476,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8028567433,-0.8027601242,-0.8025668263,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8025668263,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8025668263,-0.8025668263,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8019868731,-0.8016002774,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8016969562,-0.8022768497,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8024701476,-0.8022768497,-0.8021802306,-0.8021802306,-0.8020835519,-0.801890254,-0.801890254,-0.8020835519,-0.8021802306,-0.8021802306,-0.8021802306,-0.8022768497,-0.8022768497,-0.8022768497,-0.8026634455,-0.8026634455,-0.8026634455,-0.8021802306,-0.8000538349,-0.7971541882,-0.7957044244,-0.7950278521,-0.7938680053,-0.7933846712,-0.7938680053,-0.7945445776,-0.7946412563,-0.7947378755,-0.7958977222,-0.7980240583,-0.799377203,-0.8002471328,-0.8013103604,-0.801890254,-0.8019868731,-0.8021802306,-0.8021802306,-0.8020835519,-0.8021802306,-0.8022768497,-0.8021802306,-0.801890254,-0.8017935753,-0.8016002774,-0.8010203838,-0.8004404902,-0.7996671796,-0.7979274392,-0.796284318,-0.7952211499,-0.7942546606,-0.7940613031,-0.7946412563,-0.7947378755,-0.7953178287,-0.797347486,-0.8002471328,-0.801890254,-0.801890254,-0.8016969562,-0.8016969562,-0.8015036583,-0.8013103604,-0.8012136817,-0.8016002774,-0.8017935753,-0.8016002774,-0.801890254,-0.8024701476,-0.8025668263,-0.8021802306,-0.8021802306,-0.8024701476,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8024701476,-0.8025668263,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8025668263,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8023735285,-0.8020835519,-0.8020835519,-0.8019868731,-0.801890254,-0.8021802306,-0.8022768497,-0.8023735285,-0.8022768497,-0.8021802306,-0.8022768497,-0.8023735285,-0.8023735285,-0.8024701476,-0.8026634455,-0.8027601242,-0.8028567433,-0.8024701476,-0.8005371094,-0.7982173562,-0.7969608903,-0.7963809967,-0.7960910201,-0.7963809967,-0.7965742946,-0.7965742946,-0.7974441648,-0.7989906073,-0.8003438115,-0.8014069796,-0.801890254,-0.8021802306,-0.8024701476,-0.8024701476,-0.8022768497,-0.8021802306,-0.8020835519,-0.8020835519,-0.8021802306,-0.8024701476,-0.8023735285,-0.8022768497,-0.8023735285,-0.8024701476,-0.8022768497,-0.801890254,-0.8014069796,-0.8000538349,-0.7984106541,-0.7975407839,-0.7968642116,-0.796284318,-0.7967675924,-0.7985073328,-0.8007304072,-0.8019868731,-0.8019868731,-0.801890254,-0.8016969562,-0.8013103604,-0.8010203838,-0.8012136817,-0.8015036583,-0.8015036583,-0.8015036583,-0.8016969562,-0.8019868731,-0.8021802306,-0.8021802306,-0.8021802306,-0.8021802306,-0.8021802306,-0.8024701476,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8024701476,-0.8022768497,-0.8021802306,-0.8023735285,-0.8025668263,-0.8025668263,-0.8025668263,-0.8025668263,-0.8024701476,-0.8024701476,-0.8025668263,-0.8024701476,-0.8023735285,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8020835519,-0.8009237051,-0.7997637987,-0.7990872264,-0.7986039519,-0.7985073328,-0.7987006307,-0.7994738221,-0.8009237051,-0.801890254,-0.8021802306,-0.8021802306,-0.8021802306,-0.801890254,-0.8017935753,-0.8019868731,-0.8019868731,-0.8019868731,-0.8019868731,-0.801890254,-0.801890254,-0.8020835519,-0.8022768497,-0.8022768497,-0.8021802306,-0.8022768497,-0.8023735285,-0.8022768497,-0.8024701476,-0.8021802306,-0.8013103604,-0.8006337881,-0.7997637987,-0.799377203,-0.8004404902,-0.8017935753,-0.8021802306,-0.8022768497,-0.8022768497,-0.8020835519,-0.8017935753,-0.8014069796,-0.8012136817,-0.801117003,-0.801117003,-0.8014069796,-0.8017935753,-0.8020835519,-0.8021802306,-0.8020835519,-0.8020835519,-0.8021802306,-0.8022768497,-0.8022768497,-0.8024701476,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8028567433,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8024701476,-0.8020835519,-0.8016969562,-0.8014069796,-0.8014069796,-0.8016969562,-0.801890254,-0.8022768497,-0.8024701476,-0.8024701476,-0.8022768497,-0.8021802306,-0.8021802306,-0.8021802306,-0.801890254,-0.8017935753,-0.8016969562,-0.8016002774,-0.801890254,-0.8021802306,-0.8020835519,-0.8019868731,-0.8022768497,-0.8023735285,-0.8022768497,-0.8022768497,-0.8025668263,-0.8026634455,-0.8024701476,-0.8023735285,-0.8021802306,-0.8019868731,-0.8020835519,-0.8023735285,-0.8025668263,-0.8024701476,-0.8022768497,-0.8022768497,-0.8021802306,-0.8019868731,-0.8017935753,-0.8017935753,-0.8016002774,-0.8015036583,-0.8016002774,-0.8016969562,-0.801890254,-0.8019868731,-0.8017935753,-0.8017935753,-0.8020835519,-0.8022768497,-0.8023735285,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8024701476,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8028567433,-0.8025668263,-0.8024701476,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8024701476,-0.8025668263,-0.8026634455,-0.8026634455,-0.8025668263,-0.8024701476,-0.8023735285,-0.8021802306,-0.8019868731,-0.8019868731,-0.8019868731,-0.8017935753,-0.8015036583,-0.8014069796,-0.8016969562,-0.801890254,-0.8017935753,-0.801890254,-0.8020835519,-0.8021802306,-0.8022768497,-0.8023735285,-0.8022768497,-0.8023735285,-0.8024701476,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8024701476,-0.8023735285,-0.8022768497,-0.8020835519,-0.801890254,-0.8019868731,-0.8019868731,-0.8019868731,-0.8017935753,-0.8016969562,-0.8017935753,-0.801890254,-0.8016969562,-0.8017935753,-0.8019868731,-0.8020835519,-0.8022768497,-0.8024701476,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8022768497,-0.8020835519,-0.8020835519,-0.8020835519,-0.801890254,-0.8017935753,-0.801890254,-0.8016969562,-0.8016002774,-0.8016969562,-0.801890254,-0.8019868731,-0.8020835519,-0.8019868731,-0.801890254,-0.801890254,-0.8019868731,-0.8021802306,-0.8023735285,-0.8025668263,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8024701476,-0.8023735285,-0.8021802306,-0.8020835519,-0.8020835519,-0.801890254,-0.8017935753,-0.8017935753,-0.801890254,-0.801890254,-0.8019868731,-0.8021802306,-0.8022768497,-0.8024701476,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8024701476,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8023735285,-0.8022768497,-0.8020835519,-0.801890254,-0.8019868731,-0.8021802306,-0.8017935753,-0.8015036583,-0.8017935753,-0.801890254,-0.8020835519,-0.8020835519,-0.801890254,-0.8017935753,-0.801890254,-0.8020835519,-0.8022768497,-0.8023735285,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8023735285,-0.8021802306,-0.8020835519,-0.8019868731,-0.801890254,-0.8019868731,-0.8020835519,-0.8022768497,-0.8024701476,-0.8025668263,-0.8025668263,-0.8028567433,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8024701476,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8022768497,-0.8021802306,-0.8021802306,-0.8022768497,-0.8022768497,-0.8021802306,-0.8020835519,-0.8019868731,-0.801890254,-0.801890254,-0.801890254,-0.8016969562,-0.8016002774,-0.8016969562,-0.8017935753,-0.8019868731,-0.8022768497,-0.8024701476,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8024701476,-0.8025668263,-0.8026634455,-0.8025668263,-0.8022768497,-0.8023735285,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8024701476,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8024701476,-0.8023735285,-0.8022768497,-0.8022768497,-0.8021802306,-0.8020835519,-0.8020835519,-0.8021802306,-0.801890254,-0.8016002774,-0.8017935753,-0.8020835519,-0.8022768497,-0.8024701476,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8025668263,-0.8027601242,-0.8025668263,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8026634455,-0.8024701476,-0.8022768497,-0.8021802306,-0.8022768497,-0.8022768497,-0.8022768497,-0.8022768497,-0.8023735285,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8028567433,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8025668263,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8025668263,-0.8025668263,-0.8024701476,-0.8024701476,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8025668263,-0.8028567433,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8025668263,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8028567433,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8025668263,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8025668263,-0.8026634455,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8025668263,-0.8027601242,-0.8025668263,-0.8027601242,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8024701476,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8025668263,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8025668263,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8025668263,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8028567433,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8028567433,-0.8025668263,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8024701476,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8025668263,-0.8023735285,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8025668263,-0.8027601242,-0.8027601242,-0.8028567433,-0.8028567433,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8027601242,-0.8025668263,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8026634455,-0.8028567433,-0.8027601242,-0.8027601242,-0.8025668263,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8028567433,-0.8028567433,-0.8027601242,-0.8028567433,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8028567433,-0.8026634455,-0.8028567433,-0.8025668263,-0.8028567433,-0.8024701476,-0.8025668263,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8025668263,-0.8025668263,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8028567433,-0.8025668263,-0.8025668263,-0.8026634455,-0.8026634455,-0.8026634455,-0.8028567433,-0.8026634455,-0.8026634455,-0.8027601242,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8026634455,-0.8028567433,-0.8027601242,-0.8026634455,-0.8027601242,-0.8027601242,-0.8027601242,-0.8027601242,-0.8025668263,-0.8027601242,-0.8025668263,-0.8027601242,-0.8026634455,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433],[-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433,-0.8028567433]],[[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7864806056,-0.7864806056,-0.7864806056,-0.7865685821,-0.7865685821,-0.7865685821,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7865685821,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7865685821,-0.7864806056,-0.7864806056,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7864806056,-0.7864806056,-0.7865685821,-0.7865685821,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7864806056,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7865685821,-0.7865685821,-0.7864806056,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7865685821,-0.7866565585,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7865685821,-0.7866565585,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7865685821,-0.7866565585,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7862166762,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7865685821,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7865685821,-0.7866565585,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7864806056,-0.7866565585,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7866565585,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7860407233,-0.7859527469,-0.7860407233,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7866565585,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7862166762,-0.7859527469,-0.785776794,-0.785600841,-0.7853369117,-0.7851609588,-0.7851609588,-0.7851609588,-0.7852489352,-0.7854248881,-0.7856888175,-0.7859527469,-0.7861286998,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7861286998,-0.7861286998,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7862166762,-0.7860407233,-0.7856888175,-0.7852489352,-0.7849849463,-0.784545064,-0.7841051817,-0.7839292288,-0.7840172052,-0.7840172052,-0.7841051817,-0.7842811346,-0.784545064,-0.7848969698,-0.7853369117,-0.7856888175,-0.7860407233,-0.7862166762,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7864806056,-0.7866565585,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7861286998,-0.7860407233,-0.7860407233,-0.7860407233,-0.7859527469,-0.7858647704,-0.7859527469,-0.7859527469,-0.7860407233,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7861286998,-0.7859527469,-0.7856888175,-0.7852489352,-0.7848089933,-0.7842811346,-0.7835772634,-0.7826974392,-0.7819936275,-0.7817296982,-0.7815537453,-0.7814657688,-0.7815537453,-0.7819936275,-0.7826094627,-0.783313334,-0.7838411927,-0.7844570875,-0.7851609588,-0.785776794,-0.7861286998,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7866565585,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7862166762,-0.7861286998,-0.7861286998,-0.7860407233,-0.7859527469,-0.7858647704,-0.7858647704,-0.7858647704,-0.7858647704,-0.7858647704,-0.7856888175,-0.785776794,-0.7860407233,-0.7860407233,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7861286998,-0.7858647704,-0.7855128646,-0.7849849463,-0.7842811346,-0.7835772634,-0.7827854156,-0.7816417217,-0.7803220749,-0.7792662978,-0.7783865333,-0.7777705789,-0.7775066495,-0.777418673,-0.7772427201,-0.7776826024,-0.7787384391,-0.7802340984,-0.7813777924,-0.7822575569,-0.7834892869,-0.7846330404,-0.7853369117,-0.7856888175,-0.7859527469,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7861286998,-0.7860407233,-0.7859527469,-0.7860407233,-0.7860407233,-0.7861286998,-0.7861286998,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7866565585,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7861286998,-0.7860407233,-0.7859527469,-0.7859527469,-0.7858647704,-0.785776794,-0.7856888175,-0.7856888175,-0.785776794,-0.785776794,-0.785776794,-0.7858647704,-0.7860407233,-0.7860407233,-0.7859527469,-0.7859527469,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7860407233,-0.7858647704,-0.7855128646,-0.7850729823,-0.7843691111,-0.7834013104,-0.7823455334,-0.781113863,-0.7795302272,-0.7778585553,-0.7768028378,-0.7765389085,-0.7768908143,-0.777418673,-0.7782104611,-0.7778585553,-0.7765389085,-0.7760110497,-0.7760990262,-0.7768028378,-0.7787384391,-0.7804100513,-0.7810258865,-0.782081604,-0.7834013104,-0.7844570875,-0.7852489352,-0.7858647704,-0.7861286998,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7861286998,-0.7859527469,-0.7860407233,-0.7859527469,-0.7858647704,-0.785776794,-0.7858647704,-0.7859527469,-0.7860407233,-0.7860407233,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7866565585,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7861286998,-0.7861286998,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7862166762,-0.7860407233,-0.7859527469,-0.7859527469,-0.785776794,-0.785776794,-0.7856888175,-0.7856888175,-0.785600841,-0.7855128646,-0.7855128646,-0.785600841,-0.785600841,-0.7855128646,-0.785600841,-0.7856888175,-0.7856888175,-0.785600841,-0.7856888175,-0.7859527469,-0.7862166762,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7860407233,-0.785776794,-0.785600841,-0.7853369117,-0.7849849463,-0.784545064,-0.7837532163,-0.7826094627,-0.7815537453,-0.7802340984,-0.7788264155,-0.7779465318,-0.7773306966,-0.7775946259,-0.7790903449,-0.781113863,-0.7825214863,-0.783049345,-0.7828733921,-0.7817296982,-0.7800580859,-0.7779465318,-0.7765389085,-0.7776826024,-0.7792662978,-0.7796182036,-0.7800580859,-0.7812018394,-0.7824335098,-0.7837532163,-0.7847210169,-0.7853369117,-0.7859527469,-0.7862166762,-0.7862166762,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7862166762,-0.7860407233,-0.785776794,-0.785776794,-0.7858647704,-0.7858647704,-0.7856888175,-0.7856888175,-0.7856888175,-0.785776794,-0.7858647704,-0.7859527469,-0.7859527469,-0.7860407233,-0.7861286998,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7861286998,-0.7861286998,-0.7860407233,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7864806056,-0.7866565585,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7862166762,-0.7860407233,-0.7861286998,-0.7861286998,-0.7861286998,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7859527469,-0.7858647704,-0.7858647704,-0.7856888175,-0.7855128646,-0.7855128646,-0.7854248881,-0.7851609588,-0.7849849463,-0.7849849463,-0.7848969698,-0.7849849463,-0.7849849463,-0.7849849463,-0.7851609588,-0.7851609588,-0.7852489352,-0.7854248881,-0.7856888175,-0.7858647704,-0.7861286998,-0.7862166762,-0.7861286998,-0.7860407233,-0.7859527469,-0.7858647704,-0.785776794,-0.7854248881,-0.7851609588,-0.7848089933,-0.7841051817,-0.7835772634,-0.783049345,-0.7821695805,-0.7808499336,-0.7794422507,-0.7779465318,-0.777418673,-0.7781224847,-0.7793542743,-0.7814657688,-0.7836652398,-0.7850729823,-0.7853369117,-0.7850729823,-0.7851609588,-0.7851609588,-0.7843691111,-0.7823455334,-0.7796182036,-0.7781224847,-0.7782104611,-0.7786504626,-0.7791783214,-0.7795302272,-0.7804980278,-0.7819056511,-0.783049345,-0.7841051817,-0.7848089933,-0.7853369117,-0.7856888175,-0.7859527469,-0.7861286998,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7862166762,-0.7859527469,-0.7858647704,-0.785776794,-0.785600841,-0.7855128646,-0.7855128646,-0.7855128646,-0.785600841,-0.785600841,-0.7855128646,-0.7855128646,-0.785600841,-0.785600841,-0.7856888175,-0.785776794,-0.7858647704,-0.7860407233,-0.7861286998,-0.7862166762,-0.7862166762,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7861286998,-0.7860407233,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7866565585,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7861286998,-0.7861286998,-0.7862166762,-0.7862166762,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7862166762,-0.7861286998,-0.7860407233,-0.7858647704,-0.7856888175,-0.7855128646,-0.7852489352,-0.7848969698,-0.7846330404,-0.7844570875,-0.7842811346,-0.7841051817,-0.7840172052,-0.7841051817,-0.7841931581,-0.7842811346,-0.7843691111,-0.7844570875,-0.7843691111,-0.7844570875,-0.7846330404,-0.7847210169,-0.7848969698,-0.7853369117,-0.785600841,-0.785600841,-0.7855128646,-0.7855128646,-0.7854248881,-0.7851609588,-0.7849849463,-0.7847210169,-0.7843691111,-0.7835772634,-0.7826974392,-0.782081604,-0.781113863,-0.7795302272,-0.7780345082,-0.7769787908,-0.7773306966,-0.7786504626,-0.7812018394,-0.7840172052,-0.7854248881,-0.785776794,-0.7859527469,-0.785776794,-0.785776794,-0.7858647704,-0.7855128646,-0.7848089933,-0.7829613686,-0.7800580859,-0.7782104611,-0.7780345082,-0.7782104611,-0.7786504626,-0.7795302272,-0.7806739807,-0.7816417217,-0.7826974392,-0.7835772634,-0.7844570875,-0.7851609588,-0.7855128646,-0.7858647704,-0.7861286998,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7861286998,-0.785776794,-0.785600841,-0.7854248881,-0.7853369117,-0.7852489352,-0.7853369117,-0.7854248881,-0.7853369117,-0.7853369117,-0.7854248881,-0.7853369117,-0.7852489352,-0.7853369117,-0.7854248881,-0.7855128646,-0.785600841,-0.7856888175,-0.785776794,-0.7859527469,-0.7860407233,-0.7861286998,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7861286998,-0.7861286998,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7861286998,-0.7861286998,-0.7860407233,-0.7861286998,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7864806056,-0.7866565585,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7861286998,-0.7861286998,-0.7860407233,-0.7860407233,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7860407233,-0.7860407233,-0.7860407233,-0.7861286998,-0.7861286998,-0.7862166762,-0.7862166762,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863046527,-0.7861286998,-0.7860407233,-0.7858647704,-0.7855128646,-0.7851609588,-0.7848969698,-0.7848089933,-0.7844570875,-0.7839292288,-0.7834892869,-0.7834013104,-0.783313334,-0.7831373215,-0.7829613686,-0.7828733921,-0.783049345,-0.783313334,-0.7834892869,-0.7836652398,-0.7837532163,-0.7837532163,-0.7837532163,-0.7836652398,-0.7839292288,-0.7844570875,-0.7848089933,-0.7848089933,-0.7847210169,-0.7848089933,-0.7848089933,-0.7847210169,-0.7846330404,-0.7846330404,-0.7844570875,-0.7838411927,-0.783049345,-0.7823455334,-0.7809379101,-0.7788264155,-0.7776826024,-0.7780345082,-0.7786504626,-0.780146122,-0.7825214863,-0.7842811346,-0.7849849463,-0.7850729823,-0.7853369117,-0.785776794,-0.7859527469,-0.7858647704,-0.7852489352,-0.7842811346,-0.7834892869,-0.7817296982,-0.7795302272,-0.7781224847,-0.7779465318,-0.7784745097,-0.7793542743,-0.7804980278,-0.7816417217,-0.7825214863,-0.7834892869,-0.7844570875,-0.7849849463,-0.7851609588,-0.7851609588,-0.7853369117,-0.7854248881,-0.7855128646,-0.7855128646,-0.7853369117,-0.7850729823,-0.7848969698,-0.7848089933,-0.7847210169,-0.784545064,-0.7843691111,-0.7843691111,-0.7846330404,-0.784545064,-0.7844570875,-0.784545064,-0.7846330404,-0.784545064,-0.7847210169,-0.7849849463,-0.7851609588,-0.7853369117,-0.7855128646,-0.785600841,-0.7856888175,-0.7858647704,-0.7860407233,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7861286998,-0.7861286998,-0.7861286998,-0.7860407233,-0.7861286998,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7861286998,-0.7861286998,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7861286998,-0.7861286998,-0.7862166762,-0.7862166762,-0.7860407233,-0.7860407233,-0.7861286998,-0.7862166762,-0.7861286998,-0.7861286998,-0.7861286998,-0.7862166762,-0.7862166762,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7861286998,-0.7859527469,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7861286998,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7861286998,-0.7860407233,-0.7859527469,-0.7859527469,-0.7859527469,-0.7858647704,-0.7859527469,-0.7860407233,-0.7860407233,-0.7861286998,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863046527,-0.7863046527,-0.7862166762,-0.7858647704,-0.7855128646,-0.7850729823,-0.784545064,-0.7841051817,-0.7840172052,-0.7841051817,-0.7837532163,-0.783313334,-0.7831373215,-0.7831373215,-0.783049345,-0.7828733921,-0.7825214863,-0.7824335098,-0.7825214863,-0.7826974392,-0.7827854156,-0.783049345,-0.7834892869,-0.7835772634,-0.783313334,-0.783313334,-0.7834013104,-0.7837532163,-0.7841931581,-0.7843691111,-0.7843691111,-0.7844570875,-0.784545064,-0.784545064,-0.7844570875,-0.7843691111,-0.7841051817,-0.7836652398,-0.783049345,-0.7827854156,-0.7817296982,-0.7795302272,-0.7784745097,-0.7794422507,-0.7809379101,-0.782081604,-0.7831373215,-0.7837532163,-0.7839292288,-0.7834013104,-0.7834013104,-0.784545064,-0.7851609588,-0.7848089933,-0.7843691111,-0.7839292288,-0.7834013104,-0.7826094627,-0.7810258865,-0.7792662978,-0.7783865333,-0.7788264155,-0.7800580859,-0.7815537453,-0.7827854156,-0.7834013104,-0.7839292288,-0.7843691111,-0.7844570875,-0.7844570875,-0.784545064,-0.7846330404,-0.7846330404,-0.7846330404,-0.784545064,-0.7842811346,-0.7841051817,-0.7840172052,-0.7839292288,-0.7838411927,-0.7836652398,-0.7834013104,-0.783313334,-0.7834013104,-0.7832252979,-0.783049345,-0.783313334,-0.7834892869,-0.7835772634,-0.7838411927,-0.7841931581,-0.7843691111,-0.7846330404,-0.7848969698,-0.7851609588,-0.7852489352,-0.7855128646,-0.7858647704,-0.7861286998,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7862166762,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7861286998,-0.7860407233,-0.7860407233,-0.7861286998,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7861286998,-0.7860407233,-0.7860407233,-0.7862166762,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7861286998,-0.7860407233,-0.7862166762,-0.7862166762,-0.7861286998,-0.7860407233,-0.7862166762,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7861286998,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7864806056,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7862166762,-0.7862166762,-0.7861286998,-0.7862166762,-0.7863046527,-0.7861286998,-0.7861286998,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7862166762,-0.7862166762,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7861286998,-0.7860407233,-0.7860407233,-0.7860407233,-0.7860407233,-0.7860407233,-0.7859527469,-0.7859527469,-0.7860407233,-0.7859527469,-0.7860407233,-0.7860407233,-0.7860407233,-0.7861286998,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7862166762,-0.7862166762,-0.7863926291,-0.7862166762,-0.7860407233,-0.785776794,-0.7853369117,-0.7847210169,-0.7843691111,-0.7841931581,-0.7841051817,-0.7840172052,-0.7840172052,-0.7837532163,-0.7834013104,-0.7834013104,-0.7834892869,-0.783313334,-0.7831373215,-0.7829613686,-0.7828733921,-0.7827854156,-0.7826094627,-0.7825214863,-0.7826974392,-0.7829613686,-0.7826974392,-0.7824335098,-0.7822575569,-0.7819936275,-0.782081604,-0.7825214863,-0.783049345,-0.783313334,-0.7834013104,-0.7836652398,-0.7840172052,-0.7841051817,-0.7839292288,-0.7836652398,-0.7831373215,-0.7829613686,-0.7832252979,-0.7826094627,-0.7810258865,-0.7799701095,-0.7807619572,-0.7824335098,-0.7834892869,-0.7836652398,-0.7836652398,-0.783313334,-0.7824335098,-0.782081604,-0.7831373215,-0.7837532163,-0.7832252979,-0.7834892869,-0.7841051817,-0.7840172052,-0.7829613686,-0.7816417217,-0.7804980278,-0.779882133,-0.7804100513,-0.7817296982,-0.7828733921,-0.7834892869,-0.7835772634,-0.7834013104,-0.783313334,-0.7831373215,-0.7834892869,-0.7842811346,-0.784545064,-0.784545064,-0.7843691111,-0.7841051817,-0.7840172052,-0.7838411927,-0.7836652398,-0.7834013104,-0.7832252979,-0.7831373215,-0.7829613686,-0.7826974392,-0.7826974392,-0.7826094627,-0.7826094627,-0.7829613686,-0.7832252979,-0.783049345,-0.7831373215,-0.7834013104,-0.7835772634,-0.7837532163,-0.7841051817,-0.7844570875,-0.7846330404,-0.7849849463,-0.7854248881,-0.7858647704,-0.7861286998,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7860407233,-0.7860407233,-0.7859527469,-0.7859527469,-0.7859527469,-0.7860407233,-0.7860407233,-0.7861286998,-0.7862166762,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7860407233,-0.7860407233,-0.7861286998,-0.7861286998,-0.7861286998,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7861286998,-0.7861286998,-0.7862166762,-0.7862166762,-0.7862166762,-0.7861286998,-0.7862166762,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7866565585,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7863926291,-0.7862166762,-0.7863046527,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7860407233,-0.7860407233,-0.7860407233,-0.7859527469,-0.7860407233,-0.7860407233,-0.7859527469,-0.7860407233,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7862166762,-0.7861286998,-0.7862166762,-0.7862166762,-0.7861286998,-0.7860407233,-0.7859527469,-0.7859527469,-0.7860407233,-0.7860407233,-0.7861286998,-0.7862166762,-0.7862166762,-0.7861286998,-0.7859527469,-0.7858647704,-0.7858647704,-0.7858647704,-0.7858647704,-0.7858647704,-0.7860407233,-0.7860407233,-0.7861286998,-0.7861286998,-0.7859527469,-0.7858647704,-0.785776794,-0.7855128646,-0.7851609588,-0.7849849463,-0.7846330404,-0.7844570875,-0.7844570875,-0.7842811346,-0.7838411927,-0.7834892869,-0.7834892869,-0.783313334,-0.7828733921,-0.7826974392,-0.7827854156,-0.7826094627,-0.7826094627,-0.7827854156,-0.7828733921,-0.7825214863,-0.7822575569,-0.782081604,-0.7819056511,-0.7812018394,-0.7804100513,-0.779882133,-0.7794422507,-0.778914392,-0.7787384391,-0.7787384391,-0.7787384391,-0.7786504626,-0.7786504626,-0.7791783214,-0.7803220749,-0.7814657688,-0.7821695805,-0.7824335098,-0.7826974392,-0.7831373215,-0.7834892869,-0.7832252979,-0.7823455334,-0.7816417217,-0.7819936275,-0.783049345,-0.7835772634,-0.7837532163,-0.7841931581,-0.7838411927,-0.7822575569,-0.7817296982,-0.7827854156,-0.7828733921,-0.7822575569,-0.783049345,-0.7840172052,-0.7838411927,-0.7824335098,-0.781113863,-0.781113863,-0.7818176746,-0.7825214863,-0.783049345,-0.7832252979,-0.7831373215,-0.7827854156,-0.7825214863,-0.7823455334,-0.7821695805,-0.7826094627,-0.7834892869,-0.7836652398,-0.7834892869,-0.7829613686,-0.7825214863,-0.7824335098,-0.7826094627,-0.7826974392,-0.7828733921,-0.783049345,-0.7832252979,-0.783049345,-0.7826974392,-0.7827854156,-0.7827854156,-0.7827854156,-0.783049345,-0.783313334,-0.7832252979,-0.7832252979,-0.7834013104,-0.7834013104,-0.7834013104,-0.7837532163,-0.7840172052,-0.7840172052,-0.7841931581,-0.7846330404,-0.7852489352,-0.7856888175,-0.7859527469,-0.7860407233,-0.7861286998,-0.7861286998,-0.7860407233,-0.7858647704,-0.7858647704,-0.7860407233,-0.7861286998,-0.7860407233,-0.7859527469,-0.7860407233,-0.7860407233,-0.7861286998,-0.7861286998,-0.7860407233,-0.7859527469,-0.7859527469,-0.7859527469,-0.7859527469,-0.7860407233,-0.7860407233,-0.7860407233,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7861286998,-0.7861286998,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7861286998,-0.7861286998,-0.7862166762,-0.7861286998,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7866565585,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7863046527,-0.7860407233,-0.7861286998,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7861286998,-0.7859527469,-0.7859527469,-0.7859527469,-0.7859527469,-0.7859527469,-0.7859527469,-0.7859527469,-0.7860407233,-0.7862166762,-0.7862166762,-0.7861286998,-0.7861286998,-0.7862166762,-0.7861286998,-0.7861286998,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7860407233,-0.7858647704,-0.785776794,-0.785776794,-0.7858647704,-0.7859527469,-0.7860407233,-0.7862166762,-0.7861286998,-0.7861286998,-0.7861286998,-0.7860407233,-0.7860407233,-0.7859527469,-0.7858647704,-0.7856888175,-0.7856888175,-0.785776794,-0.785776794,-0.7858647704,-0.7858647704,-0.785776794,-0.7854248881,-0.7848969698,-0.784545064,-0.7844570875,-0.7844570875,-0.7843691111,-0.7840172052,-0.7834892869,-0.7828733921,-0.7822575569,-0.7819056511,-0.7819936275,-0.7819936275,-0.7818176746,-0.7818176746,-0.782081604,-0.7822575569,-0.7825214863,-0.7829613686,-0.783049345,-0.7826094627,-0.782081604,-0.7818176746,-0.7810258865,-0.779882133,-0.7788264155,-0.7780345082,-0.7776826024,-0.7775946259,-0.7772427201,-0.7767148614,-0.7760990262,-0.775483191,-0.7749552727,-0.7749552727,-0.7759230733,-0.7775946259,-0.7794422507,-0.7804100513,-0.7813777924,-0.7825214863,-0.783049345,-0.7831373215,-0.7831373215,-0.7828733921,-0.7827854156,-0.7831373215,-0.7834013104,-0.7839292288,-0.7844570875,-0.7838411927,-0.7816417217,-0.7807619572,-0.7819936275,-0.7823455334,-0.7817296982,-0.7826974392,-0.7834013104,-0.7828733921,-0.7814657688,-0.7806739807,-0.7812898159,-0.7825214863,-0.7832252979,-0.7834013104,-0.7827854156,-0.7819936275,-0.7816417217,-0.7814657688,-0.781113863,-0.7806739807,-0.7805860043,-0.7803220749,-0.7797941566,-0.7793542743,-0.778914392,-0.7787384391,-0.778914392,-0.7792662978,-0.779882133,-0.7805860043,-0.7812018394,-0.7818176746,-0.782081604,-0.7823455334,-0.7826094627,-0.7826094627,-0.7826094627,-0.7828733921,-0.7831373215,-0.7832252979,-0.7834013104,-0.7834013104,-0.7834013104,-0.7836652398,-0.7839292288,-0.7840172052,-0.7839292288,-0.7839292288,-0.7840172052,-0.7843691111,-0.7848089933,-0.7853369117,-0.785776794,-0.7858647704,-0.7858647704,-0.785776794,-0.7858647704,-0.7859527469,-0.7861286998,-0.7861286998,-0.7860407233,-0.7859527469,-0.7860407233,-0.7860407233,-0.7859527469,-0.7860407233,-0.7858647704,-0.7856888175,-0.785600841,-0.785776794,-0.7858647704,-0.7858647704,-0.7858647704,-0.7859527469,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7861286998,-0.7860407233,-0.7860407233,-0.7861286998,-0.7861286998,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7861286998,-0.7858647704,-0.7859527469,-0.7863046527,-0.7863046527,-0.7860407233,-0.7860407233,-0.7860407233,-0.7860407233,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7866565585,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7863926291,-0.7861286998,-0.7861286998,-0.7860407233,-0.7861286998,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7861286998,-0.7861286998,-0.7860407233,-0.7859527469,-0.7858647704,-0.785776794,-0.785776794,-0.785776794,-0.7856888175,-0.7856888175,-0.7858647704,-0.7861286998,-0.7862166762,-0.7862166762,-0.7863046527,-0.7862166762,-0.7861286998,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7859527469,-0.7859527469,-0.7858647704,-0.7858647704,-0.7859527469,-0.7860407233,-0.7861286998,-0.7861286998,-0.7859527469,-0.7859527469,-0.7859527469,-0.7860407233,-0.7859527469,-0.785776794,-0.785776794,-0.7856888175,-0.785600841,-0.785600841,-0.785776794,-0.785776794,-0.785600841,-0.7848969698,-0.7841931581,-0.7842811346,-0.784545064,-0.7841931581,-0.7832252979,-0.7819936275,-0.7808499336,-0.7804980278,-0.7807619572,-0.781113863,-0.7813777924,-0.7818176746,-0.7821695805,-0.7823455334,-0.7826974392,-0.7831373215,-0.7834892869,-0.7834013104,-0.7832252979,-0.7828733921,-0.7824335098,-0.7818176746,-0.7809379101,-0.7799701095,-0.7790903449,-0.7785624862,-0.7785624862,-0.7784745097,-0.7779465318,-0.7770667672,-0.7762749791,-0.7753952146,-0.7746033669,-0.7744274139,-0.7746913433,-0.7752192616,-0.7769787908,-0.7790903449,-0.7804980278,-0.7817296982,-0.7824335098,-0.7825214863,-0.7826094627,-0.7825214863,-0.7824335098,-0.783049345,-0.7839292288,-0.7842811346,-0.7834892869,-0.7816417217,-0.7790903449,-0.7782985568,-0.7796182036,-0.7808499336,-0.7812018394,-0.7815537453,-0.7819936275,-0.7822575569,-0.7819056511,-0.7812018394,-0.7812018394,-0.7818176746,-0.7826094627,-0.7828733921,-0.782081604,-0.7805860043,-0.7796182036,-0.7796182036,-0.7797061801,-0.7794422507,-0.7786504626,-0.7771547437,-0.7760110497,-0.7757471204,-0.7757471204,-0.7760990262,-0.7765389085,-0.7769787908,-0.777418673,-0.7779465318,-0.7786504626,-0.7794422507,-0.780146122,-0.7810258865,-0.7817296982,-0.782081604,-0.7822575569,-0.7825214863,-0.7826094627,-0.7826094627,-0.7827854156,-0.7826094627,-0.7824335098,-0.7827854156,-0.7834013104,-0.7837532163,-0.7838411927,-0.7838411927,-0.7839292288,-0.7840172052,-0.7842811346,-0.7847210169,-0.7850729823,-0.7854248881,-0.7856888175,-0.785776794,-0.7859527469,-0.7859527469,-0.7860407233,-0.7860407233,-0.7859527469,-0.7858647704,-0.7859527469,-0.7860407233,-0.7860407233,-0.7859527469,-0.785776794,-0.7856888175,-0.7856888175,-0.7859527469,-0.7859527469,-0.7859527469,-0.7859527469,-0.7859527469,-0.7860407233,-0.7860407233,-0.7861286998,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7861286998,-0.7860407233,-0.7860407233,-0.7860407233,-0.7861286998,-0.7862166762,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7860407233,-0.7858647704,-0.785776794,-0.7860407233,-0.7861286998,-0.7859527469,-0.7860407233,-0.7860407233,-0.7861286998,-0.7862166762,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7863046527,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7863926291,-0.7862166762,-0.7861286998,-0.7860407233,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7860407233,-0.7860407233,-0.7860407233,-0.7859527469,-0.7859527469,-0.7859527469,-0.7859527469,-0.7859527469,-0.7858647704,-0.785776794,-0.785776794,-0.7859527469,-0.7861286998,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7862166762,-0.7861286998,-0.7860407233,-0.7860407233,-0.7860407233,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7859527469,-0.785776794,-0.7858647704,-0.7859527469,-0.7859527469,-0.7859527469,-0.785776794,-0.7858647704,-0.7858647704,-0.7858647704,-0.785776794,-0.7854248881,-0.7849849463,-0.7842811346,-0.7840172052,-0.7841931581,-0.7838411927,-0.7824335098,-0.7810258865,-0.7802340984,-0.7797941566,-0.7802340984,-0.7810258865,-0.7817296982,-0.7821695805,-0.7826094627,-0.7831373215,-0.783313334,-0.7834013104,-0.7835772634,-0.7837532163,-0.7836652398,-0.7834013104,-0.7832252979,-0.7829613686,-0.7822575569,-0.7814657688,-0.7808499336,-0.7804100513,-0.7804100513,-0.7806739807,-0.7803220749,-0.7793542743,-0.7785624862,-0.7777705789,-0.7768028378,-0.7761870027,-0.7762749791,-0.7757471204,-0.7751312256,-0.7760990262,-0.7782985568,-0.7802340984,-0.7814657688,-0.7819936275,-0.782081604,-0.7819056511,-0.7815537453,-0.7818176746,-0.7827854156,-0.7836652398,-0.7834892869,-0.7817296982,-0.7788264155,-0.7758350968,-0.7750432491,-0.776450932,-0.7781224847,-0.7792662978,-0.7800580859,-0.7812018394,-0.7825214863,-0.7832252979,-0.7832252979,-0.7823455334,-0.7817296982,-0.7819936275,-0.7821695805,-0.7815537453,-0.780146122,-0.7791783214,-0.7790903449,-0.7790903449,-0.7786504626,-0.7782104611,-0.7775066495,-0.776450932,-0.7757471204,-0.7757471204,-0.7762749791,-0.7766268849,-0.7768908143,-0.7773306966,-0.7778585553,-0.7784745097,-0.7791783214,-0.7797941566,-0.7804100513,-0.781113863,-0.7818176746,-0.7823455334,-0.7825214863,-0.7826974392,-0.7826974392,-0.7826094627,-0.7822575569,-0.7819056511,-0.7819056511,-0.7823455334,-0.7826974392,-0.7825214863,-0.7823455334,-0.7826094627,-0.783313334,-0.7840172052,-0.7843691111,-0.7842811346,-0.7844570875,-0.7850729823,-0.7856888175,-0.7859527469,-0.7860407233,-0.7859527469,-0.7860407233,-0.7859527469,-0.7858647704,-0.7859527469,-0.7861286998,-0.7861286998,-0.7860407233,-0.7859527469,-0.7859527469,-0.7860407233,-0.7860407233,-0.7860407233,-0.7860407233,-0.7861286998,-0.7861286998,-0.7861286998,-0.7860407233,-0.7860407233,-0.7862166762,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7862166762,-0.7861286998,-0.7861286998,-0.7860407233,-0.7860407233,-0.7861286998,-0.7861286998,-0.7860407233,-0.7859527469,-0.785776794,-0.7856888175,-0.785776794,-0.7858647704,-0.7858647704,-0.7859527469,-0.7859527469,-0.7859527469,-0.7860407233,-0.7860407233,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7864806056,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7863926291,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7860407233,-0.7858647704,-0.7858647704,-0.7859527469,-0.7858647704,-0.7858647704,-0.7859527469,-0.7860407233,-0.7859527469,-0.7859527469,-0.7861286998,-0.7861286998,-0.7860407233,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7862166762,-0.7862166762,-0.7862166762,-0.7861286998,-0.7860407233,-0.7859527469,-0.7858647704,-0.7859527469,-0.7860407233,-0.7860407233,-0.7859527469,-0.7859527469,-0.7860407233,-0.7861286998,-0.7860407233,-0.7855128646,-0.7848969698,-0.7844570875,-0.7839292288,-0.7831373215,-0.7825214863,-0.7814657688,-0.7800580859,-0.7796182036,-0.7800580859,-0.7804100513,-0.781113863,-0.7819056511,-0.7826094627,-0.7829613686,-0.7832252979,-0.7836652398,-0.7839292288,-0.7837532163,-0.7836652398,-0.7838411927,-0.7838411927,-0.7835772634,-0.7834892869,-0.7834892869,-0.783049345,-0.7824335098,-0.7819936275,-0.7819056511,-0.7819056511,-0.7821695805,-0.7817296982,-0.7809379101,-0.7803220749,-0.7795302272,-0.7784745097,-0.7781224847,-0.7778585553,-0.7768908143,-0.7766268849,-0.777418673,-0.7786504626,-0.7804980278,-0.7819056511,-0.7819056511,-0.7816417217,-0.7814657688,-0.7812018394,-0.7812018394,-0.7812898159,-0.781113863,-0.7806739807,-0.7793542743,-0.7775066495,-0.7755711675,-0.7750432491,-0.7761870027,-0.7776826024,-0.7790023685,-0.7804980278,-0.7819056511,-0.7829613686,-0.7835772634,-0.7840172052,-0.7837532163,-0.7825214863,-0.7818176746,-0.7815537453,-0.781113863,-0.7806739807,-0.7802340984,-0.779882133,-0.7793542743,-0.7783865333,-0.7777705789,-0.7778585553,-0.7777705789,-0.777418673,-0.7776826024,-0.7787384391,-0.7792662978,-0.7790023685,-0.778914392,-0.7794422507,-0.7799701095,-0.7805860043,-0.7809379101,-0.7812018394,-0.7818176746,-0.7824335098,-0.7825214863,-0.7824335098,-0.7826094627,-0.7828733921,-0.7827854156,-0.7826094627,-0.7824335098,-0.7823455334,-0.7823455334,-0.7822575569,-0.7817296982,-0.7809379101,-0.7806739807,-0.7812898159,-0.7821695805,-0.783313334,-0.7839292288,-0.7840172052,-0.7842811346,-0.7848089933,-0.7855128646,-0.7858647704,-0.7858647704,-0.7858647704,-0.7859527469,-0.7859527469,-0.7859527469,-0.7860407233,-0.7860407233,-0.7860407233,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7862166762,-0.7862166762,-0.7860407233,-0.7860407233,-0.7862166762,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7862166762,-0.7861286998,-0.7862166762,-0.7861286998,-0.7860407233,-0.7860407233,-0.7861286998,-0.7861286998,-0.7860407233,-0.7859527469,-0.7858647704,-0.7859527469,-0.7860407233,-0.7860407233,-0.7858647704,-0.7859527469,-0.7861286998,-0.7860407233,-0.7860407233,-0.7861286998,-0.7861286998,-0.7862166762,-0.7862166762,-0.7861286998,-0.7860407233,-0.7860407233,-0.7861286998,-0.7862166762,-0.7861286998,-0.7861286998,-0.7864806056,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7863046527,-0.7860407233,-0.7861286998,-0.7861286998,-0.7860407233,-0.7861286998,-0.7862166762,-0.7860407233,-0.7859527469,-0.7858647704,-0.7859527469,-0.7861286998,-0.7859527469,-0.7859527469,-0.7860407233,-0.7859527469,-0.7861286998,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7861286998,-0.7861286998,-0.7862166762,-0.7862166762,-0.7861286998,-0.7861286998,-0.7860407233,-0.7860407233,-0.7860407233,-0.7860407233,-0.7860407233,-0.7862166762,-0.7861286998,-0.7861286998,-0.7859527469,-0.7859527469,-0.7861286998,-0.7861286998,-0.7861286998,-0.7862166762,-0.7862166762,-0.7860407233,-0.7854248881,-0.7847210169,-0.7842811346,-0.7837532163,-0.7825214863,-0.7810258865,-0.7799701095,-0.7794422507,-0.7793542743,-0.7797941566,-0.7804980278,-0.7812018394,-0.782081604,-0.7828733921,-0.7835772634,-0.7839292288,-0.7841051817,-0.7841931581,-0.7843691111,-0.7843691111,-0.7843691111,-0.7841931581,-0.7839292288,-0.7838411927,-0.7837532163,-0.7837532163,-0.7836652398,-0.7834013104,-0.783049345,-0.7827854156,-0.7825214863,-0.7821695805,-0.7818176746,-0.7815537453,-0.781113863,-0.7799701095,-0.7791783214,-0.778914392,-0.7782104611,-0.7773306966,-0.7776826024,-0.7783865333,-0.7793542743,-0.7813777924,-0.7826974392,-0.7821695805,-0.7815537453,-0.7814657688,-0.7813777924,-0.781113863,-0.7805860043,-0.7800580859,-0.7793542743,-0.7785624862,-0.7778585553,-0.7771547437,-0.7770667672,-0.7779465318,-0.7790903449,-0.7802340984,-0.7815537453,-0.783049345,-0.7841931581,-0.7843691111,-0.7843691111,-0.7842811346,-0.7835772634,-0.7826094627,-0.7816417217,-0.7807619572,-0.781113863,-0.7812898159,-0.7804980278,-0.7796182036,-0.7785624862,-0.7773306966,-0.7771547437,-0.7778585553,-0.7784745097,-0.7790023685,-0.779882133,-0.7804980278,-0.7804100513,-0.7803220749,-0.7807619572,-0.7812898159,-0.7814657688,-0.7816417217,-0.782081604,-0.7826094627,-0.7829613686,-0.783049345,-0.7831373215,-0.7831373215,-0.7827854156,-0.7826094627,-0.7826974392,-0.7826974392,-0.7825214863,-0.7825214863,-0.7823455334,-0.7817296982,-0.7808499336,-0.7803220749,-0.7800580859,-0.780146122,-0.7808499336,-0.7821695805,-0.7834013104,-0.7839292288,-0.7839292288,-0.7843691111,-0.7852489352,-0.7858647704,-0.7859527469,-0.7859527469,-0.7859527469,-0.7859527469,-0.7859527469,-0.7860407233,-0.7860407233,-0.7861286998,-0.7860407233,-0.7861286998,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7862166762,-0.7862166762,-0.7861286998,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7861286998,-0.7860407233,-0.7858647704,-0.7859527469,-0.7860407233,-0.7861286998,-0.7862166762,-0.7862166762,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7862166762,-0.7861286998,-0.7861286998,-0.7860407233,-0.7860407233,-0.7860407233,-0.7860407233,-0.7862166762,-0.7862166762,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7863926291,-0.7861286998,-0.7860407233,-0.7860407233,-0.7860407233,-0.7861286998,-0.7862166762,-0.7862166762,-0.7861286998,-0.7861286998,-0.7862166762,-0.7863046527,-0.7862166762,-0.7861286998,-0.7860407233,-0.7861286998,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7863046527,-0.7862166762,-0.7861286998,-0.7860407233,-0.7861286998,-0.7861286998,-0.7860407233,-0.7859527469,-0.7858647704,-0.7859527469,-0.7860407233,-0.7860407233,-0.7860407233,-0.7860407233,-0.7860407233,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7860407233,-0.7854248881,-0.784545064,-0.7839292288,-0.783049345,-0.7818176746,-0.7804980278,-0.7793542743,-0.7790903449,-0.7796182036,-0.780146122,-0.7805860043,-0.7813777924,-0.7821695805,-0.7828733921,-0.7835772634,-0.7841051817,-0.7844570875,-0.7847210169,-0.7847210169,-0.7847210169,-0.7848969698,-0.7850729823,-0.7847210169,-0.7842811346,-0.7841051817,-0.7840172052,-0.7838411927,-0.7837532163,-0.7834892869,-0.783049345,-0.7826094627,-0.7821695805,-0.7819056511,-0.7817296982,-0.7813777924,-0.7807619572,-0.7802340984,-0.7799701095,-0.7794422507,-0.7782104611,-0.7775946259,-0.7782985568,-0.7790023685,-0.7799701095,-0.7819936275,-0.783313334,-0.7826094627,-0.7815537453,-0.7816417217,-0.7819056511,-0.7817296982,-0.7815537453,-0.7813777924,-0.7805860043,-0.7795302272,-0.7790023685,-0.7788264155,-0.778914392,-0.7794422507,-0.7804100513,-0.7813777924,-0.7824335098,-0.7837532163,-0.7846330404,-0.7848969698,-0.7846330404,-0.7841051817,-0.7836652398,-0.783049345,-0.7818176746,-0.7802340984,-0.7806739807,-0.7819936275,-0.7812018394,-0.7793542743,-0.7782985568,-0.7769787908,-0.7765389085,-0.7778585553,-0.7793542743,-0.7799701095,-0.7800580859,-0.7805860043,-0.7809379101,-0.7810258865,-0.7813777924,-0.7819936275,-0.7824335098,-0.7826974392,-0.7829613686,-0.7832252979,-0.7834013104,-0.7836652398,-0.7839292288,-0.7839292288,-0.7834892869,-0.7832252979,-0.7832252979,-0.7828733921,-0.7827854156,-0.7828733921,-0.7825214863,-0.7816417217,-0.7808499336,-0.7804100513,-0.7799701095,-0.7797941566,-0.7797941566,-0.780146122,-0.7812018394,-0.7826974392,-0.7835772634,-0.7834892869,-0.7841931581,-0.7853369117,-0.7859527469,-0.7860407233,-0.7860407233,-0.7860407233,-0.7860407233,-0.7861286998,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7862166762,-0.7860407233,-0.7860407233,-0.7859527469,-0.7859527469,-0.7859527469,-0.7861286998,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7860407233,-0.7859527469,-0.7861286998,-0.7861286998,-0.7860407233,-0.7861286998,-0.7861286998,-0.7860407233,-0.7859527469,-0.7860407233,-0.7861286998,-0.7862166762,-0.7864806056,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7863926291,-0.7862166762,-0.7860407233,-0.7860407233,-0.7859527469,-0.7860407233,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7860407233,-0.7861286998,-0.7863046527,-0.7862166762,-0.7861286998,-0.7859527469,-0.7858647704,-0.7860407233,-0.7860407233,-0.7860407233,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7861286998,-0.7855128646,-0.7846330404,-0.7837532163,-0.7826094627,-0.7812898159,-0.7804980278,-0.7799701095,-0.7797061801,-0.7799701095,-0.7804980278,-0.7810258865,-0.7817296982,-0.7823455334,-0.7827854156,-0.7831373215,-0.7837532163,-0.7842811346,-0.784545064,-0.7848089933,-0.7848969698,-0.7848969698,-0.7849849463,-0.7850729823,-0.7848969698,-0.784545064,-0.7842811346,-0.7840172052,-0.7839292288,-0.7836652398,-0.783313334,-0.7828733921,-0.7823455334,-0.7819936275,-0.7818176746,-0.7815537453,-0.7812018394,-0.7809379101,-0.7807619572,-0.7803220749,-0.778914392,-0.7770667672,-0.7768028378,-0.7779465318,-0.7788264155,-0.7795302272,-0.7817296982,-0.7834892869,-0.7826974392,-0.7813777924,-0.7813777924,-0.7819056511,-0.7822575569,-0.7822575569,-0.782081604,-0.7814657688,-0.7804100513,-0.7799701095,-0.780146122,-0.7806739807,-0.7812018394,-0.7819056511,-0.7825214863,-0.7826974392,-0.7828733921,-0.783313334,-0.7834892869,-0.7834013104,-0.7832252979,-0.7828733921,-0.7822575569,-0.7812018394,-0.7802340984,-0.7805860043,-0.7815537453,-0.7809379101,-0.7795302272,-0.7790903449,-0.7782104611,-0.7768908143,-0.7775066495,-0.7790903449,-0.7802340984,-0.7804980278,-0.7809379101,-0.7815537453,-0.7818176746,-0.7819936275,-0.7823455334,-0.7829613686,-0.7834892869,-0.7836652398,-0.7835772634,-0.7835772634,-0.7837532163,-0.7840172052,-0.7841051817,-0.7841051817,-0.7840172052,-0.7837532163,-0.7835772634,-0.7834892869,-0.7831373215,-0.7825214863,-0.7818176746,-0.781113863,-0.7805860043,-0.7799701095,-0.7794422507,-0.7795302272,-0.7797061801,-0.7795302272,-0.780146122,-0.7819936275,-0.7832252979,-0.7835772634,-0.7841931581,-0.7853369117,-0.7859527469,-0.7861286998,-0.7862166762,-0.7862166762,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7861286998,-0.7862166762,-0.7862166762,-0.7861286998,-0.7861286998,-0.7862166762,-0.7862166762,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7861286998,-0.7860407233,-0.7860407233,-0.7860407233,-0.7860407233,-0.7860407233,-0.7860407233,-0.7860407233,-0.7861286998,-0.7862166762,-0.7862166762,-0.7863046527,-0.7862166762,-0.7860407233,-0.7860407233,-0.7861286998,-0.7861286998,-0.7861286998,-0.7863046527,-0.7863046527,-0.7859527469,-0.7860407233,-0.7862166762,-0.7861286998,-0.7861286998,-0.7864806056,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863046527,-0.7860407233,-0.7860407233,-0.7861286998,-0.7860407233,-0.7859527469,-0.7860407233,-0.7860407233,-0.7861286998,-0.7861286998,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7861286998,-0.7860407233,-0.7860407233,-0.7862166762,-0.7863046527,-0.7862166762,-0.7860407233,-0.7859527469,-0.7860407233,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.785776794,-0.7848089933,-0.7839292288,-0.7825214863,-0.7806739807,-0.7803220749,-0.7808499336,-0.7807619572,-0.7809379101,-0.7809379101,-0.7810258865,-0.7817296982,-0.7823455334,-0.7825214863,-0.7827854156,-0.7832252979,-0.7839292288,-0.7843691111,-0.784545064,-0.7847210169,-0.7848969698,-0.7850729823,-0.7850729823,-0.7849849463,-0.7848969698,-0.7847210169,-0.7844570875,-0.7841931581,-0.7841051817,-0.7839292288,-0.7835772634,-0.783313334,-0.783049345,-0.7826094627,-0.7819936275,-0.7812898159,-0.7812898159,-0.7812898159,-0.7807619572,-0.7793542743,-0.7769787908,-0.7746913433,-0.7747793198,-0.776450932,-0.7775946259,-0.7782985568,-0.7812898159,-0.7835772634,-0.7826974392,-0.7814657688,-0.7812018394,-0.7812018394,-0.7816417217,-0.782081604,-0.782081604,-0.7817296982,-0.7814657688,-0.7814657688,-0.7816417217,-0.7823455334,-0.783049345,-0.7834013104,-0.7832252979,-0.7826094627,-0.782081604,-0.7818176746,-0.7815537453,-0.7817296982,-0.782081604,-0.7822575569,-0.7819056511,-0.7810258865,-0.7804100513,-0.7810258865,-0.7810258865,-0.7795302272,-0.7785624862,-0.7786504626,-0.7782104611,-0.7772427201,-0.7773306966,-0.7787384391,-0.7802340984,-0.781113863,-0.7817296982,-0.782081604,-0.7824335098,-0.7828733921,-0.783049345,-0.7832252979,-0.7835772634,-0.7839292288,-0.7838411927,-0.7837532163,-0.7837532163,-0.7840172052,-0.7841051817,-0.7841051817,-0.7841931581,-0.7842811346,-0.7841931581,-0.7838411927,-0.7832252979,-0.7826974392,-0.7821695805,-0.7816417217,-0.7812018394,-0.7804100513,-0.7796182036,-0.7794422507,-0.7797941566,-0.7800580859,-0.7797061801,-0.7799701095,-0.7814657688,-0.7828733921,-0.7835772634,-0.7842811346,-0.7853369117,-0.7860407233,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7862166762,-0.7860407233,-0.7860407233,-0.7862166762,-0.7863046527,-0.7862166762,-0.7861286998,-0.7862166762,-0.7862166762,-0.7863046527,-0.7862166762,-0.7859527469,-0.7860407233,-0.7861286998,-0.7860407233,-0.7859527469,-0.7860407233,-0.7861286998,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7864806056,-0.7863046527,-0.7861286998,-0.7863046527,-0.7863046527,-0.7861286998,-0.7861286998,-0.7864806056,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7861286998,-0.7858647704,-0.7858647704,-0.7861286998,-0.7862166762,-0.7862166762,-0.7861286998,-0.7860407233,-0.7861286998,-0.7861286998,-0.7860407233,-0.7861286998,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7861286998,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7861286998,-0.7859527469,-0.7858647704,-0.7858647704,-0.7860407233,-0.7862166762,-0.7861286998,-0.7860407233,-0.7860407233,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7860407233,-0.7851609588,-0.7841931581,-0.7831373215,-0.781113863,-0.780146122,-0.7812018394,-0.7819056511,-0.7818176746,-0.7816417217,-0.7813777924,-0.7813777924,-0.7819056511,-0.7823455334,-0.7825214863,-0.7828733921,-0.7834892869,-0.7839292288,-0.7842811346,-0.784545064,-0.7847210169,-0.7848969698,-0.7851609588,-0.7853369117,-0.7850729823,-0.7847210169,-0.7846330404,-0.7846330404,-0.784545064,-0.784545064,-0.7844570875,-0.7841931581,-0.7841051817,-0.7839292288,-0.783313334,-0.7822575569,-0.7814657688,-0.7812898159,-0.781113863,-0.780146122,-0.7778585553,-0.7749552727,-0.7730197906,-0.7733716965,-0.7752192616,-0.7765389085,-0.7779465318,-0.7814657688,-0.7835772634,-0.7826094627,-0.7813777924,-0.7809379101,-0.7805860043,-0.7807619572,-0.7813777924,-0.7819056511,-0.7819056511,-0.7821695805,-0.7822575569,-0.782081604,-0.7826974392,-0.7836652398,-0.783313334,-0.7822575569,-0.7819936275,-0.7819056511,-0.7812898159,-0.7806739807,-0.7806739807,-0.7812018394,-0.7818176746,-0.7817296982,-0.781113863,-0.7804980278,-0.781113863,-0.781113863,-0.7791783214,-0.7773306966,-0.7768908143,-0.7762749791,-0.7753072381,-0.7758350968,-0.7775946259,-0.7795302272,-0.7809379101,-0.7818176746,-0.7823455334,-0.7827854156,-0.783313334,-0.7837532163,-0.7840172052,-0.7841931581,-0.7842811346,-0.7841931581,-0.7840172052,-0.7840172052,-0.7841931581,-0.7844570875,-0.7843691111,-0.7844570875,-0.7846330404,-0.784545064,-0.7841051817,-0.7836652398,-0.783313334,-0.7828733921,-0.7824335098,-0.7819936275,-0.7813777924,-0.7806739807,-0.7799701095,-0.7797941566,-0.7804980278,-0.7808499336,-0.780146122,-0.7799701095,-0.781113863,-0.7826974392,-0.7837532163,-0.7844570875,-0.7854248881,-0.7861286998,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7861286998,-0.7862166762,-0.7861286998,-0.7859527469,-0.7861286998,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7861286998,-0.7861286998,-0.7862166762,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7862166762,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7862166762,-0.7862166762,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7860407233,-0.785776794,-0.785776794,-0.7859527469,-0.7861286998,-0.7861286998,-0.7859527469,-0.7860407233,-0.7861286998,-0.7862166762,-0.7862166762,-0.7862166762,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7860407233,-0.7858647704,-0.7856888175,-0.7855128646,-0.7856888175,-0.7860407233,-0.7861286998,-0.7861286998,-0.7862166762,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7861286998,-0.7853369117,-0.7843691111,-0.7834892869,-0.7818176746,-0.7805860043,-0.7813777924,-0.7823455334,-0.7824335098,-0.7822575569,-0.7819056511,-0.7814657688,-0.7813777924,-0.7816417217,-0.7823455334,-0.7829613686,-0.783313334,-0.7836652398,-0.7838411927,-0.7841051817,-0.7844570875,-0.7846330404,-0.7848089933,-0.7851609588,-0.7852489352,-0.7849849463,-0.7846330404,-0.7847210169,-0.7848969698,-0.7848089933,-0.7846330404,-0.784545064,-0.784545064,-0.7843691111,-0.7841931581,-0.7835772634,-0.7826094627,-0.7813777924,-0.7805860043,-0.7802340984,-0.778914392,-0.7761870027,-0.7737236023,-0.7726678848,-0.7735476494,-0.7753952146,-0.7766268849,-0.7783865333,-0.7814657688,-0.7828733921,-0.7819056511,-0.7810258865,-0.7805860043,-0.7803220749,-0.7803220749,-0.7806739807,-0.7809379101,-0.7812018394,-0.7816417217,-0.7816417217,-0.7813777924,-0.7819936275,-0.783313334,-0.783313334,-0.7817296982,-0.7812018394,-0.7813777924,-0.7809379101,-0.7802340984,-0.7800580859,-0.7804100513,-0.7808499336,-0.7808499336,-0.7804980278,-0.7800580859,-0.7803220749,-0.7808499336,-0.7797061801,-0.7773306966,-0.7761870027,-0.7749552727,-0.77328372,-0.7737236023,-0.7757471204,-0.7777705789,-0.7795302272,-0.7809379101,-0.7817296982,-0.7826974392,-0.7835772634,-0.7841931581,-0.784545064,-0.7848089933,-0.7847210169,-0.784545064,-0.7844570875,-0.7842811346,-0.7844570875,-0.7846330404,-0.7846330404,-0.7847210169,-0.7848089933,-0.7846330404,-0.7842811346,-0.7839292288,-0.7836652398,-0.783313334,-0.7829613686,-0.7826094627,-0.7819056511,-0.7812898159,-0.7806739807,-0.7802340984,-0.7804980278,-0.7812018394,-0.7813777924,-0.7806739807,-0.780146122,-0.7809379101,-0.7826094627,-0.7836652398,-0.784545064,-0.785600841,-0.7860407233,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7861286998,-0.7860407233,-0.7860407233,-0.7861286998,-0.7862166762,-0.7861286998,-0.7861286998,-0.7861286998,-0.7862166762,-0.7862166762,-0.7861286998,-0.7860407233,-0.7859527469,-0.7860407233,-0.7861286998,-0.7862166762,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7862166762,-0.7863046527,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7861286998,-0.7859527469,-0.7856888175,-0.785600841,-0.785776794,-0.7859527469,-0.7858647704,-0.7859527469,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863046527,-0.7861286998,-0.7862166762,-0.7863926291,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7862166762,-0.7859527469,-0.785776794,-0.7856888175,-0.7855128646,-0.7855128646,-0.7858647704,-0.7860407233,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.785600841,-0.7844570875,-0.7836652398,-0.7824335098,-0.7809379101,-0.7813777924,-0.7827854156,-0.7827854156,-0.7821695805,-0.7819936275,-0.7817296982,-0.7812898159,-0.7809379101,-0.7812898159,-0.782081604,-0.7827854156,-0.783313334,-0.7835772634,-0.7836652398,-0.7839292288,-0.7842811346,-0.7846330404,-0.7848969698,-0.7851609588,-0.7852489352,-0.7848969698,-0.7847210169,-0.7848969698,-0.7848969698,-0.7847210169,-0.784545064,-0.784545064,-0.784545064,-0.7842811346,-0.7841051817,-0.7835772634,-0.7821695805,-0.7804980278,-0.7795302272,-0.7787384391,-0.7770667672,-0.7743394375,-0.7724038363,-0.7722278833,-0.7740755081,-0.7760990262,-0.7769787908,-0.7785624862,-0.7812898159,-0.7821695805,-0.7812018394,-0.7805860043,-0.7802340984,-0.780146122,-0.7802340984,-0.7804100513,-0.7804100513,-0.7805860043,-0.7809379101,-0.7810258865,-0.7812898159,-0.7818176746,-0.7827854156,-0.783049345,-0.7818176746,-0.7807619572,-0.7807619572,-0.7807619572,-0.7802340984,-0.779882133,-0.7799701095,-0.7803220749,-0.7804980278,-0.780146122,-0.7796182036,-0.7796182036,-0.7802340984,-0.7797061801,-0.7777705789,-0.776450932,-0.7751312256,-0.7735476494,-0.7733716965,-0.7745153904,-0.7760110497,-0.7779465318,-0.7797941566,-0.7810258865,-0.7821695805,-0.7834013104,-0.7842811346,-0.7847210169,-0.7848969698,-0.7847210169,-0.7847210169,-0.7846330404,-0.784545064,-0.7846330404,-0.7848089933,-0.7846330404,-0.784545064,-0.7847210169,-0.7846330404,-0.7842811346,-0.7839292288,-0.7835772634,-0.7831373215,-0.7828733921,-0.7824335098,-0.7817296982,-0.781113863,-0.7807619572,-0.7806739807,-0.7808499336,-0.7813777924,-0.7818176746,-0.7819056511,-0.7812898159,-0.7804100513,-0.7810258865,-0.7826094627,-0.7837532163,-0.7846330404,-0.7855128646,-0.7861286998,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7861286998,-0.7860407233,-0.7859527469,-0.7859527469,-0.7860407233,-0.7861286998,-0.7862166762,-0.7861286998,-0.7861286998,-0.7862166762,-0.7862166762,-0.7860407233,-0.7860407233,-0.7860407233,-0.7859527469,-0.7860407233,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7862166762,-0.7861286998,-0.7862166762,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7861286998,-0.7859527469,-0.785600841,-0.785600841,-0.785776794,-0.7858647704,-0.7859527469,-0.7860407233,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7862166762,-0.7862166762,-0.7863046527,-0.7861286998,-0.7861286998,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7862166762,-0.7862166762,-0.7863046527,-0.7860407233,-0.785776794,-0.7856888175,-0.7855128646,-0.7855128646,-0.785776794,-0.7861286998,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7858647704,-0.7846330404,-0.7836652398,-0.783049345,-0.7814657688,-0.781113863,-0.7826094627,-0.783313334,-0.7824335098,-0.7819056511,-0.7819056511,-0.7815537453,-0.7807619572,-0.7805860043,-0.781113863,-0.7817296982,-0.7822575569,-0.7827854156,-0.7832252979,-0.7834013104,-0.7836652398,-0.7841931581,-0.7847210169,-0.7848969698,-0.7849849463,-0.7851609588,-0.7848969698,-0.7848089933,-0.7849849463,-0.7848969698,-0.7846330404,-0.784545064,-0.784545064,-0.784545064,-0.7842811346,-0.7836652398,-0.7826974392,-0.7812898159,-0.7800580859,-0.7790023685,-0.7777705789,-0.7762749791,-0.7737236023,-0.7718759775,-0.7724038363,-0.7746913433,-0.776450932,-0.7771547437,-0.778914392,-0.7813777924,-0.7818176746,-0.7809379101,-0.7803220749,-0.779882133,-0.779882133,-0.7800580859,-0.780146122,-0.7802340984,-0.7804980278,-0.7806739807,-0.7807619572,-0.7810258865,-0.781113863,-0.7818176746,-0.7825214863,-0.7814657688,-0.780146122,-0.7802340984,-0.7806739807,-0.7804100513,-0.7800580859,-0.7799701095,-0.7803220749,-0.7805860043,-0.7802340984,-0.7794422507,-0.7793542743,-0.7797061801,-0.7793542743,-0.7780345082,-0.7768908143,-0.7758350968,-0.7745153904,-0.7735476494,-0.7738115788,-0.7750432491,-0.7768028378,-0.7788264155,-0.7805860043,-0.7819056511,-0.7831373215,-0.7841931581,-0.7848089933,-0.7848089933,-0.7846330404,-0.7846330404,-0.784545064,-0.784545064,-0.7847210169,-0.7846330404,-0.784545064,-0.7846330404,-0.7847210169,-0.7847210169,-0.7843691111,-0.7837532163,-0.783313334,-0.783049345,-0.7827854156,-0.7824335098,-0.7818176746,-0.7813777924,-0.7810258865,-0.7806739807,-0.7807619572,-0.7814657688,-0.7822575569,-0.7824335098,-0.7823455334,-0.7817296982,-0.7808499336,-0.7814657688,-0.783049345,-0.7839292288,-0.7847210169,-0.785776794,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7860407233,-0.7862166762,-0.7863046527,-0.7862166762,-0.7861286998,-0.7860407233,-0.7861286998,-0.7861286998,-0.7860407233,-0.7860407233,-0.7860407233,-0.7860407233,-0.7861286998,-0.7861286998,-0.7861286998,-0.7860407233,-0.7860407233,-0.7860407233,-0.7859527469,-0.7860407233,-0.7860407233,-0.7861286998,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7861286998,-0.7860407233,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7862166762,-0.7862166762,-0.7861286998,-0.7861286998,-0.7860407233,-0.7861286998,-0.7864806056,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7861286998,-0.7859527469,-0.7856888175,-0.7855128646,-0.7856888175,-0.7858647704,-0.7859527469,-0.7860407233,-0.7861286998,-0.7863046527,-0.7863926291,-0.7863926291,-0.7862166762,-0.7861286998,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7861286998,-0.7860407233,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863046527,-0.7860407233,-0.785776794,-0.7856888175,-0.7855128646,-0.785600841,-0.7859527469,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7861286998,-0.7850729823,-0.7835772634,-0.7828733921,-0.7819056511,-0.7810258865,-0.782081604,-0.7836652398,-0.7834892869,-0.7823455334,-0.782081604,-0.7822575569,-0.7813777924,-0.7804100513,-0.7802340984,-0.7807619572,-0.7815537453,-0.782081604,-0.7824335098,-0.7828733921,-0.783313334,-0.7834892869,-0.7840172052,-0.784545064,-0.7848969698,-0.7850729823,-0.7851609588,-0.7850729823,-0.7850729823,-0.7850729823,-0.7848969698,-0.784545064,-0.7842811346,-0.7841931581,-0.7841931581,-0.7838411927,-0.7829613686,-0.7817296982,-0.7804980278,-0.779882133,-0.7792662978,-0.7782104611,-0.7763629556,-0.7735476494,-0.771963954,-0.7731077671,-0.7753952146,-0.7765389085,-0.7772427201,-0.7795302272,-0.7817296982,-0.7818176746,-0.7809379101,-0.7800580859,-0.7797941566,-0.779882133,-0.7799701095,-0.7800580859,-0.7803220749,-0.7804980278,-0.7802340984,-0.7803220749,-0.7804980278,-0.7804100513,-0.7812898159,-0.7819936275,-0.7807619572,-0.7797061801,-0.7799701095,-0.7803220749,-0.7802340984,-0.7800580859,-0.7800580859,-0.7804980278,-0.7807619572,-0.7804100513,-0.7796182036,-0.7792662978,-0.7794422507,-0.7791783214,-0.7781224847,-0.7771547437,-0.776450932,-0.7749552727,-0.77328372,-0.7730197906,-0.7744274139,-0.7761870027,-0.7782985568,-0.7805860043,-0.782081604,-0.783049345,-0.7841051817,-0.7846330404,-0.784545064,-0.784545064,-0.784545064,-0.7844570875,-0.784545064,-0.7846330404,-0.7846330404,-0.7847210169,-0.7848969698,-0.7848089933,-0.7847210169,-0.7844570875,-0.7839292288,-0.7834013104,-0.783049345,-0.7827854156,-0.7824335098,-0.7819936275,-0.7816417217,-0.7812018394,-0.7804980278,-0.7803220749,-0.7810258865,-0.7821695805,-0.7825214863,-0.7826094627,-0.7828733921,-0.7819936275,-0.781113863,-0.7819056511,-0.7831373215,-0.7839292288,-0.7850729823,-0.7860407233,-0.7863046527,-0.7862166762,-0.7860407233,-0.7860407233,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7859527469,-0.7860407233,-0.7861286998,-0.7860407233,-0.7860407233,-0.7860407233,-0.7859527469,-0.7859527469,-0.7859527469,-0.7859527469,-0.7860407233,-0.7860407233,-0.7860407233,-0.7861286998,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7860407233,-0.7858647704,-0.7859527469,-0.7860407233,-0.7860407233,-0.7861286998,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7862166762,-0.7861286998,-0.7861286998,-0.7861286998,-0.7864806056,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7861286998,-0.7858647704,-0.785600841,-0.7854248881,-0.785776794,-0.7859527469,-0.7859527469,-0.7860407233,-0.7861286998,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7861286998,-0.7860407233,-0.7860407233,-0.7861286998,-0.7861286998,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7859527469,-0.785776794,-0.7856888175,-0.785600841,-0.7856888175,-0.7858647704,-0.7859527469,-0.7859527469,-0.7859527469,-0.7861286998,-0.7862166762,-0.7863046527,-0.785776794,-0.7840172052,-0.7826974392,-0.782081604,-0.7809379101,-0.7813777924,-0.7834892869,-0.784545064,-0.7837532163,-0.7825214863,-0.7822575569,-0.7823455334,-0.7812898159,-0.780146122,-0.7797941566,-0.7803220749,-0.781113863,-0.7815537453,-0.7818176746,-0.7824335098,-0.7831373215,-0.7834892869,-0.7836652398,-0.7841051817,-0.7846330404,-0.7849849463,-0.7849849463,-0.7849849463,-0.7850729823,-0.7849849463,-0.7848969698,-0.784545064,-0.7841051817,-0.7838411927,-0.7836652398,-0.7831373215,-0.7821695805,-0.7807619572,-0.7794422507,-0.7792662978,-0.7795302272,-0.7784745097,-0.7753952146,-0.7724038363,-0.7720519304,-0.7739875317,-0.7760110497,-0.7769787908,-0.7777705789,-0.7802340984,-0.782081604,-0.7819936275,-0.7810258865,-0.780146122,-0.779882133,-0.780146122,-0.7802340984,-0.7803220749,-0.7803220749,-0.780146122,-0.7797941566,-0.7797941566,-0.7799701095,-0.7805860043,-0.7818176746,-0.7817296982,-0.7802340984,-0.7796182036,-0.779882133,-0.7800580859,-0.7800580859,-0.7799701095,-0.780146122,-0.7805860043,-0.7806739807,-0.7805860043,-0.780146122,-0.7796182036,-0.7795302272,-0.7791783214,-0.7780345082,-0.7773306966,-0.7769787908,-0.7753072381,-0.7727558613,-0.771963954,-0.7735476494,-0.7763629556,-0.778914392,-0.7808499336,-0.7819056511,-0.7826974392,-0.7837532163,-0.7843691111,-0.7842811346,-0.7843691111,-0.7844570875,-0.784545064,-0.7846330404,-0.784545064,-0.7846330404,-0.7849849463,-0.7850729823,-0.7848969698,-0.7847210169,-0.7843691111,-0.7840172052,-0.7835772634,-0.7831373215,-0.7827854156,-0.7824335098,-0.7819056511,-0.7812898159,-0.7804980278,-0.7797941566,-0.7799701095,-0.7805860043,-0.7813777924,-0.7817296982,-0.7822575569,-0.7832252979,-0.7831373215,-0.7818176746,-0.781113863,-0.7821695805,-0.783313334,-0.7844570875,-0.785600841,-0.7860407233,-0.7861286998,-0.7861286998,-0.7861286998,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7861286998,-0.7861286998,-0.7860407233,-0.7859527469,-0.7860407233,-0.7860407233,-0.7860407233,-0.7859527469,-0.7859527469,-0.7858647704,-0.7858647704,-0.7860407233,-0.7861286998,-0.7861286998,-0.7861286998,-0.7860407233,-0.7861286998,-0.7863046527,-0.7863926291,-0.7863926291,-0.7862166762,-0.7861286998,-0.7860407233,-0.7859527469,-0.7860407233,-0.7859527469,-0.7859527469,-0.7861286998,-0.7862166762,-0.7861286998,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7861286998,-0.7861286998,-0.7861286998,-0.7864806056,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7863926291,-0.7859527469,-0.785776794,-0.7855128646,-0.7853369117,-0.7855128646,-0.7856888175,-0.7858647704,-0.7859527469,-0.7861286998,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7860407233,-0.7860407233,-0.7860407233,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7859527469,-0.7859527469,-0.7858647704,-0.7856888175,-0.785600841,-0.785776794,-0.7859527469,-0.7859527469,-0.7859527469,-0.7860407233,-0.7862166762,-0.7862166762,-0.7849849463,-0.7826094627,-0.7817296982,-0.7813777924,-0.7807619572,-0.7826094627,-0.7848089933,-0.7850729823,-0.7839292288,-0.7825214863,-0.7821695805,-0.7826094627,-0.7816417217,-0.780146122,-0.7796182036,-0.7803220749,-0.7804100513,-0.780146122,-0.7804980278,-0.7816417217,-0.7826094627,-0.7829613686,-0.7832252979,-0.7837532163,-0.7841931581,-0.784545064,-0.7846330404,-0.7844570875,-0.7844570875,-0.7847210169,-0.7847210169,-0.7844570875,-0.7839292288,-0.7836652398,-0.7832252979,-0.7824335098,-0.7812018394,-0.7797941566,-0.7788264155,-0.7790023685,-0.7790023685,-0.7771547437,-0.7731957436,-0.7710841894,-0.7723158598,-0.7746913433,-0.7765389085,-0.7775066495,-0.7786504626,-0.7808499336,-0.782081604,-0.7816417217,-0.7806739807,-0.7797941566,-0.7795302272,-0.779882133,-0.7803220749,-0.7804980278,-0.7803220749,-0.779882133,-0.7796182036,-0.7794422507,-0.7797061801,-0.7814657688,-0.7828733921,-0.7818176746,-0.7800580859,-0.7797061801,-0.7799701095,-0.7799701095,-0.780146122,-0.7804100513,-0.7804980278,-0.7804980278,-0.7805860043,-0.7810258865,-0.7810258865,-0.7802340984,-0.7797941566,-0.7792662978,-0.7781224847,-0.7775946259,-0.7775946259,-0.7759230733,-0.7730197906,-0.7714360952,-0.7730197906,-0.7768028378,-0.7794422507,-0.7804100513,-0.7809379101,-0.7816417217,-0.783049345,-0.7841051817,-0.7841931581,-0.7842811346,-0.784545064,-0.7846330404,-0.7846330404,-0.7846330404,-0.7846330404,-0.7848089933,-0.7848969698,-0.7848969698,-0.7846330404,-0.7840172052,-0.7836652398,-0.7835772634,-0.7832252979,-0.7827854156,-0.7822575569,-0.7814657688,-0.7804100513,-0.7793542743,-0.7790023685,-0.7795302272,-0.7804100513,-0.7810258865,-0.781113863,-0.7816417217,-0.7828733921,-0.7835772634,-0.783049345,-0.7816417217,-0.7815537453,-0.7826974392,-0.7838411927,-0.7848969698,-0.785600841,-0.7858647704,-0.7860407233,-0.7861286998,-0.7862166762,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7860407233,-0.7860407233,-0.7858647704,-0.7858647704,-0.7858647704,-0.785776794,-0.7858647704,-0.7860407233,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7863046527,-0.7863926291,-0.7863046527,-0.7862166762,-0.7861286998,-0.7860407233,-0.7860407233,-0.7860407233,-0.7859527469,-0.7860407233,-0.7862166762,-0.7862166762,-0.7861286998,-0.7860407233,-0.7860407233,-0.7862166762,-0.7863046527,-0.7861286998,-0.7861286998,-0.7862166762,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7863926291,-0.7859527469,-0.7858647704,-0.785776794,-0.7856888175,-0.7855128646,-0.7855128646,-0.7856888175,-0.7859527469,-0.7861286998,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863046527,-0.7861286998,-0.7860407233,-0.7860407233,-0.7860407233,-0.7861286998,-0.7862166762,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7861286998,-0.7861286998,-0.7861286998,-0.7860407233,-0.7858647704,-0.785776794,-0.785776794,-0.7858647704,-0.7860407233,-0.7860407233,-0.7859527469,-0.7861286998,-0.785600841,-0.7835772634,-0.7816417217,-0.7812898159,-0.7807619572,-0.7812018394,-0.7838411927,-0.7851609588,-0.7850729823,-0.7841931581,-0.7826974392,-0.7821695805,-0.7828733921,-0.7825214863,-0.7806739807,-0.7795302272,-0.7799701095,-0.7800580859,-0.7793542743,-0.7796182036,-0.7808499336,-0.7817296982,-0.7822575569,-0.7826974392,-0.7831373215,-0.7834892869,-0.7840172052,-0.7843691111,-0.7841931581,-0.7841931581,-0.7844570875,-0.7844570875,-0.7841931581,-0.7836652398,-0.783313334,-0.7826974392,-0.7816417217,-0.7802340984,-0.7790903449,-0.7786504626,-0.7787384391,-0.7775946259,-0.774251461,-0.7709082365,-0.7707322836,-0.7727558613,-0.7753072381,-0.7771547437,-0.7782104611,-0.7796182036,-0.7814657688,-0.7816417217,-0.7805860043,-0.7797061801,-0.7790903449,-0.7790023685,-0.7794422507,-0.780146122,-0.7805860043,-0.7804980278,-0.7799701095,-0.7796182036,-0.7790903449,-0.7794422507,-0.7822575569,-0.7837532163,-0.7819056511,-0.780146122,-0.7800580859,-0.780146122,-0.780146122,-0.7803220749,-0.7806739807,-0.7807619572,-0.7803220749,-0.7802340984,-0.781113863,-0.7818176746,-0.781113863,-0.7804100513,-0.779882133,-0.7788264155,-0.7780345082,-0.7777705789,-0.7763629556,-0.7735476494,-0.7716120481,-0.7730197906,-0.7769787908,-0.7790903449,-0.7794422507,-0.7799701095,-0.7807619572,-0.7821695805,-0.7836652398,-0.7841051817,-0.7842811346,-0.7844570875,-0.784545064,-0.784545064,-0.784545064,-0.7844570875,-0.784545064,-0.784545064,-0.7843691111,-0.7840172052,-0.7834892869,-0.783313334,-0.783313334,-0.7829613686,-0.7824335098,-0.7816417217,-0.7805860043,-0.7796182036,-0.7787384391,-0.7783865333,-0.7790023685,-0.7802340984,-0.7812018394,-0.7813777924,-0.7815537453,-0.7826974392,-0.7838411927,-0.7840172052,-0.7827854156,-0.7817296982,-0.7822575569,-0.783049345,-0.7840172052,-0.7850729823,-0.7856888175,-0.7859527469,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7862166762,-0.7861286998,-0.7861286998,-0.7861286998,-0.7859527469,-0.7859527469,-0.7858647704,-0.785776794,-0.785776794,-0.785776794,-0.7859527469,-0.7859527469,-0.7859527469,-0.7860407233,-0.7861286998,-0.7860407233,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863046527,-0.7860407233,-0.7859527469,-0.7859527469,-0.7859527469,-0.7860407233,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7860407233,-0.7860407233,-0.7860407233,-0.7864806056,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7863926291,-0.7860407233,-0.7859527469,-0.785776794,-0.7858647704,-0.7859527469,-0.785600841,-0.785600841,-0.7859527469,-0.7861286998,-0.7860407233,-0.7859527469,-0.7861286998,-0.7862166762,-0.7862166762,-0.7861286998,-0.7859527469,-0.7860407233,-0.7861286998,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7861286998,-0.7861286998,-0.7860407233,-0.7861286998,-0.7861286998,-0.7860407233,-0.7858647704,-0.785776794,-0.7856888175,-0.785776794,-0.7859527469,-0.7859527469,-0.7860407233,-0.7859527469,-0.7847210169,-0.782081604,-0.7809379101,-0.781113863,-0.7808499336,-0.782081604,-0.7841051817,-0.7846330404,-0.7846330404,-0.7843691111,-0.7834892869,-0.7831373215,-0.7835772634,-0.7834013104,-0.7814657688,-0.7794422507,-0.7793542743,-0.7796182036,-0.7790903449,-0.7790903449,-0.7802340984,-0.7810258865,-0.7814657688,-0.7819936275,-0.7824335098,-0.7828733921,-0.7834892869,-0.7838411927,-0.7839292288,-0.7839292288,-0.7837532163,-0.7835772634,-0.7835772634,-0.7831373215,-0.7825214863,-0.7818176746,-0.7805860043,-0.7794422507,-0.778914392,-0.7787384391,-0.777418673,-0.7747793198,-0.7717000246,-0.7701163888,-0.7710841894,-0.77328372,-0.7759230733,-0.7778585553,-0.7788264155,-0.780146122,-0.7812898159,-0.7809379101,-0.7803220749,-0.779882133,-0.7796182036,-0.7797061801,-0.779882133,-0.7802340984,-0.7807619572,-0.7807619572,-0.7802340984,-0.7797061801,-0.7790023685,-0.7792662978,-0.7821695805,-0.7835772634,-0.7815537453,-0.7800580859,-0.7804100513,-0.7805860043,-0.7804100513,-0.7804100513,-0.7807619572,-0.7807619572,-0.780146122,-0.779882133,-0.7804980278,-0.7812898159,-0.7816417217,-0.7818176746,-0.7814657688,-0.7802340984,-0.7787384391,-0.7778585553,-0.7768908143,-0.774251461,-0.7717880011,-0.7728438377,-0.7760990262,-0.777418673,-0.7778585553,-0.7792662978,-0.780146122,-0.7810258865,-0.7826094627,-0.7835772634,-0.7838411927,-0.7840172052,-0.7841051817,-0.7841931581,-0.7841931581,-0.7842811346,-0.7842811346,-0.7839292288,-0.7834013104,-0.783049345,-0.7826974392,-0.7826974392,-0.7826974392,-0.7823455334,-0.7817296982,-0.7807619572,-0.7799701095,-0.7791783214,-0.7782985568,-0.7778585553,-0.7782104611,-0.7797061801,-0.7813777924,-0.7817296982,-0.7818176746,-0.783049345,-0.7844570875,-0.7848089933,-0.7837532163,-0.7822575569,-0.782081604,-0.7824335098,-0.783049345,-0.7843691111,-0.7854248881,-0.785776794,-0.7861286998,-0.7861286998,-0.7861286998,-0.7859527469,-0.7860407233,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7861286998,-0.7859527469,-0.7858647704,-0.7858647704,-0.7859527469,-0.785776794,-0.785776794,-0.785776794,-0.7858647704,-0.7858647704,-0.7858647704,-0.7860407233,-0.7861286998,-0.7860407233,-0.7860407233,-0.7862166762,-0.7863046527,-0.7863046527,-0.7862166762,-0.7860407233,-0.7859527469,-0.7858647704,-0.7859527469,-0.7860407233,-0.7860407233,-0.7858647704,-0.7859527469,-0.7861286998,-0.7862166762,-0.7862166762,-0.7860407233,-0.7860407233,-0.7861286998,-0.7861286998,-0.7859527469,-0.7864806056,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7863926291,-0.7860407233,-0.7860407233,-0.7858647704,-0.7858647704,-0.7859527469,-0.7856888175,-0.7855128646,-0.7856888175,-0.7858647704,-0.785776794,-0.7856888175,-0.785776794,-0.7860407233,-0.7862166762,-0.7861286998,-0.7861286998,-0.7861286998,-0.7862166762,-0.7862166762,-0.7860407233,-0.7860407233,-0.7862166762,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7861286998,-0.7860407233,-0.7859527469,-0.7859527469,-0.7860407233,-0.7861286998,-0.7861286998,-0.7860407233,-0.785776794,-0.7856888175,-0.7856888175,-0.7856888175,-0.7858647704,-0.7861286998,-0.7856888175,-0.7835772634,-0.7810258865,-0.7804980278,-0.7810258865,-0.7815537453,-0.7825214863,-0.783313334,-0.7837532163,-0.7841051817,-0.7841931581,-0.7844570875,-0.7847210169,-0.7846330404,-0.7840172052,-0.7821695805,-0.780146122,-0.7794422507,-0.7793542743,-0.7790023685,-0.7790023685,-0.7797061801,-0.7804100513,-0.7807619572,-0.7812898159,-0.7816417217,-0.7819936275,-0.7825214863,-0.7829613686,-0.783049345,-0.7828733921,-0.7826974392,-0.7825214863,-0.7826094627,-0.7823455334,-0.7815537453,-0.7807619572,-0.7797941566,-0.7793542743,-0.7791783214,-0.7778585553,-0.7748672962,-0.7717880011,-0.7701163888,-0.7701163888,-0.7716120481,-0.7738115788,-0.7766268849,-0.7784745097,-0.7790903449,-0.7797941566,-0.780146122,-0.780146122,-0.7802340984,-0.7802340984,-0.7804100513,-0.7804980278,-0.7804100513,-0.7804100513,-0.7807619572,-0.7808499336,-0.7803220749,-0.779882133,-0.7792662978,-0.7791783214,-0.7815537453,-0.7827854156,-0.7810258865,-0.779882133,-0.7804100513,-0.7808499336,-0.7809379101,-0.7807619572,-0.7807619572,-0.7807619572,-0.7804980278,-0.7803220749,-0.7802340984,-0.7804100513,-0.781113863,-0.7821695805,-0.7824335098,-0.7810258865,-0.7793542743,-0.7783865333,-0.777418673,-0.7748672962,-0.771963954,-0.7717000246,-0.7739875317,-0.7753072381,-0.7760110497,-0.7776826024,-0.7790903449,-0.779882133,-0.7810258865,-0.7824335098,-0.7832252979,-0.7836652398,-0.7837532163,-0.7837532163,-0.7839292288,-0.7840172052,-0.7835772634,-0.7828733921,-0.7823455334,-0.7821695805,-0.7819056511,-0.7818176746,-0.7819056511,-0.7816417217,-0.7809379101,-0.780146122,-0.7797061801,-0.7790023685,-0.7779465318,-0.7775066495,-0.7779465318,-0.7795302272,-0.7817296982,-0.7821695805,-0.782081604,-0.7834013104,-0.7849849463,-0.7852489352,-0.7846330404,-0.7827854156,-0.7818176746,-0.782081604,-0.7822575569,-0.7831373215,-0.7846330404,-0.785600841,-0.7859527469,-0.7860407233,-0.7858647704,-0.785776794,-0.7860407233,-0.7862166762,-0.7862166762,-0.7862166762,-0.7861286998,-0.7859527469,-0.7858647704,-0.7858647704,-0.7858647704,-0.7858647704,-0.7858647704,-0.7858647704,-0.7858647704,-0.785776794,-0.785776794,-0.7856888175,-0.7856888175,-0.7859527469,-0.7861286998,-0.7860407233,-0.7861286998,-0.7862166762,-0.7863046527,-0.7861286998,-0.7859527469,-0.7859527469,-0.7860407233,-0.7861286998,-0.7860407233,-0.785776794,-0.785600841,-0.7858647704,-0.7861286998,-0.7862166762,-0.7861286998,-0.7859527469,-0.7859527469,-0.7860407233,-0.7861286998,-0.7861286998,-0.7864806056,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7863926291,-0.7861286998,-0.7861286998,-0.7859527469,-0.7856888175,-0.7855128646,-0.7855128646,-0.7853369117,-0.7853369117,-0.7856888175,-0.7858647704,-0.785776794,-0.7856888175,-0.7859527469,-0.7861286998,-0.7861286998,-0.7860407233,-0.7861286998,-0.7861286998,-0.7858647704,-0.785776794,-0.7860407233,-0.7861286998,-0.7861286998,-0.7862166762,-0.7861286998,-0.7860407233,-0.7859527469,-0.7859527469,-0.7859527469,-0.7860407233,-0.7860407233,-0.7861286998,-0.7862166762,-0.7861286998,-0.7858647704,-0.7856888175,-0.785776794,-0.785600841,-0.7856888175,-0.7859527469,-0.7847210169,-0.7819056511,-0.7804100513,-0.7808499336,-0.7810258865,-0.7813777924,-0.7815537453,-0.7817296982,-0.7829613686,-0.7837532163,-0.7840172052,-0.7847210169,-0.7853369117,-0.7852489352,-0.7843691111,-0.7826974392,-0.7805860043,-0.7795302272,-0.7793542743,-0.7792662978,-0.7792662978,-0.7796182036,-0.7800580859,-0.7803220749,-0.7806739807,-0.7808499336,-0.7807619572,-0.781113863,-0.7817296982,-0.7817296982,-0.7813777924,-0.7812898159,-0.7813777924,-0.7812898159,-0.781113863,-0.7805860043,-0.7797941566,-0.7793542743,-0.7792662978,-0.7781224847,-0.7749552727,-0.7711721659,-0.7691486478,-0.7689726949,-0.7701163888,-0.7720519304,-0.7746033669,-0.777418673,-0.7788264155,-0.7791783214,-0.7793542743,-0.7792662978,-0.7795302272,-0.7799701095,-0.7804100513,-0.7809379101,-0.781113863,-0.7807619572,-0.7805860043,-0.7806739807,-0.7806739807,-0.7804100513,-0.7802340984,-0.7796182036,-0.7790903449,-0.7806739807,-0.7819936275,-0.7807619572,-0.779882133,-0.7804100513,-0.7809379101,-0.7812018394,-0.7809379101,-0.7804980278,-0.7808499336,-0.781113863,-0.7808499336,-0.7804980278,-0.7804100513,-0.7807619572,-0.7815537453,-0.782081604,-0.7812018394,-0.779882133,-0.7790903449,-0.7780345082,-0.7753952146,-0.7720519304,-0.7706443071,-0.7718759775,-0.77328372,-0.7741634846,-0.7756591439,-0.7776826024,-0.7790903449,-0.7797941566,-0.7810258865,-0.7824335098,-0.7832252979,-0.7832252979,-0.783313334,-0.7834892869,-0.7832252979,-0.7824335098,-0.7816417217,-0.7812018394,-0.7812018394,-0.7810258865,-0.7809379101,-0.7810258865,-0.7807619572,-0.779882133,-0.7793542743,-0.7795302272,-0.7790903449,-0.7780345082,-0.7777705789,-0.7784745097,-0.780146122,-0.7824335098,-0.7826974392,-0.7824335098,-0.7839292288,-0.7852489352,-0.7854248881,-0.7852489352,-0.7835772634,-0.7815537453,-0.7816417217,-0.782081604,-0.7819056511,-0.7834013104,-0.7850729823,-0.785600841,-0.785776794,-0.7858647704,-0.7859527469,-0.7861286998,-0.7861286998,-0.7862166762,-0.7863046527,-0.7861286998,-0.7859527469,-0.7858647704,-0.7859527469,-0.7860407233,-0.7858647704,-0.785776794,-0.7858647704,-0.7858647704,-0.7856888175,-0.785600841,-0.785600841,-0.785600841,-0.7856888175,-0.7859527469,-0.7860407233,-0.7859527469,-0.7860407233,-0.7862166762,-0.7860407233,-0.7858647704,-0.7860407233,-0.7862166762,-0.7861286998,-0.7858647704,-0.7855128646,-0.7856888175,-0.7860407233,-0.7861286998,-0.7861286998,-0.7860407233,-0.7859527469,-0.7860407233,-0.7860407233,-0.7861286998,-0.7862166762,-0.7864806056,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7861286998,-0.7860407233,-0.7858647704,-0.785776794,-0.785600841,-0.7854248881,-0.7853369117,-0.7853369117,-0.785600841,-0.7858647704,-0.785776794,-0.7856888175,-0.7858647704,-0.7860407233,-0.7859527469,-0.7858647704,-0.7858647704,-0.7859527469,-0.785776794,-0.7859527469,-0.7862166762,-0.7861286998,-0.7861286998,-0.7862166762,-0.7861286998,-0.7860407233,-0.7859527469,-0.7860407233,-0.7861286998,-0.7860407233,-0.7860407233,-0.7862166762,-0.7863046527,-0.7862166762,-0.7860407233,-0.7858647704,-0.7858647704,-0.7858647704,-0.785600841,-0.7853369117,-0.7831373215,-0.7803220749,-0.7804980278,-0.7814657688,-0.7808499336,-0.7805860043,-0.780146122,-0.7805860043,-0.7825214863,-0.7836652398,-0.7838411927,-0.7841931581,-0.7849849463,-0.7855128646,-0.7849849463,-0.7834892869,-0.7812898159,-0.7796182036,-0.7792662978,-0.7793542743,-0.7791783214,-0.7792662978,-0.7796182036,-0.7797941566,-0.7799701095,-0.780146122,-0.7799701095,-0.779882133,-0.7802340984,-0.7802340984,-0.780146122,-0.780146122,-0.7799701095,-0.7797061801,-0.7797941566,-0.7797061801,-0.7791783214,-0.778914392,-0.7779465318,-0.7752192616,-0.7713481188,-0.768796742,-0.7680929303,-0.7685328126,-0.7699404359,-0.7726678848,-0.7760110497,-0.7782985568,-0.778914392,-0.7793542743,-0.7794422507,-0.7791783214,-0.7795302272,-0.780146122,-0.7806739807,-0.7813777924,-0.7814657688,-0.7809379101,-0.7805860043,-0.7804980278,-0.7804100513,-0.7803220749,-0.7803220749,-0.7799701095,-0.7792662978,-0.7800580859,-0.781113863,-0.7805860043,-0.7799701095,-0.7804100513,-0.7809379101,-0.781113863,-0.7807619572,-0.7804980278,-0.7808499336,-0.7814657688,-0.7812018394,-0.7805860043,-0.7804100513,-0.7806739807,-0.7809379101,-0.7812898159,-0.7809379101,-0.780146122,-0.7797061801,-0.7790903449,-0.7763629556,-0.7723158598,-0.7702043653,-0.7707322836,-0.7713481188,-0.7720519304,-0.7738115788,-0.7762749791,-0.7783865333,-0.7790903449,-0.7797061801,-0.781113863,-0.782081604,-0.7821695805,-0.7821695805,-0.7822575569,-0.7818176746,-0.7809379101,-0.780146122,-0.7797061801,-0.7794422507,-0.7797061801,-0.780146122,-0.7803220749,-0.7797941566,-0.7788264155,-0.7788264155,-0.7794422507,-0.7790903449,-0.7782985568,-0.7782104611,-0.7791783214,-0.7813777924,-0.7832252979,-0.7834892869,-0.7838411927,-0.7848089933,-0.7852489352,-0.7850729823,-0.7848969698,-0.7839292288,-0.7813777924,-0.7806739807,-0.7817296982,-0.7812898159,-0.7819936275,-0.7840172052,-0.7851609588,-0.7855128646,-0.785776794,-0.7860407233,-0.7861286998,-0.7861286998,-0.7863046527,-0.7863046527,-0.7861286998,-0.7859527469,-0.7860407233,-0.7862166762,-0.7862166762,-0.7859527469,-0.785776794,-0.7859527469,-0.7860407233,-0.7858647704,-0.7856888175,-0.785600841,-0.7856888175,-0.7856888175,-0.785600841,-0.7858647704,-0.7859527469,-0.7858647704,-0.7860407233,-0.7860407233,-0.7859527469,-0.7861286998,-0.7861286998,-0.7859527469,-0.7854248881,-0.7852489352,-0.785776794,-0.7861286998,-0.7862166762,-0.7861286998,-0.7860407233,-0.7860407233,-0.7861286998,-0.7860407233,-0.7861286998,-0.7862166762,-0.7864806056,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7862166762,-0.7859527469,-0.785776794,-0.7859527469,-0.7858647704,-0.785600841,-0.7854248881,-0.7855128646,-0.785600841,-0.785776794,-0.7856888175,-0.785600841,-0.785776794,-0.7859527469,-0.7859527469,-0.7856888175,-0.7855128646,-0.785600841,-0.7859527469,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7862166762,-0.7860407233,-0.7860407233,-0.7861286998,-0.7862166762,-0.7862166762,-0.7860407233,-0.7861286998,-0.7862166762,-0.7863046527,-0.7862166762,-0.7861286998,-0.7858647704,-0.785776794,-0.785776794,-0.7853369117,-0.7844570875,-0.7814657688,-0.7797061801,-0.7812018394,-0.7816417217,-0.7805860043,-0.7796182036,-0.7791783214,-0.7807619572,-0.7826094627,-0.7834892869,-0.7837532163,-0.7834892869,-0.7840172052,-0.7849849463,-0.7848969698,-0.7839292288,-0.7825214863,-0.7806739807,-0.7795302272,-0.7792662978,-0.7790023685,-0.7786504626,-0.7784745097,-0.7785624862,-0.7786504626,-0.7787384391,-0.7786504626,-0.7784745097,-0.7784745097,-0.7788264155,-0.7791783214,-0.7791783214,-0.778914392,-0.7788264155,-0.7792662978,-0.7790903449,-0.778914392,-0.7784745097,-0.7762749791,-0.7725797892,-0.7692366242,-0.7681809068,-0.7681809068,-0.7685328126,-0.7702043653,-0.7734596729,-0.7769787908,-0.7788264155,-0.7792662978,-0.7796182036,-0.7795302272,-0.7795302272,-0.780146122,-0.7805860043,-0.7809379101,-0.7815537453,-0.7816417217,-0.7812018394,-0.7807619572,-0.7804980278,-0.7802340984,-0.7802340984,-0.7804100513,-0.7802340984,-0.7795302272,-0.7797061801,-0.7804980278,-0.7802340984,-0.779882133,-0.7802340984,-0.7804980278,-0.7805860043,-0.7805860043,-0.7804980278,-0.7807619572,-0.7812898159,-0.7812898159,-0.7807619572,-0.7802340984,-0.7802340984,-0.7805860043,-0.7807619572,-0.7805860043,-0.780146122,-0.7802340984,-0.7799701095,-0.7773306966,-0.7731957436,-0.7706443071,-0.7702043653,-0.7698524594,-0.7699404359,-0.7718759775,-0.7749552727,-0.7773306966,-0.7785624862,-0.7796182036,-0.7804980278,-0.7808499336,-0.7808499336,-0.7806739807,-0.7804980278,-0.7803220749,-0.7797941566,-0.7790023685,-0.7780345082,-0.7778585553,-0.7784745097,-0.7791783214,-0.7790903449,-0.7786504626,-0.7782104611,-0.7787384391,-0.7795302272,-0.778914392,-0.7777705789,-0.7781224847,-0.7799701095,-0.7824335098,-0.7835772634,-0.7841051817,-0.7849849463,-0.7850729823,-0.7846330404,-0.7843691111,-0.7837532163,-0.783049345,-0.7813777924,-0.7804980278,-0.7815537453,-0.7812018394,-0.7806739807,-0.7825214863,-0.7844570875,-0.7852489352,-0.7858647704,-0.7861286998,-0.7862166762,-0.7862166762,-0.7863046527,-0.7862166762,-0.7860407233,-0.7859527469,-0.7861286998,-0.7863046527,-0.7863046527,-0.7860407233,-0.7858647704,-0.7859527469,-0.7859527469,-0.7859527469,-0.7858647704,-0.785600841,-0.7856888175,-0.785776794,-0.7856888175,-0.7856888175,-0.7858647704,-0.785776794,-0.785776794,-0.7860407233,-0.7861286998,-0.7861286998,-0.7861286998,-0.785776794,-0.7855128646,-0.785600841,-0.7859527469,-0.7862166762,-0.7862166762,-0.7862166762,-0.7861286998,-0.7861286998,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7864806056,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7861286998,-0.785776794,-0.785776794,-0.7859527469,-0.7859527469,-0.785776794,-0.785776794,-0.7856888175,-0.7856888175,-0.785776794,-0.7856888175,-0.7854248881,-0.785600841,-0.7858647704,-0.7859527469,-0.7856888175,-0.7853369117,-0.7855128646,-0.7859527469,-0.7862166762,-0.7861286998,-0.7861286998,-0.7861286998,-0.7859527469,-0.7858647704,-0.7860407233,-0.7863046527,-0.7863926291,-0.7863046527,-0.7861286998,-0.7861286998,-0.7861286998,-0.7862166762,-0.7862166762,-0.7861286998,-0.7859527469,-0.785776794,-0.7856888175,-0.7848969698,-0.7827854156,-0.7794422507,-0.7796182036,-0.7815537453,-0.7808499336,-0.7794422507,-0.7781224847,-0.7786504626,-0.7813777924,-0.7826094627,-0.7832252979,-0.7835772634,-0.7829613686,-0.7831373215,-0.7843691111,-0.7843691111,-0.7836652398,-0.7832252979,-0.7814657688,-0.7797061801,-0.7791783214,-0.7790903449,-0.7783865333,-0.7775066495,-0.7771547437,-0.7770667672,-0.7768908143,-0.7768028378,-0.7766268849,-0.7765389085,-0.7768908143,-0.7775946259,-0.7778585553,-0.7779465318,-0.7783865333,-0.7785624862,-0.7786504626,-0.7790903449,-0.7782985568,-0.7751312256,-0.7712601423,-0.7687087655,-0.7681809068,-0.7682688832,-0.7686207891,-0.7706443071,-0.7743394375,-0.7776826024,-0.7791783214,-0.7797941566,-0.780146122,-0.7802340984,-0.7804100513,-0.7806739807,-0.7807619572,-0.7812018394,-0.7816417217,-0.7816417217,-0.7812898159,-0.7809379101,-0.7805860043,-0.7803220749,-0.7804100513,-0.7804980278,-0.7802340984,-0.7795302272,-0.7794422507,-0.7800580859,-0.7800580859,-0.7797061801,-0.7799701095,-0.7803220749,-0.7804980278,-0.7805860043,-0.7805860043,-0.7806739807,-0.7812018394,-0.7814657688,-0.7810258865,-0.7802340984,-0.7799701095,-0.780146122,-0.7804980278,-0.7805860043,-0.780146122,-0.7802340984,-0.7802340984,-0.7778585553,-0.7740755081,-0.7713481188,-0.7702043653,-0.7691486478,-0.768796742,-0.7709082365,-0.774251461,-0.776450932,-0.7781224847,-0.7797941566,-0.7804100513,-0.7800580859,-0.7797941566,-0.7795302272,-0.7793542743,-0.7792662978,-0.7790023685,-0.7779465318,-0.7767148614,-0.7766268849,-0.7775066495,-0.7779465318,-0.7775946259,-0.7775946259,-0.7781224847,-0.7790023685,-0.7795302272,-0.7786504626,-0.777418673,-0.7781224847,-0.7806739807,-0.783049345,-0.7837532163,-0.7841931581,-0.784545064,-0.7838411927,-0.7834892869,-0.7837532163,-0.7829613686,-0.7815537453,-0.7808499336,-0.7807619572,-0.7816417217,-0.7814657688,-0.7800580859,-0.7806739807,-0.783049345,-0.7847210169,-0.7856888175,-0.7860407233,-0.7861286998,-0.7861286998,-0.7862166762,-0.7860407233,-0.7859527469,-0.7861286998,-0.7862166762,-0.7863046527,-0.7862166762,-0.7860407233,-0.7858647704,-0.7856888175,-0.7855128646,-0.785600841,-0.785600841,-0.7855128646,-0.7855128646,-0.7856888175,-0.785776794,-0.785776794,-0.785776794,-0.785776794,-0.785600841,-0.785776794,-0.7859527469,-0.7860407233,-0.7858647704,-0.7856888175,-0.7858647704,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7862166762,-0.7862166762,-0.7861286998,-0.7860407233,-0.7864806056,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7861286998,-0.7858647704,-0.7856888175,-0.785776794,-0.7858647704,-0.785776794,-0.7858647704,-0.7858647704,-0.785600841,-0.7856888175,-0.7856888175,-0.7854248881,-0.7854248881,-0.785776794,-0.7858647704,-0.7856888175,-0.7854248881,-0.7854248881,-0.785776794,-0.7859527469,-0.7858647704,-0.7858647704,-0.7858647704,-0.7858647704,-0.7858647704,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7862166762,-0.7862166762,-0.7862166762,-0.7860407233,-0.7858647704,-0.785776794,-0.7854248881,-0.7840172052,-0.7802340984,-0.7781224847,-0.7802340984,-0.7812018394,-0.7794422507,-0.7776826024,-0.7763629556,-0.7782104611,-0.7814657688,-0.782081604,-0.7822575569,-0.783049345,-0.7826974392,-0.7826094627,-0.7840172052,-0.7841931581,-0.7831373215,-0.783049345,-0.782081604,-0.7802340984,-0.7796182036,-0.7795302272,-0.7783865333,-0.7773306966,-0.776450932,-0.7755711675,-0.7749552727,-0.7747793198,-0.7745153904,-0.7744274139,-0.7747793198,-0.7755711675,-0.7765389085,-0.7773306966,-0.7778585553,-0.7778585553,-0.7783865333,-0.7792662978,-0.7782104611,-0.7749552727,-0.7712601423,-0.768796742,-0.7682688832,-0.7683568597,-0.7689726949,-0.7714360952,-0.7755711675,-0.7786504626,-0.7796182036,-0.780146122,-0.7806739807,-0.7810258865,-0.7812018394,-0.781113863,-0.7809379101,-0.7813777924,-0.7816417217,-0.7815537453,-0.7812898159,-0.7809379101,-0.7805860043,-0.7804100513,-0.7804100513,-0.7802340984,-0.7799701095,-0.7795302272,-0.7792662978,-0.7797061801,-0.7799701095,-0.7796182036,-0.7797941566,-0.7802340984,-0.7806739807,-0.7809379101,-0.7808499336,-0.7808499336,-0.7812018394,-0.7814657688,-0.7812898159,-0.7804980278,-0.7799701095,-0.780146122,-0.7807619572,-0.7809379101,-0.7802340984,-0.7800580859,-0.7803220749,-0.7782985568,-0.7745153904,-0.771963954,-0.7705563307,-0.7691486478,-0.7685328126,-0.7706443071,-0.7738995552,-0.7760110497,-0.7779465318,-0.7799701095,-0.7804100513,-0.7797061801,-0.778914392,-0.7782985568,-0.7781224847,-0.7782104611,-0.7776826024,-0.776450932,-0.7750432491,-0.7745153904,-0.7753072381,-0.776450932,-0.7768908143,-0.7775066495,-0.7784745097,-0.7790903449,-0.7790903449,-0.778914392,-0.7788264155,-0.779882133,-0.7817296982,-0.7832252979,-0.7839292288,-0.7841931581,-0.7834892869,-0.7824335098,-0.7826094627,-0.7831373215,-0.7825214863,-0.7805860043,-0.7796182036,-0.7800580859,-0.781113863,-0.7816417217,-0.7802340984,-0.7792662978,-0.7814657688,-0.7839292288,-0.7852489352,-0.7858647704,-0.7859527469,-0.7859527469,-0.7859527469,-0.7859527469,-0.7859527469,-0.7861286998,-0.7862166762,-0.7862166762,-0.7862166762,-0.7859527469,-0.7858647704,-0.7856888175,-0.7855128646,-0.7855128646,-0.7854248881,-0.7852489352,-0.7852489352,-0.7855128646,-0.785600841,-0.785600841,-0.785600841,-0.785600841,-0.7856888175,-0.785776794,-0.7856888175,-0.785776794,-0.785600841,-0.785600841,-0.7860407233,-0.7862166762,-0.7861286998,-0.7860407233,-0.7860407233,-0.7860407233,-0.7860407233,-0.7862166762,-0.7863046527,-0.7862166762,-0.7861286998,-0.7860407233,-0.7864806056,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863046527,-0.7861286998,-0.7858647704,-0.7858647704,-0.7859527469,-0.7858647704,-0.7858647704,-0.7856888175,-0.785600841,-0.785776794,-0.785776794,-0.7855128646,-0.7855128646,-0.785776794,-0.7858647704,-0.785776794,-0.7855128646,-0.7853369117,-0.7855128646,-0.7856888175,-0.7856888175,-0.785776794,-0.785776794,-0.7858647704,-0.7860407233,-0.7862166762,-0.7862166762,-0.7861286998,-0.7861286998,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7860407233,-0.7860407233,-0.7858647704,-0.7855128646,-0.7848089933,-0.7826094627,-0.7784745097,-0.7786504626,-0.7812018394,-0.7804100513,-0.7782104611,-0.7761870027,-0.7753952146,-0.7784745097,-0.7814657688,-0.7816417217,-0.7813777924,-0.7822575569,-0.7826974392,-0.7826094627,-0.7837532163,-0.7840172052,-0.7823455334,-0.782081604,-0.7826094627,-0.7812018394,-0.7804100513,-0.7804100513,-0.7788264155,-0.7769787908,-0.775483191,-0.774251461,-0.7735476494,-0.77328372,-0.7730197906,-0.7731077671,-0.7735476494,-0.7743394375,-0.7758350968,-0.7771547437,-0.7775066495,-0.7776826024,-0.7784745097,-0.7790903449,-0.7778585553,-0.7749552727,-0.7716120481,-0.7689726949,-0.7682688832,-0.7686207891,-0.7699404359,-0.7727558613,-0.7766268849,-0.7793542743,-0.7802340984,-0.7805860043,-0.7809379101,-0.7810258865,-0.781113863,-0.7810258865,-0.781113863,-0.7815537453,-0.7817296982,-0.7814657688,-0.781113863,-0.7808499336,-0.7804100513,-0.7803220749,-0.7804100513,-0.780146122,-0.7797941566,-0.7795302272,-0.7795302272,-0.7797941566,-0.7796182036,-0.7790023685,-0.7791783214,-0.7797941566,-0.7803220749,-0.7806739807,-0.7806739807,-0.7806739807,-0.7808499336,-0.7810258865,-0.7810258865,-0.7805860043,-0.7802340984,-0.7804100513,-0.7809379101,-0.7812018394,-0.7804980278,-0.7799701095,-0.7803220749,-0.7787384391,-0.7751312256,-0.7724918127,-0.7712601423,-0.7696765065,-0.7688847184,-0.7707322836,-0.7735476494,-0.7760110497,-0.7784745097,-0.7803220749,-0.7804980278,-0.7793542743,-0.7780345082,-0.7770667672,-0.7767148614,-0.7766268849,-0.7756591439,-0.7738995552,-0.7725797892,-0.771963954,-0.7724918127,-0.7744274139,-0.776450932,-0.7779465318,-0.7792662978,-0.7793542743,-0.778914392,-0.7794422507,-0.7805860043,-0.7819056511,-0.7826974392,-0.783049345,-0.7838411927,-0.7836652398,-0.7819056511,-0.7812898159,-0.7821695805,-0.7826094627,-0.7824335098,-0.7805860043,-0.7782985568,-0.7784745097,-0.7799701095,-0.7813777924,-0.7810258865,-0.7790023685,-0.7799701095,-0.783049345,-0.7848089933,-0.7854248881,-0.785600841,-0.7856888175,-0.785776794,-0.7858647704,-0.7860407233,-0.7862166762,-0.7861286998,-0.7860407233,-0.7861286998,-0.7861286998,-0.7859527469,-0.785776794,-0.7856888175,-0.785600841,-0.7854248881,-0.7852489352,-0.7851609588,-0.7852489352,-0.7851609588,-0.7850729823,-0.7850729823,-0.7851609588,-0.7853369117,-0.785600841,-0.7856888175,-0.7855128646,-0.7851609588,-0.7852489352,-0.7858647704,-0.7861286998,-0.7859527469,-0.7858647704,-0.7859527469,-0.7860407233,-0.7860407233,-0.7862166762,-0.7863046527,-0.7862166762,-0.7861286998,-0.7862166762,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7862166762,-0.7859527469,-0.7861286998,-0.7862166762,-0.7861286998,-0.7859527469,-0.7855128646,-0.7856888175,-0.7858647704,-0.785776794,-0.7856888175,-0.7856888175,-0.785776794,-0.785776794,-0.7856888175,-0.7856888175,-0.7854248881,-0.7855128646,-0.785776794,-0.785776794,-0.785776794,-0.785776794,-0.7859527469,-0.7860407233,-0.7861286998,-0.7862166762,-0.7861286998,-0.7860407233,-0.7862166762,-0.7862166762,-0.7861286998,-0.7860407233,-0.7859527469,-0.7860407233,-0.785776794,-0.7852489352,-0.7839292288,-0.7804980278,-0.7776826024,-0.7803220749,-0.7818176746,-0.7797941566,-0.777418673,-0.7751312256,-0.7757471204,-0.7795302272,-0.7815537453,-0.7816417217,-0.7817296982,-0.7823455334,-0.7831373215,-0.7832252979,-0.7836652398,-0.7838411927,-0.7821695805,-0.7813777924,-0.7826094627,-0.7816417217,-0.779882133,-0.7799701095,-0.7788264155,-0.7759230733,-0.7738115788,-0.7731957436,-0.7729318142,-0.7724918127,-0.7723158598,-0.7727558613,-0.7731077671,-0.7738995552,-0.7755711675,-0.7769787908,-0.7775066495,-0.777418673,-0.7780345082,-0.7787384391,-0.7777705789,-0.7751312256,-0.7722278833,-0.7695885301,-0.7686207891,-0.7694125772,-0.7709082365,-0.7734596729,-0.7772427201,-0.7804100513,-0.7812898159,-0.7810258865,-0.7807619572,-0.7804100513,-0.7804100513,-0.7807619572,-0.7812018394,-0.7816417217,-0.7816417217,-0.7813777924,-0.781113863,-0.7807619572,-0.7803220749,-0.7804100513,-0.7804980278,-0.7799701095,-0.7795302272,-0.7793542743,-0.7797061801,-0.7800580859,-0.7793542743,-0.7785624862,-0.778914392,-0.7795302272,-0.7799701095,-0.7803220749,-0.7804100513,-0.7803220749,-0.7803220749,-0.7804100513,-0.7805860043,-0.7805860043,-0.7805860043,-0.7804100513,-0.7806739807,-0.7810258865,-0.7804980278,-0.7797061801,-0.7799701095,-0.7791783214,-0.7760110497,-0.7731957436,-0.7718759775,-0.7703803778,-0.7698524594,-0.7714360952,-0.7734596729,-0.7760990262,-0.7790903449,-0.7805860043,-0.7803220749,-0.778914392,-0.7770667672,-0.7758350968,-0.7753952146,-0.7749552727,-0.7736356258,-0.7718759775,-0.7707322836,-0.7704683542,-0.7709082365,-0.7727558613,-0.7755711675,-0.7782985568,-0.779882133,-0.7797941566,-0.7795302272,-0.7800580859,-0.7810258865,-0.7824335098,-0.7825214863,-0.7823455334,-0.7834013104,-0.7827854156,-0.7803220749,-0.7804100513,-0.7819056511,-0.7819936275,-0.7822575569,-0.7810258865,-0.7776826024,-0.7768028378,-0.7787384391,-0.7806739807,-0.7816417217,-0.7800580859,-0.7790023685,-0.7816417217,-0.7844570875,-0.7853369117,-0.7854248881,-0.785600841,-0.7858647704,-0.7859527469,-0.7861286998,-0.7862166762,-0.7861286998,-0.7860407233,-0.7860407233,-0.7860407233,-0.7860407233,-0.785776794,-0.7856888175,-0.785776794,-0.7856888175,-0.7855128646,-0.7855128646,-0.7853369117,-0.7851609588,-0.7848969698,-0.7847210169,-0.7848969698,-0.7853369117,-0.7855128646,-0.7856888175,-0.785600841,-0.7850729823,-0.7849849463,-0.785600841,-0.7861286998,-0.7859527469,-0.7859527469,-0.7860407233,-0.7861286998,-0.7860407233,-0.7861286998,-0.7863046527,-0.7861286998,-0.7860407233,-0.7861286998,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863046527,-0.7862166762,-0.7860407233,-0.7861286998,-0.7862166762,-0.7861286998,-0.7859527469,-0.785600841,-0.7858647704,-0.7859527469,-0.785776794,-0.7858647704,-0.7859527469,-0.7858647704,-0.785600841,-0.7856888175,-0.785776794,-0.785600841,-0.785600841,-0.7858647704,-0.7859527469,-0.7859527469,-0.7859527469,-0.7860407233,-0.7860407233,-0.7859527469,-0.7861286998,-0.7861286998,-0.7862166762,-0.7863046527,-0.7862166762,-0.7862166762,-0.7860407233,-0.7859527469,-0.7859527469,-0.7855128646,-0.7848089933,-0.7823455334,-0.7783865333,-0.7782104611,-0.7816417217,-0.7818176746,-0.7790903449,-0.7762749791,-0.7746913433,-0.7768028378,-0.7805860043,-0.7819056511,-0.7824335098,-0.7829613686,-0.7828733921,-0.783313334,-0.7836652398,-0.7834013104,-0.7834892869,-0.783049345,-0.7823455334,-0.7832252979,-0.7825214863,-0.7795302272,-0.7786504626,-0.7780345082,-0.7753072381,-0.7735476494,-0.7731077671,-0.7725797892,-0.7721399069,-0.7722278833,-0.7726678848,-0.7731957436,-0.7738995552,-0.7753952146,-0.7769787908,-0.777418673,-0.7769787908,-0.7772427201,-0.7783865333,-0.7777705789,-0.7755711675,-0.7731077671,-0.7705563307,-0.7696765065,-0.7705563307,-0.7717880011,-0.7741634846,-0.7780345082,-0.7812018394,-0.7819936275,-0.7812898159,-0.7804100513,-0.7797061801,-0.7797941566,-0.7804100513,-0.781113863,-0.7815537453,-0.7815537453,-0.7813777924,-0.7810258865,-0.7806739807,-0.7804100513,-0.7804980278,-0.7803220749,-0.7797941566,-0.7794422507,-0.7791783214,-0.7797061801,-0.7803220749,-0.7793542743,-0.7784745097,-0.778914392,-0.7794422507,-0.7797941566,-0.780146122,-0.7802340984,-0.7799701095,-0.779882133,-0.7800580859,-0.7802340984,-0.7804980278,-0.7807619572,-0.7805860043,-0.7804100513,-0.7807619572,-0.7805860043,-0.779882133,-0.7799701095,-0.7793542743,-0.7765389085,-0.7737236023,-0.7724038363,-0.7712601423,-0.7711721659,-0.7723158598,-0.7736356258,-0.7760110497,-0.7791783214,-0.7804980278,-0.7799701095,-0.7784745097,-0.776450932,-0.7749552727,-0.7743394375,-0.7738115788,-0.7726678848,-0.7712601423,-0.7701163888,-0.769764483,-0.7701163888,-0.7717000246,-0.7748672962,-0.7778585553,-0.7794422507,-0.7795302272,-0.7797941566,-0.7806739807,-0.7818176746,-0.7824335098,-0.7816417217,-0.7815537453,-0.7828733921,-0.7815537453,-0.7790903449,-0.7797941566,-0.7816417217,-0.7816417217,-0.7818176746,-0.7813777924,-0.7778585553,-0.7756591439,-0.7775946259,-0.779882133,-0.7816417217,-0.7814657688,-0.7788264155,-0.7796182036,-0.7832252979,-0.7851609588,-0.7855128646,-0.7856888175,-0.7859527469,-0.7861286998,-0.7862166762,-0.7862166762,-0.7861286998,-0.7859527469,-0.7858647704,-0.7858647704,-0.7859527469,-0.7859527469,-0.7858647704,-0.785776794,-0.7858647704,-0.7858647704,-0.785776794,-0.785600841,-0.7855128646,-0.7852489352,-0.7848089933,-0.7849849463,-0.785600841,-0.7858647704,-0.785776794,-0.7858647704,-0.785600841,-0.7852489352,-0.785600841,-0.7860407233,-0.7861286998,-0.7860407233,-0.7861286998,-0.7862166762,-0.7861286998,-0.7861286998,-0.7862166762,-0.7861286998,-0.7860407233,-0.7861286998,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863046527,-0.7863046527,-0.7861286998,-0.7862166762,-0.7861286998,-0.7860407233,-0.7859527469,-0.785776794,-0.7861286998,-0.7860407233,-0.7858647704,-0.7858647704,-0.7860407233,-0.7859527469,-0.785600841,-0.785776794,-0.7858647704,-0.7856888175,-0.7856888175,-0.7860407233,-0.7861286998,-0.7860407233,-0.7860407233,-0.7860407233,-0.7860407233,-0.7860407233,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7860407233,-0.785776794,-0.7852489352,-0.7836652398,-0.779882133,-0.777418673,-0.7797941566,-0.7821695805,-0.7807619572,-0.7775066495,-0.7748672962,-0.7748672962,-0.7779465318,-0.7813777924,-0.7826094627,-0.7834013104,-0.7836652398,-0.783313334,-0.7835772634,-0.7837532163,-0.7832252979,-0.783313334,-0.7836652398,-0.7835772634,-0.7839292288,-0.7835772634,-0.7810258865,-0.7787384391,-0.7781224847,-0.7766268849,-0.7748672962,-0.7738995552,-0.7731077671,-0.7725797892,-0.7725797892,-0.7728438377,-0.7733716965,-0.774251461,-0.775483191,-0.7767148614,-0.7770667672,-0.7765389085,-0.7770667672,-0.7782985568,-0.7777705789,-0.7756591439,-0.7735476494,-0.7717880011,-0.7710841894,-0.7715240717,-0.7726678848,-0.7753072381,-0.7790023685,-0.781113863,-0.7814657688,-0.7812018394,-0.7804100513,-0.7796182036,-0.7797061801,-0.7804100513,-0.7812018394,-0.7815537453,-0.7814657688,-0.781113863,-0.7807619572,-0.7804980278,-0.7804100513,-0.7803220749,-0.780146122,-0.7799701095,-0.7797061801,-0.7791783214,-0.7796182036,-0.7803220749,-0.7795302272,-0.7786504626,-0.7790023685,-0.7794422507,-0.7796182036,-0.7799701095,-0.780146122,-0.7799701095,-0.7797941566,-0.779882133,-0.7800580859,-0.7803220749,-0.7804980278,-0.7804100513,-0.7802340984,-0.7804980278,-0.7805860043,-0.7803220749,-0.7803220749,-0.7795302272,-0.7768028378,-0.7741634846,-0.7729318142,-0.7723158598,-0.7723158598,-0.77328372,-0.7744274139,-0.7763629556,-0.7791783214,-0.7803220749,-0.7797061801,-0.7782985568,-0.7761870027,-0.7746033669,-0.7740755081,-0.7734596729,-0.7724038363,-0.7713481188,-0.7705563307,-0.7701163888,-0.7699404359,-0.770996213,-0.7744274139,-0.7772427201,-0.7779465318,-0.7781224847,-0.7791783214,-0.7812018394,-0.783049345,-0.7823455334,-0.7808499336,-0.781113863,-0.7819936275,-0.7809379101,-0.7791783214,-0.7796182036,-0.7812018394,-0.7814657688,-0.7812898159,-0.7812018394,-0.7782985568,-0.7751312256,-0.7760990262,-0.7788264155,-0.7809379101,-0.7823455334,-0.7796182036,-0.7775066495,-0.7806739807,-0.7843691111,-0.7853369117,-0.785600841,-0.7858647704,-0.7861286998,-0.7862166762,-0.7862166762,-0.7862166762,-0.7860407233,-0.7858647704,-0.785776794,-0.7859527469,-0.7862166762,-0.7860407233,-0.7858647704,-0.7858647704,-0.7858647704,-0.785776794,-0.785776794,-0.785776794,-0.785600841,-0.7852489352,-0.7853369117,-0.7856888175,-0.7858647704,-0.785776794,-0.7858647704,-0.7858647704,-0.785600841,-0.7856888175,-0.7861286998,-0.7861286998,-0.7860407233,-0.7861286998,-0.7861286998,-0.7861286998,-0.7859527469,-0.7859527469,-0.7861286998,-0.7861286998,-0.7862166762,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7862166762,-0.7863046527,-0.7862166762,-0.7862166762,-0.7861286998,-0.7860407233,-0.7859527469,-0.7859527469,-0.7862166762,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7858647704,-0.7859527469,-0.7859527469,-0.785776794,-0.7856888175,-0.7860407233,-0.7862166762,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7859527469,-0.7855128646,-0.7847210169,-0.7818176746,-0.7777705789,-0.7778585553,-0.7812018394,-0.7813777924,-0.7787384391,-0.7755711675,-0.7739875317,-0.7756591439,-0.7791783214,-0.782081604,-0.783313334,-0.7838411927,-0.7840172052,-0.7837532163,-0.7835772634,-0.783313334,-0.783049345,-0.7832252979,-0.7835772634,-0.7836652398,-0.7836652398,-0.7838411927,-0.7826094627,-0.7799701095,-0.7791783214,-0.7788264155,-0.7767148614,-0.7751312256,-0.7746033669,-0.7737236023,-0.7731077671,-0.7730197906,-0.7733716965,-0.774251461,-0.7753952146,-0.7762749791,-0.7763629556,-0.7762749791,-0.7771547437,-0.7782985568,-0.7776826024,-0.7759230733,-0.7743394375,-0.7731077671,-0.7724038363,-0.7726678848,-0.7735476494,-0.7763629556,-0.7797061801,-0.7809379101,-0.7806739807,-0.7806739807,-0.7805860043,-0.780146122,-0.7799701095,-0.7804100513,-0.7812018394,-0.7813777924,-0.7810258865,-0.7807619572,-0.7804980278,-0.7803220749,-0.7802340984,-0.7802340984,-0.7800580859,-0.7800580859,-0.7797941566,-0.7791783214,-0.7793542743,-0.780146122,-0.7797061801,-0.7788264155,-0.7790903449,-0.7794422507,-0.7794422507,-0.7797941566,-0.780146122,-0.7800580859,-0.779882133,-0.7797941566,-0.7797061801,-0.779882133,-0.7802340984,-0.7803220749,-0.7803220749,-0.7804100513,-0.7805860043,-0.7804980278,-0.7805860043,-0.7799701095,-0.7776826024,-0.7749552727,-0.7737236023,-0.7731957436,-0.7731957436,-0.7740755081,-0.7753072381,-0.7768908143,-0.778914392,-0.7799701095,-0.7796182036,-0.7781224847,-0.7761870027,-0.7748672962,-0.7743394375,-0.7735476494,-0.7724918127,-0.7717880011,-0.7712601423,-0.770996213,-0.7707322836,-0.7712601423,-0.7741634846,-0.7769787908,-0.7772427201,-0.7773306966,-0.7797061801,-0.7827854156,-0.7840172052,-0.7823455334,-0.7808499336,-0.7809379101,-0.7817296982,-0.7815537453,-0.7804100513,-0.7797941566,-0.7807619572,-0.7812018394,-0.7810258865,-0.781113863,-0.7790903449,-0.7750432491,-0.7744274139,-0.777418673,-0.779882133,-0.782081604,-0.781113863,-0.7772427201,-0.7772427201,-0.7817296982,-0.7844570875,-0.7852489352,-0.7856888175,-0.7860407233,-0.7861286998,-0.7862166762,-0.7862166762,-0.7860407233,-0.7860407233,-0.7860407233,-0.7860407233,-0.7863046527,-0.7862166762,-0.7860407233,-0.7859527469,-0.7858647704,-0.7858647704,-0.7859527469,-0.7860407233,-0.785776794,-0.785600841,-0.7856888175,-0.785776794,-0.785776794,-0.785776794,-0.7861286998,-0.7861286998,-0.7858647704,-0.7859527469,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7860407233,-0.7858647704,-0.7859527469,-0.7861286998,-0.7862166762,-0.7863926291,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7862166762,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7861286998,-0.7860407233,-0.7861286998,-0.7862166762,-0.7861286998,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7861286998,-0.7858647704,-0.785776794,-0.7859527469,-0.7861286998,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7861286998,-0.7856888175,-0.7850729823,-0.783313334,-0.7794422507,-0.7772427201,-0.7792662978,-0.7813777924,-0.7795302272,-0.7763629556,-0.7736356258,-0.7737236023,-0.7768028378,-0.779882133,-0.7819056511,-0.7832252979,-0.7840172052,-0.7842811346,-0.7836652398,-0.7826094627,-0.7819936275,-0.7823455334,-0.7831373215,-0.7835772634,-0.7836652398,-0.7839292288,-0.7842811346,-0.7838411927,-0.7816417217,-0.7806739807,-0.7806739807,-0.7784745097,-0.776450932,-0.7761870027,-0.7753952146,-0.7738995552,-0.77328372,-0.7734596729,-0.774251461,-0.7755711675,-0.7763629556,-0.7762749791,-0.7761870027,-0.7771547437,-0.7780345082,-0.7777705789,-0.7765389085,-0.7751312256,-0.7740755081,-0.7737236023,-0.7738115788,-0.7747793198,-0.7775946259,-0.7802340984,-0.7807619572,-0.7805860043,-0.7806739807,-0.7806739807,-0.7805860043,-0.7804980278,-0.7807619572,-0.7810258865,-0.7810258865,-0.7806739807,-0.7805860043,-0.7804100513,-0.780146122,-0.7800580859,-0.780146122,-0.780146122,-0.7799701095,-0.7797061801,-0.7791783214,-0.7792662978,-0.7799701095,-0.7797061801,-0.7788264155,-0.7790023685,-0.7793542743,-0.7793542743,-0.7797941566,-0.7802340984,-0.780146122,-0.779882133,-0.7797061801,-0.7794422507,-0.7797061801,-0.7802340984,-0.7806739807,-0.7805860043,-0.7804980278,-0.7805860043,-0.7804980278,-0.7805860043,-0.7802340984,-0.7783865333,-0.7757471204,-0.7743394375,-0.7740755081,-0.774251461,-0.7748672962,-0.7760990262,-0.777418673,-0.7784745097,-0.7793542743,-0.7794422507,-0.7779465318,-0.7760110497,-0.7752192616,-0.7747793198,-0.7736356258,-0.7726678848,-0.7722278833,-0.7717880011,-0.7715240717,-0.7717880011,-0.7724038363,-0.7746033669,-0.7771547437,-0.7777705789,-0.7788264155,-0.7817296982,-0.7838411927,-0.7838411927,-0.7823455334,-0.7812898159,-0.7815537453,-0.7825214863,-0.7823455334,-0.7809379101,-0.7805860043,-0.7815537453,-0.7816417217,-0.781113863,-0.781113863,-0.779882133,-0.7758350968,-0.7735476494,-0.7759230733,-0.778914392,-0.7812018394,-0.7816417217,-0.7779465318,-0.7738995552,-0.7758350968,-0.7812018394,-0.784545064,-0.7854248881,-0.7858647704,-0.7861286998,-0.7861286998,-0.7862166762,-0.7861286998,-0.7861286998,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7861286998,-0.7860407233,-0.7858647704,-0.7858647704,-0.7860407233,-0.7858647704,-0.7858647704,-0.785776794,-0.785600841,-0.7855128646,-0.7858647704,-0.7862166762,-0.7862166762,-0.7860407233,-0.7859527469,-0.7861286998,-0.7861286998,-0.7860407233,-0.7861286998,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7861286998,-0.7863046527,-0.7863926291,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7862166762,-0.7863046527,-0.7862166762,-0.7861286998,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7862166762,-0.7859527469,-0.7858647704,-0.7858647704,-0.7860407233,-0.7861286998,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7859527469,-0.7853369117,-0.7841931581,-0.7812018394,-0.7778585553,-0.7779465318,-0.780146122,-0.7804100513,-0.7775946259,-0.774251461,-0.7722278833,-0.7739875317,-0.7777705789,-0.7808499336,-0.7821695805,-0.7829613686,-0.7840172052,-0.7844570875,-0.7835772634,-0.7822575569,-0.7815537453,-0.7819056511,-0.7831373215,-0.7840172052,-0.7841931581,-0.7841051817,-0.7844570875,-0.784545064,-0.7832252979,-0.7816417217,-0.7808499336,-0.7790023685,-0.7766268849,-0.776450932,-0.7766268849,-0.7748672962,-0.7735476494,-0.7737236023,-0.7746913433,-0.7760990262,-0.7769787908,-0.7768028378,-0.7768908143,-0.777418673,-0.7777705789,-0.7780345082,-0.7771547437,-0.775483191,-0.7745153904,-0.7746033669,-0.7746913433,-0.7757471204,-0.7787384391,-0.7808499336,-0.7810258865,-0.7808499336,-0.781113863,-0.7810258865,-0.7808499336,-0.7809379101,-0.7809379101,-0.7807619572,-0.7806739807,-0.7805860043,-0.7805860043,-0.7804980278,-0.780146122,-0.7799701095,-0.7802340984,-0.780146122,-0.779882133,-0.7796182036,-0.7791783214,-0.7793542743,-0.7799701095,-0.7796182036,-0.7787384391,-0.7790023685,-0.7795302272,-0.7795302272,-0.7797941566,-0.7803220749,-0.780146122,-0.7797061801,-0.7795302272,-0.7795302272,-0.779882133,-0.7804100513,-0.7807619572,-0.7806739807,-0.7805860043,-0.7805860043,-0.7804980278,-0.7804100513,-0.7802340984,-0.778914392,-0.776450932,-0.7747793198,-0.7746033669,-0.7750432491,-0.7757471204,-0.7767148614,-0.7777705789,-0.7781224847,-0.7785624862,-0.7791783214,-0.7782985568,-0.7766268849,-0.7759230733,-0.7752192616,-0.7736356258,-0.7727558613,-0.7726678848,-0.7724038363,-0.7720519304,-0.7724918127,-0.7735476494,-0.7756591439,-0.7775946259,-0.7790023685,-0.781113863,-0.783313334,-0.7836652398,-0.7829613686,-0.7821695805,-0.7814657688,-0.7818176746,-0.7829613686,-0.7825214863,-0.7813777924,-0.7817296982,-0.7828733921,-0.7827854156,-0.7817296982,-0.7809379101,-0.779882133,-0.7768908143,-0.7735476494,-0.7743394375,-0.7776826024,-0.7803220749,-0.7812898159,-0.7787384391,-0.7736356258,-0.7728438377,-0.7781224847,-0.7832252979,-0.7852489352,-0.7856888175,-0.7860407233,-0.7861286998,-0.7860407233,-0.7861286998,-0.7861286998,-0.7863046527,-0.7862166762,-0.7861286998,-0.7860407233,-0.7861286998,-0.7861286998,-0.7860407233,-0.7858647704,-0.7859527469,-0.7860407233,-0.7861286998,-0.7861286998,-0.7858647704,-0.785600841,-0.7855128646,-0.7858647704,-0.7862166762,-0.7861286998,-0.7860407233,-0.7859527469,-0.7859527469,-0.7859527469,-0.7860407233,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863926291,-0.7863926291,-0.7862166762,-0.7860407233,-0.7859527469,-0.7859527469,-0.7861286998,-0.7862166762,-0.7862166762,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7861286998,-0.785776794,-0.7849849463,-0.7826974392,-0.7790903449,-0.7775066495,-0.7790023685,-0.780146122,-0.778914392,-0.7757471204,-0.7724038363,-0.7717880011,-0.7750432491,-0.7786504626,-0.7815537453,-0.7832252979,-0.7835772634,-0.7841931581,-0.7847210169,-0.7838411927,-0.7828733921,-0.7823455334,-0.7822575569,-0.7831373215,-0.7840172052,-0.7838411927,-0.7837532163,-0.7841051817,-0.7846330404,-0.7841931581,-0.7824335098,-0.7805860043,-0.7787384391,-0.7767148614,-0.7760110497,-0.7767148614,-0.7759230733,-0.774251461,-0.7739875317,-0.7752192616,-0.7768028378,-0.7777705789,-0.7777705789,-0.7778585553,-0.7779465318,-0.7779465318,-0.7782985568,-0.7775946259,-0.7759230733,-0.7749552727,-0.7753072381,-0.7755711675,-0.7768028378,-0.7796182036,-0.7812018394,-0.781113863,-0.7809379101,-0.7812018394,-0.7812018394,-0.7809379101,-0.7809379101,-0.7809379101,-0.7807619572,-0.7806739807,-0.7805860043,-0.7804980278,-0.7804100513,-0.780146122,-0.7800580859,-0.780146122,-0.7800580859,-0.779882133,-0.7796182036,-0.7791783214,-0.7794422507,-0.779882133,-0.7793542743,-0.7786504626,-0.7790023685,-0.7795302272,-0.7795302272,-0.7797941566,-0.7803220749,-0.780146122,-0.7796182036,-0.7795302272,-0.7796182036,-0.779882133,-0.7803220749,-0.7806739807,-0.7806739807,-0.7806739807,-0.7806739807,-0.7804980278,-0.7803220749,-0.7802340984,-0.7794422507,-0.7772427201,-0.7753952146,-0.7750432491,-0.7756591439,-0.776450932,-0.7771547437,-0.7778585553,-0.7779465318,-0.7779465318,-0.778914392,-0.778914392,-0.7775066495,-0.7765389085,-0.7756591439,-0.7739875317,-0.7731077671,-0.7730197906,-0.7727558613,-0.7726678848,-0.7734596729,-0.7746033669,-0.7765389085,-0.7786504626,-0.7807619572,-0.7828733921,-0.7837532163,-0.783313334,-0.7826974392,-0.782081604,-0.7816417217,-0.7824335098,-0.783313334,-0.7826094627,-0.7817296982,-0.7823455334,-0.783313334,-0.7832252979,-0.7826094627,-0.7813777924,-0.7797061801,-0.7777705789,-0.7743394375,-0.7729318142,-0.775483191,-0.7788264155,-0.7803220749,-0.7793542743,-0.7768908143,-0.7765389085,-0.7792662978,-0.7826094627,-0.7848089933,-0.785600841,-0.7860407233,-0.7861286998,-0.7860407233,-0.7862166762,-0.7863046527,-0.7862166762,-0.7861286998,-0.7859527469,-0.7858647704,-0.7860407233,-0.7861286998,-0.7859527469,-0.7858647704,-0.7860407233,-0.7862166762,-0.7862166762,-0.7862166762,-0.7860407233,-0.7858647704,-0.785776794,-0.7861286998,-0.7863046527,-0.7862166762,-0.7862166762,-0.7860407233,-0.7859527469,-0.7861286998,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7866565585,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7861286998,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7862166762,-0.7859527469,-0.785600841,-0.7840172052,-0.7807619572,-0.7779465318,-0.7782985568,-0.7795302272,-0.7790903449,-0.7773306966,-0.7738995552,-0.77082026,-0.7724038363,-0.7768028378,-0.7792662978,-0.7817296982,-0.7837532163,-0.7841051817,-0.7844570875,-0.784545064,-0.7839292288,-0.7835772634,-0.7828733921,-0.7825214863,-0.783049345,-0.7834892869,-0.7831373215,-0.7829613686,-0.7834013104,-0.7841051817,-0.7843691111,-0.783313334,-0.7812898159,-0.7790903449,-0.7772427201,-0.7762749791,-0.7767148614,-0.7766268849,-0.7753072381,-0.7746033669,-0.775483191,-0.777418673,-0.7784745097,-0.7785624862,-0.7787384391,-0.7786504626,-0.7782985568,-0.7784745097,-0.7778585553,-0.776450932,-0.7755711675,-0.7759230733,-0.7766268849,-0.7780345082,-0.7803220749,-0.7814657688,-0.781113863,-0.7809379101,-0.781113863,-0.781113863,-0.7809379101,-0.7809379101,-0.7810258865,-0.7807619572,-0.7805860043,-0.7804100513,-0.7803220749,-0.7802340984,-0.7800580859,-0.7799701095,-0.7800580859,-0.7799701095,-0.779882133,-0.7796182036,-0.7791783214,-0.7793542743,-0.7797061801,-0.7792662978,-0.7787384391,-0.7790903449,-0.7794422507,-0.7794422507,-0.7797061801,-0.7802340984,-0.780146122,-0.7797941566,-0.7797061801,-0.7797941566,-0.7799701095,-0.7803220749,-0.7806739807,-0.7808499336,-0.7807619572,-0.7807619572,-0.7806739807,-0.7804980278,-0.7804100513,-0.779882133,-0.7780345082,-0.7761870027,-0.7757471204,-0.7763629556,-0.7770667672,-0.7776826024,-0.7779465318,-0.7778585553,-0.7779465318,-0.7790023685,-0.7795302272,-0.7782104611,-0.7769787908,-0.7759230733,-0.7746033669,-0.7738995552,-0.7736356258,-0.77328372,-0.7737236023,-0.7747793198,-0.7760110497,-0.7779465318,-0.7803220749,-0.7824335098,-0.7834892869,-0.7835772634,-0.7831373215,-0.7826974392,-0.782081604,-0.7822575569,-0.7834892869,-0.7837532163,-0.7826094627,-0.7819056511,-0.7821695805,-0.7829613686,-0.783049345,-0.783049345,-0.7823455334,-0.7803220749,-0.7786504626,-0.7757471204,-0.7723158598,-0.7731077671,-0.7766268849,-0.778914392,-0.7791783214,-0.7788264155,-0.7793542743,-0.7803220749,-0.7817296982,-0.7839292288,-0.7852489352,-0.7859527469,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7860407233,-0.7861286998,-0.7862166762,-0.7862166762,-0.7861286998,-0.7860407233,-0.7861286998,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7861286998,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7859527469,-0.7859527469,-0.7862166762,-0.7863046527,-0.7862166762,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863046527,-0.7862166762,-0.7863046527,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7861286998,-0.785776794,-0.7848969698,-0.7823455334,-0.7790023685,-0.7775066495,-0.7783865333,-0.7787384391,-0.7779465318,-0.7760990262,-0.7718759775,-0.7700284123,-0.7740755081,-0.7783865333,-0.780146122,-0.7823455334,-0.7839292288,-0.7840172052,-0.7836652398,-0.7829613686,-0.7832252979,-0.7836652398,-0.7827854156,-0.7822575569,-0.7829613686,-0.783049345,-0.7823455334,-0.7822575569,-0.7825214863,-0.7832252979,-0.7838411927,-0.7836652398,-0.7826974392,-0.7806739807,-0.7783865333,-0.7773306966,-0.7772427201,-0.7770667672,-0.7763629556,-0.7756591439,-0.7760110497,-0.7777705789,-0.778914392,-0.7790903449,-0.7796182036,-0.7792662978,-0.7784745097,-0.7783865333,-0.7779465318,-0.7768908143,-0.7761870027,-0.7766268849,-0.7775946259,-0.7790903449,-0.7809379101,-0.7816417217,-0.7812018394,-0.7809379101,-0.7809379101,-0.7810258865,-0.7810258865,-0.781113863,-0.7809379101,-0.7806739807,-0.7804980278,-0.7802340984,-0.780146122,-0.7799701095,-0.779882133,-0.7799701095,-0.7800580859,-0.7800580859,-0.779882133,-0.7796182036,-0.7792662978,-0.7793542743,-0.7796182036,-0.7791783214,-0.7787384391,-0.7790903449,-0.7794422507,-0.7795302272,-0.7797061801,-0.7800580859,-0.7799701095,-0.7797941566,-0.7797941566,-0.779882133,-0.780146122,-0.7804980278,-0.7808499336,-0.7809379101,-0.7809379101,-0.7808499336,-0.7808499336,-0.7806739807,-0.7805860043,-0.7802340984,-0.7787384391,-0.7770667672,-0.7765389085,-0.7770667672,-0.7777705789,-0.7780345082,-0.7779465318,-0.7778585553,-0.7780345082,-0.7792662978,-0.780146122,-0.7788264155,-0.7773306966,-0.7762749791,-0.7752192616,-0.7746033669,-0.7744274139,-0.7744274139,-0.7750432491,-0.7760990262,-0.7778585553,-0.7799701095,-0.7818176746,-0.7829613686,-0.7834013104,-0.7832252979,-0.7829613686,-0.7826094627,-0.7819056511,-0.7823455334,-0.7838411927,-0.7837532163,-0.7826974392,-0.7819936275,-0.7815537453,-0.7818176746,-0.7826974392,-0.7835772634,-0.7829613686,-0.7813777924,-0.7804980278,-0.7776826024,-0.7725797892,-0.7713481188,-0.7747793198,-0.7778585553,-0.7790023685,-0.7790903449,-0.7784745097,-0.7780345082,-0.7797061801,-0.7829613686,-0.7848969698,-0.7856888175,-0.7861286998,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7859527469,-0.7860407233,-0.7863046527,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863046527,-0.7861286998,-0.7859527469,-0.7854248881,-0.7836652398,-0.7804980278,-0.7779465318,-0.777418673,-0.7776826024,-0.7775066495,-0.7768908143,-0.7741634846,-0.7702043653,-0.7710841894,-0.776450932,-0.7797941566,-0.7812018394,-0.7829613686,-0.7839292288,-0.7834013104,-0.7822575569,-0.7816417217,-0.7825214863,-0.7834892869,-0.7828733921,-0.7822575569,-0.7827854156,-0.7826094627,-0.7819056511,-0.7819056511,-0.7819056511,-0.7823455334,-0.7832252979,-0.7834892869,-0.7832252979,-0.7821695805,-0.780146122,-0.7787384391,-0.7782985568,-0.7777705789,-0.7771547437,-0.7768908143,-0.7769787908,-0.7779465318,-0.778914392,-0.7794422507,-0.7802340984,-0.779882133,-0.7788264155,-0.7784745097,-0.7782104611,-0.7776826024,-0.7772427201,-0.7775066495,-0.7782985568,-0.7794422507,-0.7810258865,-0.7817296982,-0.7813777924,-0.781113863,-0.781113863,-0.7809379101,-0.7810258865,-0.7812018394,-0.7809379101,-0.7804980278,-0.7803220749,-0.780146122,-0.7799701095,-0.779882133,-0.7799701095,-0.7799701095,-0.7799701095,-0.7799701095,-0.7797941566,-0.7795302272,-0.7792662978,-0.7794422507,-0.7796182036,-0.7791783214,-0.7788264155,-0.7791783214,-0.7795302272,-0.7795302272,-0.7797941566,-0.7800580859,-0.779882133,-0.7795302272,-0.7795302272,-0.7797941566,-0.780146122,-0.7806739807,-0.7809379101,-0.7809379101,-0.7810258865,-0.781113863,-0.7812018394,-0.781113863,-0.7809379101,-0.7804980278,-0.7792662978,-0.7778585553,-0.777418673,-0.7780345082,-0.7784745097,-0.7782104611,-0.7780345082,-0.7779465318,-0.7781224847,-0.7793542743,-0.7804980278,-0.7793542743,-0.7777705789,-0.776450932,-0.7757471204,-0.7755711675,-0.775483191,-0.7759230733,-0.7768028378,-0.7778585553,-0.779882133,-0.7819056511,-0.7827854156,-0.7829613686,-0.7831373215,-0.7829613686,-0.7827854156,-0.7825214863,-0.7817296982,-0.782081604,-0.7834892869,-0.783313334,-0.7823455334,-0.7818176746,-0.7810258865,-0.7806739807,-0.7819056511,-0.7834013104,-0.783049345,-0.782081604,-0.7818176746,-0.7796182036,-0.7738995552,-0.7705563307,-0.7731077671,-0.7767148614,-0.7782985568,-0.7791783214,-0.7782104611,-0.7762749791,-0.7777705789,-0.782081604,-0.784545064,-0.7855128646,-0.7860407233,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863046527,-0.7862166762,-0.7861286998,-0.7862166762,-0.7862166762,-0.7861286998,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863926291,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863046527,-0.7861286998,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7860407233,-0.785776794,-0.7848969698,-0.782081604,-0.7784745097,-0.7773306966,-0.7778585553,-0.7770667672,-0.7766268849,-0.7757471204,-0.7717880011,-0.7698524594,-0.7734596729,-0.7786504626,-0.7807619572,-0.7819056511,-0.783049345,-0.783313334,-0.7826094627,-0.7822575569,-0.7822575569,-0.7827854156,-0.7834892869,-0.7831373215,-0.7825214863,-0.7826094627,-0.7822575569,-0.7815537453,-0.7812898159,-0.7812018394,-0.7815537453,-0.7824335098,-0.7829613686,-0.7828733921,-0.7824335098,-0.7814657688,-0.780146122,-0.7795302272,-0.7786504626,-0.7773306966,-0.7771547437,-0.7776826024,-0.7781224847,-0.7786504626,-0.7795302272,-0.7806739807,-0.7805860043,-0.7795302272,-0.7790023685,-0.7786504626,-0.7785624862,-0.7784745097,-0.7784745097,-0.778914392,-0.7797061801,-0.7810258865,-0.7818176746,-0.7815537453,-0.7812898159,-0.7812018394,-0.7810258865,-0.781113863,-0.7812018394,-0.7809379101,-0.7804100513,-0.780146122,-0.7800580859,-0.779882133,-0.779882133,-0.7799701095,-0.7799701095,-0.779882133,-0.7797941566,-0.7797061801,-0.7795302272,-0.7793542743,-0.7794422507,-0.7795302272,-0.7791783214,-0.778914392,-0.7791783214,-0.7795302272,-0.7797941566,-0.7799701095,-0.780146122,-0.7797061801,-0.7793542743,-0.7793542743,-0.7797061801,-0.780146122,-0.7806739807,-0.7808499336,-0.7807619572,-0.7809379101,-0.7814657688,-0.7817296982,-0.7815537453,-0.7813777924,-0.7806739807,-0.7794422507,-0.7784745097,-0.7782985568,-0.7787384391,-0.7788264155,-0.7784745097,-0.7783865333,-0.7784745097,-0.7786504626,-0.7796182036,-0.7802340984,-0.7790023685,-0.7772427201,-0.7760990262,-0.7759230733,-0.7761870027,-0.7766268849,-0.7776826024,-0.778914392,-0.7803220749,-0.782081604,-0.7831373215,-0.7831373215,-0.7827854156,-0.7826094627,-0.7825214863,-0.7826094627,-0.7826094627,-0.7819056511,-0.7818176746,-0.7828733921,-0.7829613686,-0.7824335098,-0.7825214863,-0.782081604,-0.7813777924,-0.7819936275,-0.7828733921,-0.7826974392,-0.7821695805,-0.7819936275,-0.7805860043,-0.7760110497,-0.7710841894,-0.7713481188,-0.7749552727,-0.7768028378,-0.7782985568,-0.7781224847,-0.7756591439,-0.7763629556,-0.7807619572,-0.7838411927,-0.7851609588,-0.7858647704,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7861286998,-0.7858647704,-0.7853369117,-0.7838411927,-0.7803220749,-0.7766268849,-0.7761870027,-0.7769787908,-0.7762749791,-0.7761870027,-0.7741634846,-0.7698524594,-0.7705563307,-0.7756591439,-0.7800580859,-0.7814657688,-0.7821695805,-0.7829613686,-0.7829613686,-0.7827854156,-0.7832252979,-0.7834013104,-0.7831373215,-0.7834892869,-0.783313334,-0.7826974392,-0.7822575569,-0.7812898159,-0.7803220749,-0.7804980278,-0.7805860043,-0.7806739807,-0.7813777924,-0.782081604,-0.782081604,-0.7818176746,-0.7815537453,-0.7810258865,-0.780146122,-0.7790023685,-0.7775066495,-0.7769787908,-0.7779465318,-0.7786504626,-0.7788264155,-0.7797061801,-0.7810258865,-0.781113863,-0.7802340984,-0.7795302272,-0.7793542743,-0.7793542743,-0.7793542743,-0.7793542743,-0.7796182036,-0.780146122,-0.7812018394,-0.7819056511,-0.7817296982,-0.7813777924,-0.7812018394,-0.7810258865,-0.7812898159,-0.7812018394,-0.7808499336,-0.7804100513,-0.7802340984,-0.7799701095,-0.779882133,-0.7799701095,-0.7800580859,-0.7799701095,-0.779882133,-0.779882133,-0.7797061801,-0.7794422507,-0.7793542743,-0.7795302272,-0.7794422507,-0.7791783214,-0.7790023685,-0.7790903449,-0.7795302272,-0.7799701095,-0.7799701095,-0.779882133,-0.7795302272,-0.7791783214,-0.7792662978,-0.7795302272,-0.7799701095,-0.7805860043,-0.7808499336,-0.7806739807,-0.7808499336,-0.7813777924,-0.7818176746,-0.7816417217,-0.7813777924,-0.7805860043,-0.7794422507,-0.7790023685,-0.7790023685,-0.7791783214,-0.7790023685,-0.7787384391,-0.778914392,-0.7788264155,-0.7788264155,-0.7797941566,-0.7802340984,-0.7787384391,-0.7768028378,-0.7759230733,-0.7759230733,-0.7763629556,-0.7775066495,-0.7793542743,-0.7809379101,-0.7824335098,-0.7836652398,-0.7837532163,-0.783049345,-0.7822575569,-0.7818176746,-0.7818176746,-0.7821695805,-0.7825214863,-0.7819056511,-0.7815537453,-0.7824335098,-0.7828733921,-0.7829613686,-0.7834892869,-0.783313334,-0.7826974392,-0.7825214863,-0.7823455334,-0.7819936275,-0.7819936275,-0.7819936275,-0.7814657688,-0.7783865333,-0.7729318142,-0.7702924013,-0.7730197906,-0.7753952146,-0.7767148614,-0.7771547437,-0.7753072381,-0.7752192616,-0.7791783214,-0.7829613686,-0.7847210169,-0.785600841,-0.7860407233,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7860407233,-0.785600841,-0.7847210169,-0.7824335098,-0.7784745097,-0.7755711675,-0.7753952146,-0.7756591439,-0.7756591439,-0.7753072381,-0.7721399069,-0.7695005536,-0.7721399069,-0.7773306966,-0.781113863,-0.782081604,-0.7826974392,-0.783313334,-0.7834013104,-0.7834892869,-0.7840172052,-0.7839292288,-0.7834013104,-0.7836652398,-0.7834892869,-0.7828733921,-0.7821695805,-0.7806739807,-0.779882133,-0.7804100513,-0.7804980278,-0.779882133,-0.7800580859,-0.7808499336,-0.781113863,-0.7809379101,-0.7812018394,-0.7812898159,-0.7804980278,-0.7793542743,-0.7783865333,-0.7775946259,-0.7779465318,-0.778914392,-0.7792662978,-0.7799701095,-0.781113863,-0.7812018394,-0.7804100513,-0.7797941566,-0.7797061801,-0.7797061801,-0.7797061801,-0.7797941566,-0.7799701095,-0.7805860043,-0.7814657688,-0.7819056511,-0.7818176746,-0.7815537453,-0.7812018394,-0.7810258865,-0.7812898159,-0.7812018394,-0.7808499336,-0.7804980278,-0.7803220749,-0.780146122,-0.7800580859,-0.780146122,-0.7802340984,-0.7800580859,-0.7797941566,-0.7797941566,-0.7796182036,-0.7792662978,-0.7791783214,-0.7795302272,-0.7793542743,-0.7790903449,-0.7790903449,-0.7790903449,-0.7794422507,-0.779882133,-0.779882133,-0.7797061801,-0.7795302272,-0.7793542743,-0.7793542743,-0.7794422507,-0.7797941566,-0.7804100513,-0.7810258865,-0.7809379101,-0.7807619572,-0.7810258865,-0.781113863,-0.781113863,-0.7810258865,-0.7804980278,-0.7797941566,-0.7795302272,-0.7797061801,-0.7795302272,-0.7790903449,-0.7793542743,-0.7796182036,-0.778914392,-0.7790023685,-0.780146122,-0.7805860043,-0.7788264155,-0.7768908143,-0.776450932,-0.7768028378,-0.7773306966,-0.7787384391,-0.7805860043,-0.7819936275,-0.783049345,-0.7836652398,-0.7834892869,-0.7826094627,-0.7814657688,-0.7808499336,-0.781113863,-0.7818176746,-0.7822575569,-0.7816417217,-0.781113863,-0.7817296982,-0.7826094627,-0.783313334,-0.7841051817,-0.7839292288,-0.7834013104,-0.7826974392,-0.7815537453,-0.7810258865,-0.7813777924,-0.7818176746,-0.7814657688,-0.7796182036,-0.7753072381,-0.7706443071,-0.7714360952,-0.774251461,-0.7755711675,-0.7761870027,-0.7751312256,-0.7743394375,-0.7776826024,-0.782081604,-0.7842811346,-0.7853369117,-0.7858647704,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7858647704,-0.7852489352,-0.7837532163,-0.7807619572,-0.7769787908,-0.7749552727,-0.7747793198,-0.7746913433,-0.7751312256,-0.7736356258,-0.7703803778,-0.7702924013,-0.7741634846,-0.778914392,-0.7819936275,-0.7826094627,-0.7831373215,-0.7836652398,-0.7838411927,-0.7841931581,-0.7842811346,-0.7835772634,-0.783313334,-0.7838411927,-0.7839292288,-0.7834892869,-0.7826094627,-0.7813777924,-0.7806739807,-0.7807619572,-0.7804980278,-0.7796182036,-0.7792662978,-0.7795302272,-0.7799701095,-0.7802340984,-0.7805860043,-0.7812018394,-0.7810258865,-0.780146122,-0.7794422507,-0.7785624862,-0.7780345082,-0.7787384391,-0.7797061801,-0.7805860043,-0.7813777924,-0.7812018394,-0.7804980278,-0.780146122,-0.7797941566,-0.7795302272,-0.7795302272,-0.7797061801,-0.7799701095,-0.7806739807,-0.7812898159,-0.7817296982,-0.7818176746,-0.7815537453,-0.7812018394,-0.781113863,-0.7812898159,-0.7812018394,-0.7808499336,-0.7804980278,-0.7803220749,-0.7802340984,-0.7802340984,-0.7803220749,-0.7803220749,-0.7800580859,-0.7797941566,-0.7797941566,-0.7796182036,-0.7791783214,-0.7790903449,-0.7794422507,-0.7792662978,-0.7788264155,-0.7788264155,-0.7790023685,-0.7793542743,-0.7797061801,-0.7797061801,-0.7797941566,-0.7797061801,-0.7794422507,-0.7792662978,-0.7793542743,-0.7796182036,-0.780146122,-0.7807619572,-0.7809379101,-0.7808499336,-0.7809379101,-0.7808499336,-0.7807619572,-0.7807619572,-0.7804100513,-0.780146122,-0.7800580859,-0.780146122,-0.7797941566,-0.7795302272,-0.7799701095,-0.780146122,-0.7792662978,-0.7794422507,-0.7805860043,-0.7805860043,-0.7787384391,-0.7773306966,-0.777418673,-0.7781224847,-0.778914392,-0.780146122,-0.7812018394,-0.7819936275,-0.7825214863,-0.7826094627,-0.782081604,-0.781113863,-0.7803220749,-0.780146122,-0.7807619572,-0.7815537453,-0.7819936275,-0.7814657688,-0.7805860043,-0.7809379101,-0.7823455334,-0.7835772634,-0.7842811346,-0.7841931581,-0.7839292288,-0.7832252979,-0.7818176746,-0.781113863,-0.7812018394,-0.7815537453,-0.781113863,-0.7800580859,-0.777418673,-0.7722278833,-0.7704683542,-0.7731957436,-0.7749552727,-0.7753952146,-0.7751312256,-0.7738115788,-0.7760110497,-0.7808499336,-0.7837532163,-0.7849849463,-0.7856888175,-0.7862166762,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7862166762,-0.7860407233,-0.7856888175,-0.7847210169,-0.7826094627,-0.7791783214,-0.7756591439,-0.7743394375,-0.7738995552,-0.7740755081,-0.7743394375,-0.771963954,-0.7695005536,-0.7711721659,-0.7759230733,-0.7803220749,-0.7822575569,-0.7826974392,-0.783313334,-0.7839292288,-0.7843691111,-0.7844570875,-0.7837532163,-0.783049345,-0.783313334,-0.7838411927,-0.7838411927,-0.7835772634,-0.783049345,-0.7821695805,-0.7812898159,-0.7807619572,-0.7804100513,-0.7795302272,-0.778914392,-0.7790023685,-0.7792662978,-0.7796182036,-0.7799701095,-0.7805860043,-0.781113863,-0.7808499336,-0.7803220749,-0.7794422507,-0.7784745097,-0.7786504626,-0.7799701095,-0.781113863,-0.7816417217,-0.7813777924,-0.7807619572,-0.7804100513,-0.7799701095,-0.7796182036,-0.7797061801,-0.7797941566,-0.7800580859,-0.7807619572,-0.7812018394,-0.7814657688,-0.7817296982,-0.7815537453,-0.7812898159,-0.7812018394,-0.7813777924,-0.7813777924,-0.7809379101,-0.7804980278,-0.7803220749,-0.780146122,-0.7800580859,-0.7802340984,-0.7803220749,-0.780146122,-0.7797941566,-0.7797061801,-0.7796182036,-0.7791783214,-0.7790023685,-0.7793542743,-0.7790903449,-0.7786504626,-0.7787384391,-0.778914392,-0.7792662978,-0.7797061801,-0.7797061801,-0.7797061801,-0.7796182036,-0.7793542743,-0.7792662978,-0.7792662978,-0.7795302272,-0.7799701095,-0.7804100513,-0.7805860043,-0.7808499336,-0.7809379101,-0.7807619572,-0.7807619572,-0.7806739807,-0.7804980278,-0.7803220749,-0.7804100513,-0.7803220749,-0.779882133,-0.7797061801,-0.7800580859,-0.7800580859,-0.7797061801,-0.7800580859,-0.7808499336,-0.7805860043,-0.778914392,-0.7780345082,-0.7785624862,-0.7795302272,-0.7803220749,-0.7810258865,-0.7813777924,-0.7818176746,-0.782081604,-0.7818176746,-0.7809379101,-0.780146122,-0.7796182036,-0.7797061801,-0.7805860043,-0.7813777924,-0.7817296982,-0.7812018394,-0.7804100513,-0.7805860043,-0.7823455334,-0.7838411927,-0.7844570875,-0.7842811346,-0.7840172052,-0.7838411927,-0.7831373215,-0.7824335098,-0.7821695805,-0.782081604,-0.7818176746,-0.781113863,-0.7795302272,-0.7748672962,-0.7706443071,-0.7722278833,-0.7751312256,-0.7753952146,-0.7750432491,-0.7735476494,-0.7745153904,-0.7795302272,-0.783049345,-0.784545064,-0.7855128646,-0.7861286998,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7860407233,-0.785600841,-0.7842811346,-0.7814657688,-0.7775946259,-0.7748672962,-0.7745153904,-0.7745153904,-0.7748672962,-0.7738115788,-0.7709082365,-0.7698524594,-0.7729318142,-0.7776826024,-0.7812018394,-0.7824335098,-0.7831373215,-0.7839292288,-0.7843691111,-0.7844570875,-0.7840172052,-0.7831373215,-0.7829613686,-0.7835772634,-0.7838411927,-0.7834013104,-0.7829613686,-0.7829613686,-0.7826094627,-0.7815537453,-0.7808499336,-0.780146122,-0.7792662978,-0.7790903449,-0.7792662978,-0.7794422507,-0.7797941566,-0.7797941566,-0.779882133,-0.7804980278,-0.7810258865,-0.781113863,-0.7804100513,-0.7791783214,-0.7787384391,-0.7797941566,-0.7813777924,-0.7818176746,-0.7813777924,-0.7809379101,-0.7805860043,-0.7802340984,-0.779882133,-0.779882133,-0.7799701095,-0.7802340984,-0.7809379101,-0.7812898159,-0.7813777924,-0.7815537453,-0.7814657688,-0.7812018394,-0.781113863,-0.7812898159,-0.7814657688,-0.7810258865,-0.7804100513,-0.780146122,-0.779882133,-0.7797941566,-0.7800580859,-0.7803220749,-0.7800580859,-0.7797061801,-0.7796182036,-0.7795302272,-0.7790023685,-0.778914392,-0.7792662978,-0.7790903449,-0.7785624862,-0.7787384391,-0.7790023685,-0.7793542743,-0.7797061801,-0.7797061801,-0.7796182036,-0.7795302272,-0.7793542743,-0.7793542743,-0.7792662978,-0.7794422507,-0.7797941566,-0.780146122,-0.7804980278,-0.7807619572,-0.7808499336,-0.7808499336,-0.7808499336,-0.7806739807,-0.7804980278,-0.7804100513,-0.7804980278,-0.7803220749,-0.779882133,-0.7797941566,-0.780146122,-0.7802340984,-0.7802340984,-0.7806739807,-0.7812018394,-0.7806739807,-0.7795302272,-0.7791783214,-0.779882133,-0.7807619572,-0.781113863,-0.7812898159,-0.7815537453,-0.7819936275,-0.7819936275,-0.7812898159,-0.7804100513,-0.7799701095,-0.7795302272,-0.7797061801,-0.7804980278,-0.781113863,-0.7814657688,-0.7812898159,-0.7804980278,-0.7806739807,-0.7824335098,-0.7839292288,-0.7843691111,-0.7842811346,-0.7841051817,-0.7840172052,-0.7839292288,-0.7832252979,-0.7826094627,-0.7826094627,-0.7825214863,-0.7817296982,-0.7805860043,-0.7775066495,-0.7721399069,-0.7713481188,-0.7748672962,-0.7758350968,-0.7749552727,-0.7733716965,-0.7734596729,-0.7779465318,-0.7821695805,-0.7841051817,-0.7852489352,-0.7860407233,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863046527,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7859527469,-0.7853369117,-0.7835772634,-0.780146122,-0.776450932,-0.7743394375,-0.774251461,-0.7753072381,-0.7756591439,-0.7728438377,-0.7703803778,-0.7712601423,-0.7749552727,-0.7791783214,-0.7819056511,-0.7826094627,-0.783313334,-0.7842811346,-0.7846330404,-0.7841931581,-0.7836652398,-0.7834892869,-0.7838411927,-0.7841051817,-0.7838411927,-0.783313334,-0.7828733921,-0.7827854156,-0.7825214863,-0.7816417217,-0.7808499336,-0.780146122,-0.7794422507,-0.7790903449,-0.7793542743,-0.779882133,-0.7800580859,-0.7797061801,-0.7795302272,-0.7800580859,-0.7807619572,-0.7812018394,-0.7812018394,-0.7804100513,-0.7794422507,-0.779882133,-0.7813777924,-0.7819936275,-0.7815537453,-0.7810258865,-0.7807619572,-0.7802340984,-0.779882133,-0.7799701095,-0.7802340984,-0.7804100513,-0.7807619572,-0.781113863,-0.7812018394,-0.7813777924,-0.7812898159,-0.7812018394,-0.7812018394,-0.7812898159,-0.7812898159,-0.7809379101,-0.7804100513,-0.780146122,-0.779882133,-0.7797061801,-0.7800580859,-0.7803220749,-0.7800580859,-0.7797941566,-0.7797061801,-0.7794422507,-0.7788264155,-0.7785624862,-0.778914392,-0.7790903449,-0.7786504626,-0.7785624862,-0.7788264155,-0.7794422507,-0.7797061801,-0.7796182036,-0.7795302272,-0.7795302272,-0.7794422507,-0.7795302272,-0.7795302272,-0.7795302272,-0.7797941566,-0.780146122,-0.7805860043,-0.7808499336,-0.7808499336,-0.7808499336,-0.7809379101,-0.7806739807,-0.7804100513,-0.7804100513,-0.7804980278,-0.780146122,-0.779882133,-0.7799701095,-0.7802340984,-0.7804980278,-0.7805860043,-0.7810258865,-0.7814657688,-0.7808499336,-0.780146122,-0.7802340984,-0.7808499336,-0.7813777924,-0.7814657688,-0.7812898159,-0.7815537453,-0.7819936275,-0.7819056511,-0.781113863,-0.7802340984,-0.7797941566,-0.7796182036,-0.779882133,-0.7806739807,-0.7812898159,-0.7814657688,-0.7812898159,-0.7806739807,-0.7809379101,-0.7826974392,-0.7840172052,-0.7842811346,-0.7842811346,-0.7841931581,-0.7841051817,-0.7841051817,-0.7839292288,-0.7834013104,-0.7829613686,-0.7829613686,-0.7821695805,-0.7806739807,-0.7787384391,-0.7739875317,-0.770996213,-0.7737236023,-0.7760990262,-0.7751312256,-0.7731957436,-0.7725797892,-0.7763629556,-0.7812898159,-0.7838411927,-0.7850729823,-0.7859527469,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863046527,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863046527,-0.7862166762,-0.7860407233,-0.7859527469,-0.7856888175,-0.7848969698,-0.7823455334,-0.7786504626,-0.7753952146,-0.7735476494,-0.7738995552,-0.7756591439,-0.7750432491,-0.7713481188,-0.7703803778,-0.7728438377,-0.7768908143,-0.7807619572,-0.7824335098,-0.7827854156,-0.7835772634,-0.7843691111,-0.7843691111,-0.7838411927,-0.7834013104,-0.7836652398,-0.7843691111,-0.7841931581,-0.7837532163,-0.783313334,-0.7828733921,-0.7825214863,-0.7821695805,-0.7814657688,-0.7804100513,-0.7794422507,-0.7787384391,-0.7786504626,-0.7790903449,-0.7797061801,-0.7797061801,-0.7794422507,-0.7795302272,-0.7799701095,-0.7803220749,-0.7806739807,-0.7812018394,-0.7812898159,-0.7804100513,-0.780146122,-0.7812018394,-0.7819936275,-0.7817296982,-0.7812898159,-0.7809379101,-0.7803220749,-0.779882133,-0.7800580859,-0.7804100513,-0.7804980278,-0.7806739807,-0.781113863,-0.7812898159,-0.7814657688,-0.7812898159,-0.781113863,-0.781113863,-0.781113863,-0.7810258865,-0.7806739807,-0.7802340984,-0.779882133,-0.7796182036,-0.7796182036,-0.7799701095,-0.7802340984,-0.7800580859,-0.779882133,-0.7797061801,-0.7792662978,-0.7786504626,-0.7782985568,-0.7787384391,-0.7790903449,-0.7787384391,-0.7783865333,-0.7786504626,-0.7792662978,-0.7797061801,-0.7795302272,-0.7795302272,-0.7796182036,-0.7794422507,-0.7795302272,-0.7796182036,-0.7795302272,-0.7797941566,-0.7802340984,-0.7807619572,-0.7809379101,-0.7807619572,-0.7807619572,-0.7807619572,-0.7805860043,-0.7804100513,-0.7805860043,-0.7805860043,-0.780146122,-0.779882133,-0.779882133,-0.7802340984,-0.7806739807,-0.7807619572,-0.7812898159,-0.7817296982,-0.781113863,-0.7807619572,-0.7809379101,-0.7812898159,-0.7816417217,-0.7815537453,-0.7812898159,-0.7813777924,-0.7818176746,-0.7817296982,-0.7810258865,-0.7802340984,-0.7797941566,-0.7797061801,-0.7799701095,-0.7808499336,-0.7816417217,-0.7815537453,-0.7810258865,-0.7809379101,-0.7819056511,-0.783313334,-0.7842811346,-0.7843691111,-0.7841931581,-0.7841051817,-0.7841051817,-0.7841051817,-0.7841931581,-0.7841051817,-0.7836652398,-0.783049345,-0.782081604,-0.780146122,-0.7785624862,-0.7756591439,-0.7717880011,-0.7724918127,-0.7758350968,-0.7751312256,-0.7726678848,-0.7718759775,-0.7752192616,-0.7804100513,-0.7835772634,-0.7848969698,-0.785776794,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7864806056,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7862166762,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7859527469,-0.7854248881,-0.7841931581,-0.7812018394,-0.7771547437,-0.7739875317,-0.7724038363,-0.7733716965,-0.7751312256,-0.7735476494,-0.7702043653,-0.77082026,-0.7747793198,-0.7790903449,-0.7813777924,-0.7819936275,-0.7829613686,-0.7840172052,-0.7841051817,-0.7837532163,-0.7834892869,-0.7832252979,-0.7836652398,-0.7840172052,-0.783313334,-0.783049345,-0.7827854156,-0.782081604,-0.7817296982,-0.7814657688,-0.7805860043,-0.7790903449,-0.7777705789,-0.7777705789,-0.7787384391,-0.7792662978,-0.7793542743,-0.7790903449,-0.7790903449,-0.7794422507,-0.7797941566,-0.7799701095,-0.7802340984,-0.7808499336,-0.7813777924,-0.781113863,-0.7806739807,-0.7812018394,-0.7818176746,-0.7818176746,-0.7813777924,-0.7810258865,-0.7804980278,-0.7800580859,-0.7800580859,-0.7804100513,-0.7807619572,-0.7809379101,-0.781113863,-0.7813777924,-0.7815537453,-0.781113863,-0.7808499336,-0.7809379101,-0.7810258865,-0.7808499336,-0.7804100513,-0.7799701095,-0.7795302272,-0.7792662978,-0.7794422507,-0.7797941566,-0.7799701095,-0.7799701095,-0.7797941566,-0.7795302272,-0.7790903449,-0.7785624862,-0.7783865333,-0.778914392,-0.7792662978,-0.7788264155,-0.7782985568,-0.7783865333,-0.778914392,-0.7793542743,-0.7793542743,-0.7795302272,-0.7797061801,-0.7795302272,-0.7794422507,-0.7795302272,-0.7796182036,-0.7797061801,-0.7802340984,-0.7808499336,-0.7810258865,-0.7807619572,-0.7807619572,-0.7805860043,-0.7804100513,-0.7804980278,-0.7805860043,-0.7804980278,-0.780146122,-0.779882133,-0.779882133,-0.7803220749,-0.7807619572,-0.7810258865,-0.7814657688,-0.7816417217,-0.7813777924,-0.7812898159,-0.7813777924,-0.7814657688,-0.7815537453,-0.7815537453,-0.7812898159,-0.7813777924,-0.7818176746,-0.7818176746,-0.7810258865,-0.7803220749,-0.7799701095,-0.7796182036,-0.7797941566,-0.7807619572,-0.7817296982,-0.7817296982,-0.7813777924,-0.7816417217,-0.7826094627,-0.7837532163,-0.7844570875,-0.7846330404,-0.7843691111,-0.7841051817,-0.7841051817,-0.7842811346,-0.7842811346,-0.7841931581,-0.7841051817,-0.7834892869,-0.7824335098,-0.7805860043,-0.7783865333,-0.7761870027,-0.7726678848,-0.7717880011,-0.7749552727,-0.7746033669,-0.7716120481,-0.7711721659,-0.7743394375,-0.7791783214,-0.7828733921,-0.784545064,-0.7855128646,-0.7861286998,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7862166762,-0.7862166762,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7862166762,-0.785776794,-0.7850729823,-0.783313334,-0.7797941566,-0.7756591439,-0.7728438377,-0.771963954,-0.7733716965,-0.774251461,-0.7717880011,-0.7699404359,-0.7721399069,-0.776450932,-0.7796182036,-0.7807619572,-0.7818176746,-0.7834892869,-0.7840172052,-0.7834013104,-0.7826094627,-0.7824335098,-0.7826094627,-0.783049345,-0.7829613686,-0.7826974392,-0.7829613686,-0.7826094627,-0.7813777924,-0.7804100513,-0.779882133,-0.7791783214,-0.7783865333,-0.7779465318,-0.7785624862,-0.7792662978,-0.7795302272,-0.7796182036,-0.7794422507,-0.7793542743,-0.7796182036,-0.7797941566,-0.7797941566,-0.7799701095,-0.7803220749,-0.7808499336,-0.7812018394,-0.781113863,-0.781113863,-0.7815537453,-0.7817296982,-0.7813777924,-0.7809379101,-0.7805860043,-0.7800580859,-0.7800580859,-0.7804980278,-0.7808499336,-0.781113863,-0.7812018394,-0.7814657688,-0.7816417217,-0.7812018394,-0.7808499336,-0.7809379101,-0.7810258865,-0.7806739807,-0.7800580859,-0.7797061801,-0.7795302272,-0.7793542743,-0.7793542743,-0.7795302272,-0.7797061801,-0.7797941566,-0.7796182036,-0.7792662978,-0.7788264155,-0.7784745097,-0.7785624862,-0.7791783214,-0.7793542743,-0.7787384391,-0.7781224847,-0.7782104611,-0.7786504626,-0.7790023685,-0.7791783214,-0.7791783214,-0.7794422507,-0.7793542743,-0.7791783214,-0.7793542743,-0.7795302272,-0.7797061801,-0.7802340984,-0.7808499336,-0.7810258865,-0.7809379101,-0.7806739807,-0.7803220749,-0.7802340984,-0.7804100513,-0.7804100513,-0.7803220749,-0.7802340984,-0.7800580859,-0.7800580859,-0.7805860043,-0.7809379101,-0.781113863,-0.7814657688,-0.7815537453,-0.7814657688,-0.7815537453,-0.7814657688,-0.7814657688,-0.7816417217,-0.7815537453,-0.7812898159,-0.7813777924,-0.7817296982,-0.7817296982,-0.7813777924,-0.7809379101,-0.7805860043,-0.779882133,-0.7796182036,-0.7804980278,-0.7816417217,-0.7819936275,-0.7818176746,-0.782081604,-0.7828733921,-0.7836652398,-0.7841051817,-0.7843691111,-0.7841931581,-0.7839292288,-0.7839292288,-0.7841931581,-0.7842811346,-0.7841051817,-0.7841051817,-0.7836652398,-0.7829613686,-0.7819056511,-0.7794422507,-0.776450932,-0.7731957436,-0.7715240717,-0.774251461,-0.7745153904,-0.7712601423,-0.7706443071,-0.7734596729,-0.7780345082,-0.7825214863,-0.784545064,-0.7854248881,-0.7860407233,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863046527,-0.7862166762,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7856888175,-0.7847210169,-0.7824335098,-0.7783865333,-0.7746033669,-0.7723158598,-0.7721399069,-0.7736356258,-0.77328372,-0.7703803778,-0.7706443071,-0.7740755081,-0.7771547437,-0.7791783214,-0.781113863,-0.7827854156,-0.7837532163,-0.7837532163,-0.7827854156,-0.7814657688,-0.7807619572,-0.7809379101,-0.7815537453,-0.7819936275,-0.7829613686,-0.783313334,-0.7819936275,-0.780146122,-0.7788264155,-0.7782104611,-0.7785624862,-0.7792662978,-0.7797941566,-0.7799701095,-0.7797941566,-0.7802340984,-0.7810258865,-0.7810258865,-0.7805860043,-0.7805860043,-0.7804100513,-0.7797941566,-0.7797061801,-0.780146122,-0.7807619572,-0.7812018394,-0.7812898159,-0.7812018394,-0.7814657688,-0.7817296982,-0.7815537453,-0.7812018394,-0.7806739807,-0.7800580859,-0.7800580859,-0.7804980278,-0.7807619572,-0.7810258865,-0.7812898159,-0.7815537453,-0.7817296982,-0.7813777924,-0.7809379101,-0.7808499336,-0.7809379101,-0.7804980278,-0.7797061801,-0.7792662978,-0.7793542743,-0.7791783214,-0.7790023685,-0.7790903449,-0.7794422507,-0.7796182036,-0.7794422507,-0.7790023685,-0.7785624862,-0.7782104611,-0.7786504626,-0.7793542743,-0.7792662978,-0.7786504626,-0.7782985568,-0.7782985568,-0.7785624862,-0.778914392,-0.778914392,-0.778914392,-0.7791783214,-0.7791783214,-0.7790903449,-0.7792662978,-0.7794422507,-0.7797941566,-0.7804100513,-0.7808499336,-0.7810258865,-0.7810258865,-0.7806739807,-0.7802340984,-0.7803220749,-0.7804980278,-0.7803220749,-0.7802340984,-0.7803220749,-0.7802340984,-0.7804100513,-0.7808499336,-0.7810258865,-0.7812898159,-0.7814657688,-0.7814657688,-0.7814657688,-0.7815537453,-0.7815537453,-0.7817296982,-0.7817296982,-0.7814657688,-0.7812898159,-0.7813777924,-0.7816417217,-0.7818176746,-0.7817296982,-0.7815537453,-0.7814657688,-0.781113863,-0.7804980278,-0.7804100513,-0.781113863,-0.7815537453,-0.7817296982,-0.7823455334,-0.7828733921,-0.7831373215,-0.7834013104,-0.7835772634,-0.7834013104,-0.7829613686,-0.783049345,-0.7834892869,-0.7836652398,-0.7835772634,-0.7837532163,-0.7836652398,-0.7829613686,-0.7827854156,-0.7813777924,-0.7780345082,-0.7740755081,-0.7715240717,-0.7736356258,-0.7748672962,-0.7720519304,-0.7702924013,-0.7723158598,-0.7768908143,-0.7819936275,-0.7844570875,-0.7854248881,-0.7860407233,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7862166762,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7860407233,-0.785600841,-0.7843691111,-0.7814657688,-0.7771547437,-0.7738115788,-0.7720519304,-0.7724918127,-0.7738115788,-0.7721399069,-0.7698524594,-0.7721399069,-0.7757471204,-0.7778585553,-0.7797941566,-0.7821695805,-0.7835772634,-0.7838411927,-0.7834892869,-0.7829613686,-0.7823455334,-0.7812018394,-0.7807619572,-0.7813777924,-0.7824335098,-0.7836652398,-0.7832252979,-0.7806739807,-0.7781224847,-0.7771547437,-0.7777705789,-0.7791783214,-0.7803220749,-0.7809379101,-0.7809379101,-0.7810258865,-0.7815537453,-0.7821695805,-0.7822575569,-0.7818176746,-0.7815537453,-0.7812898159,-0.7808499336,-0.7807619572,-0.7809379101,-0.7812018394,-0.7814657688,-0.7814657688,-0.7813777924,-0.7813777924,-0.7814657688,-0.7814657688,-0.7812018394,-0.7808499336,-0.7803220749,-0.7802340984,-0.7804100513,-0.7806739807,-0.7810258865,-0.7813777924,-0.7816417217,-0.7817296982,-0.7814657688,-0.7809379101,-0.7808499336,-0.7808499336,-0.7802340984,-0.7793542743,-0.7787384391,-0.7787384391,-0.7786504626,-0.7785624862,-0.7787384391,-0.7791783214,-0.7795302272,-0.7794422507,-0.778914392,-0.7783865333,-0.7781224847,-0.7790023685,-0.7797061801,-0.7792662978,-0.7786504626,-0.7783865333,-0.7781224847,-0.7783865333,-0.778914392,-0.778914392,-0.778914392,-0.7790903449,-0.7790903449,-0.7790023685,-0.7791783214,-0.7794422507,-0.779882133,-0.7804980278,-0.7809379101,-0.7810258865,-0.7810258865,-0.7807619572,-0.7803220749,-0.7802340984,-0.7804100513,-0.7803220749,-0.7803220749,-0.7804100513,-0.7804980278,-0.7807619572,-0.7810258865,-0.7810258865,-0.7812018394,-0.7814657688,-0.7813777924,-0.7814657688,-0.7816417217,-0.7817296982,-0.7819936275,-0.7819056511,-0.7815537453,-0.7815537453,-0.7815537453,-0.7816417217,-0.7817296982,-0.7816417217,-0.7817296982,-0.7819936275,-0.7819936275,-0.7815537453,-0.7812018394,-0.7810258865,-0.7810258865,-0.7812018394,-0.7819056511,-0.7826974392,-0.783049345,-0.783313334,-0.7834892869,-0.783313334,-0.7827854156,-0.7826094627,-0.7826974392,-0.7826094627,-0.7822575569,-0.7826974392,-0.7834892869,-0.7836652398,-0.7834013104,-0.7821695805,-0.779882133,-0.776450932,-0.7723158598,-0.7728438377,-0.7750432491,-0.7731077671,-0.7707322836,-0.7723158598,-0.776450932,-0.7812898159,-0.7840172052,-0.7852489352,-0.7860407233,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7860407233,-0.7859527469,-0.7861286998,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7862166762,-0.7859527469,-0.7853369117,-0.7837532163,-0.780146122,-0.7759230733,-0.7728438377,-0.7718759775,-0.7736356258,-0.7739875317,-0.7712601423,-0.7702924013,-0.7736356258,-0.7769787908,-0.7790023685,-0.781113863,-0.7832252979,-0.7840172052,-0.7837532163,-0.7834013104,-0.783313334,-0.7831373215,-0.7824335098,-0.7824335098,-0.7831373215,-0.7838411927,-0.7838411927,-0.782081604,-0.778914392,-0.7771547437,-0.7775066495,-0.7788264155,-0.7800580859,-0.7810258865,-0.7816417217,-0.782081604,-0.7822575569,-0.7823455334,-0.7826974392,-0.7827854156,-0.7822575569,-0.782081604,-0.782081604,-0.7819936275,-0.7819936275,-0.7818176746,-0.7815537453,-0.7815537453,-0.7815537453,-0.7814657688,-0.7813777924,-0.7812898159,-0.7812898159,-0.781113863,-0.7808499336,-0.7804980278,-0.7803220749,-0.7804100513,-0.7804980278,-0.7808499336,-0.7812018394,-0.7814657688,-0.7816417217,-0.7814657688,-0.781113863,-0.7808499336,-0.7806739807,-0.7800580859,-0.7793542743,-0.7788264155,-0.7786504626,-0.7783865333,-0.7782985568,-0.7786504626,-0.7791783214,-0.7795302272,-0.7794422507,-0.7788264155,-0.7782985568,-0.7783865333,-0.7796182036,-0.7803220749,-0.7795302272,-0.7787384391,-0.7782985568,-0.7780345082,-0.7783865333,-0.7790023685,-0.7790903449,-0.778914392,-0.778914392,-0.7790903449,-0.7790023685,-0.7790023685,-0.7791783214,-0.7797941566,-0.7804980278,-0.7809379101,-0.7810258865,-0.7810258865,-0.7808499336,-0.7804980278,-0.7802340984,-0.780146122,-0.7803220749,-0.7804980278,-0.7806739807,-0.7806739807,-0.7808499336,-0.7810258865,-0.7810258865,-0.7812898159,-0.7813777924,-0.7812898159,-0.7813777924,-0.7816417217,-0.7817296982,-0.7819056511,-0.7819056511,-0.7818176746,-0.7819056511,-0.7818176746,-0.7816417217,-0.7815537453,-0.7813777924,-0.7815537453,-0.7819056511,-0.7819056511,-0.7817296982,-0.7815537453,-0.7812898159,-0.781113863,-0.781113863,-0.7817296982,-0.7828733921,-0.7834892869,-0.7837532163,-0.7837532163,-0.7835772634,-0.783313334,-0.7832252979,-0.7828733921,-0.7819936275,-0.7809379101,-0.7805860043,-0.7819056511,-0.7835772634,-0.7840172052,-0.7826094627,-0.7808499336,-0.7790023685,-0.7749552727,-0.77328372,-0.7752192616,-0.7739875317,-0.770996213,-0.7724038363,-0.776450932,-0.7807619572,-0.7836652398,-0.7851609588,-0.7860407233,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863046527,-0.7864806056,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863046527,-0.7861286998,-0.785776794,-0.7849849463,-0.7828733921,-0.7790023685,-0.7748672962,-0.771963954,-0.7721399069,-0.7745153904,-0.7735476494,-0.7707322836,-0.7713481188,-0.7750432491,-0.7778585553,-0.7802340984,-0.7826094627,-0.7841051817,-0.7841931581,-0.7834892869,-0.783049345,-0.7834013104,-0.7835772634,-0.7832252979,-0.7834892869,-0.7841931581,-0.7842811346,-0.7829613686,-0.7802340984,-0.7777705789,-0.7775066495,-0.7783865333,-0.7797061801,-0.7813777924,-0.7822575569,-0.7825214863,-0.7828733921,-0.7828733921,-0.7827854156,-0.783049345,-0.7832252979,-0.7827854156,-0.7821695805,-0.7819056511,-0.782081604,-0.7823455334,-0.782081604,-0.7817296982,-0.7817296982,-0.7817296982,-0.7813777924,-0.781113863,-0.7810258865,-0.781113863,-0.781113863,-0.7809379101,-0.7805860043,-0.7803220749,-0.7803220749,-0.7804100513,-0.7805860043,-0.7809379101,-0.781113863,-0.7813777924,-0.7814657688,-0.7812898159,-0.7810258865,-0.7806739807,-0.7800580859,-0.7794422507,-0.7790903449,-0.7788264155,-0.7786504626,-0.7785624862,-0.7787384391,-0.7791783214,-0.7794422507,-0.7792662978,-0.7786504626,-0.7782985568,-0.7790023685,-0.7807619572,-0.7812018394,-0.7799701095,-0.7788264155,-0.7782985568,-0.7781224847,-0.7784745097,-0.7790023685,-0.7792662978,-0.7790903449,-0.7790023685,-0.7790903449,-0.7790023685,-0.7788264155,-0.7790903449,-0.7797061801,-0.7804980278,-0.7808499336,-0.7810258865,-0.781113863,-0.7808499336,-0.7804980278,-0.7803220749,-0.7803220749,-0.7803220749,-0.7805860043,-0.7808499336,-0.7809379101,-0.7810258865,-0.781113863,-0.7810258865,-0.781113863,-0.7812898159,-0.7813777924,-0.7813777924,-0.7816417217,-0.7818176746,-0.782081604,-0.7819936275,-0.7819056511,-0.7819936275,-0.7819056511,-0.7814657688,-0.7812018394,-0.7812018394,-0.7814657688,-0.7816417217,-0.7815537453,-0.7813777924,-0.7812018394,-0.7810258865,-0.7812898159,-0.7815537453,-0.7813777924,-0.7818176746,-0.7829613686,-0.7838411927,-0.7840172052,-0.7836652398,-0.7831373215,-0.7832252979,-0.7832252979,-0.7824335098,-0.781113863,-0.779882133,-0.7808499336,-0.783049345,-0.7841931581,-0.7834013104,-0.7813777924,-0.7797061801,-0.7772427201,-0.7746913433,-0.7753072381,-0.7746033669,-0.7707322836,-0.7711721659,-0.7756591439,-0.7804980278,-0.7834892869,-0.7850729823,-0.7858647704,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7862166762,-0.7862166762,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863046527,-0.7860407233,-0.7856888175,-0.7846330404,-0.7819056511,-0.7777705789,-0.7736356258,-0.7713481188,-0.7728438377,-0.7747793198,-0.7725797892,-0.770996213,-0.77328372,-0.7767148614,-0.7794422507,-0.7819056511,-0.7836652398,-0.7843691111,-0.7840172052,-0.7831373215,-0.7831373215,-0.7838411927,-0.7840172052,-0.7838411927,-0.7841931581,-0.7844570875,-0.7832252979,-0.7804100513,-0.7782104611,-0.7775946259,-0.7777705789,-0.7785624862,-0.7804100513,-0.782081604,-0.7826974392,-0.7827854156,-0.783049345,-0.783049345,-0.7827854156,-0.7828733921,-0.7832252979,-0.783313334,-0.7827854156,-0.782081604,-0.7819936275,-0.7822575569,-0.7819936275,-0.7816417217,-0.7818176746,-0.7818176746,-0.7812898159,-0.7807619572,-0.7806739807,-0.7809379101,-0.7810258865,-0.7809379101,-0.7806739807,-0.7804100513,-0.7803220749,-0.7804100513,-0.7804980278,-0.7806739807,-0.7809379101,-0.781113863,-0.7813777924,-0.7812018394,-0.7809379101,-0.7806739807,-0.780146122,-0.7796182036,-0.7792662978,-0.7790023685,-0.7788264155,-0.7788264155,-0.7788264155,-0.7791783214,-0.7794422507,-0.7791783214,-0.7786504626,-0.7784745097,-0.779882133,-0.7818176746,-0.7819056511,-0.7804980278,-0.7790023685,-0.7782104611,-0.7781224847,-0.7784745097,-0.7790023685,-0.7794422507,-0.7793542743,-0.7790903449,-0.7790903449,-0.7790023685,-0.7788264155,-0.7790903449,-0.7797061801,-0.7804100513,-0.7809379101,-0.781113863,-0.7810258865,-0.7807619572,-0.7804980278,-0.7804100513,-0.7804980278,-0.7804980278,-0.7804980278,-0.7806739807,-0.7808499336,-0.7810258865,-0.7809379101,-0.7805860043,-0.7806739807,-0.7809379101,-0.7812898159,-0.7815537453,-0.7817296982,-0.7819936275,-0.7823455334,-0.7823455334,-0.7822575569,-0.7822575569,-0.7819936275,-0.7814657688,-0.781113863,-0.7809379101,-0.7812018394,-0.7813777924,-0.7813777924,-0.7813777924,-0.7812898159,-0.7809379101,-0.7812898159,-0.7819936275,-0.7815537453,-0.7806739807,-0.7816417217,-0.783313334,-0.7841051817,-0.7839292288,-0.783313334,-0.783049345,-0.7832252979,-0.7829613686,-0.7822575569,-0.7815537453,-0.7821695805,-0.7834013104,-0.7841051817,-0.7835772634,-0.7819056511,-0.7797061801,-0.7769787908,-0.7744274139,-0.7751312256,-0.7752192616,-0.7709082365,-0.7702043653,-0.7750432491,-0.7802340984,-0.7832252979,-0.7848969698,-0.7856888175,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7864806056,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863046527,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7862166762,-0.7859527469,-0.7855128646,-0.7840172052,-0.7806739807,-0.7761870027,-0.7723158598,-0.7715240717,-0.774251461,-0.7749552727,-0.7729318142,-0.7733716965,-0.7763629556,-0.7791783214,-0.7816417217,-0.7834013104,-0.7841931581,-0.7841931581,-0.783313334,-0.7827854156,-0.7834892869,-0.7841931581,-0.7842811346,-0.7842811346,-0.784545064,-0.7841051817,-0.7813777924,-0.7783865333,-0.7775066495,-0.7777705789,-0.7782104611,-0.7795302272,-0.7812018394,-0.7822575569,-0.7826094627,-0.7827854156,-0.7827854156,-0.7825214863,-0.7822575569,-0.7825214863,-0.7829613686,-0.7832252979,-0.7832252979,-0.7828733921,-0.7824335098,-0.7821695805,-0.7819056511,-0.7816417217,-0.7815537453,-0.7814657688,-0.7812898159,-0.7808499336,-0.7806739807,-0.7807619572,-0.7809379101,-0.7810258865,-0.7808499336,-0.7806739807,-0.7805860043,-0.7805860043,-0.7805860043,-0.7806739807,-0.7807619572,-0.7809379101,-0.7812018394,-0.7812018394,-0.7809379101,-0.7808499336,-0.7804980278,-0.7799701095,-0.7796182036,-0.7793542743,-0.7790023685,-0.7787384391,-0.7787384391,-0.7792662978,-0.7795302272,-0.7791783214,-0.7788264155,-0.7790023685,-0.7802340984,-0.7818176746,-0.782081604,-0.7809379101,-0.7792662978,-0.7782985568,-0.7782985568,-0.7787384391,-0.7791783214,-0.7795302272,-0.7794422507,-0.7790903449,-0.7790903449,-0.7790903449,-0.7790023685,-0.7791783214,-0.7796182036,-0.7803220749,-0.7810258865,-0.781113863,-0.7809379101,-0.7807619572,-0.7804100513,-0.7802340984,-0.7804980278,-0.7806739807,-0.7805860043,-0.7805860043,-0.7806739807,-0.7806739807,-0.7804980278,-0.7803220749,-0.7804100513,-0.7807619572,-0.7812018394,-0.7815537453,-0.7818176746,-0.7821695805,-0.7825214863,-0.7825214863,-0.7826094627,-0.7825214863,-0.7819936275,-0.7812898159,-0.781113863,-0.7810258865,-0.781113863,-0.7812898159,-0.7813777924,-0.7813777924,-0.7813777924,-0.7812018394,-0.7816417217,-0.7826094627,-0.7825214863,-0.781113863,-0.7807619572,-0.7821695805,-0.7836652398,-0.7839292288,-0.7837532163,-0.7836652398,-0.7835772634,-0.7835772634,-0.7832252979,-0.7826974392,-0.7829613686,-0.7837532163,-0.7841931581,-0.7834892869,-0.7819936275,-0.7800580859,-0.7772427201,-0.774251461,-0.7747793198,-0.7759230733,-0.771963954,-0.7698524594,-0.7738995552,-0.7796182036,-0.783049345,-0.7848089933,-0.785600841,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7864806056,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7862166762,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7862166762,-0.7858647704,-0.7852489352,-0.783313334,-0.7796182036,-0.7751312256,-0.7717000246,-0.7724038363,-0.775483191,-0.7746033669,-0.77328372,-0.7753952146,-0.7785624862,-0.7810258865,-0.7826974392,-0.7834013104,-0.7834892869,-0.7831373215,-0.7825214863,-0.7827854156,-0.7838411927,-0.7843691111,-0.784545064,-0.7846330404,-0.7841051817,-0.7825214863,-0.7803220749,-0.7790023685,-0.7788264155,-0.7792662978,-0.7800580859,-0.7810258865,-0.7819056511,-0.7823455334,-0.7825214863,-0.7826094627,-0.7821695805,-0.7816417217,-0.7813777924,-0.7817296982,-0.7825214863,-0.7828733921,-0.7828733921,-0.7829613686,-0.7829613686,-0.7825214863,-0.782081604,-0.7818176746,-0.7815537453,-0.7812898159,-0.781113863,-0.7809379101,-0.7808499336,-0.7807619572,-0.7808499336,-0.7810258865,-0.7809379101,-0.7805860043,-0.7804980278,-0.7805860043,-0.7806739807,-0.7807619572,-0.7808499336,-0.7809379101,-0.7810258865,-0.7809379101,-0.7808499336,-0.7808499336,-0.7805860043,-0.7800580859,-0.7797061801,-0.7794422507,-0.7790903449,-0.7788264155,-0.7788264155,-0.7792662978,-0.7796182036,-0.7792662978,-0.7791783214,-0.7794422507,-0.7799701095,-0.781113863,-0.7817296982,-0.7808499336,-0.7791783214,-0.7782985568,-0.7783865333,-0.778914392,-0.7793542743,-0.7796182036,-0.7795302272,-0.7790903449,-0.7790903449,-0.7790903449,-0.7790023685,-0.7791783214,-0.7796182036,-0.7802340984,-0.7807619572,-0.7810258865,-0.7809379101,-0.7807619572,-0.7804100513,-0.7802340984,-0.7804980278,-0.7808499336,-0.7808499336,-0.7805860043,-0.7804980278,-0.7804980278,-0.7804100513,-0.7804100513,-0.7805860043,-0.7809379101,-0.7813777924,-0.7819056511,-0.7822575569,-0.7825214863,-0.7826094627,-0.7825214863,-0.7826094627,-0.7825214863,-0.7818176746,-0.7812018394,-0.7810258865,-0.7808499336,-0.7808499336,-0.781113863,-0.7813777924,-0.7814657688,-0.7814657688,-0.7815537453,-0.7821695805,-0.783049345,-0.7834892869,-0.7822575569,-0.7805860043,-0.7807619572,-0.7823455334,-0.783313334,-0.7838411927,-0.7841051817,-0.7840172052,-0.7839292288,-0.7836652398,-0.7829613686,-0.7827854156,-0.7836652398,-0.7843691111,-0.7836652398,-0.7816417217,-0.7797941566,-0.7781224847,-0.7753072381,-0.7747793198,-0.776450932,-0.7733716965,-0.7696765065,-0.7724918127,-0.7787384391,-0.7826974392,-0.7846330404,-0.7856888175,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7863046527,-0.7864806056,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7861286998,-0.785776794,-0.7849849463,-0.7825214863,-0.7785624862,-0.7740755081,-0.7715240717,-0.7734596729,-0.7760110497,-0.7739875317,-0.7734596729,-0.7765389085,-0.7795302272,-0.7814657688,-0.7823455334,-0.7824335098,-0.7823455334,-0.782081604,-0.7822575569,-0.7831373215,-0.7841051817,-0.7844570875,-0.7847210169,-0.7848089933,-0.783049345,-0.7806739807,-0.780146122,-0.7802340984,-0.7803220749,-0.7808499336,-0.7812018394,-0.7815537453,-0.782081604,-0.7822575569,-0.782081604,-0.7817296982,-0.7812018394,-0.7806739807,-0.7803220749,-0.7806739807,-0.7819936275,-0.7826974392,-0.7826974392,-0.7828733921,-0.7829613686,-0.7826974392,-0.782081604,-0.7813777924,-0.781113863,-0.7809379101,-0.7808499336,-0.7808499336,-0.7808499336,-0.7806739807,-0.7805860043,-0.7807619572,-0.7807619572,-0.7804980278,-0.7804100513,-0.7805860043,-0.7805860043,-0.7807619572,-0.7809379101,-0.7809379101,-0.7807619572,-0.7806739807,-0.7807619572,-0.7807619572,-0.7804100513,-0.7799701095,-0.7797061801,-0.7795302272,-0.7792662978,-0.7790903449,-0.7792662978,-0.7795302272,-0.7796182036,-0.7796182036,-0.7796182036,-0.7796182036,-0.7795302272,-0.7805860043,-0.7815537453,-0.7809379101,-0.7792662978,-0.7784745097,-0.7785624862,-0.7790903449,-0.7796182036,-0.7799701095,-0.7797941566,-0.7792662978,-0.7790903449,-0.7790903449,-0.7790023685,-0.7790023685,-0.7794422507,-0.780146122,-0.7806739807,-0.7808499336,-0.7807619572,-0.7806739807,-0.7804100513,-0.780146122,-0.7804100513,-0.7808499336,-0.7808499336,-0.7805860043,-0.7803220749,-0.7802340984,-0.7803220749,-0.7804980278,-0.7807619572,-0.781113863,-0.7818176746,-0.7824335098,-0.7826974392,-0.7827854156,-0.7827854156,-0.7826974392,-0.7825214863,-0.7822575569,-0.7815537453,-0.7809379101,-0.7808499336,-0.7807619572,-0.7805860043,-0.7806739807,-0.7809379101,-0.7812898159,-0.7815537453,-0.7819936275,-0.7825214863,-0.7831373215,-0.7835772634,-0.7828733921,-0.7812018394,-0.780146122,-0.7804980278,-0.7816417217,-0.7829613686,-0.7839292288,-0.7839292288,-0.7838411927,-0.7838411927,-0.783313334,-0.7826974392,-0.7827854156,-0.7835772634,-0.7837532163,-0.7818176746,-0.7795302272,-0.7783865333,-0.7760110497,-0.7746913433,-0.776450932,-0.7745153904,-0.7699404359,-0.7715240717,-0.7779465318,-0.7823455334,-0.7844570875,-0.785600841,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7861286998,-0.7862166762,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7862166762,-0.7861286998,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7863046527,-0.7864806056,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7860407233,-0.785600841,-0.784545064,-0.7818176746,-0.7773306966,-0.7724038363,-0.7710841894,-0.7743394375,-0.7761870027,-0.7738115788,-0.7744274139,-0.7777705789,-0.7799701095,-0.781113863,-0.7817296982,-0.7819056511,-0.7821695805,-0.7823455334,-0.7826094627,-0.7835772634,-0.7843691111,-0.7843691111,-0.7848969698,-0.7844570875,-0.782081604,-0.7805860043,-0.781113863,-0.781113863,-0.7810258865,-0.7812898159,-0.7812898159,-0.7812898159,-0.7817296982,-0.7817296982,-0.7812018394,-0.7804980278,-0.7800580859,-0.7797061801,-0.7794422507,-0.7797941566,-0.7813777924,-0.7824335098,-0.7826094627,-0.7825214863,-0.7823455334,-0.7823455334,-0.7819936275,-0.781113863,-0.7805860043,-0.7804980278,-0.7804980278,-0.7805860043,-0.7806739807,-0.7804980278,-0.7803220749,-0.7804100513,-0.7805860043,-0.7805860043,-0.7804980278,-0.7805860043,-0.7805860043,-0.7807619572,-0.7810258865,-0.7810258865,-0.7808499336,-0.7806739807,-0.7806739807,-0.7805860043,-0.7802340984,-0.779882133,-0.7797061801,-0.7796182036,-0.7794422507,-0.7793542743,-0.7796182036,-0.7797941566,-0.7797941566,-0.7799701095,-0.7799701095,-0.7796182036,-0.7793542743,-0.7803220749,-0.7816417217,-0.7813777924,-0.7797941566,-0.778914392,-0.778914392,-0.7792662978,-0.7797941566,-0.780146122,-0.7799701095,-0.7794422507,-0.7791783214,-0.7790903449,-0.778914392,-0.7790023685,-0.7795302272,-0.7802340984,-0.7806739807,-0.7806739807,-0.7805860043,-0.7804980278,-0.7802340984,-0.780146122,-0.7804100513,-0.7807619572,-0.7807619572,-0.7804980278,-0.780146122,-0.7799701095,-0.7800580859,-0.7804100513,-0.7809379101,-0.7817296982,-0.7825214863,-0.7828733921,-0.7829613686,-0.7832252979,-0.7834013104,-0.7831373215,-0.7826094627,-0.7819936275,-0.7812898159,-0.7808499336,-0.7807619572,-0.7806739807,-0.7804100513,-0.7803220749,-0.7804980278,-0.7809379101,-0.7814657688,-0.782081604,-0.7825214863,-0.7827854156,-0.7831373215,-0.783049345,-0.7819936275,-0.7807619572,-0.7799701095,-0.7799701095,-0.7812018394,-0.7828733921,-0.7837532163,-0.7839292288,-0.7840172052,-0.7838411927,-0.7828733921,-0.7817296982,-0.782081604,-0.7832252979,-0.7824335098,-0.779882133,-0.7782104611,-0.7767148614,-0.7750432491,-0.7762749791,-0.7753072381,-0.7704683542,-0.7706443071,-0.7770667672,-0.7819936275,-0.7841931581,-0.7853369117,-0.7861286998,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7864806056,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7860407233,-0.7854248881,-0.7841051817,-0.7809379101,-0.7760110497,-0.770996213,-0.7715240717,-0.7753952146,-0.7757471204,-0.7737236023,-0.7753952146,-0.7782104611,-0.7796182036,-0.7807619572,-0.7815537453,-0.7819056511,-0.7826094627,-0.783049345,-0.783313334,-0.7841051817,-0.7844570875,-0.784545064,-0.7847210169,-0.7835772634,-0.782081604,-0.7816417217,-0.7815537453,-0.7810258865,-0.7808499336,-0.7809379101,-0.7807619572,-0.7806739807,-0.7809379101,-0.7807619572,-0.7802340984,-0.779882133,-0.7795302272,-0.7792662978,-0.7790903449,-0.7793542743,-0.7804980278,-0.7816417217,-0.7818176746,-0.7812898159,-0.7812898159,-0.7815537453,-0.7815537453,-0.7810258865,-0.7805860043,-0.780146122,-0.7799701095,-0.7799701095,-0.780146122,-0.7802340984,-0.780146122,-0.7800580859,-0.7803220749,-0.7805860043,-0.7804100513,-0.7804100513,-0.7805860043,-0.7806739807,-0.7809379101,-0.7812018394,-0.7808499336,-0.7806739807,-0.7805860043,-0.7805860043,-0.7802340984,-0.779882133,-0.7797061801,-0.7797941566,-0.7797061801,-0.7796182036,-0.7797061801,-0.779882133,-0.7800580859,-0.7802340984,-0.780146122,-0.7795302272,-0.7792662978,-0.7806739807,-0.7821695805,-0.7816417217,-0.7800580859,-0.7793542743,-0.7791783214,-0.7793542743,-0.7797061801,-0.779882133,-0.779882133,-0.7796182036,-0.7793542743,-0.7791783214,-0.7790023685,-0.7791783214,-0.7795302272,-0.780146122,-0.7806739807,-0.7805860043,-0.7804980278,-0.7803220749,-0.7803220749,-0.7804100513,-0.7804980278,-0.7805860043,-0.7805860043,-0.7803220749,-0.7800580859,-0.7800580859,-0.7802340984,-0.7807619572,-0.782081604,-0.7834013104,-0.7839292288,-0.7839292288,-0.7837532163,-0.7837532163,-0.7839292288,-0.7839292288,-0.7836652398,-0.7827854156,-0.7819056511,-0.7816417217,-0.781113863,-0.7804100513,-0.780146122,-0.7803220749,-0.7804980278,-0.7806739807,-0.7808499336,-0.7812898159,-0.7819936275,-0.7823455334,-0.7827854156,-0.7831373215,-0.7826974392,-0.7817296982,-0.7805860043,-0.7793542743,-0.7797941566,-0.7818176746,-0.7834892869,-0.7840172052,-0.7841051817,-0.7841931581,-0.7835772634,-0.782081604,-0.7812898159,-0.7822575569,-0.7825214863,-0.7804980278,-0.7784745097,-0.7775066495,-0.7759230733,-0.7761870027,-0.7760990262,-0.7715240717,-0.7696765065,-0.7751312256,-0.7812018394,-0.7841051817,-0.7852489352,-0.7860407233,-0.7862166762,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7864806056,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7864806056,-0.7862166762,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7858647704,-0.7851609588,-0.7834892869,-0.7797941566,-0.7743394375,-0.7700284123,-0.7724038363,-0.7761870027,-0.7750432491,-0.7734596729,-0.7758350968,-0.7783865333,-0.7797941566,-0.7809379101,-0.7816417217,-0.7821695805,-0.7824335098,-0.7829613686,-0.7840172052,-0.7844570875,-0.784545064,-0.7848089933,-0.784545064,-0.7834013104,-0.7826094627,-0.7819056511,-0.7810258865,-0.7805860043,-0.7806739807,-0.7805860043,-0.780146122,-0.780146122,-0.7802340984,-0.780146122,-0.779882133,-0.7797061801,-0.7796182036,-0.7792662978,-0.7790903449,-0.7791783214,-0.7797061801,-0.7806739807,-0.7810258865,-0.7806739807,-0.7805860043,-0.7806739807,-0.7807619572,-0.7807619572,-0.7805860043,-0.7802340984,-0.7799701095,-0.7797941566,-0.7797941566,-0.7797941566,-0.7797941566,-0.779882133,-0.7802340984,-0.7804980278,-0.7804100513,-0.7804100513,-0.7804980278,-0.7805860043,-0.7808499336,-0.781113863,-0.7808499336,-0.7806739807,-0.7805860043,-0.7804100513,-0.780146122,-0.779882133,-0.7797941566,-0.779882133,-0.779882133,-0.7797061801,-0.7797061801,-0.779882133,-0.780146122,-0.7803220749,-0.780146122,-0.7795302272,-0.7794422507,-0.7812898159,-0.7825214863,-0.7814657688,-0.7802340984,-0.7797061801,-0.7792662978,-0.7792662978,-0.7796182036,-0.7796182036,-0.7796182036,-0.7795302272,-0.7795302272,-0.7794422507,-0.7791783214,-0.7791783214,-0.7794422507,-0.7799701095,-0.7805860043,-0.7807619572,-0.7804980278,-0.7803220749,-0.7804100513,-0.7804980278,-0.7805860043,-0.7806739807,-0.7805860043,-0.7802340984,-0.7799701095,-0.7800580859,-0.7802340984,-0.7807619572,-0.7825214863,-0.7840172052,-0.7842811346,-0.7841051817,-0.7840172052,-0.7840172052,-0.7841051817,-0.784545064,-0.7847210169,-0.7840172052,-0.783049345,-0.7824335098,-0.7815537453,-0.7804980278,-0.7802340984,-0.7804100513,-0.7804100513,-0.7804100513,-0.7802340984,-0.7804100513,-0.7812018394,-0.7819056511,-0.7823455334,-0.7827854156,-0.7829613686,-0.7826974392,-0.7815537453,-0.7794422507,-0.7788264155,-0.7809379101,-0.783313334,-0.7840172052,-0.7840172052,-0.7841051817,-0.7841051817,-0.7831373215,-0.7815537453,-0.7815537453,-0.7823455334,-0.7812018394,-0.7791783214,-0.7780345082,-0.7765389085,-0.7763629556,-0.7766268849,-0.7724918127,-0.7691486478,-0.77328372,-0.7803220749,-0.7838411927,-0.7848969698,-0.785776794,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7864806056,-0.7862166762,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7861286998,-0.7856888175,-0.7850729823,-0.7831373215,-0.7787384391,-0.7730197906,-0.7699404359,-0.7737236023,-0.7767148614,-0.7745153904,-0.774251461,-0.7771547437,-0.7790903449,-0.7804980278,-0.7814657688,-0.782081604,-0.7824335098,-0.7826974392,-0.7837532163,-0.7844570875,-0.7842811346,-0.7846330404,-0.7849849463,-0.7843691111,-0.783313334,-0.7826094627,-0.7819056511,-0.7807619572,-0.7803220749,-0.7803220749,-0.780146122,-0.779882133,-0.7799701095,-0.7800580859,-0.7799701095,-0.7797941566,-0.7797061801,-0.7795302272,-0.7792662978,-0.7792662978,-0.7793542743,-0.7794422507,-0.780146122,-0.7808499336,-0.7805860043,-0.7800580859,-0.7797061801,-0.7796182036,-0.779882133,-0.7799701095,-0.7799701095,-0.7797941566,-0.7797061801,-0.7796182036,-0.7794422507,-0.7794422507,-0.7797941566,-0.7802340984,-0.7804980278,-0.7804100513,-0.7804980278,-0.7804980278,-0.7804980278,-0.7806739807,-0.7809379101,-0.7808499336,-0.7806739807,-0.7805860043,-0.7803220749,-0.7800580859,-0.779882133,-0.7797941566,-0.779882133,-0.7797941566,-0.7797061801,-0.7797061801,-0.779882133,-0.780146122,-0.7803220749,-0.780146122,-0.7797061801,-0.7797941566,-0.7816417217,-0.7825214863,-0.7812018394,-0.780146122,-0.7797941566,-0.7793542743,-0.7792662978,-0.7795302272,-0.7795302272,-0.7794422507,-0.7796182036,-0.7799701095,-0.7797941566,-0.7793542743,-0.7792662978,-0.7794422507,-0.779882133,-0.7804980278,-0.7806739807,-0.7804100513,-0.7803220749,-0.7804100513,-0.7804980278,-0.7805860043,-0.7807619572,-0.7805860043,-0.7800580859,-0.779882133,-0.779882133,-0.7799701095,-0.7803220749,-0.7812018394,-0.7819936275,-0.7821695805,-0.7823455334,-0.7824335098,-0.7826974392,-0.7831373215,-0.7836652398,-0.7837532163,-0.7834013104,-0.7829613686,-0.7825214863,-0.7818176746,-0.7809379101,-0.7804980278,-0.7804100513,-0.7803220749,-0.7799701095,-0.779882133,-0.779882133,-0.7803220749,-0.7809379101,-0.7814657688,-0.782081604,-0.7826094627,-0.783049345,-0.7826094627,-0.7802340984,-0.778914392,-0.7804980278,-0.7832252979,-0.7842811346,-0.7841931581,-0.7841051817,-0.7842811346,-0.7836652398,-0.7823455334,-0.7814657688,-0.7817296982,-0.7816417217,-0.780146122,-0.7781224847,-0.7762749791,-0.7760110497,-0.7768908143,-0.7733716965,-0.7689726949,-0.7717000246,-0.778914392,-0.783313334,-0.7847210169,-0.785600841,-0.7861286998,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7862166762,-0.7862166762,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7864806056,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7862166762,-0.7859527469,-0.785600841,-0.7848969698,-0.7827854156,-0.7779465318,-0.7721399069,-0.7704683542,-0.7751312256,-0.7772427201,-0.7753072381,-0.7763629556,-0.7791783214,-0.7806739807,-0.7816417217,-0.7825214863,-0.783049345,-0.7832252979,-0.7838411927,-0.784545064,-0.784545064,-0.7846330404,-0.7850729823,-0.7848969698,-0.7838411927,-0.7827854156,-0.7821695805,-0.7814657688,-0.7804980278,-0.7799701095,-0.7799701095,-0.780146122,-0.780146122,-0.7802340984,-0.7800580859,-0.7799701095,-0.779882133,-0.7797061801,-0.7794422507,-0.7792662978,-0.7792662978,-0.7792662978,-0.7791783214,-0.779882133,-0.7808499336,-0.7805860043,-0.7796182036,-0.7788264155,-0.7784745097,-0.7787384391,-0.7790903449,-0.7792662978,-0.7794422507,-0.7796182036,-0.7794422507,-0.7791783214,-0.7791783214,-0.7796182036,-0.7802340984,-0.7805860043,-0.7805860043,-0.7804100513,-0.7804100513,-0.7804100513,-0.7804980278,-0.7806739807,-0.7807619572,-0.7805860043,-0.7804980278,-0.7804100513,-0.780146122,-0.7799701095,-0.779882133,-0.7797061801,-0.7796182036,-0.7795302272,-0.7796182036,-0.779882133,-0.7799701095,-0.7800580859,-0.7799701095,-0.7797061801,-0.780146122,-0.7819936275,-0.7825214863,-0.781113863,-0.7800580859,-0.7797061801,-0.7793542743,-0.7793542743,-0.7795302272,-0.7795302272,-0.7794422507,-0.7797061801,-0.7799701095,-0.7797941566,-0.7794422507,-0.7793542743,-0.7794422507,-0.7797941566,-0.7804100513,-0.7805860043,-0.7804100513,-0.7803220749,-0.7804980278,-0.7805860043,-0.7806739807,-0.7807619572,-0.7805860043,-0.780146122,-0.779882133,-0.779882133,-0.7800580859,-0.7803220749,-0.7804100513,-0.7804100513,-0.7805860043,-0.7807619572,-0.7808499336,-0.7812018394,-0.7818176746,-0.7822575569,-0.782081604,-0.7817296982,-0.7819056511,-0.782081604,-0.7817296982,-0.7810258865,-0.7805860043,-0.7804980278,-0.7802340984,-0.779882133,-0.7797061801,-0.7796182036,-0.7797061801,-0.7799701095,-0.7804980278,-0.7812018394,-0.7819056511,-0.7825214863,-0.783049345,-0.7823455334,-0.7808499336,-0.7809379101,-0.7826974392,-0.7841931581,-0.7844570875,-0.7841051817,-0.7841051817,-0.7840172052,-0.783313334,-0.7823455334,-0.7816417217,-0.7814657688,-0.7805860043,-0.7787384391,-0.776450932,-0.7756591439,-0.7769787908,-0.7745153904,-0.7694125772,-0.7702043653,-0.7770667672,-0.7824335098,-0.784545064,-0.7854248881,-0.7860407233,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7862166762,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7858647704,-0.7854248881,-0.784545064,-0.7819056511,-0.7765389085,-0.770996213,-0.7707322836,-0.7759230733,-0.777418673,-0.7760110497,-0.7778585553,-0.7805860043,-0.7817296982,-0.7825214863,-0.7831373215,-0.7834892869,-0.7839292288,-0.784545064,-0.7846330404,-0.784545064,-0.7848969698,-0.7852489352,-0.7848089933,-0.7836652398,-0.7825214863,-0.7815537453,-0.7806739807,-0.780146122,-0.7799701095,-0.7800580859,-0.780146122,-0.7803220749,-0.7803220749,-0.780146122,-0.7800580859,-0.7799701095,-0.7797061801,-0.7793542743,-0.7791783214,-0.7790903449,-0.7788264155,-0.7786504626,-0.7794422507,-0.7806739807,-0.7805860043,-0.7794422507,-0.7785624862,-0.7781224847,-0.7782985568,-0.7785624862,-0.7788264155,-0.7791783214,-0.7792662978,-0.7791783214,-0.7790903449,-0.7791783214,-0.7795302272,-0.779882133,-0.7802340984,-0.7804100513,-0.7804100513,-0.7804100513,-0.7804100513,-0.7804100513,-0.7805860043,-0.7806739807,-0.7804980278,-0.7804100513,-0.7803220749,-0.780146122,-0.7799701095,-0.779882133,-0.7797061801,-0.7795302272,-0.7795302272,-0.7795302272,-0.7797061801,-0.7797941566,-0.779882133,-0.7799701095,-0.779882133,-0.7800580859,-0.7818176746,-0.7828733921,-0.7816417217,-0.7804100513,-0.779882133,-0.7794422507,-0.7792662978,-0.7793542743,-0.7793542743,-0.7794422507,-0.7797061801,-0.7796182036,-0.7794422507,-0.7794422507,-0.7793542743,-0.7794422507,-0.7797061801,-0.7802340984,-0.7804980278,-0.7804100513,-0.7804100513,-0.7806739807,-0.7807619572,-0.7806739807,-0.7805860043,-0.7804100513,-0.7802340984,-0.780146122,-0.7802340984,-0.7803220749,-0.780146122,-0.7799701095,-0.7797941566,-0.7799701095,-0.780146122,-0.7802340984,-0.7805860043,-0.7812898159,-0.7815537453,-0.7812018394,-0.7806739807,-0.7806739807,-0.7810258865,-0.7812898159,-0.7812018394,-0.7809379101,-0.7806739807,-0.780146122,-0.7796182036,-0.7794422507,-0.7795302272,-0.7793542743,-0.7792662978,-0.7795302272,-0.7800580859,-0.7804980278,-0.7807619572,-0.7817296982,-0.7828733921,-0.7828733921,-0.7822575569,-0.7826974392,-0.7840172052,-0.7846330404,-0.7842811346,-0.7841051817,-0.7841051817,-0.7837532163,-0.7832252979,-0.7824335098,-0.7818176746,-0.7809379101,-0.7793542743,-0.7772427201,-0.7760990262,-0.7773306966,-0.7755711675,-0.7701163888,-0.7693246007,-0.775483191,-0.7815537453,-0.7842811346,-0.7852489352,-0.7858647704,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7861286998,-0.7861286998,-0.7863046527,-0.7863046527,-0.7863926291,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7864806056,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7862166762,-0.785776794,-0.7852489352,-0.7841051817,-0.7805860043,-0.7747793198,-0.7702043653,-0.7714360952,-0.7762749791,-0.7773306966,-0.7767148614,-0.7793542743,-0.7816417217,-0.7822575569,-0.7828733921,-0.783313334,-0.7836652398,-0.7842811346,-0.7847210169,-0.7847210169,-0.7847210169,-0.7849849463,-0.7852489352,-0.7849849463,-0.7835772634,-0.7819056511,-0.7808499336,-0.7803220749,-0.7802340984,-0.7802340984,-0.7802340984,-0.7802340984,-0.7803220749,-0.7803220749,-0.7802340984,-0.7800580859,-0.7799701095,-0.7797061801,-0.7792662978,-0.7790903449,-0.7788264155,-0.7784745097,-0.7782985568,-0.7790023685,-0.7802340984,-0.7802340984,-0.7791783214,-0.7783865333,-0.7781224847,-0.7782985568,-0.7784745097,-0.7785624862,-0.7786504626,-0.778914392,-0.7790023685,-0.7790023685,-0.7791783214,-0.7794422507,-0.7796182036,-0.7797941566,-0.7800580859,-0.7804100513,-0.7804980278,-0.7803220749,-0.7803220749,-0.7804980278,-0.7805860043,-0.7804980278,-0.7803220749,-0.7802340984,-0.780146122,-0.7800580859,-0.779882133,-0.7797941566,-0.7797941566,-0.7796182036,-0.7793542743,-0.7792662978,-0.7794422507,-0.7796182036,-0.779882133,-0.779882133,-0.779882133,-0.7817296982,-0.7835772634,-0.7826094627,-0.7805860043,-0.779882133,-0.7796182036,-0.7793542743,-0.7792662978,-0.7792662978,-0.7794422507,-0.7795302272,-0.7793542743,-0.7791783214,-0.7792662978,-0.7793542743,-0.7794422507,-0.7797941566,-0.780146122,-0.7802340984,-0.7802340984,-0.7804100513,-0.7806739807,-0.7806739807,-0.7806739807,-0.7805860043,-0.7804100513,-0.7804100513,-0.7804100513,-0.7804980278,-0.7803220749,-0.7799701095,-0.7796182036,-0.7794422507,-0.7795302272,-0.7797941566,-0.7799701095,-0.7803220749,-0.7810258865,-0.7813777924,-0.781113863,-0.7804980278,-0.7802340984,-0.7803220749,-0.7807619572,-0.781113863,-0.7812018394,-0.7809379101,-0.7800580859,-0.7793542743,-0.7792662978,-0.7794422507,-0.7794422507,-0.7791783214,-0.7791783214,-0.7792662978,-0.7792662978,-0.7791783214,-0.7797941566,-0.7812898159,-0.7829613686,-0.7838411927,-0.7840172052,-0.7844570875,-0.7849849463,-0.7848969698,-0.7844570875,-0.7841051817,-0.7838411927,-0.7835772634,-0.7832252979,-0.7828733921,-0.7819936275,-0.780146122,-0.7779465318,-0.7769787908,-0.7778585553,-0.7761870027,-0.770996213,-0.7692366242,-0.7746033669,-0.7808499336,-0.7839292288,-0.7851609588,-0.7858647704,-0.7860407233,-0.7862166762,-0.7863046527,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7861286998,-0.7862166762,-0.7863926291,-0.7863046527,-0.7863926291,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7864806056,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863046527,-0.7858647704,-0.7851609588,-0.7835772634,-0.7793542743,-0.7735476494,-0.7702043653,-0.7727558613,-0.7770667672,-0.7775946259,-0.7779465318,-0.7807619572,-0.7819056511,-0.7821695805,-0.783049345,-0.7835772634,-0.7839292288,-0.7846330404,-0.7848969698,-0.7848089933,-0.7847210169,-0.7848089933,-0.7852489352,-0.7848089933,-0.7826974392,-0.7808499336,-0.7804100513,-0.7804100513,-0.7804100513,-0.7804980278,-0.7804100513,-0.7803220749,-0.7804100513,-0.7804980278,-0.7803220749,-0.7800580859,-0.779882133,-0.7797061801,-0.7795302272,-0.7792662978,-0.778914392,-0.7783865333,-0.7781224847,-0.7788264155,-0.779882133,-0.7799701095,-0.7790903449,-0.7784745097,-0.7782985568,-0.7784745097,-0.7784745097,-0.7781224847,-0.7781224847,-0.7786504626,-0.7790903449,-0.7790903449,-0.7792662978,-0.7794422507,-0.7795302272,-0.7795302272,-0.7797061801,-0.7799701095,-0.780146122,-0.780146122,-0.780146122,-0.7802340984,-0.7803220749,-0.7802340984,-0.780146122,-0.7802340984,-0.7803220749,-0.780146122,-0.779882133,-0.7797941566,-0.779882133,-0.7797941566,-0.7791783214,-0.7790023685,-0.7791783214,-0.7794422507,-0.7797941566,-0.7797061801,-0.779882133,-0.7819936275,-0.7841051817,-0.7832252979,-0.7806739807,-0.7796182036,-0.7796182036,-0.7796182036,-0.7793542743,-0.7791783214,-0.7793542743,-0.7793542743,-0.7790903449,-0.7790903449,-0.7792662978,-0.7794422507,-0.7795302272,-0.7797061801,-0.7799701095,-0.7800580859,-0.7800580859,-0.780146122,-0.7803220749,-0.7804100513,-0.7804980278,-0.7804980278,-0.7804980278,-0.7804100513,-0.7804980278,-0.7804100513,-0.780146122,-0.7797941566,-0.7795302272,-0.7793542743,-0.7792662978,-0.7795302272,-0.7796182036,-0.7797941566,-0.7804980278,-0.781113863,-0.7812018394,-0.7808499336,-0.7804100513,-0.7803220749,-0.7804980278,-0.7808499336,-0.7812898159,-0.781113863,-0.7800580859,-0.7792662978,-0.7793542743,-0.7795302272,-0.7795302272,-0.7793542743,-0.7791783214,-0.7790023685,-0.778914392,-0.7790023685,-0.7790903449,-0.779882133,-0.7817296982,-0.7838411927,-0.7848089933,-0.7849849463,-0.7853369117,-0.7853369117,-0.7848089933,-0.7843691111,-0.7841051817,-0.7839292288,-0.7834892869,-0.7829613686,-0.7826974392,-0.7814657688,-0.7790903449,-0.7775066495,-0.7779465318,-0.7765389085,-0.7717000246,-0.7693246007,-0.7738995552,-0.7803220749,-0.7837532163,-0.7849849463,-0.785776794,-0.7860407233,-0.7862166762,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863926291,-0.7863926291,-0.7864806056,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7864806056,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7861286998,-0.785776794,-0.7850729823,-0.783049345,-0.7780345082,-0.7725797892,-0.7702924013,-0.7739875317,-0.7785624862,-0.7786504626,-0.778914392,-0.7808499336,-0.7813777924,-0.7824335098,-0.7836652398,-0.7838411927,-0.7841931581,-0.7848089933,-0.7849849463,-0.7848969698,-0.7844570875,-0.7843691111,-0.7848089933,-0.7836652398,-0.7812018394,-0.7802340984,-0.7803220749,-0.7802340984,-0.7803220749,-0.7805860043,-0.7804980278,-0.7804100513,-0.7804980278,-0.7804980278,-0.7803220749,-0.7800580859,-0.779882133,-0.7797941566,-0.7795302272,-0.7791783214,-0.7787384391,-0.7782985568,-0.7782104611,-0.7788264155,-0.7797061801,-0.7797061801,-0.7790903449,-0.7784745097,-0.7785624862,-0.7788264155,-0.7785624862,-0.7781224847,-0.7781224847,-0.7785624862,-0.7790023685,-0.7792662978,-0.7794422507,-0.7794422507,-0.7795302272,-0.7795302272,-0.7794422507,-0.7795302272,-0.7797941566,-0.780146122,-0.7802340984,-0.780146122,-0.780146122,-0.780146122,-0.7800580859,-0.7802340984,-0.7803220749,-0.780146122,-0.7797941566,-0.7796182036,-0.7797061801,-0.7796182036,-0.7790903449,-0.7788264155,-0.7790023685,-0.7793542743,-0.7797061801,-0.7797061801,-0.779882133,-0.7818176746,-0.7836652398,-0.7826094627,-0.7800580859,-0.7790903449,-0.7793542743,-0.7796182036,-0.7795302272,-0.7790903449,-0.7790903449,-0.7792662978,-0.7790903449,-0.7790903449,-0.7792662978,-0.7793542743,-0.7794422507,-0.7794422507,-0.7796182036,-0.7797941566,-0.779882133,-0.779882133,-0.780146122,-0.7802340984,-0.7803220749,-0.7804100513,-0.7804100513,-0.7803220749,-0.7803220749,-0.7802340984,-0.7800580859,-0.7797061801,-0.7794422507,-0.7792662978,-0.7791783214,-0.7792662978,-0.7792662978,-0.7792662978,-0.779882133,-0.7807619572,-0.7813777924,-0.7813777924,-0.7809379101,-0.7805860043,-0.7804100513,-0.7805860043,-0.7812898159,-0.7813777924,-0.780146122,-0.7791783214,-0.7792662978,-0.7796182036,-0.7796182036,-0.7795302272,-0.7792662978,-0.7790023685,-0.7790023685,-0.7790903449,-0.7790023685,-0.7792662978,-0.7806739807,-0.7827854156,-0.7843691111,-0.7849849463,-0.7852489352,-0.7854248881,-0.7851609588,-0.7847210169,-0.7842811346,-0.7841931581,-0.7838411927,-0.7826974392,-0.7823455334,-0.7825214863,-0.7806739807,-0.7776826024,-0.7775946259,-0.7769787908,-0.7724918127,-0.7693246007,-0.7731957436,-0.7796182036,-0.7834892869,-0.7848089933,-0.7856888175,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7859527469,-0.7854248881,-0.7847210169,-0.782081604,-0.7762749791,-0.7711721659,-0.7703803778,-0.7752192616,-0.7792662978,-0.7790903449,-0.7793542743,-0.7805860043,-0.7813777924,-0.7831373215,-0.7841051817,-0.7841051817,-0.7844570875,-0.7848089933,-0.7849849463,-0.7848969698,-0.7843691111,-0.7842811346,-0.7840172052,-0.7821695805,-0.7803220749,-0.7802340984,-0.7803220749,-0.7802340984,-0.7803220749,-0.7805860043,-0.7805860043,-0.7804980278,-0.7804980278,-0.7804100513,-0.7802340984,-0.7800580859,-0.779882133,-0.779882133,-0.7794422507,-0.7788264155,-0.7783865333,-0.7782104611,-0.7783865333,-0.7790023685,-0.7797061801,-0.7797941566,-0.7791783214,-0.7787384391,-0.7787384391,-0.7786504626,-0.7782985568,-0.7781224847,-0.7782985568,-0.7786504626,-0.7790903449,-0.7793542743,-0.7794422507,-0.7795302272,-0.7794422507,-0.7795302272,-0.7795302272,-0.7793542743,-0.7796182036,-0.7800580859,-0.7803220749,-0.780146122,-0.7800580859,-0.7799701095,-0.7799701095,-0.7802340984,-0.7804100513,-0.780146122,-0.7797941566,-0.7795302272,-0.7794422507,-0.7793542743,-0.7790023685,-0.778914392,-0.7791783214,-0.7795302272,-0.7796182036,-0.7795302272,-0.7794422507,-0.7807619572,-0.782081604,-0.7812018394,-0.7792662978,-0.7787384391,-0.7791783214,-0.7794422507,-0.7794422507,-0.7791783214,-0.7790903449,-0.7790903449,-0.7790903449,-0.7790903449,-0.7792662978,-0.7793542743,-0.7793542743,-0.7792662978,-0.7795302272,-0.7797941566,-0.779882133,-0.7799701095,-0.780146122,-0.7803220749,-0.7804100513,-0.7804100513,-0.7803220749,-0.7802340984,-0.7802340984,-0.7802340984,-0.7800580859,-0.7797941566,-0.7796182036,-0.7794422507,-0.7792662978,-0.7791783214,-0.7790023685,-0.7790023685,-0.7794422507,-0.7803220749,-0.7810258865,-0.7812898159,-0.7812898159,-0.7810258865,-0.7807619572,-0.7808499336,-0.7815537453,-0.7819056511,-0.7806739807,-0.7791783214,-0.7790023685,-0.7795302272,-0.7797061801,-0.7796182036,-0.7795302272,-0.7793542743,-0.7792662978,-0.7792662978,-0.7792662978,-0.7793542743,-0.780146122,-0.7819936275,-0.7838411927,-0.784545064,-0.7848089933,-0.7854248881,-0.7854248881,-0.7850729823,-0.7846330404,-0.7841931581,-0.7841051817,-0.783049345,-0.7816417217,-0.7821695805,-0.7819936275,-0.7788264155,-0.7773306966,-0.7772427201,-0.7734596729,-0.7695005536,-0.7722278833,-0.7784745097,-0.7829613686,-0.7847210169,-0.7856888175,-0.7861286998,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7858647704,-0.7854248881,-0.7843691111,-0.7808499336,-0.7749552727,-0.7705563307,-0.7709082365,-0.7761870027,-0.7790903449,-0.7786504626,-0.7794422507,-0.7808499336,-0.7824335098,-0.7839292288,-0.7841931581,-0.7841931581,-0.784545064,-0.7848969698,-0.7849849463,-0.7846330404,-0.784545064,-0.7843691111,-0.7827854156,-0.7809379101,-0.7802340984,-0.7804100513,-0.7804980278,-0.7804980278,-0.7805860043,-0.7806739807,-0.7805860043,-0.7804980278,-0.7804980278,-0.7803220749,-0.780146122,-0.7800580859,-0.7800580859,-0.779882133,-0.7792662978,-0.7787384391,-0.7783865333,-0.7783865333,-0.7787384391,-0.7793542743,-0.7800580859,-0.780146122,-0.7796182036,-0.7790023685,-0.7785624862,-0.7778585553,-0.777418673,-0.7776826024,-0.7782104611,-0.7786504626,-0.7790903449,-0.7793542743,-0.7795302272,-0.7795302272,-0.7794422507,-0.7795302272,-0.7796182036,-0.7794422507,-0.7793542743,-0.7796182036,-0.7800580859,-0.780146122,-0.7800580859,-0.7800580859,-0.7799701095,-0.780146122,-0.7803220749,-0.780146122,-0.7797941566,-0.7797061801,-0.7795302272,-0.7792662978,-0.7790903449,-0.7791783214,-0.7793542743,-0.7796182036,-0.7795302272,-0.7792662978,-0.7791783214,-0.7799701095,-0.7808499336,-0.780146122,-0.7788264155,-0.7786504626,-0.7790023685,-0.7791783214,-0.7791783214,-0.7791783214,-0.7790903449,-0.778914392,-0.7788264155,-0.7790023685,-0.7792662978,-0.7793542743,-0.7793542743,-0.7793542743,-0.7796182036,-0.7797941566,-0.7799701095,-0.7800580859,-0.7802340984,-0.7803220749,-0.7804100513,-0.7803220749,-0.780146122,-0.780146122,-0.7802340984,-0.7802340984,-0.7799701095,-0.7797941566,-0.7797061801,-0.7795302272,-0.7793542743,-0.7792662978,-0.7790903449,-0.778914392,-0.7790903449,-0.7797941566,-0.7804100513,-0.7806739807,-0.7809379101,-0.7812018394,-0.7812898159,-0.7813777924,-0.7819056511,-0.7823455334,-0.7812898159,-0.7795302272,-0.7790023685,-0.7793542743,-0.7795302272,-0.7796182036,-0.7795302272,-0.7795302272,-0.7795302272,-0.7794422507,-0.7792662978,-0.7793542743,-0.7796182036,-0.781113863,-0.783313334,-0.7844570875,-0.7849849463,-0.7855128646,-0.7855128646,-0.7851609588,-0.7846330404,-0.7841931581,-0.7841931581,-0.7836652398,-0.7819056511,-0.7812898159,-0.7819936275,-0.7804100513,-0.7782104611,-0.777418673,-0.7738995552,-0.7698524594,-0.7717000246,-0.7771547437,-0.7821695805,-0.7847210169,-0.7856888175,-0.7860407233,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7862166762,-0.7858647704,-0.7854248881,-0.7836652398,-0.7792662978,-0.7737236023,-0.7704683542,-0.7721399069,-0.7773306966,-0.7790023685,-0.7786504626,-0.7799701095,-0.7818176746,-0.783313334,-0.7840172052,-0.7842811346,-0.7843691111,-0.784545064,-0.7849849463,-0.7851609588,-0.7849849463,-0.7848089933,-0.7834892869,-0.7813777924,-0.7803220749,-0.7803220749,-0.7804980278,-0.7805860043,-0.7806739807,-0.7807619572,-0.7807619572,-0.7806739807,-0.7806739807,-0.7804980278,-0.7803220749,-0.7800580859,-0.7800580859,-0.7800580859,-0.7797941566,-0.7790903449,-0.7787384391,-0.7788264155,-0.7790903449,-0.7794422507,-0.779882133,-0.7804100513,-0.7802340984,-0.7793542743,-0.7783865333,-0.7777705789,-0.7771547437,-0.7770667672,-0.777418673,-0.7781224847,-0.7786504626,-0.7790023685,-0.7792662978,-0.7793542743,-0.7794422507,-0.7795302272,-0.7797061801,-0.7796182036,-0.7793542743,-0.7790903449,-0.7791783214,-0.7796182036,-0.779882133,-0.779882133,-0.7799701095,-0.7799701095,-0.779882133,-0.7799701095,-0.7799701095,-0.779882133,-0.779882133,-0.7797941566,-0.7795302272,-0.7793542743,-0.7795302272,-0.7796182036,-0.7796182036,-0.7794422507,-0.7793542743,-0.7791783214,-0.7797061801,-0.7802340984,-0.7795302272,-0.7785624862,-0.7784745097,-0.7787384391,-0.7790023685,-0.7791783214,-0.7791783214,-0.7790903449,-0.7787384391,-0.7785624862,-0.7787384391,-0.7791783214,-0.7793542743,-0.7792662978,-0.7792662978,-0.7794422507,-0.7796182036,-0.7797941566,-0.7800580859,-0.7802340984,-0.7802340984,-0.7803220749,-0.780146122,-0.7799701095,-0.779882133,-0.7800580859,-0.7800580859,-0.7797941566,-0.7795302272,-0.7794422507,-0.7794422507,-0.7792662978,-0.7791783214,-0.7790023685,-0.7788264155,-0.7790903449,-0.7797061801,-0.7800580859,-0.780146122,-0.7804100513,-0.7809379101,-0.7813777924,-0.7814657688,-0.7818176746,-0.7823455334,-0.7816417217,-0.7797941566,-0.7790023685,-0.7794422507,-0.7795302272,-0.7795302272,-0.7795302272,-0.7796182036,-0.7797061801,-0.7794422507,-0.7791783214,-0.7792662978,-0.7794422507,-0.7803220749,-0.7825214863,-0.7841931581,-0.7850729823,-0.7854248881,-0.7853369117,-0.7850729823,-0.7848089933,-0.7843691111,-0.7841931581,-0.7840172052,-0.7831373215,-0.7818176746,-0.7814657688,-0.7810258865,-0.779882133,-0.7783865333,-0.7744274139,-0.7701163888,-0.7712601423,-0.7761870027,-0.7812898159,-0.7844570875,-0.7856888175,-0.7860407233,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7864806056,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863046527,-0.7863046527,-0.7863046527,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7862166762,-0.785776794,-0.7851609588,-0.7829613686,-0.7779465318,-0.7724918127,-0.7707322836,-0.7738995552,-0.7786504626,-0.7791783214,-0.7786504626,-0.7804100513,-0.7823455334,-0.783313334,-0.7839292288,-0.7842811346,-0.7843691111,-0.7847210169,-0.7852489352,-0.7852489352,-0.7852489352,-0.7843691111,-0.7819936275,-0.7804980278,-0.7803220749,-0.7804100513,-0.7804980278,-0.7805860043,-0.7807619572,-0.7807619572,-0.7806739807,-0.7807619572,-0.7807619572,-0.7805860043,-0.7802340984,-0.7800580859,-0.7800580859,-0.7800580859,-0.7797941566,-0.7793542743,-0.7791783214,-0.7795302272,-0.7800580859,-0.7805860043,-0.7807619572,-0.7802340984,-0.7790903449,-0.7779465318,-0.7773306966,-0.7769787908,-0.7768908143,-0.7770667672,-0.7775066495,-0.7781224847,-0.7786504626,-0.778914392,-0.7790903449,-0.7790903449,-0.7790903449,-0.7793542743,-0.7797061801,-0.7797061801,-0.7794422507,-0.7791783214,-0.7790903449,-0.7792662978,-0.7794422507,-0.7795302272,-0.7797061801,-0.7797941566,-0.7796182036,-0.7797941566,-0.7800580859,-0.7800580859,-0.780146122,-0.7803220749,-0.7800580859,-0.779882133,-0.7799701095,-0.7799701095,-0.7795302272,-0.7792662978,-0.7791783214,-0.7791783214,-0.7797941566,-0.7802340984,-0.7794422507,-0.7785624862,-0.7784745097,-0.7787384391,-0.778914392,-0.7791783214,-0.7791783214,-0.7791783214,-0.7790023685,-0.7788264155,-0.778914392,-0.7790903449,-0.7792662978,-0.7791783214,-0.7791783214,-0.7792662978,-0.7793542743,-0.7796182036,-0.7800580859,-0.7802340984,-0.7803220749,-0.7804100513,-0.7802340984,-0.779882133,-0.7797061801,-0.779882133,-0.7797941566,-0.7796182036,-0.7794422507,-0.7793542743,-0.7792662978,-0.7790903449,-0.778914392,-0.7787384391,-0.7786504626,-0.7790903449,-0.7797061801,-0.7799701095,-0.7799701095,-0.7800580859,-0.7805860043,-0.7812018394,-0.7812898159,-0.7812898159,-0.7819936275,-0.7819056511,-0.7800580859,-0.7790023685,-0.7793542743,-0.7796182036,-0.7796182036,-0.7796182036,-0.7797061801,-0.7797941566,-0.7795302272,-0.7794422507,-0.7794422507,-0.7794422507,-0.7800580859,-0.7816417217,-0.783049345,-0.7841051817,-0.7849849463,-0.7852489352,-0.7852489352,-0.7850729823,-0.7846330404,-0.7841051817,-0.7839292288,-0.7837532163,-0.7826094627,-0.7812018394,-0.7810258865,-0.7812898159,-0.7797941566,-0.7751312256,-0.7705563307,-0.7715240717,-0.7760110497,-0.7804980278,-0.7839292288,-0.785600841,-0.7860407233,-0.7861286998,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7864806056,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7862166762,-0.7856888175,-0.7848089933,-0.7819936275,-0.7767148614,-0.7724038363,-0.7725797892,-0.7765389085,-0.7797941566,-0.7793542743,-0.7790903449,-0.7809379101,-0.7823455334,-0.7832252979,-0.7841051817,-0.7843691111,-0.7844570875,-0.7850729823,-0.7852489352,-0.7851609588,-0.7848089933,-0.7829613686,-0.7809379101,-0.7804100513,-0.7805860043,-0.7804980278,-0.7804100513,-0.7804980278,-0.7806739807,-0.7806739807,-0.7804980278,-0.7805860043,-0.7806739807,-0.7804980278,-0.7803220749,-0.7800580859,-0.7799701095,-0.780146122,-0.7802340984,-0.7800580859,-0.780146122,-0.7806739807,-0.7810258865,-0.7809379101,-0.7803220749,-0.7790023685,-0.7776826024,-0.7768908143,-0.7765389085,-0.7765389085,-0.7765389085,-0.7768908143,-0.7773306966,-0.7779465318,-0.7784745097,-0.7787384391,-0.7787384391,-0.7788264155,-0.7788264155,-0.778914392,-0.7794422507,-0.779882133,-0.7799701095,-0.7796182036,-0.7791783214,-0.7790903449,-0.7791783214,-0.7794422507,-0.7797061801,-0.7797061801,-0.7797061801,-0.7800580859,-0.7804980278,-0.7805860043,-0.7806739807,-0.7807619572,-0.7804980278,-0.7802340984,-0.7803220749,-0.7802340984,-0.7796182036,-0.7792662978,-0.7792662978,-0.7796182036,-0.7804980278,-0.7807619572,-0.7797061801,-0.7787384391,-0.7786504626,-0.778914392,-0.7790903449,-0.7792662978,-0.7793542743,-0.7793542743,-0.7793542743,-0.7792662978,-0.7791783214,-0.7791783214,-0.7792662978,-0.7792662978,-0.7791783214,-0.7790903449,-0.7791783214,-0.7797061801,-0.7802340984,-0.7804100513,-0.7803220749,-0.7802340984,-0.7800580859,-0.7797061801,-0.7794422507,-0.7794422507,-0.7794422507,-0.7793542743,-0.7793542743,-0.7794422507,-0.7794422507,-0.7792662978,-0.7791783214,-0.778914392,-0.7786504626,-0.7788264155,-0.7795302272,-0.7799701095,-0.7799701095,-0.780146122,-0.7804980278,-0.7808499336,-0.7810258865,-0.781113863,-0.7817296982,-0.7818176746,-0.7802340984,-0.7791783214,-0.7794422507,-0.7796182036,-0.7795302272,-0.7795302272,-0.7796182036,-0.7797061801,-0.7797061801,-0.7796182036,-0.7795302272,-0.7795302272,-0.780146122,-0.7810258865,-0.7818176746,-0.7827854156,-0.7841051817,-0.7850729823,-0.7854248881,-0.7854248881,-0.7848969698,-0.7841931581,-0.7838411927,-0.7837532163,-0.783049345,-0.7816417217,-0.7808499336,-0.7815537453,-0.7810258865,-0.776450932,-0.7711721659,-0.7713481188,-0.7751312256,-0.7792662978,-0.7831373215,-0.7853369117,-0.7859527469,-0.7861286998,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7862166762,-0.785776794,-0.7844570875,-0.7809379101,-0.775483191,-0.7726678848,-0.7753072381,-0.7794422507,-0.7804100513,-0.7796182036,-0.7800580859,-0.7812898159,-0.7825214863,-0.7836652398,-0.7843691111,-0.7844570875,-0.7848089933,-0.7852489352,-0.7852489352,-0.7851609588,-0.7838411927,-0.7815537453,-0.7804980278,-0.7805860043,-0.7807619572,-0.7807619572,-0.7804980278,-0.7804980278,-0.7806739807,-0.7805860043,-0.7804100513,-0.7804100513,-0.7804980278,-0.7804100513,-0.7803220749,-0.7800580859,-0.7799701095,-0.7803220749,-0.7804100513,-0.7804980278,-0.781113863,-0.7813777924,-0.7806739807,-0.7796182036,-0.7784745097,-0.777418673,-0.7767148614,-0.7762749791,-0.7760990262,-0.7760990262,-0.7761870027,-0.7765389085,-0.7770667672,-0.7776826024,-0.7782104611,-0.7784745097,-0.7784745097,-0.7786504626,-0.7786504626,-0.7785624862,-0.7790023685,-0.7797941566,-0.7804100513,-0.7802340984,-0.7795302272,-0.7791783214,-0.7791783214,-0.7795302272,-0.779882133,-0.7800580859,-0.780146122,-0.7806739807,-0.781113863,-0.7812898159,-0.7814657688,-0.7813777924,-0.7810258865,-0.7807619572,-0.7806739807,-0.7804100513,-0.779882133,-0.7795302272,-0.7797941566,-0.7804100513,-0.781113863,-0.7814657688,-0.7805860043,-0.7791783214,-0.778914392,-0.7792662978,-0.7795302272,-0.7796182036,-0.7797061801,-0.7797941566,-0.779882133,-0.7797941566,-0.7796182036,-0.7796182036,-0.7796182036,-0.7794422507,-0.7793542743,-0.7791783214,-0.7792662978,-0.7799701095,-0.7804980278,-0.7803220749,-0.780146122,-0.7799701095,-0.7797061801,-0.7795302272,-0.7793542743,-0.7791783214,-0.7791783214,-0.7792662978,-0.7793542743,-0.7794422507,-0.7795302272,-0.7795302272,-0.7795302272,-0.7792662978,-0.7788264155,-0.7786504626,-0.7791783214,-0.7797941566,-0.780146122,-0.7804100513,-0.7806739807,-0.7808499336,-0.7809379101,-0.781113863,-0.7818176746,-0.7819936275,-0.7804980278,-0.7793542743,-0.7794422507,-0.7794422507,-0.7794422507,-0.7794422507,-0.7795302272,-0.7797061801,-0.7797941566,-0.7797941566,-0.7797061801,-0.7797941566,-0.7800580859,-0.7804100513,-0.7808499336,-0.7816417217,-0.7829613686,-0.7843691111,-0.7853369117,-0.785600841,-0.7852489352,-0.784545064,-0.7841051817,-0.7840172052,-0.7834013104,-0.782081604,-0.7808499336,-0.7812898159,-0.7814657688,-0.7779465318,-0.7723158598,-0.7710841894,-0.7740755081,-0.7781224847,-0.7822575569,-0.7848969698,-0.7858647704,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7861286998,-0.7856888175,-0.7840172052,-0.7797941566,-0.7738995552,-0.7720519304,-0.7759230733,-0.7799701095,-0.7802340984,-0.779882133,-0.7806739807,-0.7817296982,-0.7832252979,-0.7842811346,-0.7844570875,-0.7846330404,-0.7851609588,-0.7854248881,-0.7854248881,-0.7846330404,-0.7826094627,-0.7809379101,-0.7804980278,-0.7804100513,-0.7805860043,-0.7808499336,-0.7806739807,-0.7805860043,-0.7807619572,-0.7806739807,-0.7804100513,-0.7804980278,-0.7804980278,-0.7803220749,-0.7802340984,-0.7800580859,-0.7800580859,-0.7800580859,-0.7799701095,-0.780146122,-0.7804980278,-0.7799701095,-0.7788264155,-0.7778585553,-0.7771547437,-0.7766268849,-0.7762749791,-0.7759230733,-0.7757471204,-0.7757471204,-0.7758350968,-0.7762749791,-0.7768028378,-0.7773306966,-0.7778585553,-0.7782104611,-0.7782104611,-0.7782985568,-0.7783865333,-0.7783865333,-0.7785624862,-0.7792662978,-0.7800580859,-0.7803220749,-0.7802340984,-0.7799701095,-0.7797941566,-0.7800580859,-0.7804100513,-0.7807619572,-0.7812018394,-0.7815537453,-0.7817296982,-0.7819056511,-0.7819936275,-0.7819056511,-0.7816417217,-0.7812898159,-0.7809379101,-0.7805860043,-0.7800580859,-0.7795302272,-0.7797941566,-0.7804980278,-0.7809379101,-0.7813777924,-0.7810258865,-0.7797061801,-0.7791783214,-0.7795302272,-0.7799701095,-0.7802340984,-0.7802340984,-0.7804100513,-0.7805860043,-0.7804980278,-0.7804100513,-0.7804100513,-0.780146122,-0.779882133,-0.7799701095,-0.779882133,-0.7797941566,-0.7803220749,-0.7805860043,-0.7802340984,-0.7799701095,-0.7797941566,-0.7796182036,-0.7794422507,-0.7793542743,-0.7791783214,-0.7791783214,-0.7793542743,-0.7793542743,-0.7794422507,-0.7794422507,-0.7795302272,-0.7797061801,-0.7796182036,-0.7792662978,-0.7788264155,-0.7788264155,-0.7794422507,-0.7797941566,-0.7802340984,-0.7806739807,-0.7809379101,-0.781113863,-0.7812018394,-0.7818176746,-0.7822575569,-0.781113863,-0.7797061801,-0.7793542743,-0.7794422507,-0.7794422507,-0.7795302272,-0.7796182036,-0.7797941566,-0.7800580859,-0.780146122,-0.7799701095,-0.7797941566,-0.7797061801,-0.779882133,-0.7802340984,-0.7806739807,-0.7815537453,-0.7834013104,-0.7849849463,-0.785600841,-0.7854248881,-0.7849849463,-0.7844570875,-0.7841051817,-0.7835772634,-0.7824335098,-0.7812898159,-0.7812018394,-0.7812898159,-0.778914392,-0.7738995552,-0.7713481188,-0.7731957436,-0.777418673,-0.7818176746,-0.7846330404,-0.785776794,-0.7861286998,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7860407233,-0.7854248881,-0.7836652398,-0.7790023685,-0.7728438377,-0.7714360952,-0.7753072381,-0.7791783214,-0.780146122,-0.780146122,-0.7809379101,-0.7825214863,-0.7839292288,-0.7842811346,-0.7842811346,-0.7847210169,-0.7852489352,-0.785600841,-0.7851609588,-0.7834013104,-0.7816417217,-0.7808499336,-0.7804980278,-0.7804100513,-0.7805860043,-0.7809379101,-0.7808499336,-0.7806739807,-0.7806739807,-0.7805860043,-0.7804980278,-0.7806739807,-0.7804980278,-0.7802340984,-0.7802340984,-0.7803220749,-0.7802340984,-0.7800580859,-0.7797941566,-0.7793542743,-0.7788264155,-0.7780345082,-0.7773306966,-0.7767148614,-0.7763629556,-0.7761870027,-0.7759230733,-0.7756591439,-0.7755711675,-0.7755711675,-0.7756591439,-0.7760990262,-0.7765389085,-0.7769787908,-0.777418673,-0.7778585553,-0.7781224847,-0.7781224847,-0.7782104611,-0.7782985568,-0.7782104611,-0.7786504626,-0.7797061801,-0.7805860043,-0.7806739807,-0.7804980278,-0.7805860043,-0.7809379101,-0.7812898159,-0.7816417217,-0.7819056511,-0.782081604,-0.7822575569,-0.7825214863,-0.7826094627,-0.7823455334,-0.7819056511,-0.7814657688,-0.7809379101,-0.7804980278,-0.7800580859,-0.7795302272,-0.7795302272,-0.7799701095,-0.7805860043,-0.781113863,-0.7804980278,-0.7790903449,-0.7786504626,-0.7792662978,-0.780146122,-0.7805860043,-0.7807619572,-0.7810258865,-0.7813777924,-0.7812898159,-0.7812018394,-0.781113863,-0.7807619572,-0.7806739807,-0.7808499336,-0.7806739807,-0.7804980278,-0.7806739807,-0.7807619572,-0.7804100513,-0.7800580859,-0.7797061801,-0.7795302272,-0.7793542743,-0.7790903449,-0.7792662978,-0.7794422507,-0.7793542743,-0.7793542743,-0.7794422507,-0.7794422507,-0.7795302272,-0.7797061801,-0.7797941566,-0.7797941566,-0.7791783214,-0.7787384391,-0.7790023685,-0.7794422507,-0.779882133,-0.7804980278,-0.7810258865,-0.7813777924,-0.7816417217,-0.7819936275,-0.7824335098,-0.7817296982,-0.7803220749,-0.7795302272,-0.7793542743,-0.7794422507,-0.7795302272,-0.7796182036,-0.779882133,-0.7803220749,-0.7802340984,-0.7797941566,-0.7797061801,-0.7796182036,-0.7796182036,-0.7797941566,-0.780146122,-0.7805860043,-0.7821695805,-0.7844570875,-0.7855128646,-0.7855128646,-0.7854248881,-0.7848089933,-0.7840172052,-0.7835772634,-0.7827854156,-0.7816417217,-0.7812898159,-0.7812018394,-0.7796182036,-0.7753952146,-0.7718759775,-0.7724038363,-0.7765389085,-0.7812898159,-0.7844570875,-0.785776794,-0.7860407233,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7860407233,-0.7853369117,-0.7834892869,-0.7796182036,-0.7740755081,-0.7721399069,-0.7753952146,-0.7793542743,-0.7807619572,-0.7804980278,-0.7810258865,-0.783049345,-0.7841931581,-0.7841931581,-0.7843691111,-0.7848969698,-0.7855128646,-0.785600841,-0.7841931581,-0.7822575569,-0.7812018394,-0.7807619572,-0.7804100513,-0.7805860043,-0.7807619572,-0.7809379101,-0.7808499336,-0.7805860043,-0.7804980278,-0.7806739807,-0.7806739807,-0.7806739807,-0.7804980278,-0.7803220749,-0.7804100513,-0.7804980278,-0.7803220749,-0.7799701095,-0.7792662978,-0.7783865333,-0.7776826024,-0.7771547437,-0.7766268849,-0.7762749791,-0.7760110497,-0.7760110497,-0.7758350968,-0.7757471204,-0.7757471204,-0.7757471204,-0.7757471204,-0.7760990262,-0.7765389085,-0.7769787908,-0.7772427201,-0.7775946259,-0.7779465318,-0.7780345082,-0.7781224847,-0.7780345082,-0.7778585553,-0.7785624862,-0.779882133,-0.7806739807,-0.7807619572,-0.7807619572,-0.7812018394,-0.7815537453,-0.7819056511,-0.782081604,-0.7821695805,-0.7824335098,-0.7827854156,-0.7829613686,-0.7829613686,-0.7826094627,-0.7817296982,-0.781113863,-0.7806739807,-0.7803220749,-0.7799701095,-0.7795302272,-0.7792662978,-0.7795302272,-0.7806739807,-0.7817296982,-0.7806739807,-0.7788264155,-0.7785624862,-0.7791783214,-0.7800580859,-0.7808499336,-0.781113863,-0.7814657688,-0.7818176746,-0.7819056511,-0.7818176746,-0.7817296982,-0.7815537453,-0.7812898159,-0.781113863,-0.7810258865,-0.781113863,-0.7812898159,-0.7810258865,-0.7805860043,-0.7803220749,-0.779882133,-0.7793542743,-0.7790903449,-0.7790023685,-0.7791783214,-0.7794422507,-0.7793542743,-0.7792662978,-0.7792662978,-0.7793542743,-0.7796182036,-0.779882133,-0.7800580859,-0.7800580859,-0.7796182036,-0.7790023685,-0.7788264155,-0.7791783214,-0.7795302272,-0.780146122,-0.7809379101,-0.7813777924,-0.7817296982,-0.7821695805,-0.7825214863,-0.782081604,-0.7809379101,-0.7800580859,-0.7795302272,-0.7794422507,-0.7794422507,-0.7795302272,-0.779882133,-0.780146122,-0.7799701095,-0.7797061801,-0.7797941566,-0.779882133,-0.7797061801,-0.7797941566,-0.7800580859,-0.7802340984,-0.7809379101,-0.783049345,-0.7850729823,-0.785600841,-0.785600841,-0.7852489352,-0.7843691111,-0.7836652398,-0.783313334,-0.7822575569,-0.7813777924,-0.7813777924,-0.7799701095,-0.7757471204,-0.7724038363,-0.7725797892,-0.7758350968,-0.7804100513,-0.7840172052,-0.785776794,-0.7861286998,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7864806056,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7861286998,-0.7853369117,-0.7831373215,-0.7792662978,-0.774251461,-0.7724918127,-0.7760990262,-0.7805860043,-0.7815537453,-0.7807619572,-0.7813777924,-0.7832252979,-0.7841051817,-0.7842811346,-0.7847210169,-0.7853369117,-0.7856888175,-0.7848969698,-0.7829613686,-0.7815537453,-0.781113863,-0.7808499336,-0.7805860043,-0.7805860043,-0.7806739807,-0.7808499336,-0.7808499336,-0.7804980278,-0.7804980278,-0.7807619572,-0.7808499336,-0.7805860043,-0.7804980278,-0.7804980278,-0.7805860043,-0.7804980278,-0.7800580859,-0.7791783214,-0.7782985568,-0.7778585553,-0.777418673,-0.7768908143,-0.7765389085,-0.7761870027,-0.7759230733,-0.7759230733,-0.7758350968,-0.7757471204,-0.7758350968,-0.7759230733,-0.7759230733,-0.7760990262,-0.7766268849,-0.7768908143,-0.7770667672,-0.7773306966,-0.7775946259,-0.7777705789,-0.7778585553,-0.7776826024,-0.7776826024,-0.7788264155,-0.7800580859,-0.7804980278,-0.7808499336,-0.7812898159,-0.7815537453,-0.7819936275,-0.7823455334,-0.7825214863,-0.7824335098,-0.7826094627,-0.783049345,-0.7831373215,-0.7827854156,-0.7821695805,-0.7813777924,-0.7807619572,-0.7805860043,-0.7804100513,-0.7800580859,-0.7795302272,-0.7790903449,-0.7790903449,-0.7805860043,-0.7819936275,-0.7809379101,-0.778914392,-0.7787384391,-0.7792662978,-0.7799701095,-0.7809379101,-0.7812898159,-0.7813777924,-0.7817296982,-0.7821695805,-0.7821695805,-0.782081604,-0.7819936275,-0.7816417217,-0.7812018394,-0.7814657688,-0.7816417217,-0.7814657688,-0.781113863,-0.7806739807,-0.7804980278,-0.7799701095,-0.7793542743,-0.7790903449,-0.7791783214,-0.7792662978,-0.7792662978,-0.7792662978,-0.7791783214,-0.7792662978,-0.7793542743,-0.7797061801,-0.7800580859,-0.780146122,-0.780146122,-0.7799701095,-0.7793542743,-0.7787384391,-0.7786504626,-0.7790023685,-0.7797941566,-0.7807619572,-0.7810258865,-0.7810258865,-0.7816417217,-0.7823455334,-0.7822575569,-0.7814657688,-0.7805860043,-0.7797061801,-0.7792662978,-0.7793542743,-0.7796182036,-0.7797061801,-0.7797061801,-0.7797061801,-0.7797061801,-0.7797941566,-0.7799701095,-0.7799701095,-0.779882133,-0.7800580859,-0.780146122,-0.780146122,-0.7812898159,-0.7838411927,-0.7854248881,-0.785600841,-0.7854248881,-0.7848089933,-0.7840172052,-0.7837532163,-0.7828733921,-0.7817296982,-0.7814657688,-0.7797941566,-0.7755711675,-0.7724038363,-0.7724038363,-0.7750432491,-0.7792662978,-0.783313334,-0.785600841,-0.7862166762,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7861286998,-0.7853369117,-0.7826094627,-0.7781224847,-0.7731077671,-0.7722278833,-0.7768028378,-0.7813777924,-0.7812018394,-0.780146122,-0.7812898159,-0.7832252979,-0.7840172052,-0.784545064,-0.7850729823,-0.785600841,-0.7854248881,-0.7837532163,-0.7819056511,-0.781113863,-0.7809379101,-0.7810258865,-0.7809379101,-0.7807619572,-0.7805860043,-0.7808499336,-0.7809379101,-0.7806739807,-0.7805860043,-0.7808499336,-0.7808499336,-0.7805860043,-0.7804980278,-0.7807619572,-0.7808499336,-0.7803220749,-0.7792662978,-0.7783865333,-0.7777705789,-0.7775066495,-0.7771547437,-0.7767148614,-0.7763629556,-0.7761870027,-0.7760110497,-0.7760110497,-0.7760110497,-0.7759230733,-0.7759230733,-0.7760110497,-0.7760990262,-0.7763629556,-0.7766268849,-0.7766268849,-0.7768028378,-0.7772427201,-0.7775066495,-0.7775946259,-0.777418673,-0.777418673,-0.7780345082,-0.7790023685,-0.7797061801,-0.780146122,-0.7807619572,-0.7814657688,-0.7819056511,-0.7824335098,-0.7829613686,-0.7832252979,-0.783049345,-0.7827854156,-0.7827854156,-0.7826974392,-0.7821695805,-0.7815537453,-0.781113863,-0.7808499336,-0.7806739807,-0.7803220749,-0.7797061801,-0.7792662978,-0.7787384391,-0.7786504626,-0.7804100513,-0.7819056511,-0.7806739807,-0.7786504626,-0.7786504626,-0.7792662978,-0.7797061801,-0.7806739807,-0.7814657688,-0.7814657688,-0.7816417217,-0.7821695805,-0.7822575569,-0.7819936275,-0.7819056511,-0.7817296982,-0.7814657688,-0.7816417217,-0.7816417217,-0.7812898159,-0.7809379101,-0.7806739807,-0.7805860043,-0.7802340984,-0.7796182036,-0.7792662978,-0.7795302272,-0.779882133,-0.7797061801,-0.7793542743,-0.7792662978,-0.7793542743,-0.7795302272,-0.7797941566,-0.780146122,-0.780146122,-0.7800580859,-0.7800580859,-0.7796182036,-0.778914392,-0.7783865333,-0.7782985568,-0.7790023685,-0.7804100513,-0.7810258865,-0.7806739807,-0.7808499336,-0.7818176746,-0.7822575569,-0.7818176746,-0.7807619572,-0.7797061801,-0.7791783214,-0.7793542743,-0.7796182036,-0.7797061801,-0.7795302272,-0.7795302272,-0.7797941566,-0.779882133,-0.7799701095,-0.7799701095,-0.7799701095,-0.7799701095,-0.7800580859,-0.779882133,-0.780146122,-0.782081604,-0.7847210169,-0.785600841,-0.7853369117,-0.7850729823,-0.7844570875,-0.7839292288,-0.783313334,-0.7821695805,-0.7815537453,-0.7802340984,-0.7766268849,-0.7731077671,-0.7722278833,-0.7744274139,-0.7785624862,-0.7826974392,-0.7853369117,-0.7861286998,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7863926291,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7862166762,-0.7860407233,-0.7852489352,-0.7823455334,-0.7775066495,-0.7725797892,-0.7721399069,-0.7767148614,-0.781113863,-0.7812018394,-0.7803220749,-0.7812898159,-0.7831373215,-0.7841931581,-0.7847210169,-0.7852489352,-0.785600841,-0.7848089933,-0.7827854156,-0.7812898159,-0.7810258865,-0.7809379101,-0.7810258865,-0.7812018394,-0.781113863,-0.7808499336,-0.7807619572,-0.7807619572,-0.7807619572,-0.7807619572,-0.7810258865,-0.7809379101,-0.7805860043,-0.7805860043,-0.7810258865,-0.7809379101,-0.7799701095,-0.7788264155,-0.7781224847,-0.7776826024,-0.777418673,-0.7770667672,-0.7766268849,-0.7763629556,-0.7761870027,-0.7761870027,-0.7763629556,-0.7762749791,-0.7761870027,-0.7762749791,-0.7762749791,-0.7762749791,-0.7765389085,-0.7767148614,-0.7766268849,-0.7768028378,-0.7772427201,-0.7775066495,-0.7773306966,-0.7770667672,-0.777418673,-0.7785624862,-0.7795302272,-0.7797941566,-0.7799701095,-0.7803220749,-0.7809379101,-0.7816417217,-0.7823455334,-0.7827854156,-0.7829613686,-0.7828733921,-0.7825214863,-0.7823455334,-0.7821695805,-0.7816417217,-0.7812018394,-0.7810258865,-0.7808499336,-0.7805860043,-0.779882133,-0.7791783214,-0.7788264155,-0.7782985568,-0.7782104611,-0.7800580859,-0.7817296982,-0.7806739807,-0.7785624862,-0.7783865333,-0.7790023685,-0.7794422507,-0.780146122,-0.7810258865,-0.7815537453,-0.7817296982,-0.7822575569,-0.7826974392,-0.7824335098,-0.7821695805,-0.7818176746,-0.7814657688,-0.7813777924,-0.7812018394,-0.7808499336,-0.7806739807,-0.7804980278,-0.7803220749,-0.7802340984,-0.7797941566,-0.7795302272,-0.7797061801,-0.780146122,-0.7802340984,-0.7799701095,-0.7797061801,-0.7796182036,-0.7796182036,-0.7797941566,-0.7800580859,-0.7800580859,-0.7799701095,-0.780146122,-0.7799701095,-0.7791783214,-0.7782985568,-0.7779465318,-0.7783865333,-0.7795302272,-0.7802340984,-0.7803220749,-0.7806739807,-0.7814657688,-0.782081604,-0.7818176746,-0.7806739807,-0.7796182036,-0.7792662978,-0.7795302272,-0.7797061801,-0.7797061801,-0.7797061801,-0.7797061801,-0.7799701095,-0.780146122,-0.7800580859,-0.7799701095,-0.7800580859,-0.7800580859,-0.779882133,-0.7797061801,-0.7797061801,-0.7807619572,-0.7836652398,-0.7855128646,-0.7855128646,-0.7851609588,-0.7847210169,-0.7841051817,-0.7835772634,-0.7824335098,-0.7817296982,-0.7812898159,-0.7786504626,-0.7743394375,-0.7724918127,-0.7745153904,-0.7783865333,-0.7824335098,-0.7851609588,-0.7860407233,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7864806056,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7860407233,-0.7850729823,-0.7819936275,-0.7769787908,-0.7724918127,-0.7724918127,-0.7763629556,-0.7803220749,-0.7814657688,-0.7813777924,-0.7817296982,-0.7832252979,-0.7843691111,-0.7848089933,-0.7853369117,-0.7855128646,-0.7840172052,-0.7819936275,-0.7810258865,-0.7809379101,-0.7808499336,-0.7808499336,-0.781113863,-0.7812018394,-0.781113863,-0.7808499336,-0.7807619572,-0.7807619572,-0.7809379101,-0.7809379101,-0.7807619572,-0.7805860043,-0.7806739807,-0.7810258865,-0.7805860043,-0.7793542743,-0.7784745097,-0.7780345082,-0.7776826024,-0.777418673,-0.7770667672,-0.7767148614,-0.7765389085,-0.7765389085,-0.7765389085,-0.7766268849,-0.7766268849,-0.776450932,-0.7765389085,-0.7765389085,-0.7766268849,-0.7767148614,-0.7768028378,-0.7768028378,-0.7768908143,-0.7772427201,-0.777418673,-0.7773306966,-0.7772427201,-0.7777705789,-0.7790023685,-0.7799701095,-0.7800580859,-0.7799701095,-0.779882133,-0.7800580859,-0.7806739807,-0.7815537453,-0.7819936275,-0.7818176746,-0.7815537453,-0.7816417217,-0.7818176746,-0.7817296982,-0.7812898159,-0.7809379101,-0.7808499336,-0.7807619572,-0.7804100513,-0.7797941566,-0.7790903449,-0.7786504626,-0.7782985568,-0.7783865333,-0.7797941566,-0.7812018394,-0.7806739807,-0.7788264155,-0.7783865333,-0.7788264155,-0.7791783214,-0.7796182036,-0.7802340984,-0.781113863,-0.7818176746,-0.7826094627,-0.7831373215,-0.7828733921,-0.7824335098,-0.7819056511,-0.7812898159,-0.7808499336,-0.7805860043,-0.7803220749,-0.7802340984,-0.7802340984,-0.7802340984,-0.780146122,-0.780146122,-0.7799701095,-0.779882133,-0.7800580859,-0.7803220749,-0.7804100513,-0.7803220749,-0.7800580859,-0.7797941566,-0.7796182036,-0.779882133,-0.7800580859,-0.7799701095,-0.780146122,-0.7800580859,-0.7793542743,-0.7784745097,-0.7781224847,-0.7782985568,-0.778914392,-0.7790903449,-0.7790023685,-0.7797061801,-0.7810258865,-0.7817296982,-0.7813777924,-0.7804100513,-0.7797061801,-0.7796182036,-0.7796182036,-0.7796182036,-0.7797061801,-0.779882133,-0.7800580859,-0.780146122,-0.7803220749,-0.780146122,-0.7800580859,-0.7800580859,-0.7800580859,-0.7797061801,-0.7796182036,-0.7797061801,-0.780146122,-0.7824335098,-0.7850729823,-0.785776794,-0.7854248881,-0.7848969698,-0.7843691111,-0.7838411927,-0.7827854156,-0.7819936275,-0.7822575569,-0.7799701095,-0.7749552727,-0.7717880011,-0.77328372,-0.777418673,-0.7819056511,-0.7849849463,-0.7859527469,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7862166762,-0.7861286998,-0.7863046527,-0.7863926291,-0.7864806056,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863046527,-0.7860407233,-0.7848089933,-0.7816417217,-0.7768028378,-0.7726678848,-0.7733716965,-0.7770667672,-0.7799701095,-0.7810258865,-0.7813777924,-0.7821695805,-0.7835772634,-0.7847210169,-0.7850729823,-0.7854248881,-0.7848969698,-0.7829613686,-0.7814657688,-0.7810258865,-0.7809379101,-0.7808499336,-0.7808499336,-0.7809379101,-0.7810258865,-0.7808499336,-0.7807619572,-0.7807619572,-0.7807619572,-0.7809379101,-0.7809379101,-0.7807619572,-0.7806739807,-0.7809379101,-0.7808499336,-0.780146122,-0.7791783214,-0.7784745097,-0.7780345082,-0.7776826024,-0.777418673,-0.7770667672,-0.7768908143,-0.7768908143,-0.7768028378,-0.7768908143,-0.7768908143,-0.7768908143,-0.7768028378,-0.7767148614,-0.7768028378,-0.7768028378,-0.7768028378,-0.7768908143,-0.7769787908,-0.7770667672,-0.7772427201,-0.7773306966,-0.7775066495,-0.7776826024,-0.7781224847,-0.7792662978,-0.780146122,-0.7802340984,-0.7800580859,-0.7797061801,-0.7796182036,-0.7799701095,-0.7804100513,-0.7804980278,-0.7803220749,-0.780146122,-0.7803220749,-0.7808499336,-0.781113863,-0.7810258865,-0.7809379101,-0.7809379101,-0.7809379101,-0.7805860043,-0.7799701095,-0.7793542743,-0.7790903449,-0.778914392,-0.7790023685,-0.779882133,-0.7810258865,-0.7806739807,-0.7790903449,-0.7788264155,-0.7792662978,-0.7793542743,-0.7794422507,-0.7797941566,-0.7804100513,-0.7813777924,-0.7823455334,-0.7827854156,-0.7825214863,-0.7821695805,-0.7816417217,-0.7808499336,-0.7803220749,-0.7799701095,-0.7799701095,-0.7800580859,-0.7800580859,-0.7802340984,-0.7804100513,-0.7804100513,-0.7802340984,-0.780146122,-0.7802340984,-0.7802340984,-0.7805860043,-0.7809379101,-0.7807619572,-0.7802340984,-0.7797061801,-0.7797941566,-0.7799701095,-0.7797941566,-0.779882133,-0.7799701095,-0.7795302272,-0.7786504626,-0.7782104611,-0.7784745097,-0.7790903449,-0.7790023685,-0.7782985568,-0.7786504626,-0.7803220749,-0.7812018394,-0.7807619572,-0.7800580859,-0.7797941566,-0.7797941566,-0.7797941566,-0.7796182036,-0.7797061801,-0.779882133,-0.780146122,-0.7803220749,-0.7802340984,-0.780146122,-0.7800580859,-0.7799701095,-0.779882133,-0.7796182036,-0.7795302272,-0.7796182036,-0.7796182036,-0.7812018394,-0.7841051817,-0.785776794,-0.7856888175,-0.7851609588,-0.784545064,-0.7840172052,-0.7831373215,-0.7823455334,-0.7829613686,-0.7812018394,-0.7753072381,-0.770996213,-0.7720519304,-0.7762749791,-0.7812018394,-0.7847210169,-0.7858647704,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7861286998,-0.7861286998,-0.7863046527,-0.7863046527,-0.7864806056,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7860407233,-0.7848089933,-0.7814657688,-0.7766268849,-0.7726678848,-0.7731957436,-0.7768028378,-0.7795302272,-0.7804100513,-0.7813777924,-0.7827854156,-0.7841051817,-0.7848969698,-0.7853369117,-0.7852489352,-0.7839292288,-0.782081604,-0.7812018394,-0.7812018394,-0.781113863,-0.7809379101,-0.7809379101,-0.7808499336,-0.7807619572,-0.7806739807,-0.7806739807,-0.7806739807,-0.7806739807,-0.7808499336,-0.7809379101,-0.7808499336,-0.7809379101,-0.781113863,-0.7806739807,-0.7797061801,-0.778914392,-0.7783865333,-0.7780345082,-0.7777705789,-0.7775946259,-0.777418673,-0.7771547437,-0.7769787908,-0.7770667672,-0.7771547437,-0.7771547437,-0.7770667672,-0.7770667672,-0.7769787908,-0.7768908143,-0.7768028378,-0.7768908143,-0.7769787908,-0.7770667672,-0.7772427201,-0.7773306966,-0.7775066495,-0.7777705789,-0.7779465318,-0.7783865333,-0.7793542743,-0.7799701095,-0.780146122,-0.7800580859,-0.7797941566,-0.7796182036,-0.7796182036,-0.7796182036,-0.7793542743,-0.7791783214,-0.7790903449,-0.7793542743,-0.7799701095,-0.7806739807,-0.781113863,-0.7812018394,-0.7813777924,-0.7813777924,-0.7809379101,-0.7804100513,-0.779882133,-0.7796182036,-0.7792662978,-0.7790903449,-0.7797941566,-0.7810258865,-0.7807619572,-0.7791783214,-0.7790903449,-0.7797941566,-0.7797061801,-0.7796182036,-0.779882133,-0.7804100513,-0.781113863,-0.7814657688,-0.7815537453,-0.7815537453,-0.7812898159,-0.7809379101,-0.7803220749,-0.7799701095,-0.7797941566,-0.7797061801,-0.7797941566,-0.7799701095,-0.7802340984,-0.7804100513,-0.7804980278,-0.7804980278,-0.7804980278,-0.7804100513,-0.7803220749,-0.7804980278,-0.7809379101,-0.7809379101,-0.7804100513,-0.7797941566,-0.7797061801,-0.779882133,-0.7797941566,-0.7797061801,-0.779882133,-0.7795302272,-0.7786504626,-0.7782104611,-0.7785624862,-0.7791783214,-0.7790903449,-0.7783865333,-0.7783865333,-0.7797061801,-0.7805860043,-0.7803220749,-0.7797941566,-0.779882133,-0.7800580859,-0.7800580859,-0.7797941566,-0.7797061801,-0.779882133,-0.7802340984,-0.7804100513,-0.7802340984,-0.7799701095,-0.779882133,-0.7797941566,-0.7797061801,-0.7796182036,-0.7795302272,-0.7795302272,-0.7792662978,-0.7802340984,-0.783049345,-0.7854248881,-0.785776794,-0.7854248881,-0.7848089933,-0.7841931581,-0.783313334,-0.7825214863,-0.7832252979,-0.7816417217,-0.7753072381,-0.77082026,-0.7724918127,-0.7768028378,-0.7812018394,-0.7846330404,-0.7858647704,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7864806056,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7860407233,-0.7844570875,-0.7809379101,-0.7766268849,-0.7727558613,-0.7722278833,-0.7757471204,-0.7795302272,-0.7806739807,-0.7819056511,-0.7835772634,-0.784545064,-0.7850729823,-0.7854248881,-0.7848089933,-0.783049345,-0.7814657688,-0.7809379101,-0.7810258865,-0.781113863,-0.7809379101,-0.7808499336,-0.7807619572,-0.7805860043,-0.7805860043,-0.7806739807,-0.7807619572,-0.7807619572,-0.7808499336,-0.7808499336,-0.7806739807,-0.7809379101,-0.781113863,-0.7804100513,-0.7794422507,-0.7788264155,-0.7783865333,-0.7780345082,-0.7777705789,-0.7775946259,-0.777418673,-0.7772427201,-0.7770667672,-0.7771547437,-0.7773306966,-0.7773306966,-0.7772427201,-0.7771547437,-0.7771547437,-0.7770667672,-0.7769787908,-0.7769787908,-0.7770667672,-0.7771547437,-0.777418673,-0.7775946259,-0.7776826024,-0.7778585553,-0.7781224847,-0.7786504626,-0.7793542743,-0.779882133,-0.7799701095,-0.7797941566,-0.7796182036,-0.7794422507,-0.7791783214,-0.778914392,-0.7787384391,-0.7787384391,-0.778914392,-0.7792662978,-0.7797061801,-0.7804100513,-0.7812018394,-0.7814657688,-0.7815537453,-0.7814657688,-0.781113863,-0.7805860043,-0.780146122,-0.7797941566,-0.7794422507,-0.7790023685,-0.7794422507,-0.7810258865,-0.7812898159,-0.7794422507,-0.7791783214,-0.7799701095,-0.779882133,-0.7797061801,-0.7802340984,-0.7808499336,-0.7813777924,-0.7814657688,-0.7812898159,-0.7810258865,-0.7807619572,-0.7804980278,-0.780146122,-0.779882133,-0.7797941566,-0.7797061801,-0.7796182036,-0.7797061801,-0.7800580859,-0.7802340984,-0.7803220749,-0.7804100513,-0.7804980278,-0.7804980278,-0.7804100513,-0.7804100513,-0.7807619572,-0.7808499336,-0.7804100513,-0.779882133,-0.7797941566,-0.7799701095,-0.779882133,-0.7797061801,-0.7797061801,-0.7795302272,-0.7788264155,-0.7783865333,-0.7785624862,-0.7790903449,-0.7790903449,-0.7786504626,-0.7784745097,-0.7790023685,-0.779882133,-0.7802340984,-0.7800580859,-0.7802340984,-0.7804100513,-0.7802340984,-0.779882133,-0.779882133,-0.7800580859,-0.7802340984,-0.7802340984,-0.780146122,-0.779882133,-0.7797941566,-0.7797941566,-0.7797061801,-0.7796182036,-0.7796182036,-0.7795302272,-0.7793542743,-0.7799701095,-0.7822575569,-0.7849849463,-0.7856888175,-0.7854248881,-0.7850729823,-0.7842811346,-0.783313334,-0.7826974392,-0.7827854156,-0.7810258865,-0.775483191,-0.7720519304,-0.7753072381,-0.7794422507,-0.7819056511,-0.7843691111,-0.7858647704,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7863046527,-0.7862166762,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7864806056,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863046527,-0.7863046527,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7858647704,-0.7842811346,-0.7810258865,-0.7771547437,-0.7731077671,-0.7717000246,-0.7751312256,-0.7797941566,-0.7815537453,-0.7826974392,-0.7840172052,-0.7848089933,-0.7853369117,-0.7854248881,-0.7842811346,-0.7824335098,-0.7812898159,-0.7809379101,-0.7810258865,-0.7812018394,-0.7810258865,-0.7808499336,-0.7806739807,-0.7805860043,-0.7805860043,-0.7805860043,-0.7807619572,-0.7808499336,-0.7808499336,-0.7807619572,-0.7807619572,-0.7810258865,-0.7810258865,-0.7802340984,-0.7794422507,-0.7790903449,-0.7784745097,-0.7781224847,-0.7778585553,-0.7776826024,-0.7775066495,-0.7772427201,-0.7769787908,-0.7771547437,-0.7775066495,-0.7775066495,-0.777418673,-0.7773306966,-0.7772427201,-0.7771547437,-0.7772427201,-0.7772427201,-0.7772427201,-0.777418673,-0.7775946259,-0.7775946259,-0.7776826024,-0.7779465318,-0.7783865333,-0.778914392,-0.7794422507,-0.7797061801,-0.7797061801,-0.7794422507,-0.7791783214,-0.778914392,-0.7785624862,-0.7782985568,-0.7784745097,-0.7786504626,-0.7790023685,-0.7795302272,-0.779882133,-0.7802340984,-0.781113863,-0.7817296982,-0.7818176746,-0.7817296982,-0.7812898159,-0.7807619572,-0.7802340984,-0.7797941566,-0.7796182036,-0.7788264155,-0.7788264155,-0.7807619572,-0.7817296982,-0.779882133,-0.7792662978,-0.7797061801,-0.7795302272,-0.7797941566,-0.7805860043,-0.7812898159,-0.7815537453,-0.7816417217,-0.7814657688,-0.781113863,-0.7809379101,-0.7805860043,-0.7802340984,-0.779882133,-0.7797061801,-0.7796182036,-0.7795302272,-0.7795302272,-0.7797061801,-0.779882133,-0.7800580859,-0.780146122,-0.7804100513,-0.7804980278,-0.7804100513,-0.7804980278,-0.7805860043,-0.7807619572,-0.7805860043,-0.7800580859,-0.779882133,-0.7800580859,-0.779882133,-0.7797061801,-0.7797061801,-0.7794422507,-0.778914392,-0.7784745097,-0.7787384391,-0.7791783214,-0.7792662978,-0.7790023685,-0.7786504626,-0.7787384391,-0.7797061801,-0.7805860043,-0.7806739807,-0.7806739807,-0.7806739807,-0.7803220749,-0.7799701095,-0.7799701095,-0.7800580859,-0.7800580859,-0.7799701095,-0.7797941566,-0.7797061801,-0.7796182036,-0.7796182036,-0.7796182036,-0.7796182036,-0.7796182036,-0.7796182036,-0.7796182036,-0.779882133,-0.7815537453,-0.7842811346,-0.785600841,-0.7855128646,-0.7852489352,-0.784545064,-0.7836652398,-0.7829613686,-0.7826974392,-0.7807619572,-0.7760110497,-0.77328372,-0.7761870027,-0.7793542743,-0.7812898159,-0.7839292288,-0.7856888175,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7864806056,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.785776794,-0.7841931581,-0.781113863,-0.7771547437,-0.7731957436,-0.7715240717,-0.7745153904,-0.7797941566,-0.7824335098,-0.7834892869,-0.7843691111,-0.7850729823,-0.7855128646,-0.7851609588,-0.7836652398,-0.7819056511,-0.781113863,-0.7809379101,-0.781113863,-0.7813777924,-0.7812898159,-0.7809379101,-0.7805860043,-0.7804100513,-0.7804980278,-0.7805860043,-0.7806739807,-0.7808499336,-0.7809379101,-0.7808499336,-0.7808499336,-0.7810258865,-0.7808499336,-0.7799701095,-0.7793542743,-0.778914392,-0.7783865333,-0.7781224847,-0.7780345082,-0.7777705789,-0.7775066495,-0.7773306966,-0.7771547437,-0.7773306966,-0.7775066495,-0.7775946259,-0.7775946259,-0.7775946259,-0.777418673,-0.7773306966,-0.777418673,-0.7775066495,-0.7775066495,-0.7775946259,-0.7776826024,-0.7776826024,-0.7778585553,-0.7781224847,-0.7784745097,-0.778914392,-0.7794422507,-0.7796182036,-0.7795302272,-0.7791783214,-0.7787384391,-0.7783865333,-0.7782104611,-0.7782985568,-0.7784745097,-0.778914392,-0.7793542743,-0.779882133,-0.7802340984,-0.7804980278,-0.7812898159,-0.782081604,-0.7821695805,-0.7821695805,-0.7819056511,-0.7812898159,-0.7804980278,-0.7799701095,-0.7797061801,-0.778914392,-0.7784745097,-0.7802340984,-0.7817296982,-0.7802340984,-0.7791783214,-0.7792662978,-0.7794422507,-0.7799701095,-0.7808499336,-0.7813777924,-0.7814657688,-0.7814657688,-0.7814657688,-0.7812018394,-0.7810258865,-0.7808499336,-0.7804980278,-0.7800580859,-0.7797061801,-0.7796182036,-0.7796182036,-0.7794422507,-0.7794422507,-0.7797061801,-0.779882133,-0.7800580859,-0.7802340984,-0.7804980278,-0.7804980278,-0.7804980278,-0.7805860043,-0.7806739807,-0.7806739807,-0.7804100513,-0.7800580859,-0.7800580859,-0.7800580859,-0.779882133,-0.7797061801,-0.7794422507,-0.7790023685,-0.7786504626,-0.7788264155,-0.7792662978,-0.7793542743,-0.7792662978,-0.7790903449,-0.7791783214,-0.780146122,-0.7812018394,-0.7812018394,-0.7810258865,-0.7807619572,-0.7802340984,-0.779882133,-0.7799701095,-0.7799701095,-0.7799701095,-0.7797941566,-0.7795302272,-0.7794422507,-0.7795302272,-0.7797061801,-0.7799701095,-0.780146122,-0.7799701095,-0.7797061801,-0.7796182036,-0.779882133,-0.7810258865,-0.7835772634,-0.7853369117,-0.785600841,-0.7853369117,-0.7848969698,-0.7840172052,-0.7832252979,-0.7831373215,-0.7810258865,-0.7755711675,-0.7720519304,-0.7741634846,-0.7775066495,-0.7802340984,-0.783313334,-0.7853369117,-0.7859527469,-0.7862166762,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7858647704,-0.7841051817,-0.7807619572,-0.7768908143,-0.77328372,-0.7717880011,-0.7746913433,-0.780146122,-0.783313334,-0.7840172052,-0.7846330404,-0.7853369117,-0.785600841,-0.7848089933,-0.783049345,-0.7814657688,-0.7809379101,-0.7809379101,-0.7812898159,-0.7815537453,-0.7815537453,-0.781113863,-0.7806739807,-0.7805860043,-0.7806739807,-0.7805860043,-0.7807619572,-0.7810258865,-0.7810258865,-0.7808499336,-0.7807619572,-0.7808499336,-0.7806739807,-0.7800580859,-0.7795302272,-0.778914392,-0.7782985568,-0.7781224847,-0.7779465318,-0.7776826024,-0.7775066495,-0.7772427201,-0.7772427201,-0.777418673,-0.7775066495,-0.7775066495,-0.7775946259,-0.7776826024,-0.7775066495,-0.777418673,-0.777418673,-0.7775946259,-0.7777705789,-0.7777705789,-0.7777705789,-0.7779465318,-0.7781224847,-0.7782104611,-0.7783865333,-0.7787384391,-0.7792662978,-0.7795302272,-0.7793542743,-0.778914392,-0.7784745097,-0.7782104611,-0.7782104611,-0.7783865333,-0.7787384391,-0.7792662978,-0.7797941566,-0.7802340984,-0.7804980278,-0.7806739807,-0.7812898159,-0.7819936275,-0.7822575569,-0.7824335098,-0.7825214863,-0.7819936275,-0.7809379101,-0.780146122,-0.7797941566,-0.7791783214,-0.7786504626,-0.7799701095,-0.7815537453,-0.7804100513,-0.7791783214,-0.7791783214,-0.7796182036,-0.780146122,-0.7809379101,-0.7814657688,-0.7815537453,-0.7814657688,-0.7813777924,-0.7812018394,-0.7810258865,-0.7808499336,-0.7807619572,-0.7804100513,-0.7799701095,-0.7797061801,-0.7797061801,-0.7796182036,-0.7794422507,-0.7795302272,-0.7797061801,-0.7797941566,-0.7799701095,-0.7803220749,-0.7804100513,-0.7804980278,-0.7805860043,-0.7806739807,-0.7807619572,-0.7806739807,-0.7803220749,-0.780146122,-0.780146122,-0.7799701095,-0.7797941566,-0.7795302272,-0.7790023685,-0.7786504626,-0.7787384391,-0.7792662978,-0.7795302272,-0.7794422507,-0.7792662978,-0.7796182036,-0.7805860043,-0.7812898159,-0.7813777924,-0.7812898159,-0.7807619572,-0.7800580859,-0.779882133,-0.7799701095,-0.7799701095,-0.7797941566,-0.7796182036,-0.7796182036,-0.7797061801,-0.7799701095,-0.7804980278,-0.7807619572,-0.7804980278,-0.780146122,-0.779882133,-0.7797941566,-0.7799701095,-0.7809379101,-0.783049345,-0.7849849463,-0.7856888175,-0.7855128646,-0.7852489352,-0.7843691111,-0.7835772634,-0.783313334,-0.7806739807,-0.7746913433,-0.7705563307,-0.7723158598,-0.7762749791,-0.7797061801,-0.7827854156,-0.7848969698,-0.7858647704,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7859527469,-0.7842811346,-0.7812018394,-0.777418673,-0.77328372,-0.7717880011,-0.7751312256,-0.7805860043,-0.7834892869,-0.7841931581,-0.7847210169,-0.7854248881,-0.7855128646,-0.7844570875,-0.7826094627,-0.7812898159,-0.7809379101,-0.7810258865,-0.7812898159,-0.7814657688,-0.7816417217,-0.7814657688,-0.7809379101,-0.7808499336,-0.7807619572,-0.7806739807,-0.7807619572,-0.7810258865,-0.7810258865,-0.7809379101,-0.7807619572,-0.7807619572,-0.7806739807,-0.7802340984,-0.7797061801,-0.7790023685,-0.7783865333,-0.7781224847,-0.7778585553,-0.7775946259,-0.7775066495,-0.7772427201,-0.7770667672,-0.7772427201,-0.777418673,-0.7775066495,-0.7775946259,-0.7775946259,-0.777418673,-0.777418673,-0.7775066495,-0.7775946259,-0.7778585553,-0.7778585553,-0.7778585553,-0.7779465318,-0.7781224847,-0.7782104611,-0.7782985568,-0.7785624862,-0.7790903449,-0.7792662978,-0.778914392,-0.7784745097,-0.7783865333,-0.7783865333,-0.7783865333,-0.7784745097,-0.7790023685,-0.7797061801,-0.7800580859,-0.7804980278,-0.7807619572,-0.7809379101,-0.7812018394,-0.7818176746,-0.7823455334,-0.7826094627,-0.7826974392,-0.7823455334,-0.7813777924,-0.7804100513,-0.7799701095,-0.7796182036,-0.7790023685,-0.779882133,-0.7814657688,-0.7804100513,-0.7791783214,-0.7793542743,-0.7797061801,-0.780146122,-0.7807619572,-0.7812018394,-0.7813777924,-0.7813777924,-0.7813777924,-0.7812898159,-0.7810258865,-0.7808499336,-0.7808499336,-0.7807619572,-0.7804100513,-0.7799701095,-0.779882133,-0.7797941566,-0.7796182036,-0.7795302272,-0.7795302272,-0.7795302272,-0.7797061801,-0.7800580859,-0.7803220749,-0.7804980278,-0.7804980278,-0.7804980278,-0.7806739807,-0.7806739807,-0.7804100513,-0.7802340984,-0.780146122,-0.7800580859,-0.7797941566,-0.7795302272,-0.7790023685,-0.7786504626,-0.7787384391,-0.7791783214,-0.7796182036,-0.7797061801,-0.7796182036,-0.780146122,-0.7808499336,-0.7812898159,-0.7813777924,-0.7812018394,-0.7804100513,-0.779882133,-0.779882133,-0.7797941566,-0.7797061801,-0.7797061801,-0.7799701095,-0.7802340984,-0.7805860043,-0.7807619572,-0.7806739807,-0.7804100513,-0.7800580859,-0.7800580859,-0.7799701095,-0.7799701095,-0.7802340984,-0.7810258865,-0.7827854156,-0.7848089933,-0.7856888175,-0.785600841,-0.7853369117,-0.7844570875,-0.7836652398,-0.783313334,-0.7809379101,-0.7753072381,-0.7709082365,-0.7720519304,-0.7758350968,-0.7794422507,-0.7825214863,-0.7844570875,-0.785776794,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7858647704,-0.7843691111,-0.7814657688,-0.7772427201,-0.7728438377,-0.7720519304,-0.7760110497,-0.7812018394,-0.7836652398,-0.7843691111,-0.7848969698,-0.785600841,-0.785600841,-0.7842811346,-0.7822575569,-0.781113863,-0.7810258865,-0.781113863,-0.7812018394,-0.7812018394,-0.7813777924,-0.7813777924,-0.7809379101,-0.7807619572,-0.7807619572,-0.7807619572,-0.7807619572,-0.7808499336,-0.7809379101,-0.7809379101,-0.7808499336,-0.7808499336,-0.7806739807,-0.780146122,-0.7796182036,-0.7790023685,-0.7784745097,-0.7782104611,-0.7779465318,-0.7776826024,-0.7775946259,-0.7773306966,-0.7772427201,-0.7773306966,-0.7775066495,-0.7775946259,-0.7776826024,-0.7775946259,-0.7775946259,-0.7776826024,-0.7777705789,-0.7777705789,-0.7778585553,-0.7778585553,-0.7779465318,-0.7778585553,-0.7779465318,-0.7782104611,-0.7783865333,-0.7784745097,-0.7788264155,-0.778914392,-0.7784745097,-0.7782104611,-0.7782104611,-0.7782985568,-0.7785624862,-0.778914392,-0.7795302272,-0.780146122,-0.7803220749,-0.7805860043,-0.7807619572,-0.7808499336,-0.7812018394,-0.7816417217,-0.7822575569,-0.7825214863,-0.7825214863,-0.7825214863,-0.7818176746,-0.7807619572,-0.7802340984,-0.7800580859,-0.7793542743,-0.7796182036,-0.7810258865,-0.7803220749,-0.7790903449,-0.7792662978,-0.7797941566,-0.7803220749,-0.7809379101,-0.7812898159,-0.7812898159,-0.7812018394,-0.781113863,-0.7810258865,-0.7808499336,-0.7807619572,-0.7807619572,-0.7807619572,-0.7806739807,-0.7805860043,-0.7803220749,-0.7800580859,-0.7799701095,-0.779882133,-0.7797061801,-0.7796182036,-0.7797061801,-0.7799701095,-0.7802340984,-0.7804100513,-0.7804100513,-0.7804100513,-0.7804100513,-0.7804980278,-0.7804100513,-0.7802340984,-0.780146122,-0.7800580859,-0.7799701095,-0.7796182036,-0.7791783214,-0.7788264155,-0.7787384391,-0.778914392,-0.7793542743,-0.7797941566,-0.780146122,-0.7806739807,-0.7812018394,-0.7814657688,-0.7812898159,-0.7804980278,-0.7797941566,-0.7797061801,-0.7797941566,-0.7797061801,-0.7797061801,-0.779882133,-0.7803220749,-0.7808499336,-0.7810258865,-0.7804980278,-0.7799701095,-0.7797061801,-0.7796182036,-0.779882133,-0.7800580859,-0.7802340984,-0.7804980278,-0.7810258865,-0.7824335098,-0.784545064,-0.785600841,-0.785600841,-0.7854248881,-0.7847210169,-0.7836652398,-0.7834013104,-0.7819056511,-0.7768028378,-0.7717880011,-0.7721399069,-0.7753072381,-0.7785624862,-0.7815537453,-0.7837532163,-0.7853369117,-0.7862166762,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7859527469,-0.784545064,-0.7814657688,-0.7768028378,-0.7724918127,-0.7725797892,-0.7769787908,-0.7819936275,-0.7839292288,-0.784545064,-0.7852489352,-0.7858647704,-0.7856888175,-0.7841051817,-0.7819936275,-0.7810258865,-0.7810258865,-0.781113863,-0.781113863,-0.7810258865,-0.781113863,-0.781113863,-0.7809379101,-0.7808499336,-0.7808499336,-0.7806739807,-0.7805860043,-0.7807619572,-0.7809379101,-0.7808499336,-0.7808499336,-0.7808499336,-0.7805860043,-0.7800580859,-0.7796182036,-0.7790903449,-0.7786504626,-0.7783865333,-0.7781224847,-0.7778585553,-0.7776826024,-0.7775066495,-0.7773306966,-0.777418673,-0.7775946259,-0.7776826024,-0.7775946259,-0.7775946259,-0.7777705789,-0.7777705789,-0.7777705789,-0.7778585553,-0.7778585553,-0.7779465318,-0.7780345082,-0.7778585553,-0.7778585553,-0.7780345082,-0.7782104611,-0.7785624862,-0.7790023685,-0.778914392,-0.7785624862,-0.7782985568,-0.7782104611,-0.7782985568,-0.7788264155,-0.7795302272,-0.7803220749,-0.7805860043,-0.7804100513,-0.7804980278,-0.7805860043,-0.7807619572,-0.781113863,-0.7815537453,-0.7819056511,-0.7821695805,-0.7824335098,-0.7826094627,-0.782081604,-0.7810258865,-0.7804980278,-0.7804100513,-0.7797061801,-0.7794422507,-0.7804100513,-0.780146122,-0.7792662978,-0.7794422507,-0.7802340984,-0.7808499336,-0.7814657688,-0.7817296982,-0.7816417217,-0.7813777924,-0.7809379101,-0.7806739807,-0.7804980278,-0.7804980278,-0.7804100513,-0.7804100513,-0.7804980278,-0.7807619572,-0.7809379101,-0.7807619572,-0.7805860043,-0.7804100513,-0.7803220749,-0.7803220749,-0.7802340984,-0.7800580859,-0.7800580859,-0.7802340984,-0.7803220749,-0.7803220749,-0.7804980278,-0.7805860043,-0.7804100513,-0.7803220749,-0.7802340984,-0.780146122,-0.7800580859,-0.7797061801,-0.7793542743,-0.7790023685,-0.7788264155,-0.778914392,-0.7790903449,-0.7793542743,-0.7800580859,-0.7808499336,-0.781113863,-0.781113863,-0.7806739807,-0.7797941566,-0.7795302272,-0.7796182036,-0.7797061801,-0.7797941566,-0.779882133,-0.780146122,-0.7804980278,-0.7806739807,-0.7802340984,-0.7797061801,-0.7796182036,-0.7797061801,-0.7796182036,-0.7797941566,-0.7800580859,-0.7802340984,-0.7806739807,-0.7812898159,-0.7823455334,-0.7841931581,-0.7854248881,-0.785600841,-0.7854248881,-0.7850729823,-0.7841931581,-0.7834892869,-0.7826094627,-0.7790023685,-0.7736356258,-0.7716120481,-0.7738115788,-0.7768028378,-0.779882133,-0.7827854156,-0.7848089933,-0.7858647704,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7860407233,-0.7846330404,-0.7813777924,-0.7768028378,-0.7734596729,-0.7740755081,-0.7775946259,-0.7818176746,-0.7839292288,-0.784545064,-0.7852489352,-0.7859527469,-0.7856888175,-0.7839292288,-0.7818176746,-0.7810258865,-0.7810258865,-0.7810258865,-0.7812018394,-0.7812018394,-0.7812018394,-0.781113863,-0.781113863,-0.7809379101,-0.7807619572,-0.7804980278,-0.7804980278,-0.7806739807,-0.7808499336,-0.7807619572,-0.7807619572,-0.7807619572,-0.7804980278,-0.7800580859,-0.7796182036,-0.7790903449,-0.7786504626,-0.7783865333,-0.7781224847,-0.7779465318,-0.7777705789,-0.7775946259,-0.7775066495,-0.7775066495,-0.7776826024,-0.7776826024,-0.7775946259,-0.7775946259,-0.7777705789,-0.7777705789,-0.7778585553,-0.7779465318,-0.7780345082,-0.7779465318,-0.7780345082,-0.7780345082,-0.7779465318,-0.7778585553,-0.7778585553,-0.7785624862,-0.7792662978,-0.7792662978,-0.7791783214,-0.7790023685,-0.7788264155,-0.7790023685,-0.7797061801,-0.7804980278,-0.7809379101,-0.7807619572,-0.7803220749,-0.7803220749,-0.7805860043,-0.7807619572,-0.7810258865,-0.7812898159,-0.7817296982,-0.7821695805,-0.7824335098,-0.7824335098,-0.7819936275,-0.7812898159,-0.7807619572,-0.7809379101,-0.7804980278,-0.779882133,-0.7800580859,-0.7799701095,-0.7795302272,-0.779882133,-0.7805860043,-0.7812018394,-0.7817296982,-0.7819936275,-0.7819936275,-0.7817296982,-0.7812018394,-0.7807619572,-0.7804100513,-0.7802340984,-0.7800580859,-0.7799701095,-0.7800580859,-0.7803220749,-0.7807619572,-0.781113863,-0.781113863,-0.7809379101,-0.7809379101,-0.7809379101,-0.7806739807,-0.7802340984,-0.7799701095,-0.7800580859,-0.7800580859,-0.7802340984,-0.7805860043,-0.7806739807,-0.7805860043,-0.7805860043,-0.7804100513,-0.7802340984,-0.7800580859,-0.7797941566,-0.7794422507,-0.7791783214,-0.778914392,-0.7790023685,-0.7790903449,-0.7793542743,-0.7800580859,-0.7807619572,-0.7808499336,-0.7805860043,-0.779882133,-0.7794422507,-0.7794422507,-0.7796182036,-0.7797941566,-0.779882133,-0.779882133,-0.7800580859,-0.7802340984,-0.779882133,-0.7796182036,-0.7795302272,-0.7797061801,-0.779882133,-0.779882133,-0.7799701095,-0.780146122,-0.7803220749,-0.7807619572,-0.7813777924,-0.7822575569,-0.7838411927,-0.7852489352,-0.785600841,-0.785600841,-0.7853369117,-0.784545064,-0.7837532163,-0.7827854156,-0.7804980278,-0.7760990262,-0.7725797892,-0.7731957436,-0.7760110497,-0.7790903449,-0.7822575569,-0.784545064,-0.7855128646,-0.7861286998,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7862166762,-0.7847210169,-0.7813777924,-0.7770667672,-0.7749552727,-0.7759230733,-0.7782985568,-0.7816417217,-0.7839292288,-0.7847210169,-0.7854248881,-0.7859527469,-0.785600841,-0.7837532163,-0.7816417217,-0.781113863,-0.781113863,-0.781113863,-0.7813777924,-0.7814657688,-0.7813777924,-0.7812018394,-0.7810258865,-0.7809379101,-0.7807619572,-0.7806739807,-0.7805860043,-0.7805860043,-0.7807619572,-0.7807619572,-0.7807619572,-0.7807619572,-0.7804980278,-0.780146122,-0.7797941566,-0.7791783214,-0.7786504626,-0.7783865333,-0.7782104611,-0.7780345082,-0.7778585553,-0.7776826024,-0.7775946259,-0.7776826024,-0.7777705789,-0.7776826024,-0.7775946259,-0.7775946259,-0.7777705789,-0.7778585553,-0.7779465318,-0.7780345082,-0.7780345082,-0.7779465318,-0.7778585553,-0.7780345082,-0.7781224847,-0.7778585553,-0.7778585553,-0.7785624862,-0.7792662978,-0.7795302272,-0.7797061801,-0.7797941566,-0.7796182036,-0.7797941566,-0.7804980278,-0.7809379101,-0.7806739807,-0.7803220749,-0.7802340984,-0.7803220749,-0.7804980278,-0.7808499336,-0.7812018394,-0.7816417217,-0.782081604,-0.7825214863,-0.7826974392,-0.7825214863,-0.7819936275,-0.7812898159,-0.7808499336,-0.7812018394,-0.7810258865,-0.7803220749,-0.7799701095,-0.7799701095,-0.7799701095,-0.7802340984,-0.7806739807,-0.7812018394,-0.7817296982,-0.7819936275,-0.782081604,-0.7819936275,-0.7815537453,-0.781113863,-0.7805860043,-0.780146122,-0.7799701095,-0.7797941566,-0.7797061801,-0.779882133,-0.7803220749,-0.7807619572,-0.7809379101,-0.7809379101,-0.781113863,-0.7812898159,-0.7809379101,-0.7804100513,-0.780146122,-0.7800580859,-0.779882133,-0.7800580859,-0.7804100513,-0.7806739807,-0.7806739807,-0.7805860043,-0.7804100513,-0.7802340984,-0.7800580859,-0.7797941566,-0.7795302272,-0.7792662978,-0.7790903449,-0.7790903449,-0.7793542743,-0.7797941566,-0.7804100513,-0.7808499336,-0.7806739807,-0.780146122,-0.7796182036,-0.7793542743,-0.7793542743,-0.7796182036,-0.7797941566,-0.7797061801,-0.7797941566,-0.779882133,-0.7797061801,-0.7794422507,-0.7794422507,-0.7796182036,-0.7797941566,-0.7800580859,-0.780146122,-0.7803220749,-0.7804100513,-0.7806739807,-0.7810258865,-0.7814657688,-0.7819936275,-0.7836652398,-0.7851609588,-0.7855128646,-0.7856888175,-0.7855128646,-0.7847210169,-0.7839292288,-0.7827854156,-0.7799701095,-0.775483191,-0.7722278833,-0.7725797892,-0.7752192616,-0.7784745097,-0.7818176746,-0.7841931581,-0.7853369117,-0.7860407233,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7862166762,-0.7848969698,-0.7815537453,-0.777418673,-0.7752192616,-0.7758350968,-0.7782985568,-0.7819936275,-0.7841931581,-0.7849849463,-0.785600841,-0.7859527469,-0.785600841,-0.7836652398,-0.7814657688,-0.781113863,-0.7812018394,-0.7812018394,-0.7812898159,-0.7814657688,-0.7814657688,-0.7813777924,-0.781113863,-0.7809379101,-0.7807619572,-0.7807619572,-0.7806739807,-0.7806739807,-0.7807619572,-0.7808499336,-0.7809379101,-0.7808499336,-0.7804980278,-0.780146122,-0.779882133,-0.7793542743,-0.7787384391,-0.7784745097,-0.7783865333,-0.7782104611,-0.7780345082,-0.7778585553,-0.7777705789,-0.7777705789,-0.7777705789,-0.7776826024,-0.7775946259,-0.7776826024,-0.7778585553,-0.7778585553,-0.7779465318,-0.7779465318,-0.7779465318,-0.7778585553,-0.7776826024,-0.7778585553,-0.7780345082,-0.7779465318,-0.7780345082,-0.778914392,-0.7796182036,-0.7797061801,-0.7797061801,-0.7797941566,-0.7795302272,-0.7797061801,-0.7804100513,-0.7805860043,-0.7803220749,-0.7802340984,-0.7803220749,-0.7803220749,-0.7804980278,-0.7810258865,-0.7816417217,-0.782081604,-0.7824335098,-0.7826974392,-0.7828733921,-0.7826094627,-0.7818176746,-0.7810258865,-0.7806739807,-0.7808499336,-0.7807619572,-0.7802340984,-0.7797941566,-0.7797061801,-0.7799701095,-0.7804980278,-0.7808499336,-0.7812018394,-0.7817296982,-0.7819936275,-0.782081604,-0.7819936275,-0.7818176746,-0.7813777924,-0.7807619572,-0.7802340984,-0.7799701095,-0.7796182036,-0.7794422507,-0.7796182036,-0.7800580859,-0.7804100513,-0.7805860043,-0.7804980278,-0.7805860043,-0.7808499336,-0.7808499336,-0.7805860043,-0.7804980278,-0.7804100513,-0.7799701095,-0.779882133,-0.7803220749,-0.7806739807,-0.7807619572,-0.7807619572,-0.7805860043,-0.7804100513,-0.780146122,-0.779882133,-0.7797061801,-0.7793542743,-0.7791783214,-0.7794422507,-0.7799701095,-0.7802340984,-0.7804980278,-0.7805860043,-0.7803220749,-0.7799701095,-0.7796182036,-0.7794422507,-0.7793542743,-0.7796182036,-0.7797941566,-0.7796182036,-0.7795302272,-0.7796182036,-0.7795302272,-0.7794422507,-0.7795302272,-0.7797061801,-0.7797941566,-0.7800580859,-0.7803220749,-0.7804100513,-0.7805860043,-0.7806739807,-0.7810258865,-0.7813777924,-0.7819056511,-0.7836652398,-0.7851609588,-0.7854248881,-0.7856888175,-0.7856888175,-0.7848969698,-0.7841931581,-0.7828733921,-0.7786504626,-0.7730197906,-0.7706443071,-0.7720519304,-0.7747793198,-0.7776826024,-0.7808499336,-0.7836652398,-0.7852489352,-0.7859527469,-0.7862166762,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7860407233,-0.7847210169,-0.7817296982,-0.7777705789,-0.7744274139,-0.7741634846,-0.7775066495,-0.7822575569,-0.784545064,-0.7851609588,-0.7856888175,-0.7859527469,-0.785776794,-0.7840172052,-0.7815537453,-0.7809379101,-0.7810258865,-0.7810258865,-0.781113863,-0.7812018394,-0.7813777924,-0.7814657688,-0.7813777924,-0.7810258865,-0.7809379101,-0.7808499336,-0.7807619572,-0.7807619572,-0.7808499336,-0.7809379101,-0.7810258865,-0.7809379101,-0.7804980278,-0.780146122,-0.779882133,-0.7794422507,-0.778914392,-0.7785624862,-0.7783865333,-0.7782104611,-0.7781224847,-0.7780345082,-0.7778585553,-0.7777705789,-0.7777705789,-0.7777705789,-0.7776826024,-0.7777705789,-0.7778585553,-0.7778585553,-0.7779465318,-0.7778585553,-0.7778585553,-0.7777705789,-0.7776826024,-0.7777705789,-0.7779465318,-0.7779465318,-0.7782104611,-0.7791783214,-0.7797941566,-0.7797941566,-0.7797061801,-0.7796182036,-0.7792662978,-0.7794422507,-0.780146122,-0.7804100513,-0.7803220749,-0.7802340984,-0.7802340984,-0.7804100513,-0.7806739807,-0.7812898159,-0.7819056511,-0.7822575569,-0.7825214863,-0.7826974392,-0.7826974392,-0.7822575569,-0.7815537453,-0.7808499336,-0.7804980278,-0.7804100513,-0.7802340984,-0.7799701095,-0.7796182036,-0.7793542743,-0.7796182036,-0.7802340984,-0.7806739807,-0.781113863,-0.7816417217,-0.7818176746,-0.7819936275,-0.782081604,-0.782081604,-0.7817296982,-0.7810258865,-0.7804980278,-0.7800580859,-0.7796182036,-0.7793542743,-0.7793542743,-0.7796182036,-0.7799701095,-0.7803220749,-0.7803220749,-0.780146122,-0.780146122,-0.7804100513,-0.7804980278,-0.7806739807,-0.7807619572,-0.7803220749,-0.7800580859,-0.7802340984,-0.7804980278,-0.7808499336,-0.7809379101,-0.7807619572,-0.7804980278,-0.7802340984,-0.7799701095,-0.7797061801,-0.7795302272,-0.7794422507,-0.7797941566,-0.7803220749,-0.7804100513,-0.7802340984,-0.780146122,-0.780146122,-0.779882133,-0.7796182036,-0.7796182036,-0.7797061801,-0.7797941566,-0.7797941566,-0.7797061801,-0.7796182036,-0.7796182036,-0.7796182036,-0.7797061801,-0.7797061801,-0.7797061801,-0.779882133,-0.7800580859,-0.780146122,-0.7802340984,-0.7802340984,-0.780146122,-0.7805860043,-0.781113863,-0.7819056511,-0.7837532163,-0.7851609588,-0.7854248881,-0.785600841,-0.785776794,-0.7850729823,-0.7842811346,-0.7831373215,-0.7788264155,-0.7725797892,-0.7702924013,-0.771963954,-0.7744274139,-0.7769787908,-0.7799701095,-0.783049345,-0.7851609588,-0.7859527469,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7859527469,-0.7844570875,-0.7817296982,-0.7779465318,-0.7738995552,-0.7727558613,-0.7767148614,-0.7824335098,-0.7847210169,-0.7852489352,-0.7856888175,-0.7860407233,-0.7859527469,-0.7846330404,-0.7824335098,-0.7810258865,-0.7806739807,-0.7805860043,-0.7806739807,-0.7809379101,-0.7812018394,-0.7813777924,-0.7813777924,-0.781113863,-0.7810258865,-0.7809379101,-0.7808499336,-0.7807619572,-0.7809379101,-0.781113863,-0.781113863,-0.781113863,-0.7807619572,-0.7803220749,-0.7799701095,-0.7796182036,-0.7790903449,-0.7788264155,-0.7785624862,-0.7782985568,-0.7781224847,-0.7781224847,-0.7779465318,-0.7777705789,-0.7777705789,-0.7778585553,-0.7777705789,-0.7778585553,-0.7778585553,-0.7779465318,-0.7780345082,-0.7779465318,-0.7778585553,-0.7778585553,-0.7777705789,-0.7777705789,-0.7779465318,-0.7782104611,-0.7786504626,-0.7794422507,-0.7799701095,-0.7797941566,-0.7797061801,-0.7797061801,-0.7796182036,-0.7796182036,-0.7800580859,-0.7804100513,-0.7804100513,-0.7802340984,-0.7802340984,-0.7804100513,-0.7807619572,-0.7814657688,-0.782081604,-0.7824335098,-0.7826974392,-0.7826974392,-0.7822575569,-0.7816417217,-0.7812018394,-0.7808499336,-0.7804100513,-0.7800580859,-0.779882133,-0.7797061801,-0.7794422507,-0.7790903449,-0.7792662978,-0.779882133,-0.7804980278,-0.7809379101,-0.7812898159,-0.7815537453,-0.7819056511,-0.7821695805,-0.7821695805,-0.7818176746,-0.7813777924,-0.7809379101,-0.7803220749,-0.7797941566,-0.7793542743,-0.7791783214,-0.7793542743,-0.7795302272,-0.779882133,-0.780146122,-0.780146122,-0.7800580859,-0.780146122,-0.7804100513,-0.7806739807,-0.7808499336,-0.7805860043,-0.7803220749,-0.7802340984,-0.7803220749,-0.7806739807,-0.7809379101,-0.7807619572,-0.7804980278,-0.7803220749,-0.7800580859,-0.7797941566,-0.7795302272,-0.779882133,-0.7804100513,-0.7805860043,-0.7803220749,-0.7799701095,-0.7799701095,-0.780146122,-0.7800580859,-0.779882133,-0.779882133,-0.7799701095,-0.7799701095,-0.779882133,-0.779882133,-0.779882133,-0.779882133,-0.7799701095,-0.7799701095,-0.7797941566,-0.7797941566,-0.7799701095,-0.7802340984,-0.7802340984,-0.780146122,-0.7800580859,-0.7800580859,-0.7803220749,-0.7808499336,-0.7816417217,-0.7835772634,-0.7851609588,-0.7852489352,-0.7852489352,-0.785600841,-0.7851609588,-0.7842811346,-0.7834013104,-0.7796182036,-0.77328372,-0.7702924013,-0.7715240717,-0.7737236023,-0.7762749791,-0.7795302272,-0.7827854156,-0.7849849463,-0.7858647704,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7860407233,-0.784545064,-0.7816417217,-0.7777705789,-0.7735476494,-0.7721399069,-0.776450932,-0.7827854156,-0.7849849463,-0.7853369117,-0.7858647704,-0.7860407233,-0.7855128646,-0.7838411927,-0.7819936275,-0.7809379101,-0.7804980278,-0.7804100513,-0.7804980278,-0.7807619572,-0.7810258865,-0.7812018394,-0.7812018394,-0.781113863,-0.7810258865,-0.7810258865,-0.7808499336,-0.7807619572,-0.7809379101,-0.781113863,-0.781113863,-0.7810258865,-0.7808499336,-0.7804100513,-0.7799701095,-0.7795302272,-0.7790903449,-0.778914392,-0.7786504626,-0.7782985568,-0.7781224847,-0.7781224847,-0.7779465318,-0.7778585553,-0.7777705789,-0.7778585553,-0.7778585553,-0.7779465318,-0.7779465318,-0.7778585553,-0.7779465318,-0.7779465318,-0.7779465318,-0.7779465318,-0.7779465318,-0.7779465318,-0.7781224847,-0.7784745097,-0.778914392,-0.7795302272,-0.7800580859,-0.7800580859,-0.779882133,-0.7800580859,-0.780146122,-0.780146122,-0.7802340984,-0.7803220749,-0.780146122,-0.7799701095,-0.7800580859,-0.7803220749,-0.7808499336,-0.7815537453,-0.782081604,-0.7825214863,-0.7826094627,-0.7823455334,-0.7818176746,-0.7812898159,-0.7812018394,-0.7810258865,-0.7805860043,-0.780146122,-0.7797941566,-0.7795302272,-0.7793542743,-0.7791783214,-0.7794422507,-0.7799701095,-0.7804980278,-0.7808499336,-0.7810258865,-0.7812898159,-0.7816417217,-0.7819056511,-0.7819936275,-0.7818176746,-0.7815537453,-0.781113863,-0.7805860043,-0.7799701095,-0.7794422507,-0.7792662978,-0.7792662978,-0.7793542743,-0.7796182036,-0.779882133,-0.780146122,-0.7802340984,-0.7802340984,-0.7804100513,-0.7807619572,-0.7808499336,-0.7805860043,-0.7804100513,-0.7804100513,-0.7803220749,-0.7805860043,-0.7808499336,-0.7808499336,-0.7805860043,-0.7803220749,-0.7800580859,-0.7797061801,-0.7797061801,-0.7803220749,-0.7809379101,-0.7805860043,-0.7800580859,-0.779882133,-0.7799701095,-0.780146122,-0.780146122,-0.7800580859,-0.780146122,-0.7800580859,-0.7800580859,-0.7799701095,-0.7800580859,-0.780146122,-0.780146122,-0.7800580859,-0.7800580859,-0.7800580859,-0.780146122,-0.7803220749,-0.7803220749,-0.7802340984,-0.7800580859,-0.7800580859,-0.7800580859,-0.7802340984,-0.7805860043,-0.7814657688,-0.7834892869,-0.7851609588,-0.7849849463,-0.7848089933,-0.7854248881,-0.7852489352,-0.7844570875,-0.7835772634,-0.7800580859,-0.7736356258,-0.7702924013,-0.7710841894,-0.7731077671,-0.7756591439,-0.7788264155,-0.7821695805,-0.7847210169,-0.785776794,-0.7862166762,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7859527469,-0.7846330404,-0.7817296982,-0.7775066495,-0.7730197906,-0.7720519304,-0.7768908143,-0.783049345,-0.7851609588,-0.7855128646,-0.7858647704,-0.7858647704,-0.7844570875,-0.7822575569,-0.7809379101,-0.7808499336,-0.7806739807,-0.7804980278,-0.7805860043,-0.7806739807,-0.7807619572,-0.7810258865,-0.781113863,-0.7810258865,-0.7810258865,-0.7809379101,-0.7807619572,-0.7806739807,-0.7807619572,-0.7810258865,-0.7810258865,-0.7810258865,-0.7808499336,-0.7804100513,-0.7799701095,-0.7796182036,-0.7791783214,-0.7788264155,-0.7786504626,-0.7784745097,-0.7782104611,-0.7780345082,-0.7780345082,-0.7780345082,-0.7778585553,-0.7778585553,-0.7779465318,-0.7779465318,-0.7779465318,-0.7778585553,-0.7777705789,-0.7777705789,-0.7779465318,-0.7780345082,-0.7780345082,-0.7781224847,-0.7783865333,-0.7787384391,-0.7791783214,-0.7797061801,-0.7800580859,-0.780146122,-0.780146122,-0.7804980278,-0.7806739807,-0.7804980278,-0.7803220749,-0.780146122,-0.779882133,-0.7797061801,-0.7797941566,-0.7802340984,-0.7808499336,-0.7814657688,-0.7819056511,-0.7822575569,-0.7821695805,-0.7818176746,-0.7813777924,-0.7812898159,-0.7813777924,-0.7812898159,-0.7809379101,-0.7804100513,-0.779882133,-0.7794422507,-0.7794422507,-0.7796182036,-0.779882133,-0.7804980278,-0.7808499336,-0.7810258865,-0.781113863,-0.781113863,-0.7812018394,-0.7814657688,-0.7816417217,-0.7816417217,-0.7815537453,-0.7812018394,-0.7807619572,-0.780146122,-0.7796182036,-0.7793542743,-0.7792662978,-0.7792662978,-0.7793542743,-0.7796182036,-0.779882133,-0.780146122,-0.7803220749,-0.7805860043,-0.7808499336,-0.7808499336,-0.7805860043,-0.7804980278,-0.7804980278,-0.7803220749,-0.7803220749,-0.7807619572,-0.7809379101,-0.7806739807,-0.7802340984,-0.7799701095,-0.7797941566,-0.7800580859,-0.7807619572,-0.7808499336,-0.7803220749,-0.7799701095,-0.7800580859,-0.780146122,-0.7802340984,-0.7802340984,-0.780146122,-0.7802340984,-0.780146122,-0.7800580859,-0.7799701095,-0.780146122,-0.7802340984,-0.780146122,-0.7800580859,-0.7800580859,-0.7802340984,-0.7804980278,-0.7804100513,-0.7802340984,-0.780146122,-0.7800580859,-0.7799701095,-0.7799701095,-0.7800580859,-0.7803220749,-0.7814657688,-0.7835772634,-0.7852489352,-0.7849849463,-0.784545064,-0.7852489352,-0.7853369117,-0.784545064,-0.7837532163,-0.7804100513,-0.7738115788,-0.7701163888,-0.7707322836,-0.7724038363,-0.7746913433,-0.7778585553,-0.7813777924,-0.7843691111,-0.785600841,-0.7861286998,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7858647704,-0.784545064,-0.7813777924,-0.7769787908,-0.7727558613,-0.7724918127,-0.7775946259,-0.7835772634,-0.7853369117,-0.7855128646,-0.7858647704,-0.7855128646,-0.7835772634,-0.7814657688,-0.7809379101,-0.7810258865,-0.7808499336,-0.7806739807,-0.7807619572,-0.7808499336,-0.7809379101,-0.781113863,-0.781113863,-0.7809379101,-0.7810258865,-0.7810258865,-0.7808499336,-0.7806739807,-0.7807619572,-0.7808499336,-0.7810258865,-0.781113863,-0.7810258865,-0.7806739807,-0.7802340984,-0.7797941566,-0.7792662978,-0.7788264155,-0.7785624862,-0.7784745097,-0.7782985568,-0.7781224847,-0.7781224847,-0.7781224847,-0.7779465318,-0.7778585553,-0.7779465318,-0.7780345082,-0.7778585553,-0.7777705789,-0.7777705789,-0.7777705789,-0.7779465318,-0.7780345082,-0.7781224847,-0.7782104611,-0.7782985568,-0.7787384391,-0.7792662978,-0.7797941566,-0.7800580859,-0.7800580859,-0.780146122,-0.7806739807,-0.7808499336,-0.7805860043,-0.7802340984,-0.7800580859,-0.779882133,-0.7797061801,-0.7796182036,-0.7799701095,-0.7806739807,-0.7812898159,-0.7817296982,-0.7819936275,-0.7819056511,-0.7814657688,-0.7812898159,-0.7813777924,-0.7815537453,-0.7815537453,-0.7812898159,-0.7808499336,-0.7800580859,-0.7793542743,-0.7793542743,-0.779882133,-0.7803220749,-0.7808499336,-0.7812018394,-0.7812898159,-0.7812898159,-0.781113863,-0.7809379101,-0.7810258865,-0.7813777924,-0.7814657688,-0.7813777924,-0.7812018394,-0.7808499336,-0.7802340984,-0.7797941566,-0.7795302272,-0.7792662978,-0.7790903449,-0.7792662978,-0.7794422507,-0.7797061801,-0.7800580859,-0.7803220749,-0.7806739807,-0.7808499336,-0.7807619572,-0.7805860043,-0.7805860043,-0.7804980278,-0.7802340984,-0.780146122,-0.7804980278,-0.7807619572,-0.7806739807,-0.7803220749,-0.7799701095,-0.7799701095,-0.7804100513,-0.7809379101,-0.7805860043,-0.7800580859,-0.7800580859,-0.7802340984,-0.7802340984,-0.7802340984,-0.7802340984,-0.7802340984,-0.7802340984,-0.7802340984,-0.780146122,-0.780146122,-0.7802340984,-0.7803220749,-0.780146122,-0.780146122,-0.780146122,-0.7804100513,-0.7804980278,-0.780146122,-0.7799701095,-0.7800580859,-0.7800580859,-0.779882133,-0.779882133,-0.779882133,-0.7800580859,-0.7813777924,-0.7837532163,-0.7853369117,-0.7851609588,-0.7846330404,-0.7852489352,-0.7853369117,-0.784545064,-0.7839292288,-0.7809379101,-0.7743394375,-0.7700284123,-0.7702924013,-0.7718759775,-0.7741634846,-0.7777705789,-0.7813777924,-0.7840172052,-0.7853369117,-0.7860407233,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7858647704,-0.7843691111,-0.7812018394,-0.7766268849,-0.7724038363,-0.7725797892,-0.7781224847,-0.7839292288,-0.7852489352,-0.7854248881,-0.7858647704,-0.7852489352,-0.783049345,-0.7812898159,-0.7812018394,-0.7812018394,-0.781113863,-0.7810258865,-0.781113863,-0.7812018394,-0.7812018394,-0.781113863,-0.781113863,-0.7809379101,-0.7809379101,-0.7810258865,-0.7809379101,-0.7807619572,-0.7807619572,-0.7808499336,-0.781113863,-0.7812898159,-0.7812018394,-0.7809379101,-0.7805860043,-0.7799701095,-0.7792662978,-0.7787384391,-0.7786504626,-0.7784745097,-0.7782104611,-0.7781224847,-0.7782104611,-0.7781224847,-0.7778585553,-0.7777705789,-0.7779465318,-0.7779465318,-0.7777705789,-0.7776826024,-0.7777705789,-0.7778585553,-0.7780345082,-0.7781224847,-0.7781224847,-0.7782985568,-0.7784745097,-0.7788264155,-0.7792662978,-0.7797941566,-0.7800580859,-0.780146122,-0.7802340984,-0.7804980278,-0.7806739807,-0.7806739807,-0.7804980278,-0.7802340984,-0.7800580859,-0.779882133,-0.7797941566,-0.7799701095,-0.7804100513,-0.781113863,-0.7814657688,-0.7815537453,-0.7814657688,-0.7812898159,-0.7813777924,-0.7815537453,-0.7816417217,-0.7816417217,-0.7814657688,-0.781113863,-0.7802340984,-0.7794422507,-0.7794422507,-0.7800580859,-0.7804980278,-0.7810258865,-0.7813777924,-0.7815537453,-0.7815537453,-0.7812018394,-0.7808499336,-0.7807619572,-0.781113863,-0.7812898159,-0.781113863,-0.781113863,-0.7807619572,-0.780146122,-0.7797061801,-0.7796182036,-0.7794422507,-0.7792662978,-0.7794422507,-0.7796182036,-0.7797941566,-0.7800580859,-0.7802340984,-0.7804980278,-0.7807619572,-0.7807619572,-0.7804980278,-0.7804100513,-0.7803220749,-0.780146122,-0.780146122,-0.7804100513,-0.7806739807,-0.7807619572,-0.7804980278,-0.780146122,-0.780146122,-0.7806739807,-0.7808499336,-0.7804980278,-0.780146122,-0.7802340984,-0.7803220749,-0.7804100513,-0.7802340984,-0.780146122,-0.7802340984,-0.7802340984,-0.780146122,-0.780146122,-0.780146122,-0.7802340984,-0.7803220749,-0.7802340984,-0.7802340984,-0.7802340984,-0.7802340984,-0.7802340984,-0.7799701095,-0.779882133,-0.779882133,-0.779882133,-0.7797061801,-0.7797941566,-0.7797941566,-0.7799701095,-0.7814657688,-0.7840172052,-0.7855128646,-0.7853369117,-0.7847210169,-0.7853369117,-0.7855128646,-0.7846330404,-0.7841051817,-0.7816417217,-0.7750432491,-0.7701163888,-0.7700284123,-0.7716120481,-0.7740755081,-0.7777705789,-0.7812018394,-0.7836652398,-0.7851609588,-0.7860407233,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7862166762,-0.7858647704,-0.7841051817,-0.7805860043,-0.7760990262,-0.7721399069,-0.7726678848,-0.7785624862,-0.7841051817,-0.7850729823,-0.7853369117,-0.785776794,-0.7848969698,-0.7825214863,-0.7812018394,-0.7812898159,-0.7814657688,-0.7815537453,-0.7814657688,-0.7812898159,-0.7813777924,-0.7813777924,-0.7812898159,-0.7812018394,-0.781113863,-0.7809379101,-0.7809379101,-0.781113863,-0.7810258865,-0.7809379101,-0.7808499336,-0.7810258865,-0.7812898159,-0.7813777924,-0.781113863,-0.7807619572,-0.780146122,-0.7794422507,-0.778914392,-0.7788264155,-0.7786504626,-0.7783865333,-0.7781224847,-0.7781224847,-0.7781224847,-0.7778585553,-0.7777705789,-0.7778585553,-0.7778585553,-0.7776826024,-0.7776826024,-0.7777705789,-0.7779465318,-0.7780345082,-0.7780345082,-0.7780345082,-0.7782985568,-0.7785624862,-0.778914392,-0.7793542743,-0.7799701095,-0.7803220749,-0.7804100513,-0.7804980278,-0.7806739807,-0.7809379101,-0.7812898159,-0.7812898159,-0.7808499336,-0.7804100513,-0.780146122,-0.7800580859,-0.7800580859,-0.7804100513,-0.7809379101,-0.7812018394,-0.781113863,-0.7810258865,-0.7810258865,-0.7812898159,-0.7817296982,-0.7819056511,-0.7818176746,-0.7816417217,-0.7812898159,-0.7804980278,-0.7796182036,-0.7797061801,-0.780146122,-0.7805860043,-0.7810258865,-0.7814657688,-0.7816417217,-0.7817296982,-0.7813777924,-0.7809379101,-0.7807619572,-0.7809379101,-0.7810258865,-0.7810258865,-0.7808499336,-0.7804980278,-0.780146122,-0.7797941566,-0.7797941566,-0.7797061801,-0.7797061801,-0.779882133,-0.780146122,-0.7802340984,-0.780146122,-0.780146122,-0.7804100513,-0.7807619572,-0.7807619572,-0.7804100513,-0.7803220749,-0.7802340984,-0.7800580859,-0.7800580859,-0.7803220749,-0.7804980278,-0.7805860043,-0.7804980278,-0.7802340984,-0.7804980278,-0.7809379101,-0.7807619572,-0.7804980278,-0.7803220749,-0.7804100513,-0.7804100513,-0.7804980278,-0.7804100513,-0.7803220749,-0.7803220749,-0.7803220749,-0.7802340984,-0.780146122,-0.7800580859,-0.7802340984,-0.7803220749,-0.7802340984,-0.780146122,-0.7800580859,-0.7799701095,-0.779882133,-0.7799701095,-0.7799701095,-0.7799701095,-0.7797941566,-0.7796182036,-0.7797061801,-0.7797061801,-0.7802340984,-0.7819056511,-0.7841051817,-0.785600841,-0.785600841,-0.7849849463,-0.7853369117,-0.7854248881,-0.7846330404,-0.7841931581,-0.7822575569,-0.7759230733,-0.7704683542,-0.7701163888,-0.7720519304,-0.7744274139,-0.7776826024,-0.7808499336,-0.7834013104,-0.7850729823,-0.7859527469,-0.7862166762,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7858647704,-0.7838411927,-0.7799701095,-0.7755711675,-0.7720519304,-0.7728438377,-0.778914392,-0.7843691111,-0.7852489352,-0.7855128646,-0.785776794,-0.784545064,-0.7822575569,-0.7810258865,-0.7812018394,-0.7814657688,-0.7817296982,-0.7817296982,-0.7816417217,-0.7815537453,-0.7814657688,-0.7813777924,-0.7813777924,-0.7812898159,-0.781113863,-0.781113863,-0.781113863,-0.7810258865,-0.7809379101,-0.7808499336,-0.7807619572,-0.7810258865,-0.7812898159,-0.7812898159,-0.7809379101,-0.7803220749,-0.7796182036,-0.7791783214,-0.778914392,-0.7787384391,-0.7784745097,-0.7782104611,-0.7781224847,-0.7780345082,-0.7779465318,-0.7778585553,-0.7777705789,-0.7776826024,-0.7775946259,-0.7776826024,-0.7778585553,-0.7780345082,-0.7779465318,-0.7780345082,-0.7781224847,-0.7782104611,-0.7785624862,-0.7790023685,-0.7796182036,-0.7802340984,-0.7805860043,-0.7805860043,-0.7807619572,-0.781113863,-0.7814657688,-0.7816417217,-0.7815537453,-0.781113863,-0.7807619572,-0.7804980278,-0.7803220749,-0.7802340984,-0.7804980278,-0.7809379101,-0.7810258865,-0.7808499336,-0.7807619572,-0.7809379101,-0.7813777924,-0.7819056511,-0.7819936275,-0.7818176746,-0.7817296982,-0.7813777924,-0.7805860043,-0.7797941566,-0.779882133,-0.7803220749,-0.7806739807,-0.781113863,-0.7814657688,-0.7815537453,-0.7816417217,-0.7814657688,-0.7810258865,-0.7807619572,-0.7807619572,-0.7808499336,-0.7808499336,-0.7806739807,-0.7804980278,-0.7803220749,-0.780146122,-0.780146122,-0.780146122,-0.780146122,-0.7803220749,-0.7804100513,-0.7804100513,-0.7803220749,-0.780146122,-0.7804100513,-0.7807619572,-0.7807619572,-0.7804980278,-0.7804100513,-0.7802340984,-0.7800580859,-0.780146122,-0.7803220749,-0.7804100513,-0.7804100513,-0.7804100513,-0.7804980278,-0.7810258865,-0.781113863,-0.7807619572,-0.7804980278,-0.7804100513,-0.7804100513,-0.7804980278,-0.7805860043,-0.7806739807,-0.7805860043,-0.7804100513,-0.7803220749,-0.7802340984,-0.780146122,-0.7800580859,-0.7802340984,-0.7804100513,-0.7802340984,-0.7799701095,-0.7797941566,-0.7799701095,-0.7799701095,-0.779882133,-0.7799701095,-0.7799701095,-0.7797941566,-0.7797061801,-0.7797061801,-0.779882133,-0.7804980278,-0.7817296982,-0.7831373215,-0.7848089933,-0.785776794,-0.7851609588,-0.7852489352,-0.7854248881,-0.7847210169,-0.7843691111,-0.7826094627,-0.7765389085,-0.77082026,-0.7700284123,-0.7716120481,-0.7738115788,-0.7769787908,-0.7802340984,-0.7832252979,-0.7849849463,-0.7858647704,-0.7862166762,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7856888175,-0.7834892869,-0.779882133,-0.775483191,-0.7718759775,-0.7731077671,-0.7793542743,-0.784545064,-0.7853369117,-0.7856888175,-0.785776794,-0.7842811346,-0.7819936275,-0.7809379101,-0.7812018394,-0.7813777924,-0.7815537453,-0.7817296982,-0.7816417217,-0.7816417217,-0.7814657688,-0.7815537453,-0.7817296982,-0.7816417217,-0.7814657688,-0.7813777924,-0.781113863,-0.7809379101,-0.7808499336,-0.7807619572,-0.7807619572,-0.7808499336,-0.781113863,-0.7812018394,-0.781113863,-0.7806739807,-0.7799701095,-0.7792662978,-0.7788264155,-0.7785624862,-0.7783865333,-0.7782104611,-0.7781224847,-0.7780345082,-0.7779465318,-0.7778585553,-0.7778585553,-0.7777705789,-0.7775946259,-0.7776826024,-0.7778585553,-0.7779465318,-0.7779465318,-0.7781224847,-0.7782104611,-0.7782985568,-0.7787384391,-0.7793542743,-0.7797941566,-0.7803220749,-0.7806739807,-0.7806739807,-0.781113863,-0.7817296982,-0.7817296982,-0.7816417217,-0.7813777924,-0.781113863,-0.7809379101,-0.7808499336,-0.7807619572,-0.7808499336,-0.7808499336,-0.7809379101,-0.7808499336,-0.7805860043,-0.7805860043,-0.7807619572,-0.7812898159,-0.7818176746,-0.7818176746,-0.7816417217,-0.7816417217,-0.7812898159,-0.7804100513,-0.7796182036,-0.7799701095,-0.7804100513,-0.7806739807,-0.7812018394,-0.7815537453,-0.7815537453,-0.7814657688,-0.7812898159,-0.7810258865,-0.7806739807,-0.7804980278,-0.7805860043,-0.7805860043,-0.7805860043,-0.7807619572,-0.7805860043,-0.7804100513,-0.7804100513,-0.7805860043,-0.7804980278,-0.7804980278,-0.7804980278,-0.7805860043,-0.7804100513,-0.7802340984,-0.7804100513,-0.7807619572,-0.7808499336,-0.7805860043,-0.7804980278,-0.7802340984,-0.7800580859,-0.7802340984,-0.7804100513,-0.7803220749,-0.7803220749,-0.7804100513,-0.7807619572,-0.7812018394,-0.7810258865,-0.7804980278,-0.7803220749,-0.7804100513,-0.7804100513,-0.7804980278,-0.7806739807,-0.7807619572,-0.7805860043,-0.7803220749,-0.7802340984,-0.780146122,-0.7800580859,-0.7800580859,-0.7802340984,-0.7803220749,-0.780146122,-0.779882133,-0.7797941566,-0.7799701095,-0.7800580859,-0.7799701095,-0.779882133,-0.7797941566,-0.7797061801,-0.7797061801,-0.7797941566,-0.7797061801,-0.7799701095,-0.7804980278,-0.7812018394,-0.7832252979,-0.7853369117,-0.7852489352,-0.7851609588,-0.7853369117,-0.7848089933,-0.7843691111,-0.7827854156,-0.7767148614,-0.7707322836,-0.7699404359,-0.7715240717,-0.7734596729,-0.7762749791,-0.7797941566,-0.783049345,-0.7848969698,-0.785776794,-0.7862166762,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7862166762,-0.7854248881,-0.7831373215,-0.7794422507,-0.7748672962,-0.7715240717,-0.7734596729,-0.7800580859,-0.7847210169,-0.7853369117,-0.7856888175,-0.785600841,-0.7840172052,-0.7818176746,-0.7810258865,-0.7812898159,-0.7813777924,-0.7813777924,-0.7813777924,-0.7814657688,-0.7815537453,-0.7815537453,-0.7817296982,-0.7818176746,-0.7818176746,-0.7817296982,-0.7815537453,-0.7812018394,-0.7810258865,-0.7809379101,-0.7806739807,-0.7806739807,-0.7807619572,-0.7808499336,-0.781113863,-0.7813777924,-0.7812018394,-0.7804100513,-0.7795302272,-0.7790023685,-0.7786504626,-0.7782985568,-0.7782104611,-0.7781224847,-0.7780345082,-0.7777705789,-0.7777705789,-0.7778585553,-0.7778585553,-0.7776826024,-0.7776826024,-0.7777705789,-0.7780345082,-0.7781224847,-0.7781224847,-0.7782985568,-0.7785624862,-0.7790903449,-0.7796182036,-0.7800580859,-0.7805860043,-0.7806739807,-0.7807619572,-0.7814657688,-0.7819936275,-0.7817296982,-0.7816417217,-0.7813777924,-0.7810258865,-0.7809379101,-0.7809379101,-0.7810258865,-0.7812018394,-0.781113863,-0.7808499336,-0.7805860043,-0.7804100513,-0.7803220749,-0.7805860043,-0.781113863,-0.7815537453,-0.7814657688,-0.7813777924,-0.7813777924,-0.7809379101,-0.7800580859,-0.7795302272,-0.780146122,-0.7804100513,-0.7803220749,-0.7808499336,-0.7812898159,-0.7813777924,-0.7812898159,-0.781113863,-0.7807619572,-0.7804980278,-0.7803220749,-0.7804100513,-0.7805860043,-0.7807619572,-0.7808499336,-0.7806739807,-0.7805860043,-0.7807619572,-0.7808499336,-0.7809379101,-0.7808499336,-0.7808499336,-0.7807619572,-0.7806739807,-0.7804100513,-0.7804980278,-0.7807619572,-0.7809379101,-0.7807619572,-0.7806739807,-0.7803220749,-0.7800580859,-0.780146122,-0.7803220749,-0.7803220749,-0.7802340984,-0.7804100513,-0.7809379101,-0.7812018394,-0.7808499336,-0.7804100513,-0.7803220749,-0.7804100513,-0.7804100513,-0.7806739807,-0.7808499336,-0.7807619572,-0.7804980278,-0.7802340984,-0.7800580859,-0.7799701095,-0.7799701095,-0.7799701095,-0.7800580859,-0.7800580859,-0.7799701095,-0.7797941566,-0.7797061801,-0.779882133,-0.7800580859,-0.7799701095,-0.7797941566,-0.7797061801,-0.7796182036,-0.7796182036,-0.7796182036,-0.7795302272,-0.7797061801,-0.7799701095,-0.780146122,-0.7818176746,-0.7846330404,-0.7853369117,-0.7851609588,-0.7852489352,-0.7847210169,-0.7842811346,-0.7827854156,-0.7766268849,-0.7706443071,-0.7698524594,-0.7714360952,-0.77328372,-0.7763629556,-0.7800580859,-0.7831373215,-0.7848969698,-0.7858647704,-0.7862166762,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7862166762,-0.7855128646,-0.7829613686,-0.7790023685,-0.7744274139,-0.7711721659,-0.7736356258,-0.7806739807,-0.7849849463,-0.7853369117,-0.7856888175,-0.7855128646,-0.7838411927,-0.7817296982,-0.7808499336,-0.7810258865,-0.781113863,-0.781113863,-0.781113863,-0.7812018394,-0.7813777924,-0.7815537453,-0.7816417217,-0.7817296982,-0.7818176746,-0.7819936275,-0.7818176746,-0.7814657688,-0.7812018394,-0.781113863,-0.7809379101,-0.7806739807,-0.7806739807,-0.7807619572,-0.7810258865,-0.7812898159,-0.7813777924,-0.7809379101,-0.780146122,-0.7794422507,-0.778914392,-0.7784745097,-0.7782985568,-0.7782104611,-0.7779465318,-0.7776826024,-0.7776826024,-0.7778585553,-0.7777705789,-0.7775066495,-0.7775946259,-0.7778585553,-0.7781224847,-0.7782104611,-0.7781224847,-0.7783865333,-0.7788264155,-0.7792662978,-0.7797941566,-0.7804100513,-0.7808499336,-0.7808499336,-0.7809379101,-0.7816417217,-0.7821695805,-0.7818176746,-0.7815537453,-0.7813777924,-0.7809379101,-0.7808499336,-0.7810258865,-0.781113863,-0.7812898159,-0.7812018394,-0.7809379101,-0.7805860043,-0.7803220749,-0.780146122,-0.7803220749,-0.7807619572,-0.7812898159,-0.7812018394,-0.7809379101,-0.7808499336,-0.7804980278,-0.7797941566,-0.7797061801,-0.7807619572,-0.7806739807,-0.7800580859,-0.7804980278,-0.7810258865,-0.7810258865,-0.7810258865,-0.7808499336,-0.7805860043,-0.7803220749,-0.7802340984,-0.7804100513,-0.7805860043,-0.7807619572,-0.7808499336,-0.7807619572,-0.7807619572,-0.7808499336,-0.7809379101,-0.781113863,-0.7812898159,-0.781113863,-0.7808499336,-0.7807619572,-0.7805860043,-0.7806739807,-0.7809379101,-0.7810258865,-0.7808499336,-0.7806739807,-0.7804980278,-0.780146122,-0.7800580859,-0.7802340984,-0.7804100513,-0.7802340984,-0.7804100513,-0.7809379101,-0.7810258865,-0.7807619572,-0.7804980278,-0.7804980278,-0.7805860043,-0.7806739807,-0.7807619572,-0.7807619572,-0.7804980278,-0.7802340984,-0.7800580859,-0.7799701095,-0.779882133,-0.7797941566,-0.7797941566,-0.7797941566,-0.779882133,-0.7799701095,-0.7797941566,-0.7797061801,-0.779882133,-0.7800580859,-0.7799701095,-0.779882133,-0.779882133,-0.7797941566,-0.7797061801,-0.7797061801,-0.7797941566,-0.779882133,-0.7800580859,-0.7799701095,-0.7812018394,-0.7839292288,-0.7854248881,-0.7854248881,-0.7853369117,-0.7848089933,-0.7843691111,-0.7824335098,-0.7759230733,-0.7701163888,-0.7695885301,-0.7706443071,-0.7725797892,-0.7765389085,-0.7804980278,-0.783313334,-0.7849849463,-0.7859527469,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7855128646,-0.783049345,-0.7790023685,-0.774251461,-0.7709082365,-0.7737236023,-0.7809379101,-0.7851609588,-0.7855128646,-0.785776794,-0.785600841,-0.7838411927,-0.7817296982,-0.7808499336,-0.7809379101,-0.7810258865,-0.7810258865,-0.7810258865,-0.781113863,-0.7812898159,-0.7813777924,-0.7814657688,-0.7815537453,-0.7816417217,-0.7819936275,-0.782081604,-0.7818176746,-0.7814657688,-0.7812898159,-0.7810258865,-0.7808499336,-0.7807619572,-0.7806739807,-0.7808499336,-0.781113863,-0.7812018394,-0.781113863,-0.7806739807,-0.779882133,-0.7791783214,-0.7787384391,-0.7783865333,-0.7782985568,-0.7779465318,-0.7776826024,-0.7777705789,-0.7780345082,-0.7778585553,-0.777418673,-0.7775066495,-0.7780345082,-0.7782985568,-0.7782104611,-0.7782104611,-0.7784745097,-0.778914392,-0.7795302272,-0.780146122,-0.7806739807,-0.7808499336,-0.7809379101,-0.7810258865,-0.7813777924,-0.7819056511,-0.7819056511,-0.7816417217,-0.7813777924,-0.781113863,-0.7810258865,-0.7810258865,-0.7810258865,-0.7812018394,-0.7812018394,-0.7807619572,-0.7804100513,-0.7803220749,-0.7803220749,-0.7803220749,-0.7805860043,-0.7809379101,-0.7809379101,-0.7805860043,-0.7802340984,-0.780146122,-0.7797061801,-0.780146122,-0.7813777924,-0.7810258865,-0.779882133,-0.780146122,-0.7805860043,-0.7806739807,-0.7806739807,-0.7806739807,-0.7805860043,-0.7803220749,-0.780146122,-0.7802340984,-0.7804980278,-0.7806739807,-0.7808499336,-0.7808499336,-0.7808499336,-0.7809379101,-0.7810258865,-0.7812018394,-0.7813777924,-0.7812018394,-0.7809379101,-0.7808499336,-0.7807619572,-0.7807619572,-0.7809379101,-0.781113863,-0.7809379101,-0.7806739807,-0.7804100513,-0.7802340984,-0.7800580859,-0.7802340984,-0.7805860043,-0.7805860043,-0.7804980278,-0.7805860043,-0.7807619572,-0.7806739807,-0.7805860043,-0.7805860043,-0.7807619572,-0.7808499336,-0.7808499336,-0.7807619572,-0.7804100513,-0.7800580859,-0.779882133,-0.7797941566,-0.7797941566,-0.7797941566,-0.7797941566,-0.7797941566,-0.7797941566,-0.779882133,-0.779882133,-0.7800580859,-0.7802340984,-0.7802340984,-0.780146122,-0.780146122,-0.780146122,-0.780146122,-0.7800580859,-0.7799701095,-0.7800580859,-0.780146122,-0.780146122,-0.7799701095,-0.7808499336,-0.7834013104,-0.7853369117,-0.785600841,-0.785600841,-0.7848969698,-0.7844570875,-0.7822575569,-0.7755711675,-0.7701163888,-0.769764483,-0.77082026,-0.7725797892,-0.776450932,-0.7808499336,-0.7837532163,-0.7851609588,-0.7860407233,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7860407233,-0.7852489352,-0.7827854156,-0.7785624862,-0.7737236023,-0.7706443071,-0.7738115788,-0.781113863,-0.7852489352,-0.785600841,-0.7858647704,-0.7855128646,-0.7838411927,-0.7818176746,-0.7808499336,-0.7809379101,-0.7809379101,-0.7809379101,-0.7810258865,-0.7810258865,-0.781113863,-0.781113863,-0.7810258865,-0.7812018394,-0.7813777924,-0.7815537453,-0.7818176746,-0.7819936275,-0.7818176746,-0.7815537453,-0.7813777924,-0.7812018394,-0.7809379101,-0.7807619572,-0.7808499336,-0.7810258865,-0.7810258865,-0.781113863,-0.7809379101,-0.7803220749,-0.7795302272,-0.778914392,-0.7785624862,-0.7783865333,-0.7781224847,-0.7777705789,-0.7778585553,-0.7780345082,-0.7778585553,-0.777418673,-0.7775066495,-0.7779465318,-0.7782104611,-0.7782104611,-0.7782985568,-0.7785624862,-0.7790903449,-0.7797061801,-0.7804100513,-0.7808499336,-0.781113863,-0.7812018394,-0.781113863,-0.7812018394,-0.7814657688,-0.7818176746,-0.782081604,-0.7819056511,-0.7816417217,-0.7813777924,-0.7812018394,-0.7812018394,-0.7812898159,-0.7812898159,-0.7808499336,-0.7804100513,-0.7804100513,-0.7804100513,-0.7804100513,-0.7805860043,-0.7806739807,-0.7805860043,-0.7804100513,-0.780146122,-0.7799701095,-0.7796182036,-0.7804100513,-0.7819056511,-0.7813777924,-0.7799701095,-0.7797941566,-0.7802340984,-0.7804100513,-0.7804980278,-0.7804980278,-0.7804100513,-0.7802340984,-0.780146122,-0.7802340984,-0.7804100513,-0.7805860043,-0.7809379101,-0.7812018394,-0.7812018394,-0.7812018394,-0.7813777924,-0.7816417217,-0.7816417217,-0.7812898159,-0.7810258865,-0.7809379101,-0.7809379101,-0.7810258865,-0.781113863,-0.781113863,-0.7810258865,-0.7808499336,-0.7804980278,-0.7802340984,-0.780146122,-0.7803220749,-0.7807619572,-0.7810258865,-0.7805860043,-0.7803220749,-0.7805860043,-0.7806739807,-0.7806739807,-0.7807619572,-0.7808499336,-0.7809379101,-0.7809379101,-0.7807619572,-0.7804100513,-0.780146122,-0.7799701095,-0.779882133,-0.779882133,-0.7799701095,-0.7800580859,-0.7800580859,-0.7800580859,-0.7800580859,-0.780146122,-0.7803220749,-0.7804980278,-0.7804980278,-0.7804100513,-0.7803220749,-0.7804100513,-0.7804980278,-0.7804100513,-0.7804100513,-0.7804100513,-0.7802340984,-0.7802340984,-0.780146122,-0.7807619572,-0.783049345,-0.7851609588,-0.785600841,-0.785600841,-0.7848969698,-0.7844570875,-0.7824335098,-0.7761870027,-0.77082026,-0.7701163888,-0.7711721659,-0.7727558613,-0.7761870027,-0.7805860043,-0.7837532163,-0.7851609588,-0.7859527469,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7860407233,-0.7849849463,-0.7821695805,-0.7779465318,-0.7731957436,-0.7705563307,-0.7739875317,-0.7813777924,-0.7853369117,-0.785600841,-0.7858647704,-0.7855128646,-0.7839292288,-0.7819936275,-0.7810258865,-0.7810258865,-0.7809379101,-0.7809379101,-0.7809379101,-0.7808499336,-0.7808499336,-0.7808499336,-0.7809379101,-0.7810258865,-0.781113863,-0.7812018394,-0.7814657688,-0.7817296982,-0.7818176746,-0.7817296982,-0.7816417217,-0.7814657688,-0.7812018394,-0.781113863,-0.781113863,-0.781113863,-0.7810258865,-0.781113863,-0.7812018394,-0.7807619572,-0.7800580859,-0.7793542743,-0.778914392,-0.7786504626,-0.7782104611,-0.7778585553,-0.7778585553,-0.7780345082,-0.7778585553,-0.7775946259,-0.7775946259,-0.7778585553,-0.7781224847,-0.7782104611,-0.7783865333,-0.7787384391,-0.7793542743,-0.7799701095,-0.7804980278,-0.7809379101,-0.781113863,-0.7812018394,-0.7812898159,-0.7812898159,-0.7813777924,-0.7815537453,-0.7819056511,-0.7822575569,-0.7821695805,-0.7816417217,-0.7813777924,-0.7814657688,-0.7815537453,-0.7813777924,-0.7808499336,-0.7804100513,-0.7803220749,-0.7802340984,-0.7802340984,-0.7803220749,-0.7804980278,-0.7804100513,-0.7802340984,-0.780146122,-0.7799701095,-0.7796182036,-0.7804100513,-0.7818176746,-0.7813777924,-0.7800580859,-0.779882133,-0.7802340984,-0.7802340984,-0.7803220749,-0.7803220749,-0.7802340984,-0.7802340984,-0.7802340984,-0.7803220749,-0.7804980278,-0.7808499336,-0.7812898159,-0.7815537453,-0.7814657688,-0.7815537453,-0.7817296982,-0.7817296982,-0.7813777924,-0.781113863,-0.7810258865,-0.7810258865,-0.7810258865,-0.7812018394,-0.7812898159,-0.7810258865,-0.7808499336,-0.7808499336,-0.7806739807,-0.7803220749,-0.780146122,-0.7802340984,-0.7809379101,-0.781113863,-0.7805860043,-0.7803220749,-0.7805860043,-0.7807619572,-0.7807619572,-0.7808499336,-0.7808499336,-0.7809379101,-0.7808499336,-0.7806739807,-0.7804100513,-0.7802340984,-0.780146122,-0.7800580859,-0.7800580859,-0.7800580859,-0.780146122,-0.7802340984,-0.7803220749,-0.7804100513,-0.7804100513,-0.7804980278,-0.7805860043,-0.7805860043,-0.7806739807,-0.7806739807,-0.7806739807,-0.7807619572,-0.7807619572,-0.7806739807,-0.7804980278,-0.7802340984,-0.7802340984,-0.7803220749,-0.7809379101,-0.7829613686,-0.7848969698,-0.7855128646,-0.7855128646,-0.7848969698,-0.7844570875,-0.7824335098,-0.7762749791,-0.77082026,-0.7700284123,-0.7710841894,-0.7726678848,-0.7759230733,-0.7802340984,-0.7835772634,-0.7851609588,-0.7860407233,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7861286998,-0.7850729823,-0.7818176746,-0.7772427201,-0.7726678848,-0.7703803778,-0.774251461,-0.7817296982,-0.7854248881,-0.7856888175,-0.7858647704,-0.7855128646,-0.7839292288,-0.7819936275,-0.781113863,-0.781113863,-0.7810258865,-0.781113863,-0.7810258865,-0.7809379101,-0.7810258865,-0.7809379101,-0.7809379101,-0.7808499336,-0.7808499336,-0.7810258865,-0.7812018394,-0.7813777924,-0.7815537453,-0.7816417217,-0.7815537453,-0.7814657688,-0.7813777924,-0.7813777924,-0.7812898159,-0.7812018394,-0.781113863,-0.7812018394,-0.7812898159,-0.7812018394,-0.7805860043,-0.7797941566,-0.7791783214,-0.7788264155,-0.7784745097,-0.7780345082,-0.7778585553,-0.7779465318,-0.7779465318,-0.7778585553,-0.7777705789,-0.7778585553,-0.7782104611,-0.7783865333,-0.7784745097,-0.778914392,-0.7796182036,-0.7802340984,-0.7806739807,-0.7808499336,-0.7810258865,-0.7812018394,-0.7813777924,-0.7812898159,-0.7813777924,-0.7814657688,-0.7815537453,-0.7819936275,-0.7824335098,-0.782081604,-0.7816417217,-0.7817296982,-0.7819056511,-0.7814657688,-0.7807619572,-0.7802340984,-0.780146122,-0.7802340984,-0.7802340984,-0.7802340984,-0.7804100513,-0.7804100513,-0.780146122,-0.780146122,-0.780146122,-0.7797941566,-0.7802340984,-0.7812018394,-0.7807619572,-0.7800580859,-0.7800580859,-0.7802340984,-0.780146122,-0.7802340984,-0.7802340984,-0.7802340984,-0.7803220749,-0.7803220749,-0.7804100513,-0.7806739807,-0.7808499336,-0.7810258865,-0.7812018394,-0.7814657688,-0.7817296982,-0.7816417217,-0.7812898159,-0.7808499336,-0.7807619572,-0.7809379101,-0.781113863,-0.781113863,-0.7812898159,-0.7812898159,-0.7810258865,-0.7807619572,-0.7807619572,-0.7807619572,-0.7804980278,-0.780146122,-0.780146122,-0.7808499336,-0.7812018394,-0.7806739807,-0.7802340984,-0.7804980278,-0.7806739807,-0.7807619572,-0.7807619572,-0.7808499336,-0.7809379101,-0.7808499336,-0.7806739807,-0.7804980278,-0.7804100513,-0.7804100513,-0.7802340984,-0.780146122,-0.7802340984,-0.7804100513,-0.7804100513,-0.7804100513,-0.7804100513,-0.7804100513,-0.7804100513,-0.7804980278,-0.7805860043,-0.7805860043,-0.7806739807,-0.7807619572,-0.7808499336,-0.7809379101,-0.7807619572,-0.7804980278,-0.7804100513,-0.7804980278,-0.7806739807,-0.7812898159,-0.7832252979,-0.7848969698,-0.7855128646,-0.7854248881,-0.7848969698,-0.7844570875,-0.782081604,-0.7753952146,-0.7700284123,-0.7695885301,-0.7706443071,-0.7723158598,-0.7758350968,-0.780146122,-0.7835772634,-0.7854248881,-0.7861286998,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7860407233,-0.7850729823,-0.7817296982,-0.7769787908,-0.7724038363,-0.7702043653,-0.7743394375,-0.7818176746,-0.7854248881,-0.785776794,-0.7858647704,-0.7851609588,-0.7834892869,-0.7816417217,-0.7809379101,-0.781113863,-0.781113863,-0.7812018394,-0.7812898159,-0.7812018394,-0.7812898159,-0.7812018394,-0.781113863,-0.7808499336,-0.7807619572,-0.7809379101,-0.7810258865,-0.7812018394,-0.7812898159,-0.7813777924,-0.7814657688,-0.7814657688,-0.7815537453,-0.7816417217,-0.7815537453,-0.7813777924,-0.7812898159,-0.781113863,-0.781113863,-0.7813777924,-0.7810258865,-0.7802340984,-0.7794422507,-0.778914392,-0.7786504626,-0.7782104611,-0.7779465318,-0.7779465318,-0.7780345082,-0.7780345082,-0.7779465318,-0.7780345082,-0.7783865333,-0.7786504626,-0.7787384391,-0.7791783214,-0.779882133,-0.7803220749,-0.7806739807,-0.7810258865,-0.781113863,-0.7812018394,-0.7812898159,-0.7812018394,-0.7812018394,-0.7812898159,-0.7813777924,-0.7813777924,-0.7817296982,-0.782081604,-0.7819936275,-0.7817296982,-0.7817296982,-0.7817296982,-0.7812018394,-0.7804100513,-0.780146122,-0.7802340984,-0.780146122,-0.7802340984,-0.7804100513,-0.7803220749,-0.780146122,-0.780146122,-0.7799701095,-0.7796182036,-0.7800580859,-0.7807619572,-0.7804100513,-0.7799701095,-0.7800580859,-0.7800580859,-0.7800580859,-0.780146122,-0.780146122,-0.7802340984,-0.7803220749,-0.7803220749,-0.7804100513,-0.7805860043,-0.7807619572,-0.7807619572,-0.781113863,-0.7815537453,-0.7817296982,-0.7813777924,-0.7809379101,-0.7806739807,-0.7806739807,-0.7809379101,-0.7812018394,-0.781113863,-0.7812018394,-0.7812898159,-0.7810258865,-0.7808499336,-0.7808499336,-0.7807619572,-0.7804980278,-0.780146122,-0.7800580859,-0.7807619572,-0.7812018394,-0.7807619572,-0.7802340984,-0.7804100513,-0.7806739807,-0.7806739807,-0.7806739807,-0.7807619572,-0.7808499336,-0.7808499336,-0.7807619572,-0.7804980278,-0.7804100513,-0.7804980278,-0.7804100513,-0.7802340984,-0.7803220749,-0.7804100513,-0.7804100513,-0.7804100513,-0.7804100513,-0.7803220749,-0.7802340984,-0.7803220749,-0.7804980278,-0.7804980278,-0.7805860043,-0.7805860043,-0.7805860043,-0.7806739807,-0.7804980278,-0.7803220749,-0.7803220749,-0.7805860043,-0.7809379101,-0.7817296982,-0.7834892869,-0.7849849463,-0.7855128646,-0.7855128646,-0.7848969698,-0.7844570875,-0.7819936275,-0.7752192616,-0.7699404359,-0.7694125772,-0.7703803778,-0.7724918127,-0.7762749791,-0.7804980278,-0.7839292288,-0.785600841,-0.7862166762,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7862166762,-0.7859527469,-0.7848969698,-0.7818176746,-0.777418673,-0.7728438377,-0.7704683542,-0.7746033669,-0.7819936275,-0.7854248881,-0.785776794,-0.7858647704,-0.7849849463,-0.7831373215,-0.7814657688,-0.7809379101,-0.7812018394,-0.7812018394,-0.7812898159,-0.7812898159,-0.7813777924,-0.7812898159,-0.7812898159,-0.7813777924,-0.781113863,-0.7808499336,-0.7809379101,-0.7810258865,-0.7809379101,-0.7810258865,-0.781113863,-0.7812018394,-0.7812898159,-0.7814657688,-0.7816417217,-0.7816417217,-0.7816417217,-0.7814657688,-0.7812018394,-0.781113863,-0.7813777924,-0.7812898159,-0.7806739807,-0.779882133,-0.7792662978,-0.778914392,-0.7784745097,-0.7781224847,-0.7781224847,-0.7782104611,-0.7782104611,-0.7782104611,-0.7782985568,-0.7785624862,-0.7788264155,-0.7790903449,-0.7794422507,-0.7800580859,-0.7804980278,-0.7807619572,-0.7810258865,-0.7810258865,-0.781113863,-0.7812898159,-0.7813777924,-0.7812898159,-0.7812898159,-0.7812898159,-0.781113863,-0.7812898159,-0.7817296982,-0.7819056511,-0.7817296982,-0.7815537453,-0.7817296982,-0.7815537453,-0.7807619572,-0.780146122,-0.780146122,-0.780146122,-0.7800580859,-0.7802340984,-0.7802340984,-0.780146122,-0.7799701095,-0.7799701095,-0.7797941566,-0.7799701095,-0.7805860043,-0.7803220749,-0.7800580859,-0.780146122,-0.7800580859,-0.7800580859,-0.7800580859,-0.7799701095,-0.7800580859,-0.780146122,-0.7802340984,-0.7804980278,-0.7805860043,-0.7808499336,-0.7812898159,-0.7815537453,-0.7814657688,-0.7812018394,-0.7809379101,-0.7809379101,-0.7809379101,-0.7809379101,-0.7809379101,-0.7809379101,-0.7809379101,-0.7810258865,-0.781113863,-0.781113863,-0.7809379101,-0.7809379101,-0.7808499336,-0.7804980278,-0.7800580859,-0.7800580859,-0.7809379101,-0.7813777924,-0.7807619572,-0.780146122,-0.7802340984,-0.7804980278,-0.7804980278,-0.7805860043,-0.7806739807,-0.7808499336,-0.7809379101,-0.7806739807,-0.7804100513,-0.7804100513,-0.7804980278,-0.7803220749,-0.780146122,-0.780146122,-0.780146122,-0.780146122,-0.7802340984,-0.7804100513,-0.7803220749,-0.7802340984,-0.7802340984,-0.7803220749,-0.7804100513,-0.7803220749,-0.7802340984,-0.780146122,-0.780146122,-0.780146122,-0.7800580859,-0.780146122,-0.7806739807,-0.7813777924,-0.7821695805,-0.7837532163,-0.7850729823,-0.785600841,-0.7855128646,-0.7847210169,-0.7842811346,-0.7821695805,-0.7755711675,-0.7702043653,-0.7694125772,-0.7702924013,-0.7731077671,-0.777418673,-0.7812898159,-0.7841931581,-0.7856888175,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7864806056,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863046527,-0.7859527469,-0.7848969698,-0.782081604,-0.7775946259,-0.7727558613,-0.7705563307,-0.7749552727,-0.7821695805,-0.7853369117,-0.7856888175,-0.7858647704,-0.7850729823,-0.7831373215,-0.7814657688,-0.7810258865,-0.7812898159,-0.7812898159,-0.7813777924,-0.7813777924,-0.7812018394,-0.7812018394,-0.7813777924,-0.7814657688,-0.7812898159,-0.7810258865,-0.7810258865,-0.7810258865,-0.7808499336,-0.7807619572,-0.7808499336,-0.7810258865,-0.7812018394,-0.7812018394,-0.7813777924,-0.7814657688,-0.7814657688,-0.7815537453,-0.7813777924,-0.7812018394,-0.7813777924,-0.7815537453,-0.781113863,-0.7803220749,-0.7796182036,-0.7791783214,-0.7787384391,-0.7783865333,-0.7782985568,-0.7783865333,-0.7783865333,-0.7783865333,-0.7784745097,-0.7787384391,-0.7790023685,-0.7793542743,-0.7797061801,-0.780146122,-0.7804980278,-0.7806739807,-0.7808499336,-0.7810258865,-0.781113863,-0.7812898159,-0.7812898159,-0.7812018394,-0.7812018394,-0.7812018394,-0.781113863,-0.7812898159,-0.7814657688,-0.7817296982,-0.7817296982,-0.7815537453,-0.7815537453,-0.7817296982,-0.7812018394,-0.7804980278,-0.7803220749,-0.7802340984,-0.7802340984,-0.7802340984,-0.7802340984,-0.7799701095,-0.7799701095,-0.7803220749,-0.7802340984,-0.780146122,-0.7803220749,-0.7802340984,-0.7804100513,-0.7806739807,-0.7803220749,-0.7800580859,-0.7800580859,-0.7800580859,-0.780146122,-0.7803220749,-0.7807619572,-0.7810258865,-0.7810258865,-0.7812898159,-0.7816417217,-0.7815537453,-0.7812018394,-0.7810258865,-0.7810258865,-0.781113863,-0.7812018394,-0.7810258865,-0.7809379101,-0.7808499336,-0.7806739807,-0.7807619572,-0.7808499336,-0.7808499336,-0.7808499336,-0.7808499336,-0.7807619572,-0.7804980278,-0.780146122,-0.7802340984,-0.7810258865,-0.7813777924,-0.7807619572,-0.780146122,-0.7802340984,-0.7804100513,-0.7805860043,-0.7805860043,-0.7806739807,-0.7807619572,-0.7807619572,-0.7804100513,-0.780146122,-0.780146122,-0.7803220749,-0.7802340984,-0.7800580859,-0.7800580859,-0.7800580859,-0.780146122,-0.7802340984,-0.7804100513,-0.7803220749,-0.7802340984,-0.7802340984,-0.7804100513,-0.7804980278,-0.7804100513,-0.7803220749,-0.7802340984,-0.7800580859,-0.7800580859,-0.7800580859,-0.7803220749,-0.781113863,-0.782081604,-0.7827854156,-0.7840172052,-0.7851609588,-0.785600841,-0.7855128646,-0.784545064,-0.7839292288,-0.7822575569,-0.7760990262,-0.7704683542,-0.7695885301,-0.7706443071,-0.7735476494,-0.7777705789,-0.7814657688,-0.7843691111,-0.7858647704,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7859527469,-0.7849849463,-0.7821695805,-0.7775946259,-0.7727558613,-0.7707322836,-0.7753072381,-0.7824335098,-0.7853369117,-0.7856888175,-0.7858647704,-0.7850729823,-0.783049345,-0.7813777924,-0.781113863,-0.7813777924,-0.7813777924,-0.7815537453,-0.7813777924,-0.781113863,-0.781113863,-0.7812018394,-0.7812018394,-0.781113863,-0.7812018394,-0.781113863,-0.7809379101,-0.7808499336,-0.7808499336,-0.7809379101,-0.7810258865,-0.7810258865,-0.781113863,-0.781113863,-0.7812018394,-0.781113863,-0.7812018394,-0.7813777924,-0.7812898159,-0.7813777924,-0.7816417217,-0.7813777924,-0.7807619572,-0.7800580859,-0.7796182036,-0.7790023685,-0.7786504626,-0.7785624862,-0.7785624862,-0.7785624862,-0.7785624862,-0.7787384391,-0.7790903449,-0.7793542743,-0.7796182036,-0.779882133,-0.7802340984,-0.7804980278,-0.7806739807,-0.7808499336,-0.7810258865,-0.7812018394,-0.7812018394,-0.7810258865,-0.7809379101,-0.781113863,-0.7812898159,-0.7813777924,-0.7814657688,-0.7814657688,-0.7815537453,-0.7816417217,-0.7816417217,-0.7816417217,-0.7819936275,-0.7819936275,-0.781113863,-0.7804980278,-0.7803220749,-0.7804100513,-0.7804100513,-0.7802340984,-0.7799701095,-0.7802340984,-0.7805860043,-0.7804980278,-0.7804100513,-0.7803220749,-0.7803220749,-0.7808499336,-0.7812018394,-0.7804980278,-0.780146122,-0.7802340984,-0.7802340984,-0.7803220749,-0.7809379101,-0.7815537453,-0.7816417217,-0.7816417217,-0.7817296982,-0.7815537453,-0.7812018394,-0.7810258865,-0.781113863,-0.7812898159,-0.7812898159,-0.7812898159,-0.7810258865,-0.7808499336,-0.7806739807,-0.7804980278,-0.7805860043,-0.7806739807,-0.7805860043,-0.7805860043,-0.7806739807,-0.7805860043,-0.7802340984,-0.7800580859,-0.7804100513,-0.7810258865,-0.7812898159,-0.7807619572,-0.7802340984,-0.7803220749,-0.7805860043,-0.7806739807,-0.7805860043,-0.7806739807,-0.7807619572,-0.7805860043,-0.7802340984,-0.779882133,-0.779882133,-0.7800580859,-0.7800580859,-0.7800580859,-0.7800580859,-0.7800580859,-0.780146122,-0.780146122,-0.7802340984,-0.7803220749,-0.7802340984,-0.7802340984,-0.7804100513,-0.7805860043,-0.7805860043,-0.7805860043,-0.7804980278,-0.7803220749,-0.7804100513,-0.7806739807,-0.781113863,-0.7818176746,-0.7824335098,-0.7829613686,-0.7840172052,-0.7852489352,-0.7856888175,-0.785600841,-0.784545064,-0.7838411927,-0.7826094627,-0.7768908143,-0.770996213,-0.7698524594,-0.7709082365,-0.7733716965,-0.7775946259,-0.7816417217,-0.784545064,-0.7858647704,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7859527469,-0.7851609588,-0.7825214863,-0.7779465318,-0.7726678848,-0.7706443071,-0.7753072381,-0.7825214863,-0.7855128646,-0.7856888175,-0.7858647704,-0.7849849463,-0.7829613686,-0.7814657688,-0.7812018394,-0.7812898159,-0.7812898159,-0.7814657688,-0.7813777924,-0.7812018394,-0.781113863,-0.781113863,-0.7810258865,-0.7810258865,-0.781113863,-0.781113863,-0.7809379101,-0.7809379101,-0.7810258865,-0.7810258865,-0.7810258865,-0.7810258865,-0.7809379101,-0.7810258865,-0.7812018394,-0.781113863,-0.781113863,-0.7813777924,-0.7813777924,-0.7813777924,-0.7815537453,-0.7816417217,-0.7812898159,-0.7806739807,-0.7799701095,-0.7794422507,-0.7790903449,-0.7788264155,-0.7788264155,-0.7788264155,-0.7790903449,-0.7792662978,-0.7795302272,-0.7796182036,-0.7797061801,-0.779882133,-0.780146122,-0.7804100513,-0.7806739807,-0.7807619572,-0.7808499336,-0.7808499336,-0.7809379101,-0.7807619572,-0.7806739807,-0.7808499336,-0.7812018394,-0.7813777924,-0.7814657688,-0.7813777924,-0.7813777924,-0.7814657688,-0.7815537453,-0.7815537453,-0.7819056511,-0.7822575569,-0.7817296982,-0.7806739807,-0.7802340984,-0.7803220749,-0.7804100513,-0.7802340984,-0.7802340984,-0.7805860043,-0.7806739807,-0.7803220749,-0.780146122,-0.7800580859,-0.7804100513,-0.7812018394,-0.7813777924,-0.7806739807,-0.7802340984,-0.7802340984,-0.7802340984,-0.7808499336,-0.7817296982,-0.7819936275,-0.7817296982,-0.7815537453,-0.7814657688,-0.7812898159,-0.7810258865,-0.7810258865,-0.781113863,-0.7812018394,-0.7812018394,-0.781113863,-0.7809379101,-0.7806739807,-0.7804100513,-0.7803220749,-0.7804100513,-0.7804100513,-0.7804100513,-0.7803220749,-0.7803220749,-0.7803220749,-0.7800580859,-0.779882133,-0.7803220749,-0.7810258865,-0.781113863,-0.7804980278,-0.780146122,-0.7804100513,-0.7805860043,-0.7805860043,-0.7805860043,-0.7807619572,-0.7808499336,-0.7805860043,-0.7802340984,-0.7800580859,-0.780146122,-0.780146122,-0.780146122,-0.780146122,-0.7800580859,-0.7800580859,-0.780146122,-0.7802340984,-0.7802340984,-0.7803220749,-0.7804100513,-0.7804980278,-0.7804100513,-0.7804100513,-0.7804100513,-0.7804980278,-0.7806739807,-0.7808499336,-0.7810258865,-0.7813777924,-0.7816417217,-0.7819056511,-0.782081604,-0.7825214863,-0.7838411927,-0.7850729823,-0.7856888175,-0.7855128646,-0.784545064,-0.7839292288,-0.7827854156,-0.7769787908,-0.7710841894,-0.7699404359,-0.7706443071,-0.7729318142,-0.777418673,-0.7817296982,-0.7844570875,-0.785776794,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7862166762,-0.7861286998,-0.7855128646,-0.7828733921,-0.7781224847,-0.7729318142,-0.7709082365,-0.7753072381,-0.7825214863,-0.785600841,-0.785776794,-0.7858647704,-0.7849849463,-0.7829613686,-0.7817296982,-0.7814657688,-0.7812898159,-0.7812018394,-0.7812018394,-0.7812018394,-0.7812018394,-0.7812018394,-0.7812018394,-0.7810258865,-0.7809379101,-0.7810258865,-0.7810258865,-0.7809379101,-0.7810258865,-0.781113863,-0.781113863,-0.7812018394,-0.781113863,-0.7809379101,-0.7810258865,-0.7812018394,-0.781113863,-0.7812018394,-0.7813777924,-0.7813777924,-0.7812898159,-0.7814657688,-0.7816417217,-0.7815537453,-0.781113863,-0.7804980278,-0.779882133,-0.7795302272,-0.7793542743,-0.7791783214,-0.7792662978,-0.7795302272,-0.7797941566,-0.779882133,-0.779882133,-0.7799701095,-0.7800580859,-0.7803220749,-0.7804980278,-0.7804980278,-0.7804980278,-0.7805860043,-0.7805860043,-0.7804980278,-0.7804980278,-0.7804100513,-0.7804980278,-0.7808499336,-0.781113863,-0.7812018394,-0.7812018394,-0.781113863,-0.781113863,-0.7810258865,-0.781113863,-0.7814657688,-0.782081604,-0.7821695805,-0.7812898159,-0.7804100513,-0.780146122,-0.7802340984,-0.7802340984,-0.7803220749,-0.7806739807,-0.7805860043,-0.780146122,-0.779882133,-0.779882133,-0.7806739807,-0.7815537453,-0.7814657688,-0.7807619572,-0.7803220749,-0.7802340984,-0.7807619572,-0.7816417217,-0.7821695805,-0.7819056511,-0.7814657688,-0.7812898159,-0.7812898159,-0.7812018394,-0.7810258865,-0.7809379101,-0.7810258865,-0.7810258865,-0.781113863,-0.7810258865,-0.7808499336,-0.7804100513,-0.7800580859,-0.7799701095,-0.780146122,-0.7802340984,-0.780146122,-0.7799701095,-0.7799701095,-0.7800580859,-0.7800580859,-0.7800580859,-0.7804100513,-0.7809379101,-0.7808499336,-0.7802340984,-0.7802340984,-0.7805860043,-0.7805860043,-0.7805860043,-0.7806739807,-0.7808499336,-0.7809379101,-0.7805860043,-0.7803220749,-0.7803220749,-0.7804980278,-0.7804980278,-0.7804100513,-0.7803220749,-0.7802340984,-0.7802340984,-0.7803220749,-0.7803220749,-0.7802340984,-0.7802340984,-0.7804100513,-0.7804100513,-0.7803220749,-0.7803220749,-0.7804100513,-0.7806739807,-0.7810258865,-0.7813777924,-0.7814657688,-0.7813777924,-0.7812898159,-0.7814657688,-0.7815537453,-0.7819936275,-0.7834892869,-0.7849849463,-0.785600841,-0.7855128646,-0.7844570875,-0.7838411927,-0.7823455334,-0.7762749791,-0.7704683542,-0.7695005536,-0.7705563307,-0.7730197906,-0.7773306966,-0.7816417217,-0.7843691111,-0.7856888175,-0.7861286998,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863046527,-0.7863046527,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7856888175,-0.783313334,-0.7787384391,-0.7735476494,-0.7712601423,-0.7753072381,-0.7823455334,-0.785600841,-0.785776794,-0.7858647704,-0.7850729823,-0.783313334,-0.7822575569,-0.7815537453,-0.781113863,-0.781113863,-0.7812018394,-0.781113863,-0.781113863,-0.781113863,-0.7812018394,-0.781113863,-0.781113863,-0.7810258865,-0.7810258865,-0.7808499336,-0.7808499336,-0.7810258865,-0.7810258865,-0.7810258865,-0.7810258865,-0.7810258865,-0.7810258865,-0.7810258865,-0.7809379101,-0.7810258865,-0.7812898159,-0.7812898159,-0.7812018394,-0.7812898159,-0.7815537453,-0.7816417217,-0.7814657688,-0.7809379101,-0.7803220749,-0.7800580859,-0.7797941566,-0.7796182036,-0.7797941566,-0.779882133,-0.7800580859,-0.780146122,-0.780146122,-0.7802340984,-0.7804100513,-0.7804100513,-0.7804100513,-0.7803220749,-0.7802340984,-0.7803220749,-0.7803220749,-0.7802340984,-0.7802340984,-0.7800580859,-0.780146122,-0.7804100513,-0.7806739807,-0.7807619572,-0.7808499336,-0.7807619572,-0.7806739807,-0.7804980278,-0.7804980278,-0.7806739807,-0.7812018394,-0.7819056511,-0.7817296982,-0.7809379101,-0.7803220749,-0.7803220749,-0.7803220749,-0.7804100513,-0.7807619572,-0.7804980278,-0.7802340984,-0.780146122,-0.780146122,-0.7810258865,-0.7819056511,-0.7815537453,-0.7808499336,-0.7804980278,-0.7806739807,-0.7815537453,-0.7822575569,-0.7821695805,-0.7814657688,-0.7810258865,-0.7809379101,-0.7809379101,-0.7809379101,-0.7809379101,-0.7808499336,-0.7807619572,-0.7809379101,-0.7810258865,-0.7809379101,-0.7806739807,-0.7802340984,-0.7797941566,-0.7797061801,-0.7797941566,-0.779882133,-0.779882133,-0.7797941566,-0.7797941566,-0.7797061801,-0.7797941566,-0.780146122,-0.7804980278,-0.7806739807,-0.7804100513,-0.780146122,-0.7804100513,-0.7806739807,-0.7806739807,-0.7806739807,-0.7806739807,-0.7807619572,-0.7806739807,-0.7804980278,-0.7804100513,-0.7804100513,-0.7805860043,-0.7806739807,-0.7804980278,-0.7804980278,-0.7804100513,-0.7804100513,-0.7804100513,-0.7803220749,-0.7803220749,-0.7803220749,-0.7804100513,-0.7804100513,-0.7804100513,-0.7804980278,-0.7807619572,-0.7810258865,-0.7812018394,-0.7813777924,-0.7812018394,-0.7809379101,-0.7807619572,-0.7809379101,-0.7812018394,-0.7816417217,-0.7834013104,-0.7850729823,-0.7856888175,-0.7855128646,-0.7843691111,-0.7837532163,-0.7819056511,-0.7751312256,-0.7696765065,-0.7691486478,-0.7702924013,-0.7729318142,-0.7775066495,-0.7816417217,-0.7842811346,-0.7856888175,-0.7860407233,-0.7861286998,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7858647704,-0.7837532163,-0.7796182036,-0.774251461,-0.7713481188,-0.7750432491,-0.7822575569,-0.785600841,-0.7858647704,-0.7859527469,-0.7851609588,-0.7835772634,-0.7824335098,-0.7815537453,-0.781113863,-0.781113863,-0.7812018394,-0.7812018394,-0.7812018394,-0.7812018394,-0.7812018394,-0.7812898159,-0.7812898159,-0.7812018394,-0.781113863,-0.7810258865,-0.7809379101,-0.7809379101,-0.7809379101,-0.7808499336,-0.7809379101,-0.7809379101,-0.7809379101,-0.7809379101,-0.7809379101,-0.7809379101,-0.7812018394,-0.7812898159,-0.7812018394,-0.7812898159,-0.7815537453,-0.7816417217,-0.7815537453,-0.7812018394,-0.7806739807,-0.7803220749,-0.7799701095,-0.7797941566,-0.779882133,-0.780146122,-0.7802340984,-0.7803220749,-0.7803220749,-0.7804100513,-0.7804100513,-0.780146122,-0.7799701095,-0.780146122,-0.7800580859,-0.7799701095,-0.7799701095,-0.7800580859,-0.7799701095,-0.779882133,-0.779882133,-0.7799701095,-0.780146122,-0.7803220749,-0.7803220749,-0.7804980278,-0.7804100513,-0.780146122,-0.780146122,-0.780146122,-0.780146122,-0.7808499336,-0.7815537453,-0.7812898159,-0.7808499336,-0.7806739807,-0.7806739807,-0.7810258865,-0.7812018394,-0.7807619572,-0.7804100513,-0.7804980278,-0.7807619572,-0.7814657688,-0.7819936275,-0.7817296982,-0.7810258865,-0.7808499336,-0.7814657688,-0.7821695805,-0.7819936275,-0.7812018394,-0.7806739807,-0.7805860043,-0.7805860043,-0.7805860043,-0.7806739807,-0.7806739807,-0.7806739807,-0.7805860043,-0.7806739807,-0.7806739807,-0.7804980278,-0.7802340984,-0.779882133,-0.7795302272,-0.7794422507,-0.7795302272,-0.7797061801,-0.7796182036,-0.7794422507,-0.7794422507,-0.7795302272,-0.7796182036,-0.780146122,-0.7804980278,-0.7804100513,-0.7802340984,-0.7802340984,-0.7804100513,-0.7806739807,-0.7807619572,-0.7807619572,-0.7807619572,-0.7807619572,-0.7804980278,-0.7804980278,-0.7805860043,-0.7804980278,-0.7804980278,-0.7805860043,-0.7805860043,-0.7805860043,-0.7805860043,-0.7806739807,-0.7804980278,-0.7804100513,-0.7804980278,-0.7804980278,-0.7804980278,-0.7806739807,-0.7808499336,-0.7810258865,-0.781113863,-0.7809379101,-0.7807619572,-0.7808499336,-0.7808499336,-0.7805860043,-0.7804100513,-0.7805860043,-0.7807619572,-0.7815537453,-0.7835772634,-0.7851609588,-0.7856888175,-0.7855128646,-0.7843691111,-0.7837532163,-0.7813777924,-0.7741634846,-0.7694125772,-0.7694125772,-0.7703803778,-0.7728438377,-0.7772427201,-0.7816417217,-0.7843691111,-0.7856888175,-0.7860407233,-0.7861286998,-0.7863046527,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7858647704,-0.7839292288,-0.7802340984,-0.7750432491,-0.7714360952,-0.7746033669,-0.7819056511,-0.7855128646,-0.7858647704,-0.7859527469,-0.7853369117,-0.7835772634,-0.7822575569,-0.7814657688,-0.7810258865,-0.7810258865,-0.7812018394,-0.7812018394,-0.7812018394,-0.7812018394,-0.7812898159,-0.7813777924,-0.7813777924,-0.7813777924,-0.7813777924,-0.7812898159,-0.7812018394,-0.7812018394,-0.781113863,-0.7810258865,-0.781113863,-0.7810258865,-0.7809379101,-0.7810258865,-0.7810258865,-0.7810258865,-0.7812018394,-0.7812018394,-0.7812018394,-0.7812898159,-0.7814657688,-0.7815537453,-0.7814657688,-0.7812898159,-0.7810258865,-0.7805860043,-0.780146122,-0.7799701095,-0.7800580859,-0.7802340984,-0.7804100513,-0.7804980278,-0.7804100513,-0.7803220749,-0.7804100513,-0.7802340984,-0.7799701095,-0.7799701095,-0.7799701095,-0.7797061801,-0.7797061801,-0.7797941566,-0.7797941566,-0.7797941566,-0.779882133,-0.7797941566,-0.7797941566,-0.779882133,-0.779882133,-0.7800580859,-0.780146122,-0.7799701095,-0.7799701095,-0.7797941566,-0.7796182036,-0.7800580859,-0.7804980278,-0.7805860043,-0.7807619572,-0.7810258865,-0.7812898159,-0.7817296982,-0.7815537453,-0.7807619572,-0.7805860043,-0.7810258865,-0.7814657688,-0.7819056511,-0.782081604,-0.7819056511,-0.7816417217,-0.7815537453,-0.782081604,-0.782081604,-0.781113863,-0.7802340984,-0.780146122,-0.7803220749,-0.7804100513,-0.7804980278,-0.7804100513,-0.7803220749,-0.7803220749,-0.7803220749,-0.7802340984,-0.7799701095,-0.7797941566,-0.7797061801,-0.7795302272,-0.7792662978,-0.7792662978,-0.7793542743,-0.7793542743,-0.7791783214,-0.7790903449,-0.7791783214,-0.7793542743,-0.7797061801,-0.7802340984,-0.7804100513,-0.7804100513,-0.7803220749,-0.7803220749,-0.7804100513,-0.7807619572,-0.7809379101,-0.7807619572,-0.7808499336,-0.7808499336,-0.7805860043,-0.7805860043,-0.7806739807,-0.7804980278,-0.7804100513,-0.7804980278,-0.7805860043,-0.7806739807,-0.7807619572,-0.7807619572,-0.7805860043,-0.7805860043,-0.7806739807,-0.7805860043,-0.7806739807,-0.7809379101,-0.781113863,-0.7810258865,-0.7808499336,-0.7804100513,-0.7802340984,-0.7804980278,-0.7805860043,-0.7804100513,-0.7802340984,-0.7803220749,-0.7805860043,-0.7815537453,-0.7838411927,-0.7853369117,-0.785776794,-0.7855128646,-0.7844570875,-0.7836652398,-0.7808499336,-0.7737236023,-0.7695885301,-0.769764483,-0.7706443071,-0.7730197906,-0.7775066495,-0.7818176746,-0.7843691111,-0.785600841,-0.7861286998,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7859527469,-0.7843691111,-0.7812018394,-0.7760990262,-0.7717000246,-0.7738115788,-0.781113863,-0.7853369117,-0.785776794,-0.7859527469,-0.7854248881,-0.7837532163,-0.7823455334,-0.7814657688,-0.7810258865,-0.7810258865,-0.7812018394,-0.7812898159,-0.7812018394,-0.7812018394,-0.7812018394,-0.7813777924,-0.7813777924,-0.7813777924,-0.7814657688,-0.7813777924,-0.7813777924,-0.7813777924,-0.7813777924,-0.7812898159,-0.7813777924,-0.7812898159,-0.7812018394,-0.781113863,-0.781113863,-0.7812018394,-0.7812018394,-0.7812018394,-0.7812018394,-0.7812898159,-0.7814657688,-0.7816417217,-0.7814657688,-0.7812898159,-0.781113863,-0.7808499336,-0.7804100513,-0.7802340984,-0.7802340984,-0.7802340984,-0.7804100513,-0.7805860043,-0.7804100513,-0.780146122,-0.780146122,-0.780146122,-0.780146122,-0.7800580859,-0.7799701095,-0.7797061801,-0.7795302272,-0.7796182036,-0.7797061801,-0.7797941566,-0.779882133,-0.7797061801,-0.7795302272,-0.7795302272,-0.7796182036,-0.7797941566,-0.7797941566,-0.7797941566,-0.779882133,-0.7797941566,-0.7797061801,-0.779882133,-0.7800580859,-0.7799701095,-0.780146122,-0.7807619572,-0.7812898159,-0.7816417217,-0.7814657688,-0.7808499336,-0.7810258865,-0.7818176746,-0.7822575569,-0.7824335098,-0.7823455334,-0.7823455334,-0.7826974392,-0.7828733921,-0.7828733921,-0.7819936275,-0.7806739807,-0.7800580859,-0.780146122,-0.780146122,-0.7802340984,-0.7803220749,-0.780146122,-0.7800580859,-0.779882133,-0.7797061801,-0.7797061801,-0.7796182036,-0.7795302272,-0.7794422507,-0.7792662978,-0.7791783214,-0.7793542743,-0.7792662978,-0.7790903449,-0.7790023685,-0.7790903449,-0.7791783214,-0.7793542743,-0.7797941566,-0.7802340984,-0.7804980278,-0.7805860043,-0.7805860043,-0.7804980278,-0.7806739807,-0.7809379101,-0.7809379101,-0.7808499336,-0.7809379101,-0.7808499336,-0.7805860043,-0.7804100513,-0.7804100513,-0.7804100513,-0.7804980278,-0.7804980278,-0.7805860043,-0.7805860043,-0.7805860043,-0.7805860043,-0.7804100513,-0.7804980278,-0.7806739807,-0.7806739807,-0.7807619572,-0.7807619572,-0.7805860043,-0.7803220749,-0.780146122,-0.7800580859,-0.780146122,-0.7804980278,-0.7805860043,-0.7804100513,-0.780146122,-0.7803220749,-0.7807619572,-0.7819936275,-0.7843691111,-0.785600841,-0.785776794,-0.7855128646,-0.7844570875,-0.7836652398,-0.7806739807,-0.7738995552,-0.7698524594,-0.7698524594,-0.7705563307,-0.7731077671,-0.7776826024,-0.7819056511,-0.7843691111,-0.785600841,-0.7862166762,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7850729823,-0.7822575569,-0.7773306966,-0.7721399069,-0.7730197906,-0.7800580859,-0.7851609588,-0.785776794,-0.7859527469,-0.785600841,-0.7841051817,-0.7826094627,-0.7818176746,-0.7812898159,-0.7810258865,-0.7812018394,-0.7813777924,-0.7812898159,-0.7812018394,-0.7812018394,-0.7812898159,-0.7812898159,-0.7812898159,-0.7813777924,-0.7812898159,-0.7812898159,-0.7813777924,-0.7814657688,-0.7815537453,-0.7816417217,-0.7815537453,-0.7814657688,-0.7813777924,-0.7812898159,-0.7813777924,-0.7812898159,-0.7812018394,-0.7812018394,-0.7812898159,-0.7814657688,-0.7816417217,-0.7814657688,-0.7812898159,-0.7812018394,-0.7810258865,-0.7807619572,-0.7805860043,-0.7804100513,-0.7804100513,-0.7804100513,-0.7804100513,-0.7803220749,-0.7802340984,-0.7799701095,-0.7797941566,-0.7797941566,-0.779882133,-0.779882133,-0.7797941566,-0.7796182036,-0.7795302272,-0.7795302272,-0.7797061801,-0.7797941566,-0.7796182036,-0.7796182036,-0.7797061801,-0.7797061801,-0.7797941566,-0.7797061801,-0.7797061801,-0.779882133,-0.7799701095,-0.7799701095,-0.780146122,-0.7802340984,-0.7800580859,-0.779882133,-0.7804980278,-0.7810258865,-0.7812898159,-0.7814657688,-0.7814657688,-0.7819056511,-0.7826974392,-0.7829613686,-0.7828733921,-0.7828733921,-0.783049345,-0.7835772634,-0.7839292288,-0.7834892869,-0.7819056511,-0.7804980278,-0.7800580859,-0.7799701095,-0.7799701095,-0.780146122,-0.780146122,-0.779882133,-0.7796182036,-0.7794422507,-0.7792662978,-0.7792662978,-0.7793542743,-0.7793542743,-0.7792662978,-0.7790023685,-0.7790023685,-0.7791783214,-0.7790023685,-0.7787384391,-0.7787384391,-0.778914392,-0.7791783214,-0.7795302272,-0.7799701095,-0.7802340984,-0.7805860043,-0.7806739807,-0.7806739807,-0.7806739807,-0.7808499336,-0.7809379101,-0.7809379101,-0.7809379101,-0.7808499336,-0.7807619572,-0.7804980278,-0.7802340984,-0.780146122,-0.7802340984,-0.7804100513,-0.7804100513,-0.7804100513,-0.7804100513,-0.7804980278,-0.7805860043,-0.7805860043,-0.7806739807,-0.7807619572,-0.7806739807,-0.7804980278,-0.7803220749,-0.780146122,-0.7800580859,-0.780146122,-0.7802340984,-0.7803220749,-0.7804980278,-0.7804980278,-0.7804980278,-0.7803220749,-0.7804980278,-0.7810258865,-0.7826094627,-0.7848089933,-0.7856888175,-0.785776794,-0.7854248881,-0.7844570875,-0.7837532163,-0.7802340984,-0.7731077671,-0.7695885301,-0.769764483,-0.7705563307,-0.7735476494,-0.7781224847,-0.7819056511,-0.7842811346,-0.785600841,-0.7862166762,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7855128646,-0.7831373215,-0.7786504626,-0.7731077671,-0.7725797892,-0.7788264155,-0.7848089933,-0.7859527469,-0.7858647704,-0.7856888175,-0.7844570875,-0.7829613686,-0.782081604,-0.7815537453,-0.7810258865,-0.7810258865,-0.781113863,-0.781113863,-0.781113863,-0.781113863,-0.7812018394,-0.7812018394,-0.7812018394,-0.7812018394,-0.7812018394,-0.7812018394,-0.7812898159,-0.7813777924,-0.7814657688,-0.7815537453,-0.7816417217,-0.7816417217,-0.7815537453,-0.7814657688,-0.7814657688,-0.7813777924,-0.7812898159,-0.7812898159,-0.7813777924,-0.7815537453,-0.7815537453,-0.7814657688,-0.7813777924,-0.7812898159,-0.781113863,-0.7810258865,-0.7808499336,-0.7804980278,-0.7804980278,-0.7805860043,-0.7805860043,-0.7803220749,-0.780146122,-0.7799701095,-0.7796182036,-0.7796182036,-0.7797061801,-0.7797061801,-0.7797061801,-0.7797061801,-0.7795302272,-0.7793542743,-0.7794422507,-0.7796182036,-0.7797941566,-0.779882133,-0.7799701095,-0.7800580859,-0.7799701095,-0.7797061801,-0.7797061801,-0.7797941566,-0.779882133,-0.7799701095,-0.7803220749,-0.7806739807,-0.7804980278,-0.7802340984,-0.7804100513,-0.7808499336,-0.7812898159,-0.7819936275,-0.7825214863,-0.7826094627,-0.783049345,-0.7834013104,-0.7832252979,-0.7832252979,-0.7834892869,-0.7837532163,-0.7838411927,-0.7828733921,-0.781113863,-0.780146122,-0.7800580859,-0.779882133,-0.7797941566,-0.779882133,-0.7797941566,-0.7796182036,-0.7793542743,-0.7791783214,-0.7791783214,-0.7791783214,-0.7790903449,-0.7791783214,-0.7792662978,-0.7790903449,-0.778914392,-0.778914392,-0.7788264155,-0.7787384391,-0.7787384391,-0.778914392,-0.7792662978,-0.7797941566,-0.7800580859,-0.7802340984,-0.7804980278,-0.7805860043,-0.7805860043,-0.7806739807,-0.7808499336,-0.7808499336,-0.7808499336,-0.7808499336,-0.7808499336,-0.7806739807,-0.7804100513,-0.7802340984,-0.7802340984,-0.7804100513,-0.7804980278,-0.7804980278,-0.7804980278,-0.7804980278,-0.7806739807,-0.7805860043,-0.7804980278,-0.7804100513,-0.7804100513,-0.7802340984,-0.7800580859,-0.7800580859,-0.7800580859,-0.780146122,-0.7802340984,-0.7803220749,-0.7804980278,-0.7804100513,-0.7804100513,-0.7804980278,-0.7804980278,-0.7806739807,-0.7816417217,-0.7834013104,-0.7851609588,-0.7856888175,-0.785776794,-0.7853369117,-0.7846330404,-0.7839292288,-0.7794422507,-0.7717880011,-0.7690606713,-0.769764483,-0.7706443071,-0.7738115788,-0.7782985568,-0.7819056511,-0.7843691111,-0.7856888175,-0.7862166762,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.785776794,-0.7838411927,-0.780146122,-0.7747793198,-0.7724038363,-0.7773306966,-0.7841051817,-0.7858647704,-0.785776794,-0.785776794,-0.7849849463,-0.783313334,-0.7819056511,-0.7812018394,-0.7808499336,-0.7808499336,-0.7809379101,-0.7809379101,-0.7810258865,-0.7810258865,-0.7810258865,-0.7812018394,-0.7812018394,-0.781113863,-0.781113863,-0.781113863,-0.7812018394,-0.7812898159,-0.7812898159,-0.7813777924,-0.7814657688,-0.7814657688,-0.7814657688,-0.7814657688,-0.7815537453,-0.7814657688,-0.7813777924,-0.7814657688,-0.7815537453,-0.7816417217,-0.7817296982,-0.7815537453,-0.7813777924,-0.7812018394,-0.781113863,-0.781113863,-0.7809379101,-0.7807619572,-0.7806739807,-0.7806739807,-0.7806739807,-0.7803220749,-0.779882133,-0.7797061801,-0.7796182036,-0.7794422507,-0.7794422507,-0.7795302272,-0.7796182036,-0.7796182036,-0.7796182036,-0.7795302272,-0.7796182036,-0.7797941566,-0.7800580859,-0.7800580859,-0.780146122,-0.7802340984,-0.780146122,-0.7800580859,-0.780146122,-0.7802340984,-0.7803220749,-0.7804980278,-0.7808499336,-0.781113863,-0.7810258865,-0.7804980278,-0.7803220749,-0.7807619572,-0.7813777924,-0.7825214863,-0.7831373215,-0.783049345,-0.783313334,-0.7838411927,-0.7835772634,-0.7834013104,-0.7834892869,-0.7834013104,-0.7828733921,-0.7816417217,-0.7803220749,-0.779882133,-0.7799701095,-0.7799701095,-0.7799701095,-0.7799701095,-0.7799701095,-0.7797941566,-0.7794422507,-0.7791783214,-0.7792662978,-0.7793542743,-0.7793542743,-0.7793542743,-0.7794422507,-0.7792662978,-0.7791783214,-0.7791783214,-0.7790903449,-0.7790023685,-0.778914392,-0.7791783214,-0.7797061801,-0.7799701095,-0.780146122,-0.7804100513,-0.7804100513,-0.7803220749,-0.7804980278,-0.7806739807,-0.7808499336,-0.7809379101,-0.7809379101,-0.7809379101,-0.7809379101,-0.7807619572,-0.7803220749,-0.780146122,-0.7804100513,-0.7806739807,-0.7807619572,-0.7807619572,-0.7807619572,-0.7807619572,-0.7804980278,-0.7802340984,-0.7799701095,-0.7799701095,-0.779882133,-0.779882133,-0.7799701095,-0.7800580859,-0.780146122,-0.780146122,-0.7802340984,-0.7804980278,-0.7806739807,-0.7805860043,-0.7804100513,-0.7804980278,-0.7804980278,-0.7809379101,-0.7819936275,-0.7836652398,-0.7852489352,-0.785776794,-0.7858647704,-0.7853369117,-0.7848089933,-0.7838411927,-0.7784745097,-0.770996213,-0.7689726949,-0.769764483,-0.7709082365,-0.7741634846,-0.7783865333,-0.7819936275,-0.784545064,-0.7858647704,-0.7862166762,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7859527469,-0.7843691111,-0.7813777924,-0.7760110497,-0.7721399069,-0.7756591439,-0.7829613686,-0.785776794,-0.785776794,-0.7858647704,-0.7854248881,-0.7834013104,-0.7812018394,-0.7808499336,-0.7810258865,-0.7810258865,-0.7809379101,-0.7810258865,-0.781113863,-0.7810258865,-0.7810258865,-0.781113863,-0.7810258865,-0.7810258865,-0.7810258865,-0.7810258865,-0.7810258865,-0.7812018394,-0.7812898159,-0.7812898159,-0.7812898159,-0.7812898159,-0.7813777924,-0.7813777924,-0.7814657688,-0.7815537453,-0.7814657688,-0.7814657688,-0.7815537453,-0.7815537453,-0.7816417217,-0.7816417217,-0.7813777924,-0.7812018394,-0.7812018394,-0.781113863,-0.7809379101,-0.7809379101,-0.7808499336,-0.7805860043,-0.7804980278,-0.7803220749,-0.779882133,-0.7796182036,-0.7797061801,-0.7796182036,-0.7794422507,-0.7793542743,-0.7795302272,-0.7797941566,-0.779882133,-0.7799701095,-0.7799701095,-0.7800580859,-0.7802340984,-0.7802340984,-0.7803220749,-0.7804100513,-0.7805860043,-0.7804980278,-0.7805860043,-0.7806739807,-0.7807619572,-0.7808499336,-0.7810258865,-0.7812018394,-0.781113863,-0.7806739807,-0.7804980278,-0.7808499336,-0.7814657688,-0.7826094627,-0.783313334,-0.7831373215,-0.7835772634,-0.7841051817,-0.7835772634,-0.7832252979,-0.7832252979,-0.7827854156,-0.7819056511,-0.7810258865,-0.7803220749,-0.779882133,-0.7799701095,-0.7800580859,-0.7800580859,-0.7799701095,-0.779882133,-0.7797941566,-0.7796182036,-0.7794422507,-0.7794422507,-0.7794422507,-0.7794422507,-0.7796182036,-0.7796182036,-0.7795302272,-0.7794422507,-0.7794422507,-0.7793542743,-0.7790903449,-0.7790903449,-0.7795302272,-0.779882133,-0.7800580859,-0.7802340984,-0.7804100513,-0.7804100513,-0.7803220749,-0.7804980278,-0.7807619572,-0.7809379101,-0.781113863,-0.7810258865,-0.7809379101,-0.7809379101,-0.7806739807,-0.7802340984,-0.7802340984,-0.7806739807,-0.7809379101,-0.7809379101,-0.7807619572,-0.7804980278,-0.7803220749,-0.7802340984,-0.7800580859,-0.7799701095,-0.7800580859,-0.7800580859,-0.7800580859,-0.7802340984,-0.7804100513,-0.7805860043,-0.7805860043,-0.7806739807,-0.7808499336,-0.7808499336,-0.7807619572,-0.7806739807,-0.7805860043,-0.7804980278,-0.7806739807,-0.7814657688,-0.783313334,-0.7853369117,-0.7859527469,-0.7859527469,-0.7854248881,-0.7849849463,-0.7834892869,-0.777418673,-0.7707322836,-0.7694125772,-0.7698524594,-0.7710841894,-0.7746913433,-0.7787384391,-0.782081604,-0.784545064,-0.7858647704,-0.7862166762,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7859527469,-0.784545064,-0.782081604,-0.7768908143,-0.7721399069,-0.7743394375,-0.7818176746,-0.7856888175,-0.7859527469,-0.7858647704,-0.7855128646,-0.7834013104,-0.7810258865,-0.7808499336,-0.7812018394,-0.781113863,-0.781113863,-0.7812018394,-0.7812018394,-0.7812018394,-0.781113863,-0.7810258865,-0.7809379101,-0.7810258865,-0.7810258865,-0.7809379101,-0.7809379101,-0.7810258865,-0.7812018394,-0.7812898159,-0.7812898159,-0.7812898159,-0.7813777924,-0.7813777924,-0.7814657688,-0.7814657688,-0.7813777924,-0.7813777924,-0.7814657688,-0.7814657688,-0.7815537453,-0.7814657688,-0.7812898159,-0.7812898159,-0.7812898159,-0.7812898159,-0.7810258865,-0.7807619572,-0.7806739807,-0.7804100513,-0.7802340984,-0.7802340984,-0.7800580859,-0.7797061801,-0.7796182036,-0.7797061801,-0.7797061801,-0.7797061801,-0.7797941566,-0.779882133,-0.7799701095,-0.7800580859,-0.7802340984,-0.7803220749,-0.7803220749,-0.7803220749,-0.7804980278,-0.7806739807,-0.7806739807,-0.7805860043,-0.7806739807,-0.7806739807,-0.7807619572,-0.7809379101,-0.7810258865,-0.7809379101,-0.7809379101,-0.7808499336,-0.7806739807,-0.7810258865,-0.7815537453,-0.7824335098,-0.7829613686,-0.7829613686,-0.7834892869,-0.7839292288,-0.7832252979,-0.7827854156,-0.7829613686,-0.7822575569,-0.7813777924,-0.7809379101,-0.7804980278,-0.780146122,-0.780146122,-0.7804100513,-0.7803220749,-0.7800580859,-0.7797941566,-0.7796182036,-0.7796182036,-0.7796182036,-0.7795302272,-0.7793542743,-0.7794422507,-0.7796182036,-0.7797061801,-0.7796182036,-0.7796182036,-0.7796182036,-0.7796182036,-0.7797061801,-0.779882133,-0.7797941566,-0.7797941566,-0.780146122,-0.7804100513,-0.7803220749,-0.7803220749,-0.7804100513,-0.7805860043,-0.7809379101,-0.781113863,-0.781113863,-0.7810258865,-0.7809379101,-0.7808499336,-0.7805860043,-0.7803220749,-0.7805860043,-0.7809379101,-0.781113863,-0.781113863,-0.7806739807,-0.7802340984,-0.780146122,-0.7800580859,-0.7800580859,-0.780146122,-0.7802340984,-0.7803220749,-0.7804100513,-0.7805860043,-0.7807619572,-0.7807619572,-0.7806739807,-0.7806739807,-0.7806739807,-0.7806739807,-0.7806739807,-0.7806739807,-0.7804980278,-0.7804100513,-0.7803220749,-0.7808499336,-0.7829613686,-0.7853369117,-0.7859527469,-0.7859527469,-0.7855128646,-0.7850729823,-0.7829613686,-0.776450932,-0.7705563307,-0.769764483,-0.7701163888,-0.7713481188,-0.7748672962,-0.778914392,-0.7821695805,-0.784545064,-0.785776794,-0.7861286998,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7858647704,-0.784545064,-0.7823455334,-0.7776826024,-0.7724038363,-0.7731077671,-0.7804100513,-0.7852489352,-0.7859527469,-0.785776794,-0.7856888175,-0.7839292288,-0.7814657688,-0.7809379101,-0.7812898159,-0.7812018394,-0.7812018394,-0.7813777924,-0.7813777924,-0.7813777924,-0.7812018394,-0.781113863,-0.781113863,-0.781113863,-0.781113863,-0.7812018394,-0.781113863,-0.7810258865,-0.781113863,-0.781113863,-0.781113863,-0.7812898159,-0.7814657688,-0.7814657688,-0.7814657688,-0.7814657688,-0.7814657688,-0.7813777924,-0.7813777924,-0.7814657688,-0.7815537453,-0.7813777924,-0.7812898159,-0.7813777924,-0.7814657688,-0.7813777924,-0.781113863,-0.7808499336,-0.7806739807,-0.7803220749,-0.7799701095,-0.780146122,-0.7802340984,-0.7799701095,-0.7797061801,-0.7796182036,-0.7797061801,-0.7802340984,-0.7805860043,-0.7804980278,-0.7803220749,-0.7803220749,-0.7804100513,-0.7804100513,-0.7803220749,-0.7804100513,-0.7805860043,-0.7806739807,-0.7805860043,-0.7805860043,-0.7806739807,-0.7804980278,-0.7806739807,-0.7810258865,-0.7809379101,-0.7807619572,-0.7809379101,-0.7809379101,-0.7807619572,-0.7810258865,-0.7818176746,-0.7826094627,-0.7826974392,-0.7826094627,-0.7832252979,-0.7834892869,-0.7826974392,-0.7822575569,-0.7824335098,-0.7819056511,-0.7810258865,-0.7807619572,-0.7806739807,-0.7806739807,-0.7805860043,-0.7805860043,-0.7804980278,-0.7804100513,-0.780146122,-0.7799701095,-0.779882133,-0.7799701095,-0.7800580859,-0.7800580859,-0.7800580859,-0.7800580859,-0.7799701095,-0.7800580859,-0.780146122,-0.7804100513,-0.7806739807,-0.7808499336,-0.7804100513,-0.7797941566,-0.779882133,-0.7803220749,-0.7803220749,-0.7802340984,-0.7803220749,-0.7804100513,-0.7805860043,-0.7808499336,-0.7810258865,-0.7810258865,-0.7810258865,-0.7810258865,-0.7808499336,-0.7805860043,-0.7804980278,-0.7807619572,-0.7809379101,-0.7809379101,-0.7809379101,-0.7805860043,-0.7803220749,-0.7803220749,-0.780146122,-0.7802340984,-0.7804100513,-0.7804100513,-0.7804100513,-0.7804980278,-0.7804980278,-0.7804980278,-0.7804100513,-0.7804100513,-0.7804100513,-0.7804100513,-0.7804980278,-0.7804980278,-0.7804980278,-0.7804980278,-0.7804980278,-0.7803220749,-0.7808499336,-0.783049345,-0.7854248881,-0.7860407233,-0.7860407233,-0.785600841,-0.7849849463,-0.7821695805,-0.775483191,-0.7701163888,-0.7696765065,-0.7700284123,-0.7710841894,-0.7749552727,-0.7793542743,-0.7826094627,-0.7847210169,-0.7858647704,-0.7861286998,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.785776794,-0.784545064,-0.7824335098,-0.7782104611,-0.7728438377,-0.7718759775,-0.7783865333,-0.7843691111,-0.785776794,-0.785600841,-0.7858647704,-0.784545064,-0.7819056511,-0.7809379101,-0.7812898159,-0.7813777924,-0.7813777924,-0.7816417217,-0.7817296982,-0.7816417217,-0.7813777924,-0.7813777924,-0.7815537453,-0.7814657688,-0.7813777924,-0.7813777924,-0.7813777924,-0.7812898159,-0.7812898159,-0.7812898159,-0.7812898159,-0.7812898159,-0.7813777924,-0.7813777924,-0.7813777924,-0.7813777924,-0.7814657688,-0.7813777924,-0.7813777924,-0.7814657688,-0.7814657688,-0.7812898159,-0.7812898159,-0.7813777924,-0.7814657688,-0.7813777924,-0.7812018394,-0.7809379101,-0.7806739807,-0.7803220749,-0.7799701095,-0.7799701095,-0.7803220749,-0.7804100513,-0.7802340984,-0.779882133,-0.7797941566,-0.7804980278,-0.7812898159,-0.7812898159,-0.7809379101,-0.7808499336,-0.7808499336,-0.7806739807,-0.7804980278,-0.7804980278,-0.7805860043,-0.7805860043,-0.7806739807,-0.7807619572,-0.7806739807,-0.7806739807,-0.7808499336,-0.7810258865,-0.7807619572,-0.7806739807,-0.7809379101,-0.781113863,-0.7808499336,-0.781113863,-0.7821695805,-0.7828733921,-0.7826094627,-0.7825214863,-0.7831373215,-0.7832252979,-0.7824335098,-0.7821695805,-0.782081604,-0.7814657688,-0.7807619572,-0.7805860043,-0.7806739807,-0.7807619572,-0.7809379101,-0.7809379101,-0.7807619572,-0.7805860043,-0.7803220749,-0.7800580859,-0.7800580859,-0.780146122,-0.7804980278,-0.7805860043,-0.7804980278,-0.7804980278,-0.7806739807,-0.7809379101,-0.7812898159,-0.7814657688,-0.7814657688,-0.7809379101,-0.7803220749,-0.7800580859,-0.7802340984,-0.7803220749,-0.7800580859,-0.7800580859,-0.7802340984,-0.7804100513,-0.7806739807,-0.7809379101,-0.781113863,-0.781113863,-0.7810258865,-0.7809379101,-0.7806739807,-0.7805860043,-0.7806739807,-0.7809379101,-0.7810258865,-0.7809379101,-0.7808499336,-0.7806739807,-0.7805860043,-0.7805860043,-0.7804980278,-0.7804980278,-0.7805860043,-0.7804980278,-0.7804980278,-0.7804100513,-0.7803220749,-0.7804100513,-0.7804100513,-0.7803220749,-0.7804100513,-0.7804100513,-0.7804100513,-0.7804100513,-0.7804100513,-0.7804980278,-0.7805860043,-0.7804100513,-0.7809379101,-0.7832252979,-0.7855128646,-0.7860407233,-0.7860407233,-0.7856888175,-0.7849849463,-0.7814657688,-0.7744274139,-0.769764483,-0.7696765065,-0.7699404359,-0.7714360952,-0.775483191,-0.7797941566,-0.783049345,-0.7849849463,-0.7859527469,-0.7862166762,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7859527469,-0.7848969698,-0.7825214863,-0.7786504626,-0.7738115788,-0.7716120481,-0.7767148614,-0.783313334,-0.785776794,-0.7856888175,-0.7859527469,-0.7850729823,-0.7824335098,-0.7809379101,-0.7812018394,-0.7813777924,-0.7815537453,-0.7819056511,-0.7819936275,-0.7819056511,-0.7817296982,-0.7817296982,-0.7819056511,-0.7818176746,-0.7817296982,-0.7817296982,-0.7815537453,-0.7814657688,-0.7814657688,-0.7815537453,-0.7815537453,-0.7814657688,-0.7814657688,-0.7814657688,-0.7813777924,-0.7813777924,-0.7813777924,-0.7812898159,-0.7812898159,-0.7813777924,-0.7813777924,-0.7814657688,-0.7814657688,-0.7813777924,-0.7814657688,-0.7813777924,-0.781113863,-0.7809379101,-0.7806739807,-0.7804100513,-0.7799701095,-0.779882133,-0.7803220749,-0.7807619572,-0.7808499336,-0.7804100513,-0.780146122,-0.7806739807,-0.7812018394,-0.7812018394,-0.7809379101,-0.7808499336,-0.7808499336,-0.7807619572,-0.7805860043,-0.7804980278,-0.7805860043,-0.7806739807,-0.7807619572,-0.7808499336,-0.7808499336,-0.7808499336,-0.7809379101,-0.7809379101,-0.7807619572,-0.7805860043,-0.7808499336,-0.781113863,-0.7810258865,-0.7812898159,-0.7821695805,-0.7826094627,-0.7822575569,-0.7823455334,-0.7831373215,-0.7829613686,-0.7824335098,-0.7824335098,-0.7821695805,-0.7812898159,-0.7805860043,-0.7804100513,-0.7806739807,-0.7808499336,-0.7810258865,-0.7810258865,-0.7807619572,-0.7805860043,-0.7804980278,-0.780146122,-0.7800580859,-0.7802340984,-0.7804980278,-0.7806739807,-0.7807619572,-0.7809379101,-0.7812018394,-0.7817296982,-0.7821695805,-0.7818176746,-0.781113863,-0.7807619572,-0.7806739807,-0.7806739807,-0.7805860043,-0.7803220749,-0.7799701095,-0.7799701095,-0.7802340984,-0.7805860043,-0.7808499336,-0.7810258865,-0.781113863,-0.7810258865,-0.7810258865,-0.7808499336,-0.7805860043,-0.7804980278,-0.7808499336,-0.781113863,-0.781113863,-0.7810258865,-0.7808499336,-0.7807619572,-0.7807619572,-0.7807619572,-0.7806739807,-0.7805860043,-0.7805860043,-0.7804980278,-0.7804980278,-0.7804980278,-0.7804100513,-0.7804100513,-0.7804100513,-0.7804980278,-0.7805860043,-0.7805860043,-0.7804100513,-0.7804980278,-0.7804980278,-0.7804980278,-0.7805860043,-0.7804980278,-0.781113863,-0.7834892869,-0.785600841,-0.7859527469,-0.7859527469,-0.785600841,-0.7848969698,-0.7805860043,-0.7733716965,-0.7696765065,-0.7698524594,-0.7704683542,-0.7724918127,-0.7763629556,-0.7802340984,-0.783313334,-0.7850729823,-0.7859527469,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863046527,-0.7859527469,-0.7850729823,-0.7826974392,-0.778914392,-0.7745153904,-0.7717000246,-0.7750432491,-0.7818176746,-0.7855128646,-0.7858647704,-0.7859527469,-0.7855128646,-0.7834013104,-0.7812898159,-0.7810258865,-0.7813777924,-0.7813777924,-0.7816417217,-0.7817296982,-0.7817296982,-0.7819056511,-0.7819936275,-0.7819936275,-0.7819936275,-0.7819936275,-0.782081604,-0.7818176746,-0.7817296982,-0.7818176746,-0.7818176746,-0.7818176746,-0.7817296982,-0.7816417217,-0.7815537453,-0.7814657688,-0.7815537453,-0.7814657688,-0.7812898159,-0.7813777924,-0.7813777924,-0.7813777924,-0.7814657688,-0.7815537453,-0.7814657688,-0.7814657688,-0.7813777924,-0.781113863,-0.7809379101,-0.7808499336,-0.7805860043,-0.780146122,-0.7799701095,-0.7802340984,-0.7807619572,-0.7812018394,-0.7810258865,-0.7804980278,-0.7804980278,-0.7807619572,-0.7808499336,-0.7807619572,-0.7806739807,-0.7806739807,-0.7806739807,-0.7805860043,-0.7805860043,-0.7804980278,-0.7804980278,-0.7805860043,-0.7807619572,-0.7806739807,-0.7806739807,-0.7808499336,-0.7807619572,-0.7805860043,-0.7804980278,-0.7805860043,-0.7808499336,-0.7809379101,-0.7814657688,-0.7821695805,-0.7822575569,-0.7819056511,-0.7822575569,-0.7829613686,-0.7826094627,-0.7822575569,-0.7825214863,-0.782081604,-0.7812018394,-0.7806739807,-0.7806739807,-0.7810258865,-0.7812898159,-0.7813777924,-0.781113863,-0.7807619572,-0.7805860043,-0.7804980278,-0.7803220749,-0.7802340984,-0.7804100513,-0.7805860043,-0.7809379101,-0.7812898159,-0.7814657688,-0.7817296982,-0.7819936275,-0.7819056511,-0.7812018394,-0.7808499336,-0.7810258865,-0.7810258865,-0.7806739807,-0.7804980278,-0.7802340984,-0.7799701095,-0.780146122,-0.7803220749,-0.7804980278,-0.7807619572,-0.7809379101,-0.7810258865,-0.7809379101,-0.7809379101,-0.7808499336,-0.7805860043,-0.7804980278,-0.7806739807,-0.7810258865,-0.7812018394,-0.781113863,-0.7808499336,-0.7807619572,-0.7808499336,-0.7807619572,-0.7805860043,-0.7804980278,-0.7805860043,-0.7805860043,-0.7805860043,-0.7804980278,-0.7804980278,-0.7804980278,-0.7805860043,-0.7807619572,-0.7809379101,-0.7808499336,-0.7806739807,-0.7806739807,-0.7806739807,-0.7805860043,-0.7806739807,-0.7804980278,-0.7813777924,-0.7838411927,-0.7856888175,-0.7859527469,-0.7858647704,-0.7856888175,-0.784545064,-0.7796182036,-0.7724918127,-0.7695885301,-0.7698524594,-0.7706443071,-0.7731957436,-0.7771547437,-0.7806739807,-0.7834013104,-0.7851609588,-0.7860407233,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7856888175,-0.7847210169,-0.7826974392,-0.7792662978,-0.7752192616,-0.7717000246,-0.77328372,-0.779882133,-0.7849849463,-0.7859527469,-0.7858647704,-0.7858647704,-0.7843691111,-0.7818176746,-0.7810258865,-0.7812898159,-0.7812898159,-0.7812898159,-0.7813777924,-0.7814657688,-0.7817296982,-0.7818176746,-0.7818176746,-0.7819056511,-0.7819936275,-0.7819936275,-0.782081604,-0.782081604,-0.7819936275,-0.7819936275,-0.7819936275,-0.7819056511,-0.7819056511,-0.7818176746,-0.7817296982,-0.7817296982,-0.7815537453,-0.7813777924,-0.7814657688,-0.7814657688,-0.7812018394,-0.7812898159,-0.7814657688,-0.7814657688,-0.7815537453,-0.7814657688,-0.7812018394,-0.7810258865,-0.7809379101,-0.7805860043,-0.7802340984,-0.7800580859,-0.7802340984,-0.7807619572,-0.7813777924,-0.7814657688,-0.7810258865,-0.7805860043,-0.7804100513,-0.7804980278,-0.7805860043,-0.7806739807,-0.7807619572,-0.7807619572,-0.7806739807,-0.7805860043,-0.7804100513,-0.7804100513,-0.7805860043,-0.7807619572,-0.7806739807,-0.7807619572,-0.7809379101,-0.7806739807,-0.7804100513,-0.7804100513,-0.7804100513,-0.7806739807,-0.7812898159,-0.7819936275,-0.7826974392,-0.7826974392,-0.7823455334,-0.7826094627,-0.7832252979,-0.7827854156,-0.7824335098,-0.7826094627,-0.782081604,-0.7812898159,-0.7809379101,-0.7809379101,-0.781113863,-0.7813777924,-0.7816417217,-0.7813777924,-0.7809379101,-0.7807619572,-0.7806739807,-0.7804100513,-0.7804100513,-0.7805860043,-0.7806739807,-0.781113863,-0.7815537453,-0.7818176746,-0.7819056511,-0.7819056511,-0.7816417217,-0.7810258865,-0.7807619572,-0.7808499336,-0.7809379101,-0.7808499336,-0.7805860043,-0.7804100513,-0.7804100513,-0.7804980278,-0.7804100513,-0.7804980278,-0.7807619572,-0.781113863,-0.7812018394,-0.7810258865,-0.7808499336,-0.7807619572,-0.7806739807,-0.7804980278,-0.7806739807,-0.7810258865,-0.7812018394,-0.7810258865,-0.7809379101,-0.7808499336,-0.7808499336,-0.7807619572,-0.7805860043,-0.7804980278,-0.7805860043,-0.7806739807,-0.7805860043,-0.7804980278,-0.7804980278,-0.7805860043,-0.7805860043,-0.7807619572,-0.7809379101,-0.7809379101,-0.7809379101,-0.7808499336,-0.7806739807,-0.7805860043,-0.7806739807,-0.7804980278,-0.7815537453,-0.7841051817,-0.785776794,-0.7858647704,-0.785776794,-0.785600841,-0.7839292288,-0.7784745097,-0.771963954,-0.7698524594,-0.7700284123,-0.77082026,-0.7733716965,-0.7773306966,-0.7808499336,-0.7834892869,-0.7852489352,-0.7862166762,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7860407233,-0.7854248881,-0.7841931581,-0.7824335098,-0.7796182036,-0.7761870027,-0.7725797892,-0.7724918127,-0.7781224847,-0.7841051817,-0.7860407233,-0.7858647704,-0.7859527469,-0.7853369117,-0.7829613686,-0.7812898159,-0.781113863,-0.7812018394,-0.781113863,-0.7812018394,-0.7812018394,-0.7812898159,-0.7813777924,-0.7814657688,-0.7817296982,-0.7819056511,-0.7819056511,-0.7819936275,-0.7819936275,-0.7819936275,-0.7819936275,-0.782081604,-0.782081604,-0.7819936275,-0.7819056511,-0.7819056511,-0.7818176746,-0.7817296982,-0.7815537453,-0.7814657688,-0.7813777924,-0.7812018394,-0.781113863,-0.7812898159,-0.7814657688,-0.7816417217,-0.7816417217,-0.7813777924,-0.781113863,-0.7808499336,-0.7804980278,-0.780146122,-0.7802340984,-0.7805860043,-0.7810258865,-0.7814657688,-0.7817296982,-0.7817296982,-0.7812018394,-0.7807619572,-0.7806739807,-0.7806739807,-0.7806739807,-0.7807619572,-0.7807619572,-0.7807619572,-0.7805860043,-0.7804980278,-0.7803220749,-0.7806739807,-0.7809379101,-0.7807619572,-0.7809379101,-0.7812018394,-0.7809379101,-0.7807619572,-0.7806739807,-0.7804100513,-0.7808499336,-0.7819056511,-0.7826094627,-0.7831373215,-0.7831373215,-0.7826974392,-0.7828733921,-0.783313334,-0.7828733921,-0.7826094627,-0.7827854156,-0.7824335098,-0.7815537453,-0.7812018394,-0.7812018394,-0.7812898159,-0.7814657688,-0.7816417217,-0.7812898159,-0.7807619572,-0.7807619572,-0.7808499336,-0.7804980278,-0.7804100513,-0.7805860043,-0.7807619572,-0.781113863,-0.7816417217,-0.7819056511,-0.7819936275,-0.7818176746,-0.7815537453,-0.7812018394,-0.7805860043,-0.7802340984,-0.7809379101,-0.7814657688,-0.7812018394,-0.7809379101,-0.7809379101,-0.7805860043,-0.7802340984,-0.7804980278,-0.7807619572,-0.781113863,-0.7812018394,-0.7810258865,-0.7808499336,-0.7807619572,-0.7807619572,-0.7806739807,-0.7807619572,-0.781113863,-0.7812898159,-0.781113863,-0.7808499336,-0.7808499336,-0.7808499336,-0.7807619572,-0.7804980278,-0.7804100513,-0.7808499336,-0.781113863,-0.7809379101,-0.7807619572,-0.7807619572,-0.7808499336,-0.7807619572,-0.7807619572,-0.7806739807,-0.7807619572,-0.7808499336,-0.7808499336,-0.7806739807,-0.7806739807,-0.7806739807,-0.7805860043,-0.782081604,-0.7846330404,-0.7858647704,-0.7858647704,-0.785776794,-0.7853369117,-0.7826094627,-0.7763629556,-0.7709082365,-0.7699404359,-0.7702043653,-0.7709082365,-0.7735476494,-0.7775946259,-0.781113863,-0.7836652398,-0.7853369117,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863046527,-0.7860407233,-0.7853369117,-0.7837532163,-0.7819936275,-0.7795302272,-0.7763629556,-0.77328372,-0.7722278833,-0.776450932,-0.7828733921,-0.7858647704,-0.7858647704,-0.7859527469,-0.7858647704,-0.7842811346,-0.782081604,-0.781113863,-0.781113863,-0.7810258865,-0.7810258865,-0.781113863,-0.781113863,-0.7812018394,-0.7813777924,-0.7814657688,-0.7816417217,-0.7817296982,-0.7818176746,-0.7818176746,-0.7819056511,-0.7819936275,-0.7819936275,-0.7819936275,-0.7819056511,-0.7818176746,-0.7818176746,-0.7818176746,-0.7817296982,-0.7816417217,-0.7815537453,-0.7814657688,-0.7812018394,-0.781113863,-0.781113863,-0.7814657688,-0.7817296982,-0.7816417217,-0.7814657688,-0.7812898159,-0.7809379101,-0.7804980278,-0.780146122,-0.7804100513,-0.7809379101,-0.7812898159,-0.7815537453,-0.7817296982,-0.7817296982,-0.7814657688,-0.7812898159,-0.781113863,-0.7809379101,-0.7806739807,-0.7805860043,-0.7808499336,-0.7808499336,-0.7806739807,-0.7804980278,-0.7804100513,-0.7806739807,-0.7809379101,-0.7808499336,-0.781113863,-0.7813777924,-0.7812018394,-0.7812018394,-0.7808499336,-0.7804980278,-0.7812018394,-0.7824335098,-0.7827854156,-0.7828733921,-0.7827854156,-0.7826094627,-0.7829613686,-0.7834013104,-0.7828733921,-0.7825214863,-0.7827854156,-0.7826094627,-0.7818176746,-0.7813777924,-0.7813777924,-0.7812018394,-0.7812018394,-0.7813777924,-0.781113863,-0.7807619572,-0.7806739807,-0.7807619572,-0.7804100513,-0.7803220749,-0.7806739807,-0.7808499336,-0.781113863,-0.7815537453,-0.7819056511,-0.7819936275,-0.7819056511,-0.7816417217,-0.781113863,-0.7805860043,-0.7804980278,-0.7812898159,-0.7818176746,-0.7817296982,-0.7815537453,-0.7810258865,-0.7803220749,-0.7800580859,-0.7804100513,-0.7808499336,-0.781113863,-0.7812018394,-0.781113863,-0.7808499336,-0.7807619572,-0.7807619572,-0.7808499336,-0.7808499336,-0.7810258865,-0.7812898159,-0.7813777924,-0.781113863,-0.7809379101,-0.7808499336,-0.7806739807,-0.7804980278,-0.7804100513,-0.7807619572,-0.7812898159,-0.7813777924,-0.7812018394,-0.7812018394,-0.7812018394,-0.7810258865,-0.7809379101,-0.7808499336,-0.7808499336,-0.7808499336,-0.7809379101,-0.7809379101,-0.7807619572,-0.7805860043,-0.7808499336,-0.7827854156,-0.7852489352,-0.7860407233,-0.7858647704,-0.7856888175,-0.7851609588,-0.7809379101,-0.7738995552,-0.769764483,-0.769764483,-0.7700284123,-0.7710841894,-0.7740755081,-0.7780345082,-0.7813777924,-0.7837532163,-0.7854248881,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7859527469,-0.7849849463,-0.7834013104,-0.7819056511,-0.7792662978,-0.7761870027,-0.7736356258,-0.7717000246,-0.7744274139,-0.781113863,-0.7855128646,-0.7859527469,-0.785776794,-0.7858647704,-0.7852489352,-0.783049345,-0.7813777924,-0.781113863,-0.7810258865,-0.7810258865,-0.7810258865,-0.7810258865,-0.781113863,-0.7812018394,-0.781113863,-0.7812018394,-0.7813777924,-0.7815537453,-0.7817296982,-0.7819936275,-0.7819936275,-0.7819056511,-0.7819056511,-0.7819056511,-0.7818176746,-0.7817296982,-0.7816417217,-0.7816417217,-0.7816417217,-0.7815537453,-0.7814657688,-0.7812898159,-0.781113863,-0.7810258865,-0.7812018394,-0.7815537453,-0.7815537453,-0.7815537453,-0.7813777924,-0.7810258865,-0.7804980278,-0.780146122,-0.7803220749,-0.7810258865,-0.7815537453,-0.7817296982,-0.7817296982,-0.7815537453,-0.7813777924,-0.7812898159,-0.7812018394,-0.7810258865,-0.7806739807,-0.7805860043,-0.7808499336,-0.7809379101,-0.7806739807,-0.7804100513,-0.7802340984,-0.7804980278,-0.7807619572,-0.7808499336,-0.7812898159,-0.7814657688,-0.7812018394,-0.7810258865,-0.7808499336,-0.781113863,-0.782081604,-0.7825214863,-0.7823455334,-0.7825214863,-0.7825214863,-0.7823455334,-0.7829613686,-0.7835772634,-0.7826094627,-0.782081604,-0.7827854156,-0.7828733921,-0.7818176746,-0.7812898159,-0.7814657688,-0.7813777924,-0.781113863,-0.7810258865,-0.7808499336,-0.7807619572,-0.7807619572,-0.7805860043,-0.7804980278,-0.7804980278,-0.7806739807,-0.7809379101,-0.7812018394,-0.7814657688,-0.7818176746,-0.7819936275,-0.782081604,-0.782081604,-0.7816417217,-0.7813777924,-0.7817296982,-0.7823455334,-0.7826094627,-0.7824335098,-0.7818176746,-0.7809379101,-0.7802340984,-0.7800580859,-0.7804980278,-0.7810258865,-0.7812898159,-0.7812018394,-0.7810258865,-0.7808499336,-0.7807619572,-0.7807619572,-0.7808499336,-0.7807619572,-0.7808499336,-0.7812018394,-0.7816417217,-0.7815537453,-0.7813777924,-0.7812018394,-0.7809379101,-0.7807619572,-0.7805860043,-0.7805860043,-0.7807619572,-0.7808499336,-0.7807619572,-0.7808499336,-0.7808499336,-0.7809379101,-0.781113863,-0.7812018394,-0.7810258865,-0.7808499336,-0.7810258865,-0.781113863,-0.7809379101,-0.7806739807,-0.7812018394,-0.7834892869,-0.7856888175,-0.7861286998,-0.7858647704,-0.785600841,-0.7844570875,-0.7786504626,-0.771963954,-0.7695005536,-0.7698524594,-0.7702924013,-0.7718759775,-0.7749552727,-0.7786504626,-0.7818176746,-0.7840172052,-0.7855128646,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7858647704,-0.7848089933,-0.7834013104,-0.7819056511,-0.7790903449,-0.7760990262,-0.7741634846,-0.7720519304,-0.7728438377,-0.778914392,-0.7846330404,-0.7859527469,-0.7856888175,-0.7856888175,-0.785776794,-0.7842811346,-0.7821695805,-0.7812018394,-0.7810258865,-0.7809379101,-0.7810258865,-0.7809379101,-0.7809379101,-0.7809379101,-0.7808499336,-0.7809379101,-0.781113863,-0.7812898159,-0.7815537453,-0.7818176746,-0.7819936275,-0.7819056511,-0.7819056511,-0.7819056511,-0.7817296982,-0.7815537453,-0.7815537453,-0.7814657688,-0.7814657688,-0.7814657688,-0.7814657688,-0.7813777924,-0.781113863,-0.7809379101,-0.781113863,-0.7813777924,-0.7815537453,-0.7815537453,-0.7814657688,-0.7810258865,-0.7804100513,-0.7800580859,-0.7802340984,-0.7809379101,-0.7816417217,-0.7818176746,-0.7818176746,-0.7815537453,-0.7812898159,-0.7812018394,-0.7812018394,-0.7810258865,-0.7806739807,-0.7807619572,-0.7809379101,-0.7809379101,-0.7806739807,-0.7804100513,-0.7802340984,-0.7803220749,-0.7805860043,-0.7808499336,-0.7812018394,-0.7812898159,-0.7810258865,-0.7807619572,-0.7807619572,-0.7815537453,-0.7826974392,-0.7825214863,-0.7822575569,-0.7826094627,-0.7826094627,-0.7823455334,-0.7828733921,-0.7831373215,-0.7819936275,-0.7817296982,-0.7825214863,-0.7825214863,-0.7815537453,-0.7810258865,-0.7813777924,-0.7817296982,-0.7813777924,-0.7810258865,-0.7807619572,-0.7806739807,-0.7807619572,-0.7805860043,-0.7804980278,-0.7805860043,-0.7805860043,-0.7807619572,-0.781113863,-0.7814657688,-0.7817296982,-0.7819936275,-0.7823455334,-0.7824335098,-0.7823455334,-0.7823455334,-0.7827854156,-0.783049345,-0.783049345,-0.7826974392,-0.7819056511,-0.7807619572,-0.7800580859,-0.780146122,-0.7806739807,-0.781113863,-0.7812898159,-0.7812018394,-0.7809379101,-0.7807619572,-0.7807619572,-0.7808499336,-0.7809379101,-0.7809379101,-0.7809379101,-0.7810258865,-0.7812898159,-0.7813777924,-0.7814657688,-0.7814657688,-0.7813777924,-0.7812898159,-0.7812018394,-0.781113863,-0.7809379101,-0.7807619572,-0.7806739807,-0.7804980278,-0.7803220749,-0.7804980278,-0.7808499336,-0.7810258865,-0.7807619572,-0.7805860043,-0.7807619572,-0.7808499336,-0.7809379101,-0.781113863,-0.782081604,-0.7841051817,-0.785776794,-0.7859527469,-0.7856888175,-0.7854248881,-0.7827854156,-0.7759230733,-0.7705563307,-0.7695005536,-0.7700284123,-0.7707322836,-0.7725797892,-0.7755711675,-0.7792662978,-0.7822575569,-0.7841931581,-0.7855128646,-0.7861286998,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7862166762,-0.7856888175,-0.7848969698,-0.7836652398,-0.7819056511,-0.7792662978,-0.776450932,-0.7745153904,-0.7724038363,-0.7715240717,-0.7758350968,-0.7827854156,-0.785776794,-0.785776794,-0.7855128646,-0.785776794,-0.7853369117,-0.7836652398,-0.7818176746,-0.7809379101,-0.7807619572,-0.7809379101,-0.7809379101,-0.7808499336,-0.7808499336,-0.7808499336,-0.7809379101,-0.7810258865,-0.7812898159,-0.7815537453,-0.7817296982,-0.7819056511,-0.7819936275,-0.7819056511,-0.7818176746,-0.7816417217,-0.7815537453,-0.7815537453,-0.7814657688,-0.7814657688,-0.7815537453,-0.7814657688,-0.7814657688,-0.7812898159,-0.7812018394,-0.781113863,-0.7812898159,-0.7814657688,-0.7815537453,-0.7815537453,-0.7812018394,-0.7806739807,-0.7800580859,-0.7800580859,-0.7808499336,-0.7818176746,-0.7819936275,-0.7819056511,-0.7817296982,-0.7812898159,-0.7810258865,-0.7810258865,-0.7807619572,-0.7806739807,-0.7808499336,-0.7808499336,-0.7807619572,-0.7804980278,-0.7803220749,-0.7802340984,-0.780146122,-0.7804980278,-0.7809379101,-0.7808499336,-0.7807619572,-0.7808499336,-0.7808499336,-0.7808499336,-0.7813777924,-0.7821695805,-0.7823455334,-0.7826094627,-0.783313334,-0.7831373215,-0.7825214863,-0.7825214863,-0.7822575569,-0.7815537453,-0.7818176746,-0.7823455334,-0.7819936275,-0.7812018394,-0.7807619572,-0.7812018394,-0.7818176746,-0.7815537453,-0.7809379101,-0.7807619572,-0.7807619572,-0.7807619572,-0.7806739807,-0.7805860043,-0.7804980278,-0.7804100513,-0.7804980278,-0.7809379101,-0.7813777924,-0.7816417217,-0.7819936275,-0.7824335098,-0.7826094627,-0.7826094627,-0.7827854156,-0.783049345,-0.7832252979,-0.7831373215,-0.7827854156,-0.7818176746,-0.7805860043,-0.7799701095,-0.7804100513,-0.7809379101,-0.7812018394,-0.7812018394,-0.781113863,-0.7808499336,-0.7806739807,-0.7806739807,-0.7808499336,-0.7809379101,-0.7810258865,-0.781113863,-0.7809379101,-0.7808499336,-0.7810258865,-0.7812018394,-0.7812898159,-0.7812898159,-0.7812898159,-0.7813777924,-0.7814657688,-0.7812018394,-0.7809379101,-0.7806739807,-0.7804100513,-0.7804100513,-0.7805860043,-0.7807619572,-0.7808499336,-0.7807619572,-0.7804980278,-0.7804100513,-0.7804100513,-0.7805860043,-0.7812018394,-0.7827854156,-0.7847210169,-0.7858647704,-0.7858647704,-0.7856888175,-0.7848969698,-0.7808499336,-0.7738115788,-0.7699404359,-0.769764483,-0.7701163888,-0.7710841894,-0.7731957436,-0.7760990262,-0.7794422507,-0.7822575569,-0.7841931581,-0.7855128646,-0.7861286998,-0.7863046527,-0.7863926291,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7861286998,-0.7854248881,-0.7847210169,-0.7837532163,-0.7818176746,-0.7794422507,-0.7770667672,-0.7747793198,-0.7726678848,-0.770996213,-0.7733716965,-0.7804100513,-0.7851609588,-0.7858647704,-0.7855128646,-0.7855128646,-0.785776794,-0.7848969698,-0.7827854156,-0.7812898159,-0.7808499336,-0.7809379101,-0.7808499336,-0.7808499336,-0.7809379101,-0.7810258865,-0.7812018394,-0.7812898159,-0.7814657688,-0.7816417217,-0.7817296982,-0.7819056511,-0.7819936275,-0.7818176746,-0.7816417217,-0.7815537453,-0.7815537453,-0.7814657688,-0.7814657688,-0.7814657688,-0.7815537453,-0.7814657688,-0.7814657688,-0.7813777924,-0.7812018394,-0.7810258865,-0.7810258865,-0.7812898159,-0.7815537453,-0.7815537453,-0.7814657688,-0.7809379101,-0.7802340984,-0.7799701095,-0.7807619572,-0.7818176746,-0.782081604,-0.7818176746,-0.7816417217,-0.7812018394,-0.7809379101,-0.7806739807,-0.7805860043,-0.7806739807,-0.7807619572,-0.7807619572,-0.7807619572,-0.7805860043,-0.7802340984,-0.7799701095,-0.780146122,-0.7806739807,-0.7809379101,-0.7806739807,-0.7804980278,-0.7807619572,-0.7809379101,-0.7808499336,-0.781113863,-0.7814657688,-0.7815537453,-0.7822575569,-0.783313334,-0.7831373215,-0.782081604,-0.7816417217,-0.7814657688,-0.7815537453,-0.7822575569,-0.7825214863,-0.7818176746,-0.7810258865,-0.7805860043,-0.781113863,-0.7818176746,-0.7815537453,-0.7808499336,-0.7806739807,-0.7806739807,-0.7807619572,-0.7808499336,-0.7808499336,-0.7806739807,-0.7804980278,-0.7804980278,-0.7808499336,-0.7813777924,-0.7817296982,-0.7819056511,-0.7822575569,-0.7826094627,-0.7828733921,-0.7829613686,-0.783049345,-0.7831373215,-0.7831373215,-0.7826974392,-0.7816417217,-0.7804100513,-0.7799701095,-0.7805860043,-0.7812018394,-0.7812898159,-0.781113863,-0.7808499336,-0.7807619572,-0.7806739807,-0.7806739807,-0.7809379101,-0.7810258865,-0.7810258865,-0.781113863,-0.7810258865,-0.7809379101,-0.7809379101,-0.7810258865,-0.7809379101,-0.7808499336,-0.7809379101,-0.781113863,-0.781113863,-0.781113863,-0.7809379101,-0.7806739807,-0.7804980278,-0.7805860043,-0.7807619572,-0.7806739807,-0.7806739807,-0.7807619572,-0.7806739807,-0.7804980278,-0.7804100513,-0.7802340984,-0.7808499336,-0.7831373215,-0.7853369117,-0.7859527469,-0.7856888175,-0.7855128646,-0.7836652398,-0.7780345082,-0.771963954,-0.7699404359,-0.7701163888,-0.7702043653,-0.7712601423,-0.7735476494,-0.7766268849,-0.7797941566,-0.7823455334,-0.7842811346,-0.785600841,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7861286998,-0.7855128646,-0.7846330404,-0.7834892869,-0.7817296982,-0.7794422507,-0.7771547437,-0.7750432491,-0.7733716965,-0.7716120481,-0.7722278833,-0.7782104611,-0.7841051817,-0.7858647704,-0.7855128646,-0.7854248881,-0.785776794,-0.7855128646,-0.7838411927,-0.782081604,-0.7812898159,-0.781113863,-0.7809379101,-0.7809379101,-0.781113863,-0.7813777924,-0.7814657688,-0.7814657688,-0.7815537453,-0.7816417217,-0.7818176746,-0.7819056511,-0.7819056511,-0.7818176746,-0.7816417217,-0.7816417217,-0.7814657688,-0.7814657688,-0.7813777924,-0.7814657688,-0.7815537453,-0.7815537453,-0.7813777924,-0.7812018394,-0.781113863,-0.7810258865,-0.7809379101,-0.7812018394,-0.7815537453,-0.7816417217,-0.7816417217,-0.7813777924,-0.7806739807,-0.780146122,-0.7804980278,-0.7816417217,-0.782081604,-0.7818176746,-0.7814657688,-0.781113863,-0.7808499336,-0.7806739807,-0.7804980278,-0.7806739807,-0.7806739807,-0.7806739807,-0.7806739807,-0.7804980278,-0.780146122,-0.7799701095,-0.7803220749,-0.7806739807,-0.7807619572,-0.7804980278,-0.7804980278,-0.7807619572,-0.7808499336,-0.7808499336,-0.7810258865,-0.781113863,-0.781113863,-0.7816417217,-0.7823455334,-0.7823455334,-0.7817296982,-0.7812018394,-0.7810258865,-0.7816417217,-0.7825214863,-0.7826094627,-0.7819056511,-0.7812018394,-0.7807619572,-0.7812018394,-0.7818176746,-0.7814657688,-0.7807619572,-0.7806739807,-0.7806739807,-0.7806739807,-0.7808499336,-0.7808499336,-0.7806739807,-0.7804980278,-0.7804100513,-0.7806739807,-0.7812018394,-0.7817296982,-0.7819936275,-0.7822575569,-0.7826094627,-0.7829613686,-0.7831373215,-0.7831373215,-0.7831373215,-0.783049345,-0.7824335098,-0.7812018394,-0.780146122,-0.7800580859,-0.7807619572,-0.7812018394,-0.7812018394,-0.7810258865,-0.7807619572,-0.7806739807,-0.7806739807,-0.7806739807,-0.7809379101,-0.781113863,-0.781113863,-0.7812018394,-0.781113863,-0.781113863,-0.7812018394,-0.781113863,-0.7810258865,-0.7809379101,-0.7810258865,-0.7810258865,-0.7809379101,-0.7810258865,-0.7810258865,-0.7809379101,-0.7807619572,-0.7809379101,-0.7809379101,-0.7806739807,-0.7805860043,-0.7806739807,-0.7806739807,-0.7806739807,-0.7805860043,-0.7802340984,-0.7809379101,-0.7837532163,-0.7856888175,-0.785776794,-0.7856888175,-0.7851609588,-0.7818176746,-0.7752192616,-0.7703803778,-0.7695005536,-0.7698524594,-0.7701163888,-0.7714360952,-0.7737236023,-0.7768028378,-0.779882133,-0.7824335098,-0.7843691111,-0.785600841,-0.7862166762,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7860407233,-0.7854248881,-0.7846330404,-0.7834892869,-0.7815537453,-0.7792662978,-0.7769787908,-0.7747793198,-0.7731077671,-0.7714360952,-0.770996213,-0.7756591439,-0.7824335098,-0.785600841,-0.7856888175,-0.7853369117,-0.7855128646,-0.7856888175,-0.7847210169,-0.7829613686,-0.7817296982,-0.7812898159,-0.7812018394,-0.7810258865,-0.7812018394,-0.7813777924,-0.7814657688,-0.7813777924,-0.7815537453,-0.7816417217,-0.7818176746,-0.7818176746,-0.7819056511,-0.7819056511,-0.7819056511,-0.7816417217,-0.7813777924,-0.7812898159,-0.7813777924,-0.7814657688,-0.7815537453,-0.7814657688,-0.7812018394,-0.7812018394,-0.7812018394,-0.7812018394,-0.781113863,-0.7812018394,-0.7814657688,-0.7816417217,-0.7817296982,-0.7816417217,-0.7810258865,-0.7803220749,-0.7804980278,-0.7816417217,-0.7821695805,-0.7818176746,-0.7813777924,-0.7810258865,-0.7808499336,-0.7806739807,-0.7806739807,-0.7807619572,-0.7807619572,-0.7805860043,-0.7804100513,-0.7804100513,-0.7803220749,-0.7803220749,-0.7804980278,-0.7805860043,-0.7806739807,-0.7805860043,-0.7804100513,-0.7804980278,-0.7806739807,-0.7807619572,-0.7809379101,-0.781113863,-0.7809379101,-0.7813777924,-0.782081604,-0.782081604,-0.7817296982,-0.781113863,-0.7807619572,-0.7815537453,-0.7824335098,-0.7825214863,-0.7819056511,-0.7812898159,-0.7810258865,-0.7814657688,-0.7817296982,-0.7812898159,-0.7806739807,-0.7806739807,-0.7807619572,-0.7805860043,-0.7804980278,-0.7805860043,-0.7806739807,-0.7805860043,-0.7804980278,-0.7805860043,-0.7807619572,-0.7813777924,-0.7819936275,-0.7823455334,-0.7825214863,-0.7828733921,-0.7831373215,-0.7832252979,-0.7832252979,-0.783049345,-0.7822575569,-0.7809379101,-0.7799701095,-0.780146122,-0.7809379101,-0.7812018394,-0.781113863,-0.7809379101,-0.7806739807,-0.7804980278,-0.7805860043,-0.7807619572,-0.7809379101,-0.7810258865,-0.7812018394,-0.7812898159,-0.7812898159,-0.7812898159,-0.7813777924,-0.7812898159,-0.781113863,-0.781113863,-0.781113863,-0.781113863,-0.7810258865,-0.7810258865,-0.7810258865,-0.7810258865,-0.781113863,-0.7812018394,-0.781113863,-0.7809379101,-0.7808499336,-0.7807619572,-0.7806739807,-0.7806739807,-0.7805860043,-0.7804100513,-0.7816417217,-0.7844570875,-0.785776794,-0.7856888175,-0.785776794,-0.7846330404,-0.7804100513,-0.7743394375,-0.77082026,-0.7701163888,-0.7700284123,-0.7703803778,-0.7718759775,-0.7738995552,-0.7766268849,-0.7797941566,-0.7824335098,-0.7843691111,-0.7855128646,-0.7862166762,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7859527469,-0.7854248881,-0.7847210169,-0.7834892869,-0.7814657688,-0.7790023685,-0.7768028378,-0.7746913433,-0.7728438377,-0.7712601423,-0.7701163888,-0.7731957436,-0.7803220749,-0.7850729823,-0.7858647704,-0.7854248881,-0.7851609588,-0.7855128646,-0.7853369117,-0.7838411927,-0.782081604,-0.7812018394,-0.7810258865,-0.7809379101,-0.7810258865,-0.7812898159,-0.7813777924,-0.7814657688,-0.7814657688,-0.7815537453,-0.7817296982,-0.7818176746,-0.7819936275,-0.7819936275,-0.7818176746,-0.7815537453,-0.7813777924,-0.7812898159,-0.7812898159,-0.7814657688,-0.7815537453,-0.7814657688,-0.7813777924,-0.7813777924,-0.7813777924,-0.7812898159,-0.7812018394,-0.7812898159,-0.7812898159,-0.7814657688,-0.7816417217,-0.7816417217,-0.7812018394,-0.7804100513,-0.7804100513,-0.7814657688,-0.782081604,-0.7818176746,-0.7812898159,-0.7809379101,-0.7807619572,-0.7807619572,-0.7807619572,-0.7807619572,-0.7807619572,-0.7805860043,-0.7805860043,-0.7807619572,-0.7809379101,-0.7807619572,-0.7804100513,-0.7805860043,-0.7808499336,-0.7807619572,-0.7804980278,-0.7803220749,-0.7804980278,-0.7806739807,-0.7808499336,-0.7808499336,-0.7805860043,-0.7809379101,-0.7817296982,-0.7817296982,-0.7812898159,-0.7807619572,-0.7807619572,-0.7816417217,-0.7824335098,-0.7824335098,-0.7818176746,-0.7812898159,-0.7812018394,-0.7814657688,-0.7813777924,-0.781113863,-0.7806739807,-0.7805860043,-0.7805860043,-0.7805860043,-0.7804980278,-0.7804980278,-0.7805860043,-0.7806739807,-0.7806739807,-0.7806739807,-0.7804980278,-0.7807619572,-0.7816417217,-0.7822575569,-0.7825214863,-0.7828733921,-0.7831373215,-0.783313334,-0.7834013104,-0.783049345,-0.7821695805,-0.7806739807,-0.779882133,-0.7804100513,-0.781113863,-0.7812898159,-0.781113863,-0.7808499336,-0.7805860043,-0.7804980278,-0.7805860043,-0.7808499336,-0.7809379101,-0.781113863,-0.7812018394,-0.7813777924,-0.7813777924,-0.7812898159,-0.7813777924,-0.7813777924,-0.7812898159,-0.7812898159,-0.7812018394,-0.7812018394,-0.7810258865,-0.7809379101,-0.7810258865,-0.7812018394,-0.7812898159,-0.7813777924,-0.7812898159,-0.7810258865,-0.7808499336,-0.7807619572,-0.7806739807,-0.7805860043,-0.7804100513,-0.7806739807,-0.7826974392,-0.7851609588,-0.785600841,-0.7855128646,-0.7856888175,-0.7835772634,-0.778914392,-0.7738995552,-0.7716120481,-0.7711721659,-0.7710841894,-0.7710841894,-0.7720519304,-0.7741634846,-0.7769787908,-0.7799701095,-0.7826094627,-0.7844570875,-0.785600841,-0.7863046527,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7859527469,-0.7853369117,-0.784545064,-0.7832252979,-0.7813777924,-0.7791783214,-0.7768028378,-0.7747793198,-0.7730197906,-0.7717000246,-0.7702924013,-0.7713481188,-0.7775066495,-0.7838411927,-0.7859527469,-0.785600841,-0.7849849463,-0.7849849463,-0.7855128646,-0.7848969698,-0.783049345,-0.7814657688,-0.7810258865,-0.7809379101,-0.7809379101,-0.7812018394,-0.7812898159,-0.7813777924,-0.7814657688,-0.7816417217,-0.7817296982,-0.7819056511,-0.7819936275,-0.7819056511,-0.7817296982,-0.7815537453,-0.7813777924,-0.7812898159,-0.7813777924,-0.7815537453,-0.7817296982,-0.7817296982,-0.7815537453,-0.7815537453,-0.7815537453,-0.7814657688,-0.7813777924,-0.7812898159,-0.781113863,-0.7812898159,-0.7815537453,-0.7816417217,-0.7812898159,-0.7806739807,-0.7802340984,-0.7809379101,-0.7818176746,-0.7818176746,-0.7812898159,-0.7809379101,-0.7807619572,-0.7808499336,-0.7808499336,-0.7807619572,-0.7806739807,-0.7806739807,-0.7806739807,-0.7808499336,-0.7809379101,-0.7807619572,-0.7803220749,-0.7804100513,-0.7807619572,-0.7807619572,-0.7806739807,-0.7804980278,-0.7804100513,-0.7807619572,-0.781113863,-0.7808499336,-0.7804100513,-0.7804980278,-0.7809379101,-0.781113863,-0.7810258865,-0.7807619572,-0.781113863,-0.7819056511,-0.7821695805,-0.7823455334,-0.7819056511,-0.7813777924,-0.7813777924,-0.7812898159,-0.7812018394,-0.781113863,-0.7806739807,-0.7803220749,-0.7804100513,-0.7805860043,-0.7806739807,-0.7807619572,-0.7808499336,-0.7807619572,-0.7806739807,-0.7806739807,-0.7805860043,-0.7804980278,-0.781113863,-0.7819056511,-0.7824335098,-0.7828733921,-0.7831373215,-0.783313334,-0.783313334,-0.7829613686,-0.7818176746,-0.7804100513,-0.7800580859,-0.7806739807,-0.7812898159,-0.7812898159,-0.7810258865,-0.7806739807,-0.7804980278,-0.7805860043,-0.7806739807,-0.7808499336,-0.7810258865,-0.7812018394,-0.7813777924,-0.7813777924,-0.7812898159,-0.7813777924,-0.7814657688,-0.7813777924,-0.7813777924,-0.7813777924,-0.7812898159,-0.7812018394,-0.7810258865,-0.7808499336,-0.7809379101,-0.7810258865,-0.7812018394,-0.7812898159,-0.7812898159,-0.781113863,-0.7809379101,-0.7806739807,-0.7805860043,-0.7805860043,-0.7802340984,-0.781113863,-0.7840172052,-0.785600841,-0.7852489352,-0.7853369117,-0.7851609588,-0.7816417217,-0.7757471204,-0.7714360952,-0.7705563307,-0.7709082365,-0.7710841894,-0.7714360952,-0.7726678848,-0.7749552727,-0.7776826024,-0.7804100513,-0.7829613686,-0.7847210169,-0.785776794,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7859527469,-0.7853369117,-0.7843691111,-0.7829613686,-0.7813777924,-0.7793542743,-0.7768028378,-0.7744274139,-0.7727558613,-0.7717880011,-0.7709082365,-0.7707322836,-0.7749552727,-0.7816417217,-0.7854248881,-0.785776794,-0.7850729823,-0.7846330404,-0.7853369117,-0.785600841,-0.7844570875,-0.7826094627,-0.7813777924,-0.7809379101,-0.7808499336,-0.781113863,-0.7812898159,-0.7814657688,-0.7815537453,-0.7816417217,-0.7818176746,-0.7819936275,-0.7819056511,-0.7818176746,-0.7817296982,-0.7816417217,-0.7814657688,-0.7814657688,-0.7816417217,-0.7818176746,-0.7819936275,-0.7819936275,-0.7818176746,-0.7817296982,-0.7817296982,-0.7816417217,-0.7814657688,-0.7812898159,-0.7810258865,-0.781113863,-0.7814657688,-0.7815537453,-0.7814657688,-0.7810258865,-0.7804100513,-0.7805860043,-0.7814657688,-0.7817296982,-0.7812898159,-0.7810258865,-0.7810258865,-0.7809379101,-0.7808499336,-0.7807619572,-0.7807619572,-0.7807619572,-0.7807619572,-0.7806739807,-0.7807619572,-0.7806739807,-0.7803220749,-0.7802340984,-0.7804980278,-0.7806739807,-0.7808499336,-0.7806739807,-0.7804100513,-0.7806739807,-0.7810258865,-0.7809379101,-0.7805860043,-0.7804980278,-0.7807619572,-0.7812018394,-0.7812898159,-0.7812898159,-0.7818176746,-0.7819936275,-0.7817296982,-0.782081604,-0.7819936275,-0.7813777924,-0.7812018394,-0.781113863,-0.781113863,-0.7812018394,-0.7806739807,-0.7803220749,-0.7803220749,-0.7804100513,-0.7805860043,-0.7807619572,-0.7809379101,-0.7809379101,-0.7807619572,-0.7806739807,-0.7807619572,-0.7806739807,-0.7809379101,-0.7816417217,-0.7821695805,-0.7826094627,-0.783049345,-0.7832252979,-0.7831373215,-0.7826094627,-0.7812898159,-0.780146122,-0.7803220749,-0.7810258865,-0.7813777924,-0.7812018394,-0.7809379101,-0.7805860043,-0.7804980278,-0.7805860043,-0.7807619572,-0.7809379101,-0.781113863,-0.7813777924,-0.7815537453,-0.7815537453,-0.7814657688,-0.7814657688,-0.7814657688,-0.7812898159,-0.7812898159,-0.7812898159,-0.7812018394,-0.7812018394,-0.781113863,-0.7810258865,-0.7809379101,-0.7808499336,-0.7809379101,-0.7810258865,-0.7810258865,-0.7810258865,-0.7809379101,-0.7806739807,-0.7805860043,-0.7804100513,-0.7804100513,-0.7822575569,-0.7850729823,-0.7856888175,-0.7851609588,-0.7854248881,-0.7842811346,-0.7792662978,-0.7730197906,-0.7698524594,-0.7699404359,-0.7701163888,-0.7705563307,-0.7716120481,-0.77328372,-0.7753952146,-0.7778585553,-0.7805860043,-0.783049345,-0.7848089933,-0.785776794,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863046527,-0.7859527469,-0.7851609588,-0.7841051817,-0.7826094627,-0.7807619572,-0.7786504626,-0.7763629556,-0.7740755081,-0.7724918127,-0.7717000246,-0.7713481188,-0.770996213,-0.7731077671,-0.778914392,-0.7842811346,-0.7856888175,-0.7853369117,-0.784545064,-0.7848089933,-0.7855128646,-0.7855128646,-0.7842811346,-0.7823455334,-0.7812018394,-0.7809379101,-0.7810258865,-0.7812018394,-0.7814657688,-0.7816417217,-0.7816417217,-0.7818176746,-0.782081604,-0.7819056511,-0.7818176746,-0.7818176746,-0.7817296982,-0.7815537453,-0.7815537453,-0.7817296982,-0.7819936275,-0.782081604,-0.7819936275,-0.7819936275,-0.7819056511,-0.7818176746,-0.7816417217,-0.7815537453,-0.7814657688,-0.7812018394,-0.781113863,-0.7812018394,-0.7813777924,-0.7814657688,-0.7813777924,-0.7806739807,-0.7804100513,-0.7809379101,-0.7812898159,-0.781113863,-0.7810258865,-0.7810258865,-0.7810258865,-0.7809379101,-0.7808499336,-0.7807619572,-0.7807619572,-0.7807619572,-0.7806739807,-0.7807619572,-0.7806739807,-0.7803220749,-0.7802340984,-0.7804100513,-0.7806739807,-0.7809379101,-0.7808499336,-0.7805860043,-0.7804980278,-0.7805860043,-0.7809379101,-0.7810258865,-0.7810258865,-0.781113863,-0.7815537453,-0.7817296982,-0.7818176746,-0.782081604,-0.7818176746,-0.7817296982,-0.7822575569,-0.7819936275,-0.7812018394,-0.7810258865,-0.7810258865,-0.781113863,-0.7812018394,-0.7808499336,-0.7803220749,-0.780146122,-0.7802340984,-0.7804980278,-0.7807619572,-0.7810258865,-0.781113863,-0.7809379101,-0.7808499336,-0.7808499336,-0.7807619572,-0.7808499336,-0.7812898159,-0.7817296982,-0.7821695805,-0.7826974392,-0.7829613686,-0.7827854156,-0.782081604,-0.7806739807,-0.7799701095,-0.7805860043,-0.7812018394,-0.7812898159,-0.7810258865,-0.7808499336,-0.7805860043,-0.7805860043,-0.7807619572,-0.7807619572,-0.7808499336,-0.781113863,-0.7812898159,-0.7813777924,-0.7814657688,-0.7814657688,-0.7814657688,-0.7812898159,-0.7812018394,-0.7812898159,-0.7812898159,-0.7812018394,-0.7812018394,-0.7812018394,-0.781113863,-0.781113863,-0.7810258865,-0.7808499336,-0.7807619572,-0.7807619572,-0.7807619572,-0.7807619572,-0.7805860043,-0.7804980278,-0.7802340984,-0.7807619572,-0.7832252979,-0.785600841,-0.7855128646,-0.7853369117,-0.7855128646,-0.783049345,-0.7768908143,-0.7714360952,-0.7698524594,-0.7700284123,-0.7701163888,-0.7707322836,-0.7718759775,-0.7735476494,-0.775483191,-0.7780345082,-0.7809379101,-0.7832252979,-0.7848089933,-0.7858647704,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7859527469,-0.7850729823,-0.7837532163,-0.782081604,-0.7799701095,-0.7777705789,-0.7758350968,-0.7738995552,-0.7724038363,-0.7714360952,-0.7711721659,-0.7709082365,-0.7717880011,-0.776450932,-0.7826094627,-0.7853369117,-0.785600841,-0.7848089933,-0.7844570875,-0.7850729823,-0.785776794,-0.7854248881,-0.7835772634,-0.7816417217,-0.7809379101,-0.7809379101,-0.781113863,-0.7813777924,-0.7815537453,-0.7816417217,-0.7818176746,-0.7819936275,-0.7818176746,-0.7817296982,-0.7818176746,-0.7817296982,-0.7815537453,-0.7814657688,-0.7816417217,-0.7817296982,-0.7817296982,-0.7817296982,-0.7818176746,-0.7818176746,-0.7816417217,-0.7815537453,-0.7815537453,-0.7815537453,-0.7814657688,-0.7812018394,-0.7812018394,-0.7812898159,-0.7813777924,-0.7813777924,-0.7809379101,-0.7803220749,-0.7803220749,-0.7805860043,-0.7806739807,-0.7808499336,-0.7809379101,-0.7810258865,-0.7810258865,-0.7809379101,-0.7808499336,-0.7808499336,-0.7807619572,-0.7807619572,-0.7809379101,-0.7806739807,-0.7803220749,-0.7803220749,-0.7804100513,-0.7806739807,-0.7808499336,-0.7808499336,-0.7805860043,-0.7804100513,-0.7803220749,-0.7806739807,-0.7810258865,-0.781113863,-0.7813777924,-0.7819056511,-0.7821695805,-0.7822575569,-0.782081604,-0.7817296982,-0.7819056511,-0.7825214863,-0.7819056511,-0.7812018394,-0.781113863,-0.7810258865,-0.7810258865,-0.7812898159,-0.7810258865,-0.7804100513,-0.780146122,-0.7802340984,-0.7804980278,-0.7807619572,-0.7810258865,-0.781113863,-0.7809379101,-0.7809379101,-0.7808499336,-0.7807619572,-0.7807619572,-0.7809379101,-0.781113863,-0.7817296982,-0.7824335098,-0.7827854156,-0.7824335098,-0.7813777924,-0.780146122,-0.7799701095,-0.7808499336,-0.7812898159,-0.781113863,-0.7808499336,-0.7806739807,-0.7806739807,-0.7807619572,-0.7809379101,-0.7810258865,-0.781113863,-0.7812018394,-0.7812898159,-0.7813777924,-0.7814657688,-0.7814657688,-0.7814657688,-0.7813777924,-0.7812898159,-0.7812898159,-0.7812898159,-0.7812898159,-0.7812898159,-0.7812018394,-0.7810258865,-0.781113863,-0.7812018394,-0.7809379101,-0.7806739807,-0.7806739807,-0.7807619572,-0.7806739807,-0.7804980278,-0.7803220749,-0.7802340984,-0.7816417217,-0.7844570875,-0.785776794,-0.7852489352,-0.7854248881,-0.7853369117,-0.7812898159,-0.7746033669,-0.7705563307,-0.7702043653,-0.7702043653,-0.7702924013,-0.7707322836,-0.7717000246,-0.7734596729,-0.7756591439,-0.7783865333,-0.7812018394,-0.7834013104,-0.7848969698,-0.7858647704,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7860407233,-0.7850729823,-0.7838411927,-0.782081604,-0.7795302272,-0.7772427201,-0.775483191,-0.7737236023,-0.7721399069,-0.7711721659,-0.770996213,-0.7709082365,-0.7714360952,-0.7753072381,-0.7815537453,-0.7848969698,-0.7856888175,-0.7854248881,-0.7846330404,-0.7846330404,-0.7854248881,-0.7858647704,-0.7848969698,-0.7826974392,-0.7810258865,-0.7807619572,-0.7809379101,-0.7812018394,-0.7812898159,-0.7815537453,-0.7817296982,-0.7817296982,-0.7816417217,-0.7817296982,-0.7817296982,-0.7816417217,-0.7813777924,-0.7812898159,-0.7814657688,-0.7815537453,-0.7814657688,-0.7814657688,-0.7816417217,-0.7816417217,-0.7815537453,-0.7814657688,-0.7814657688,-0.7815537453,-0.7814657688,-0.7812898159,-0.781113863,-0.7812018394,-0.7812898159,-0.7812898159,-0.781113863,-0.7804980278,-0.7800580859,-0.780146122,-0.7804100513,-0.7806739807,-0.7808499336,-0.7810258865,-0.7810258865,-0.7809379101,-0.7809379101,-0.7809379101,-0.7807619572,-0.7807619572,-0.7809379101,-0.7807619572,-0.7804100513,-0.7804100513,-0.7804980278,-0.7805860043,-0.7807619572,-0.7807619572,-0.7806739807,-0.7804100513,-0.7804100513,-0.7806739807,-0.7807619572,-0.7807619572,-0.781113863,-0.7818176746,-0.7826094627,-0.7828733921,-0.7823455334,-0.7818176746,-0.7821695805,-0.7826094627,-0.7819056511,-0.781113863,-0.7808499336,-0.7808499336,-0.7809379101,-0.781113863,-0.7810258865,-0.7804980278,-0.780146122,-0.780146122,-0.7804100513,-0.7806739807,-0.7808499336,-0.7810258865,-0.7810258865,-0.7810258865,-0.7810258865,-0.7808499336,-0.7807619572,-0.7806739807,-0.7806739807,-0.7812898159,-0.7822575569,-0.7826974392,-0.7819936275,-0.7806739807,-0.779882133,-0.7803220749,-0.7809379101,-0.781113863,-0.7809379101,-0.7806739807,-0.7805860043,-0.7807619572,-0.7809379101,-0.7810258865,-0.781113863,-0.7812018394,-0.7812898159,-0.7812898159,-0.7812898159,-0.7812898159,-0.7812898159,-0.7813777924,-0.7814657688,-0.7813777924,-0.7812898159,-0.7812898159,-0.7813777924,-0.7813777924,-0.781113863,-0.7809379101,-0.7809379101,-0.7809379101,-0.7810258865,-0.7810258865,-0.7807619572,-0.7806739807,-0.7805860043,-0.7804100513,-0.780146122,-0.7806739807,-0.7831373215,-0.7854248881,-0.7856888175,-0.7852489352,-0.785600841,-0.7843691111,-0.7787384391,-0.7724918127,-0.7702043653,-0.7703803778,-0.7702043653,-0.7702043653,-0.7706443071,-0.7715240717,-0.7731957436,-0.7757471204,-0.7787384391,-0.7815537453,-0.7836652398,-0.7850729823,-0.7860407233,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863046527,-0.7858647704,-0.7849849463,-0.7839292288,-0.7824335098,-0.779882133,-0.7770667672,-0.7749552727,-0.7735476494,-0.7722278833,-0.7712601423,-0.7709082365,-0.770996213,-0.7714360952,-0.7748672962,-0.7812018394,-0.7847210169,-0.7855128646,-0.785776794,-0.7851609588,-0.784545064,-0.7848089933,-0.7855128646,-0.785600841,-0.7842811346,-0.7819936275,-0.7809379101,-0.7809379101,-0.7810258865,-0.7812018394,-0.7814657688,-0.7816417217,-0.7816417217,-0.7816417217,-0.7816417217,-0.7816417217,-0.7815537453,-0.7813777924,-0.7812898159,-0.7812898159,-0.7813777924,-0.7812898159,-0.7814657688,-0.7815537453,-0.7816417217,-0.7815537453,-0.7813777924,-0.7812898159,-0.7813777924,-0.7815537453,-0.7813777924,-0.7812018394,-0.7812018394,-0.7812018394,-0.7812018394,-0.7813777924,-0.7809379101,-0.7802340984,-0.7800580859,-0.7804100513,-0.7806739807,-0.7807619572,-0.7810258865,-0.781113863,-0.7809379101,-0.7808499336,-0.7810258865,-0.7808499336,-0.7806739807,-0.7808499336,-0.7808499336,-0.7805860043,-0.7804100513,-0.7804100513,-0.7804980278,-0.7805860043,-0.7806739807,-0.7807619572,-0.7807619572,-0.7807619572,-0.7807619572,-0.7806739807,-0.7805860043,-0.7808499336,-0.7817296982,-0.7828733921,-0.7834013104,-0.7826094627,-0.7819056511,-0.7821695805,-0.7823455334,-0.7817296982,-0.7809379101,-0.7806739807,-0.7806739807,-0.7808499336,-0.781113863,-0.781113863,-0.7805860043,-0.780146122,-0.7800580859,-0.7803220749,-0.7805860043,-0.7807619572,-0.7809379101,-0.781113863,-0.7812018394,-0.781113863,-0.7808499336,-0.7807619572,-0.7805860043,-0.7804980278,-0.7809379101,-0.7818176746,-0.7823455334,-0.7812898159,-0.779882133,-0.7797941566,-0.7806739807,-0.781113863,-0.7810258865,-0.7807619572,-0.7806739807,-0.7806739807,-0.7808499336,-0.781113863,-0.781113863,-0.7810258865,-0.781113863,-0.781113863,-0.781113863,-0.7812018394,-0.7812018394,-0.7812018394,-0.7812898159,-0.7812898159,-0.7812898159,-0.7812898159,-0.7813777924,-0.7814657688,-0.7813777924,-0.781113863,-0.7809379101,-0.7809379101,-0.7808499336,-0.7810258865,-0.7812898159,-0.7810258865,-0.7806739807,-0.7805860043,-0.7804980278,-0.7804980278,-0.7819936275,-0.784545064,-0.785776794,-0.7854248881,-0.7854248881,-0.7854248881,-0.7825214863,-0.7758350968,-0.7709082365,-0.7702924013,-0.7705563307,-0.7702924013,-0.7704683542,-0.770996213,-0.7717880011,-0.7734596729,-0.7761870027,-0.7792662978,-0.7819936275,-0.7838411927,-0.7851609588,-0.7859527469,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863046527,-0.785776794,-0.7848969698,-0.7838411927,-0.7826094627,-0.7804100513,-0.7771547437,-0.7746033669,-0.7733716965,-0.7723158598,-0.7711721659,-0.7706443071,-0.7707322836,-0.7710841894,-0.7738115788,-0.7797061801,-0.7840172052,-0.7851609588,-0.785776794,-0.7856888175,-0.7847210169,-0.7843691111,-0.7847210169,-0.7853369117,-0.7852489352,-0.7834892869,-0.7814657688,-0.7808499336,-0.7809379101,-0.781113863,-0.7813777924,-0.7815537453,-0.7816417217,-0.7816417217,-0.7816417217,-0.7815537453,-0.7814657688,-0.7813777924,-0.7813777924,-0.7813777924,-0.7813777924,-0.7813777924,-0.7813777924,-0.7813777924,-0.7814657688,-0.7813777924,-0.7813777924,-0.7812898159,-0.7812898159,-0.7814657688,-0.7814657688,-0.7812898159,-0.781113863,-0.7812018394,-0.7812018394,-0.7813777924,-0.7812018394,-0.7805860043,-0.780146122,-0.7804100513,-0.7806739807,-0.7807619572,-0.7809379101,-0.781113863,-0.7809379101,-0.7807619572,-0.7809379101,-0.7808499336,-0.7806739807,-0.7806739807,-0.7808499336,-0.7807619572,-0.7807619572,-0.7806739807,-0.7805860043,-0.7805860043,-0.7805860043,-0.7809379101,-0.7812898159,-0.781113863,-0.7807619572,-0.7805860043,-0.7805860043,-0.7808499336,-0.7819056511,-0.7831373215,-0.7837532163,-0.7828733921,-0.7819936275,-0.7818176746,-0.7817296982,-0.7813777924,-0.7809379101,-0.7805860043,-0.7804980278,-0.7807619572,-0.7810258865,-0.7812018394,-0.7808499336,-0.7803220749,-0.780146122,-0.7803220749,-0.7804980278,-0.7805860043,-0.7808499336,-0.7812898159,-0.7813777924,-0.781113863,-0.7809379101,-0.7806739807,-0.7804980278,-0.7804100513,-0.7804980278,-0.781113863,-0.7814657688,-0.7803220749,-0.7792662978,-0.7799701095,-0.7810258865,-0.7812018394,-0.7810258865,-0.7808499336,-0.7807619572,-0.7807619572,-0.7808499336,-0.781113863,-0.781113863,-0.7809379101,-0.7809379101,-0.7808499336,-0.7807619572,-0.7809379101,-0.7810258865,-0.781113863,-0.7812018394,-0.781113863,-0.781113863,-0.781113863,-0.7812018394,-0.7812898159,-0.7812898159,-0.7812018394,-0.7810258865,-0.7809379101,-0.7810258865,-0.7810258865,-0.7812018394,-0.7812018394,-0.7810258865,-0.7808499336,-0.7808499336,-0.7815537453,-0.7837532163,-0.7855128646,-0.785600841,-0.7853369117,-0.785600841,-0.7847210169,-0.7797941566,-0.7728438377,-0.7702043653,-0.7704683542,-0.7704683542,-0.7702924013,-0.7705563307,-0.7712601423,-0.7723158598,-0.7738995552,-0.7766268849,-0.779882133,-0.7822575569,-0.7837532163,-0.7849849463,-0.7858647704,-0.7862166762,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863046527,-0.7862166762,-0.785776794,-0.7848089933,-0.7837532163,-0.7824335098,-0.7800580859,-0.7770667672,-0.7746033669,-0.7731957436,-0.7721399069,-0.7710841894,-0.7703803778,-0.7702924013,-0.7704683542,-0.7723158598,-0.777418673,-0.7826094627,-0.7848089933,-0.7855128646,-0.7858647704,-0.7850729823,-0.7841931581,-0.7840172052,-0.784545064,-0.7852489352,-0.7847210169,-0.7824335098,-0.781113863,-0.7810258865,-0.781113863,-0.7812018394,-0.7813777924,-0.7815537453,-0.7816417217,-0.7816417217,-0.7815537453,-0.7814657688,-0.7814657688,-0.7815537453,-0.7815537453,-0.7814657688,-0.7813777924,-0.7814657688,-0.7812898159,-0.781113863,-0.781113863,-0.7812018394,-0.781113863,-0.781113863,-0.7812898159,-0.7815537453,-0.7813777924,-0.7812018394,-0.7812018394,-0.7812018394,-0.7812018394,-0.7812898159,-0.7809379101,-0.7804100513,-0.7803220749,-0.7805860043,-0.7806739807,-0.7808499336,-0.781113863,-0.7810258865,-0.7808499336,-0.7808499336,-0.7808499336,-0.7806739807,-0.7805860043,-0.7806739807,-0.7807619572,-0.7808499336,-0.7808499336,-0.7808499336,-0.7807619572,-0.7807619572,-0.7810258865,-0.7813777924,-0.7814657688,-0.7812898159,-0.7809379101,-0.7806739807,-0.7808499336,-0.7819936275,-0.7834013104,-0.7841051817,-0.7832252979,-0.782081604,-0.7815537453,-0.7812898159,-0.7812018394,-0.7809379101,-0.7806739807,-0.7805860043,-0.7805860043,-0.7806739807,-0.7809379101,-0.7810258865,-0.7807619572,-0.7804100513,-0.7804100513,-0.7805860043,-0.7805860043,-0.7807619572,-0.7812018394,-0.7813777924,-0.781113863,-0.7809379101,-0.7807619572,-0.7804980278,-0.7803220749,-0.7802340984,-0.7804100513,-0.7802340984,-0.7794422507,-0.7793542743,-0.7804100513,-0.781113863,-0.7812018394,-0.7810258865,-0.7807619572,-0.7806739807,-0.7807619572,-0.7808499336,-0.7809379101,-0.7809379101,-0.7809379101,-0.7808499336,-0.7806739807,-0.7805860043,-0.7806739807,-0.7807619572,-0.7809379101,-0.7812018394,-0.7812018394,-0.781113863,-0.7810258865,-0.7810258865,-0.7812018394,-0.7812018394,-0.7812018394,-0.781113863,-0.7810258865,-0.7810258865,-0.7810258865,-0.7810258865,-0.7809379101,-0.781113863,-0.781113863,-0.7815537453,-0.7832252979,-0.7852489352,-0.7856888175,-0.7852489352,-0.7854248881,-0.7856888175,-0.7835772634,-0.7772427201,-0.7711721659,-0.7698524594,-0.7702043653,-0.7701163888,-0.7702924013,-0.7704683542,-0.7710841894,-0.7724038363,-0.7741634846,-0.7767148614,-0.779882133,-0.7821695805,-0.7835772634,-0.7848969698,-0.7858647704,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7862166762,-0.7863046527,-0.7862166762,-0.785776794,-0.7848089933,-0.7836652398,-0.7819936275,-0.7791783214,-0.776450932,-0.7744274139,-0.7728438377,-0.7717880011,-0.770996213,-0.7704683542,-0.7702924013,-0.7702924013,-0.7715240717,-0.7755711675,-0.7807619572,-0.7841051817,-0.7852489352,-0.7858647704,-0.785600841,-0.784545064,-0.7838411927,-0.7837532163,-0.7846330404,-0.7853369117,-0.7837532163,-0.7818176746,-0.7810258865,-0.7810258865,-0.7810258865,-0.781113863,-0.7814657688,-0.7816417217,-0.7815537453,-0.7815537453,-0.7816417217,-0.7817296982,-0.7816417217,-0.7814657688,-0.7813777924,-0.7814657688,-0.7814657688,-0.7812898159,-0.7810258865,-0.7809379101,-0.7809379101,-0.7808499336,-0.7809379101,-0.7812018394,-0.7815537453,-0.7815537453,-0.7812018394,-0.7812018394,-0.7812018394,-0.781113863,-0.781113863,-0.7810258865,-0.7805860043,-0.7803220749,-0.7804980278,-0.7806739807,-0.7808499336,-0.7810258865,-0.7810258865,-0.7809379101,-0.7808499336,-0.7808499336,-0.7806739807,-0.7806739807,-0.7808499336,-0.7808499336,-0.7806739807,-0.7806739807,-0.7807619572,-0.7807619572,-0.7806739807,-0.7807619572,-0.781113863,-0.7815537453,-0.7815537453,-0.7813777924,-0.7812898159,-0.7815537453,-0.7825214863,-0.7840172052,-0.7844570875,-0.7832252979,-0.7819056511,-0.7812018394,-0.7809379101,-0.7808499336,-0.7807619572,-0.7807619572,-0.7808499336,-0.7806739807,-0.7805860043,-0.7808499336,-0.7812018394,-0.781113863,-0.7807619572,-0.7805860043,-0.7806739807,-0.7807619572,-0.7808499336,-0.7810258865,-0.781113863,-0.7809379101,-0.7808499336,-0.7808499336,-0.7805860043,-0.7803220749,-0.780146122,-0.7797941566,-0.7793542743,-0.7791783214,-0.779882133,-0.7808499336,-0.7812018394,-0.781113863,-0.7809379101,-0.7806739807,-0.7806739807,-0.7808499336,-0.7810258865,-0.781113863,-0.781113863,-0.781113863,-0.7809379101,-0.7806739807,-0.7806739807,-0.7807619572,-0.7807619572,-0.7809379101,-0.7810258865,-0.781113863,-0.781113863,-0.781113863,-0.7812018394,-0.7812018394,-0.781113863,-0.781113863,-0.781113863,-0.7810258865,-0.7809379101,-0.7810258865,-0.7809379101,-0.7808499336,-0.7809379101,-0.7812898159,-0.7826974392,-0.7848089933,-0.785776794,-0.7854248881,-0.7851609588,-0.7856888175,-0.7853369117,-0.7817296982,-0.7749552727,-0.7706443071,-0.7700284123,-0.7700284123,-0.7700284123,-0.7702043653,-0.7702924013,-0.7706443071,-0.7721399069,-0.7743394375,-0.7767148614,-0.7792662978,-0.7818176746,-0.7836652398,-0.7848969698,-0.7858647704,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.785776794,-0.7847210169,-0.7834892869,-0.7818176746,-0.7790023685,-0.7761870027,-0.774251461,-0.7728438377,-0.7717000246,-0.7711721659,-0.7709082365,-0.7707322836,-0.7709082365,-0.7718759775,-0.7746033669,-0.7787384391,-0.7824335098,-0.7847210169,-0.785776794,-0.7859527469,-0.7852489352,-0.7843691111,-0.7838411927,-0.7843691111,-0.7854248881,-0.7848969698,-0.7829613686,-0.7812898159,-0.7808499336,-0.7808499336,-0.7809379101,-0.7812898159,-0.7815537453,-0.7815537453,-0.7816417217,-0.7816417217,-0.7816417217,-0.7815537453,-0.7814657688,-0.7814657688,-0.7814657688,-0.7813777924,-0.7812018394,-0.7810258865,-0.7809379101,-0.7809379101,-0.7808499336,-0.7808499336,-0.781113863,-0.7814657688,-0.7815537453,-0.7812898159,-0.7812018394,-0.7812018394,-0.781113863,-0.781113863,-0.781113863,-0.7807619572,-0.7803220749,-0.7804980278,-0.7807619572,-0.7809379101,-0.781113863,-0.781113863,-0.781113863,-0.7810258865,-0.7808499336,-0.7808499336,-0.7808499336,-0.7808499336,-0.7809379101,-0.7808499336,-0.7808499336,-0.7808499336,-0.7807619572,-0.7806739807,-0.7806739807,-0.7808499336,-0.7812018394,-0.7812898159,-0.7813777924,-0.7816417217,-0.7819936275,-0.7829613686,-0.7842811346,-0.784545064,-0.783049345,-0.7814657688,-0.7808499336,-0.7805860043,-0.7804980278,-0.7804980278,-0.7807619572,-0.781113863,-0.7809379101,-0.7806739807,-0.7808499336,-0.7814657688,-0.7819056511,-0.7815537453,-0.7806739807,-0.7805860043,-0.7808499336,-0.7810258865,-0.781113863,-0.781113863,-0.7809379101,-0.7808499336,-0.7808499336,-0.7806739807,-0.7804980278,-0.780146122,-0.7797061801,-0.7794422507,-0.7797941566,-0.7805860043,-0.781113863,-0.781113863,-0.7809379101,-0.7807619572,-0.7806739807,-0.7807619572,-0.7808499336,-0.7810258865,-0.7812018394,-0.7812898159,-0.7812898159,-0.7812018394,-0.7809379101,-0.7809379101,-0.7809379101,-0.7809379101,-0.7808499336,-0.7808499336,-0.7809379101,-0.7810258865,-0.781113863,-0.7812898159,-0.7812898159,-0.781113863,-0.781113863,-0.781113863,-0.7810258865,-0.7809379101,-0.7809379101,-0.7808499336,-0.7808499336,-0.7809379101,-0.7819936275,-0.7841051817,-0.7856888175,-0.7855128646,-0.7849849463,-0.7852489352,-0.7858647704,-0.784545064,-0.7793542743,-0.7726678848,-0.7702043653,-0.7700284123,-0.7699404359,-0.7702043653,-0.7704683542,-0.7703803778,-0.7707322836,-0.7724918127,-0.7746033669,-0.7766268849,-0.7791783214,-0.7818176746,-0.7836652398,-0.7848969698,-0.7858647704,-0.7862166762,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7858647704,-0.7846330404,-0.7832252979,-0.7817296982,-0.7792662978,-0.7761870027,-0.7738995552,-0.7724038363,-0.7713481188,-0.7709082365,-0.770996213,-0.7711721659,-0.7713481188,-0.7718759775,-0.7737236023,-0.7766268849,-0.7797061801,-0.7829613686,-0.7851609588,-0.7859527469,-0.785776794,-0.7849849463,-0.7844570875,-0.7844570875,-0.7851609588,-0.7855128646,-0.7842811346,-0.782081604,-0.7808499336,-0.7807619572,-0.7809379101,-0.7810258865,-0.7812898159,-0.7814657688,-0.7816417217,-0.7814657688,-0.7813777924,-0.7813777924,-0.7812898159,-0.7812898159,-0.7812898159,-0.7812898159,-0.7810258865,-0.7809379101,-0.7809379101,-0.7809379101,-0.7809379101,-0.7810258865,-0.7812018394,-0.7814657688,-0.7815537453,-0.7813777924,-0.781113863,-0.7810258865,-0.781113863,-0.781113863,-0.781113863,-0.7807619572,-0.7804100513,-0.7804980278,-0.7807619572,-0.7810258865,-0.781113863,-0.781113863,-0.7812018394,-0.7812018394,-0.7810258865,-0.7809379101,-0.7809379101,-0.7809379101,-0.7809379101,-0.7809379101,-0.7810258865,-0.7810258865,-0.7808499336,-0.7807619572,-0.7806739807,-0.7807619572,-0.7810258865,-0.781113863,-0.7812018394,-0.7813777924,-0.7817296982,-0.7827854156,-0.7841931581,-0.7844570875,-0.7829613686,-0.7813777924,-0.7807619572,-0.7805860043,-0.7804980278,-0.7804980278,-0.7806739807,-0.7809379101,-0.7809379101,-0.7807619572,-0.7808499336,-0.7818176746,-0.7826094627,-0.7819056511,-0.7807619572,-0.7805860043,-0.7809379101,-0.781113863,-0.7810258865,-0.7809379101,-0.7809379101,-0.7809379101,-0.7808499336,-0.7805860043,-0.7803220749,-0.7800580859,-0.7797941566,-0.779882133,-0.7804100513,-0.7810258865,-0.7812018394,-0.7810258865,-0.7807619572,-0.7805860043,-0.7807619572,-0.7809379101,-0.7809379101,-0.7809379101,-0.7812018394,-0.7812898159,-0.7812018394,-0.7812018394,-0.7810258865,-0.7810258865,-0.781113863,-0.7810258865,-0.7809379101,-0.7808499336,-0.781113863,-0.781113863,-0.7809379101,-0.7810258865,-0.7812898159,-0.7812898159,-0.7812898159,-0.7812898159,-0.781113863,-0.7808499336,-0.7807619572,-0.7808499336,-0.7809379101,-0.7817296982,-0.7836652398,-0.7854248881,-0.7855128646,-0.784545064,-0.784545064,-0.7854248881,-0.7859527469,-0.783313334,-0.7769787908,-0.7710841894,-0.7698524594,-0.7698524594,-0.7696765065,-0.7701163888,-0.7704683542,-0.7704683542,-0.770996213,-0.7726678848,-0.7745153904,-0.7767148614,-0.7793542743,-0.7817296982,-0.7834892869,-0.7848969698,-0.7858647704,-0.7862166762,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7860407233,-0.7848089933,-0.783313334,-0.7818176746,-0.7793542743,-0.7760110497,-0.77328372,-0.771963954,-0.7714360952,-0.7711721659,-0.7712601423,-0.7713481188,-0.7710841894,-0.770996213,-0.7721399069,-0.774251461,-0.7770667672,-0.7807619572,-0.7841051817,-0.7856888175,-0.7858647704,-0.7852489352,-0.784545064,-0.7844570875,-0.7848089933,-0.7855128646,-0.7853369117,-0.7834892869,-0.7813777924,-0.7807619572,-0.7809379101,-0.7810258865,-0.7812018394,-0.7813777924,-0.7814657688,-0.7813777924,-0.7812898159,-0.7812018394,-0.7810258865,-0.7809379101,-0.7810258865,-0.781113863,-0.7810258865,-0.7809379101,-0.7808499336,-0.7808499336,-0.781113863,-0.7812898159,-0.7812898159,-0.7814657688,-0.7816417217,-0.7814657688,-0.781113863,-0.7809379101,-0.7809379101,-0.7810258865,-0.7810258865,-0.7807619572,-0.7804100513,-0.7804980278,-0.7808499336,-0.7809379101,-0.7809379101,-0.7810258865,-0.7810258865,-0.7809379101,-0.7809379101,-0.7808499336,-0.7809379101,-0.7810258865,-0.781113863,-0.7809379101,-0.7809379101,-0.7809379101,-0.7808499336,-0.7806739807,-0.7806739807,-0.7807619572,-0.7809379101,-0.7810258865,-0.7810258865,-0.7812018394,-0.7815537453,-0.7824335098,-0.7838411927,-0.7842811346,-0.7826974392,-0.7812018394,-0.7807619572,-0.7805860043,-0.7804980278,-0.7805860043,-0.7807619572,-0.7808499336,-0.7809379101,-0.7809379101,-0.7809379101,-0.7814657688,-0.7821695805,-0.7817296982,-0.7806739807,-0.7806739807,-0.781113863,-0.7810258865,-0.7808499336,-0.7808499336,-0.7809379101,-0.7809379101,-0.7808499336,-0.7804980278,-0.7802340984,-0.7799701095,-0.7799701095,-0.7803220749,-0.7807619572,-0.781113863,-0.781113863,-0.7809379101,-0.7806739807,-0.7805860043,-0.7807619572,-0.7810258865,-0.7810258865,-0.7810258865,-0.7812018394,-0.7812898159,-0.7812018394,-0.7812018394,-0.781113863,-0.781113863,-0.7812018394,-0.7812898159,-0.7812018394,-0.781113863,-0.7812018394,-0.7812018394,-0.781113863,-0.7809379101,-0.781113863,-0.7813777924,-0.7815537453,-0.7814657688,-0.781113863,-0.7808499336,-0.7808499336,-0.7808499336,-0.7813777924,-0.783049345,-0.7850729823,-0.785600841,-0.7846330404,-0.7839292288,-0.7846330404,-0.7856888175,-0.7855128646,-0.7816417217,-0.7748672962,-0.7703803778,-0.7699404359,-0.7699404359,-0.7698524594,-0.7700284123,-0.7700284123,-0.7702043653,-0.77082026,-0.7720519304,-0.7738995552,-0.7767148614,-0.7795302272,-0.7815537453,-0.783313334,-0.7849849463,-0.7859527469,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7861286998,-0.7850729823,-0.7835772634,-0.7822575569,-0.779882133,-0.7763629556,-0.7733716965,-0.7721399069,-0.771963954,-0.7717000246,-0.7712601423,-0.7709082365,-0.7705563307,-0.7704683542,-0.7712601423,-0.7731077671,-0.7753952146,-0.7784745097,-0.7823455334,-0.7848969698,-0.785776794,-0.7855128646,-0.7848089933,-0.784545064,-0.7848089933,-0.7852489352,-0.7856888175,-0.7849849463,-0.7826974392,-0.781113863,-0.7809379101,-0.781113863,-0.7812898159,-0.7813777924,-0.7813777924,-0.7812898159,-0.7812898159,-0.7812018394,-0.7810258865,-0.7808499336,-0.7806739807,-0.7808499336,-0.7812898159,-0.7812898159,-0.7809379101,-0.7809379101,-0.7812018394,-0.7813777924,-0.7814657688,-0.7814657688,-0.7815537453,-0.7815537453,-0.781113863,-0.7808499336,-0.7809379101,-0.7809379101,-0.7809379101,-0.7808499336,-0.7804980278,-0.7804980278,-0.7806739807,-0.7807619572,-0.7806739807,-0.7806739807,-0.7806739807,-0.7807619572,-0.7807619572,-0.7807619572,-0.7807619572,-0.7809379101,-0.7809379101,-0.7809379101,-0.7808499336,-0.7808499336,-0.7807619572,-0.7807619572,-0.7807619572,-0.7809379101,-0.7812018394,-0.7810258865,-0.7809379101,-0.7812018394,-0.7815537453,-0.7822575569,-0.7836652398,-0.7840172052,-0.7822575569,-0.7810258865,-0.7808499336,-0.7806739807,-0.7805860043,-0.7807619572,-0.7809379101,-0.7809379101,-0.7809379101,-0.781113863,-0.781113863,-0.781113863,-0.7813777924,-0.7813777924,-0.7807619572,-0.7806739807,-0.7810258865,-0.7810258865,-0.7808499336,-0.7808499336,-0.7808499336,-0.7809379101,-0.7808499336,-0.7804980278,-0.7802340984,-0.7800580859,-0.7802340984,-0.7807619572,-0.7810258865,-0.781113863,-0.7810258865,-0.7807619572,-0.7806739807,-0.7807619572,-0.7809379101,-0.7810258865,-0.781113863,-0.7812898159,-0.7812898159,-0.7812898159,-0.7812018394,-0.7812018394,-0.7812018394,-0.7812018394,-0.7812018394,-0.7812898159,-0.7813777924,-0.7812898159,-0.7812018394,-0.7812018394,-0.781113863,-0.7809379101,-0.781113863,-0.7813777924,-0.7814657688,-0.7814657688,-0.7812018394,-0.7809379101,-0.7808499336,-0.7809379101,-0.782081604,-0.7844570875,-0.785600841,-0.7853369117,-0.7842811346,-0.7841931581,-0.7852489352,-0.785776794,-0.7848969698,-0.7803220749,-0.7738995552,-0.7702043653,-0.7698524594,-0.7699404359,-0.7701163888,-0.7702043653,-0.7700284123,-0.7702043653,-0.7707322836,-0.7715240717,-0.7734596729,-0.7768908143,-0.779882133,-0.7816417217,-0.7834013104,-0.7850729823,-0.7859527469,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7861286998,-0.7853369117,-0.7837532163,-0.7823455334,-0.7807619572,-0.7775066495,-0.7738995552,-0.7721399069,-0.771963954,-0.7715240717,-0.77082026,-0.7705563307,-0.7703803778,-0.7703803778,-0.7711721659,-0.7727558613,-0.7745153904,-0.776450932,-0.7796182036,-0.7829613686,-0.7852489352,-0.785776794,-0.7853369117,-0.7850729823,-0.7848969698,-0.7848089933,-0.7852489352,-0.7855128646,-0.7841931581,-0.7819936275,-0.7810258865,-0.781113863,-0.781113863,-0.7812018394,-0.7812018394,-0.7812018394,-0.7812018394,-0.781113863,-0.7810258865,-0.7809379101,-0.7809379101,-0.7809379101,-0.7812018394,-0.7812898159,-0.7810258865,-0.7810258865,-0.7812898159,-0.7814657688,-0.7815537453,-0.7814657688,-0.7814657688,-0.7813777924,-0.781113863,-0.7808499336,-0.7808499336,-0.7808499336,-0.7809379101,-0.7810258865,-0.7807619572,-0.7804980278,-0.7805860043,-0.7806739807,-0.7805860043,-0.7804980278,-0.7804980278,-0.7806739807,-0.7807619572,-0.7808499336,-0.7809379101,-0.7809379101,-0.7809379101,-0.7809379101,-0.7809379101,-0.7809379101,-0.7809379101,-0.7809379101,-0.7808499336,-0.7810258865,-0.7812018394,-0.7810258865,-0.7809379101,-0.7810258865,-0.7812898159,-0.7823455334,-0.7836652398,-0.7835772634,-0.7817296982,-0.7809379101,-0.7809379101,-0.7808499336,-0.7808499336,-0.7809379101,-0.7809379101,-0.7810258865,-0.7810258865,-0.781113863,-0.7812018394,-0.7812898159,-0.7812018394,-0.7809379101,-0.7807619572,-0.7807619572,-0.7809379101,-0.7809379101,-0.7809379101,-0.7809379101,-0.7808499336,-0.7808499336,-0.7807619572,-0.7804100513,-0.780146122,-0.780146122,-0.7804980278,-0.7809379101,-0.781113863,-0.7809379101,-0.7807619572,-0.7806739807,-0.7808499336,-0.7810258865,-0.7812018394,-0.781113863,-0.7812018394,-0.7814657688,-0.7813777924,-0.7812018394,-0.781113863,-0.781113863,-0.781113863,-0.7810258865,-0.781113863,-0.7812898159,-0.7813777924,-0.7813777924,-0.7813777924,-0.7812898159,-0.7812018394,-0.781113863,-0.7812018394,-0.7813777924,-0.7812898159,-0.7812018394,-0.781113863,-0.7809379101,-0.7808499336,-0.7814657688,-0.7835772634,-0.7854248881,-0.7855128646,-0.7848089933,-0.7842811346,-0.7848089933,-0.7856888175,-0.7855128646,-0.7834013104,-0.7781224847,-0.7724918127,-0.7699404359,-0.769764483,-0.769764483,-0.7699404359,-0.7700284123,-0.7700284123,-0.7703803778,-0.77082026,-0.7713481188,-0.7733716965,-0.7769787908,-0.7800580859,-0.7819056511,-0.7834892869,-0.7850729823,-0.7860407233,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7861286998,-0.7862166762,-0.785600841,-0.7839292288,-0.7825214863,-0.7814657688,-0.7788264155,-0.7752192616,-0.7729318142,-0.771963954,-0.7712601423,-0.7707322836,-0.7705563307,-0.7704683542,-0.7704683542,-0.7710841894,-0.7724918127,-0.7738115788,-0.7746913433,-0.776450932,-0.7799701095,-0.7841051817,-0.7858647704,-0.7858647704,-0.7856888175,-0.7851609588,-0.7844570875,-0.7846330404,-0.7853369117,-0.7852489352,-0.7834013104,-0.7814657688,-0.7809379101,-0.7809379101,-0.7810258865,-0.7809379101,-0.7809379101,-0.7810258865,-0.7809379101,-0.7808499336,-0.7809379101,-0.7809379101,-0.781113863,-0.781113863,-0.7812018394,-0.7812898159,-0.7812898159,-0.7814657688,-0.7815537453,-0.7815537453,-0.7815537453,-0.7813777924,-0.7812898159,-0.7812018394,-0.7810258865,-0.7808499336,-0.7808499336,-0.7808499336,-0.781113863,-0.781113863,-0.7805860043,-0.7803220749,-0.7804100513,-0.7804980278,-0.7804980278,-0.7805860043,-0.7805860043,-0.7806739807,-0.7807619572,-0.7808499336,-0.7809379101,-0.7809379101,-0.7808499336,-0.7809379101,-0.781113863,-0.7810258865,-0.7809379101,-0.7810258865,-0.781113863,-0.7810258865,-0.7808499336,-0.7807619572,-0.7809379101,-0.7812898159,-0.7823455334,-0.7834892869,-0.783049345,-0.7813777924,-0.7809379101,-0.7810258865,-0.7809379101,-0.7809379101,-0.7809379101,-0.7809379101,-0.7810258865,-0.7810258865,-0.7810258865,-0.781113863,-0.7812898159,-0.7812018394,-0.781113863,-0.7810258865,-0.7810258865,-0.7809379101,-0.7808499336,-0.7808499336,-0.7808499336,-0.7807619572,-0.7807619572,-0.7805860043,-0.7803220749,-0.7802340984,-0.7804100513,-0.7807619572,-0.7810258865,-0.7810258865,-0.7808499336,-0.7806739807,-0.7808499336,-0.7810258865,-0.781113863,-0.781113863,-0.7812898159,-0.7813777924,-0.7814657688,-0.7814657688,-0.7812898159,-0.781113863,-0.781113863,-0.781113863,-0.7810258865,-0.7810258865,-0.7812018394,-0.7812898159,-0.7812898159,-0.7812898159,-0.7812898159,-0.7812898159,-0.7812018394,-0.7812018394,-0.7812018394,-0.781113863,-0.7809379101,-0.7810258865,-0.7809379101,-0.7812018394,-0.7829613686,-0.7850729823,-0.7856888175,-0.7851609588,-0.7843691111,-0.7842811346,-0.7851609588,-0.7858647704,-0.7849849463,-0.7804980278,-0.7738115788,-0.7702043653,-0.7696765065,-0.7696765065,-0.769764483,-0.7698524594,-0.7698524594,-0.7699404359,-0.7702924013,-0.7707322836,-0.7715240717,-0.7735476494,-0.7767148614,-0.7797061801,-0.7817296982,-0.7834892869,-0.7852489352,-0.7861286998,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.785776794,-0.7843691111,-0.7829613686,-0.7817296982,-0.7794422507,-0.7765389085,-0.7738115788,-0.771963954,-0.7710841894,-0.7709082365,-0.7707322836,-0.7707322836,-0.77082026,-0.7710841894,-0.771963954,-0.7727558613,-0.77328372,-0.774251461,-0.7769787908,-0.7815537453,-0.7849849463,-0.7859527469,-0.7860407233,-0.7855128646,-0.7846330404,-0.784545064,-0.7850729823,-0.785600841,-0.7848089933,-0.7827854156,-0.7812018394,-0.7809379101,-0.7809379101,-0.7808499336,-0.7809379101,-0.7810258865,-0.7808499336,-0.7807619572,-0.7807619572,-0.7808499336,-0.7810258865,-0.7812898159,-0.7814657688,-0.7814657688,-0.7814657688,-0.7816417217,-0.7817296982,-0.7815537453,-0.7816417217,-0.7815537453,-0.7812898159,-0.7812018394,-0.781113863,-0.7810258865,-0.7809379101,-0.7808499336,-0.7809379101,-0.781113863,-0.7808499336,-0.7803220749,-0.780146122,-0.7802340984,-0.7804980278,-0.7805860043,-0.7805860043,-0.7807619572,-0.7808499336,-0.7809379101,-0.7809379101,-0.7809379101,-0.7809379101,-0.7809379101,-0.7809379101,-0.7809379101,-0.7808499336,-0.7810258865,-0.7810258865,-0.7808499336,-0.7806739807,-0.7807619572,-0.7810258865,-0.7812018394,-0.7822575569,-0.7832252979,-0.7825214863,-0.7812018394,-0.7810258865,-0.7810258865,-0.7806739807,-0.7808499336,-0.781113863,-0.7812018394,-0.781113863,-0.781113863,-0.7810258865,-0.781113863,-0.7812018394,-0.7812018394,-0.7812018394,-0.7812898159,-0.7812898159,-0.7810258865,-0.7808499336,-0.7807619572,-0.7808499336,-0.7808499336,-0.7805860043,-0.7804100513,-0.7803220749,-0.7803220749,-0.7805860043,-0.7809379101,-0.781113863,-0.7810258865,-0.7808499336,-0.7808499336,-0.7810258865,-0.7812018394,-0.7812018394,-0.781113863,-0.7812898159,-0.7813777924,-0.7813777924,-0.7813777924,-0.7812898159,-0.7812018394,-0.781113863,-0.781113863,-0.7810258865,-0.781113863,-0.7812898159,-0.7812898159,-0.781113863,-0.7810258865,-0.7810258865,-0.781113863,-0.7812018394,-0.781113863,-0.781113863,-0.7810258865,-0.7809379101,-0.7810258865,-0.7812898159,-0.7825214863,-0.784545064,-0.785600841,-0.7855128646,-0.7848089933,-0.7841931581,-0.784545064,-0.7855128646,-0.785776794,-0.7834892869,-0.7771547437,-0.7711721659,-0.7694125772,-0.7695885301,-0.7695885301,-0.7698524594,-0.7698524594,-0.769764483,-0.7699404359,-0.7702043653,-0.7705563307,-0.7715240717,-0.7737236023,-0.7768028378,-0.7797941566,-0.7818176746,-0.7837532163,-0.7854248881,-0.7862166762,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7860407233,-0.7848969698,-0.7834892869,-0.7819936275,-0.7796182036,-0.7769787908,-0.7745153904,-0.7725797892,-0.7717000246,-0.7715240717,-0.7713481188,-0.7712601423,-0.7710841894,-0.770996213,-0.7712601423,-0.7716120481,-0.7721399069,-0.7728438377,-0.7740755081,-0.7776826024,-0.7825214863,-0.7852489352,-0.7859527469,-0.7858647704,-0.7851609588,-0.7848089933,-0.7848969698,-0.7853369117,-0.785600841,-0.7846330404,-0.7826974392,-0.7813777924,-0.7809379101,-0.7808499336,-0.7809379101,-0.7809379101,-0.7809379101,-0.7810258865,-0.781113863,-0.7812018394,-0.7812898159,-0.7814657688,-0.7815537453,-0.7814657688,-0.7815537453,-0.7817296982,-0.7818176746,-0.7816417217,-0.7815537453,-0.7815537453,-0.7813777924,-0.7812018394,-0.7812018394,-0.781113863,-0.7809379101,-0.7807619572,-0.7808499336,-0.7810258865,-0.7810258865,-0.7805860043,-0.7800580859,-0.7799701095,-0.780146122,-0.7803220749,-0.7804100513,-0.7806739807,-0.7809379101,-0.7810258865,-0.7810258865,-0.7810258865,-0.7810258865,-0.7810258865,-0.7809379101,-0.7808499336,-0.7808499336,-0.7809379101,-0.7808499336,-0.7806739807,-0.7806739807,-0.7809379101,-0.7810258865,-0.781113863,-0.7821695805,-0.7829613686,-0.782081604,-0.7809379101,-0.7809379101,-0.7809379101,-0.7806739807,-0.7809379101,-0.7813777924,-0.7815537453,-0.7814657688,-0.7813777924,-0.7812018394,-0.7812018394,-0.7812898159,-0.7812898159,-0.7812898159,-0.7813777924,-0.7812898159,-0.781113863,-0.7808499336,-0.7808499336,-0.7808499336,-0.7807619572,-0.7804980278,-0.7803220749,-0.7804100513,-0.7804980278,-0.7807619572,-0.7810258865,-0.7810258865,-0.7810258865,-0.7809379101,-0.7809379101,-0.7812018394,-0.7814657688,-0.7813777924,-0.7812898159,-0.7812898159,-0.7812898159,-0.7812018394,-0.7812018394,-0.7812018394,-0.7812018394,-0.7810258865,-0.7809379101,-0.7809379101,-0.781113863,-0.7812898159,-0.7812018394,-0.781113863,-0.7810258865,-0.7809379101,-0.7810258865,-0.781113863,-0.781113863,-0.7809379101,-0.7808499336,-0.7808499336,-0.7812898159,-0.7824335098,-0.7843691111,-0.785600841,-0.785600841,-0.7849849463,-0.7844570875,-0.784545064,-0.7852489352,-0.785776794,-0.7848969698,-0.7804980278,-0.7737236023,-0.7699404359,-0.7695005536,-0.7695005536,-0.7695005536,-0.769764483,-0.7696765065,-0.7695885301,-0.769764483,-0.7701163888,-0.7705563307,-0.7718759775,-0.7743394375,-0.7775066495,-0.7802340984,-0.7821695805,-0.7841051817,-0.785600841,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863046527,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7861286998,-0.7853369117,-0.7839292288,-0.7825214863,-0.7802340984,-0.7776826024,-0.7756591439,-0.7741634846,-0.7729318142,-0.7722278833,-0.7717880011,-0.7713481188,-0.770996213,-0.7707322836,-0.7709082365,-0.7712601423,-0.7713481188,-0.7716120481,-0.7723158598,-0.7745153904,-0.7795302272,-0.7839292288,-0.785600841,-0.7859527469,-0.7858647704,-0.7852489352,-0.7847210169,-0.7849849463,-0.7856888175,-0.785776794,-0.7848089933,-0.7829613686,-0.7814657688,-0.7807619572,-0.7808499336,-0.781113863,-0.7812018394,-0.7812898159,-0.7813777924,-0.7815537453,-0.7815537453,-0.7815537453,-0.7815537453,-0.7816417217,-0.7817296982,-0.7818176746,-0.7818176746,-0.7818176746,-0.7816417217,-0.7816417217,-0.7815537453,-0.7813777924,-0.7812018394,-0.7812018394,-0.7810258865,-0.7808499336,-0.7808499336,-0.7809379101,-0.7810258865,-0.7809379101,-0.7803220749,-0.7797941566,-0.7797061801,-0.779882133,-0.7802340984,-0.7805860043,-0.7808499336,-0.7809379101,-0.781113863,-0.7810258865,-0.7810258865,-0.7812018394,-0.781113863,-0.7810258865,-0.7810258865,-0.7809379101,-0.7808499336,-0.7806739807,-0.7808499336,-0.7809379101,-0.7807619572,-0.7808499336,-0.7819056511,-0.7827854156,-0.7818176746,-0.7807619572,-0.7808499336,-0.7807619572,-0.7806739807,-0.7809379101,-0.7812018394,-0.7814657688,-0.7815537453,-0.7812898159,-0.781113863,-0.7812018394,-0.7812018394,-0.7812018394,-0.781113863,-0.7812018394,-0.781113863,-0.7810258865,-0.7809379101,-0.7808499336,-0.7806739807,-0.7805860043,-0.7804980278,-0.7804980278,-0.7804980278,-0.7806739807,-0.7808499336,-0.7810258865,-0.7810258865,-0.7810258865,-0.7810258865,-0.781113863,-0.7812898159,-0.7813777924,-0.7813777924,-0.7812898159,-0.7812018394,-0.7812018394,-0.781113863,-0.7812018394,-0.7813777924,-0.7813777924,-0.7812018394,-0.7809379101,-0.7808499336,-0.7809379101,-0.781113863,-0.781113863,-0.7812018394,-0.7812898159,-0.7810258865,-0.7809379101,-0.7809379101,-0.7809379101,-0.7807619572,-0.7807619572,-0.7810258865,-0.782081604,-0.7840172052,-0.785600841,-0.7859527469,-0.7855128646,-0.784545064,-0.7842811346,-0.7850729823,-0.785776794,-0.785600841,-0.7827854156,-0.7763629556,-0.7707322836,-0.7695005536,-0.7695005536,-0.7693246007,-0.7695885301,-0.7696765065,-0.7696765065,-0.769764483,-0.7698524594,-0.7699404359,-0.7705563307,-0.7720519304,-0.7747793198,-0.7782104611,-0.7806739807,-0.7824335098,-0.7843691111,-0.785776794,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7862166762,-0.7856888175,-0.784545064,-0.7832252979,-0.7814657688,-0.7794422507,-0.7777705789,-0.7760110497,-0.7743394375,-0.7728438377,-0.7717000246,-0.7710841894,-0.7709082365,-0.7709082365,-0.7710841894,-0.7711721659,-0.7709082365,-0.770996213,-0.7716120481,-0.7728438377,-0.7763629556,-0.7814657688,-0.7848089933,-0.7858647704,-0.7861286998,-0.7858647704,-0.7850729823,-0.7848089933,-0.7853369117,-0.7859527469,-0.7860407233,-0.7848969698,-0.7828733921,-0.7812018394,-0.781113863,-0.7813777924,-0.7814657688,-0.7814657688,-0.7815537453,-0.7816417217,-0.7816417217,-0.7816417217,-0.7817296982,-0.7818176746,-0.7819056511,-0.7819936275,-0.7819056511,-0.7819056511,-0.7818176746,-0.7817296982,-0.7817296982,-0.7816417217,-0.7813777924,-0.7812018394,-0.7812018394,-0.7810258865,-0.7809379101,-0.7810258865,-0.781113863,-0.781113863,-0.7806739807,-0.7797941566,-0.7792662978,-0.7793542743,-0.7799701095,-0.7804980278,-0.7806739807,-0.7808499336,-0.7810258865,-0.7809379101,-0.781113863,-0.7815537453,-0.7812898159,-0.7809379101,-0.7809379101,-0.7809379101,-0.7807619572,-0.7807619572,-0.7808499336,-0.7809379101,-0.7805860043,-0.7805860043,-0.7816417217,-0.7825214863,-0.7815537453,-0.7805860043,-0.7807619572,-0.7808499336,-0.7806739807,-0.7808499336,-0.7812018394,-0.7814657688,-0.7813777924,-0.781113863,-0.7810258865,-0.781113863,-0.781113863,-0.7810258865,-0.7810258865,-0.7810258865,-0.7810258865,-0.7810258865,-0.7810258865,-0.7807619572,-0.7805860043,-0.7804980278,-0.7804100513,-0.7804100513,-0.7805860043,-0.7807619572,-0.7809379101,-0.7809379101,-0.7808499336,-0.7809379101,-0.781113863,-0.7812898159,-0.7813777924,-0.7813777924,-0.7813777924,-0.7812898159,-0.7812898159,-0.7812898159,-0.7812018394,-0.7813777924,-0.7815537453,-0.7816417217,-0.7815537453,-0.7812898159,-0.781113863,-0.7809379101,-0.7809379101,-0.7810258865,-0.7812018394,-0.7813777924,-0.7812898159,-0.7810258865,-0.7809379101,-0.7808499336,-0.7807619572,-0.7807619572,-0.7814657688,-0.783313334,-0.7852489352,-0.7858647704,-0.785600841,-0.7850729823,-0.7846330404,-0.7848089933,-0.7855128646,-0.7858647704,-0.7841051817,-0.7786504626,-0.7722278833,-0.7695885301,-0.7695885301,-0.7694125772,-0.7693246007,-0.7694125772,-0.7695005536,-0.7695885301,-0.769764483,-0.7698524594,-0.7701163888,-0.77082026,-0.7723158598,-0.7750432491,-0.7783865333,-0.7808499336,-0.7828733921,-0.7847210169,-0.7859527469,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7860407233,-0.7852489352,-0.7840172052,-0.7825214863,-0.781113863,-0.7795302272,-0.7775066495,-0.7758350968,-0.7744274139,-0.7727558613,-0.7716120481,-0.7713481188,-0.7712601423,-0.7710841894,-0.7710841894,-0.7710841894,-0.7710841894,-0.7714360952,-0.7717880011,-0.7730197906,-0.7771547437,-0.7824335098,-0.7853369117,-0.7859527469,-0.7860407233,-0.7855128646,-0.7846330404,-0.7846330404,-0.7853369117,-0.7859527469,-0.785776794,-0.7843691111,-0.7823455334,-0.7814657688,-0.7814657688,-0.7814657688,-0.7815537453,-0.7815537453,-0.7815537453,-0.7816417217,-0.7817296982,-0.7817296982,-0.7818176746,-0.7819056511,-0.7819056511,-0.7819056511,-0.7819056511,-0.7819056511,-0.7817296982,-0.7816417217,-0.7815537453,-0.7813777924,-0.7812898159,-0.7813777924,-0.7812898159,-0.781113863,-0.7810258865,-0.7810258865,-0.7810258865,-0.7807619572,-0.780146122,-0.7793542743,-0.7791783214,-0.7797061801,-0.7802340984,-0.7804980278,-0.7807619572,-0.7809379101,-0.7808499336,-0.7812018394,-0.7818176746,-0.7813777924,-0.7807619572,-0.7806739807,-0.7806739807,-0.7806739807,-0.7807619572,-0.7808499336,-0.7808499336,-0.7806739807,-0.7805860043,-0.7815537453,-0.7824335098,-0.7815537453,-0.7806739807,-0.7810258865,-0.781113863,-0.7808499336,-0.7809379101,-0.7812018394,-0.7812898159,-0.781113863,-0.7809379101,-0.7810258865,-0.7810258865,-0.7810258865,-0.7810258865,-0.7810258865,-0.781113863,-0.7812018394,-0.781113863,-0.7810258865,-0.7807619572,-0.7804980278,-0.7804100513,-0.7803220749,-0.7803220749,-0.7805860043,-0.7807619572,-0.7808499336,-0.7807619572,-0.7808499336,-0.7809379101,-0.781113863,-0.7812898159,-0.7814657688,-0.7815537453,-0.7814657688,-0.7813777924,-0.7814657688,-0.7813777924,-0.7813777924,-0.7814657688,-0.7815537453,-0.7817296982,-0.7816417217,-0.7815537453,-0.7813777924,-0.7812898159,-0.781113863,-0.781113863,-0.781113863,-0.7812898159,-0.7814657688,-0.7813777924,-0.781113863,-0.7809379101,-0.7807619572,-0.781113863,-0.7826094627,-0.7847210169,-0.7858647704,-0.785600841,-0.7848969698,-0.784545064,-0.7849849463,-0.7855128646,-0.7856888175,-0.7852489352,-0.7812898159,-0.7745153904,-0.7701163888,-0.7695885301,-0.7695885301,-0.7694125772,-0.7695005536,-0.7695885301,-0.7695005536,-0.7695005536,-0.7695885301,-0.7698524594,-0.7702924013,-0.7709082365,-0.7726678848,-0.7760990262,-0.7790903449,-0.781113863,-0.783313334,-0.7851609588,-0.7861286998,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7862166762,-0.785776794,-0.7848089933,-0.7835772634,-0.7824335098,-0.7808499336,-0.7790023685,-0.7775946259,-0.7762749791,-0.7745153904,-0.7731077671,-0.7722278833,-0.7716120481,-0.7711721659,-0.7710841894,-0.7710841894,-0.770996213,-0.7710841894,-0.7711721659,-0.7715240717,-0.774251461,-0.779882133,-0.7842811346,-0.7855128646,-0.7858647704,-0.785776794,-0.7849849463,-0.7844570875,-0.7847210169,-0.7854248881,-0.7858647704,-0.7854248881,-0.7837532163,-0.782081604,-0.7812898159,-0.7812898159,-0.7815537453,-0.7815537453,-0.7815537453,-0.7816417217,-0.7816417217,-0.7816417217,-0.7818176746,-0.7819936275,-0.7819936275,-0.7819056511,-0.7819056511,-0.7818176746,-0.7815537453,-0.7813777924,-0.7813777924,-0.7814657688,-0.7815537453,-0.7816417217,-0.7814657688,-0.7812898159,-0.7810258865,-0.7809379101,-0.7810258865,-0.7810258865,-0.7804980278,-0.7796182036,-0.7792662978,-0.7797061801,-0.780146122,-0.7804100513,-0.7806739807,-0.7807619572,-0.7807619572,-0.781113863,-0.7813777924,-0.7809379101,-0.7805860043,-0.7805860043,-0.7805860043,-0.7806739807,-0.7808499336,-0.7809379101,-0.7808499336,-0.7806739807,-0.7805860043,-0.7814657688,-0.7823455334,-0.7815537453,-0.7808499336,-0.7812018394,-0.7812898159,-0.7810258865,-0.7810258865,-0.7810258865,-0.781113863,-0.7810258865,-0.7809379101,-0.7809379101,-0.7808499336,-0.7809379101,-0.7809379101,-0.7808499336,-0.7810258865,-0.781113863,-0.7809379101,-0.7808499336,-0.7805860043,-0.7803220749,-0.7803220749,-0.7803220749,-0.7804100513,-0.7808499336,-0.7809379101,-0.7808499336,-0.7808499336,-0.7809379101,-0.781113863,-0.7812018394,-0.7812898159,-0.7814657688,-0.7815537453,-0.7815537453,-0.7815537453,-0.7816417217,-0.7815537453,-0.7815537453,-0.7815537453,-0.7815537453,-0.7816417217,-0.7817296982,-0.7817296982,-0.7816417217,-0.7815537453,-0.7814657688,-0.7812898159,-0.7812898159,-0.7813777924,-0.7814657688,-0.7814657688,-0.7812898159,-0.781113863,-0.7812898159,-0.7824335098,-0.7843691111,-0.7856888175,-0.785776794,-0.7851609588,-0.7844570875,-0.7844570875,-0.7853369117,-0.785776794,-0.7855128646,-0.783049345,-0.7766268849,-0.7712601423,-0.7696765065,-0.7696765065,-0.7696765065,-0.7698524594,-0.7699404359,-0.7699404359,-0.7698524594,-0.769764483,-0.7698524594,-0.7701163888,-0.7702043653,-0.77082026,-0.7734596729,-0.7772427201,-0.7800580859,-0.7818176746,-0.7838411927,-0.7855128646,-0.7862166762,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7861286998,-0.7854248881,-0.7846330404,-0.7837532163,-0.7824335098,-0.7808499336,-0.7793542743,-0.7780345082,-0.7768908143,-0.775483191,-0.7735476494,-0.7720519304,-0.7712601423,-0.7709082365,-0.7709082365,-0.77082026,-0.7707322836,-0.770996213,-0.7714360952,-0.7729318142,-0.7768028378,-0.7817296982,-0.784545064,-0.7854248881,-0.785776794,-0.7856888175,-0.7849849463,-0.7844570875,-0.7847210169,-0.7855128646,-0.785776794,-0.7849849463,-0.7829613686,-0.7815537453,-0.7812018394,-0.7813777924,-0.7814657688,-0.7814657688,-0.7816417217,-0.7818176746,-0.7817296982,-0.7818176746,-0.782081604,-0.782081604,-0.7819936275,-0.7819936275,-0.7818176746,-0.7814657688,-0.7812898159,-0.7812898159,-0.7813777924,-0.7814657688,-0.7816417217,-0.7816417217,-0.7813777924,-0.781113863,-0.7810258865,-0.781113863,-0.7812018394,-0.7807619572,-0.779882133,-0.7794422507,-0.7797941566,-0.7802340984,-0.7804980278,-0.7806739807,-0.7807619572,-0.7808499336,-0.781113863,-0.781113863,-0.7808499336,-0.7807619572,-0.7807619572,-0.7807619572,-0.7808499336,-0.7810258865,-0.7809379101,-0.7807619572,-0.7806739807,-0.7807619572,-0.7814657688,-0.782081604,-0.7814657688,-0.7810258865,-0.7812018394,-0.7812018394,-0.781113863,-0.7812018394,-0.7812898159,-0.7812018394,-0.781113863,-0.7810258865,-0.7808499336,-0.7808499336,-0.7809379101,-0.7809379101,-0.7808499336,-0.7809379101,-0.7809379101,-0.7808499336,-0.7807619572,-0.7804980278,-0.7802340984,-0.7803220749,-0.7804100513,-0.7806739807,-0.781113863,-0.7812018394,-0.7809379101,-0.7808499336,-0.781113863,-0.7812018394,-0.7812018394,-0.7813777924,-0.7815537453,-0.7816417217,-0.7815537453,-0.7816417217,-0.7817296982,-0.7817296982,-0.7816417217,-0.7814657688,-0.7813777924,-0.7814657688,-0.7816417217,-0.7816417217,-0.7816417217,-0.7815537453,-0.7814657688,-0.7813777924,-0.7813777924,-0.7813777924,-0.7812018394,-0.7812018394,-0.7812898159,-0.7814657688,-0.7821695805,-0.7840172052,-0.785600841,-0.785776794,-0.7852489352,-0.7847210169,-0.7847210169,-0.7851609588,-0.7855128646,-0.785600841,-0.7839292288,-0.7782104611,-0.7717880011,-0.7695885301,-0.7695885301,-0.7695005536,-0.7696765065,-0.7700284123,-0.7701163888,-0.7700284123,-0.7700284123,-0.7702043653,-0.7703803778,-0.7700284123,-0.7699404359,-0.7717880011,-0.7753952146,-0.7784745097,-0.7804100513,-0.7824335098,-0.7846330404,-0.7859527469,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7859527469,-0.7854248881,-0.7848969698,-0.7840172052,-0.7826094627,-0.7812898159,-0.7803220749,-0.7791783214,-0.7775066495,-0.7752192616,-0.7730197906,-0.7716120481,-0.770996213,-0.7709082365,-0.7709082365,-0.7709082365,-0.770996213,-0.7711721659,-0.7712601423,-0.7728438377,-0.7772427201,-0.782081604,-0.7847210169,-0.7854248881,-0.7856888175,-0.7855128646,-0.7848969698,-0.7846330404,-0.7850729823,-0.785600841,-0.785600841,-0.7843691111,-0.7824335098,-0.7812018394,-0.781113863,-0.7812898159,-0.7813777924,-0.7816417217,-0.7819056511,-0.7819936275,-0.7819936275,-0.7819936275,-0.7819936275,-0.7819936275,-0.7818176746,-0.7817296982,-0.7815537453,-0.7812898159,-0.781113863,-0.7810258865,-0.7812018394,-0.7815537453,-0.7815537453,-0.7813777924,-0.781113863,-0.7810258865,-0.781113863,-0.7812018394,-0.7809379101,-0.7802340984,-0.7797061801,-0.779882133,-0.7803220749,-0.7805860043,-0.7808499336,-0.7809379101,-0.7810258865,-0.7812018394,-0.7812018394,-0.7809379101,-0.7807619572,-0.7809379101,-0.7809379101,-0.7809379101,-0.7809379101,-0.7807619572,-0.7807619572,-0.7807619572,-0.7808499336,-0.7814657688,-0.7818176746,-0.7812898159,-0.781113863,-0.7812898159,-0.7812018394,-0.7813777924,-0.7814657688,-0.7814657688,-0.7813777924,-0.7812898159,-0.781113863,-0.7809379101,-0.7808499336,-0.7810258865,-0.7810258865,-0.7809379101,-0.7809379101,-0.7807619572,-0.7806739807,-0.7806739807,-0.7804980278,-0.7803220749,-0.7804100513,-0.7806739807,-0.7808499336,-0.7810258865,-0.781113863,-0.7809379101,-0.7809379101,-0.781113863,-0.7812898159,-0.7812018394,-0.7813777924,-0.7816417217,-0.7816417217,-0.7816417217,-0.7817296982,-0.7818176746,-0.7816417217,-0.7816417217,-0.7813777924,-0.781113863,-0.7810258865,-0.7812018394,-0.7812898159,-0.7812898159,-0.7812898159,-0.7812898159,-0.7812898159,-0.7812898159,-0.7812898159,-0.781113863,-0.781113863,-0.7812898159,-0.7819936275,-0.7834013104,-0.7851609588,-0.785776794,-0.7853369117,-0.7846330404,-0.784545064,-0.7850729823,-0.785600841,-0.7856888175,-0.784545064,-0.779882133,-0.7730197906,-0.7696765065,-0.7694125772,-0.7695005536,-0.7695005536,-0.769764483,-0.7701163888,-0.7702043653,-0.7702043653,-0.7702043653,-0.7702043653,-0.7701163888,-0.7700284123,-0.770996213,-0.7741634846,-0.7777705789,-0.7797941566,-0.781113863,-0.7834892869,-0.7854248881,-0.7862166762,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7859527469,-0.785600841,-0.7850729823,-0.7841931581,-0.783313334,-0.7822575569,-0.7809379101,-0.7794422507,-0.777418673,-0.7747793198,-0.7723158598,-0.7711721659,-0.7710841894,-0.770996213,-0.7709082365,-0.7709082365,-0.77082026,-0.7706443071,-0.770996213,-0.7738115788,-0.778914392,-0.7831373215,-0.7848969698,-0.7852489352,-0.7854248881,-0.7853369117,-0.7850729823,-0.7848969698,-0.7851609588,-0.7856888175,-0.7854248881,-0.7839292288,-0.7819056511,-0.781113863,-0.7812898159,-0.7813777924,-0.7815537453,-0.7817296982,-0.7819056511,-0.7819056511,-0.7819936275,-0.7819936275,-0.7818176746,-0.7816417217,-0.7815537453,-0.7814657688,-0.7812018394,-0.7809379101,-0.7808499336,-0.781113863,-0.7814657688,-0.7816417217,-0.7815537453,-0.7813777924,-0.781113863,-0.7809379101,-0.7810258865,-0.7809379101,-0.7804980278,-0.7799701095,-0.7799701095,-0.7803220749,-0.7805860043,-0.7806739807,-0.7807619572,-0.7808499336,-0.7810258865,-0.781113863,-0.7809379101,-0.7807619572,-0.7808499336,-0.7809379101,-0.7809379101,-0.7807619572,-0.7806739807,-0.7807619572,-0.7807619572,-0.7809379101,-0.7816417217,-0.7819056511,-0.7814657688,-0.7812018394,-0.7812018394,-0.7812018394,-0.7814657688,-0.7815537453,-0.7812898159,-0.781113863,-0.781113863,-0.7810258865,-0.7809379101,-0.7810258865,-0.781113863,-0.781113863,-0.7810258865,-0.7810258865,-0.7808499336,-0.7805860043,-0.7804100513,-0.7803220749,-0.7802340984,-0.7804100513,-0.7808499336,-0.7810258865,-0.7810258865,-0.7809379101,-0.7809379101,-0.7810258865,-0.7812018394,-0.7812018394,-0.7812898159,-0.7813777924,-0.7815537453,-0.7816417217,-0.7817296982,-0.7819056511,-0.7819056511,-0.7817296982,-0.7815537453,-0.7812898159,-0.7809379101,-0.7806739807,-0.7807619572,-0.7809379101,-0.7810258865,-0.7810258865,-0.7810258865,-0.781113863,-0.781113863,-0.7812018394,-0.781113863,-0.7812018394,-0.7818176746,-0.7832252979,-0.7848969698,-0.785776794,-0.7854248881,-0.7844570875,-0.7841051817,-0.7848089933,-0.7855128646,-0.7856888175,-0.7854248881,-0.7816417217,-0.7747793198,-0.7699404359,-0.7695885301,-0.7696765065,-0.7695005536,-0.769764483,-0.7700284123,-0.7702924013,-0.7702043653,-0.7700284123,-0.7699404359,-0.7698524594,-0.7703803778,-0.7717880011,-0.7739875317,-0.7769787908,-0.7794422507,-0.7807619572,-0.7825214863,-0.7848089933,-0.7859527469,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863046527,-0.7860407233,-0.7856888175,-0.7853369117,-0.7846330404,-0.7835772634,-0.7823455334,-0.7810258865,-0.7792662978,-0.7765389085,-0.7734596729,-0.7716120481,-0.7712601423,-0.7710841894,-0.77082026,-0.77082026,-0.7707322836,-0.7706443071,-0.7707322836,-0.7723158598,-0.7762749791,-0.7807619572,-0.7835772634,-0.7846330404,-0.7849849463,-0.7852489352,-0.7853369117,-0.7850729823,-0.7848969698,-0.7853369117,-0.785776794,-0.7852489352,-0.7835772634,-0.7817296982,-0.781113863,-0.7812898159,-0.7815537453,-0.7816417217,-0.7816417217,-0.7818176746,-0.7819936275,-0.7819936275,-0.7817296982,-0.7816417217,-0.7814657688,-0.7812898159,-0.781113863,-0.7808499336,-0.7808499336,-0.7812018394,-0.7814657688,-0.7816417217,-0.7816417217,-0.7814657688,-0.7812898159,-0.7810258865,-0.7810258865,-0.7809379101,-0.7805860043,-0.780146122,-0.7800580859,-0.7802340984,-0.7804100513,-0.7804980278,-0.7805860043,-0.7806739807,-0.7807619572,-0.7809379101,-0.7808499336,-0.7808499336,-0.7809379101,-0.7809379101,-0.7808499336,-0.7807619572,-0.7806739807,-0.7808499336,-0.7807619572,-0.7810258865,-0.7818176746,-0.7819936275,-0.7814657688,-0.7812898159,-0.7812018394,-0.781113863,-0.7812898159,-0.7812898159,-0.7810258865,-0.7808499336,-0.7808499336,-0.7808499336,-0.7807619572,-0.7809379101,-0.7810258865,-0.7810258865,-0.7810258865,-0.7810258865,-0.7808499336,-0.7804980278,-0.7803220749,-0.7802340984,-0.780146122,-0.7803220749,-0.7809379101,-0.781113863,-0.7809379101,-0.7808499336,-0.7810258865,-0.7810258865,-0.7810258865,-0.781113863,-0.7812018394,-0.7812898159,-0.7813777924,-0.7816417217,-0.7818176746,-0.7819056511,-0.7818176746,-0.7816417217,-0.7814657688,-0.7812018394,-0.7809379101,-0.7806739807,-0.7805860043,-0.7806739807,-0.7806739807,-0.7807619572,-0.7809379101,-0.7810258865,-0.7812018394,-0.7812898159,-0.7813777924,-0.7819936275,-0.7834013104,-0.7849849463,-0.785776794,-0.785600841,-0.7847210169,-0.7840172052,-0.784545064,-0.7854248881,-0.785600841,-0.7854248881,-0.7832252979,-0.7771547437,-0.7712601423,-0.7694125772,-0.7696765065,-0.7695005536,-0.7696765065,-0.7699404359,-0.7698524594,-0.7699404359,-0.7699404359,-0.769764483,-0.7702043653,-0.7710841894,-0.7727558613,-0.7751312256,-0.7775066495,-0.7791783214,-0.7804980278,-0.782081604,-0.7843691111,-0.7858647704,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7861286998,-0.7858647704,-0.7855128646,-0.784545064,-0.7834013104,-0.7819936275,-0.7804980278,-0.7784745097,-0.775483191,-0.7725797892,-0.7713481188,-0.7710841894,-0.7709082365,-0.7709082365,-0.7709082365,-0.7709082365,-0.770996213,-0.7717880011,-0.774251461,-0.7775946259,-0.7808499336,-0.7834892869,-0.7848089933,-0.7851609588,-0.7853369117,-0.7854248881,-0.7850729823,-0.7848969698,-0.7854248881,-0.7858647704,-0.7852489352,-0.783049345,-0.7812018394,-0.7810258865,-0.7814657688,-0.7814657688,-0.7813777924,-0.7815537453,-0.7818176746,-0.7817296982,-0.7815537453,-0.7815537453,-0.7813777924,-0.7812018394,-0.7810258865,-0.7808499336,-0.7809379101,-0.7812018394,-0.7814657688,-0.7815537453,-0.7814657688,-0.7812898159,-0.7812018394,-0.781113863,-0.7809379101,-0.7808499336,-0.7806739807,-0.7803220749,-0.780146122,-0.780146122,-0.7802340984,-0.7803220749,-0.7804980278,-0.7806739807,-0.7808499336,-0.7809379101,-0.7808499336,-0.7809379101,-0.7810258865,-0.7809379101,-0.7809379101,-0.7808499336,-0.7807619572,-0.7808499336,-0.7808499336,-0.7810258865,-0.7819056511,-0.7819936275,-0.7812898159,-0.7812018394,-0.7812018394,-0.7812018394,-0.7812898159,-0.7812018394,-0.7809379101,-0.7809379101,-0.7809379101,-0.7808499336,-0.7806739807,-0.7807619572,-0.7808499336,-0.7809379101,-0.7809379101,-0.7808499336,-0.7805860043,-0.7803220749,-0.7803220749,-0.7803220749,-0.7803220749,-0.7806739807,-0.7810258865,-0.7810258865,-0.7808499336,-0.7809379101,-0.7810258865,-0.7809379101,-0.7809379101,-0.781113863,-0.781113863,-0.7812018394,-0.7813777924,-0.7816417217,-0.7819056511,-0.7819936275,-0.7818176746,-0.7816417217,-0.7814657688,-0.7812898159,-0.7810258865,-0.7809379101,-0.7808499336,-0.7806739807,-0.7806739807,-0.7807619572,-0.7808499336,-0.7810258865,-0.7814657688,-0.7818176746,-0.7824335098,-0.7837532163,-0.7852489352,-0.7859527469,-0.785776794,-0.7849849463,-0.7843691111,-0.784545064,-0.7854248881,-0.7856888175,-0.7852489352,-0.7832252979,-0.7780345082,-0.7724038363,-0.7699404359,-0.769764483,-0.7696765065,-0.7696765065,-0.7700284123,-0.7701163888,-0.7699404359,-0.7698524594,-0.7701163888,-0.770996213,-0.7727558613,-0.7747793198,-0.7765389085,-0.7782985568,-0.779882133,-0.7808499336,-0.7821695805,-0.7841931581,-0.785776794,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7860407233,-0.7855128646,-0.7842811346,-0.7826974392,-0.7812018394,-0.779882133,-0.7773306966,-0.7738115788,-0.7716120481,-0.7711721659,-0.7710841894,-0.770996213,-0.7710841894,-0.7711721659,-0.7709082365,-0.770996213,-0.7721399069,-0.7745153904,-0.7775066495,-0.7807619572,-0.7834892869,-0.7848089933,-0.7851609588,-0.7854248881,-0.7853369117,-0.7850729823,-0.7852489352,-0.7856888175,-0.7859527469,-0.7849849463,-0.783049345,-0.7815537453,-0.7812898159,-0.7812898159,-0.7812018394,-0.7813777924,-0.7816417217,-0.7817296982,-0.7816417217,-0.7814657688,-0.7812898159,-0.781113863,-0.7810258865,-0.7809379101,-0.781113863,-0.7812898159,-0.7814657688,-0.7815537453,-0.7814657688,-0.7813777924,-0.7812018394,-0.7810258865,-0.7809379101,-0.7807619572,-0.7804980278,-0.7803220749,-0.7802340984,-0.7802340984,-0.7802340984,-0.7803220749,-0.7805860043,-0.7808499336,-0.781113863,-0.781113863,-0.7810258865,-0.7810258865,-0.7810258865,-0.7809379101,-0.7809379101,-0.7808499336,-0.7808499336,-0.7809379101,-0.7807619572,-0.781113863,-0.7819936275,-0.7819936275,-0.781113863,-0.7810258865,-0.781113863,-0.7812018394,-0.7812898159,-0.7812018394,-0.7810258865,-0.7810258865,-0.7809379101,-0.7808499336,-0.7808499336,-0.7809379101,-0.7810258865,-0.781113863,-0.7809379101,-0.7807619572,-0.7804980278,-0.7802340984,-0.7802340984,-0.7803220749,-0.7805860043,-0.7809379101,-0.7809379101,-0.7809379101,-0.7810258865,-0.781113863,-0.781113863,-0.7809379101,-0.7808499336,-0.7810258865,-0.781113863,-0.7812018394,-0.7812898159,-0.7814657688,-0.7818176746,-0.7819936275,-0.7819056511,-0.7817296982,-0.7814657688,-0.7812018394,-0.7810258865,-0.7810258865,-0.7809379101,-0.7809379101,-0.7808499336,-0.7806739807,-0.7806739807,-0.7812018394,-0.7821695805,-0.7832252979,-0.7842811346,-0.7852489352,-0.785776794,-0.7856888175,-0.7851609588,-0.784545064,-0.7847210169,-0.7853369117,-0.785600841,-0.7853369117,-0.783313334,-0.7782104611,-0.7724038363,-0.7698524594,-0.7696765065,-0.769764483,-0.7698524594,-0.7701163888,-0.7703803778,-0.7702924013,-0.7702924013,-0.77082026,-0.7720519304,-0.7739875317,-0.7762749791,-0.7782985568,-0.7797941566,-0.7808499336,-0.7819056511,-0.7832252979,-0.7847210169,-0.785776794,-0.7862166762,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7861286998,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7860407233,-0.7851609588,-0.7836652398,-0.7819936275,-0.7807619572,-0.7790023685,-0.7755711675,-0.7724918127,-0.7715240717,-0.7713481188,-0.7711721659,-0.7710841894,-0.770996213,-0.7707322836,-0.7704683542,-0.7707322836,-0.7717000246,-0.7739875317,-0.7775946259,-0.7807619572,-0.783049345,-0.784545064,-0.7851609588,-0.7853369117,-0.7853369117,-0.7851609588,-0.7852489352,-0.7856888175,-0.7858647704,-0.7849849463,-0.7831373215,-0.7815537453,-0.7812018394,-0.7812018394,-0.7812898159,-0.7816417217,-0.7819056511,-0.7817296982,-0.7813777924,-0.7812018394,-0.781113863,-0.7810258865,-0.7810258865,-0.7812018394,-0.7813777924,-0.7814657688,-0.7815537453,-0.7814657688,-0.7814657688,-0.7812898159,-0.781113863,-0.7810258865,-0.7806739807,-0.7804100513,-0.7802340984,-0.780146122,-0.780146122,-0.7802340984,-0.7803220749,-0.7804100513,-0.7808499336,-0.7812018394,-0.7812898159,-0.781113863,-0.7810258865,-0.7809379101,-0.7808499336,-0.7809379101,-0.7808499336,-0.7808499336,-0.7809379101,-0.7808499336,-0.781113863,-0.7819056511,-0.7817296982,-0.7809379101,-0.7809379101,-0.781113863,-0.7810258865,-0.7810258865,-0.7812898159,-0.7812898159,-0.781113863,-0.7809379101,-0.7808499336,-0.7807619572,-0.7808499336,-0.7810258865,-0.7809379101,-0.7808499336,-0.7806739807,-0.7804100513,-0.7800580859,-0.7800580859,-0.7804100513,-0.7808499336,-0.7810258865,-0.7809379101,-0.7809379101,-0.7812018394,-0.7812898159,-0.7812018394,-0.781113863,-0.7807619572,-0.7807619572,-0.7809379101,-0.7809379101,-0.7810258865,-0.7812898159,-0.7817296982,-0.7819936275,-0.7818176746,-0.7815537453,-0.7812898159,-0.781113863,-0.7810258865,-0.7809379101,-0.7809379101,-0.7810258865,-0.7813777924,-0.7813777924,-0.7814657688,-0.7826094627,-0.7841051817,-0.7849849463,-0.7851609588,-0.7850729823,-0.7850729823,-0.7849849463,-0.7846330404,-0.7847210169,-0.7852489352,-0.7853369117,-0.7850729823,-0.783313334,-0.7785624862,-0.7726678848,-0.7696765065,-0.7695005536,-0.7695885301,-0.7696765065,-0.7698524594,-0.7701163888,-0.7702043653,-0.7702924013,-0.7713481188,-0.7735476494,-0.7759230733,-0.7778585553,-0.7796182036,-0.781113863,-0.7823455334,-0.783313334,-0.7844570875,-0.785600841,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7858647704,-0.7847210169,-0.7829613686,-0.7815537453,-0.7804100513,-0.7780345082,-0.7745153904,-0.7723158598,-0.7717000246,-0.7713481188,-0.7710841894,-0.7709082365,-0.7705563307,-0.7703803778,-0.7702924013,-0.7702924013,-0.7721399069,-0.7752192616,-0.7775066495,-0.7799701095,-0.783049345,-0.784545064,-0.7850729823,-0.7854248881,-0.7852489352,-0.7848969698,-0.7852489352,-0.785776794,-0.7858647704,-0.7849849463,-0.7828733921,-0.7812898159,-0.781113863,-0.7813777924,-0.7816417217,-0.7818176746,-0.7817296982,-0.7814657688,-0.7812898159,-0.7812018394,-0.781113863,-0.781113863,-0.7812018394,-0.7812898159,-0.7813777924,-0.7814657688,-0.7814657688,-0.7813777924,-0.7812018394,-0.7812018394,-0.7810258865,-0.7804980278,-0.7802340984,-0.7800580859,-0.779882133,-0.7799701095,-0.7800580859,-0.7803220749,-0.7804980278,-0.7807619572,-0.7809379101,-0.7810258865,-0.7810258865,-0.7812018394,-0.7812018394,-0.7810258865,-0.7810258865,-0.7810258865,-0.7809379101,-0.7809379101,-0.7807619572,-0.7812018394,-0.7819056511,-0.7815537453,-0.7807619572,-0.7810258865,-0.7812018394,-0.781113863,-0.7810258865,-0.7812898159,-0.7814657688,-0.7812018394,-0.7809379101,-0.7809379101,-0.7808499336,-0.7808499336,-0.7809379101,-0.7809379101,-0.7806739807,-0.7803220749,-0.7800580859,-0.779882133,-0.780146122,-0.7806739807,-0.7809379101,-0.7809379101,-0.7809379101,-0.781113863,-0.7812898159,-0.7812898159,-0.7812018394,-0.781113863,-0.7808499336,-0.7807619572,-0.7807619572,-0.7807619572,-0.7807619572,-0.7812018394,-0.7816417217,-0.7818176746,-0.7817296982,-0.7815537453,-0.7812898159,-0.7812018394,-0.781113863,-0.7810258865,-0.7809379101,-0.7809379101,-0.7814657688,-0.7825214863,-0.7836652398,-0.7848969698,-0.7856888175,-0.7855128646,-0.7849849463,-0.7844570875,-0.7843691111,-0.7846330404,-0.7849849463,-0.7853369117,-0.7854248881,-0.7848969698,-0.7826974392,-0.7776826024,-0.7726678848,-0.7700284123,-0.7695885301,-0.7696765065,-0.769764483,-0.7696765065,-0.7701163888,-0.7702924013,-0.7699404359,-0.770996213,-0.774251461,-0.777418673,-0.7793542743,-0.7807619572,-0.7821695805,-0.7835772634,-0.7846330404,-0.7854248881,-0.7860407233,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7862166762,-0.7855128646,-0.7839292288,-0.7823455334,-0.7812898159,-0.7796182036,-0.7760990262,-0.7728438377,-0.7717880011,-0.7714360952,-0.7710841894,-0.7709082365,-0.7706443071,-0.7703803778,-0.7702924013,-0.7705563307,-0.7713481188,-0.7725797892,-0.774251461,-0.7767148614,-0.7799701095,-0.7827854156,-0.784545064,-0.7851609588,-0.7853369117,-0.7851609588,-0.7850729823,-0.7854248881,-0.7856888175,-0.7856888175,-0.7846330404,-0.7824335098,-0.7812898159,-0.7812018394,-0.7814657688,-0.7816417217,-0.7815537453,-0.7814657688,-0.7813777924,-0.7812018394,-0.781113863,-0.781113863,-0.7812898159,-0.7813777924,-0.7815537453,-0.7815537453,-0.7815537453,-0.7814657688,-0.7812898159,-0.7812018394,-0.7810258865,-0.7804980278,-0.780146122,-0.7800580859,-0.7799701095,-0.7799701095,-0.7800580859,-0.7803220749,-0.7805860043,-0.7807619572,-0.7809379101,-0.7808499336,-0.7808499336,-0.7810258865,-0.7812898159,-0.7812018394,-0.781113863,-0.781113863,-0.781113863,-0.7809379101,-0.7806739807,-0.7812018394,-0.7819056511,-0.7813777924,-0.7807619572,-0.7810258865,-0.7812898159,-0.7812018394,-0.781113863,-0.7812898159,-0.7814657688,-0.7812898159,-0.7810258865,-0.781113863,-0.781113863,-0.7808499336,-0.7808499336,-0.7809379101,-0.7806739807,-0.7800580859,-0.7797941566,-0.7799701095,-0.7804980278,-0.7807619572,-0.7808499336,-0.7809379101,-0.781113863,-0.7812898159,-0.7812018394,-0.781113863,-0.7810258865,-0.7812018394,-0.781113863,-0.7808499336,-0.7807619572,-0.7806739807,-0.7806739807,-0.781113863,-0.7815537453,-0.7818176746,-0.7816417217,-0.7814657688,-0.7813777924,-0.7812018394,-0.7810258865,-0.7810258865,-0.7810258865,-0.7808499336,-0.7815537453,-0.7834013104,-0.7851609588,-0.7859527469,-0.785776794,-0.7854248881,-0.7850729823,-0.7844570875,-0.784545064,-0.7851609588,-0.7855128646,-0.7855128646,-0.7847210169,-0.7817296982,-0.7765389085,-0.7718759775,-0.769764483,-0.7695005536,-0.7695005536,-0.7696765065,-0.7700284123,-0.7702924013,-0.7704683542,-0.7702924013,-0.7706443071,-0.7733716965,-0.7772427201,-0.7797941566,-0.7812018394,-0.7828733921,-0.7843691111,-0.7853369117,-0.7858647704,-0.7862166762,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7864806056,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7858647704,-0.784545064,-0.7829613686,-0.7819056511,-0.7804100513,-0.7771547437,-0.7734596729,-0.7717880011,-0.7714360952,-0.7710841894,-0.7709082365,-0.7706443071,-0.7704683542,-0.7706443071,-0.7707322836,-0.7705563307,-0.7710841894,-0.7723158598,-0.7739875317,-0.7767148614,-0.7803220749,-0.7832252979,-0.784545064,-0.7849849463,-0.7853369117,-0.7853369117,-0.7850729823,-0.7850729823,-0.7854248881,-0.7855128646,-0.7843691111,-0.7824335098,-0.7812898159,-0.7812898159,-0.7814657688,-0.7814657688,-0.7812898159,-0.7812018394,-0.7812018394,-0.7812018394,-0.7812898159,-0.7814657688,-0.7816417217,-0.7817296982,-0.7816417217,-0.7815537453,-0.7815537453,-0.7813777924,-0.7812898159,-0.781113863,-0.7807619572,-0.7804980278,-0.7803220749,-0.780146122,-0.7799701095,-0.779882133,-0.780146122,-0.7805860043,-0.7807619572,-0.7808499336,-0.7808499336,-0.7808499336,-0.7808499336,-0.7810258865,-0.7812898159,-0.7812018394,-0.781113863,-0.7812018394,-0.781113863,-0.7808499336,-0.7813777924,-0.782081604,-0.7814657688,-0.7807619572,-0.781113863,-0.7812898159,-0.7812018394,-0.781113863,-0.7812018394,-0.7814657688,-0.7815537453,-0.7814657688,-0.7814657688,-0.7812898159,-0.7808499336,-0.7807619572,-0.7809379101,-0.7805860043,-0.7799701095,-0.7797941566,-0.7802340984,-0.7807619572,-0.7810258865,-0.781113863,-0.781113863,-0.7813777924,-0.7813777924,-0.7812018394,-0.7810258865,-0.781113863,-0.7812898159,-0.7812898159,-0.7809379101,-0.7807619572,-0.7808499336,-0.7808499336,-0.781113863,-0.7816417217,-0.7818176746,-0.7816417217,-0.7813777924,-0.7812018394,-0.7809379101,-0.7808499336,-0.7808499336,-0.7807619572,-0.7810258865,-0.7824335098,-0.7847210169,-0.7858647704,-0.785776794,-0.7853369117,-0.7849849463,-0.784545064,-0.7844570875,-0.7851609588,-0.785600841,-0.785600841,-0.7847210169,-0.7810258865,-0.7751312256,-0.7703803778,-0.7691486478,-0.7691486478,-0.7691486478,-0.7695005536,-0.7699404359,-0.7702924013,-0.7705563307,-0.7704683542,-0.7707322836,-0.7731957436,-0.7769787908,-0.7793542743,-0.7809379101,-0.7828733921,-0.7848089933,-0.785776794,-0.7861286998,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7860407233,-0.7851609588,-0.7837532163,-0.7825214863,-0.7812898159,-0.7785624862,-0.7746033669,-0.7721399069,-0.7712601423,-0.770996213,-0.77082026,-0.7706443071,-0.7705563307,-0.7705563307,-0.7703803778,-0.7704683542,-0.7707322836,-0.770996213,-0.7716120481,-0.7736356258,-0.7768028378,-0.7799701095,-0.7826974392,-0.7843691111,-0.7850729823,-0.7853369117,-0.7852489352,-0.7850729823,-0.7850729823,-0.785600841,-0.785600841,-0.7843691111,-0.7824335098,-0.7814657688,-0.7812898159,-0.7812898159,-0.7812018394,-0.7812018394,-0.7813777924,-0.7814657688,-0.7815537453,-0.7816417217,-0.7817296982,-0.7816417217,-0.7816417217,-0.7816417217,-0.7814657688,-0.7812898159,-0.7812898159,-0.7812898159,-0.7809379101,-0.7806739807,-0.7804100513,-0.7800580859,-0.779882133,-0.7797941566,-0.7800580859,-0.7804100513,-0.7806739807,-0.7807619572,-0.7808499336,-0.7808499336,-0.7807619572,-0.7809379101,-0.7813777924,-0.7814657688,-0.7812018394,-0.7812018394,-0.781113863,-0.7809379101,-0.7815537453,-0.7821695805,-0.7815537453,-0.7809379101,-0.781113863,-0.781113863,-0.781113863,-0.781113863,-0.781113863,-0.7812018394,-0.7814657688,-0.7816417217,-0.7816417217,-0.7813777924,-0.7808499336,-0.7807619572,-0.7808499336,-0.7804100513,-0.7799701095,-0.779882133,-0.7803220749,-0.7808499336,-0.7812018394,-0.7812018394,-0.7813777924,-0.7814657688,-0.7813777924,-0.7812898159,-0.7812898159,-0.7813777924,-0.7812898159,-0.7812018394,-0.7810258865,-0.7809379101,-0.7809379101,-0.7810258865,-0.7812018394,-0.7815537453,-0.7817296982,-0.7816417217,-0.7812898159,-0.7810258865,-0.7809379101,-0.7809379101,-0.7808499336,-0.7810258865,-0.7822575569,-0.7842811346,-0.785600841,-0.785600841,-0.7849849463,-0.7846330404,-0.7843691111,-0.7842811346,-0.7849849463,-0.7855128646,-0.7855128646,-0.7843691111,-0.7804980278,-0.7745153904,-0.7703803778,-0.7692366242,-0.7691486478,-0.7691486478,-0.7695005536,-0.7699404359,-0.7699404359,-0.7699404359,-0.7699404359,-0.7702924013,-0.7724918127,-0.7765389085,-0.7795302272,-0.7809379101,-0.7827854156,-0.7849849463,-0.7859527469,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863046527,-0.7861286998,-0.785776794,-0.7844570875,-0.7829613686,-0.7818176746,-0.7797061801,-0.7759230733,-0.7726678848,-0.7711721659,-0.7709082365,-0.77082026,-0.7707322836,-0.7707322836,-0.7707322836,-0.7705563307,-0.7704683542,-0.7702924013,-0.7702043653,-0.7704683542,-0.7712601423,-0.7729318142,-0.7756591439,-0.7791783214,-0.7823455334,-0.7842811346,-0.7850729823,-0.7854248881,-0.7853369117,-0.7851609588,-0.7853369117,-0.7856888175,-0.785776794,-0.7847210169,-0.7829613686,-0.7817296982,-0.7812018394,-0.781113863,-0.7813777924,-0.7817296982,-0.7817296982,-0.7816417217,-0.7816417217,-0.7816417217,-0.7815537453,-0.7815537453,-0.7816417217,-0.7815537453,-0.7813777924,-0.7812018394,-0.781113863,-0.7809379101,-0.7805860043,-0.7803220749,-0.780146122,-0.7800580859,-0.7800580859,-0.780146122,-0.7804100513,-0.7806739807,-0.7808499336,-0.7809379101,-0.7809379101,-0.7807619572,-0.7807619572,-0.7812898159,-0.7813777924,-0.781113863,-0.781113863,-0.781113863,-0.781113863,-0.7817296982,-0.7821695805,-0.7816417217,-0.7812018394,-0.7812018394,-0.7810258865,-0.7810258865,-0.7812018394,-0.781113863,-0.7810258865,-0.7812018394,-0.7815537453,-0.7816417217,-0.7813777924,-0.7809379101,-0.7807619572,-0.7805860043,-0.7803220749,-0.7799701095,-0.7800580859,-0.7804100513,-0.7808499336,-0.781113863,-0.7812898159,-0.7813777924,-0.7814657688,-0.7812898159,-0.7813777924,-0.7815537453,-0.7814657688,-0.7812898159,-0.7812018394,-0.781113863,-0.7808499336,-0.7807619572,-0.7810258865,-0.7812898159,-0.7815537453,-0.7816417217,-0.7814657688,-0.781113863,-0.7808499336,-0.7809379101,-0.7809379101,-0.781113863,-0.7823455334,-0.7841931581,-0.7853369117,-0.7852489352,-0.7848969698,-0.7844570875,-0.7841931581,-0.7843691111,-0.7848969698,-0.7855128646,-0.7854248881,-0.7839292288,-0.7795302272,-0.7736356258,-0.7701163888,-0.7691486478,-0.7694125772,-0.7696765065,-0.7700284123,-0.7704683542,-0.7702924013,-0.769764483,-0.7695885301,-0.7700284123,-0.7717880011,-0.7755711675,-0.7792662978,-0.7810258865,-0.7826094627,-0.7848089933,-0.7860407233,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7861286998,-0.7861286998,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7862166762,-0.7860407233,-0.7848969698,-0.783313334,-0.7821695805,-0.7803220749,-0.7768908143,-0.7733716965,-0.7714360952,-0.7710841894,-0.7710841894,-0.7710841894,-0.7711721659,-0.7711721659,-0.770996213,-0.7707322836,-0.7704683542,-0.7703803778,-0.7703803778,-0.7702924013,-0.7706443071,-0.7721399069,-0.7747793198,-0.7781224847,-0.7817296982,-0.7842811346,-0.7849849463,-0.7853369117,-0.7854248881,-0.7853369117,-0.7855128646,-0.785776794,-0.785776794,-0.7849849463,-0.7837532163,-0.7822575569,-0.7815537453,-0.7816417217,-0.7819056511,-0.7817296982,-0.7815537453,-0.7814657688,-0.7813777924,-0.7813777924,-0.7813777924,-0.7814657688,-0.7814657688,-0.7813777924,-0.7812898159,-0.781113863,-0.7807619572,-0.7805860043,-0.7804980278,-0.7804100513,-0.7803220749,-0.7803220749,-0.7804980278,-0.7807619572,-0.7810258865,-0.7810258865,-0.781113863,-0.7812018394,-0.7810258865,-0.7806739807,-0.7809379101,-0.7812898159,-0.7812018394,-0.7810258865,-0.781113863,-0.7812898159,-0.7819056511,-0.7822575569,-0.7816417217,-0.7812018394,-0.7812018394,-0.7810258865,-0.781113863,-0.7812898159,-0.7812898159,-0.781113863,-0.781113863,-0.7815537453,-0.7817296982,-0.7812898159,-0.7809379101,-0.7808499336,-0.7806739807,-0.7802340984,-0.7799701095,-0.7800580859,-0.7804100513,-0.7806739807,-0.7810258865,-0.7812018394,-0.7812898159,-0.7812898159,-0.7812018394,-0.7812898159,-0.7815537453,-0.7814657688,-0.7812018394,-0.7812898159,-0.7812018394,-0.7807619572,-0.7807619572,-0.7812898159,-0.7814657688,-0.7815537453,-0.7814657688,-0.7812898159,-0.781113863,-0.7809379101,-0.7809379101,-0.781113863,-0.7821695805,-0.7841931581,-0.7853369117,-0.7850729823,-0.7842811346,-0.7841931581,-0.7844570875,-0.784545064,-0.7849849463,-0.7853369117,-0.7853369117,-0.7839292288,-0.7797061801,-0.7736356258,-0.7699404359,-0.7695005536,-0.769764483,-0.7702924013,-0.7703803778,-0.7703803778,-0.7705563307,-0.7702043653,-0.7696765065,-0.7695005536,-0.7706443071,-0.7741634846,-0.7781224847,-0.7805860043,-0.7824335098,-0.784545064,-0.7858647704,-0.7862166762,-0.7863046527,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7861286998,-0.7861286998,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7852489352,-0.7836652398,-0.7822575569,-0.7809379101,-0.7783865333,-0.7748672962,-0.7723158598,-0.7717880011,-0.7715240717,-0.7712601423,-0.7712601423,-0.7712601423,-0.7710841894,-0.7717000246,-0.7723158598,-0.7714360952,-0.7702924013,-0.7702043653,-0.7703803778,-0.7705563307,-0.7713481188,-0.7733716965,-0.7771547437,-0.7818176746,-0.7841931581,-0.7848089933,-0.7851609588,-0.7854248881,-0.7854248881,-0.7853369117,-0.7855128646,-0.7856888175,-0.7850729823,-0.7835772634,-0.7825214863,-0.7821695805,-0.7819936275,-0.7817296982,-0.7814657688,-0.7812898159,-0.7812898159,-0.7812898159,-0.7812898159,-0.7812898159,-0.7812018394,-0.7814657688,-0.7814657688,-0.781113863,-0.7807619572,-0.7806739807,-0.7806739807,-0.7806739807,-0.7805860043,-0.7805860043,-0.7807619572,-0.781113863,-0.7812018394,-0.781113863,-0.7812018394,-0.7813777924,-0.781113863,-0.7806739807,-0.7808499336,-0.7812898159,-0.7813777924,-0.7812018394,-0.7810258865,-0.7812018394,-0.7819936275,-0.7822575569,-0.7816417217,-0.781113863,-0.781113863,-0.7812018394,-0.7812018394,-0.7812018394,-0.7812898159,-0.7812018394,-0.7814657688,-0.7818176746,-0.7815537453,-0.7810258865,-0.7810258865,-0.7810258865,-0.7808499336,-0.7804980278,-0.7802340984,-0.7802340984,-0.7804980278,-0.7807619572,-0.781113863,-0.7812018394,-0.7812018394,-0.7812898159,-0.7813777924,-0.7813777924,-0.7814657688,-0.7814657688,-0.7810258865,-0.7812898159,-0.7812898159,-0.7806739807,-0.7807619572,-0.7814657688,-0.7815537453,-0.7814657688,-0.7813777924,-0.7812898159,-0.781113863,-0.781113863,-0.7814657688,-0.7825214863,-0.7843691111,-0.7855128646,-0.7853369117,-0.7844570875,-0.7841051817,-0.7842811346,-0.7848089933,-0.7852489352,-0.7853369117,-0.7849849463,-0.7831373215,-0.7785624862,-0.7738115788,-0.7710841894,-0.7707322836,-0.7709082365,-0.7714360952,-0.7722278833,-0.771963954,-0.770996213,-0.7703803778,-0.7700284123,-0.769764483,-0.7696765065,-0.7717000246,-0.7761870027,-0.7796182036,-0.7817296982,-0.7840172052,-0.785776794,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7861286998,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7865685821,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7862166762,-0.7861286998,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.785776794,-0.7843691111,-0.7826094627,-0.7815537453,-0.7799701095,-0.7771547437,-0.7745153904,-0.7734596729,-0.7724038363,-0.7714360952,-0.7715240717,-0.7712601423,-0.7712601423,-0.7738995552,-0.7750432491,-0.7724038363,-0.7703803778,-0.7707322836,-0.7706443071,-0.7703803778,-0.7702043653,-0.7704683542,-0.7721399069,-0.776450932,-0.7814657688,-0.7839292288,-0.7846330404,-0.7852489352,-0.7853369117,-0.7850729823,-0.7850729823,-0.7854248881,-0.7853369117,-0.7844570875,-0.783049345,-0.7823455334,-0.782081604,-0.7819056511,-0.7816417217,-0.7814657688,-0.7813777924,-0.7813777924,-0.7813777924,-0.7812898159,-0.7812898159,-0.7815537453,-0.7814657688,-0.781113863,-0.7809379101,-0.7808499336,-0.7809379101,-0.7809379101,-0.7807619572,-0.7807619572,-0.7809379101,-0.7810258865,-0.781113863,-0.7812018394,-0.7813777924,-0.7813777924,-0.7810258865,-0.7808499336,-0.7810258865,-0.7812018394,-0.7813777924,-0.7812898159,-0.7812018394,-0.7816417217,-0.7823455334,-0.7825214863,-0.7819056511,-0.781113863,-0.781113863,-0.7812018394,-0.7812018394,-0.7812018394,-0.781113863,-0.7813777924,-0.7817296982,-0.7816417217,-0.7812018394,-0.7810258865,-0.7810258865,-0.7809379101,-0.7809379101,-0.7807619572,-0.7804980278,-0.7804100513,-0.7806739807,-0.7809379101,-0.781113863,-0.7812898159,-0.7814657688,-0.7815537453,-0.7814657688,-0.7814657688,-0.7815537453,-0.7813777924,-0.7809379101,-0.7810258865,-0.7812018394,-0.7808499336,-0.7808499336,-0.7812898159,-0.7813777924,-0.7812898159,-0.7813777924,-0.781113863,-0.7809379101,-0.7815537453,-0.7829613686,-0.7846330404,-0.7856888175,-0.7855128646,-0.7848969698,-0.7846330404,-0.7847210169,-0.7849849463,-0.7852489352,-0.7855128646,-0.7848089933,-0.7818176746,-0.7765389085,-0.7725797892,-0.7717880011,-0.771963954,-0.7713481188,-0.77082026,-0.77082026,-0.7711721659,-0.7710841894,-0.7705563307,-0.7701163888,-0.7699404359,-0.7698524594,-0.7702043653,-0.7729318142,-0.7775066495,-0.7805860043,-0.7826094627,-0.7848089933,-0.7860407233,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7860407233,-0.7850729823,-0.7834013104,-0.7819936275,-0.7808499336,-0.7790903449,-0.7768028378,-0.7751312256,-0.7737236023,-0.7725797892,-0.7717880011,-0.7712601423,-0.7729318142,-0.7758350968,-0.7746913433,-0.7717000246,-0.77082026,-0.7709082365,-0.7705563307,-0.7704683542,-0.7704683542,-0.7700284123,-0.7699404359,-0.7715240717,-0.776450932,-0.7815537453,-0.7841051817,-0.7847210169,-0.7851609588,-0.7852489352,-0.7850729823,-0.7849849463,-0.7851609588,-0.7853369117,-0.7841931581,-0.7827854156,-0.7821695805,-0.7819936275,-0.7818176746,-0.7816417217,-0.7815537453,-0.7815537453,-0.7814657688,-0.7813777924,-0.7813777924,-0.7813777924,-0.7813777924,-0.7812898159,-0.7812898159,-0.7812018394,-0.7812018394,-0.781113863,-0.7809379101,-0.7809379101,-0.7809379101,-0.7810258865,-0.7812898159,-0.7814657688,-0.7814657688,-0.7812898159,-0.7809379101,-0.7809379101,-0.781113863,-0.7812898159,-0.7813777924,-0.7813777924,-0.7817296982,-0.7826094627,-0.7834892869,-0.7834013104,-0.7822575569,-0.7812018394,-0.781113863,-0.7812898159,-0.7813777924,-0.7812898159,-0.7813777924,-0.7816417217,-0.7817296982,-0.7813777924,-0.7812018394,-0.7812898159,-0.781113863,-0.7809379101,-0.7809379101,-0.7808499336,-0.7806739807,-0.7807619572,-0.7810258865,-0.7810258865,-0.7812018394,-0.7814657688,-0.7816417217,-0.7816417217,-0.7816417217,-0.7817296982,-0.7815537453,-0.7813777924,-0.7812018394,-0.781113863,-0.7809379101,-0.7810258865,-0.7812018394,-0.7812018394,-0.7812018394,-0.781113863,-0.781113863,-0.781113863,-0.7817296982,-0.7831373215,-0.7848089933,-0.785776794,-0.785600841,-0.7848969698,-0.784545064,-0.7848969698,-0.7853369117,-0.7854248881,-0.7852489352,-0.784545064,-0.781113863,-0.7753072381,-0.77082026,-0.7707322836,-0.7718759775,-0.7718759775,-0.7709082365,-0.7700284123,-0.7696765065,-0.7696765065,-0.7696765065,-0.7695885301,-0.7696765065,-0.769764483,-0.7698524594,-0.7712601423,-0.7749552727,-0.7786504626,-0.7812018394,-0.7834892869,-0.7854248881,-0.7861286998,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863046527,-0.785776794,-0.7844570875,-0.7827854156,-0.7817296982,-0.7804980278,-0.7788264155,-0.7769787908,-0.7752192616,-0.7738115788,-0.7724038363,-0.7721399069,-0.7738995552,-0.7745153904,-0.7723158598,-0.77082026,-0.77082026,-0.7706443071,-0.7704683542,-0.7704683542,-0.7703803778,-0.7702043653,-0.7700284123,-0.7703803778,-0.7728438377,-0.7773306966,-0.7819056511,-0.7841051817,-0.7847210169,-0.7851609588,-0.7854248881,-0.7853369117,-0.7852489352,-0.785600841,-0.7854248881,-0.7843691111,-0.7829613686,-0.782081604,-0.7818176746,-0.7816417217,-0.7815537453,-0.7815537453,-0.7815537453,-0.7814657688,-0.7812898159,-0.7812898159,-0.7813777924,-0.7813777924,-0.7814657688,-0.7813777924,-0.7813777924,-0.7812898159,-0.7812018394,-0.781113863,-0.7810258865,-0.7812018394,-0.7814657688,-0.7813777924,-0.7812018394,-0.7810258865,-0.7809379101,-0.7810258865,-0.7812898159,-0.7814657688,-0.7816417217,-0.7819056511,-0.7824335098,-0.7834892869,-0.7844570875,-0.7841931581,-0.7825214863,-0.7812018394,-0.7812018394,-0.7814657688,-0.7813777924,-0.7812898159,-0.7814657688,-0.7816417217,-0.7814657688,-0.7812898159,-0.7813777924,-0.7814657688,-0.7813777924,-0.7812018394,-0.781113863,-0.7810258865,-0.7809379101,-0.781113863,-0.7812898159,-0.7812898159,-0.7813777924,-0.7814657688,-0.7815537453,-0.7815537453,-0.7816417217,-0.7817296982,-0.7817296982,-0.7815537453,-0.7814657688,-0.7812018394,-0.7808499336,-0.7809379101,-0.7815537453,-0.7814657688,-0.7810258865,-0.7809379101,-0.7812898159,-0.7822575569,-0.7838411927,-0.7852489352,-0.785776794,-0.7856888175,-0.7852489352,-0.784545064,-0.784545064,-0.7852489352,-0.7855128646,-0.7853369117,-0.7842811346,-0.7803220749,-0.7741634846,-0.7700284123,-0.7693246007,-0.7699404359,-0.7701163888,-0.7702924013,-0.7701163888,-0.7696765065,-0.7694125772,-0.7693246007,-0.7693246007,-0.7695005536,-0.7696765065,-0.7695005536,-0.7700284123,-0.7730197906,-0.7773306966,-0.7799701095,-0.7818176746,-0.7841931581,-0.7856888175,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7864806056,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.785600841,-0.7841051817,-0.7828733921,-0.7819936275,-0.7809379101,-0.7794422507,-0.7776826024,-0.7758350968,-0.7738995552,-0.7726678848,-0.7724038363,-0.7717880011,-0.770996213,-0.7707322836,-0.7707322836,-0.7705563307,-0.7705563307,-0.7703803778,-0.7703803778,-0.7705563307,-0.7706443071,-0.7707322836,-0.7711721659,-0.7731077671,-0.7775946259,-0.7822575569,-0.7841931581,-0.7846330404,-0.7852489352,-0.7856888175,-0.7855128646,-0.7851609588,-0.7855128646,-0.7855128646,-0.784545064,-0.7829613686,-0.7819936275,-0.7816417217,-0.7814657688,-0.7814657688,-0.7814657688,-0.7813777924,-0.7812898159,-0.7812898159,-0.7813777924,-0.7813777924,-0.7812898159,-0.7812018394,-0.7813777924,-0.7813777924,-0.7813777924,-0.7812898159,-0.7812018394,-0.7813777924,-0.7814657688,-0.7812898159,-0.781113863,-0.7810258865,-0.781113863,-0.7812018394,-0.7812898159,-0.7814657688,-0.7819056511,-0.7824335098,-0.7831373215,-0.7842811346,-0.7851609588,-0.7847210169,-0.7829613686,-0.7814657688,-0.7813777924,-0.7816417217,-0.7814657688,-0.7812018394,-0.7812898159,-0.7813777924,-0.7812898159,-0.7812898159,-0.7812898159,-0.7814657688,-0.7814657688,-0.7813777924,-0.7812898159,-0.7812018394,-0.7812018394,-0.7812898159,-0.7814657688,-0.7814657688,-0.7814657688,-0.7814657688,-0.7814657688,-0.7814657688,-0.7815537453,-0.7816417217,-0.7816417217,-0.7816417217,-0.7815537453,-0.7813777924,-0.7809379101,-0.7808499336,-0.7819056511,-0.7826094627,-0.782081604,-0.7819056511,-0.7827854156,-0.7841931581,-0.7854248881,-0.7858647704,-0.7855128646,-0.7851609588,-0.7848969698,-0.7848089933,-0.7852489352,-0.7855128646,-0.7848969698,-0.7831373215,-0.7793542743,-0.7740755081,-0.7704683542,-0.7696765065,-0.7699404359,-0.7698524594,-0.769764483,-0.7695885301,-0.7695885301,-0.7695885301,-0.7694125772,-0.7693246007,-0.7692366242,-0.7694125772,-0.7696765065,-0.7701163888,-0.7723158598,-0.7761870027,-0.7792662978,-0.7806739807,-0.7825214863,-0.7848089933,-0.7858647704,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7862166762,-0.7855128646,-0.7843691111,-0.783313334,-0.7825214863,-0.7816417217,-0.7803220749,-0.7786504626,-0.7765389085,-0.7741634846,-0.7720519304,-0.770996213,-0.7709082365,-0.770996213,-0.770996213,-0.77082026,-0.7705563307,-0.7703803778,-0.7709082365,-0.7722278833,-0.7730197906,-0.7722278833,-0.7706443071,-0.7704683542,-0.7731077671,-0.7782104611,-0.7822575569,-0.7841051817,-0.7847210169,-0.7853369117,-0.7854248881,-0.7849849463,-0.7852489352,-0.785776794,-0.785776794,-0.784545064,-0.7828733921,-0.7818176746,-0.7814657688,-0.7816417217,-0.7815537453,-0.7813777924,-0.7812898159,-0.7812898159,-0.7813777924,-0.7813777924,-0.7812018394,-0.781113863,-0.7812898159,-0.7813777924,-0.7813777924,-0.7813777924,-0.7814657688,-0.7814657688,-0.7812898159,-0.781113863,-0.781113863,-0.7812018394,-0.7813777924,-0.7815537453,-0.7813777924,-0.7815537453,-0.7822575569,-0.7828733921,-0.7837532163,-0.7850729823,-0.785776794,-0.7854248881,-0.7839292288,-0.782081604,-0.7814657688,-0.7816417217,-0.7815537453,-0.7812898159,-0.7812898159,-0.7812018394,-0.7812018394,-0.7812018394,-0.7812018394,-0.7813777924,-0.7814657688,-0.7814657688,-0.7813777924,-0.7812898159,-0.7812898159,-0.7813777924,-0.7815537453,-0.7815537453,-0.7815537453,-0.7813777924,-0.7815537453,-0.7815537453,-0.7815537453,-0.7815537453,-0.7815537453,-0.7815537453,-0.7815537453,-0.7816417217,-0.7812898159,-0.7810258865,-0.782081604,-0.7836652398,-0.7841931581,-0.7843691111,-0.7848969698,-0.7852489352,-0.7853369117,-0.7852489352,-0.7848089933,-0.7846330404,-0.7848089933,-0.7850729823,-0.7852489352,-0.7847210169,-0.7816417217,-0.7768028378,-0.7727558613,-0.7706443071,-0.7703803778,-0.7707322836,-0.7702924013,-0.769764483,-0.7696765065,-0.7695885301,-0.7695885301,-0.7696765065,-0.7696765065,-0.769764483,-0.7700284123,-0.7706443071,-0.7716120481,-0.7734596729,-0.7763629556,-0.778914392,-0.780146122,-0.7812018394,-0.783313334,-0.7855128646,-0.7861286998,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7862166762,-0.785600841,-0.7847210169,-0.7838411927,-0.783049345,-0.7819936275,-0.7806739807,-0.7791783214,-0.7773306966,-0.7747793198,-0.771963954,-0.77082026,-0.7709082365,-0.770996213,-0.7707322836,-0.7704683542,-0.7706443071,-0.7725797892,-0.7759230733,-0.7772427201,-0.7741634846,-0.7707322836,-0.7699404359,-0.7709082365,-0.7731077671,-0.7771547437,-0.7814657688,-0.7839292288,-0.7847210169,-0.7852489352,-0.7854248881,-0.7854248881,-0.7856888175,-0.7859527469,-0.785776794,-0.7846330404,-0.7829613686,-0.7817296982,-0.7815537453,-0.7815537453,-0.7814657688,-0.7814657688,-0.7813777924,-0.7813777924,-0.7813777924,-0.7812018394,-0.7812018394,-0.7812898159,-0.7812898159,-0.7812898159,-0.7813777924,-0.7813777924,-0.7812898159,-0.7812018394,-0.7810258865,-0.7810258865,-0.781113863,-0.7815537453,-0.7817296982,-0.7815537453,-0.7817296982,-0.7827854156,-0.7839292288,-0.7848969698,-0.7858647704,-0.7862166762,-0.7859527469,-0.7848089933,-0.7828733921,-0.7817296982,-0.7815537453,-0.7813777924,-0.7812898159,-0.7813777924,-0.7812018394,-0.781113863,-0.7812898159,-0.7812898159,-0.7812898159,-0.7814657688,-0.7814657688,-0.7813777924,-0.7813777924,-0.7813777924,-0.7815537453,-0.7816417217,-0.7817296982,-0.7817296982,-0.7816417217,-0.7816417217,-0.7816417217,-0.7815537453,-0.7814657688,-0.7815537453,-0.7814657688,-0.7814657688,-0.7815537453,-0.7815537453,-0.7817296982,-0.7831373215,-0.7848969698,-0.7858647704,-0.7860407233,-0.7859527469,-0.7854248881,-0.784545064,-0.7839292288,-0.7841931581,-0.7849849463,-0.7854248881,-0.7850729823,-0.7840172052,-0.7807619572,-0.7752192616,-0.7709082365,-0.7695885301,-0.769764483,-0.7700284123,-0.7702924013,-0.7702043653,-0.7695885301,-0.7693246007,-0.7694125772,-0.7695885301,-0.7700284123,-0.77082026,-0.7717880011,-0.7731077671,-0.7744274139,-0.7756591439,-0.777418673,-0.7791783214,-0.780146122,-0.7808499336,-0.7826094627,-0.7847210169,-0.7859527469,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7862166762,-0.7858647704,-0.7852489352,-0.7844570875,-0.7834013104,-0.782081604,-0.7810258865,-0.7799701095,-0.7781224847,-0.7751312256,-0.7724038363,-0.7710841894,-0.77082026,-0.7706443071,-0.7705563307,-0.77082026,-0.7733716965,-0.7775066495,-0.7780345082,-0.7736356258,-0.7704683542,-0.7700284123,-0.7700284123,-0.7702043653,-0.7721399069,-0.7761870027,-0.7806739807,-0.7835772634,-0.7848969698,-0.7855128646,-0.7855128646,-0.7854248881,-0.7855128646,-0.785776794,-0.7856888175,-0.7848089933,-0.7834013104,-0.7821695805,-0.7815537453,-0.7814657688,-0.7815537453,-0.7814657688,-0.7813777924,-0.7812898159,-0.7812018394,-0.7812018394,-0.7812898159,-0.7813777924,-0.7812018394,-0.7812898159,-0.7812898159,-0.7813777924,-0.7813777924,-0.781113863,-0.7810258865,-0.7812018394,-0.7816417217,-0.7817296982,-0.7814657688,-0.7819056511,-0.7834892869,-0.7850729823,-0.7859527469,-0.7862166762,-0.7863046527,-0.7860407233,-0.7850729823,-0.7834892869,-0.7821695805,-0.7814657688,-0.781113863,-0.7812018394,-0.7813777924,-0.7812898159,-0.7812018394,-0.7812898159,-0.7812898159,-0.7812898159,-0.7813777924,-0.7814657688,-0.7813777924,-0.7812018394,-0.7813777924,-0.7817296982,-0.7819056511,-0.7818176746,-0.7817296982,-0.7816417217,-0.7816417217,-0.7816417217,-0.7815537453,-0.7814657688,-0.7813777924,-0.7812898159,-0.7812898159,-0.7816417217,-0.7825214863,-0.7838411927,-0.7851609588,-0.7860407233,-0.7861286998,-0.7858647704,-0.7855128646,-0.7850729823,-0.7844570875,-0.7841931581,-0.7848089933,-0.7854248881,-0.7853369117,-0.783313334,-0.7787384391,-0.7734596729,-0.7702924013,-0.7694125772,-0.7695885301,-0.7695885301,-0.7695005536,-0.7695885301,-0.7696765065,-0.7696765065,-0.7695885301,-0.7695885301,-0.7704683542,-0.7723158598,-0.774251461,-0.7757471204,-0.7769787908,-0.7782104611,-0.7790023685,-0.7800580859,-0.7812018394,-0.7818176746,-0.783049345,-0.7849849463,-0.7860407233,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7862166762,-0.785776794,-0.7849849463,-0.7835772634,-0.7821695805,-0.7812018394,-0.7804980278,-0.778914392,-0.7755711675,-0.7722278833,-0.7709082365,-0.77082026,-0.7705563307,-0.7705563307,-0.7724918127,-0.7750432491,-0.7744274139,-0.7716120481,-0.7703803778,-0.7701163888,-0.7698524594,-0.769764483,-0.7700284123,-0.7714360952,-0.7746913433,-0.7794422507,-0.7834013104,-0.7850729823,-0.7855128646,-0.7855128646,-0.7850729823,-0.7850729823,-0.785600841,-0.7859527469,-0.7855128646,-0.7842811346,-0.7828733921,-0.7819056511,-0.7817296982,-0.7816417217,-0.7814657688,-0.7812898159,-0.7812018394,-0.7812018394,-0.7812898159,-0.7812898159,-0.7812018394,-0.7812018394,-0.7813777924,-0.7815537453,-0.7815537453,-0.7812898159,-0.7812018394,-0.7813777924,-0.7816417217,-0.7817296982,-0.7816417217,-0.7822575569,-0.7838411927,-0.7854248881,-0.7861286998,-0.7862166762,-0.7862166762,-0.7859527469,-0.7848969698,-0.7835772634,-0.7823455334,-0.7814657688,-0.7812898159,-0.7813777924,-0.7813777924,-0.7812898159,-0.7812898159,-0.7813777924,-0.7812898159,-0.7812898159,-0.7813777924,-0.7813777924,-0.7812018394,-0.781113863,-0.7812898159,-0.7817296982,-0.7818176746,-0.7817296982,-0.7816417217,-0.7814657688,-0.7814657688,-0.7815537453,-0.7814657688,-0.7812898159,-0.7813777924,-0.7815537453,-0.7819936275,-0.7831373215,-0.7846330404,-0.7856888175,-0.7860407233,-0.7859527469,-0.785600841,-0.7850729823,-0.7848969698,-0.7848969698,-0.7850729823,-0.7853369117,-0.7853369117,-0.7848969698,-0.7826094627,-0.7775946259,-0.7724038363,-0.7695885301,-0.7695005536,-0.7699404359,-0.7698524594,-0.7692366242,-0.7693246007,-0.7695885301,-0.7695885301,-0.7695885301,-0.7700284123,-0.7714360952,-0.7739875317,-0.7765389085,-0.7781224847,-0.7790903449,-0.7800580859,-0.781113863,-0.7819056511,-0.7826974392,-0.7836652398,-0.784545064,-0.7854248881,-0.7861286998,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7863046527,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7860407233,-0.7853369117,-0.7838411927,-0.7822575569,-0.7814657688,-0.7805860043,-0.7782104611,-0.7746033669,-0.7717000246,-0.77082026,-0.7703803778,-0.7702924013,-0.7712601423,-0.771963954,-0.7714360952,-0.7709082365,-0.7706443071,-0.7702043653,-0.7699404359,-0.7699404359,-0.7699404359,-0.7701163888,-0.7707322836,-0.77328372,-0.7777705789,-0.7824335098,-0.7848969698,-0.785600841,-0.7851609588,-0.7846330404,-0.7849849463,-0.7856888175,-0.7859527469,-0.785776794,-0.7850729823,-0.7841931581,-0.7832252979,-0.7822575569,-0.7815537453,-0.7813777924,-0.7813777924,-0.7812018394,-0.7812018394,-0.7812898159,-0.7812018394,-0.7812018394,-0.7812898159,-0.7813777924,-0.7813777924,-0.7812018394,-0.7812898159,-0.7815537453,-0.7817296982,-0.7819056511,-0.7821695805,-0.7829613686,-0.7844570875,-0.7856888175,-0.7861286998,-0.7861286998,-0.7861286998,-0.7858647704,-0.7848089933,-0.783313334,-0.7821695805,-0.7815537453,-0.7814657688,-0.7814657688,-0.7813777924,-0.7812898159,-0.7813777924,-0.7814657688,-0.7813777924,-0.7812898159,-0.7812898159,-0.7812018394,-0.7812018394,-0.7812898159,-0.7814657688,-0.7816417217,-0.7816417217,-0.7815537453,-0.7815537453,-0.7813777924,-0.7812898159,-0.7814657688,-0.7817296982,-0.7818176746,-0.782081604,-0.783049345,-0.7842811346,-0.7853369117,-0.7858647704,-0.7859527469,-0.7856888175,-0.7852489352,-0.7848089933,-0.7844570875,-0.7846330404,-0.7850729823,-0.7854248881,-0.7854248881,-0.7844570875,-0.7812898159,-0.7760110497,-0.7716120481,-0.7696765065,-0.7692366242,-0.769764483,-0.7705563307,-0.7702924013,-0.7695005536,-0.7695005536,-0.7695885301,-0.7695005536,-0.7702924013,-0.7723158598,-0.7749552727,-0.7775946259,-0.7795302272,-0.7807619572,-0.7818176746,-0.7828733921,-0.7838411927,-0.784545064,-0.7851609588,-0.785600841,-0.7859527469,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7862166762,-0.7861286998,-0.7854248881,-0.7841931581,-0.7826974392,-0.7815537453,-0.7802340984,-0.7770667672,-0.7729318142,-0.77082026,-0.7702924013,-0.7702043653,-0.7706443071,-0.7709082365,-0.7709082365,-0.7709082365,-0.7707322836,-0.7703803778,-0.7701163888,-0.7700284123,-0.7701163888,-0.7700284123,-0.7699404359,-0.7702924013,-0.7718759775,-0.7761870027,-0.7819056511,-0.7848969698,-0.7852489352,-0.7848969698,-0.7847210169,-0.7849849463,-0.7855128646,-0.785776794,-0.7858647704,-0.785776794,-0.7851609588,-0.7837532163,-0.7824335098,-0.7819936275,-0.7817296982,-0.7815537453,-0.7813777924,-0.7813777924,-0.7813777924,-0.7812898159,-0.7812898159,-0.7813777924,-0.7813777924,-0.7812018394,-0.7814657688,-0.7817296982,-0.7819936275,-0.7821695805,-0.7826974392,-0.7837532163,-0.7851609588,-0.7859527469,-0.7862166762,-0.7863046527,-0.7861286998,-0.7860407233,-0.7854248881,-0.7841051817,-0.7828733921,-0.782081604,-0.7817296982,-0.7815537453,-0.7813777924,-0.7812898159,-0.7813777924,-0.7815537453,-0.7815537453,-0.7813777924,-0.7812898159,-0.7813777924,-0.7815537453,-0.7815537453,-0.7816417217,-0.7816417217,-0.7815537453,-0.7814657688,-0.7814657688,-0.7814657688,-0.7815537453,-0.7819056511,-0.7826974392,-0.7834013104,-0.7841051817,-0.7850729823,-0.7859527469,-0.7859527469,-0.7856888175,-0.7853369117,-0.7849849463,-0.7848089933,-0.784545064,-0.7847210169,-0.7851609588,-0.7852489352,-0.7850729823,-0.7840172052,-0.780146122,-0.774251461,-0.7702924013,-0.7695005536,-0.7694125772,-0.7694125772,-0.769764483,-0.7700284123,-0.7700284123,-0.7698524594,-0.7696765065,-0.7695885301,-0.7702924013,-0.7726678848,-0.7759230733,-0.7783865333,-0.7797941566,-0.7813777924,-0.783049345,-0.7843691111,-0.7851609588,-0.7856888175,-0.7860407233,-0.7861286998,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7856888175,-0.7842811346,-0.7825214863,-0.7812898159,-0.778914392,-0.7745153904,-0.7712601423,-0.7703803778,-0.7702924013,-0.7705563307,-0.7709082365,-0.7707322836,-0.7709082365,-0.770996213,-0.7707322836,-0.7706443071,-0.7703803778,-0.7701163888,-0.7699404359,-0.7699404359,-0.7700284123,-0.7699404359,-0.7711721659,-0.7761870027,-0.7817296982,-0.7847210169,-0.7852489352,-0.7849849463,-0.784545064,-0.7846330404,-0.7852489352,-0.785600841,-0.7858647704,-0.7859527469,-0.7854248881,-0.7842811346,-0.7832252979,-0.7824335098,-0.782081604,-0.7819936275,-0.7818176746,-0.7817296982,-0.7816417217,-0.7817296982,-0.7818176746,-0.7817296982,-0.7815537453,-0.7818176746,-0.7822575569,-0.7824335098,-0.7827854156,-0.7836652398,-0.7848969698,-0.785776794,-0.7860407233,-0.7861286998,-0.7861286998,-0.7860407233,-0.7860407233,-0.7859527469,-0.7853369117,-0.7841931581,-0.7829613686,-0.7822575569,-0.7819056511,-0.7816417217,-0.7814657688,-0.7814657688,-0.7817296982,-0.7819056511,-0.7818176746,-0.7816417217,-0.7818176746,-0.7821695805,-0.7819936275,-0.7817296982,-0.7816417217,-0.7816417217,-0.7817296982,-0.782081604,-0.7824335098,-0.7826094627,-0.783049345,-0.7840172052,-0.7850729823,-0.785776794,-0.7860407233,-0.7858647704,-0.7854248881,-0.7849849463,-0.784545064,-0.784545064,-0.7847210169,-0.7848969698,-0.7852489352,-0.7854248881,-0.7849849463,-0.7834013104,-0.7790903449,-0.7735476494,-0.7698524594,-0.7689726949,-0.7691486478,-0.7695005536,-0.7699404359,-0.7699404359,-0.7696765065,-0.7696765065,-0.769764483,-0.7695005536,-0.7702043653,-0.7730197906,-0.7761870027,-0.7785624862,-0.7804100513,-0.7819056511,-0.7837532163,-0.7851609588,-0.7858647704,-0.7860407233,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7862166762,-0.7862166762,-0.7863926291,-0.7863046527,-0.7862166762,-0.785600841,-0.7836652398,-0.7817296982,-0.7797061801,-0.7758350968,-0.7720519304,-0.7706443071,-0.7705563307,-0.7706443071,-0.7705563307,-0.7705563307,-0.7710841894,-0.7714360952,-0.7716120481,-0.7717880011,-0.7709082365,-0.7700284123,-0.7700284123,-0.7701163888,-0.7701163888,-0.7700284123,-0.7698524594,-0.7713481188,-0.7758350968,-0.7812898159,-0.7843691111,-0.7851609588,-0.7849849463,-0.784545064,-0.7846330404,-0.7851609588,-0.7855128646,-0.7858647704,-0.7860407233,-0.785776794,-0.7850729823,-0.7841051817,-0.7832252979,-0.7828733921,-0.7826094627,-0.7821695805,-0.7819936275,-0.782081604,-0.7822575569,-0.7821695805,-0.782081604,-0.7823455334,-0.7826974392,-0.783049345,-0.7838411927,-0.7849849463,-0.785776794,-0.7858647704,-0.7856888175,-0.7855128646,-0.7854248881,-0.7853369117,-0.7854248881,-0.7855128646,-0.7855128646,-0.7850729823,-0.7841931581,-0.7832252979,-0.7825214863,-0.7821695805,-0.7819936275,-0.7819936275,-0.7819936275,-0.7822575569,-0.7823455334,-0.7821695805,-0.7823455334,-0.7826094627,-0.7823455334,-0.7821695805,-0.7821695805,-0.7823455334,-0.7827854156,-0.783313334,-0.7834892869,-0.7838411927,-0.784545064,-0.7853369117,-0.785776794,-0.785776794,-0.785600841,-0.7851609588,-0.7847210169,-0.7843691111,-0.7841051817,-0.7844570875,-0.7849849463,-0.7851609588,-0.7852489352,-0.7848969698,-0.7829613686,-0.7785624862,-0.7731957436,-0.7701163888,-0.7690606713,-0.7689726949,-0.7690606713,-0.7695005536,-0.7699404359,-0.7701163888,-0.7699404359,-0.7698524594,-0.7696765065,-0.7700284123,-0.7724918127,-0.7761870027,-0.7787384391,-0.7805860043,-0.7825214863,-0.7843691111,-0.785600841,-0.7861286998,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7862166762,-0.7861286998,-0.7861286998,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863046527,-0.7861286998,-0.7848969698,-0.7824335098,-0.7800580859,-0.7769787908,-0.7731957436,-0.770996213,-0.7706443071,-0.7707322836,-0.7704683542,-0.7705563307,-0.7710841894,-0.7711721659,-0.7718759775,-0.7724038363,-0.770996213,-0.7701163888,-0.7702924013,-0.7702924013,-0.7701163888,-0.7703803778,-0.7705563307,-0.7705563307,-0.7718759775,-0.7756591439,-0.7805860043,-0.7837532163,-0.7849849463,-0.7851609588,-0.7848969698,-0.7848089933,-0.7850729823,-0.7853369117,-0.7854248881,-0.7854248881,-0.7854248881,-0.7853369117,-0.7849849463,-0.784545064,-0.7841931581,-0.7834892869,-0.7827854156,-0.7826094627,-0.7826094627,-0.7826974392,-0.7828733921,-0.783049345,-0.7834892869,-0.7841931581,-0.7850729823,-0.7854248881,-0.7852489352,-0.7848969698,-0.784545064,-0.7840172052,-0.7834013104,-0.7829613686,-0.7832252979,-0.7838411927,-0.7841931581,-0.7846330404,-0.7848969698,-0.784545064,-0.7837532163,-0.7832252979,-0.7828733921,-0.7826094627,-0.7826094627,-0.7826974392,-0.7827854156,-0.7827854156,-0.7832252979,-0.7834013104,-0.783049345,-0.783049345,-0.7832252979,-0.7835772634,-0.7841931581,-0.784545064,-0.7847210169,-0.7851609588,-0.7855128646,-0.7856888175,-0.7853369117,-0.7848969698,-0.7847210169,-0.7844570875,-0.7842811346,-0.7842811346,-0.7846330404,-0.7849849463,-0.7851609588,-0.7849849463,-0.7842811346,-0.7816417217,-0.7768028378,-0.7722278833,-0.7702043653,-0.7694125772,-0.7690606713,-0.7690606713,-0.7691486478,-0.7693246007,-0.7695885301,-0.7698524594,-0.7700284123,-0.769764483,-0.7700284123,-0.7723158598,-0.7759230733,-0.7785624862,-0.7802340984,-0.7823455334,-0.7846330404,-0.785776794,-0.7861286998,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7862166762,-0.7859527469,-0.7860407233,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863046527,-0.7862166762,-0.785600841,-0.783313334,-0.7807619572,-0.7782985568,-0.7745153904,-0.7714360952,-0.7707322836,-0.77082026,-0.7705563307,-0.7707322836,-0.7709082365,-0.7707322836,-0.7712601423,-0.7717000246,-0.7707322836,-0.7702924013,-0.7705563307,-0.7703803778,-0.7703803778,-0.7706443071,-0.77082026,-0.7707322836,-0.770996213,-0.7722278833,-0.7750432491,-0.7788264155,-0.7821695805,-0.7841931581,-0.7850729823,-0.7852489352,-0.7850729823,-0.7850729823,-0.7849849463,-0.7848089933,-0.7848969698,-0.7851609588,-0.7855128646,-0.785776794,-0.785600841,-0.7851609588,-0.7846330404,-0.7841931581,-0.7838411927,-0.7838411927,-0.7841051817,-0.7843691111,-0.7847210169,-0.7853369117,-0.7854248881,-0.7849849463,-0.7841931581,-0.7834892869,-0.7828733921,-0.7818176746,-0.779882133,-0.7790023685,-0.780146122,-0.7814657688,-0.7815537453,-0.7819936275,-0.783049345,-0.7840172052,-0.7844570875,-0.7843691111,-0.7841051817,-0.7836652398,-0.7834892869,-0.7834892869,-0.7834892869,-0.7836652398,-0.7842811346,-0.7846330404,-0.7843691111,-0.7842811346,-0.784545064,-0.7848969698,-0.7850729823,-0.7852489352,-0.7853369117,-0.7851609588,-0.7850729823,-0.7848969698,-0.7846330404,-0.7842811346,-0.7842811346,-0.7843691111,-0.784545064,-0.7848969698,-0.7851609588,-0.7850729823,-0.784545064,-0.7828733921,-0.7792662978,-0.7745153904,-0.7706443071,-0.7690606713,-0.7689726949,-0.7689726949,-0.7689726949,-0.7690606713,-0.7689726949,-0.7692366242,-0.7695885301,-0.769764483,-0.769764483,-0.769764483,-0.7715240717,-0.7753952146,-0.7785624862,-0.780146122,-0.7819936275,-0.7842811346,-0.785776794,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863926291,-0.7864806056,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7861286998,-0.7861286998,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7859527469,-0.7842811346,-0.7818176746,-0.7795302272,-0.7761870027,-0.7726678848,-0.770996213,-0.7707322836,-0.7706443071,-0.7707322836,-0.77082026,-0.7704683542,-0.7705563307,-0.7706443071,-0.7703803778,-0.7704683542,-0.7704683542,-0.7704683542,-0.7706443071,-0.7705563307,-0.7705563307,-0.77082026,-0.77082026,-0.7707322836,-0.770996213,-0.7724038363,-0.775483191,-0.7796182036,-0.783049345,-0.7848089933,-0.7853369117,-0.7854248881,-0.7851609588,-0.7846330404,-0.7844570875,-0.784545064,-0.7849849463,-0.7856888175,-0.7858647704,-0.785776794,-0.7856888175,-0.785600841,-0.7853369117,-0.7854248881,-0.7855128646,-0.7854248881,-0.7853369117,-0.7853369117,-0.7848089933,-0.7839292288,-0.7828733921,-0.7819936275,-0.7815537453,-0.7804100513,-0.7780345082,-0.7767148614,-0.7780345082,-0.7794422507,-0.7791783214,-0.778914392,-0.7797061801,-0.7814657688,-0.783049345,-0.7838411927,-0.7841931581,-0.7843691111,-0.7842811346,-0.7841931581,-0.7841931581,-0.7843691111,-0.7847210169,-0.7848969698,-0.7848089933,-0.7847210169,-0.7847210169,-0.7847210169,-0.7846330404,-0.7847210169,-0.7847210169,-0.7844570875,-0.7843691111,-0.7842811346,-0.7841931581,-0.7842811346,-0.784545064,-0.7848969698,-0.7850729823,-0.7850729823,-0.7847210169,-0.783313334,-0.7804980278,-0.7765389085,-0.7724918127,-0.7699404359,-0.7688847184,-0.768796742,-0.768796742,-0.7687087655,-0.768796742,-0.7690606713,-0.7689726949,-0.7689726949,-0.7694125772,-0.7698524594,-0.769764483,-0.77082026,-0.7744274139,-0.7780345082,-0.7800580859,-0.7818176746,-0.7841051817,-0.7856888175,-0.7862166762,-0.7863046527,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7860407233,-0.7850729823,-0.7829613686,-0.7809379101,-0.7786504626,-0.7753952146,-0.7722278833,-0.7706443071,-0.7705563307,-0.77082026,-0.7705563307,-0.7702043653,-0.7701163888,-0.7701163888,-0.7702924013,-0.7705563307,-0.7706443071,-0.7705563307,-0.7705563307,-0.7703803778,-0.7704683542,-0.7709082365,-0.77082026,-0.7703803778,-0.7702043653,-0.7702043653,-0.7709082365,-0.7731957436,-0.7769787908,-0.7806739807,-0.7834892869,-0.7849849463,-0.7853369117,-0.7850729823,-0.784545064,-0.7842811346,-0.7844570875,-0.7849849463,-0.7854248881,-0.7855128646,-0.7855128646,-0.7855128646,-0.7855128646,-0.785600841,-0.785600841,-0.7851609588,-0.7848089933,-0.7843691111,-0.7835772634,-0.7826974392,-0.7819936275,-0.7817296982,-0.7813777924,-0.7804980278,-0.779882133,-0.7795302272,-0.7788264155,-0.7786504626,-0.7788264155,-0.778914392,-0.7794422507,-0.7804100513,-0.7816417217,-0.7826974392,-0.7835772634,-0.7842811346,-0.7844570875,-0.7844570875,-0.7843691111,-0.7841931581,-0.7841051817,-0.7841051817,-0.7839292288,-0.7836652398,-0.7834892869,-0.7832252979,-0.7832252979,-0.7834013104,-0.7836652398,-0.7839292288,-0.7840172052,-0.7841051817,-0.7844570875,-0.7847210169,-0.7849849463,-0.7851609588,-0.7848969698,-0.7838411927,-0.7813777924,-0.7773306966,-0.7733716965,-0.7707322836,-0.7694125772,-0.7688847184,-0.768796742,-0.7689726949,-0.7689726949,-0.768796742,-0.7686207891,-0.7688847184,-0.7690606713,-0.7689726949,-0.7693246007,-0.769764483,-0.7700284123,-0.7725797892,-0.7771547437,-0.7797061801,-0.7810258865,-0.7834892869,-0.7855128646,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7865685821,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7856888175,-0.7840172052,-0.7819056511,-0.7802340984,-0.7782985568,-0.7753952146,-0.7727558613,-0.7714360952,-0.7710841894,-0.7707322836,-0.77082026,-0.7713481188,-0.7721399069,-0.7729318142,-0.77328372,-0.7731957436,-0.7728438377,-0.7722278833,-0.7711721659,-0.7706443071,-0.77082026,-0.7707322836,-0.7706443071,-0.7706443071,-0.7703803778,-0.7700284123,-0.7702924013,-0.7715240717,-0.7740755081,-0.7777705789,-0.7812898159,-0.7834892869,-0.7847210169,-0.7849849463,-0.7848969698,-0.7847210169,-0.7846330404,-0.7847210169,-0.7848969698,-0.7849849463,-0.7849849463,-0.7850729823,-0.7850729823,-0.7848969698,-0.784545064,-0.7841051817,-0.7836652398,-0.7831373215,-0.7826974392,-0.7824335098,-0.7824335098,-0.7819936275,-0.7812898159,-0.7816417217,-0.7817296982,-0.7802340984,-0.778914392,-0.778914392,-0.779882133,-0.7807619572,-0.7812898159,-0.7819056511,-0.7824335098,-0.783049345,-0.7839292288,-0.7842811346,-0.7842811346,-0.7841051817,-0.7837532163,-0.7835772634,-0.7835772634,-0.7832252979,-0.7828733921,-0.7826974392,-0.7826094627,-0.7826974392,-0.783049345,-0.7835772634,-0.7841051817,-0.7844570875,-0.7847210169,-0.7849849463,-0.7850729823,-0.7848089933,-0.7838411927,-0.7815537453,-0.7780345082,-0.7740755081,-0.770996213,-0.7695005536,-0.7691486478,-0.7689726949,-0.7688847184,-0.7688847184,-0.7689726949,-0.7690606713,-0.7689726949,-0.768796742,-0.7687087655,-0.7688847184,-0.7690606713,-0.7693246007,-0.7695885301,-0.7710841894,-0.7747793198,-0.7786504626,-0.7804980278,-0.7824335098,-0.7849849463,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7861286998,-0.7861286998,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7862166762,-0.7860407233,-0.7849849463,-0.7828733921,-0.7812018394,-0.7803220749,-0.7790023685,-0.7772427201,-0.7753952146,-0.7738115788,-0.7734596729,-0.7743394375,-0.7755711675,-0.7767148614,-0.777418673,-0.7775946259,-0.7772427201,-0.7769787908,-0.7761870027,-0.7744274139,-0.7731957436,-0.7725797892,-0.7715240717,-0.7706443071,-0.7705563307,-0.7703803778,-0.7701163888,-0.7701163888,-0.7702924013,-0.7706443071,-0.7720519304,-0.7747793198,-0.7781224847,-0.7812898159,-0.7834892869,-0.7847210169,-0.7850729823,-0.7848969698,-0.7848089933,-0.7848089933,-0.7847210169,-0.7847210169,-0.7848089933,-0.7847210169,-0.784545064,-0.7844570875,-0.7841051817,-0.7838411927,-0.7835772634,-0.783313334,-0.783049345,-0.7827854156,-0.7823455334,-0.7818176746,-0.7816417217,-0.7814657688,-0.7804100513,-0.7794422507,-0.7795302272,-0.7802340984,-0.7809379101,-0.7815537453,-0.7819936275,-0.7819936275,-0.7823455334,-0.7834892869,-0.7838411927,-0.7835772634,-0.783313334,-0.783049345,-0.7832252979,-0.7834892869,-0.7832252979,-0.7829613686,-0.783049345,-0.783313334,-0.7836652398,-0.7841051817,-0.784545064,-0.7848089933,-0.7848969698,-0.7848969698,-0.7846330404,-0.7834892869,-0.7812898159,-0.7781224847,-0.7746033669,-0.7716120481,-0.769764483,-0.7691486478,-0.7691486478,-0.7694125772,-0.7693246007,-0.7689726949,-0.7688847184,-0.7689726949,-0.7689726949,-0.7689726949,-0.7688847184,-0.768796742,-0.7687087655,-0.7690606713,-0.7694125772,-0.7698524594,-0.7724918127,-0.7769787908,-0.7796182036,-0.7812898159,-0.7837532163,-0.785776794,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7862166762,-0.7860407233,-0.7861286998,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7862166762,-0.7858647704,-0.7846330404,-0.7826974392,-0.7812018394,-0.7803220749,-0.7797941566,-0.7791783214,-0.7782104611,-0.7776826024,-0.7783865333,-0.7793542743,-0.7799701095,-0.7802340984,-0.7802340984,-0.780146122,-0.7803220749,-0.779882133,-0.7787384391,-0.7778585553,-0.7766268849,-0.7745153904,-0.7725797892,-0.7715240717,-0.7707322836,-0.7701163888,-0.7702043653,-0.7705563307,-0.7704683542,-0.7701163888,-0.7705563307,-0.7721399069,-0.7747793198,-0.7781224847,-0.7815537453,-0.7837532163,-0.7847210169,-0.7848969698,-0.7849849463,-0.7849849463,-0.7848969698,-0.7848089933,-0.7847210169,-0.784545064,-0.784545064,-0.784545064,-0.7843691111,-0.7841931581,-0.7837532163,-0.7834013104,-0.7832252979,-0.783049345,-0.7826974392,-0.7821695805,-0.7819936275,-0.7817296982,-0.7813777924,-0.7812898159,-0.7817296982,-0.7821695805,-0.7824335098,-0.7825214863,-0.7825214863,-0.7827854156,-0.7834892869,-0.7837532163,-0.7834013104,-0.783313334,-0.7834013104,-0.7835772634,-0.7839292288,-0.7840172052,-0.7839292288,-0.7841051817,-0.7844570875,-0.7848089933,-0.7849849463,-0.7850729823,-0.7846330404,-0.7839292288,-0.783049345,-0.781113863,-0.7778585553,-0.7743394375,-0.7717000246,-0.7702043653,-0.7695005536,-0.7692366242,-0.7691486478,-0.7693246007,-0.769764483,-0.769764483,-0.7692366242,-0.7688847184,-0.7689726949,-0.7690606713,-0.7688847184,-0.7689726949,-0.7688847184,-0.768796742,-0.7689726949,-0.7693246007,-0.7706443071,-0.7743394375,-0.7785624862,-0.7804980278,-0.7822575569,-0.7847210169,-0.7861286998,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7860407233,-0.7862166762,-0.7862166762,-0.7861286998,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7860407233,-0.7848969698,-0.7831373215,-0.7815537453,-0.781113863,-0.7808499336,-0.7804100513,-0.7802340984,-0.7808499336,-0.7817296982,-0.7824335098,-0.7828733921,-0.783049345,-0.7831373215,-0.783313334,-0.7827854156,-0.7817296982,-0.7807619572,-0.7795302272,-0.7782104611,-0.7769787908,-0.7750432491,-0.7728438377,-0.7711721659,-0.7704683542,-0.7704683542,-0.7705563307,-0.7701163888,-0.7698524594,-0.7701163888,-0.7707322836,-0.7723158598,-0.7747793198,-0.7775946259,-0.7804980278,-0.7825214863,-0.7835772634,-0.7841051817,-0.7844570875,-0.7847210169,-0.7847210169,-0.784545064,-0.784545064,-0.7846330404,-0.7846330404,-0.7844570875,-0.7841051817,-0.7840172052,-0.7839292288,-0.7840172052,-0.7840172052,-0.7837532163,-0.7835772634,-0.7835772634,-0.7835772634,-0.7834892869,-0.7835772634,-0.7839292288,-0.7839292288,-0.7837532163,-0.7837532163,-0.7838411927,-0.7840172052,-0.7841931581,-0.7840172052,-0.7841051817,-0.7843691111,-0.7844570875,-0.7846330404,-0.7848089933,-0.7848089933,-0.7848089933,-0.7846330404,-0.7843691111,-0.7839292288,-0.7832252979,-0.7818176746,-0.7794422507,-0.7765389085,-0.7736356258,-0.7713481188,-0.7700284123,-0.7695005536,-0.7693246007,-0.7694125772,-0.7694125772,-0.7692366242,-0.7692366242,-0.7694125772,-0.7694125772,-0.7695005536,-0.7693246007,-0.7690606713,-0.7690606713,-0.7689726949,-0.7688847184,-0.7689726949,-0.7689726949,-0.7689726949,-0.7693246007,-0.771963954,-0.7765389085,-0.7797941566,-0.7809379101,-0.7829613686,-0.7852489352,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7865685821,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7862166762,-0.785600841,-0.784545064,-0.7838411927,-0.7834013104,-0.7829613686,-0.7829613686,-0.7836652398,-0.7844570875,-0.7851609588,-0.7855128646,-0.785600841,-0.785600841,-0.785600841,-0.7850729823,-0.7843691111,-0.783313334,-0.7819056511,-0.7810258865,-0.7802340984,-0.7784745097,-0.7762749791,-0.7743394375,-0.7724918127,-0.7709082365,-0.7703803778,-0.7703803778,-0.7701163888,-0.7699404359,-0.7701163888,-0.7702924013,-0.7704683542,-0.7715240717,-0.7736356258,-0.7759230733,-0.7775946259,-0.7788264155,-0.7803220749,-0.7812898159,-0.7817296982,-0.782081604,-0.7823455334,-0.7823455334,-0.7822575569,-0.782081604,-0.782081604,-0.7821695805,-0.7822575569,-0.7824335098,-0.7827854156,-0.783049345,-0.783049345,-0.7829613686,-0.7831373215,-0.7834013104,-0.7835772634,-0.7838411927,-0.7840172052,-0.7841931581,-0.7842811346,-0.7842811346,-0.7843691111,-0.7844570875,-0.7843691111,-0.7843691111,-0.7843691111,-0.7842811346,-0.7840172052,-0.7838411927,-0.7836652398,-0.7829613686,-0.7816417217,-0.780146122,-0.7783865333,-0.7765389085,-0.7746913433,-0.7725797892,-0.7704683542,-0.7695005536,-0.7694125772,-0.7694125772,-0.7693246007,-0.7694125772,-0.7694125772,-0.7694125772,-0.7692366242,-0.7692366242,-0.7690606713,-0.7689726949,-0.7694125772,-0.7695005536,-0.7691486478,-0.7690606713,-0.7691486478,-0.7690606713,-0.7691486478,-0.7692366242,-0.7690606713,-0.7702924013,-0.7744274139,-0.7782985568,-0.7799701095,-0.7812018394,-0.7836652398,-0.785600841,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7862166762,-0.7861286998,-0.7859527469,-0.785776794,-0.785776794,-0.7859527469,-0.7860407233,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7860407233,-0.785776794,-0.7849849463,-0.7841931581,-0.783049345,-0.7813777924,-0.7796182036,-0.7782104611,-0.7761870027,-0.77328372,-0.770996213,-0.7703803778,-0.7703803778,-0.7702043653,-0.7701163888,-0.7698524594,-0.769764483,-0.7699404359,-0.7702924013,-0.7707322836,-0.770996213,-0.7716120481,-0.7727558613,-0.7737236023,-0.774251461,-0.7746913433,-0.7749552727,-0.7748672962,-0.7745153904,-0.774251461,-0.7744274139,-0.7746913433,-0.7746913433,-0.7748672962,-0.7756591439,-0.776450932,-0.776450932,-0.7762749791,-0.7768028378,-0.7772427201,-0.7775946259,-0.7781224847,-0.7790023685,-0.7796182036,-0.7800580859,-0.7804980278,-0.7807619572,-0.7807619572,-0.7807619572,-0.7810258865,-0.7809379101,-0.7803220749,-0.7793542743,-0.778914392,-0.7788264155,-0.7775066495,-0.7748672962,-0.7730197906,-0.7718759775,-0.77082026,-0.7702043653,-0.7696765065,-0.7694125772,-0.7694125772,-0.7694125772,-0.7694125772,-0.7692366242,-0.7690606713,-0.7693246007,-0.7695005536,-0.7695885301,-0.7695005536,-0.7691486478,-0.7689726949,-0.7691486478,-0.7691486478,-0.7690606713,-0.7691486478,-0.7691486478,-0.7690606713,-0.7689726949,-0.7692366242,-0.7701163888,-0.7731957436,-0.7773306966,-0.7795302272,-0.7802340984,-0.7822575569,-0.7847210169,-0.7860407233,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7860407233,-0.7855128646,-0.7844570875,-0.7827854156,-0.781113863,-0.7793542743,-0.7766268849,-0.7735476494,-0.7711721659,-0.7702043653,-0.7702924013,-0.7701163888,-0.7696765065,-0.769764483,-0.7699404359,-0.769764483,-0.769764483,-0.769764483,-0.7696765065,-0.7698524594,-0.7700284123,-0.7702043653,-0.7702043653,-0.7700284123,-0.7698524594,-0.7696765065,-0.769764483,-0.7698524594,-0.769764483,-0.7696765065,-0.7703803778,-0.7711721659,-0.7705563307,-0.7695885301,-0.7695885301,-0.7698524594,-0.769764483,-0.769764483,-0.7702043653,-0.770996213,-0.7714360952,-0.7716120481,-0.7721399069,-0.7725797892,-0.7724038363,-0.7721399069,-0.7726678848,-0.7731077671,-0.7725797892,-0.7716120481,-0.7721399069,-0.7734596729,-0.7725797892,-0.7701163888,-0.7696765065,-0.7700284123,-0.7699404359,-0.769764483,-0.7696765065,-0.7696765065,-0.7695005536,-0.7695005536,-0.7696765065,-0.7695005536,-0.7693246007,-0.7695005536,-0.7696765065,-0.7696765065,-0.7695005536,-0.7694125772,-0.7691486478,-0.7689726949,-0.7688847184,-0.7688847184,-0.7689726949,-0.7690606713,-0.7693246007,-0.7699404359,-0.7710841894,-0.7734596729,-0.7769787908,-0.7793542743,-0.7802340984,-0.7813777924,-0.7837532163,-0.7856888175,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863046527,-0.7861286998,-0.7858647704,-0.7851609588,-0.7835772634,-0.7813777924,-0.7794422507,-0.7768028378,-0.7731077671,-0.7707322836,-0.7702924013,-0.7701163888,-0.7698524594,-0.7699404359,-0.7700284123,-0.7698524594,-0.7699404359,-0.7700284123,-0.7701163888,-0.7700284123,-0.7700284123,-0.7702043653,-0.7702924013,-0.7702043653,-0.7700284123,-0.7702043653,-0.7706443071,-0.7704683542,-0.7698524594,-0.769764483,-0.7707322836,-0.7716120481,-0.7706443071,-0.7691486478,-0.7689726949,-0.7693246007,-0.7690606713,-0.768796742,-0.768796742,-0.7688847184,-0.7688847184,-0.7688847184,-0.7689726949,-0.7692366242,-0.7690606713,-0.7689726949,-0.7694125772,-0.7698524594,-0.7699404359,-0.7695885301,-0.7699404359,-0.7706443071,-0.7702924013,-0.7695005536,-0.7695005536,-0.7696765065,-0.7696765065,-0.7696765065,-0.7696765065,-0.7699404359,-0.7699404359,-0.7698524594,-0.769764483,-0.7696765065,-0.7695005536,-0.7695005536,-0.7694125772,-0.7691486478,-0.7690606713,-0.7692366242,-0.7691486478,-0.7688847184,-0.7688847184,-0.7691486478,-0.7698524594,-0.77082026,-0.771963954,-0.7737236023,-0.7757471204,-0.7775946259,-0.7790903449,-0.780146122,-0.7813777924,-0.7834892869,-0.7854248881,-0.7862166762,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7863046527,-0.7862166762,-0.7861286998,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7861286998,-0.7855128646,-0.7837532163,-0.7816417217,-0.7793542743,-0.7760990262,-0.7724918127,-0.7704683542,-0.7700284123,-0.7699404359,-0.7699404359,-0.7699404359,-0.7698524594,-0.7699404359,-0.7701163888,-0.7702043653,-0.7703803778,-0.7703803778,-0.7704683542,-0.7704683542,-0.7702924013,-0.7702043653,-0.7703803778,-0.7704683542,-0.7701163888,-0.7695885301,-0.7694125772,-0.769764483,-0.7702924013,-0.7703803778,-0.7695885301,-0.7693246007,-0.7695885301,-0.7695885301,-0.7695005536,-0.7694125772,-0.7692366242,-0.7692366242,-0.7692366242,-0.7695885301,-0.7696765065,-0.7692366242,-0.7690606713,-0.7693246007,-0.769764483,-0.7699404359,-0.769764483,-0.7696765065,-0.769764483,-0.7699404359,-0.7702043653,-0.7706443071,-0.7710841894,-0.7714360952,-0.771963954,-0.7725797892,-0.7731077671,-0.77328372,-0.7729318142,-0.7725797892,-0.7721399069,-0.7711721659,-0.7704683542,-0.7702043653,-0.7698524594,-0.7696765065,-0.7696765065,-0.7698524594,-0.7703803778,-0.7712601423,-0.7724918127,-0.7738115788,-0.7750432491,-0.7762749791,-0.7776826024,-0.7790903449,-0.779882133,-0.7804980278,-0.7819056511,-0.7837532163,-0.7854248881,-0.7862166762,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863046527,-0.7863046527,-0.7863926291,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.785600841,-0.7837532163,-0.7813777924,-0.7788264155,-0.7751312256,-0.7716120481,-0.7700284123,-0.7699404359,-0.7698524594,-0.7696765065,-0.7696765065,-0.7698524594,-0.7700284123,-0.7701163888,-0.7702043653,-0.7702924013,-0.7702924013,-0.7702043653,-0.7698524594,-0.769764483,-0.7700284123,-0.7701163888,-0.7700284123,-0.769764483,-0.769764483,-0.7700284123,-0.7700284123,-0.769764483,-0.7695005536,-0.7693246007,-0.7693246007,-0.7695005536,-0.7696765065,-0.7695885301,-0.7695005536,-0.7695885301,-0.7695005536,-0.7698524594,-0.7703803778,-0.7700284123,-0.7692366242,-0.7692366242,-0.7696765065,-0.7699404359,-0.7700284123,-0.7707322836,-0.7721399069,-0.7730197906,-0.7736356258,-0.7744274139,-0.7751312256,-0.7757471204,-0.7768028378,-0.7775946259,-0.7780345082,-0.7778585553,-0.7777705789,-0.7776826024,-0.7770667672,-0.7758350968,-0.7750432491,-0.7746033669,-0.774251461,-0.7738995552,-0.7735476494,-0.7736356258,-0.7746033669,-0.7759230733,-0.7772427201,-0.7780345082,-0.7785624862,-0.7791783214,-0.7800580859,-0.7810258865,-0.782081604,-0.7832252979,-0.7846330404,-0.785776794,-0.7862166762,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7862166762,-0.7852489352,-0.783049345,-0.7807619572,-0.7778585553,-0.7739875317,-0.7709082365,-0.7699404359,-0.7698524594,-0.769764483,-0.7696765065,-0.7698524594,-0.7699404359,-0.7698524594,-0.7699404359,-0.7701163888,-0.7702043653,-0.7705563307,-0.7710841894,-0.7714360952,-0.7717880011,-0.7724918127,-0.7726678848,-0.7724918127,-0.7729318142,-0.7734596729,-0.7729318142,-0.7721399069,-0.7717880011,-0.7712601423,-0.77082026,-0.7704683542,-0.7701163888,-0.769764483,-0.7695005536,-0.7695005536,-0.7693246007,-0.7695005536,-0.7702043653,-0.7701163888,-0.7695005536,-0.7693246007,-0.7701163888,-0.7712601423,-0.7725797892,-0.7744274139,-0.776450932,-0.7775946259,-0.7781224847,-0.7787384391,-0.7791783214,-0.779882133,-0.7806739807,-0.7813777924,-0.7817296982,-0.7816417217,-0.7814657688,-0.7810258865,-0.7803220749,-0.7796182036,-0.7790903449,-0.7787384391,-0.7786504626,-0.7784745097,-0.7782104611,-0.7780345082,-0.7784745097,-0.7790903449,-0.7799701095,-0.7808499336,-0.7813777924,-0.7819056511,-0.7827854156,-0.7838411927,-0.7849849463,-0.785776794,-0.7862166762,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7859527469,-0.784545064,-0.7822575569,-0.7797941566,-0.7766268849,-0.7730197906,-0.7706443071,-0.7698524594,-0.7696765065,-0.7696765065,-0.7696765065,-0.769764483,-0.7699404359,-0.7701163888,-0.77082026,-0.7717880011,-0.7730197906,-0.7746913433,-0.7758350968,-0.7761870027,-0.7767148614,-0.7769787908,-0.7770667672,-0.7773306966,-0.7775066495,-0.7769787908,-0.7761870027,-0.7758350968,-0.7755711675,-0.7750432491,-0.7740755081,-0.7730197906,-0.771963954,-0.77082026,-0.7699404359,-0.7693246007,-0.7694125772,-0.769764483,-0.7695885301,-0.7695005536,-0.7703803778,-0.7723158598,-0.7743394375,-0.7762749791,-0.7782104611,-0.7797941566,-0.781113863,-0.7819936275,-0.7824335098,-0.7827854156,-0.7834013104,-0.7840172052,-0.7844570875,-0.7848089933,-0.7848089933,-0.7846330404,-0.7841931581,-0.7834892869,-0.7827854156,-0.7818176746,-0.7809379101,-0.7804100513,-0.7802340984,-0.780146122,-0.7803220749,-0.7809379101,-0.7818176746,-0.7829613686,-0.7840172052,-0.7846330404,-0.7850729823,-0.7855128646,-0.7859527469,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7865685821,-0.7865685821,-0.7864806056,-0.7863046527,-0.7863046527,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7862166762,-0.785600841,-0.7836652398,-0.7812018394,-0.7790023685,-0.7761870027,-0.7729318142,-0.7707322836,-0.7700284123,-0.7698524594,-0.7696765065,-0.7701163888,-0.7711721659,-0.7722278833,-0.7734596729,-0.7752192616,-0.7770667672,-0.7784745097,-0.7795302272,-0.7799701095,-0.7803220749,-0.7806739807,-0.7809379101,-0.7809379101,-0.7808499336,-0.7804980278,-0.7797941566,-0.7795302272,-0.7794422507,-0.7790903449,-0.7782104611,-0.7772427201,-0.7761870027,-0.7746913433,-0.7726678848,-0.77082026,-0.7698524594,-0.769764483,-0.7699404359,-0.770996213,-0.7733716965,-0.7757471204,-0.7775946259,-0.7794422507,-0.7812898159,-0.7827854156,-0.7839292288,-0.7848089933,-0.7852489352,-0.7855128646,-0.785776794,-0.7859527469,-0.7860407233,-0.7861286998,-0.7861286998,-0.7861286998,-0.7861286998,-0.7859527469,-0.7855128646,-0.7849849463,-0.7841931581,-0.7834892869,-0.7832252979,-0.7832252979,-0.7835772634,-0.7843691111,-0.7850729823,-0.785600841,-0.7859527469,-0.7861286998,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7860407233,-0.7848969698,-0.7826974392,-0.7806739807,-0.7791783214,-0.7766268849,-0.7738995552,-0.7721399069,-0.7714360952,-0.7718759775,-0.7729318142,-0.7746033669,-0.7761870027,-0.7773306966,-0.7787384391,-0.7802340984,-0.781113863,-0.7819936275,-0.7829613686,-0.7835772634,-0.7840172052,-0.7842811346,-0.7841931581,-0.7841051817,-0.7839292288,-0.7834013104,-0.7828733921,-0.7826974392,-0.7821695805,-0.7812898159,-0.7804100513,-0.7797061801,-0.7786504626,-0.7768028378,-0.7746033669,-0.7728438377,-0.7723158598,-0.7728438377,-0.7747793198,-0.7771547437,-0.7787384391,-0.7803220749,-0.7826094627,-0.7842811346,-0.7851609588,-0.785776794,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7862166762,-0.7859527469,-0.7859527469,-0.7859527469,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.785776794,-0.7840172052,-0.7818176746,-0.7804100513,-0.7790903449,-0.7771547437,-0.7756591439,-0.7753072381,-0.7760990262,-0.7770667672,-0.7780345082,-0.7790023685,-0.7800580859,-0.7813777924,-0.7827854156,-0.7837532163,-0.7846330404,-0.7854248881,-0.7858647704,-0.7860407233,-0.7860407233,-0.7859527469,-0.7859527469,-0.7859527469,-0.7858647704,-0.785600841,-0.7854248881,-0.7849849463,-0.7841931581,-0.7832252979,-0.782081604,-0.7807619572,-0.7794422507,-0.7782985568,-0.7771547437,-0.7765389085,-0.7768028378,-0.7780345082,-0.7792662978,-0.7805860043,-0.7827854156,-0.7849849463,-0.785776794,-0.7860407233,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7862166762,-0.7853369117,-0.7834892869,-0.7814657688,-0.7802340984,-0.7793542743,-0.7787384391,-0.7788264155,-0.7794422507,-0.7797061801,-0.780146122,-0.7810258865,-0.7823455334,-0.7839292288,-0.7850729823,-0.7856888175,-0.7860407233,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7862166762,-0.7859527469,-0.7855128646,-0.7848089933,-0.7834013104,-0.7817296982,-0.7804980278,-0.7797941566,-0.7793542743,-0.7793542743,-0.7797061801,-0.7806739807,-0.7824335098,-0.7846330404,-0.7858647704,-0.7861286998,-0.7863046527,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7864806056,-0.7864806056,-0.7864806056,-0.7865685821,-0.7864806056,-0.7864806056,-0.7864806056,-0.7865685821,-0.7865685821,-0.7864806056,-0.7864806056,-0.7865685821,-0.7865685821,-0.7864806056,-0.7865685821,-0.7864806056,-0.7865685821,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7865685821,-0.7865685821,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7865685821,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7865685821,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7862166762,-0.7854248881,-0.7837532163,-0.7822575569,-0.7813777924,-0.7808499336,-0.7807619572,-0.7812018394,-0.7814657688,-0.7822575569,-0.7837532163,-0.7850729823,-0.7858647704,-0.7861286998,-0.7862166762,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7861286998,-0.7861286998,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.785776794,-0.7847210169,-0.783313334,-0.782081604,-0.7813777924,-0.7813777924,-0.782081604,-0.7835772634,-0.7849849463,-0.7858647704,-0.7862166762,-0.7863046527,-0.7863046527,-0.7862166762,-0.7861286998,-0.7861286998,-0.7861286998,-0.7862166762,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863046527,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7864806056,-0.7865685821,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7859527469,-0.7851609588,-0.7844570875,-0.7839292288,-0.7838411927,-0.7841051817,-0.7843691111,-0.7849849463,-0.7858647704,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7863046527,-0.7863046527,-0.7863926291,-0.7864806056,-0.7865685821,-0.7864806056,-0.7864806056,-0.7864806056,-0.7863926291,-0.7862166762,-0.7858647704,-0.7851609588,-0.784545064,-0.784545064,-0.7851609588,-0.7859527469,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863926291,-0.7863046527,-0.7862166762,-0.7862166762,-0.7862166762,-0.7863046527,-0.7863926291,-0.7863926291,-0.7863046527,-0.7863046527,-0.7864806056,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7866565585,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821],[-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821,-0.7865685821]],[[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9299506545,-0.930085063,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.929816246,-0.9302194715,-0.930085063,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.929816246,-0.9302194715,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9302194715,-0.9295474291,-0.9299506545,-0.9299506545,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9299506545,-0.9292786121,-0.9296818376,-0.9296818376,-0.930085063,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9295474291,-0.9287409782,-0.9288753867,-0.9291442037,-0.9299506545,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9290097952,-0.9283376932,-0.9286065698,-0.9290097952,-0.929816246,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9287409782,-0.9284721017,-0.9284721017,-0.9294130206,-0.930085063,-0.9303538799,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9286065698,-0.9287409782,-0.9286065698,-0.9294130206,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9288753867,-0.9287409782,-0.9290097952,-0.929816246,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9295474291,-0.9288753867,-0.9287409782,-0.929816246,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.9291442037,-0.9288753867,-0.9282032847,-0.9292786121,-0.930085063,-0.9302194715,-0.9299506545,-0.9299506545,-0.9295474291,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9302194715,-0.9287409782,-0.9290097952,-0.9284721017,-0.9291442037,-0.929816246,-0.9299506545,-0.929816246,-0.929816246,-0.9296818376,-0.9299506545,-0.9302194715,-0.930085063,-0.9303538799,-0.9303538799,-0.9302194715,-0.9299506545,-0.929816246,-0.9295474291,-0.9299506545,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9292786121,-0.9271280169,-0.9282032847,-0.9288753867,-0.9296818376,-0.9296818376,-0.9299506545,-0.930085063,-0.930085063,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.929816246,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.929816246,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9295474291,-0.9282032847,-0.9286065698,-0.9292786121,-0.9299506545,-0.9296818376,-0.929816246,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9299506545,-0.929816246,-0.9299506545,-0.929816246,-0.9296818376,-0.9299506545,-0.9302194715,-0.9302194715,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.929816246,-0.9296818376,-0.9299506545,-0.930085063,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9299506545,-0.9296818376,-0.9295474291,-0.929816246,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9299506545,-0.929816246,-0.9299506545,-0.929816246,-0.930085063,-0.9303538799,-0.9302194715,-0.9299506545,-0.9299506545,-0.930085063,-0.9299506545,-0.929816246,-0.929816246,-0.9299506545,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9291442037,-0.9288753867,-0.9291442037,-0.929816246,-0.929816246,-0.9299506545,-0.930085063,-0.929816246,-0.9295474291,-0.9299506545,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9299506545,-0.9296818376,-0.9296818376,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9279344678,-0.9284721017,-0.9286065698,-0.9296818376,-0.9295474291,-0.9299506545,-0.930085063,-0.929816246,-0.9299506545,-0.929816246,-0.9299506545,-0.929816246,-0.9296818376,-0.9299506545,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.929816246,-0.9299506545,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.9299506545,-0.929816246,-0.929816246,-0.929816246,-0.929816246,-0.929816246,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.929816246,-0.9294130206,-0.9290097952,-0.9288753867,-0.9286065698,-0.9283376932,-0.9282032847,-0.9284721017,-0.9287409782,-0.9290097952,-0.9294130206,-0.9296818376,-0.930085063,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9306226969,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9280688763,-0.9291442037,-0.9291442037,-0.9296818376,-0.9295474291,-0.9302194715,-0.9302194715,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.929816246,-0.9295474291,-0.929816246,-0.930085063,-0.929816246,-0.9296818376,-0.9299506545,-0.930085063,-0.9303538799,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.929816246,-0.929816246,-0.929816246,-0.9296818376,-0.9296818376,-0.9299506545,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.929816246,-0.9299506545,-0.930085063,-0.9299506545,-0.929816246,-0.9296818376,-0.9299506545,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.9296818376,-0.9292786121,-0.9290097952,-0.9286065698,-0.9284721017,-0.9284721017,-0.9283376932,-0.9287409782,-0.9294130206,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9296818376,-0.9291442037,-0.9287409782,-0.9283376932,-0.9276656508,-0.9272624254,-0.9269936085,-0.9271280169,-0.9272624254,-0.9273968339,-0.9275312424,-0.9275312424,-0.9276656508,-0.9278000593,-0.9279344678,-0.9283376932,-0.9292786121,-0.929816246,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9280688763,-0.9296818376,-0.9290097952,-0.9296818376,-0.929816246,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.9302194715,-0.9303538799,-0.9302194715,-0.929816246,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.929816246,-0.9296818376,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.9302194715,-0.930085063,-0.930085063,-0.9303538799,-0.930085063,-0.9296818376,-0.9296818376,-0.9299506545,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.929816246,-0.9296818376,-0.9296818376,-0.9296818376,-0.929816246,-0.929816246,-0.929816246,-0.9299506545,-0.929816246,-0.929816246,-0.929816246,-0.9296818376,-0.9296818376,-0.9299506545,-0.930085063,-0.930085063,-0.9299506545,-0.929816246,-0.9299506545,-0.9299506545,-0.929816246,-0.9296818376,-0.929816246,-0.9299506545,-0.9299506545,-0.929816246,-0.9296818376,-0.9295474291,-0.9296818376,-0.9296818376,-0.9295474291,-0.9295474291,-0.9296818376,-0.9291442037,-0.9283376932,-0.9278000593,-0.9275312424,-0.9271280169,-0.9269936085,-0.9269936085,-0.9271280169,-0.9275312424,-0.9280688763,-0.9287409782,-0.9294130206,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9299506545,-0.929816246,-0.9295474291,-0.9291442037,-0.9287409782,-0.9283376932,-0.9278000593,-0.9272624254,-0.9269936085,-0.9269936085,-0.9268592,-0.9271280169,-0.9276656508,-0.9279344678,-0.9280688763,-0.9279344678,-0.9276656508,-0.9275312424,-0.9273968339,-0.9271280169,-0.9268592,-0.9268592,-0.9275312424,-0.9284721017,-0.9292786121,-0.9296818376,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.930085063,-0.930085063,-0.930085063,-0.929816246,-0.9295474291,-0.9294130206,-0.9292786121,-0.9291442037,-0.9288753867,-0.9288753867,-0.9291442037,-0.9295474291,-0.9296818376,-0.929816246,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9302194715,-0.9260527492,-0.9287409782,-0.9283376932,-0.9299506545,-0.9299506545,-0.929816246,-0.9294130206,-0.9296818376,-0.9302194715,-0.9303538799,-0.9302194715,-0.9299506545,-0.929816246,-0.9299506545,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.9302194715,-0.9304882884,-0.9302194715,-0.9302194715,-0.9303538799,-0.929816246,-0.929816246,-0.930085063,-0.9302194715,-0.930085063,-0.929816246,-0.9296818376,-0.929816246,-0.9299506545,-0.929816246,-0.9299506545,-0.9299506545,-0.929816246,-0.9296818376,-0.929816246,-0.9299506545,-0.9299506545,-0.929816246,-0.9299506545,-0.930085063,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.929816246,-0.929816246,-0.9296818376,-0.9295474291,-0.9296818376,-0.9296818376,-0.9295474291,-0.9294130206,-0.9295474291,-0.9294130206,-0.9291442037,-0.9291442037,-0.9292786121,-0.9288753867,-0.9284721017,-0.9280688763,-0.9276656508,-0.9272624254,-0.9269936085,-0.9265903831,-0.9263215661,-0.9263215661,-0.9264559746,-0.9265903831,-0.9272624254,-0.9278000593,-0.9283376932,-0.9290097952,-0.929816246,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.929816246,-0.929816246,-0.9296818376,-0.9292786121,-0.9287409782,-0.9282032847,-0.9276656508,-0.9272624254,-0.9271280169,-0.9271280169,-0.9268592,-0.9267247915,-0.9265903831,-0.9267247915,-0.9273968339,-0.9275312424,-0.9273968339,-0.9275312424,-0.9275312424,-0.9273968339,-0.9272624254,-0.9269936085,-0.9263215661,-0.9261871576,-0.9264559746,-0.9263215661,-0.9265903831,-0.9275312424,-0.9284721017,-0.9292786121,-0.9296818376,-0.9299506545,-0.9299506545,-0.9299506545,-0.929816246,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.929816246,-0.9295474291,-0.9291442037,-0.9286065698,-0.9282032847,-0.9279344678,-0.9276656508,-0.9276656508,-0.9278000593,-0.9280688763,-0.9283376932,-0.9287409782,-0.9291442037,-0.9295474291,-0.929816246,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9299506545,-0.9269936085,-0.9288753867,-0.9283376932,-0.9296818376,-0.929816246,-0.9299506545,-0.9296818376,-0.9296818376,-0.9299506545,-0.930085063,-0.9299506545,-0.9296818376,-0.9296818376,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9299506545,-0.929816246,-0.929816246,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.9303538799,-0.9303538799,-0.9302194715,-0.9299506545,-0.929816246,-0.9299506545,-0.9299506545,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.929816246,-0.9296818376,-0.929816246,-0.9299506545,-0.9299506545,-0.9299506545,-0.929816246,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.929816246,-0.9294130206,-0.9294130206,-0.9296818376,-0.9295474291,-0.9294130206,-0.9294130206,-0.9291442037,-0.9286065698,-0.9282032847,-0.9278000593,-0.9273968339,-0.9268592,-0.9264559746,-0.9260527492,-0.9259183407,-0.9259183407,-0.9257839322,-0.9259183407,-0.9257839322,-0.9257839322,-0.9259183407,-0.9264559746,-0.9272624254,-0.9279344678,-0.9287409782,-0.9295474291,-0.929816246,-0.9296818376,-0.9296818376,-0.9299506545,-0.9299506545,-0.929816246,-0.9299506545,-0.929816246,-0.9296818376,-0.9294130206,-0.9290097952,-0.9286065698,-0.9282032847,-0.9273968339,-0.9265903831,-0.9263215661,-0.9265903831,-0.9267247915,-0.9268592,-0.9267247915,-0.9264559746,-0.9261871576,-0.9256495237,-0.9253807068,-0.9255151153,-0.9257839322,-0.9255151153,-0.9252462983,-0.9251118898,-0.9257839322,-0.9261871576,-0.9251118898,-0.9244397879,-0.9260527492,-0.9273968339,-0.9268592,-0.9264559746,-0.9269936085,-0.9279344678,-0.9288753867,-0.9295474291,-0.929816246,-0.9299506545,-0.929816246,-0.9296818376,-0.9296818376,-0.929816246,-0.9296818376,-0.9296818376,-0.9296818376,-0.9296818376,-0.9296818376,-0.9296818376,-0.9294130206,-0.9292786121,-0.9288753867,-0.9283376932,-0.9278000593,-0.9272624254,-0.9268592,-0.9265903831,-0.9264559746,-0.9264559746,-0.9268592,-0.9272624254,-0.9276656508,-0.9279344678,-0.9284721017,-0.9290097952,-0.9294130206,-0.9296818376,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9295474291,-0.9273968339,-0.9291442037,-0.9290097952,-0.9296818376,-0.9296818376,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.9299506545,-0.929816246,-0.9299506545,-0.9299506545,-0.929816246,-0.9299506545,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.930085063,-0.9299506545,-0.930085063,-0.930085063,-0.929816246,-0.929816246,-0.929816246,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.9302194715,-0.9303538799,-0.9303538799,-0.930085063,-0.9299506545,-0.929816246,-0.9296818376,-0.9296818376,-0.9296818376,-0.9296818376,-0.929816246,-0.929816246,-0.9299506545,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.9296818376,-0.9295474291,-0.9295474291,-0.9295474291,-0.9294130206,-0.9294130206,-0.9292786121,-0.9291442037,-0.9287409782,-0.9282032847,-0.9279344678,-0.9275312424,-0.9264559746,-0.9255151153,-0.9253807068,-0.9252462983,-0.9251118898,-0.9251118898,-0.9252462983,-0.9253807068,-0.9255151153,-0.9253807068,-0.9253807068,-0.9255151153,-0.9257839322,-0.9261871576,-0.9269936085,-0.9280688763,-0.9290097952,-0.9295474291,-0.929816246,-0.9296818376,-0.9296818376,-0.929816246,-0.929816246,-0.9295474291,-0.9292786121,-0.9287409782,-0.9279344678,-0.9273968339,-0.9267247915,-0.9260527492,-0.9260527492,-0.9264559746,-0.9268592,-0.9268592,-0.9263215661,-0.9256495237,-0.9249774814,-0.9247086048,-0.9244397879,-0.9247086048,-0.9260527492,-0.9271280169,-0.9265903831,-0.9249774814,-0.9236332774,-0.9233644605,-0.9243053794,-0.9253807068,-0.9256495237,-0.9253807068,-0.9260527492,-0.9265903831,-0.9260527492,-0.9257839322,-0.9263215661,-0.9275312424,-0.9286065698,-0.9291442037,-0.9294130206,-0.9296818376,-0.9296818376,-0.9296818376,-0.9295474291,-0.9295474291,-0.9294130206,-0.9292786121,-0.9292786121,-0.9291442037,-0.9288753867,-0.9283376932,-0.9276656508,-0.9269936085,-0.9264559746,-0.9260527492,-0.9256495237,-0.9256495237,-0.9257839322,-0.9260527492,-0.9261871576,-0.9261871576,-0.9263215661,-0.9267247915,-0.9273968339,-0.9279344678,-0.9284721017,-0.9290097952,-0.9294130206,-0.9295474291,-0.929816246,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9290097952,-0.9273968339,-0.9290097952,-0.9292786121,-0.9299506545,-0.9299506545,-0.929816246,-0.929816246,-0.930085063,-0.9303538799,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.929816246,-0.9296818376,-0.929816246,-0.930085063,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.9299506545,-0.930085063,-0.9299506545,-0.9296818376,-0.9296818376,-0.9296818376,-0.9294130206,-0.9294130206,-0.9295474291,-0.9296818376,-0.9296818376,-0.9299506545,-0.930085063,-0.929816246,-0.929816246,-0.9299506545,-0.930085063,-0.9299506545,-0.929816246,-0.929816246,-0.929816246,-0.9294130206,-0.9291442037,-0.9288753867,-0.9284721017,-0.9276656508,-0.9268592,-0.9263215661,-0.9255151153,-0.9247086048,-0.9244397879,-0.9243053794,-0.9241709113,-0.9243053794,-0.9244397879,-0.9243053794,-0.9241709113,-0.9239020944,-0.9239020944,-0.9240365028,-0.9239020944,-0.9239020944,-0.9240365028,-0.9245741963,-0.9256495237,-0.9268592,-0.9279344678,-0.9287409782,-0.9290097952,-0.9288753867,-0.9291442037,-0.9290097952,-0.9287409782,-0.9282032847,-0.9276656508,-0.9271280169,-0.9269936085,-0.9269936085,-0.9263215661,-0.9257839322,-0.9261871576,-0.9265903831,-0.9263215661,-0.9255151153,-0.9245741963,-0.9240365028,-0.9240365028,-0.9251118898,-0.9269936085,-0.9283376932,-0.9287409782,-0.9284721017,-0.9276656508,-0.9257839322,-0.9239020944,-0.922961235,-0.9233644605,-0.9245741963,-0.9255151153,-0.9259183407,-0.9260527492,-0.9260527492,-0.9257839322,-0.9257839322,-0.9260527492,-0.9265903831,-0.9275312424,-0.9283376932,-0.9291442037,-0.9295474291,-0.9296818376,-0.929816246,-0.9295474291,-0.9294130206,-0.9294130206,-0.9291442037,-0.9283376932,-0.9273968339,-0.9264559746,-0.9256495237,-0.9251118898,-0.9249774814,-0.9251118898,-0.9252462983,-0.9251118898,-0.9249774814,-0.9252462983,-0.9253807068,-0.9252462983,-0.9252462983,-0.9257839322,-0.9261871576,-0.9267247915,-0.9275312424,-0.9283376932,-0.9288753867,-0.9290097952,-0.9292786121,-0.9295474291,-0.929816246,-0.929816246,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9294130206,-0.9286065698,-0.9292786121,-0.9295474291,-0.930085063,-0.930085063,-0.929816246,-0.9299506545,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9299506545,-0.929816246,-0.929816246,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.929816246,-0.9299506545,-0.9299506545,-0.9296818376,-0.929816246,-0.9299506545,-0.929816246,-0.929816246,-0.929816246,-0.9299506545,-0.9299506545,-0.929816246,-0.930085063,-0.9302194715,-0.930085063,-0.9299506545,-0.9296818376,-0.9294130206,-0.9294130206,-0.9294130206,-0.9292786121,-0.9292786121,-0.9291442037,-0.9290097952,-0.9288753867,-0.9286065698,-0.9280688763,-0.9272624254,-0.9261871576,-0.9251118898,-0.9240365028,-0.9233644605,-0.9226924181,-0.9222891927,-0.9224236012,-0.9225580096,-0.922961235,-0.9233644605,-0.923230052,-0.923230052,-0.923230052,-0.9230956435,-0.9225580096,-0.9218859673,-0.9216171503,-0.9213483334,-0.9213483334,-0.9218859673,-0.922961235,-0.9241709113,-0.9252462983,-0.9260527492,-0.9264559746,-0.9265903831,-0.9267247915,-0.9267247915,-0.9268592,-0.9267247915,-0.9264559746,-0.9261871576,-0.9263215661,-0.9264559746,-0.9261871576,-0.9257839322,-0.9255151153,-0.9251118898,-0.9248430729,-0.9247086048,-0.9251118898,-0.9264559746,-0.9280688763,-0.9287409782,-0.9283376932,-0.9284721017,-0.9287409782,-0.9288753867,-0.9284721017,-0.9271280169,-0.9253807068,-0.9240365028,-0.9240365028,-0.9247086048,-0.9255151153,-0.9255151153,-0.9256495237,-0.9257839322,-0.9256495237,-0.9255151153,-0.9252462983,-0.9252462983,-0.9257839322,-0.9267247915,-0.9272624254,-0.9276656508,-0.9282032847,-0.9283376932,-0.9283376932,-0.9280688763,-0.9273968339,-0.9263215661,-0.9256495237,-0.9248430729,-0.9239020944,-0.9239020944,-0.9245741963,-0.9249774814,-0.9251118898,-0.9251118898,-0.9251118898,-0.9252462983,-0.9256495237,-0.9257839322,-0.9255151153,-0.9252462983,-0.9253807068,-0.9257839322,-0.9263215661,-0.9272624254,-0.9280688763,-0.9286065698,-0.9288753867,-0.9290097952,-0.9292786121,-0.9295474291,-0.9296818376,-0.9296818376,-0.929816246,-0.9299506545,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9296818376,-0.9294130206,-0.9296818376,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.930085063,-0.929816246,-0.9299506545,-0.930085063,-0.9299506545,-0.930085063,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.9299506545,-0.9296818376,-0.929816246,-0.929816246,-0.929816246,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.929816246,-0.9299506545,-0.9299506545,-0.929816246,-0.9296818376,-0.9294130206,-0.9294130206,-0.9292786121,-0.9290097952,-0.9288753867,-0.9291442037,-0.9292786121,-0.9287409782,-0.9280688763,-0.9269936085,-0.9255151153,-0.9237676859,-0.9224236012,-0.9213483334,-0.920676291,-0.9208106995,-0.9210795164,-0.9213483334,-0.9217515588,-0.9221547842,-0.9226924181,-0.9228268266,-0.9228268266,-0.9225580096,-0.9224236012,-0.9220203757,-0.9216171503,-0.9210795164,-0.9202730656,-0.9196009636,-0.9193321466,-0.9200042486,-0.9210795164,-0.9220203757,-0.9228268266,-0.9237676859,-0.9241709113,-0.9241709113,-0.9241709113,-0.9245741963,-0.9252462983,-0.9253807068,-0.9251118898,-0.9251118898,-0.9255151153,-0.9252462983,-0.9248430729,-0.9247086048,-0.9245741963,-0.9251118898,-0.9263215661,-0.9279344678,-0.9291442037,-0.9291442037,-0.9283376932,-0.9280688763,-0.9283376932,-0.9282032847,-0.9280688763,-0.9284721017,-0.9290097952,-0.9282032847,-0.9264559746,-0.9253807068,-0.9248430729,-0.9245741963,-0.9243053794,-0.9241709113,-0.9244397879,-0.9244397879,-0.9243053794,-0.9243053794,-0.9247086048,-0.9248430729,-0.9243053794,-0.9239020944,-0.9237676859,-0.9241709113,-0.9244397879,-0.9241709113,-0.9233644605,-0.9222891927,-0.9212139249,-0.9205418825,-0.9208106995,-0.9213483334,-0.9218859673,-0.9226924181,-0.9236332774,-0.9240365028,-0.9240365028,-0.9241709113,-0.9245741963,-0.9245741963,-0.9245741963,-0.9244397879,-0.9241709113,-0.9240365028,-0.9244397879,-0.9249774814,-0.9259183407,-0.9269936085,-0.9280688763,-0.9288753867,-0.9290097952,-0.9290097952,-0.9291442037,-0.9294130206,-0.9295474291,-0.9296818376,-0.929816246,-0.929816246,-0.9299506545,-0.930085063,-0.930085063,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9306226969,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.929816246,-0.929816246,-0.930085063,-0.930085063,-0.9299506545,-0.929816246,-0.9299506545,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.929816246,-0.929816246,-0.929816246,-0.9296818376,-0.929816246,-0.929816246,-0.929816246,-0.929816246,-0.9296818376,-0.9294130206,-0.9282032847,-0.9261871576,-0.9241709113,-0.9220203757,-0.920407474,-0.9196009636,-0.9197353721,-0.920407474,-0.9210795164,-0.9217515588,-0.9222891927,-0.9226924181,-0.922961235,-0.9230956435,-0.923230052,-0.9230956435,-0.9228268266,-0.9222891927,-0.9218859673,-0.9214827418,-0.9212139249,-0.920676291,-0.9201386571,-0.9197353721,-0.9200042486,-0.9208106995,-0.9217515588,-0.9224236012,-0.9226924181,-0.9226924181,-0.9226924181,-0.9225580096,-0.9224236012,-0.922961235,-0.9239020944,-0.9241709113,-0.9234988689,-0.9234988689,-0.9237676859,-0.9234988689,-0.9233644605,-0.9243053794,-0.9261871576,-0.9280688763,-0.9291442037,-0.9291442037,-0.9288753867,-0.9291442037,-0.9290097952,-0.9287409782,-0.9284721017,-0.9282032847,-0.9284721017,-0.9290097952,-0.9292786121,-0.9283376932,-0.9268592,-0.9253807068,-0.9240365028,-0.9230956435,-0.923230052,-0.9236332774,-0.9233644605,-0.923230052,-0.9236332774,-0.9241709113,-0.9237676859,-0.9225580096,-0.9217515588,-0.9217515588,-0.9216171503,-0.9213483334,-0.920676291,-0.9197353721,-0.9189289212,-0.9185256958,-0.9189289212,-0.9198697805,-0.9208106995,-0.9217515588,-0.9225580096,-0.922961235,-0.923230052,-0.922961235,-0.9226924181,-0.9226924181,-0.9228268266,-0.9226924181,-0.9225580096,-0.9224236012,-0.9222891927,-0.9224236012,-0.922961235,-0.9240365028,-0.9256495237,-0.9271280169,-0.9282032847,-0.9288753867,-0.9291442037,-0.9292786121,-0.9295474291,-0.9296818376,-0.9296818376,-0.929816246,-0.929816246,-0.9299506545,-0.9299506545,-0.929816246,-0.929816246,-0.929816246,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9302194715,-0.9294130206,-0.929816246,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.929816246,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.929816246,-0.9299506545,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.9290097952,-0.9271280169,-0.9248430729,-0.9228268266,-0.9209451079,-0.9194665551,-0.9190633297,-0.9194665551,-0.9202730656,-0.9209451079,-0.9218859673,-0.9228268266,-0.9233644605,-0.9234988689,-0.9236332774,-0.9237676859,-0.9236332774,-0.9234988689,-0.9237676859,-0.9237676859,-0.923230052,-0.9226924181,-0.9224236012,-0.9220203757,-0.9213483334,-0.9208106995,-0.9208106995,-0.9213483334,-0.9221547842,-0.9228268266,-0.9233644605,-0.9237676859,-0.9237676859,-0.9233644605,-0.9225580096,-0.9221547842,-0.9225580096,-0.9224236012,-0.9214827418,-0.9217515588,-0.9228268266,-0.9221547842,-0.9218859673,-0.9241709113,-0.9269936085,-0.9282032847,-0.9280688763,-0.9278000593,-0.9282032847,-0.9288753867,-0.9287409782,-0.9284721017,-0.9284721017,-0.9287409782,-0.9290097952,-0.9290097952,-0.9290097952,-0.9288753867,-0.9282032847,-0.9264559746,-0.9243053794,-0.923230052,-0.9233644605,-0.9234988689,-0.9225580096,-0.9218859673,-0.9221547842,-0.9222891927,-0.9217515588,-0.9217515588,-0.9222891927,-0.9224236012,-0.9221547842,-0.9214827418,-0.9209451079,-0.9202730656,-0.9197353721,-0.9194665551,-0.9201386571,-0.9210795164,-0.9221547842,-0.9228268266,-0.923230052,-0.923230052,-0.923230052,-0.9230956435,-0.9230956435,-0.922961235,-0.9228268266,-0.9226924181,-0.9221547842,-0.9216171503,-0.9212139249,-0.9210795164,-0.9209451079,-0.9212139249,-0.9222891927,-0.9241709113,-0.9260527492,-0.9278000593,-0.9287409782,-0.9291442037,-0.9292786121,-0.9294130206,-0.9295474291,-0.9295474291,-0.9296818376,-0.9299506545,-0.9299506545,-0.9299506545,-0.929816246,-0.929816246,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.929816246,-0.929816246,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9303538799,-0.929816246,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.9302194715,-0.9304882884,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.9299506545,-0.929816246,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.9299506545,-0.9299506545,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.930085063,-0.929816246,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.9299506545,-0.9296818376,-0.9278000593,-0.9251118898,-0.923230052,-0.9218859673,-0.920676291,-0.9198697805,-0.9198697805,-0.9205418825,-0.9214827418,-0.9224236012,-0.922961235,-0.922961235,-0.922961235,-0.9230956435,-0.9230956435,-0.9230956435,-0.923230052,-0.923230052,-0.922961235,-0.9230956435,-0.923230052,-0.923230052,-0.9233644605,-0.9233644605,-0.9230956435,-0.9224236012,-0.9214827418,-0.920676291,-0.9205418825,-0.9216171503,-0.922961235,-0.9241709113,-0.9249774814,-0.9255151153,-0.9252462983,-0.9244397879,-0.9236332774,-0.922961235,-0.9225580096,-0.9222891927,-0.9221547842,-0.9216171503,-0.9212139249,-0.9224236012,-0.9255151153,-0.9276656508,-0.9272624254,-0.9264559746,-0.9267247915,-0.9275312424,-0.9280688763,-0.9279344678,-0.9273968339,-0.9272624254,-0.9279344678,-0.9284721017,-0.9286065698,-0.9284721017,-0.9283376932,-0.9280688763,-0.9272624254,-0.9259183407,-0.9245741963,-0.9237676859,-0.9236332774,-0.9233644605,-0.9225580096,-0.9222891927,-0.9224236012,-0.9230956435,-0.9239020944,-0.9240365028,-0.9236332774,-0.9230956435,-0.9224236012,-0.9216171503,-0.9209451079,-0.920407474,-0.920676291,-0.9217515588,-0.9225580096,-0.9226924181,-0.9226924181,-0.9228268266,-0.9228268266,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.9226924181,-0.9224236012,-0.9222891927,-0.9221547842,-0.9218859673,-0.9216171503,-0.9209451079,-0.9201386571,-0.9198697805,-0.920676291,-0.922961235,-0.9256495237,-0.9275312424,-0.9286065698,-0.9291442037,-0.9292786121,-0.9292786121,-0.9292786121,-0.9292786121,-0.9292786121,-0.9292786121,-0.9295474291,-0.9296818376,-0.929816246,-0.929816246,-0.929816246,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.929816246,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.929816246,-0.9299506545,-0.930085063,-0.9299506545,-0.9299506545,-0.929816246,-0.9299506545,-0.930085063,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.9299506545,-0.929816246,-0.9295474291,-0.9269936085,-0.9239020944,-0.9220203757,-0.9213483334,-0.9210795164,-0.9208106995,-0.9208106995,-0.9214827418,-0.9224236012,-0.9230956435,-0.9234988689,-0.9236332774,-0.9230956435,-0.9225580096,-0.9224236012,-0.9226924181,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.922961235,-0.9228268266,-0.9228268266,-0.9228268266,-0.922961235,-0.9226924181,-0.9221547842,-0.9213483334,-0.920676291,-0.9212139249,-0.9225580096,-0.9236332774,-0.9244397879,-0.9249774814,-0.9255151153,-0.9256495237,-0.9251118898,-0.9241709113,-0.9234988689,-0.923230052,-0.9230956435,-0.922961235,-0.9233644605,-0.9249774814,-0.9271280169,-0.9276656508,-0.9265903831,-0.9263215661,-0.9271280169,-0.9272624254,-0.9263215661,-0.9257839322,-0.9255151153,-0.9256495237,-0.9263215661,-0.9271280169,-0.9276656508,-0.9279344678,-0.9280688763,-0.9282032847,-0.9279344678,-0.9271280169,-0.9255151153,-0.9240365028,-0.9239020944,-0.9244397879,-0.9244397879,-0.9237676859,-0.9234988689,-0.9239020944,-0.9243053794,-0.9243053794,-0.9240365028,-0.9234988689,-0.9225580096,-0.9214827418,-0.9212139249,-0.9217515588,-0.9226924181,-0.922961235,-0.9226924181,-0.9224236012,-0.9220203757,-0.9218859673,-0.9220203757,-0.9222891927,-0.9224236012,-0.9222891927,-0.9222891927,-0.9225580096,-0.9224236012,-0.9222891927,-0.9225580096,-0.9228268266,-0.9226924181,-0.9220203757,-0.9212139249,-0.920407474,-0.9196009636,-0.9196009636,-0.9213483334,-0.9244397879,-0.9272624254,-0.9287409782,-0.9291442037,-0.9292786121,-0.9291442037,-0.9291442037,-0.9292786121,-0.9292786121,-0.9294130206,-0.9294130206,-0.9295474291,-0.9296818376,-0.9295474291,-0.9296818376,-0.929816246,-0.929816246,-0.9299506545,-0.929816246,-0.929816246,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9299506545],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.9299506545,-0.930085063,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9299506545,-0.929816246,-0.929816246,-0.9299506545,-0.930085063,-0.930085063,-0.9299506545,-0.929816246,-0.9299506545,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.9303538799,-0.9303538799,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.930085063,-0.9299506545,-0.9288753867,-0.9264559746,-0.9237676859,-0.9216171503,-0.9212139249,-0.9218859673,-0.9222891927,-0.9217515588,-0.9214827418,-0.9220203757,-0.9222891927,-0.9224236012,-0.9224236012,-0.9222891927,-0.9222891927,-0.9222891927,-0.9224236012,-0.9228268266,-0.923230052,-0.9234988689,-0.9233644605,-0.9230956435,-0.9230956435,-0.9230956435,-0.922961235,-0.9225580096,-0.9224236012,-0.9225580096,-0.9226924181,-0.9226924181,-0.9226924181,-0.9221547842,-0.9216171503,-0.9220203757,-0.923230052,-0.9236332774,-0.9237676859,-0.9244397879,-0.9252462983,-0.9249774814,-0.9241709113,-0.9239020944,-0.9236332774,-0.9230956435,-0.9234988689,-0.9249774814,-0.9264559746,-0.9272624254,-0.9272624254,-0.9268592,-0.9271280169,-0.9276656508,-0.9267247915,-0.9248430729,-0.9243053794,-0.9248430729,-0.9252462983,-0.9255151153,-0.9261871576,-0.9267247915,-0.9269936085,-0.9273968339,-0.9280688763,-0.9283376932,-0.9272624254,-0.9257839322,-0.9245741963,-0.9240365028,-0.9240365028,-0.9237676859,-0.922961235,-0.9228268266,-0.9233644605,-0.9233644605,-0.923230052,-0.9234988689,-0.923230052,-0.9222891927,-0.9216171503,-0.9218859673,-0.9226924181,-0.922961235,-0.9225580096,-0.9220203757,-0.9216171503,-0.9216171503,-0.9217515588,-0.9218859673,-0.9221547842,-0.9222891927,-0.9221547842,-0.9220203757,-0.9220203757,-0.9221547842,-0.9224236012,-0.9224236012,-0.9225580096,-0.9228268266,-0.9226924181,-0.9221547842,-0.9213483334,-0.9208106995,-0.9202730656,-0.9198697805,-0.920676291,-0.922961235,-0.9260527492,-0.9283376932,-0.9292786121,-0.9295474291,-0.9294130206,-0.9292786121,-0.9291442037,-0.9291442037,-0.9292786121,-0.9295474291,-0.929816246,-0.9296818376,-0.9296818376,-0.9296818376,-0.9296818376,-0.9295474291,-0.9295474291,-0.9295474291,-0.9296818376,-0.9296818376,-0.9296818376,-0.929816246,-0.9299506545,-0.929816246,-0.9296818376,-0.929816246,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9299506545],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9303538799,-0.9294130206,-0.930085063,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9299506545,-0.929816246,-0.929816246,-0.929816246,-0.929816246,-0.929816246,-0.929816246,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9299506545,-0.930085063,-0.9303538799,-0.930085063,-0.929816246,-0.9299506545,-0.9302194715,-0.9302194715,-0.9299506545,-0.9286065698,-0.9263215661,-0.9240365028,-0.9222891927,-0.9216171503,-0.9225580096,-0.923230052,-0.9224236012,-0.9209451079,-0.920407474,-0.9209451079,-0.9212139249,-0.9212139249,-0.9213483334,-0.9216171503,-0.9221547842,-0.9228268266,-0.9230956435,-0.923230052,-0.9236332774,-0.9239020944,-0.9239020944,-0.9237676859,-0.9236332774,-0.9236332774,-0.9234988689,-0.922961235,-0.9225580096,-0.9225580096,-0.9226924181,-0.9228268266,-0.9230956435,-0.9226924181,-0.9217515588,-0.9217515588,-0.922961235,-0.9236332774,-0.9234988689,-0.9237676859,-0.9240365028,-0.923230052,-0.9224236012,-0.9228268266,-0.9233644605,-0.9233644605,-0.9241709113,-0.9257839322,-0.9269936085,-0.9271280169,-0.9267247915,-0.9264559746,-0.9263215661,-0.9263215661,-0.9255151153,-0.9243053794,-0.9243053794,-0.9252462983,-0.9259183407,-0.9259183407,-0.9261871576,-0.9263215661,-0.9255151153,-0.9245741963,-0.9257839322,-0.9276656508,-0.9278000593,-0.9268592,-0.9259183407,-0.9247086048,-0.9237676859,-0.9233644605,-0.9221547842,-0.9208106995,-0.9214827418,-0.9234988689,-0.9243053794,-0.9241709113,-0.9234988689,-0.9226924181,-0.9224236012,-0.9226924181,-0.9228268266,-0.9224236012,-0.9218859673,-0.9217515588,-0.9220203757,-0.9224236012,-0.9228268266,-0.9230956435,-0.9230956435,-0.9230956435,-0.923230052,-0.9233644605,-0.9233644605,-0.923230052,-0.923230052,-0.9230956435,-0.9226924181,-0.9224236012,-0.9224236012,-0.9224236012,-0.9220203757,-0.9213483334,-0.9209451079,-0.9208106995,-0.9205418825,-0.920407474,-0.9217515588,-0.9247086048,-0.9273968339,-0.9290097952,-0.929816246,-0.930085063,-0.9299506545,-0.9295474291,-0.9292786121,-0.9294130206,-0.9296818376,-0.929816246,-0.929816246,-0.9299506545,-0.9299506545,-0.929816246,-0.9296818376,-0.9295474291,-0.9296818376,-0.9296818376,-0.9296818376,-0.9299506545,-0.9299506545,-0.929816246,-0.9296818376,-0.9296818376,-0.9296818376,-0.929816246,-0.9299506545,-0.9299506545,-0.9299506545,-0.929816246,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9299506545,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.930085063],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.929816246,-0.9287409782,-0.929816246,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.930085063,-0.929816246,-0.929816246,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.929816246,-0.929816246,-0.929816246,-0.9299506545,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9299506545,-0.9299506545,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.929816246,-0.9284721017,-0.9261871576,-0.9240365028,-0.9224236012,-0.9218859673,-0.9226924181,-0.9239020944,-0.9230956435,-0.9209451079,-0.9194665551,-0.9197353721,-0.920407474,-0.9205418825,-0.920407474,-0.9209451079,-0.9217515588,-0.9226924181,-0.9230956435,-0.9233644605,-0.9236332774,-0.9239020944,-0.9240365028,-0.9243053794,-0.9244397879,-0.9244397879,-0.9243053794,-0.9241709113,-0.9237676859,-0.9230956435,-0.9226924181,-0.9226924181,-0.9230956435,-0.923230052,-0.922961235,-0.9225580096,-0.9224236012,-0.9226924181,-0.923230052,-0.9233644605,-0.9230956435,-0.9224236012,-0.9214827418,-0.9213483334,-0.9224236012,-0.9237676859,-0.9247086048,-0.9256495237,-0.9265903831,-0.9268592,-0.9265903831,-0.9256495237,-0.9241709113,-0.9237676859,-0.9244397879,-0.9244397879,-0.9239020944,-0.9241709113,-0.9251118898,-0.9255151153,-0.9255151153,-0.9256495237,-0.9256495237,-0.9249774814,-0.9230956435,-0.922961235,-0.9260527492,-0.9282032847,-0.9278000593,-0.9268592,-0.9255151153,-0.9237676859,-0.9228268266,-0.9221547842,-0.9205418825,-0.9209451079,-0.9237676859,-0.9253807068,-0.9249774814,-0.9243053794,-0.9237676859,-0.9237676859,-0.9237676859,-0.9230956435,-0.9222891927,-0.9218859673,-0.9221547842,-0.922961235,-0.9237676859,-0.9240365028,-0.9241709113,-0.9243053794,-0.9244397879,-0.9244397879,-0.9241709113,-0.9240365028,-0.9241709113,-0.9239020944,-0.9236332774,-0.923230052,-0.9225580096,-0.9218859673,-0.9217515588,-0.9218859673,-0.9218859673,-0.9217515588,-0.9213483334,-0.9213483334,-0.9209451079,-0.920407474,-0.9208106995,-0.923230052,-0.9261871576,-0.9286065698,-0.9295474291,-0.9294130206,-0.9296818376,-0.930085063,-0.9299506545,-0.9296818376,-0.929816246,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.9299506545,-0.929816246,-0.930085063,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9299506545,-0.929816246,-0.929816246,-0.929816246,-0.929816246,-0.9296818376,-0.9296818376,-0.929816246,-0.929816246,-0.9296818376,-0.929816246,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.929816246,-0.930085063,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9299506545],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9294130206,-0.9283376932,-0.9294130206,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.930085063,-0.9299506545,-0.9299506545,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.929816246,-0.9282032847,-0.9261871576,-0.9240365028,-0.9225580096,-0.9220203757,-0.9228268266,-0.9239020944,-0.9233644605,-0.9212139249,-0.9194665551,-0.9191977382,-0.9196009636,-0.9197353721,-0.9197353721,-0.9201386571,-0.9209451079,-0.9221547842,-0.9230956435,-0.9233644605,-0.9234988689,-0.9240365028,-0.9244397879,-0.9245741963,-0.9248430729,-0.9251118898,-0.9252462983,-0.9248430729,-0.9244397879,-0.9240365028,-0.9236332774,-0.923230052,-0.9230956435,-0.923230052,-0.9234988689,-0.9236332774,-0.9234988689,-0.9230956435,-0.9226924181,-0.9228268266,-0.9228268266,-0.9221547842,-0.9212139249,-0.9209451079,-0.9213483334,-0.9225580096,-0.9240365028,-0.9252462983,-0.9260527492,-0.9264559746,-0.9259183407,-0.9255151153,-0.9247086048,-0.9234988689,-0.9233644605,-0.9251118898,-0.9255151153,-0.9239020944,-0.9233644605,-0.9244397879,-0.9248430729,-0.9247086048,-0.9251118898,-0.9257839322,-0.9263215661,-0.9257839322,-0.9247086048,-0.9255151153,-0.9276656508,-0.9282032847,-0.9269936085,-0.9257839322,-0.9241709113,-0.9224236012,-0.9210795164,-0.9200042486,-0.9198697805,-0.9213483334,-0.9236332774,-0.9245741963,-0.9243053794,-0.9240365028,-0.9239020944,-0.9239020944,-0.9233644605,-0.9225580096,-0.9225580096,-0.922961235,-0.9236332774,-0.9244397879,-0.9249774814,-0.9251118898,-0.9252462983,-0.9255151153,-0.9252462983,-0.9248430729,-0.9248430729,-0.9247086048,-0.9244397879,-0.9240365028,-0.9236332774,-0.923230052,-0.9221547842,-0.9210795164,-0.920676291,-0.9208106995,-0.9210795164,-0.9212139249,-0.9216171503,-0.9220203757,-0.9217515588,-0.9208106995,-0.9208106995,-0.9228268266,-0.9257839322,-0.9284721017,-0.9295474291,-0.9295474291,-0.9296818376,-0.9296818376,-0.9295474291,-0.9296818376,-0.9302194715,-0.9299506545,-0.929816246,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.929816246,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.930085063,-0.9299506545,-0.9299506545,-0.9296818376,-0.9296818376,-0.9296818376,-0.9299506545,-0.9302194715,-0.930085063,-0.929816246,-0.9299506545,-0.930085063,-0.930085063,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.929816246,-0.9296818376,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.929816246,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9303538799,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.929816246,-0.9299506545,-0.930085063,-0.930085063,-0.929816246,-0.9299506545,-0.9302194715,-0.930085063,-0.9299506545],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.929816246,-0.9287409782,-0.9295474291,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.929816246,-0.9299506545,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9303538799,-0.929816246,-0.9280688763,-0.9260527492,-0.9241709113,-0.9226924181,-0.9218859673,-0.9224236012,-0.9237676859,-0.9234988689,-0.9217515588,-0.9197353721,-0.9185256958,-0.9183912873,-0.9190633297,-0.9191977382,-0.9194665551,-0.920407474,-0.9216171503,-0.9226924181,-0.923230052,-0.9236332774,-0.9239020944,-0.9244397879,-0.9248430729,-0.9249774814,-0.9251118898,-0.9253807068,-0.9253807068,-0.9251118898,-0.9247086048,-0.9244397879,-0.9240365028,-0.9237676859,-0.923230052,-0.923230052,-0.9236332774,-0.9239020944,-0.9237676859,-0.9230956435,-0.922961235,-0.9233644605,-0.9233644605,-0.9225580096,-0.9218859673,-0.9220203757,-0.9224236012,-0.9230956435,-0.9241709113,-0.9251118898,-0.9252462983,-0.9251118898,-0.9249774814,-0.9248430729,-0.9249774814,-0.9244397879,-0.9239020944,-0.9245741963,-0.9253807068,-0.9247086048,-0.9240365028,-0.9239020944,-0.9234988689,-0.9236332774,-0.9252462983,-0.9268592,-0.9273968339,-0.9273968339,-0.9268592,-0.9260527492,-0.9265903831,-0.9272624254,-0.9261871576,-0.9247086048,-0.9241709113,-0.9236332774,-0.9218859673,-0.9197353721,-0.9185256958,-0.9194665551,-0.9214827418,-0.9234988689,-0.9240365028,-0.9237676859,-0.9236332774,-0.9239020944,-0.9237676859,-0.9230956435,-0.922961235,-0.9236332774,-0.9244397879,-0.9249774814,-0.9255151153,-0.9257839322,-0.9259183407,-0.9260527492,-0.9261871576,-0.9257839322,-0.9255151153,-0.9251118898,-0.9247086048,-0.9243053794,-0.9239020944,-0.9234988689,-0.9226924181,-0.9214827418,-0.9201386571,-0.9197353721,-0.9200042486,-0.9205418825,-0.9210795164,-0.9218859673,-0.9226924181,-0.9224236012,-0.9212139249,-0.9209451079,-0.9224236012,-0.9252462983,-0.9283376932,-0.9296818376,-0.9294130206,-0.9291442037,-0.9294130206,-0.929816246,-0.9299506545,-0.9299506545,-0.9299506545,-0.929816246,-0.929816246,-0.9299506545,-0.930085063,-0.9299506545,-0.929816246,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.929816246,-0.9296818376,-0.9299506545,-0.9302194715,-0.9303538799,-0.9304882884,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.929816246,-0.9299506545,-0.929816246,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.9299506545,-0.9303538799,-0.930085063,-0.9302194715,-0.9299506545,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.9299506545,-0.929816246,-0.9299506545,-0.9302194715,-0.9299506545,-0.929816246,-0.929816246,-0.9296818376,-0.9299506545,-0.930085063,-0.9295474291,-0.930085063,-0.9302194715,-0.930085063,-0.9292786121],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9295474291,-0.9295474291,-0.930085063,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9299506545,-0.9299506545,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9299506545,-0.9286065698,-0.9261871576,-0.9240365028,-0.9225580096,-0.9217515588,-0.9221547842,-0.9234988689,-0.9240365028,-0.922961235,-0.920676291,-0.9183912873,-0.9173160195,-0.917719245,-0.9186601043,-0.9193321466,-0.9197353721,-0.9205418825,-0.9218859673,-0.9230956435,-0.9237676859,-0.9240365028,-0.9241709113,-0.9247086048,-0.9251118898,-0.9252462983,-0.9253807068,-0.9255151153,-0.9255151153,-0.9253807068,-0.9251118898,-0.9247086048,-0.9244397879,-0.9240365028,-0.9237676859,-0.9237676859,-0.9240365028,-0.9240365028,-0.9236332774,-0.9230956435,-0.9230956435,-0.9236332774,-0.9240365028,-0.9240365028,-0.9239020944,-0.9239020944,-0.9241709113,-0.9247086048,-0.9251118898,-0.9247086048,-0.9240365028,-0.9241709113,-0.9245741963,-0.9244397879,-0.9244397879,-0.9245741963,-0.9241709113,-0.9237676859,-0.9244397879,-0.9251118898,-0.9243053794,-0.9226924181,-0.9224236012,-0.9237676859,-0.9256495237,-0.9267247915,-0.9268592,-0.9267247915,-0.9268592,-0.9267247915,-0.9265903831,-0.9260527492,-0.9248430729,-0.9237676859,-0.9240365028,-0.9251118898,-0.9247086048,-0.9236332774,-0.9230956435,-0.9230956435,-0.923230052,-0.9234988689,-0.9237676859,-0.9236332774,-0.9236332774,-0.9237676859,-0.9237676859,-0.9236332774,-0.9237676859,-0.9243053794,-0.9251118898,-0.9257839322,-0.9261871576,-0.9264559746,-0.9263215661,-0.9263215661,-0.9263215661,-0.9263215661,-0.9260527492,-0.9257839322,-0.9253807068,-0.9248430729,-0.9243053794,-0.9237676859,-0.922961235,-0.9221547842,-0.9210795164,-0.9200042486,-0.9194665551,-0.9194665551,-0.9198697805,-0.920676291,-0.9221547842,-0.923230052,-0.9228268266,-0.9213483334,-0.9209451079,-0.9225580096,-0.9251118898,-0.9279344678,-0.9292786121,-0.9295474291,-0.9295474291,-0.9296818376,-0.929816246,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9299506545,-0.929816246,-0.929816246,-0.9299506545,-0.9299506545,-0.929816246,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.929816246,-0.929816246,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9296818376,-0.929816246,-0.9299506545,-0.929816246,-0.929816246,-0.9296818376,-0.9296818376,-0.929816246,-0.9299506545,-0.9299506545,-0.9299506545,-0.9303538799,-0.9296818376,-0.9299506545,-0.930085063,-0.9302194715,-0.929816246],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9294130206,-0.9291442037,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9304882884,-0.9292786121,-0.9265903831,-0.9241709113,-0.9225580096,-0.9216171503,-0.9221547842,-0.9236332774,-0.9245741963,-0.9240365028,-0.9221547842,-0.9193321466,-0.9170472026,-0.9166439772,-0.917450428,-0.9185256958,-0.9190633297,-0.9196009636,-0.920676291,-0.9220203757,-0.923230052,-0.9239020944,-0.9241709113,-0.9244397879,-0.9249774814,-0.9253807068,-0.9255151153,-0.9256495237,-0.9257839322,-0.9257839322,-0.9256495237,-0.9255151153,-0.9252462983,-0.9248430729,-0.9244397879,-0.9241709113,-0.9243053794,-0.9244397879,-0.9241709113,-0.9236332774,-0.923230052,-0.923230052,-0.9234988689,-0.9240365028,-0.9245741963,-0.9247086048,-0.9244397879,-0.9247086048,-0.9252462983,-0.9249774814,-0.9240365028,-0.9236332774,-0.9241709113,-0.9245741963,-0.9243053794,-0.9237676859,-0.9236332774,-0.9237676859,-0.9241709113,-0.9248430729,-0.9251118898,-0.9245741963,-0.9230956435,-0.9224236012,-0.9237676859,-0.9249774814,-0.9245741963,-0.9239020944,-0.9243053794,-0.9252462983,-0.9257839322,-0.9261871576,-0.9260527492,-0.9249774814,-0.9241709113,-0.9247086048,-0.9256495237,-0.9257839322,-0.9252462983,-0.9253807068,-0.9253807068,-0.9249774814,-0.9243053794,-0.9236332774,-0.9234988689,-0.9237676859,-0.9240365028,-0.9240365028,-0.9244397879,-0.9247086048,-0.9251118898,-0.9257839322,-0.9263215661,-0.9268592,-0.9268592,-0.9267247915,-0.9265903831,-0.9267247915,-0.9267247915,-0.9267247915,-0.9261871576,-0.9256495237,-0.9251118898,-0.9247086048,-0.9241709113,-0.923230052,-0.9220203757,-0.9209451079,-0.9200042486,-0.9190633297,-0.9181224704,-0.9179880619,-0.9187945127,-0.9205418825,-0.9224236012,-0.9234988689,-0.922961235,-0.9216171503,-0.9212139249,-0.9228268266,-0.9255151153,-0.9280688763,-0.9294130206,-0.9296818376,-0.9295474291,-0.9295474291,-0.929816246,-0.9299506545,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.929816246,-0.9295474291,-0.9295474291,-0.9295474291,-0.9296818376,-0.9296818376,-0.9296818376,-0.929816246,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.929816246,-0.9296818376,-0.929816246,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.9299506545,-0.929816246,-0.929816246,-0.929816246,-0.929816246,-0.929816246,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9299506545,-0.9296818376],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9282032847,-0.9286065698,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9299506545,-0.9296818376,-0.9296818376,-0.929816246,-0.929816246,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9303538799,-0.9302194715,-0.929816246,-0.9275312424,-0.9247086048,-0.922961235,-0.9222891927,-0.9224236012,-0.9237676859,-0.9255151153,-0.9259183407,-0.9243053794,-0.9210795164,-0.9175848365,-0.9158375263,-0.9162407517,-0.9173160195,-0.9181224704,-0.9187945127,-0.9196009636,-0.920676291,-0.9221547842,-0.9234988689,-0.9240365028,-0.9243053794,-0.9247086048,-0.9251118898,-0.9253807068,-0.9255151153,-0.9257839322,-0.9259183407,-0.9257839322,-0.9255151153,-0.9253807068,-0.9252462983,-0.9248430729,-0.9244397879,-0.9243053794,-0.9243053794,-0.9244397879,-0.9241709113,-0.9240365028,-0.9240365028,-0.9239020944,-0.9237676859,-0.9239020944,-0.9243053794,-0.9243053794,-0.9241709113,-0.9248430729,-0.9256495237,-0.9255151153,-0.9247086048,-0.9243053794,-0.9244397879,-0.9245741963,-0.9244397879,-0.9241709113,-0.9239020944,-0.9234988689,-0.9233644605,-0.9233644605,-0.923230052,-0.9230956435,-0.9228268266,-0.9224236012,-0.9226924181,-0.923230052,-0.9230956435,-0.922961235,-0.9239020944,-0.9248430729,-0.9253807068,-0.9260527492,-0.9263215661,-0.9255151153,-0.9244397879,-0.9247086048,-0.9257839322,-0.9260527492,-0.9255151153,-0.9252462983,-0.9252462983,-0.9251118898,-0.9243053794,-0.9236332774,-0.9237676859,-0.9243053794,-0.9244397879,-0.9244397879,-0.9248430729,-0.9253807068,-0.9257839322,-0.9263215661,-0.9268592,-0.9271280169,-0.9271280169,-0.9271280169,-0.9269936085,-0.9269936085,-0.9268592,-0.9267247915,-0.9264559746,-0.9259183407,-0.9253807068,-0.9251118898,-0.9244397879,-0.9233644605,-0.9220203757,-0.920676291,-0.9194665551,-0.9183912873,-0.917450428,-0.9167783856,-0.9171816111,-0.9187945127,-0.9212139249,-0.922961235,-0.9233644605,-0.9225580096,-0.9218859673,-0.9224236012,-0.9237676859,-0.9259183407,-0.9283376932,-0.929816246,-0.9299506545,-0.929816246,-0.929816246,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.9299506545,-0.929816246,-0.9296818376,-0.9295474291,-0.9295474291,-0.9296818376,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.929816246,-0.9296818376,-0.929816246,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.929816246,-0.9299506545,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9299506545,-0.929816246,-0.9299506545,-0.9299506545,-0.9299506545,-0.929816246,-0.929816246,-0.9299506545,-0.930085063,-0.930085063,-0.929816246,-0.9296818376,-0.929816246,-0.930085063,-0.930085063,-0.9299506545,-0.9296818376],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9288753867,-0.9294130206,-0.9302194715,-0.9302194715,-0.9299506545,-0.930085063,-0.9302194715,-0.9299506545,-0.930085063,-0.9295474291,-0.929816246,-0.930085063,-0.9299506545,-0.929816246,-0.9296818376,-0.9296818376,-0.929816246,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9296818376,-0.9296818376,-0.9299506545,-0.930085063,-0.9303538799,-0.9303538799,-0.9304882884,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9303538799,-0.9302194715,-0.9284721017,-0.9253807068,-0.9233644605,-0.9225580096,-0.9228268266,-0.9240365028,-0.9257839322,-0.9271280169,-0.9265903831,-0.9240365028,-0.9202730656,-0.9169127941,-0.9152998328,-0.9158375263,-0.9171816111,-0.9179880619,-0.9185256958,-0.9196009636,-0.9208106995,-0.9220203757,-0.9233644605,-0.9243053794,-0.9245741963,-0.9247086048,-0.9249774814,-0.9252462983,-0.9252462983,-0.9255151153,-0.9256495237,-0.9256495237,-0.9253807068,-0.9251118898,-0.9248430729,-0.9245741963,-0.9244397879,-0.9243053794,-0.9243053794,-0.9243053794,-0.9244397879,-0.9245741963,-0.9243053794,-0.9240365028,-0.9240365028,-0.9241709113,-0.9241709113,-0.9236332774,-0.9239020944,-0.9251118898,-0.9263215661,-0.9260527492,-0.9249774814,-0.9243053794,-0.9243053794,-0.9243053794,-0.9245741963,-0.9247086048,-0.9248430729,-0.9244397879,-0.9236332774,-0.9226924181,-0.9221547842,-0.9220203757,-0.922961235,-0.9237676859,-0.9233644605,-0.9230956435,-0.9236332774,-0.9240365028,-0.9245741963,-0.9252462983,-0.9255151153,-0.9256495237,-0.9257839322,-0.9255151153,-0.9244397879,-0.9241709113,-0.9253807068,-0.9264559746,-0.9257839322,-0.9247086048,-0.9245741963,-0.9244397879,-0.9240365028,-0.9237676859,-0.9241709113,-0.9248430729,-0.9248430729,-0.9245741963,-0.9251118898,-0.9260527492,-0.9263215661,-0.9264559746,-0.9267247915,-0.9271280169,-0.9271280169,-0.9271280169,-0.9271280169,-0.9271280169,-0.9269936085,-0.9269936085,-0.9267247915,-0.9263215661,-0.9256495237,-0.9252462983,-0.9247086048,-0.9236332774,-0.9221547842,-0.920676291,-0.9191977382,-0.9182568789,-0.917450428,-0.9165095687,-0.9159719348,-0.9171816111,-0.9198697805,-0.9225580096,-0.9237676859,-0.9233644605,-0.9226924181,-0.9226924181,-0.923230052,-0.9244397879,-0.9265903831,-0.9287409782,-0.929816246,-0.9299506545,-0.9299506545,-0.929816246,-0.929816246,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.929816246,-0.929816246,-0.9299506545,-0.930085063,-0.9299506545,-0.929816246,-0.929816246,-0.9296818376,-0.9296818376,-0.929816246,-0.929816246,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9299506545,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.929816246,-0.929816246,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.9299506545,-0.9296818376,-0.9299506545,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.929816246],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.9294130206,-0.929816246,-0.9303538799,-0.9303538799,-0.930085063,-0.9302194715,-0.9299506545,-0.930085063,-0.9296818376,-0.9296818376,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9299506545,-0.929816246,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9299506545,-0.929816246,-0.930085063,-0.9302194715,-0.930085063,-0.9304882884,-0.9302194715,-0.9303538799,-0.9303538799,-0.930085063,-0.9303538799,-0.9303538799,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9296818376,-0.9263215661,-0.9236332774,-0.9228268266,-0.9226924181,-0.9236332774,-0.9255151153,-0.9271280169,-0.9273968339,-0.9261871576,-0.9233644605,-0.9194665551,-0.9163751602,-0.9148965478,-0.9155686498,-0.9171816111,-0.9181224704,-0.9185256958,-0.9193321466,-0.920676291,-0.9217515588,-0.9230956435,-0.9243053794,-0.9247086048,-0.9245741963,-0.9244397879,-0.9247086048,-0.9249774814,-0.9251118898,-0.9253807068,-0.9252462983,-0.9251118898,-0.9248430729,-0.9245741963,-0.9244397879,-0.9245741963,-0.9245741963,-0.9244397879,-0.9243053794,-0.9244397879,-0.9243053794,-0.9237676859,-0.9236332774,-0.9240365028,-0.9244397879,-0.9240365028,-0.9234988689,-0.9239020944,-0.9255151153,-0.9263215661,-0.9255151153,-0.9243053794,-0.9237676859,-0.9237676859,-0.9239020944,-0.9243053794,-0.9245741963,-0.9245741963,-0.9243053794,-0.9239020944,-0.9237676859,-0.9237676859,-0.9236332774,-0.9243053794,-0.9251118898,-0.9247086048,-0.9234988689,-0.9237676859,-0.9244397879,-0.9247086048,-0.9248430729,-0.9252462983,-0.9253807068,-0.9253807068,-0.9253807068,-0.9248430729,-0.9243053794,-0.9249774814,-0.9260527492,-0.9256495237,-0.9244397879,-0.9240365028,-0.9239020944,-0.9237676859,-0.9240365028,-0.9247086048,-0.9251118898,-0.9248430729,-0.9244397879,-0.9247086048,-0.9253807068,-0.9260527492,-0.9263215661,-0.9265903831,-0.9268592,-0.9268592,-0.9269936085,-0.9271280169,-0.9273968339,-0.9271280169,-0.9268592,-0.9267247915,-0.9263215661,-0.9256495237,-0.9252462983,-0.9248430729,-0.9240365028,-0.9226924181,-0.9212139249,-0.9198697805,-0.9187945127,-0.9179880619,-0.9169127941,-0.9159719348,-0.9163751602,-0.9186601043,-0.9220203757,-0.9244397879,-0.9247086048,-0.9236332774,-0.922961235,-0.9230956435,-0.9237676859,-0.9249774814,-0.9269936085,-0.9290097952,-0.930085063,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.929816246,-0.929816246,-0.9299506545,-0.929816246,-0.929816246,-0.9296818376,-0.9296818376,-0.9299506545,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.9299506545,-0.9296818376,-0.929816246,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9299506545,-0.930085063,-0.930085063,-0.929816246,-0.929816246,-0.930085063,-0.930085063,-0.929816246,-0.9299506545,-0.930085063,-0.9295474291,-0.9295474291,-0.929816246,-0.9299506545],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9302194715,-0.9283376932,-0.9292786121,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9303538799,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9302194715,-0.930085063,-0.9299506545,-0.9295474291,-0.9276656508,-0.9241709113,-0.9226924181,-0.9228268266,-0.9233644605,-0.9247086048,-0.9265903831,-0.9275312424,-0.9271280169,-0.9253807068,-0.9226924181,-0.9191977382,-0.9161063433,-0.9147621393,-0.9154342413,-0.9169127941,-0.9179880619,-0.9187945127,-0.9196009636,-0.920676291,-0.9218859673,-0.9230956435,-0.9239020944,-0.9243053794,-0.9241709113,-0.9239020944,-0.9240365028,-0.9245741963,-0.9248430729,-0.9245741963,-0.9244397879,-0.9244397879,-0.9241709113,-0.9240365028,-0.9241709113,-0.9241709113,-0.9243053794,-0.9243053794,-0.9240365028,-0.9236332774,-0.9233644605,-0.9236332774,-0.9237676859,-0.9237676859,-0.9239020944,-0.9236332774,-0.923230052,-0.9241709113,-0.9257839322,-0.9265903831,-0.9260527492,-0.9248430729,-0.9239020944,-0.9234988689,-0.9236332774,-0.9240365028,-0.9244397879,-0.9243053794,-0.9239020944,-0.9236332774,-0.9237676859,-0.9240365028,-0.9241709113,-0.9248430729,-0.9255151153,-0.9248430729,-0.9237676859,-0.9239020944,-0.9247086048,-0.9248430729,-0.9247086048,-0.9249774814,-0.9251118898,-0.9251118898,-0.9251118898,-0.9249774814,-0.9244397879,-0.9245741963,-0.9255151153,-0.9259183407,-0.9251118898,-0.9241709113,-0.9237676859,-0.9237676859,-0.9244397879,-0.9248430729,-0.9248430729,-0.9247086048,-0.9244397879,-0.9244397879,-0.9248430729,-0.9253807068,-0.9260527492,-0.9263215661,-0.9263215661,-0.9264559746,-0.9265903831,-0.9268592,-0.9269936085,-0.9271280169,-0.9269936085,-0.9267247915,-0.9261871576,-0.9256495237,-0.9253807068,-0.9249774814,-0.9240365028,-0.9226924181,-0.9212139249,-0.9200042486,-0.9190633297,-0.9178536534,-0.9166439772,-0.9158375263,-0.9162407517,-0.9179880619,-0.9213483334,-0.9248430729,-0.9261871576,-0.9249774814,-0.9233644605,-0.923230052,-0.9237676859,-0.9243053794,-0.9253807068,-0.9275312424,-0.9295474291,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.929816246,-0.929816246,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.929816246,-0.9296818376,-0.9296818376,-0.9299506545,-0.9302194715,-0.9302194715,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.930085063,-0.929816246,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.929816246,-0.9299506545,-0.9299506545,-0.930085063,-0.9303538799,-0.930085063,-0.929816246,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.929816246],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.930085063,-0.9290097952,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9299506545,-0.929816246,-0.929816246,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9302194715,-0.9299506545,-0.9294130206,-0.9288753867,-0.9257839322,-0.9230956435,-0.9225580096,-0.9230956435,-0.9243053794,-0.9264559746,-0.9279344678,-0.9278000593,-0.9268592,-0.9256495237,-0.9233644605,-0.9196009636,-0.9159719348,-0.9146277308,-0.9155686498,-0.9167783856,-0.9175848365,-0.9186601043,-0.9200042486,-0.9209451079,-0.9216171503,-0.9222891927,-0.9230956435,-0.9234988689,-0.9234988689,-0.9234988689,-0.9237676859,-0.9241709113,-0.9244397879,-0.9244397879,-0.9241709113,-0.9239020944,-0.9239020944,-0.9239020944,-0.9237676859,-0.9236332774,-0.9237676859,-0.9240365028,-0.9237676859,-0.9230956435,-0.9230956435,-0.9237676859,-0.9237676859,-0.9236332774,-0.9234988689,-0.9230956435,-0.9230956435,-0.9243053794,-0.9257839322,-0.9264559746,-0.9259183407,-0.9247086048,-0.9234988689,-0.9230956435,-0.9233644605,-0.9237676859,-0.9240365028,-0.9239020944,-0.9237676859,-0.9239020944,-0.9240365028,-0.9240365028,-0.9244397879,-0.9251118898,-0.9253807068,-0.9247086048,-0.9239020944,-0.9239020944,-0.9241709113,-0.9241709113,-0.9243053794,-0.9244397879,-0.9244397879,-0.9244397879,-0.9245741963,-0.9244397879,-0.9240365028,-0.9243053794,-0.9252462983,-0.9259183407,-0.9251118898,-0.9237676859,-0.923230052,-0.9233644605,-0.9240365028,-0.9243053794,-0.9240365028,-0.9241709113,-0.9244397879,-0.9243053794,-0.9243053794,-0.9249774814,-0.9256495237,-0.9260527492,-0.9260527492,-0.9260527492,-0.9261871576,-0.9263215661,-0.9265903831,-0.9267247915,-0.9265903831,-0.9261871576,-0.9259183407,-0.9256495237,-0.9252462983,-0.9247086048,-0.9237676859,-0.9225580096,-0.9210795164,-0.9198697805,-0.9189289212,-0.9175848365,-0.9165095687,-0.9159719348,-0.9162407517,-0.9178536534,-0.9213483334,-0.9252462983,-0.9272624254,-0.9268592,-0.9252462983,-0.9239020944,-0.9237676859,-0.9239020944,-0.9241709113,-0.9257839322,-0.9284721017,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.929816246,-0.929816246,-0.929816246,-0.929816246,-0.929816246,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.929816246,-0.929816246,-0.929816246,-0.929816246,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.9296818376,-0.9295474291,-0.9299506545,-0.9299506545,-0.930085063,-0.9299506545,-0.929816246,-0.9296818376],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9296818376,-0.9288753867,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9299506545,-0.9292786121,-0.9273968339,-0.9244397879,-0.922961235,-0.9228268266,-0.9236332774,-0.9256495237,-0.9280688763,-0.9292786121,-0.9286065698,-0.9275312424,-0.9264559746,-0.9241709113,-0.9198697805,-0.9159719348,-0.9147621393,-0.9157031178,-0.9169127941,-0.917450428,-0.9181224704,-0.9191977382,-0.9201386571,-0.9209451079,-0.9218859673,-0.9228268266,-0.923230052,-0.923230052,-0.9230956435,-0.9234988689,-0.9240365028,-0.9240365028,-0.9237676859,-0.9233644605,-0.9233644605,-0.9237676859,-0.9239020944,-0.9236332774,-0.9234988689,-0.9234988689,-0.9233644605,-0.9230956435,-0.9226924181,-0.9230956435,-0.9237676859,-0.9234988689,-0.9236332774,-0.9239020944,-0.9234988689,-0.9233644605,-0.9244397879,-0.9256495237,-0.9259183407,-0.9253807068,-0.9243053794,-0.9236332774,-0.9234988689,-0.9234988689,-0.9234988689,-0.9237676859,-0.9234988689,-0.9234988689,-0.9240365028,-0.9241709113,-0.9239020944,-0.9244397879,-0.9255151153,-0.9255151153,-0.9245741963,-0.9240365028,-0.9240365028,-0.9239020944,-0.9237676859,-0.9239020944,-0.9239020944,-0.9240365028,-0.9240365028,-0.9241709113,-0.9240365028,-0.9236332774,-0.9234988689,-0.9241709113,-0.9251118898,-0.9244397879,-0.9228268266,-0.9224236012,-0.9233644605,-0.9239020944,-0.9236332774,-0.9234988689,-0.9239020944,-0.9243053794,-0.9243053794,-0.9240365028,-0.9241709113,-0.9247086048,-0.9253807068,-0.9259183407,-0.9260527492,-0.9259183407,-0.9259183407,-0.9260527492,-0.9260527492,-0.9260527492,-0.9257839322,-0.9253807068,-0.9251118898,-0.9248430729,-0.9243053794,-0.9234988689,-0.9224236012,-0.9209451079,-0.9193321466,-0.9181224704,-0.9173160195,-0.9167783856,-0.9165095687,-0.9163751602,-0.9175848365,-0.9212139249,-0.9255151153,-0.9279344678,-0.9282032847,-0.9271280169,-0.9248430729,-0.9233644605,-0.9234988689,-0.9236332774,-0.9241709113,-0.9267247915,-0.9296818376,-0.9299506545,-0.9302194715,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.930085063,-0.9299506545,-0.929816246,-0.929816246,-0.9296818376,-0.9296818376,-0.929816246,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9299506545,-0.929816246,-0.929816246,-0.930085063,-0.9303538799,-0.9299506545,-0.929816246,-0.929816246,-0.9294130206,-0.9295474291,-0.929816246,-0.930085063,-0.930085063,-0.9302194715,-0.929816246],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9295474291,-0.9290097952,-0.929816246,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.929816246,-0.930085063,-0.930085063,-0.929816246,-0.929816246,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9296818376,-0.9284721017,-0.9255151153,-0.923230052,-0.9226924181,-0.923230052,-0.9245741963,-0.9268592,-0.9290097952,-0.9294130206,-0.9287409782,-0.9279344678,-0.9269936085,-0.9245741963,-0.920407474,-0.9163751602,-0.9150309563,-0.9157031178,-0.9166439772,-0.9173160195,-0.9179880619,-0.9185256958,-0.9191977382,-0.920676291,-0.9220203757,-0.9225580096,-0.9228268266,-0.9230956435,-0.923230052,-0.9233644605,-0.9234988689,-0.9233644605,-0.9230956435,-0.9230956435,-0.9233644605,-0.9233644605,-0.9236332774,-0.9236332774,-0.923230052,-0.9226924181,-0.9224236012,-0.9224236012,-0.9228268266,-0.9234988689,-0.9236332774,-0.9237676859,-0.9241709113,-0.9241709113,-0.9233644605,-0.9230956435,-0.9243053794,-0.9255151153,-0.9255151153,-0.9245741963,-0.9236332774,-0.923230052,-0.9230956435,-0.9228268266,-0.9228268266,-0.923230052,-0.9230956435,-0.9230956435,-0.9240365028,-0.9244397879,-0.9241709113,-0.9249774814,-0.9263215661,-0.9260527492,-0.9248430729,-0.9241709113,-0.9243053794,-0.9243053794,-0.9240365028,-0.9239020944,-0.9240365028,-0.9240365028,-0.9239020944,-0.9239020944,-0.9241709113,-0.9237676859,-0.9224236012,-0.9226924181,-0.9241709113,-0.9240365028,-0.9222891927,-0.9216171503,-0.9230956435,-0.9244397879,-0.9239020944,-0.923230052,-0.9237676859,-0.9241709113,-0.9240365028,-0.9237676859,-0.9237676859,-0.9239020944,-0.9244397879,-0.9252462983,-0.9255151153,-0.9255151153,-0.9255151153,-0.9255151153,-0.9255151153,-0.9255151153,-0.9251118898,-0.9247086048,-0.9244397879,-0.9244397879,-0.9239020944,-0.922961235,-0.9218859673,-0.920407474,-0.9185256958,-0.9173160195,-0.9167783856,-0.9165095687,-0.9162407517,-0.9162407517,-0.9173160195,-0.920407474,-0.9247086048,-0.9276656508,-0.9284721017,-0.9279344678,-0.9261871576,-0.9237676859,-0.922961235,-0.9233644605,-0.9234988689,-0.9247086048,-0.9276656508,-0.9299506545,-0.9299506545,-0.929816246,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9304882884,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9299506545,-0.9299506545,-0.9299506545,-0.9296818376,-0.929816246,-0.9299506545,-0.9299506545,-0.930085063,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.930085063,-0.9299506545,-0.929816246,-0.929816246,-0.9296818376,-0.929816246,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.929816246,-0.9299506545,-0.9299506545,-0.9299506545,-0.9295474291,-0.9296818376,-0.929816246],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9296818376,-0.9295474291,-0.9299506545,-0.930085063,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.9299506545,-0.929816246,-0.930085063,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9303538799,-0.9302194715,-0.9299506545,-0.9299506545,-0.930085063,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9299506545,-0.9291442037,-0.9268592,-0.9240365028,-0.9228268266,-0.922961235,-0.9237676859,-0.9253807068,-0.9272624254,-0.9284721017,-0.9288753867,-0.9286065698,-0.9282032847,-0.9275312424,-0.9253807068,-0.9212139249,-0.9169127941,-0.9150309563,-0.9155686498,-0.9165095687,-0.9171816111,-0.917719245,-0.9182568789,-0.9191977382,-0.920676291,-0.9218859673,-0.9224236012,-0.9228268266,-0.9230956435,-0.922961235,-0.922961235,-0.922961235,-0.9228268266,-0.9228268266,-0.922961235,-0.922961235,-0.923230052,-0.9237676859,-0.9237676859,-0.9228268266,-0.9217515588,-0.9213483334,-0.9218859673,-0.9225580096,-0.9230956435,-0.9239020944,-0.9240365028,-0.9239020944,-0.923230052,-0.9222891927,-0.9226924181,-0.9247086048,-0.9259183407,-0.9248430729,-0.9233644605,-0.9228268266,-0.9228268266,-0.9226924181,-0.9222891927,-0.9222891927,-0.9226924181,-0.922961235,-0.923230052,-0.9240365028,-0.9244397879,-0.9245741963,-0.9257839322,-0.9269936085,-0.9263215661,-0.9249774814,-0.9243053794,-0.9243053794,-0.9241709113,-0.9236332774,-0.9234988689,-0.9239020944,-0.9239020944,-0.9230956435,-0.9228268266,-0.9234988689,-0.9236332774,-0.9216171503,-0.920676291,-0.9230956435,-0.9240365028,-0.9216171503,-0.9202730656,-0.9218859673,-0.9241709113,-0.9244397879,-0.9230956435,-0.9225580096,-0.9230956435,-0.923230052,-0.9230956435,-0.9234988689,-0.9236332774,-0.9236332774,-0.9241709113,-0.9247086048,-0.9248430729,-0.9247086048,-0.9247086048,-0.9247086048,-0.9245741963,-0.9244397879,-0.9241709113,-0.9240365028,-0.9237676859,-0.9233644605,-0.9226924181,-0.9214827418,-0.9194665551,-0.9175848365,-0.9167783856,-0.9163751602,-0.9161063433,-0.9162407517,-0.9165095687,-0.9173160195,-0.9202730656,-0.9245741963,-0.9273968339,-0.9280688763,-0.9280688763,-0.9271280169,-0.9251118898,-0.923230052,-0.9230956435,-0.9236332774,-0.9241709113,-0.9259183407,-0.9287409782,-0.9296818376,-0.929816246,-0.9299506545,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9303538799,-0.9304882884,-0.9302194715,-0.9299506545,-0.9302194715,-0.930085063,-0.930085063,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9299506545,-0.9299506545,-0.9302194715,-0.929816246,-0.9296818376,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.929816246,-0.9296818376,-0.9295474291,-0.9290097952,-0.9290097952,-0.9299506545],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9291442037,-0.9292786121,-0.929816246,-0.9299506545,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.9302194715,-0.9303538799,-0.9303538799,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.930085063,-0.929816246,-0.929816246,-0.9282032847,-0.9251118898,-0.9230956435,-0.922961235,-0.9236332774,-0.9247086048,-0.9263215661,-0.9275312424,-0.9275312424,-0.9275312424,-0.9282032847,-0.9287409782,-0.9284721017,-0.9271280169,-0.9234988689,-0.9186601043,-0.9158375263,-0.9157031178,-0.9165095687,-0.9170472026,-0.9175848365,-0.9181224704,-0.9193321466,-0.920676291,-0.9217515588,-0.9225580096,-0.9233644605,-0.9234988689,-0.9230956435,-0.9226924181,-0.9226924181,-0.9228268266,-0.922961235,-0.922961235,-0.922961235,-0.9233644605,-0.9236332774,-0.923230052,-0.9220203757,-0.9209451079,-0.9209451079,-0.9217515588,-0.9225580096,-0.9236332774,-0.9241709113,-0.9240365028,-0.9233644605,-0.9220203757,-0.9214827418,-0.922961235,-0.9255151153,-0.9259183407,-0.9247086048,-0.9244397879,-0.9247086048,-0.9240365028,-0.923230052,-0.9228268266,-0.9228268266,-0.9228268266,-0.922961235,-0.9234988689,-0.9243053794,-0.9244397879,-0.9245741963,-0.9259183407,-0.9271280169,-0.9265903831,-0.9251118898,-0.9245741963,-0.9244397879,-0.9243053794,-0.9240365028,-0.9236332774,-0.9236332774,-0.9236332774,-0.923230052,-0.9224236012,-0.9222891927,-0.922961235,-0.922961235,-0.9226924181,-0.9239020944,-0.9241709113,-0.9214827418,-0.9197353721,-0.9213483334,-0.9236332774,-0.9245741963,-0.9234988689,-0.9213483334,-0.9212139249,-0.9225580096,-0.922961235,-0.9228268266,-0.9230956435,-0.9230956435,-0.923230052,-0.9237676859,-0.9243053794,-0.9243053794,-0.9243053794,-0.9241709113,-0.9241709113,-0.9241709113,-0.9240365028,-0.9236332774,-0.9233644605,-0.9230956435,-0.9225580096,-0.9210795164,-0.9187945127,-0.9173160195,-0.9166439772,-0.9162407517,-0.9162407517,-0.9165095687,-0.9166439772,-0.917450428,-0.9205418825,-0.9251118898,-0.9278000593,-0.9282032847,-0.9283376932,-0.9283376932,-0.9269936085,-0.9247086048,-0.9233644605,-0.9236332774,-0.9239020944,-0.9245741963,-0.9268592,-0.9296818376,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.929816246,-0.9296818376,-0.9299506545,-0.9299506545,-0.9295474291,-0.9290097952,-0.9295474291],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9283376932,-0.9295474291,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.9303538799,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.929816246,-0.9299506545,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.930085063,-0.930085063,-0.930085063,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9299506545,-0.9295474291,-0.9291442037,-0.9264559746,-0.9236332774,-0.9228268266,-0.9233644605,-0.9241709113,-0.9257839322,-0.9273968339,-0.9273968339,-0.9263215661,-0.9263215661,-0.9271280169,-0.9276656508,-0.9283376932,-0.9288753867,-0.9268592,-0.9217515588,-0.9173160195,-0.9159719348,-0.9162407517,-0.9165095687,-0.9171816111,-0.9179880619,-0.9190633297,-0.920407474,-0.9217515588,-0.9228268266,-0.9236332774,-0.9236332774,-0.923230052,-0.9225580096,-0.9224236012,-0.9228268266,-0.923230052,-0.9230956435,-0.9230956435,-0.923230052,-0.9228268266,-0.9220203757,-0.9209451079,-0.9205418825,-0.9214827418,-0.922961235,-0.9241709113,-0.9245741963,-0.9241709113,-0.9230956435,-0.9214827418,-0.9202730656,-0.9209451079,-0.9234988689,-0.9256495237,-0.9253807068,-0.9247086048,-0.9249774814,-0.9247086048,-0.9237676859,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.923230052,-0.9237676859,-0.9244397879,-0.9244397879,-0.9244397879,-0.9255151153,-0.9268592,-0.9264559746,-0.9251118898,-0.9245741963,-0.9244397879,-0.9240365028,-0.9237676859,-0.9237676859,-0.9234988689,-0.9236332774,-0.9236332774,-0.9233644605,-0.923230052,-0.9239020944,-0.9248430729,-0.9247086048,-0.9243053794,-0.9234988689,-0.9212139249,-0.9196009636,-0.9209451079,-0.9230956435,-0.9237676859,-0.9233644605,-0.9214827418,-0.9202730656,-0.9212139249,-0.9218859673,-0.9217515588,-0.9225580096,-0.923230052,-0.9230956435,-0.9230956435,-0.9234988689,-0.9234988689,-0.923230052,-0.9233644605,-0.9237676859,-0.9241709113,-0.9240365028,-0.9237676859,-0.9236332774,-0.9233644605,-0.9224236012,-0.9208106995,-0.9187945127,-0.917450428,-0.9166439772,-0.9161063433,-0.9159719348,-0.9162407517,-0.9161063433,-0.917450428,-0.9216171503,-0.9264559746,-0.9287409782,-0.9288753867,-0.9286065698,-0.9288753867,-0.9280688763,-0.9259183407,-0.9239020944,-0.9233644605,-0.9237676859,-0.9239020944,-0.9251118898,-0.9282032847,-0.930085063,-0.9299506545,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9299506545,-0.929816246,-0.929816246,-0.929816246,-0.929816246,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.9302194715,-0.9299506545,-0.929816246,-0.929816246,-0.9296818376,-0.9295474291,-0.929816246,-0.9299506545],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9269936085,-0.9286065698,-0.9295474291,-0.9299506545,-0.9302194715,-0.9299506545,-0.9302194715,-0.9302194715,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.929816246,-0.9299506545,-0.9302194715,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9296818376,-0.9295474291,-0.9279344678,-0.9244397879,-0.9226924181,-0.9228268266,-0.9234988689,-0.9248430729,-0.9268592,-0.9273968339,-0.9263215661,-0.9252462983,-0.9256495237,-0.9264559746,-0.9264559746,-0.9267247915,-0.9286065698,-0.9287409782,-0.9248430729,-0.9191977382,-0.9162407517,-0.9159719348,-0.9159719348,-0.9165095687,-0.9178536534,-0.9190633297,-0.9202730656,-0.9218859673,-0.922961235,-0.9233644605,-0.9233644605,-0.922961235,-0.9222891927,-0.9222891927,-0.9225580096,-0.9228268266,-0.9226924181,-0.9226924181,-0.9220203757,-0.9212139249,-0.920676291,-0.9209451079,-0.9217515588,-0.9228268266,-0.9239020944,-0.9247086048,-0.9247086048,-0.9237676859,-0.9214827418,-0.9191977382,-0.9187945127,-0.9209451079,-0.9239020944,-0.9253807068,-0.9253807068,-0.9251118898,-0.9245741963,-0.9236332774,-0.922961235,-0.9228268266,-0.922961235,-0.9228268266,-0.923230052,-0.9239020944,-0.9241709113,-0.9243053794,-0.9241709113,-0.9244397879,-0.9252462983,-0.9261871576,-0.9260527492,-0.9251118898,-0.9245741963,-0.9241709113,-0.9237676859,-0.9234988689,-0.9236332774,-0.9236332774,-0.9237676859,-0.9239020944,-0.9240365028,-0.9243053794,-0.9248430729,-0.9247086048,-0.9239020944,-0.9237676859,-0.9236332774,-0.9213483334,-0.9190633297,-0.9202730656,-0.9226924181,-0.9233644605,-0.923230052,-0.9224236012,-0.9210795164,-0.920676291,-0.9210795164,-0.9208106995,-0.9212139249,-0.9225580096,-0.922961235,-0.9228268266,-0.9230956435,-0.9230956435,-0.9228268266,-0.9226924181,-0.9230956435,-0.9236332774,-0.9239020944,-0.9240365028,-0.9241709113,-0.9239020944,-0.9225580096,-0.9205418825,-0.9189289212,-0.917719245,-0.9163751602,-0.9155686498,-0.9157031178,-0.9158375263,-0.9157031178,-0.9181224704,-0.9233644605,-0.9275312424,-0.9286065698,-0.9287409782,-0.9288753867,-0.9288753867,-0.9283376932,-0.9264559746,-0.9240365028,-0.9226924181,-0.923230052,-0.9237676859,-0.9241709113,-0.9263215661,-0.9290097952,-0.9299506545,-0.9302194715,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9299506545,-0.929816246,-0.929816246,-0.9296818376,-0.9296818376,-0.929816246,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.929816246,-0.9296818376,-0.929816246,-0.9296818376,-0.9295474291,-0.9296818376,-0.9299506545],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9272624254,-0.9292786121,-0.930085063,-0.9302194715,-0.9302194715,-0.9295474291,-0.9299506545,-0.9299506545,-0.929816246,-0.930085063,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9303538799,-0.930085063,-0.9302194715,-0.9303538799,-0.930085063,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9294130206,-0.9294130206,-0.9263215661,-0.9230956435,-0.9224236012,-0.922961235,-0.9240365028,-0.9259183407,-0.9273968339,-0.9267247915,-0.9249774814,-0.9245741963,-0.9255151153,-0.9263215661,-0.9261871576,-0.9260527492,-0.9272624254,-0.9290097952,-0.9275312424,-0.9220203757,-0.917450428,-0.9161063433,-0.9158375263,-0.9163751602,-0.917719245,-0.9193321466,-0.920676291,-0.9221547842,-0.9230956435,-0.9233644605,-0.923230052,-0.9228268266,-0.9222891927,-0.9222891927,-0.9225580096,-0.9225580096,-0.922961235,-0.9224236012,-0.9209451079,-0.9198697805,-0.9196009636,-0.9208106995,-0.9224236012,-0.9236332774,-0.9247086048,-0.9255151153,-0.9249774814,-0.9233644605,-0.9209451079,-0.9189289212,-0.9186601043,-0.9210795164,-0.9237676859,-0.9247086048,-0.9248430729,-0.9249774814,-0.9245741963,-0.923230052,-0.9226924181,-0.922961235,-0.9230956435,-0.9230956435,-0.9236332774,-0.9241709113,-0.9241709113,-0.9237676859,-0.9240365028,-0.9245741963,-0.9251118898,-0.9253807068,-0.9255151153,-0.9251118898,-0.9245741963,-0.9241709113,-0.9239020944,-0.9237676859,-0.9236332774,-0.9236332774,-0.9236332774,-0.9237676859,-0.9237676859,-0.9240365028,-0.9245741963,-0.9247086048,-0.9241709113,-0.9240365028,-0.9236332774,-0.9212139249,-0.9185256958,-0.9191977382,-0.9222891927,-0.9236332774,-0.9236332774,-0.9237676859,-0.9225580096,-0.9202730656,-0.9200042486,-0.9201386571,-0.9197353721,-0.920676291,-0.9222891927,-0.9228268266,-0.922961235,-0.923230052,-0.923230052,-0.9230956435,-0.9230956435,-0.9233644605,-0.9237676859,-0.9240365028,-0.9244397879,-0.9244397879,-0.9230956435,-0.920676291,-0.9187945127,-0.9175848365,-0.9161063433,-0.9157031178,-0.9162407517,-0.9163751602,-0.9166439772,-0.9202730656,-0.9256495237,-0.9284721017,-0.9283376932,-0.9280688763,-0.9280688763,-0.9279344678,-0.9276656508,-0.9267247915,-0.9245741963,-0.9226924181,-0.9225580096,-0.9234988689,-0.9237676859,-0.9243053794,-0.9273968339,-0.9294130206,-0.930085063,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.929816246,-0.929816246,-0.9296818376,-0.929816246,-0.9299506545,-0.9299506545,-0.929816246,-0.9299506545,-0.930085063,-0.930085063,-0.9299506545,-0.929816246,-0.929816246,-0.9299506545,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.9299506545,-0.9296818376,-0.9296818376],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9303538799,-0.9283376932,-0.9296818376,-0.9302194715,-0.9302194715,-0.9302194715,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9299506545,-0.9302194715,-0.930085063,-0.9296818376,-0.9296818376,-0.9283376932,-0.9245741963,-0.9230956435,-0.922961235,-0.9236332774,-0.9251118898,-0.9268592,-0.9275312424,-0.9263215661,-0.9243053794,-0.9236332774,-0.9244397879,-0.9247086048,-0.9241709113,-0.9241709113,-0.9256495237,-0.9286065698,-0.9294130206,-0.9260527492,-0.9198697805,-0.9162407517,-0.9150309563,-0.9154342413,-0.9171816111,-0.9193321466,-0.9213483334,-0.923230052,-0.9239020944,-0.9237676859,-0.9234988689,-0.9230956435,-0.9228268266,-0.9226924181,-0.9224236012,-0.9225580096,-0.9228268266,-0.9216171503,-0.9200042486,-0.9190633297,-0.9191977382,-0.9202730656,-0.9218859673,-0.9239020944,-0.9252462983,-0.9251118898,-0.9243053794,-0.922961235,-0.9208106995,-0.9189289212,-0.9189289212,-0.9213483334,-0.9239020944,-0.9247086048,-0.9245741963,-0.9244397879,-0.9241709113,-0.9234988689,-0.922961235,-0.922961235,-0.923230052,-0.9234988689,-0.9239020944,-0.9243053794,-0.9241709113,-0.9239020944,-0.9240365028,-0.9245741963,-0.9247086048,-0.9247086048,-0.9249774814,-0.9248430729,-0.9243053794,-0.9239020944,-0.9243053794,-0.9244397879,-0.9243053794,-0.9239020944,-0.9234988689,-0.9233644605,-0.9236332774,-0.9239020944,-0.9241709113,-0.9244397879,-0.9243053794,-0.9241709113,-0.9233644605,-0.9209451079,-0.9182568789,-0.9186601043,-0.9217515588,-0.9237676859,-0.9239020944,-0.9240365028,-0.9234988689,-0.9212139249,-0.9197353721,-0.9196009636,-0.9189289212,-0.9191977382,-0.9213483334,-0.9226924181,-0.9225580096,-0.9222891927,-0.9222891927,-0.9225580096,-0.923230052,-0.9236332774,-0.9239020944,-0.9243053794,-0.9245741963,-0.9247086048,-0.9237676859,-0.9210795164,-0.9185256958,-0.917450428,-0.9166439772,-0.9161063433,-0.9163751602,-0.9166439772,-0.9183912873,-0.9230956435,-0.9275312424,-0.9286065698,-0.9271280169,-0.9263215661,-0.9261871576,-0.9259183407,-0.9261871576,-0.9265903831,-0.9260527492,-0.9244397879,-0.922961235,-0.9230956435,-0.9239020944,-0.9236332774,-0.9251118898,-0.9286065698,-0.929816246,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.929816246,-0.929816246,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.930085063,-0.9299506545,-0.929816246,-0.9296818376,-0.9299506545,-0.930085063,-0.930085063,-0.929816246,-0.9296818376,-0.9299506545,-0.9299506545,-0.929816246,-0.929816246,-0.9299506545,-0.9299506545,-0.929816246,-0.929816246,-0.9299506545,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.929816246,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.930085063,-0.930085063,-0.9299506545],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9302194715,-0.9288753867,-0.9296818376,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.930085063,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.930085063,-0.9294130206,-0.9292786121,-0.9259183407,-0.9236332774,-0.9233644605,-0.923230052,-0.9239020944,-0.9257839322,-0.9272624254,-0.9271280169,-0.9255151153,-0.923230052,-0.9225580096,-0.9230956435,-0.922961235,-0.9220203757,-0.9220203757,-0.9233644605,-0.9267247915,-0.929816246,-0.9287409782,-0.923230052,-0.9173160195,-0.9144933224,-0.9148965478,-0.9170472026,-0.9196009636,-0.9221547842,-0.9240365028,-0.9245741963,-0.9241709113,-0.9239020944,-0.9236332774,-0.9233644605,-0.922961235,-0.9224236012,-0.9228268266,-0.9224236012,-0.9200042486,-0.9182568789,-0.9182568789,-0.9190633297,-0.9200042486,-0.9216171503,-0.9241709113,-0.9255151153,-0.9248430729,-0.9234988689,-0.9224236012,-0.920676291,-0.9187945127,-0.9190633297,-0.9220203757,-0.9245741963,-0.9252462983,-0.9248430729,-0.9244397879,-0.9240365028,-0.9233644605,-0.922961235,-0.9228268266,-0.923230052,-0.9236332774,-0.9239020944,-0.9240365028,-0.9240365028,-0.9237676859,-0.9237676859,-0.9241709113,-0.9243053794,-0.9244397879,-0.9247086048,-0.9247086048,-0.9240365028,-0.9237676859,-0.9243053794,-0.9245741963,-0.9241709113,-0.9239020944,-0.9236332774,-0.9236332774,-0.9237676859,-0.9239020944,-0.9241709113,-0.9244397879,-0.9247086048,-0.9244397879,-0.9233644605,-0.9209451079,-0.9182568789,-0.9185256958,-0.9217515588,-0.9241709113,-0.9243053794,-0.9239020944,-0.9236332774,-0.9224236012,-0.9205418825,-0.9193321466,-0.9182568789,-0.9181224704,-0.9201386571,-0.9221547842,-0.9222891927,-0.9218859673,-0.9221547842,-0.9226924181,-0.923230052,-0.9237676859,-0.9237676859,-0.9239020944,-0.9243053794,-0.9245741963,-0.9239020944,-0.9213483334,-0.9179880619,-0.9167783856,-0.9171816111,-0.9167783856,-0.9155686498,-0.9162407517,-0.9205418825,-0.9261871576,-0.9286065698,-0.9278000593,-0.9253807068,-0.9247086048,-0.9253807068,-0.9251118898,-0.9251118898,-0.9261871576,-0.9268592,-0.9257839322,-0.9236332774,-0.9226924181,-0.9237676859,-0.9240365028,-0.9234988689,-0.9260527492,-0.9295474291,-0.929816246,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.929816246,-0.929816246,-0.9299506545,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9299506545,-0.930085063,-0.9302194715,-0.9299506545,-0.929816246,-0.9296818376,-0.929816246,-0.930085063,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.9299506545,-0.929816246,-0.9296818376,-0.9295474291,-0.9296818376,-0.929816246,-0.929816246,-0.9296818376,-0.9296818376,-0.929816246,-0.9296818376],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.929816246,-0.9287409782,-0.9294130206,-0.930085063,-0.9303538799,-0.9299506545,-0.929816246,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.929816246,-0.9299506545,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9299506545,-0.9292786121,-0.9272624254,-0.9239020944,-0.922961235,-0.9228268266,-0.9228268266,-0.9241709113,-0.9261871576,-0.9269936085,-0.9261871576,-0.9241709113,-0.9221547842,-0.9218859673,-0.9226924181,-0.9226924181,-0.9222891927,-0.9222891927,-0.9226924181,-0.9244397879,-0.9276656508,-0.9291442037,-0.9265903831,-0.9209451079,-0.9166439772,-0.9159719348,-0.917719245,-0.9201386571,-0.9225580096,-0.9243053794,-0.9247086048,-0.9245741963,-0.9243053794,-0.9240365028,-0.9237676859,-0.9230956435,-0.9224236012,-0.9221547842,-0.9210795164,-0.9189289212,-0.9178536534,-0.9179880619,-0.9185256958,-0.9196009636,-0.9214827418,-0.9243053794,-0.9256495237,-0.9247086048,-0.922961235,-0.9217515588,-0.920407474,-0.9190633297,-0.9197353721,-0.9225580096,-0.9248430729,-0.9253807068,-0.9248430729,-0.9244397879,-0.9239020944,-0.9233644605,-0.922961235,-0.9230956435,-0.9234988689,-0.9237676859,-0.9239020944,-0.9237676859,-0.9239020944,-0.9239020944,-0.9237676859,-0.9239020944,-0.9243053794,-0.9245741963,-0.9245741963,-0.9247086048,-0.9243053794,-0.9239020944,-0.9241709113,-0.9244397879,-0.9241709113,-0.9237676859,-0.9237676859,-0.9239020944,-0.9237676859,-0.9237676859,-0.9241709113,-0.9247086048,-0.9248430729,-0.9244397879,-0.9237676859,-0.9216171503,-0.9185256958,-0.9182568789,-0.9214827418,-0.9241709113,-0.9244397879,-0.9239020944,-0.9234988689,-0.9226924181,-0.9210795164,-0.9189289212,-0.9173160195,-0.9175848365,-0.9194665551,-0.9216171503,-0.9222891927,-0.9221547842,-0.9226924181,-0.9233644605,-0.9236332774,-0.9239020944,-0.9239020944,-0.9237676859,-0.9240365028,-0.9245741963,-0.9239020944,-0.9214827418,-0.9178536534,-0.9155686498,-0.9166439772,-0.917450428,-0.9163751602,-0.917719245,-0.9237676859,-0.9284721017,-0.9288753867,-0.9261871576,-0.9244397879,-0.9243053794,-0.9248430729,-0.9248430729,-0.9245741963,-0.9256495237,-0.9269936085,-0.9264559746,-0.9247086048,-0.922961235,-0.9226924181,-0.9234988689,-0.9228268266,-0.9234988689,-0.9276656508,-0.9295474291,-0.9299506545,-0.9302194715,-0.930085063,-0.930085063,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.929816246,-0.9296818376,-0.929816246,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.929816246,-0.929816246,-0.9296818376,-0.9295474291,-0.929816246,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9299506545],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9284721017,-0.9267247915,-0.9287409782,-0.929816246,-0.930085063,-0.9299506545,-0.929816246,-0.9299506545,-0.9299506545,-0.930085063,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.929816246,-0.9294130206,-0.9280688763,-0.9249774814,-0.9233644605,-0.9226924181,-0.9221547842,-0.9226924181,-0.9245741963,-0.9261871576,-0.9263215661,-0.9249774814,-0.9228268266,-0.9214827418,-0.9214827418,-0.9218859673,-0.9218859673,-0.9218859673,-0.9217515588,-0.9213483334,-0.9225580096,-0.9257839322,-0.9278000593,-0.9269936085,-0.9243053794,-0.9209451079,-0.9186601043,-0.9189289212,-0.9209451079,-0.922961235,-0.9241709113,-0.9247086048,-0.9247086048,-0.9244397879,-0.9240365028,-0.9239020944,-0.9233644605,-0.9222891927,-0.9212139249,-0.9201386571,-0.9189289212,-0.9183912873,-0.9181224704,-0.9179880619,-0.9189289212,-0.9210795164,-0.9237676859,-0.9251118898,-0.9243053794,-0.922961235,-0.9218859673,-0.920407474,-0.9194665551,-0.9208106995,-0.923230052,-0.9247086048,-0.9247086048,-0.9243053794,-0.9240365028,-0.9239020944,-0.9233644605,-0.922961235,-0.9233644605,-0.9236332774,-0.9237676859,-0.9236332774,-0.9237676859,-0.9240365028,-0.9240365028,-0.9236332774,-0.9237676859,-0.9241709113,-0.9245741963,-0.9245741963,-0.9247086048,-0.9247086048,-0.9245741963,-0.9245741963,-0.9247086048,-0.9244397879,-0.9237676859,-0.9234988689,-0.9234988689,-0.9233644605,-0.9233644605,-0.9240365028,-0.9244397879,-0.9244397879,-0.9245741963,-0.9241709113,-0.9218859673,-0.9187945127,-0.9183912873,-0.9212139249,-0.9237676859,-0.9240365028,-0.9234988689,-0.9230956435,-0.9224236012,-0.9210795164,-0.9186601043,-0.9167783856,-0.9173160195,-0.9194665551,-0.9210795164,-0.9220203757,-0.9226924181,-0.9233644605,-0.9237676859,-0.9240365028,-0.9244397879,-0.9244397879,-0.9241709113,-0.9240365028,-0.9243053794,-0.9236332774,-0.9208106995,-0.917450428,-0.9157031178,-0.9158375263,-0.9169127941,-0.9185256958,-0.9220203757,-0.9271280169,-0.9290097952,-0.9269936085,-0.9230956435,-0.9221547842,-0.923230052,-0.9240365028,-0.9240365028,-0.9236332774,-0.9247086048,-0.9267247915,-0.9269936085,-0.9256495237,-0.9236332774,-0.9217515588,-0.9213483334,-0.9218859673,-0.9218859673,-0.9245741963,-0.9287409782,-0.929816246,-0.9302194715,-0.9302194715,-0.9302194715,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.929816246,-0.9296818376,-0.929816246,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.929816246,-0.9299506545,-0.929816246,-0.929816246,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.929816246,-0.929816246,-0.930085063,-0.930085063,-0.9299506545,-0.9296818376,-0.9295474291,-0.9296818376],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9292786121,-0.9287409782,-0.929816246,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.929816246,-0.9286065698,-0.9256495237,-0.9237676859,-0.9239020944,-0.9230956435,-0.9222891927,-0.9239020944,-0.9260527492,-0.9265903831,-0.9257839322,-0.9240365028,-0.9217515588,-0.9208106995,-0.9210795164,-0.9210795164,-0.9209451079,-0.9216171503,-0.9221547842,-0.9217515588,-0.9218859673,-0.9239020944,-0.9255151153,-0.9249774814,-0.9240365028,-0.9233644605,-0.9216171503,-0.9198697805,-0.9209451079,-0.923230052,-0.9240365028,-0.9241709113,-0.9244397879,-0.9244397879,-0.9241709113,-0.9239020944,-0.9230956435,-0.9216171503,-0.9205418825,-0.9198697805,-0.9191977382,-0.9185256958,-0.9179880619,-0.9175848365,-0.9183912873,-0.9205418825,-0.9230956435,-0.9244397879,-0.9244397879,-0.9234988689,-0.9220203757,-0.920407474,-0.9200042486,-0.9218859673,-0.9240365028,-0.9241709113,-0.9236332774,-0.9234988689,-0.9234988689,-0.9234988689,-0.923230052,-0.922961235,-0.9230956435,-0.9234988689,-0.9236332774,-0.9234988689,-0.9236332774,-0.9239020944,-0.9239020944,-0.9236332774,-0.9236332774,-0.9241709113,-0.9244397879,-0.9244397879,-0.9244397879,-0.9244397879,-0.9243053794,-0.9241709113,-0.9240365028,-0.9237676859,-0.9233644605,-0.9230956435,-0.9230956435,-0.9230956435,-0.9233644605,-0.9236332774,-0.9237676859,-0.9237676859,-0.9241709113,-0.9239020944,-0.9220203757,-0.9194665551,-0.9187945127,-0.9209451079,-0.923230052,-0.9236332774,-0.922961235,-0.9222891927,-0.9213483334,-0.9202730656,-0.9183912873,-0.9167783856,-0.9170472026,-0.9189289212,-0.920407474,-0.9214827418,-0.9225580096,-0.9236332774,-0.9241709113,-0.9240365028,-0.9241709113,-0.9244397879,-0.9243053794,-0.9237676859,-0.9237676859,-0.9234988689,-0.9209451079,-0.9175848365,-0.9167783856,-0.9173160195,-0.9182568789,-0.9213483334,-0.9259183407,-0.9283376932,-0.9276656508,-0.9244397879,-0.9216171503,-0.9210795164,-0.9224236012,-0.923230052,-0.923230052,-0.9230956435,-0.9241709113,-0.9261871576,-0.9271280169,-0.9260527492,-0.9243053794,-0.9220203757,-0.9209451079,-0.9221547842,-0.9228268266,-0.922961235,-0.9259183407,-0.9291442037,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.930085063,-0.9299506545,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.929816246,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9299506545,-0.9299506545,-0.9299506545,-0.929816246,-0.929816246,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9299506545,-0.9299506545,-0.9302194715,-0.9302194715,-0.9299506545,-0.929816246,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.9299506545,-0.930085063,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.929816246,-0.929816246],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9292786121,-0.9295474291,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.930085063,-0.9299506545,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.929816246,-0.9290097952,-0.9263215661,-0.9234988689,-0.9236332774,-0.9240365028,-0.922961235,-0.9230956435,-0.9253807068,-0.9267247915,-0.9263215661,-0.9251118898,-0.922961235,-0.9208106995,-0.9202730656,-0.9209451079,-0.9213483334,-0.9214827418,-0.9216171503,-0.9218859673,-0.9218859673,-0.9221547842,-0.9236332774,-0.9255151153,-0.9255151153,-0.9241709113,-0.9237676859,-0.9230956435,-0.9212139249,-0.9205418825,-0.9221547842,-0.923230052,-0.9233644605,-0.9237676859,-0.9241709113,-0.9241709113,-0.9236332774,-0.9222891927,-0.9205418825,-0.9194665551,-0.9191977382,-0.9186601043,-0.9181224704,-0.9173160195,-0.9171816111,-0.9182568789,-0.9201386571,-0.9222891927,-0.9236332774,-0.9240365028,-0.9234988689,-0.9218859673,-0.9201386571,-0.9202730656,-0.9225580096,-0.9241709113,-0.9237676859,-0.9230956435,-0.922961235,-0.9230956435,-0.9228268266,-0.9226924181,-0.9226924181,-0.9228268266,-0.923230052,-0.9234988689,-0.9234988689,-0.9233644605,-0.9234988689,-0.9236332774,-0.9234988689,-0.9234988689,-0.9239020944,-0.9243053794,-0.9244397879,-0.9243053794,-0.9243053794,-0.9240365028,-0.9239020944,-0.9236332774,-0.9234988689,-0.9233644605,-0.923230052,-0.922961235,-0.922961235,-0.923230052,-0.9234988689,-0.9236332774,-0.9236332774,-0.9240365028,-0.9239020944,-0.9222891927,-0.9201386571,-0.9191977382,-0.9205418825,-0.9228268266,-0.9236332774,-0.9228268266,-0.9218859673,-0.920676291,-0.9189289212,-0.9175848365,-0.9167783856,-0.9166439772,-0.9178536534,-0.9194665551,-0.920676291,-0.9216171503,-0.9228268266,-0.9236332774,-0.9240365028,-0.9243053794,-0.9244397879,-0.9241709113,-0.9236332774,-0.9233644605,-0.9225580096,-0.9208106995,-0.9193321466,-0.9189289212,-0.9197353721,-0.9214827418,-0.9241709113,-0.9269936085,-0.9278000593,-0.9257839322,-0.922961235,-0.9217515588,-0.9216171503,-0.9214827418,-0.9216171503,-0.9220203757,-0.9225580096,-0.9236332774,-0.9256495237,-0.9271280169,-0.9267247915,-0.9251118898,-0.922961235,-0.9212139249,-0.9221547842,-0.9240365028,-0.9233644605,-0.9233644605,-0.9268592,-0.9295474291,-0.9299506545,-0.930085063,-0.9299506545,-0.9299506545,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.9299506545,-0.9299506545,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9303538799,-0.9303538799,-0.930085063,-0.9299506545,-0.9299506545,-0.929816246,-0.9299506545,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.9303538799,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.9302194715,-0.9302194715,-0.9299506545,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9306226969,-0.9304882884,-0.9303538799,-0.9302194715,-0.9299506545],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9294130206,-0.9295474291,-0.9299506545,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9275312424,-0.9236332774,-0.9220203757,-0.9228268266,-0.922961235,-0.9226924181,-0.9241709113,-0.9261871576,-0.9264559746,-0.9256495237,-0.9241709113,-0.9221547842,-0.9202730656,-0.9202730656,-0.9214827418,-0.9221547842,-0.9220203757,-0.9220203757,-0.9218859673,-0.9218859673,-0.9224236012,-0.9240365028,-0.9259183407,-0.9267247915,-0.9261871576,-0.9248430729,-0.9228268266,-0.9205418825,-0.9190633297,-0.9200042486,-0.9214827418,-0.9221547842,-0.922961235,-0.9236332774,-0.9237676859,-0.9234988689,-0.9222891927,-0.9205418825,-0.9189289212,-0.9183912873,-0.9179880619,-0.917450428,-0.9165095687,-0.9165095687,-0.9178536534,-0.9198697805,-0.9214827418,-0.9224236012,-0.9230956435,-0.9230956435,-0.9213483334,-0.9197353721,-0.9202730656,-0.9222891927,-0.9234988689,-0.9234988689,-0.923230052,-0.922961235,-0.9225580096,-0.9224236012,-0.9222891927,-0.9222891927,-0.9225580096,-0.9230956435,-0.9233644605,-0.9233644605,-0.923230052,-0.9234988689,-0.9234988689,-0.9233644605,-0.9234988689,-0.9240365028,-0.9243053794,-0.9243053794,-0.9243053794,-0.9241709113,-0.9240365028,-0.9237676859,-0.9234988689,-0.9233644605,-0.9233644605,-0.923230052,-0.922961235,-0.9228268266,-0.9228268266,-0.922961235,-0.9230956435,-0.9233644605,-0.9236332774,-0.9234988689,-0.9224236012,-0.9208106995,-0.9198697805,-0.920676291,-0.9226924181,-0.9237676859,-0.9230956435,-0.9216171503,-0.9200042486,-0.9181224704,-0.9169127941,-0.9166439772,-0.9166439772,-0.9171816111,-0.9187945127,-0.9200042486,-0.9210795164,-0.9225580096,-0.9240365028,-0.9245741963,-0.9245741963,-0.9243053794,-0.9239020944,-0.9234988689,-0.922961235,-0.9213483334,-0.9191977382,-0.9193321466,-0.9212139249,-0.9225580096,-0.9236332774,-0.9248430729,-0.9263215661,-0.9263215661,-0.9237676859,-0.9208106995,-0.9201386571,-0.9212139249,-0.9216171503,-0.9214827418,-0.9216171503,-0.9216171503,-0.9222891927,-0.9245741963,-0.9268592,-0.9268592,-0.9256495237,-0.9239020944,-0.9220203757,-0.9217515588,-0.9237676859,-0.9247086048,-0.9234988689,-0.9243053794,-0.9279344678,-0.9296818376,-0.930085063,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9299506545,-0.9299506545,-0.9302194715,-0.9302194715,-0.9299506545,-0.929816246,-0.9299506545,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.929816246,-0.929816246,-0.929816246,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9304882884,-0.9304882884,-0.9302194715,-0.930085063,-0.930085063],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9280688763,-0.9290097952,-0.9295474291,-0.930085063,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9299506545,-0.930085063,-0.9288753867,-0.9251118898,-0.9216171503,-0.920676291,-0.9216171503,-0.9222891927,-0.9233644605,-0.9252462983,-0.9263215661,-0.9259183407,-0.9249774814,-0.9233644605,-0.9214827418,-0.920407474,-0.920676291,-0.9216171503,-0.9221547842,-0.9216171503,-0.9213483334,-0.9221547842,-0.9225580096,-0.9226924181,-0.9239020944,-0.9253807068,-0.9261871576,-0.9267247915,-0.9267247915,-0.9249774814,-0.9216171503,-0.9189289212,-0.9196009636,-0.9209451079,-0.9214827418,-0.9220203757,-0.9230956435,-0.9239020944,-0.9239020944,-0.922961235,-0.9205418825,-0.9181224704,-0.9171816111,-0.9173160195,-0.9170472026,-0.9162407517,-0.9161063433,-0.917719245,-0.9200042486,-0.9212139249,-0.9217515588,-0.9225580096,-0.9225580096,-0.9208106995,-0.9194665551,-0.9201386571,-0.9220203757,-0.9233644605,-0.9236332774,-0.9234988689,-0.922961235,-0.9221547842,-0.9218859673,-0.9220203757,-0.9220203757,-0.9222891927,-0.9228268266,-0.923230052,-0.922961235,-0.9228268266,-0.923230052,-0.9234988689,-0.9233644605,-0.9234988689,-0.9240365028,-0.9241709113,-0.9241709113,-0.9241709113,-0.9240365028,-0.9239020944,-0.9236332774,-0.9233644605,-0.9233644605,-0.923230052,-0.922961235,-0.9225580096,-0.9224236012,-0.9225580096,-0.9226924181,-0.9228268266,-0.9230956435,-0.9233644605,-0.9230956435,-0.9224236012,-0.9213483334,-0.920407474,-0.920676291,-0.9222891927,-0.9236332774,-0.923230052,-0.9214827418,-0.9194665551,-0.9175848365,-0.9162407517,-0.9161063433,-0.9165095687,-0.9171816111,-0.9182568789,-0.9193321466,-0.920407474,-0.9222891927,-0.9240365028,-0.9245741963,-0.9244397879,-0.9241709113,-0.9236332774,-0.922961235,-0.9225580096,-0.9212139249,-0.9193321466,-0.9196009636,-0.9218859673,-0.9234988689,-0.9241709113,-0.9245741963,-0.9249774814,-0.9240365028,-0.9214827418,-0.9197353721,-0.9208106995,-0.9224236012,-0.9222891927,-0.9216171503,-0.9217515588,-0.9213483334,-0.9213483334,-0.9236332774,-0.9261871576,-0.9267247915,-0.9256495237,-0.9241709113,-0.9225580096,-0.9214827418,-0.9220203757,-0.9228268266,-0.9222891927,-0.9221547842,-0.9255151153,-0.9290097952,-0.9296818376,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.929816246,-0.9299506545,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.930085063,-0.9302194715,-0.930085063,-0.929816246,-0.929816246,-0.929816246,-0.929816246,-0.9299506545,-0.9302194715,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.930085063],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9280688763,-0.9295474291,-0.929816246,-0.9302194715,-0.9303538799,-0.9303538799,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.9265903831,-0.9228268266,-0.9210795164,-0.9210795164,-0.9216171503,-0.9224236012,-0.9243053794,-0.9261871576,-0.9264559746,-0.9253807068,-0.9241709113,-0.922961235,-0.9212139249,-0.920676291,-0.9210795164,-0.9216171503,-0.9218859673,-0.9213483334,-0.9201386571,-0.9201386571,-0.9217515588,-0.9226924181,-0.9236332774,-0.9249774814,-0.9257839322,-0.9263215661,-0.9269936085,-0.9268592,-0.9248430729,-0.9216171503,-0.9205418825,-0.9214827418,-0.9220203757,-0.9214827418,-0.9224236012,-0.9241709113,-0.9245741963,-0.923230052,-0.9202730656,-0.9173160195,-0.9165095687,-0.9169127941,-0.9169127941,-0.9165095687,-0.9163751602,-0.9175848365,-0.9198697805,-0.9212139249,-0.9220203757,-0.922961235,-0.9226924181,-0.920676291,-0.9196009636,-0.9205418825,-0.9225580096,-0.9237676859,-0.9236332774,-0.923230052,-0.922961235,-0.9225580096,-0.9218859673,-0.9218859673,-0.9220203757,-0.9221547842,-0.9226924181,-0.9230956435,-0.9228268266,-0.9226924181,-0.922961235,-0.9230956435,-0.9233644605,-0.9237676859,-0.9240365028,-0.9240365028,-0.9239020944,-0.9237676859,-0.9236332774,-0.9236332774,-0.9234988689,-0.923230052,-0.9230956435,-0.922961235,-0.9225580096,-0.9221547842,-0.9222891927,-0.9226924181,-0.9228268266,-0.9226924181,-0.9228268266,-0.9230956435,-0.9228268266,-0.9221547842,-0.9216171503,-0.9208106995,-0.920676291,-0.9221547842,-0.9236332774,-0.9230956435,-0.9212139249,-0.9191977382,-0.9173160195,-0.9162407517,-0.9161063433,-0.9166439772,-0.917450428,-0.9182568789,-0.9187945127,-0.9197353721,-0.9218859673,-0.9240365028,-0.9244397879,-0.9239020944,-0.9239020944,-0.9234988689,-0.9226924181,-0.9224236012,-0.9224236012,-0.9217515588,-0.9216171503,-0.922961235,-0.9247086048,-0.9251118898,-0.9245741963,-0.9237676859,-0.9225580096,-0.9214827418,-0.9214827418,-0.9218859673,-0.9210795164,-0.9209451079,-0.9217515588,-0.9216171503,-0.9205418825,-0.9205418825,-0.9228268266,-0.9253807068,-0.9260527492,-0.9248430729,-0.9230956435,-0.9217515588,-0.9212139249,-0.9194665551,-0.9166439772,-0.9161063433,-0.9185256958,-0.9230956435,-0.9279344678,-0.9296818376,-0.9296818376,-0.930085063,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.929816246,-0.929816246,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.929816246,-0.9299506545,-0.9299506545,-0.930085063,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9304882884,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9303538799,-0.9261871576,-0.9268592,-0.9280688763,-0.9296818376,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9299506545,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.930085063,-0.930085063,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.930085063,-0.9299506545,-0.9279344678,-0.9241709113,-0.9220203757,-0.9214827418,-0.9213483334,-0.9217515588,-0.922961235,-0.9252462983,-0.9268592,-0.9260527492,-0.9236332774,-0.9226924181,-0.9224236012,-0.9213483334,-0.9208106995,-0.9213483334,-0.9218859673,-0.9221547842,-0.9222891927,-0.9208106995,-0.9198697805,-0.9213483334,-0.9226924181,-0.9237676859,-0.9251118898,-0.9255151153,-0.9251118898,-0.9257839322,-0.9269936085,-0.9261871576,-0.9237676859,-0.9220203757,-0.9220203757,-0.9222891927,-0.9214827418,-0.9216171503,-0.9234988689,-0.9247086048,-0.9230956435,-0.9197353721,-0.9173160195,-0.9166439772,-0.9167783856,-0.9166439772,-0.9167783856,-0.9171816111,-0.9179880619,-0.9193321466,-0.9209451079,-0.9221547842,-0.9230956435,-0.9225580096,-0.9209451079,-0.920407474,-0.9213483334,-0.9228268266,-0.9237676859,-0.9234988689,-0.922961235,-0.9225580096,-0.9221547842,-0.9218859673,-0.9218859673,-0.9220203757,-0.9222891927,-0.9226924181,-0.922961235,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.923230052,-0.9237676859,-0.9240365028,-0.9239020944,-0.9237676859,-0.9236332774,-0.9233644605,-0.923230052,-0.923230052,-0.9230956435,-0.9228268266,-0.9226924181,-0.9225580096,-0.9224236012,-0.9226924181,-0.922961235,-0.922961235,-0.9225580096,-0.9224236012,-0.9228268266,-0.9228268266,-0.9222891927,-0.9217515588,-0.9212139249,-0.9210795164,-0.9221547842,-0.9234988689,-0.9228268266,-0.920676291,-0.9186601043,-0.9173160195,-0.9166439772,-0.9167783856,-0.9171816111,-0.9178536534,-0.9182568789,-0.9182568789,-0.9190633297,-0.9217515588,-0.9240365028,-0.9243053794,-0.9237676859,-0.9236332774,-0.9230956435,-0.9224236012,-0.922961235,-0.9234988689,-0.922961235,-0.9233644605,-0.9260527492,-0.9275312424,-0.9267247915,-0.9248430729,-0.9233644605,-0.9224236012,-0.9224236012,-0.9222891927,-0.9210795164,-0.9200042486,-0.9209451079,-0.9222891927,-0.9216171503,-0.9198697805,-0.9193321466,-0.9218859673,-0.9248430729,-0.9252462983,-0.9240365028,-0.923230052,-0.9226924181,-0.9220203757,-0.9193321466,-0.9147621393,-0.9134180546,-0.9171816111,-0.9221547842,-0.9265903831,-0.9290097952,-0.9294130206,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9299506545,-0.929816246,-0.9296818376,-0.9296818376,-0.929816246,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.9303538799,-0.930085063,-0.929816246,-0.9299506545,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.929816246,-0.9299506545,-0.9302194715,-0.9299506545],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.929816246,-0.9256495237,-0.9269936085,-0.9283376932,-0.9294130206,-0.930085063,-0.929816246,-0.9302194715,-0.930085063,-0.930085063,-0.929816246,-0.930085063,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.929816246,-0.9291442037,-0.9256495237,-0.923230052,-0.9228268266,-0.9220203757,-0.9212139249,-0.9221547842,-0.9243053794,-0.9263215661,-0.9268592,-0.9251118898,-0.9230956435,-0.9225580096,-0.9221547842,-0.9213483334,-0.9212139249,-0.9220203757,-0.9226924181,-0.9228268266,-0.9222891927,-0.9216171503,-0.9217515588,-0.9224236012,-0.9228268266,-0.9236332774,-0.9251118898,-0.9248430729,-0.9233644605,-0.9244397879,-0.9271280169,-0.9269936085,-0.9245741963,-0.9225580096,-0.9221547842,-0.9222891927,-0.9217515588,-0.9210795164,-0.9222891927,-0.9241709113,-0.9234988689,-0.9202730656,-0.9175848365,-0.9171816111,-0.9170472026,-0.9167783856,-0.9173160195,-0.9182568789,-0.9186601043,-0.9194665551,-0.9210795164,-0.9225580096,-0.923230052,-0.9225580096,-0.9216171503,-0.9214827418,-0.9221547842,-0.922961235,-0.9236332774,-0.9233644605,-0.9228268266,-0.9222891927,-0.9218859673,-0.9216171503,-0.9216171503,-0.9220203757,-0.9222891927,-0.9226924181,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.922961235,-0.9230956435,-0.9234988689,-0.9239020944,-0.9240365028,-0.9239020944,-0.9234988689,-0.9233644605,-0.923230052,-0.9230956435,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.922961235,-0.9230956435,-0.9228268266,-0.9225580096,-0.9225580096,-0.9226924181,-0.9226924181,-0.9224236012,-0.9220203757,-0.9216171503,-0.9212139249,-0.9218859673,-0.9228268266,-0.9222891927,-0.9202730656,-0.9183912873,-0.917450428,-0.917450428,-0.9175848365,-0.9178536534,-0.9182568789,-0.9182568789,-0.9179880619,-0.9187945127,-0.9216171503,-0.9237676859,-0.9237676859,-0.9233644605,-0.9230956435,-0.9226924181,-0.9228268266,-0.9236332774,-0.9236332774,-0.922961235,-0.9243053794,-0.9269936085,-0.9279344678,-0.9268592,-0.9248430729,-0.923230052,-0.9226924181,-0.9226924181,-0.9220203757,-0.920676291,-0.9205418825,-0.9216171503,-0.9224236012,-0.9220203757,-0.9208106995,-0.9191977382,-0.9200042486,-0.9233644605,-0.9251118898,-0.9236332774,-0.9233644605,-0.9241709113,-0.923230052,-0.9209451079,-0.9190633297,-0.9189289212,-0.9208106995,-0.9222891927,-0.9241709113,-0.9282032847,-0.9295474291,-0.929816246,-0.930085063,-0.930085063,-0.9303538799,-0.9303538799,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9299506545,-0.9295474291,-0.9295474291,-0.929816246,-0.9299506545,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.930085063,-0.929816246,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9303538799,-0.9302194715,-0.9302194715,-0.9299506545],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.930085063,-0.9288753867,-0.9290097952,-0.9294130206,-0.929816246,-0.930085063,-0.9299506545,-0.9302194715,-0.9303538799,-0.930085063,-0.9296818376,-0.929816246,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.930085063,-0.9290097952,-0.9275312424,-0.9239020944,-0.922961235,-0.923230052,-0.9224236012,-0.9220203757,-0.9234988689,-0.9256495237,-0.9268592,-0.9263215661,-0.9245741963,-0.9228268266,-0.9220203757,-0.9214827418,-0.9213483334,-0.9221547842,-0.9230956435,-0.922961235,-0.9218859673,-0.9213483334,-0.9213483334,-0.9218859673,-0.9221547842,-0.9221547842,-0.9230956435,-0.9244397879,-0.9239020944,-0.9226924181,-0.9237676859,-0.9264559746,-0.9271280169,-0.9256495237,-0.9237676859,-0.9228268266,-0.9226924181,-0.9224236012,-0.9214827418,-0.9212139249,-0.9225580096,-0.9230956435,-0.9212139249,-0.9186601043,-0.917719245,-0.9175848365,-0.917450428,-0.9181224704,-0.9191977382,-0.9197353721,-0.9200042486,-0.9212139249,-0.9226924181,-0.923230052,-0.9228268266,-0.9222891927,-0.9222891927,-0.9225580096,-0.922961235,-0.9233644605,-0.9230956435,-0.9226924181,-0.9220203757,-0.9216171503,-0.9214827418,-0.9214827418,-0.9217515588,-0.9218859673,-0.9224236012,-0.9226924181,-0.9228268266,-0.9226924181,-0.9228268266,-0.9230956435,-0.9233644605,-0.9236332774,-0.9237676859,-0.9240365028,-0.9239020944,-0.9233644605,-0.9230956435,-0.9233644605,-0.9230956435,-0.9225580096,-0.9224236012,-0.9226924181,-0.9228268266,-0.9228268266,-0.9230956435,-0.9230956435,-0.9225580096,-0.9224236012,-0.9225580096,-0.9225580096,-0.9224236012,-0.9224236012,-0.9222891927,-0.9218859673,-0.9216171503,-0.9220203757,-0.9228268266,-0.9225580096,-0.9208106995,-0.9189289212,-0.9182568789,-0.9183912873,-0.9183912873,-0.9185256958,-0.9189289212,-0.9185256958,-0.9179880619,-0.9190633297,-0.9220203757,-0.9239020944,-0.9236332774,-0.922961235,-0.9226924181,-0.922961235,-0.9234988689,-0.9237676859,-0.9233644605,-0.9240365028,-0.9260527492,-0.9276656508,-0.9275312424,-0.9261871576,-0.9243053794,-0.922961235,-0.9228268266,-0.9230956435,-0.9220203757,-0.9202730656,-0.9202730656,-0.9220203757,-0.9226924181,-0.9224236012,-0.9220203757,-0.9202730656,-0.9186601043,-0.9209451079,-0.9244397879,-0.9244397879,-0.9230956435,-0.9243053794,-0.9243053794,-0.9220203757,-0.9216171503,-0.9237676859,-0.9244397879,-0.9224236012,-0.9221547842,-0.9265903831,-0.9291442037,-0.9296818376,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.930085063,-0.930085063,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.929816246,-0.9295474291,-0.9296818376,-0.9299506545,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9303538799,-0.9302194715,-0.9299506545,-0.9299506545,-0.929816246,-0.929816246,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9299506545,-0.9299506545,-0.9302194715,-0.930085063,-0.929816246,-0.9299506545,-0.9303538799,-0.9302194715,-0.930085063],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9294130206,-0.9276656508,-0.9288753867,-0.9296818376,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.929816246,-0.9282032847,-0.9257839322,-0.922961235,-0.9234988689,-0.9240365028,-0.9230956435,-0.9228268266,-0.9244397879,-0.9261871576,-0.9265903831,-0.9251118898,-0.922961235,-0.9220203757,-0.9218859673,-0.9210795164,-0.9210795164,-0.9228268266,-0.9230956435,-0.9202730656,-0.917450428,-0.9175848365,-0.9198697805,-0.9218859673,-0.9222891927,-0.9220203757,-0.9226924181,-0.9237676859,-0.9233644605,-0.9225580096,-0.9237676859,-0.9257839322,-0.9264559746,-0.9263215661,-0.9255151153,-0.9243053794,-0.9234988689,-0.9230956435,-0.9221547842,-0.9209451079,-0.9210795164,-0.9221547842,-0.9218859673,-0.9198697805,-0.9185256958,-0.9183912873,-0.9183912873,-0.9189289212,-0.9200042486,-0.920676291,-0.920676291,-0.9213483334,-0.9224236012,-0.9230956435,-0.923230052,-0.9230956435,-0.9228268266,-0.9225580096,-0.9228268266,-0.9230956435,-0.9228268266,-0.9224236012,-0.9221547842,-0.9217515588,-0.9214827418,-0.9213483334,-0.9214827418,-0.9216171503,-0.9220203757,-0.9224236012,-0.9225580096,-0.9225580096,-0.9226924181,-0.922961235,-0.923230052,-0.9234988689,-0.9237676859,-0.9240365028,-0.9237676859,-0.923230052,-0.922961235,-0.9230956435,-0.9230956435,-0.9225580096,-0.9224236012,-0.9226924181,-0.9228268266,-0.922961235,-0.9230956435,-0.922961235,-0.9226924181,-0.9225580096,-0.9228268266,-0.922961235,-0.9228268266,-0.9225580096,-0.9224236012,-0.9222891927,-0.9222891927,-0.9226924181,-0.9230956435,-0.9225580096,-0.9210795164,-0.9198697805,-0.9196009636,-0.9194665551,-0.9190633297,-0.9190633297,-0.9193321466,-0.9185256958,-0.9181224704,-0.9198697805,-0.9226924181,-0.9236332774,-0.9230956435,-0.9228268266,-0.9233644605,-0.9234988689,-0.923230052,-0.9228268266,-0.9234988689,-0.9253807068,-0.9267247915,-0.9271280169,-0.9265903831,-0.9251118898,-0.923230052,-0.9224236012,-0.9228268266,-0.922961235,-0.9218859673,-0.9198697805,-0.9187945127,-0.9201386571,-0.9220203757,-0.9226924181,-0.9228268266,-0.9217515588,-0.9193321466,-0.9197353721,-0.9233644605,-0.9252462983,-0.9240365028,-0.9240365028,-0.9247086048,-0.9228268266,-0.9216171503,-0.9237676859,-0.9253807068,-0.9233644605,-0.9216171503,-0.9251118898,-0.9294130206,-0.9294130206,-0.9302194715,-0.9303538799,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.930085063,-0.9295474291,-0.9294130206,-0.929816246,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.9302194715,-0.9304882884,-0.9303538799,-0.9303538799,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.929816246,-0.9296818376,-0.929816246,-0.929816246,-0.9296818376,-0.9299506545,-0.930085063,-0.930085063,-0.930085063],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9296818376,-0.9288753867,-0.9290097952,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9294130206,-0.9271280169,-0.9236332774,-0.9226924181,-0.9243053794,-0.9249774814,-0.9239020944,-0.9234988689,-0.9248430729,-0.9261871576,-0.9256495237,-0.9234988689,-0.9220203757,-0.9220203757,-0.9214827418,-0.920676291,-0.9213483334,-0.9224236012,-0.9210795164,-0.917450428,-0.9148965478,-0.9163751602,-0.9198697805,-0.9218859673,-0.9218859673,-0.9217515588,-0.9225580096,-0.9234988689,-0.922961235,-0.9217515588,-0.9225580096,-0.9245741963,-0.9253807068,-0.9255151153,-0.9256495237,-0.9248430729,-0.9239020944,-0.9234988689,-0.9230956435,-0.9221547842,-0.9216171503,-0.9214827418,-0.9214827418,-0.920676291,-0.9196009636,-0.9191977382,-0.9190633297,-0.9196009636,-0.9208106995,-0.9214827418,-0.9214827418,-0.9218859673,-0.9226924181,-0.923230052,-0.9234988689,-0.9234988689,-0.922961235,-0.9225580096,-0.9226924181,-0.922961235,-0.9228268266,-0.9225580096,-0.9224236012,-0.9220203757,-0.9216171503,-0.9214827418,-0.9217515588,-0.9218859673,-0.9220203757,-0.9222891927,-0.9225580096,-0.9225580096,-0.9225580096,-0.9226924181,-0.922961235,-0.9234988689,-0.9239020944,-0.9240365028,-0.9236332774,-0.9230956435,-0.922961235,-0.922961235,-0.9226924181,-0.9222891927,-0.9222891927,-0.9225580096,-0.9225580096,-0.9224236012,-0.9226924181,-0.9228268266,-0.9226924181,-0.9226924181,-0.9226924181,-0.922961235,-0.922961235,-0.9228268266,-0.9228268266,-0.9228268266,-0.922961235,-0.923230052,-0.923230052,-0.9224236012,-0.9212139249,-0.920407474,-0.9202730656,-0.9201386571,-0.9197353721,-0.9197353721,-0.9197353721,-0.9187945127,-0.9187945127,-0.9208106995,-0.9228268266,-0.922961235,-0.9228268266,-0.9234988689,-0.9240365028,-0.923230052,-0.9220203757,-0.9225580096,-0.9248430729,-0.9265903831,-0.9264559746,-0.9257839322,-0.9255151153,-0.9248430729,-0.923230052,-0.9221547842,-0.9226924181,-0.9226924181,-0.9214827418,-0.9197353721,-0.9169127941,-0.9154342413,-0.9173160195,-0.9208106995,-0.9230956435,-0.9226924181,-0.9205418825,-0.9197353721,-0.9221547842,-0.9248430729,-0.9251118898,-0.9244397879,-0.9247086048,-0.9237676859,-0.9220203757,-0.9228268266,-0.9251118898,-0.9245741963,-0.9221547842,-0.9236332774,-0.9288753867,-0.9290097952,-0.930085063,-0.9303538799,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.930085063,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.930085063,-0.9296818376,-0.929816246,-0.930085063,-0.9299506545,-0.9299506545,-0.9303538799,-0.9304882884,-0.9302194715,-0.9299506545,-0.9302194715,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.930085063,-0.9299506545,-0.9299506545,-0.929816246,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.9299506545,-0.930085063],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9271280169,-0.9257839322,-0.9279344678,-0.9294130206,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.929816246,-0.9283376932,-0.9253807068,-0.922961235,-0.9234988689,-0.9249774814,-0.9247086048,-0.9237676859,-0.9241709113,-0.9253807068,-0.9260527492,-0.9249774814,-0.923230052,-0.9222891927,-0.9217515588,-0.9209451079,-0.9212139249,-0.9221547842,-0.9220203757,-0.9202730656,-0.9189289212,-0.9189289212,-0.9198697805,-0.9208106995,-0.9216171503,-0.9217515588,-0.9217515588,-0.9225580096,-0.9233644605,-0.9226924181,-0.9213483334,-0.9220203757,-0.9239020944,-0.9248430729,-0.9247086048,-0.9244397879,-0.9241709113,-0.9239020944,-0.9240365028,-0.9237676859,-0.9233644605,-0.9230956435,-0.9222891927,-0.9213483334,-0.9210795164,-0.9205418825,-0.9198697805,-0.9196009636,-0.9201386571,-0.9213483334,-0.9221547842,-0.9221547842,-0.9222891927,-0.922961235,-0.9233644605,-0.9234988689,-0.9236332774,-0.923230052,-0.9225580096,-0.9226924181,-0.9230956435,-0.922961235,-0.9225580096,-0.9222891927,-0.9220203757,-0.9220203757,-0.9220203757,-0.9221547842,-0.9221547842,-0.9221547842,-0.9221547842,-0.9224236012,-0.9224236012,-0.9222891927,-0.9224236012,-0.9228268266,-0.9234988689,-0.9240365028,-0.9239020944,-0.923230052,-0.9228268266,-0.9228268266,-0.9228268266,-0.9225580096,-0.9221547842,-0.9221547842,-0.9221547842,-0.9221547842,-0.9221547842,-0.9222891927,-0.9225580096,-0.9225580096,-0.9225580096,-0.9228268266,-0.922961235,-0.922961235,-0.9228268266,-0.9228268266,-0.9230956435,-0.923230052,-0.9233644605,-0.9230956435,-0.9222891927,-0.9213483334,-0.9209451079,-0.9210795164,-0.9209451079,-0.9208106995,-0.920676291,-0.9201386571,-0.9190633297,-0.9194665551,-0.9214827418,-0.9228268266,-0.9228268266,-0.9234988689,-0.9245741963,-0.9237676859,-0.9224236012,-0.9225580096,-0.9243053794,-0.9261871576,-0.9265903831,-0.9259183407,-0.9252462983,-0.9252462983,-0.9249774814,-0.9234988689,-0.9225580096,-0.9228268266,-0.9224236012,-0.9214827418,-0.9213483334,-0.9198697805,-0.9162407517,-0.9155686498,-0.9193321466,-0.9226924181,-0.922961235,-0.9210795164,-0.9196009636,-0.920676291,-0.923230052,-0.9244397879,-0.9245741963,-0.9248430729,-0.9243053794,-0.9226924181,-0.9225580096,-0.9247086048,-0.9255151153,-0.9233644605,-0.9226924181,-0.9265903831,-0.9296818376,-0.930085063,-0.930085063,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9296818376,-0.9299506545,-0.9304882884,-0.9304882884,-0.9302194715,-0.930085063,-0.9303538799,-0.9304882884,-0.930085063,-0.930085063,-0.9303538799,-0.9302194715,-0.9299506545,-0.930085063,-0.929816246,-0.9296818376,-0.930085063,-0.930085063,-0.929816246,-0.9295474291,-0.930085063,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.930085063,-0.9299506545,-0.9303538799,-0.9304882884,-0.9302194715,-0.9302194715,-0.930085063,-0.929816246],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9296818376,-0.9294130206,-0.9292786121,-0.9295474291,-0.9299506545,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.929816246,-0.9294130206,-0.9272624254,-0.9239020944,-0.9228268266,-0.9241709113,-0.9251118898,-0.9244397879,-0.9239020944,-0.9248430729,-0.9257839322,-0.9255151153,-0.9240365028,-0.9230956435,-0.9222891927,-0.9209451079,-0.920407474,-0.9217515588,-0.923230052,-0.9226924181,-0.9212139249,-0.920676291,-0.9205418825,-0.920407474,-0.9209451079,-0.9220203757,-0.9221547842,-0.9218859673,-0.9221547842,-0.9225580096,-0.9221547842,-0.9216171503,-0.9222891927,-0.9234988689,-0.9240365028,-0.9239020944,-0.9234988689,-0.923230052,-0.9236332774,-0.9239020944,-0.9234988689,-0.922961235,-0.923230052,-0.9234988689,-0.9225580096,-0.9220203757,-0.9214827418,-0.920676291,-0.920407474,-0.920676291,-0.9216171503,-0.9225580096,-0.9226924181,-0.9226924181,-0.9230956435,-0.9234988689,-0.9234988689,-0.9234988689,-0.9230956435,-0.9228268266,-0.9228268266,-0.9230956435,-0.922961235,-0.9224236012,-0.9222891927,-0.9222891927,-0.9222891927,-0.9222891927,-0.9222891927,-0.9222891927,-0.9222891927,-0.9222891927,-0.9224236012,-0.9224236012,-0.9222891927,-0.9224236012,-0.9228268266,-0.9233644605,-0.9239020944,-0.9236332774,-0.9228268266,-0.9225580096,-0.9228268266,-0.9226924181,-0.9224236012,-0.9220203757,-0.9220203757,-0.9221547842,-0.9222891927,-0.9222891927,-0.9221547842,-0.9220203757,-0.9221547842,-0.9225580096,-0.9228268266,-0.922961235,-0.9226924181,-0.9224236012,-0.9222891927,-0.9224236012,-0.9226924181,-0.922961235,-0.9226924181,-0.9222891927,-0.9221547842,-0.9221547842,-0.9218859673,-0.9216171503,-0.9216171503,-0.9213483334,-0.920407474,-0.9196009636,-0.9202730656,-0.9220203757,-0.9228268266,-0.922961235,-0.9240365028,-0.9248430729,-0.9239020944,-0.922961235,-0.9243053794,-0.9261871576,-0.9261871576,-0.9255151153,-0.9255151153,-0.9253807068,-0.9249774814,-0.9245741963,-0.9239020944,-0.923230052,-0.9233644605,-0.922961235,-0.9218859673,-0.9213483334,-0.920676291,-0.9191977382,-0.9189289212,-0.9205418825,-0.9221547842,-0.9225580096,-0.9213483334,-0.9196009636,-0.9198697805,-0.9221547842,-0.9239020944,-0.9243053794,-0.9245741963,-0.9245741963,-0.9234988689,-0.9228268266,-0.9241709113,-0.9257839322,-0.9241709113,-0.9222891927,-0.9245741963,-0.9288753867,-0.9296818376,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.9296818376,-0.929816246,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.930085063,-0.9299506545,-0.929816246,-0.929816246,-0.9299506545,-0.9302194715,-0.930085063,-0.9296818376,-0.9302194715,-0.930085063,-0.9302194715,-0.930085063,-0.9303538799,-0.9303538799,-0.930085063,-0.9302194715,-0.9304882884,-0.930085063,-0.9296818376,-0.929816246,-0.9296818376,-0.9296818376],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9286065698,-0.9291442037,-0.929816246,-0.929816246,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9296818376,-0.9287409782,-0.9256495237,-0.9230956435,-0.9236332774,-0.9251118898,-0.9249774814,-0.9243053794,-0.9244397879,-0.9253807068,-0.9255151153,-0.9243053794,-0.9230956435,-0.9230956435,-0.9218859673,-0.9197353721,-0.920407474,-0.923230052,-0.9241709113,-0.9228268266,-0.9213483334,-0.9202730656,-0.9200042486,-0.9205418825,-0.9209451079,-0.9209451079,-0.9210795164,-0.9213483334,-0.9217515588,-0.9222891927,-0.9222891927,-0.9221547842,-0.9225580096,-0.922961235,-0.9230956435,-0.9234988689,-0.9236332774,-0.9234988689,-0.9236332774,-0.9236332774,-0.923230052,-0.9228268266,-0.922961235,-0.9237676859,-0.9240365028,-0.9234988689,-0.9222891927,-0.9213483334,-0.9212139249,-0.9214827418,-0.9220203757,-0.922961235,-0.9233644605,-0.9230956435,-0.9230956435,-0.923230052,-0.922961235,-0.9226924181,-0.9226924181,-0.9225580096,-0.9226924181,-0.922961235,-0.922961235,-0.9226924181,-0.9224236012,-0.9222891927,-0.9222891927,-0.9222891927,-0.9222891927,-0.9224236012,-0.9224236012,-0.9224236012,-0.9222891927,-0.9222891927,-0.9222891927,-0.9222891927,-0.9226924181,-0.923230052,-0.9237676859,-0.9234988689,-0.9228268266,-0.9225580096,-0.9228268266,-0.9226924181,-0.9222891927,-0.9220203757,-0.9221547842,-0.9224236012,-0.9224236012,-0.9222891927,-0.9221547842,-0.9218859673,-0.9218859673,-0.9220203757,-0.9224236012,-0.9226924181,-0.9226924181,-0.9224236012,-0.9220203757,-0.9218859673,-0.9220203757,-0.9221547842,-0.9225580096,-0.9228268266,-0.922961235,-0.9228268266,-0.9224236012,-0.9220203757,-0.9218859673,-0.9216171503,-0.920676291,-0.920407474,-0.9213483334,-0.9226924181,-0.923230052,-0.9234988689,-0.9243053794,-0.9248430729,-0.9244397879,-0.9239020944,-0.9244397879,-0.9255151153,-0.9256495237,-0.9249774814,-0.9247086048,-0.9247086048,-0.9244397879,-0.9240365028,-0.9237676859,-0.9236332774,-0.9236332774,-0.9230956435,-0.9218859673,-0.9212139249,-0.9213483334,-0.9212139249,-0.9210795164,-0.9212139249,-0.9216171503,-0.9224236012,-0.9221547842,-0.9205418825,-0.9201386571,-0.9217515588,-0.9234988689,-0.9243053794,-0.9248430729,-0.9248430729,-0.9241709113,-0.923230052,-0.9236332774,-0.9251118898,-0.9247086048,-0.9224236012,-0.9234988689,-0.9275312424,-0.9294130206,-0.9299506545,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.929816246,-0.9296818376,-0.930085063,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.930085063,-0.9299506545,-0.9299506545],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9247086048,-0.9275312424,-0.9282032847,-0.929816246,-0.9303538799,-0.930085063,-0.9303538799,-0.930085063,-0.929816246,-0.929816246,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9304882884,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9296818376,-0.9273968339,-0.9239020944,-0.9228268266,-0.9244397879,-0.9255151153,-0.9245741963,-0.9236332774,-0.9243053794,-0.9255151153,-0.9249774814,-0.9236332774,-0.9234988689,-0.9233644605,-0.9214827418,-0.9201386571,-0.9222891927,-0.9247086048,-0.9241709113,-0.9218859673,-0.920676291,-0.9202730656,-0.920407474,-0.920407474,-0.9198697805,-0.9196009636,-0.9201386571,-0.9209451079,-0.9217515588,-0.9228268266,-0.9233644605,-0.922961235,-0.922961235,-0.9233644605,-0.923230052,-0.922961235,-0.9236332774,-0.9241709113,-0.9240365028,-0.9236332774,-0.9234988689,-0.9233644605,-0.923230052,-0.9234988689,-0.9237676859,-0.9234988689,-0.9226924181,-0.9220203757,-0.9218859673,-0.9221547842,-0.9225580096,-0.922961235,-0.923230052,-0.923230052,-0.9230956435,-0.922961235,-0.9226924181,-0.9224236012,-0.9224236012,-0.9224236012,-0.9224236012,-0.9228268266,-0.9230956435,-0.922961235,-0.9225580096,-0.9222891927,-0.9222891927,-0.9224236012,-0.9225580096,-0.9224236012,-0.9222891927,-0.9221547842,-0.9221547842,-0.9221547842,-0.9222891927,-0.9222891927,-0.9225580096,-0.9230956435,-0.9236332774,-0.9233644605,-0.9228268266,-0.9225580096,-0.9225580096,-0.9224236012,-0.9222891927,-0.9221547842,-0.9222891927,-0.9224236012,-0.9224236012,-0.9222891927,-0.9221547842,-0.9221547842,-0.9218859673,-0.9217515588,-0.9220203757,-0.9225580096,-0.9228268266,-0.9225580096,-0.9222891927,-0.9220203757,-0.9220203757,-0.9220203757,-0.9224236012,-0.9228268266,-0.9233644605,-0.9234988689,-0.9230956435,-0.9224236012,-0.9220203757,-0.9216171503,-0.9210795164,-0.9212139249,-0.9221547842,-0.922961235,-0.9234988689,-0.9241709113,-0.9245741963,-0.9245741963,-0.9243053794,-0.9240365028,-0.9236332774,-0.9239020944,-0.9243053794,-0.9241709113,-0.9239020944,-0.9243053794,-0.9245741963,-0.9243053794,-0.9237676859,-0.9237676859,-0.9239020944,-0.923230052,-0.9220203757,-0.9216171503,-0.9216171503,-0.9212139249,-0.9208106995,-0.9212139249,-0.9217515588,-0.9226924181,-0.9230956435,-0.9217515588,-0.9205418825,-0.9209451079,-0.9224236012,-0.9237676859,-0.9247086048,-0.9247086048,-0.9241709113,-0.9234988689,-0.923230052,-0.9241709113,-0.9243053794,-0.9224236012,-0.9221547842,-0.9261871576,-0.9291442037,-0.9296818376,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.929816246,-0.9299506545,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.9234988689,-0.9267247915,-0.9276656508,-0.930085063,-0.930085063,-0.929816246,-0.9303538799,-0.930085063,-0.9295474291,-0.9296818376,-0.929816246,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.930085063,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.930085063,-0.9294130206,-0.9260527492,-0.9226924181,-0.9228268266,-0.9248430729,-0.9252462983,-0.9236332774,-0.9228268266,-0.9240365028,-0.9253807068,-0.9244397879,-0.9230956435,-0.9236332774,-0.9234988689,-0.9212139249,-0.9212139249,-0.9239020944,-0.9248430729,-0.9230956435,-0.9212139249,-0.920407474,-0.9201386571,-0.920676291,-0.9210795164,-0.9201386571,-0.9193321466,-0.9197353721,-0.9205418825,-0.9216171503,-0.9230956435,-0.9239020944,-0.9233644605,-0.923230052,-0.9237676859,-0.9234988689,-0.922961235,-0.9234988689,-0.9243053794,-0.9243053794,-0.9237676859,-0.923230052,-0.923230052,-0.923230052,-0.922961235,-0.9230956435,-0.9234988689,-0.9233644605,-0.9228268266,-0.9224236012,-0.9224236012,-0.9228268266,-0.922961235,-0.9226924181,-0.9226924181,-0.9226924181,-0.922961235,-0.9228268266,-0.9225580096,-0.9225580096,-0.9226924181,-0.9226924181,-0.922961235,-0.9230956435,-0.922961235,-0.9224236012,-0.9224236012,-0.9225580096,-0.9225580096,-0.9225580096,-0.9224236012,-0.9221547842,-0.9220203757,-0.9221547842,-0.9222891927,-0.9222891927,-0.9222891927,-0.9222891927,-0.9226924181,-0.923230052,-0.923230052,-0.9226924181,-0.9225580096,-0.9224236012,-0.9221547842,-0.9221547842,-0.9222891927,-0.9221547842,-0.9222891927,-0.9222891927,-0.9221547842,-0.9221547842,-0.9222891927,-0.9221547842,-0.9218859673,-0.9217515588,-0.9220203757,-0.9225580096,-0.9226924181,-0.9224236012,-0.9222891927,-0.9222891927,-0.9224236012,-0.9226924181,-0.9230956435,-0.9233644605,-0.9236332774,-0.9234988689,-0.9226924181,-0.9220203757,-0.9217515588,-0.9216171503,-0.9217515588,-0.9222891927,-0.922961235,-0.9239020944,-0.9244397879,-0.9244397879,-0.9241709113,-0.9240365028,-0.9240365028,-0.9234988689,-0.923230052,-0.9233644605,-0.9240365028,-0.9243053794,-0.9241709113,-0.9241709113,-0.9241709113,-0.9240365028,-0.9240365028,-0.9239020944,-0.9233644605,-0.9220203757,-0.9209451079,-0.9208106995,-0.9213483334,-0.9213483334,-0.9213483334,-0.9218859673,-0.9230956435,-0.9236332774,-0.9224236012,-0.920676291,-0.920407474,-0.9213483334,-0.9230956435,-0.9247086048,-0.9251118898,-0.9241709113,-0.9233644605,-0.923230052,-0.9240365028,-0.9248430729,-0.9234988689,-0.9222891927,-0.9247086048,-0.9283376932,-0.9296818376,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9299506545,-0.9299506545,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.929816246,-0.930085063,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9299506545,-0.929816246,-0.9296818376,-0.930085063,-0.9302194715],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.9294130206,-0.9294130206,-0.9291442037,-0.9302194715,-0.930085063,-0.9299506545,-0.9302194715,-0.929816246,-0.9295474291,-0.929816246,-0.930085063,-0.9302194715,-0.9304882884,-0.9303538799,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9302194715,-0.930085063,-0.9302194715,-0.9304882884,-0.9303538799,-0.9296818376,-0.9286065698,-0.9248430729,-0.9226924181,-0.9239020944,-0.9253807068,-0.9248430729,-0.923230052,-0.9228268266,-0.9243053794,-0.9252462983,-0.9241709113,-0.923230052,-0.9237676859,-0.9230956435,-0.9217515588,-0.922961235,-0.9249774814,-0.9243053794,-0.9221547842,-0.9208106995,-0.9201386571,-0.9201386571,-0.9209451079,-0.9214827418,-0.920676291,-0.9193321466,-0.9190633297,-0.9202730656,-0.9221547842,-0.9237676859,-0.9243053794,-0.9240365028,-0.9236332774,-0.9240365028,-0.9240365028,-0.9233644605,-0.9233644605,-0.9239020944,-0.9240365028,-0.9234988689,-0.9228268266,-0.9230956435,-0.9236332774,-0.9230956435,-0.9225580096,-0.9230956435,-0.9236332774,-0.9233644605,-0.9228268266,-0.9226924181,-0.922961235,-0.922961235,-0.9226924181,-0.9224236012,-0.9226924181,-0.9230956435,-0.9228268266,-0.9226924181,-0.9228268266,-0.922961235,-0.922961235,-0.922961235,-0.9230956435,-0.9228268266,-0.9225580096,-0.9225580096,-0.9226924181,-0.9226924181,-0.9224236012,-0.9224236012,-0.9222891927,-0.9221547842,-0.9221547842,-0.9220203757,-0.9220203757,-0.9222891927,-0.9221547842,-0.9222891927,-0.9230956435,-0.923230052,-0.9226924181,-0.9224236012,-0.9224236012,-0.9220203757,-0.9218859673,-0.9220203757,-0.9220203757,-0.9222891927,-0.9222891927,-0.9218859673,-0.9218859673,-0.9222891927,-0.9224236012,-0.9221547842,-0.9218859673,-0.9217515588,-0.9222891927,-0.9225580096,-0.9225580096,-0.9224236012,-0.9224236012,-0.9225580096,-0.922961235,-0.9234988689,-0.9234988689,-0.923230052,-0.923230052,-0.9228268266,-0.9222891927,-0.9220203757,-0.9220203757,-0.9222891927,-0.9228268266,-0.9233644605,-0.9239020944,-0.9241709113,-0.9243053794,-0.9240365028,-0.9241709113,-0.9241709113,-0.9234988689,-0.922961235,-0.9233644605,-0.9241709113,-0.9245741963,-0.9241709113,-0.9237676859,-0.9239020944,-0.9243053794,-0.9243053794,-0.9236332774,-0.9225580096,-0.9216171503,-0.9209451079,-0.9210795164,-0.9216171503,-0.9220203757,-0.9217515588,-0.9218859673,-0.9230956435,-0.9243053794,-0.9233644605,-0.9209451079,-0.9200042486,-0.9208106995,-0.9216171503,-0.9230956435,-0.9247086048,-0.9244397879,-0.923230052,-0.9230956435,-0.9240365028,-0.9251118898,-0.9241709113,-0.9222891927,-0.9239020944,-0.9282032847,-0.9295474291,-0.930085063,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.930085063,-0.930085063,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9299506545,-0.929816246,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.929816246,-0.9276656508,-0.9288753867,-0.9296818376,-0.930085063,-0.9299506545,-0.930085063,-0.930085063,-0.929816246,-0.9299506545,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9299506545,-0.9291442037,-0.9275312424,-0.9240365028,-0.922961235,-0.9244397879,-0.9255151153,-0.9249774814,-0.9239020944,-0.9241709113,-0.9251118898,-0.9248430729,-0.9236332774,-0.9233644605,-0.9233644605,-0.9220203757,-0.9218859673,-0.9241709113,-0.9251118898,-0.923230052,-0.9213483334,-0.920407474,-0.9198697805,-0.9202730656,-0.9210795164,-0.9213483334,-0.9205418825,-0.9190633297,-0.9187945127,-0.9209451079,-0.9233644605,-0.9245741963,-0.9248430729,-0.9249774814,-0.9247086048,-0.9240365028,-0.9234988689,-0.9236332774,-0.9241709113,-0.9237676859,-0.9230956435,-0.9228268266,-0.9226924181,-0.922961235,-0.9236332774,-0.9236332774,-0.9228268266,-0.9228268266,-0.9233644605,-0.923230052,-0.9230956435,-0.9230956435,-0.922961235,-0.9230956435,-0.9230956435,-0.922961235,-0.922961235,-0.9230956435,-0.9228268266,-0.9225580096,-0.9228268266,-0.922961235,-0.9228268266,-0.9228268266,-0.9230956435,-0.9228268266,-0.9222891927,-0.9225580096,-0.9228268266,-0.9226924181,-0.9224236012,-0.9224236012,-0.9224236012,-0.9221547842,-0.9221547842,-0.9220203757,-0.9218859673,-0.9221547842,-0.9222891927,-0.9220203757,-0.9226924181,-0.923230052,-0.9226924181,-0.9221547842,-0.9222891927,-0.9220203757,-0.9216171503,-0.9217515588,-0.9220203757,-0.9222891927,-0.9222891927,-0.9218859673,-0.9216171503,-0.9220203757,-0.9222891927,-0.9221547842,-0.9218859673,-0.9218859673,-0.9221547842,-0.9225580096,-0.9225580096,-0.9226924181,-0.9228268266,-0.9226924181,-0.922961235,-0.9234988689,-0.9237676859,-0.9234988689,-0.922961235,-0.9226924181,-0.9225580096,-0.9224236012,-0.9225580096,-0.9225580096,-0.9230956435,-0.9237676859,-0.9240365028,-0.9240365028,-0.9239020944,-0.9236332774,-0.9237676859,-0.9239020944,-0.9236332774,-0.923230052,-0.9233644605,-0.9240365028,-0.9243053794,-0.9241709113,-0.9239020944,-0.9239020944,-0.9244397879,-0.9243053794,-0.9230956435,-0.9216171503,-0.9210795164,-0.9210795164,-0.9216171503,-0.9218859673,-0.9218859673,-0.9218859673,-0.9220203757,-0.9228268266,-0.9244397879,-0.9245741963,-0.9220203757,-0.9198697805,-0.9194665551,-0.9197353721,-0.9210795164,-0.9237676859,-0.9247086048,-0.9233644605,-0.922961235,-0.9239020944,-0.9248430729,-0.9243053794,-0.9226924181,-0.9234988689,-0.9273968339,-0.9292786121,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9302194715,-0.930085063,-0.930085063,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9299506545,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9294130206,-0.9280688763,-0.9295474291,-0.9294130206,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9302194715,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9304882884,-0.9304882884,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9299506545,-0.929816246,-0.9299506545,-0.9288753867,-0.9263215661,-0.923230052,-0.9230956435,-0.9251118898,-0.9260527492,-0.9251118898,-0.9244397879,-0.9248430729,-0.9252462983,-0.9244397879,-0.9233644605,-0.922961235,-0.9221547842,-0.9214827418,-0.9228268266,-0.9247086048,-0.9243053794,-0.9220203757,-0.9205418825,-0.9198697805,-0.9198697805,-0.9205418825,-0.9213483334,-0.9212139249,-0.9200042486,-0.9186601043,-0.9193321466,-0.9220203757,-0.9243053794,-0.9251118898,-0.9252462983,-0.9252462983,-0.9251118898,-0.9241709113,-0.9236332774,-0.9245741963,-0.9249774814,-0.9239020944,-0.9228268266,-0.9225580096,-0.9228268266,-0.922961235,-0.9233644605,-0.9239020944,-0.9234988689,-0.9225580096,-0.9228268266,-0.923230052,-0.9233644605,-0.9233644605,-0.923230052,-0.9230956435,-0.923230052,-0.9230956435,-0.9228268266,-0.922961235,-0.9228268266,-0.9225580096,-0.9225580096,-0.9228268266,-0.9228268266,-0.9225580096,-0.9225580096,-0.9224236012,-0.9222891927,-0.9224236012,-0.9225580096,-0.9224236012,-0.9222891927,-0.9222891927,-0.9222891927,-0.9220203757,-0.9220203757,-0.9220203757,-0.9218859673,-0.9220203757,-0.9221547842,-0.9220203757,-0.9222891927,-0.922961235,-0.9225580096,-0.9220203757,-0.9221547842,-0.9221547842,-0.9220203757,-0.9218859673,-0.9220203757,-0.9221547842,-0.9220203757,-0.9217515588,-0.9214827418,-0.9218859673,-0.9222891927,-0.9221547842,-0.9218859673,-0.9218859673,-0.9221547842,-0.9224236012,-0.9225580096,-0.9228268266,-0.922961235,-0.9228268266,-0.9226924181,-0.923230052,-0.9236332774,-0.9233644605,-0.9228268266,-0.9225580096,-0.9225580096,-0.9226924181,-0.9226924181,-0.9226924181,-0.9230956435,-0.9237676859,-0.9240365028,-0.9237676859,-0.923230052,-0.923230052,-0.9236332774,-0.9241709113,-0.9241709113,-0.9237676859,-0.9233644605,-0.9234988689,-0.9239020944,-0.9245741963,-0.9247086048,-0.9241709113,-0.9239020944,-0.9241709113,-0.9230956435,-0.9212139249,-0.920407474,-0.9209451079,-0.9218859673,-0.9221547842,-0.9214827418,-0.9210795164,-0.9214827418,-0.9221547842,-0.9234988689,-0.9248430729,-0.9234988689,-0.9205418825,-0.9187945127,-0.9183912873,-0.9197353721,-0.923230052,-0.9249774814,-0.9236332774,-0.922961235,-0.9240365028,-0.9251118898,-0.9249774814,-0.9233644605,-0.9228268266,-0.9259183407,-0.9294130206,-0.930085063,-0.930085063,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9302194715,-0.930085063,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9302194715,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.930085063,-0.930085063,-0.9302194715,-0.9299506545,-0.9303538799,-0.9303538799],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9286065698,-0.9275312424,-0.9286065698,-0.9290097952,-0.930085063,-0.929816246,-0.9299506545,-0.9299506545,-0.929816246,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9299506545,-0.929816246,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.9296818376,-0.9283376932,-0.9251118898,-0.9225580096,-0.9234988689,-0.9253807068,-0.9257839322,-0.9249774814,-0.9247086048,-0.9249774814,-0.9249774814,-0.9244397879,-0.9234988689,-0.9224236012,-0.9213483334,-0.9210795164,-0.9218859673,-0.923230052,-0.922961235,-0.9210795164,-0.9194665551,-0.9193321466,-0.9201386571,-0.920676291,-0.920407474,-0.9194665551,-0.9183912873,-0.9187945127,-0.9212139249,-0.9237676859,-0.9248430729,-0.9247086048,-0.9240365028,-0.9236332774,-0.9237676859,-0.9243053794,-0.9247086048,-0.9247086048,-0.9247086048,-0.9240365028,-0.923230052,-0.922961235,-0.9230956435,-0.9233644605,-0.9234988689,-0.9237676859,-0.9234988689,-0.9228268266,-0.9226924181,-0.9230956435,-0.9234988689,-0.9233644605,-0.9230956435,-0.9230956435,-0.9230956435,-0.922961235,-0.9228268266,-0.9228268266,-0.9228268266,-0.9225580096,-0.9225580096,-0.9226924181,-0.9225580096,-0.9222891927,-0.9221547842,-0.9220203757,-0.9220203757,-0.9221547842,-0.9224236012,-0.9222891927,-0.9220203757,-0.9221547842,-0.9221547842,-0.9218859673,-0.9218859673,-0.9218859673,-0.9220203757,-0.9221547842,-0.9221547842,-0.9218859673,-0.9221547842,-0.9226924181,-0.9224236012,-0.9217515588,-0.9217515588,-0.9220203757,-0.9217515588,-0.9216171503,-0.9217515588,-0.9217515588,-0.9216171503,-0.9216171503,-0.9218859673,-0.9221547842,-0.9220203757,-0.9218859673,-0.9218859673,-0.9220203757,-0.9222891927,-0.9225580096,-0.9226924181,-0.9225580096,-0.9226924181,-0.9228268266,-0.9230956435,-0.923230052,-0.9233644605,-0.9233644605,-0.922961235,-0.9226924181,-0.9226924181,-0.9228268266,-0.9228268266,-0.9228268266,-0.9233644605,-0.9239020944,-0.9240365028,-0.9237676859,-0.9233644605,-0.9233644605,-0.9239020944,-0.9243053794,-0.9244397879,-0.9240365028,-0.9236332774,-0.9236332774,-0.9239020944,-0.9245741963,-0.9251118898,-0.9247086048,-0.9239020944,-0.9237676859,-0.9233644605,-0.9216171503,-0.920676291,-0.9214827418,-0.9217515588,-0.9217515588,-0.9216171503,-0.9212139249,-0.9212139249,-0.9214827418,-0.9222891927,-0.9243053794,-0.9248430729,-0.9221547842,-0.9201386571,-0.9190633297,-0.9189289212,-0.9218859673,-0.9249774814,-0.9241709113,-0.9226924181,-0.9236332774,-0.9249774814,-0.9251118898,-0.9239020944,-0.9225580096,-0.9245741963,-0.9290097952,-0.9296818376,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9306226969,-0.9302194715,-0.930085063,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9304882884,-0.9304882884,-0.9302194715,-0.930085063,-0.9303538799,-0.9303538799,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.930085063,-0.9302194715,-0.930085063,-0.9303538799,-0.9299506545,-0.9299506545,-0.9302194715,-0.9303538799,-0.9303538799],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9276656508,-0.9267247915,-0.9279344678,-0.9291442037,-0.9299506545,-0.9296818376,-0.9299506545,-0.930085063,-0.9299506545,-0.9296818376,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.9299506545,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.929816246,-0.9294130206,-0.9275312424,-0.9239020944,-0.9225580096,-0.9241709113,-0.9253807068,-0.9247086048,-0.9240365028,-0.9247086048,-0.9251118898,-0.9248430729,-0.9243053794,-0.922961235,-0.9212139249,-0.9202730656,-0.9212139249,-0.9222891927,-0.9225580096,-0.9216171503,-0.9193321466,-0.9169127941,-0.9165095687,-0.9183912873,-0.9193321466,-0.917450428,-0.9158375263,-0.9175848365,-0.9218859673,-0.9245741963,-0.9249774814,-0.9241709113,-0.9228268266,-0.9220203757,-0.9222891927,-0.923230052,-0.9237676859,-0.9240365028,-0.9245741963,-0.9247086048,-0.9241709113,-0.9234988689,-0.9233644605,-0.9234988689,-0.9237676859,-0.9240365028,-0.9240365028,-0.9240365028,-0.923230052,-0.9225580096,-0.9228268266,-0.9233644605,-0.923230052,-0.922961235,-0.922961235,-0.922961235,-0.9228268266,-0.9226924181,-0.9226924181,-0.9226924181,-0.9225580096,-0.9225580096,-0.9224236012,-0.9221547842,-0.9220203757,-0.9220203757,-0.9218859673,-0.9217515588,-0.9220203757,-0.9222891927,-0.9221547842,-0.9221547842,-0.9221547842,-0.9220203757,-0.9217515588,-0.9214827418,-0.9214827418,-0.9217515588,-0.9220203757,-0.9220203757,-0.9218859673,-0.9224236012,-0.922961235,-0.9226924181,-0.9218859673,-0.9214827418,-0.9214827418,-0.9213483334,-0.9212139249,-0.9213483334,-0.9214827418,-0.9214827418,-0.9217515588,-0.9221547842,-0.9222891927,-0.9221547842,-0.9218859673,-0.9220203757,-0.9220203757,-0.9221547842,-0.9225580096,-0.9226924181,-0.9225580096,-0.9225580096,-0.922961235,-0.923230052,-0.923230052,-0.923230052,-0.9233644605,-0.9233644605,-0.9230956435,-0.9228268266,-0.9228268266,-0.922961235,-0.923230052,-0.9234988689,-0.9237676859,-0.9240365028,-0.9241709113,-0.9239020944,-0.9234988689,-0.9234988689,-0.9240365028,-0.9243053794,-0.9241709113,-0.9240365028,-0.9239020944,-0.9237676859,-0.9241709113,-0.9248430729,-0.9249774814,-0.9241709113,-0.9236332774,-0.9233644605,-0.9218859673,-0.9205418825,-0.9208106995,-0.9212139249,-0.9212139249,-0.9216171503,-0.9217515588,-0.9214827418,-0.9214827418,-0.9214827418,-0.922961235,-0.9251118898,-0.9244397879,-0.9220203757,-0.9205418825,-0.9189289212,-0.9198697805,-0.9237676859,-0.9248430729,-0.9230956435,-0.9230956435,-0.9245741963,-0.9253807068,-0.9244397879,-0.9224236012,-0.9236332774,-0.9282032847,-0.9295474291,-0.930085063,-0.9302194715,-0.9302194715,-0.9306226969,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.930085063,-0.9299506545,-0.9302194715,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9303538799,-0.9304882884,-0.9302194715,-0.930085063,-0.9302194715,-0.9299506545,-0.9304882884,-0.9299506545,-0.9302194715,-0.930085063,-0.9302194715,-0.930085063],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9282032847,-0.9280688763,-0.9287409782,-0.929816246,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.9299506545,-0.9296818376,-0.9296818376,-0.9299506545,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9294130206,-0.9288753867,-0.9260527492,-0.9226924181,-0.922961235,-0.9251118898,-0.9256495237,-0.9244397879,-0.9240365028,-0.9245741963,-0.9247086048,-0.9245741963,-0.9239020944,-0.9222891927,-0.9205418825,-0.9209451079,-0.9230956435,-0.9237676859,-0.9220203757,-0.920407474,-0.9187945127,-0.9159719348,-0.9139556885,-0.9146277308,-0.9155686498,-0.9151654243,-0.9170472026,-0.9221547842,-0.9257839322,-0.9251118898,-0.922961235,-0.9217515588,-0.9214827418,-0.9221547842,-0.9233644605,-0.9241709113,-0.9237676859,-0.9234988689,-0.9241709113,-0.9244397879,-0.9236332774,-0.922961235,-0.9230956435,-0.9233644605,-0.9233644605,-0.9233644605,-0.9234988689,-0.9236332774,-0.9230956435,-0.9225580096,-0.9226924181,-0.9230956435,-0.9233644605,-0.9230956435,-0.922961235,-0.9230956435,-0.922961235,-0.9226924181,-0.9225580096,-0.9226924181,-0.9225580096,-0.9222891927,-0.9221547842,-0.9221547842,-0.9221547842,-0.9220203757,-0.9218859673,-0.9217515588,-0.9216171503,-0.9217515588,-0.9220203757,-0.9221547842,-0.9220203757,-0.9216171503,-0.9210795164,-0.9209451079,-0.9212139249,-0.9217515588,-0.9220203757,-0.9217515588,-0.9217515588,-0.9224236012,-0.9230956435,-0.9226924181,-0.9218859673,-0.9214827418,-0.9214827418,-0.9212139249,-0.9210795164,-0.9213483334,-0.9214827418,-0.9216171503,-0.9217515588,-0.9218859673,-0.9221547842,-0.9222891927,-0.9221547842,-0.9218859673,-0.9217515588,-0.9218859673,-0.9224236012,-0.9228268266,-0.9228268266,-0.9228268266,-0.9230956435,-0.923230052,-0.923230052,-0.9230956435,-0.923230052,-0.9233644605,-0.923230052,-0.9228268266,-0.9226924181,-0.9228268266,-0.9233644605,-0.9236332774,-0.9236332774,-0.9239020944,-0.9241709113,-0.9240365028,-0.9236332774,-0.9234988689,-0.9237676859,-0.9241709113,-0.9244397879,-0.9245741963,-0.9241709113,-0.9239020944,-0.9241709113,-0.9244397879,-0.9241709113,-0.9234988689,-0.9234988689,-0.9237676859,-0.9222891927,-0.9196009636,-0.9186601043,-0.9201386571,-0.9210795164,-0.9213483334,-0.9216171503,-0.9214827418,-0.9216171503,-0.9216171503,-0.9220203757,-0.9241709113,-0.9260527492,-0.9247086048,-0.9221547842,-0.9196009636,-0.9186601043,-0.9214827418,-0.9245741963,-0.9234988689,-0.9224236012,-0.9237676859,-0.9245741963,-0.9239020944,-0.9222891927,-0.923230052,-0.9272624254,-0.9296818376,-0.929816246,-0.930085063,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9306226969,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9304882884,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9304882884,-0.9304882884,-0.9304882884,-0.9302194715,-0.929816246,-0.9292786121],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9279344678,-0.9284721017,-0.9290097952,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9294130206,-0.9282032847,-0.9244397879,-0.9218859673,-0.9233644605,-0.9251118898,-0.9249774814,-0.9244397879,-0.9245741963,-0.9245741963,-0.9241709113,-0.9240365028,-0.9239020944,-0.9225580096,-0.9216171503,-0.9221547842,-0.9230956435,-0.9228268266,-0.9216171503,-0.920407474,-0.9197353721,-0.9185256958,-0.9165095687,-0.9154342413,-0.9159719348,-0.9183912873,-0.9225580096,-0.9261871576,-0.9257839322,-0.9224236012,-0.920407474,-0.9209451079,-0.9225580096,-0.9237676859,-0.9247086048,-0.9248430729,-0.9239020944,-0.922961235,-0.922961235,-0.922961235,-0.9222891927,-0.9218859673,-0.9221547842,-0.9222891927,-0.9220203757,-0.9218859673,-0.9224236012,-0.922961235,-0.9228268266,-0.9225580096,-0.9225580096,-0.9228268266,-0.923230052,-0.923230052,-0.922961235,-0.922961235,-0.922961235,-0.9228268266,-0.9226924181,-0.9226924181,-0.9225580096,-0.9222891927,-0.9221547842,-0.9222891927,-0.9220203757,-0.9216171503,-0.9212139249,-0.9210795164,-0.9212139249,-0.9216171503,-0.9220203757,-0.9222891927,-0.9221547842,-0.9216171503,-0.9210795164,-0.9210795164,-0.9213483334,-0.9216171503,-0.9217515588,-0.9217515588,-0.9220203757,-0.922961235,-0.9233644605,-0.9224236012,-0.9214827418,-0.9214827418,-0.9213483334,-0.9208106995,-0.9208106995,-0.9213483334,-0.9216171503,-0.9217515588,-0.9218859673,-0.9220203757,-0.9221547842,-0.9222891927,-0.9224236012,-0.9220203757,-0.9218859673,-0.9220203757,-0.9225580096,-0.9228268266,-0.9228268266,-0.9228268266,-0.922961235,-0.9230956435,-0.9230956435,-0.923230052,-0.923230052,-0.9230956435,-0.922961235,-0.9228268266,-0.9226924181,-0.922961235,-0.9233644605,-0.9236332774,-0.9237676859,-0.9240365028,-0.9243053794,-0.9243053794,-0.9241709113,-0.9240365028,-0.9241709113,-0.9243053794,-0.9244397879,-0.9247086048,-0.9249774814,-0.9247086048,-0.9241709113,-0.9239020944,-0.9233644605,-0.9225580096,-0.9226924181,-0.9234988689,-0.923230052,-0.9212139249,-0.9193321466,-0.9197353721,-0.9208106995,-0.9213483334,-0.9213483334,-0.9213483334,-0.9214827418,-0.9217515588,-0.9214827418,-0.9228268266,-0.9253807068,-0.9255151153,-0.9234988689,-0.9212139249,-0.9185256958,-0.9183912873,-0.9221547842,-0.9239020944,-0.9230956435,-0.9236332774,-0.9247086048,-0.9239020944,-0.9222891927,-0.9228268266,-0.9265903831,-0.9296818376,-0.929816246,-0.9302194715,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9299506545,-0.9302194715,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.930085063,-0.9299506545,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.930085063,-0.9302194715,-0.9302194715,-0.929816246,-0.9294130206],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9292786121,-0.930085063,-0.9299506545,-0.930085063,-0.929816246,-0.9299506545,-0.929816246,-0.929816246,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9302194715,-0.930085063,-0.9303538799,-0.9304882884,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9304882884,-0.9303538799,-0.930085063,-0.929816246,-0.9295474291,-0.9273968339,-0.9233644605,-0.9221547842,-0.9240365028,-0.9251118898,-0.9244397879,-0.9243053794,-0.9247086048,-0.9240365028,-0.9236332774,-0.9241709113,-0.9240365028,-0.9228268266,-0.9224236012,-0.9230956435,-0.9233644605,-0.9225580096,-0.9214827418,-0.9208106995,-0.920407474,-0.920407474,-0.9205418825,-0.9198697805,-0.9200042486,-0.9225580096,-0.9261871576,-0.9268592,-0.9237676859,-0.9213483334,-0.9220203757,-0.9237676859,-0.9244397879,-0.9243053794,-0.9237676859,-0.922961235,-0.9218859673,-0.9205418825,-0.9197353721,-0.9196009636,-0.9200042486,-0.9205418825,-0.9210795164,-0.9213483334,-0.9214827418,-0.9213483334,-0.9216171503,-0.9222891927,-0.9228268266,-0.9226924181,-0.9224236012,-0.9224236012,-0.9226924181,-0.9228268266,-0.9226924181,-0.9225580096,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9226924181,-0.9224236012,-0.9222891927,-0.9222891927,-0.9220203757,-0.9214827418,-0.9210795164,-0.9210795164,-0.9216171503,-0.9220203757,-0.9221547842,-0.9222891927,-0.9222891927,-0.9218859673,-0.9214827418,-0.9212139249,-0.9214827418,-0.9216171503,-0.9216171503,-0.9217515588,-0.9222891927,-0.9226924181,-0.9226924181,-0.9218859673,-0.9212139249,-0.9213483334,-0.9213483334,-0.920676291,-0.9205418825,-0.9210795164,-0.9216171503,-0.9217515588,-0.9218859673,-0.9220203757,-0.9221547842,-0.9221547842,-0.9220203757,-0.9220203757,-0.9218859673,-0.9221547842,-0.9226924181,-0.9228268266,-0.9226924181,-0.9225580096,-0.9228268266,-0.922961235,-0.9230956435,-0.9230956435,-0.922961235,-0.9228268266,-0.9228268266,-0.9228268266,-0.9226924181,-0.9230956435,-0.9234988689,-0.9236332774,-0.9236332774,-0.9239020944,-0.9241709113,-0.9243053794,-0.9243053794,-0.9241709113,-0.9240365028,-0.9239020944,-0.9234988689,-0.9234988689,-0.9243053794,-0.9249774814,-0.9245741963,-0.9241709113,-0.9239020944,-0.9230956435,-0.9224236012,-0.922961235,-0.9241709113,-0.9243053794,-0.9222891927,-0.9191977382,-0.917719245,-0.9182568789,-0.9197353721,-0.9208106995,-0.9205418825,-0.9200042486,-0.9201386571,-0.9218859673,-0.9244397879,-0.9252462983,-0.9240365028,-0.9222891927,-0.9193321466,-0.9173160195,-0.9197353721,-0.9233644605,-0.9236332774,-0.9239020944,-0.9251118898,-0.9244397879,-0.9222891927,-0.9222891927,-0.9259183407,-0.9292786121,-0.9299506545,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9299506545],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9282032847,-0.929816246,-0.9291442037,-0.930085063,-0.9299506545,-0.930085063,-0.9295474291,-0.9294130206,-0.930085063,-0.930085063,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.9296818376,-0.9296818376,-0.9263215661,-0.9226924181,-0.9226924181,-0.9248430729,-0.9253807068,-0.9245741963,-0.9244397879,-0.9241709113,-0.9230956435,-0.923230052,-0.9239020944,-0.9228268266,-0.9214827418,-0.923230052,-0.9253807068,-0.9244397879,-0.9221547842,-0.9210795164,-0.920676291,-0.920407474,-0.9208106995,-0.9210795164,-0.9209451079,-0.9221547842,-0.9253807068,-0.9273968339,-0.9253807068,-0.9226924181,-0.9236332774,-0.9256495237,-0.9253807068,-0.9236332774,-0.9220203757,-0.920407474,-0.9187945127,-0.9175848365,-0.9165095687,-0.9163751602,-0.9175848365,-0.9197353721,-0.9212139249,-0.9214827418,-0.9216171503,-0.9220203757,-0.9221547842,-0.9220203757,-0.9220203757,-0.9222891927,-0.9221547842,-0.9220203757,-0.9220203757,-0.9224236012,-0.9226924181,-0.9228268266,-0.9228268266,-0.9228268266,-0.9226924181,-0.9226924181,-0.9228268266,-0.9228268266,-0.9225580096,-0.9222891927,-0.9221547842,-0.9221547842,-0.9220203757,-0.9220203757,-0.9218859673,-0.9218859673,-0.9220203757,-0.9221547842,-0.9220203757,-0.9220203757,-0.9217515588,-0.9213483334,-0.9212139249,-0.9214827418,-0.9217515588,-0.9217515588,-0.9213483334,-0.9209451079,-0.9210795164,-0.9210795164,-0.9210795164,-0.9210795164,-0.9214827418,-0.9213483334,-0.9209451079,-0.920676291,-0.9210795164,-0.9216171503,-0.9220203757,-0.9218859673,-0.9218859673,-0.9220203757,-0.9221547842,-0.9221547842,-0.9222891927,-0.9222891927,-0.9222891927,-0.9225580096,-0.9228268266,-0.9225580096,-0.9222891927,-0.9225580096,-0.922961235,-0.922961235,-0.9228268266,-0.9228268266,-0.922961235,-0.922961235,-0.9228268266,-0.9228268266,-0.9230956435,-0.923230052,-0.9233644605,-0.9236332774,-0.9237676859,-0.9237676859,-0.9234988689,-0.9236332774,-0.9236332774,-0.9233644605,-0.922961235,-0.9228268266,-0.922961235,-0.9236332774,-0.9244397879,-0.9247086048,-0.9243053794,-0.9243053794,-0.9245741963,-0.9236332774,-0.9222891927,-0.9230956435,-0.9251118898,-0.9255151153,-0.9233644605,-0.9201386571,-0.9182568789,-0.9189289212,-0.9201386571,-0.9185256958,-0.9152998328,-0.9152998328,-0.9193321466,-0.9237676859,-0.9251118898,-0.9241709113,-0.922961235,-0.9210795164,-0.9187945127,-0.9196009636,-0.9225580096,-0.9236332774,-0.9237676859,-0.9247086048,-0.9244397879,-0.9222891927,-0.9220203757,-0.9253807068,-0.9287409782,-0.929816246,-0.930085063,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.930085063,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9304882884,-0.9303538799,-0.930085063,-0.930085063,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9299506545,-0.9299506545,-0.9302194715,-0.9299506545,-0.9299506545,-0.930085063],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.9292786121,-0.930085063,-0.9295474291,-0.929816246,-0.9302194715,-0.9299506545,-0.9292786121,-0.9294130206,-0.930085063,-0.929816246,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.930085063,-0.9299506545,-0.929816246,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.929816246,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.9304882884,-0.9304882884,-0.9304882884,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9295474291,-0.9295474291,-0.9253807068,-0.9222891927,-0.923230052,-0.9252462983,-0.9253807068,-0.9247086048,-0.9245741963,-0.9241709113,-0.9234988689,-0.9233644605,-0.9225580096,-0.9205418825,-0.9209451079,-0.9247086048,-0.9267247915,-0.9241709113,-0.9210795164,-0.9197353721,-0.9196009636,-0.920676291,-0.9212139249,-0.9205418825,-0.9213483334,-0.9245741963,-0.9269936085,-0.9255151153,-0.9228268266,-0.9234988689,-0.9253807068,-0.9248430729,-0.9225580096,-0.920676291,-0.9187945127,-0.9163751602,-0.9146277308,-0.9144933224,-0.9161063433,-0.9181224704,-0.9194665551,-0.9212139249,-0.9225580096,-0.9225580096,-0.9221547842,-0.9225580096,-0.9233644605,-0.923230052,-0.9224236012,-0.9220203757,-0.9217515588,-0.9220203757,-0.9222891927,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9224236012,-0.9224236012,-0.9226924181,-0.922961235,-0.9228268266,-0.9225580096,-0.9221547842,-0.9220203757,-0.9220203757,-0.9220203757,-0.9217515588,-0.9217515588,-0.9218859673,-0.9221547842,-0.9218859673,-0.9217515588,-0.9218859673,-0.9212139249,-0.9209451079,-0.9214827418,-0.9216171503,-0.9213483334,-0.9222891927,-0.9225580096,-0.9226924181,-0.9217515588,-0.9213483334,-0.9210795164,-0.9212139249,-0.9210795164,-0.9208106995,-0.9208106995,-0.9210795164,-0.9214827418,-0.9218859673,-0.9221547842,-0.9220203757,-0.9221547842,-0.9222891927,-0.9222891927,-0.9221547842,-0.9222891927,-0.9220203757,-0.9221547842,-0.9226924181,-0.9225580096,-0.9218859673,-0.9218859673,-0.9224236012,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.922961235,-0.923230052,-0.9234988689,-0.9237676859,-0.9239020944,-0.9237676859,-0.923230052,-0.9225580096,-0.9218859673,-0.9220203757,-0.9226924181,-0.9236332774,-0.9244397879,-0.9237676859,-0.9230956435,-0.9244397879,-0.9245741963,-0.9217515588,-0.920407474,-0.9234988689,-0.9269936085,-0.9269936085,-0.9245741963,-0.9218859673,-0.9210795164,-0.9208106995,-0.917450428,-0.9122083783,-0.9112674594,-0.9162407517,-0.9221547842,-0.9245741963,-0.9243053794,-0.9236332774,-0.9221547842,-0.9196009636,-0.9191977382,-0.9216171503,-0.9237676859,-0.9241709113,-0.9247086048,-0.9244397879,-0.9226924181,-0.9221547842,-0.9251118898,-0.9284721017,-0.9295474291,-0.9299506545,-0.9303538799,-0.9303538799,-0.9304882884,-0.9302194715,-0.9299506545,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.930085063,-0.9299506545,-0.929816246],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9303538799,-0.9294130206,-0.929816246,-0.9302194715,-0.930085063,-0.930085063,-0.9299506545,-0.9294130206,-0.9296818376,-0.9299506545,-0.929816246,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.929816246,-0.930085063,-0.9296818376,-0.930085063,-0.930085063,-0.9299506545,-0.9303538799,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.9304882884,-0.9304882884,-0.9302194715,-0.930085063,-0.9303538799,-0.9299506545,-0.9295474291,-0.9291442037,-0.9248430729,-0.9221547842,-0.9233644605,-0.9253807068,-0.9255151153,-0.9247086048,-0.9241709113,-0.9245741963,-0.9251118898,-0.9239020944,-0.9212139249,-0.9202730656,-0.9230956435,-0.9264559746,-0.9263215661,-0.9224236012,-0.9179880619,-0.9167783856,-0.9190633297,-0.9212139249,-0.9210795164,-0.9210795164,-0.9239020944,-0.9271280169,-0.9267247915,-0.9240365028,-0.9234988689,-0.9244397879,-0.9233644605,-0.9208106995,-0.9197353721,-0.9187945127,-0.9159719348,-0.9132836461,-0.9144933224,-0.9175848365,-0.9198697805,-0.920676291,-0.9205418825,-0.9210795164,-0.9221547842,-0.9226924181,-0.9222891927,-0.9224236012,-0.9233644605,-0.9236332774,-0.9230956435,-0.9226924181,-0.9222891927,-0.9221547842,-0.9225580096,-0.9228268266,-0.9225580096,-0.9222891927,-0.9222891927,-0.9224236012,-0.9225580096,-0.9224236012,-0.9224236012,-0.9225580096,-0.9228268266,-0.9226924181,-0.9221547842,-0.9217515588,-0.9217515588,-0.9218859673,-0.9217515588,-0.9217515588,-0.9220203757,-0.9221547842,-0.9220203757,-0.9218859673,-0.9218859673,-0.9213483334,-0.920676291,-0.9213483334,-0.9216171503,-0.9214827418,-0.923230052,-0.9251118898,-0.9249774814,-0.922961235,-0.9217515588,-0.9214827418,-0.9212139249,-0.920676291,-0.920407474,-0.920676291,-0.9213483334,-0.9217515588,-0.9218859673,-0.9218859673,-0.9220203757,-0.9221547842,-0.9221547842,-0.9218859673,-0.9217515588,-0.9220203757,-0.9220203757,-0.9221547842,-0.9224236012,-0.9225580096,-0.9220203757,-0.9216171503,-0.9221547842,-0.9225580096,-0.9225580096,-0.9226924181,-0.9228268266,-0.9228268266,-0.922961235,-0.922961235,-0.9226924181,-0.9225580096,-0.9225580096,-0.9228268266,-0.9234988689,-0.9240365028,-0.9245741963,-0.9247086048,-0.9244397879,-0.9243053794,-0.9236332774,-0.9224236012,-0.9212139249,-0.920676291,-0.9213483334,-0.9226924181,-0.9234988689,-0.922961235,-0.9230956435,-0.9241709113,-0.923230052,-0.9209451079,-0.9217515588,-0.9251118898,-0.9269936085,-0.9261871576,-0.9240365028,-0.9225580096,-0.9220203757,-0.9191977382,-0.914090097,-0.9128804207,-0.9171816111,-0.9216171503,-0.9237676859,-0.9243053794,-0.9237676859,-0.9224236012,-0.9201386571,-0.9187945127,-0.9205418825,-0.923230052,-0.9240365028,-0.9244397879,-0.9245741963,-0.923230052,-0.9220203757,-0.9241709113,-0.9282032847,-0.9294130206,-0.9299506545,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9302194715,-0.9299506545,-0.930085063,-0.9302194715,-0.930085063,-0.929816246],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9296818376,-0.9280688763,-0.9294130206,-0.9294130206,-0.9303538799,-0.930085063,-0.9299506545,-0.9296818376,-0.9296818376,-0.929816246,-0.9296818376,-0.929816246,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9295474291,-0.9282032847,-0.9239020944,-0.9218859673,-0.9233644605,-0.9253807068,-0.9255151153,-0.9240365028,-0.9233644605,-0.9244397879,-0.9252462983,-0.9234988689,-0.9212139249,-0.9225580096,-0.9260527492,-0.9261871576,-0.9221547842,-0.9170472026,-0.9143589139,-0.9163751602,-0.9198697805,-0.9209451079,-0.9209451079,-0.922961235,-0.9259183407,-0.9268592,-0.9253807068,-0.9244397879,-0.9247086048,-0.9236332774,-0.9209451079,-0.9191977382,-0.9190633297,-0.917719245,-0.9150309563,-0.9152998328,-0.9198697805,-0.922961235,-0.9225580096,-0.9213483334,-0.9214827418,-0.9224236012,-0.923230052,-0.922961235,-0.9220203757,-0.9220203757,-0.9228268266,-0.9237676859,-0.9237676859,-0.923230052,-0.9226924181,-0.9225580096,-0.9226924181,-0.922961235,-0.9228268266,-0.9222891927,-0.9222891927,-0.9225580096,-0.9226924181,-0.9226924181,-0.9224236012,-0.9221547842,-0.9222891927,-0.9224236012,-0.9222891927,-0.9220203757,-0.9218859673,-0.9217515588,-0.9218859673,-0.9220203757,-0.9221547842,-0.9222891927,-0.9221547842,-0.9218859673,-0.9217515588,-0.9213483334,-0.9209451079,-0.9210795164,-0.9216171503,-0.9221547842,-0.9226924181,-0.9236332774,-0.9241709113,-0.9233644605,-0.9220203757,-0.9213483334,-0.9210795164,-0.920676291,-0.920407474,-0.920676291,-0.9213483334,-0.9220203757,-0.9220203757,-0.9217515588,-0.9216171503,-0.9218859673,-0.9220203757,-0.9217515588,-0.9214827418,-0.9216171503,-0.9220203757,-0.9224236012,-0.9225580096,-0.9225580096,-0.9222891927,-0.9221547842,-0.9222891927,-0.9221547842,-0.9221547842,-0.9224236012,-0.922961235,-0.9230956435,-0.9230956435,-0.9230956435,-0.923230052,-0.9236332774,-0.9240365028,-0.9244397879,-0.9247086048,-0.9247086048,-0.9248430729,-0.9249774814,-0.9248430729,-0.9247086048,-0.9248430729,-0.9245741963,-0.9236332774,-0.9224236012,-0.9212139249,-0.9208106995,-0.9214827418,-0.9225580096,-0.922961235,-0.9237676859,-0.9251118898,-0.9252462983,-0.9233644605,-0.9230956435,-0.9255151153,-0.9269936085,-0.9256495237,-0.923230052,-0.9220203757,-0.9212139249,-0.9182568789,-0.9158375263,-0.917719245,-0.9213483334,-0.9234988689,-0.9247086048,-0.9245741963,-0.923230052,-0.9214827418,-0.9201386571,-0.920407474,-0.9221547842,-0.9234988689,-0.9236332774,-0.923230052,-0.9220203757,-0.9212139249,-0.923230052,-0.9276656508,-0.9295474291,-0.9299506545,-0.9303538799,-0.9302194715,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.930085063],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9292786121,-0.9279344678,-0.9294130206,-0.9294130206,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.929816246,-0.9299506545,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9302194715,-0.929816246,-0.9290097952,-0.9267247915,-0.9230956435,-0.9224236012,-0.9240365028,-0.9252462983,-0.9248430729,-0.9236332774,-0.9233644605,-0.9240365028,-0.9236332774,-0.9221547842,-0.9218859673,-0.9249774814,-0.9267247915,-0.923230052,-0.9170472026,-0.9134180546,-0.9144933224,-0.9179880619,-0.920407474,-0.9210795164,-0.9222891927,-0.9249774814,-0.9260527492,-0.9249774814,-0.9244397879,-0.9248430729,-0.9243053794,-0.9224236012,-0.9205418825,-0.9198697805,-0.9196009636,-0.9185256958,-0.9179880619,-0.9198697805,-0.9226924181,-0.9237676859,-0.922961235,-0.9228268266,-0.9243053794,-0.9256495237,-0.9260527492,-0.9249774814,-0.922961235,-0.9218859673,-0.9220203757,-0.9225580096,-0.922961235,-0.9230956435,-0.922961235,-0.9228268266,-0.9228268266,-0.922961235,-0.9228268266,-0.9224236012,-0.9221547842,-0.9224236012,-0.9225580096,-0.9225580096,-0.9224236012,-0.9222891927,-0.9221547842,-0.9222891927,-0.9221547842,-0.9220203757,-0.9217515588,-0.9216171503,-0.9217515588,-0.9221547842,-0.9222891927,-0.9221547842,-0.9220203757,-0.9218859673,-0.9217515588,-0.9213483334,-0.9210795164,-0.9214827418,-0.9218859673,-0.9218859673,-0.9221547842,-0.9225580096,-0.923230052,-0.9233644605,-0.9220203757,-0.920676291,-0.920676291,-0.9208106995,-0.920407474,-0.9205418825,-0.9212139249,-0.9220203757,-0.9220203757,-0.9216171503,-0.9213483334,-0.9216171503,-0.9218859673,-0.9216171503,-0.9213483334,-0.9216171503,-0.9221547842,-0.9226924181,-0.9228268266,-0.9226924181,-0.9224236012,-0.9225580096,-0.9226924181,-0.9225580096,-0.9224236012,-0.9224236012,-0.922961235,-0.923230052,-0.9228268266,-0.9226924181,-0.9234988689,-0.9244397879,-0.9248430729,-0.9251118898,-0.9257839322,-0.9256495237,-0.9245741963,-0.9237676859,-0.9234988689,-0.9233644605,-0.9233644605,-0.9237676859,-0.9239020944,-0.9234988689,-0.9225580096,-0.9212139249,-0.9194665551,-0.9191977382,-0.9214827418,-0.9240365028,-0.9253807068,-0.9264559746,-0.9263215661,-0.9239020944,-0.9234988689,-0.9256495237,-0.9264559746,-0.9244397879,-0.9220203757,-0.9214827418,-0.9212139249,-0.9189289212,-0.9173160195,-0.9200042486,-0.9233644605,-0.9245741963,-0.9249774814,-0.9245741963,-0.9226924181,-0.9205418825,-0.9197353721,-0.9210795164,-0.9228268266,-0.9233644605,-0.9230956435,-0.9226924181,-0.9216171503,-0.9224236012,-0.9265903831,-0.9299506545,-0.929816246,-0.9303538799,-0.9304882884,-0.9304882884,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.9302194715,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9302194715,-0.930085063,-0.9302194715,-0.9304882884,-0.9302194715,-0.9299506545,-0.929816246,-0.9302194715,-0.9304882884,-0.9303538799,-0.9302194715],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9291442037,-0.9287409782,-0.9296818376,-0.9296818376,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9299506545,-0.9286065698,-0.9253807068,-0.9226924181,-0.9233644605,-0.9248430729,-0.9251118898,-0.9247086048,-0.9245741963,-0.9241709113,-0.922961235,-0.9213483334,-0.9208106995,-0.9225580096,-0.9251118898,-0.9251118898,-0.9216171503,-0.9175848365,-0.9158375263,-0.9163751602,-0.9185256958,-0.920676291,-0.9222891927,-0.9245741963,-0.9263215661,-0.9255151153,-0.9241709113,-0.9244397879,-0.9244397879,-0.923230052,-0.9217515588,-0.9212139249,-0.9213483334,-0.9214827418,-0.9210795164,-0.9214827418,-0.9225580096,-0.9230956435,-0.9228268266,-0.9225580096,-0.9234988689,-0.9251118898,-0.9261871576,-0.9265903831,-0.9264559746,-0.9253807068,-0.9237676859,-0.9225580096,-0.9221547842,-0.9222891927,-0.9226924181,-0.9228268266,-0.9225580096,-0.9226924181,-0.922961235,-0.9228268266,-0.9224236012,-0.9224236012,-0.9224236012,-0.9221547842,-0.9221547842,-0.9221547842,-0.9220203757,-0.9221547842,-0.9222891927,-0.9221547842,-0.9218859673,-0.9217515588,-0.9217515588,-0.9217515588,-0.9220203757,-0.9221547842,-0.9218859673,-0.9217515588,-0.9218859673,-0.9217515588,-0.9213483334,-0.9210795164,-0.9216171503,-0.9221547842,-0.9218859673,-0.9217515588,-0.9224236012,-0.922961235,-0.9225580096,-0.9214827418,-0.9209451079,-0.9210795164,-0.9210795164,-0.9208106995,-0.9208106995,-0.9213483334,-0.9217515588,-0.9218859673,-0.9217515588,-0.9216171503,-0.9218859673,-0.9218859673,-0.9214827418,-0.9213483334,-0.9217515588,-0.9224236012,-0.9226924181,-0.9228268266,-0.9226924181,-0.9225580096,-0.9224236012,-0.9225580096,-0.9226924181,-0.9226924181,-0.9226924181,-0.9228268266,-0.9233644605,-0.923230052,-0.9222891927,-0.922961235,-0.9248430729,-0.9260527492,-0.9256495237,-0.9245741963,-0.9237676859,-0.922961235,-0.9225580096,-0.9228268266,-0.9230956435,-0.9228268266,-0.9222891927,-0.9221547842,-0.9221547842,-0.9224236012,-0.9225580096,-0.9212139249,-0.9187945127,-0.9182568789,-0.9213483334,-0.9244397879,-0.9256495237,-0.9261871576,-0.9252462983,-0.9233644605,-0.9240365028,-0.9260527492,-0.9257839322,-0.9233644605,-0.9214827418,-0.9214827418,-0.9214827418,-0.9187945127,-0.9166439772,-0.9197353721,-0.9240365028,-0.9253807068,-0.9251118898,-0.9236332774,-0.9209451079,-0.9190633297,-0.9200042486,-0.9221547842,-0.922961235,-0.9234988689,-0.9241709113,-0.922961235,-0.9218859673,-0.9252462983,-0.9302194715,-0.9295474291,-0.9304882884,-0.9304882884,-0.9304882884,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9302194715,-0.9299506545,-0.929816246,-0.930085063,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9299506545,-0.930085063,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9302194715,-0.930085063,-0.9302194715,-0.930085063,-0.929816246,-0.929816246,-0.9302194715,-0.9303538799,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9290097952,-0.9291442037,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9299506545,-0.930085063,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9302194715,-0.9299506545,-0.9282032847,-0.9244397879,-0.9220203757,-0.923230052,-0.9249774814,-0.9252462983,-0.9248430729,-0.9251118898,-0.9245741963,-0.9224236012,-0.9209451079,-0.9213483334,-0.9228268266,-0.9241709113,-0.9241709113,-0.9224236012,-0.9198697805,-0.9181224704,-0.9185256958,-0.9198697805,-0.9212139249,-0.9233644605,-0.9260527492,-0.9271280169,-0.9261871576,-0.9249774814,-0.9243053794,-0.923230052,-0.9222891927,-0.9220203757,-0.9224236012,-0.9228268266,-0.9230956435,-0.922961235,-0.9230956435,-0.9233644605,-0.923230052,-0.9230956435,-0.9230956435,-0.9234988689,-0.9241709113,-0.9249774814,-0.9257839322,-0.9261871576,-0.9251118898,-0.9237676859,-0.922961235,-0.9226924181,-0.9224236012,-0.9224236012,-0.9224236012,-0.9222891927,-0.9224236012,-0.9228268266,-0.9228268266,-0.9225580096,-0.9224236012,-0.9224236012,-0.9222891927,-0.9221547842,-0.9221547842,-0.9220203757,-0.9218859673,-0.9220203757,-0.9220203757,-0.9218859673,-0.9218859673,-0.9216171503,-0.9214827418,-0.9217515588,-0.9218859673,-0.9216171503,-0.9213483334,-0.9216171503,-0.9217515588,-0.9213483334,-0.9212139249,-0.9216171503,-0.9220203757,-0.9218859673,-0.9220203757,-0.9224236012,-0.9226924181,-0.9222891927,-0.9216171503,-0.9213483334,-0.9212139249,-0.9210795164,-0.9209451079,-0.9209451079,-0.9213483334,-0.9217515588,-0.9220203757,-0.9220203757,-0.9218859673,-0.9220203757,-0.9220203757,-0.9217515588,-0.9216171503,-0.9220203757,-0.9225580096,-0.9225580096,-0.9225580096,-0.9226924181,-0.9226924181,-0.9224236012,-0.9222891927,-0.9224236012,-0.9228268266,-0.922961235,-0.922961235,-0.922961235,-0.9221547842,-0.9209451079,-0.9217515588,-0.9228268266,-0.9234988689,-0.9230956435,-0.9226924181,-0.923230052,-0.9237676859,-0.9243053794,-0.9248430729,-0.9245741963,-0.9236332774,-0.9222891927,-0.9218859673,-0.9222891927,-0.922961235,-0.9233644605,-0.9234988689,-0.9220203757,-0.9187945127,-0.9181224704,-0.9214827418,-0.9251118898,-0.9264559746,-0.9267247915,-0.9255151153,-0.9243053794,-0.9251118898,-0.9261871576,-0.9248430729,-0.9224236012,-0.9214827418,-0.9216171503,-0.9193321466,-0.9143589139,-0.9139556885,-0.9197353721,-0.9248430729,-0.9253807068,-0.9241709113,-0.9220203757,-0.9196009636,-0.9193321466,-0.9212139249,-0.9228268266,-0.9233644605,-0.9240365028,-0.923230052,-0.9217515588,-0.9240365028,-0.9291442037,-0.9295474291,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.9303538799,-0.929816246,-0.9296818376,-0.9296818376,-0.929816246,-0.9302194715,-0.9303538799],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9282032847,-0.9291442037,-0.9295474291,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.930085063,-0.929816246,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.930085063,-0.930085063,-0.9278000593,-0.9236332774,-0.9213483334,-0.9224236012,-0.9244397879,-0.9248430729,-0.9244397879,-0.9241709113,-0.9234988689,-0.9222891927,-0.9214827418,-0.9218859673,-0.9228268266,-0.9241709113,-0.9244397879,-0.9220203757,-0.9186601043,-0.9179880619,-0.9196009636,-0.9201386571,-0.9210795164,-0.9241709113,-0.9271280169,-0.9272624254,-0.9256495237,-0.9241709113,-0.923230052,-0.9226924181,-0.9228268266,-0.922961235,-0.9230956435,-0.9233644605,-0.9234988689,-0.9233644605,-0.923230052,-0.9230956435,-0.9230956435,-0.9233644605,-0.9234988689,-0.9236332774,-0.9244397879,-0.9252462983,-0.9256495237,-0.9249774814,-0.923230052,-0.9216171503,-0.9214827418,-0.9224236012,-0.9228268266,-0.9224236012,-0.9220203757,-0.9218859673,-0.9220203757,-0.9222891927,-0.9224236012,-0.9224236012,-0.9221547842,-0.9221547842,-0.9224236012,-0.9224236012,-0.9222891927,-0.9222891927,-0.9221547842,-0.9218859673,-0.9218859673,-0.9218859673,-0.9218859673,-0.9218859673,-0.9220203757,-0.9222891927,-0.9221547842,-0.9217515588,-0.9213483334,-0.9216171503,-0.9218859673,-0.9217515588,-0.9213483334,-0.9216171503,-0.9220203757,-0.9221547842,-0.9222891927,-0.9226924181,-0.9226924181,-0.9222891927,-0.9218859673,-0.9216171503,-0.9213483334,-0.9209451079,-0.9210795164,-0.9212139249,-0.9213483334,-0.9218859673,-0.9224236012,-0.9222891927,-0.9218859673,-0.9218859673,-0.9220203757,-0.9218859673,-0.9217515588,-0.9220203757,-0.9221547842,-0.9222891927,-0.9222891927,-0.9226924181,-0.9226924181,-0.9224236012,-0.9222891927,-0.9225580096,-0.922961235,-0.9230956435,-0.922961235,-0.9224236012,-0.9213483334,-0.9210795164,-0.9226924181,-0.9230956435,-0.9224236012,-0.923230052,-0.9245741963,-0.9255151153,-0.9259183407,-0.9257839322,-0.9257839322,-0.9252462983,-0.9244397879,-0.9239020944,-0.9236332774,-0.9236332774,-0.9237676859,-0.9239020944,-0.9241709113,-0.9240365028,-0.9220203757,-0.9197353721,-0.9205418825,-0.9233644605,-0.9255151153,-0.9271280169,-0.9273968339,-0.9259183407,-0.9248430729,-0.9256495237,-0.9256495237,-0.9233644605,-0.9216171503,-0.9214827418,-0.9205418825,-0.9159719348,-0.9116707444,-0.9142245054,-0.9217515588,-0.9256495237,-0.9247086048,-0.9224236012,-0.9198697805,-0.9189289212,-0.9205418825,-0.9226924181,-0.9236332774,-0.9239020944,-0.9230956435,-0.9216171503,-0.9230956435,-0.9278000593,-0.9296818376,-0.930085063,-0.9302194715,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9299506545,-0.9299506545,-0.9303538799,-0.9303538799,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.929816246,-0.929816246,-0.930085063,-0.929816246,-0.9302194715,-0.930085063],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9275312424,-0.9288753867,-0.9290097952,-0.929816246,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.929816246,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9304882884,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.929816246,-0.9299506545,-0.9268592,-0.9226924181,-0.9210795164,-0.9222891927,-0.9241709113,-0.9248430729,-0.9240365028,-0.923230052,-0.9226924181,-0.9220203757,-0.9214827418,-0.9217515588,-0.923230052,-0.9248430729,-0.9240365028,-0.920676291,-0.9187945127,-0.9198697805,-0.920407474,-0.9198697805,-0.9221547842,-0.9264559746,-0.9275312424,-0.9245741963,-0.9221547842,-0.9221547842,-0.922961235,-0.9233644605,-0.9234988689,-0.9234988689,-0.923230052,-0.923230052,-0.9234988689,-0.9234988689,-0.923230052,-0.9230956435,-0.923230052,-0.923230052,-0.9233644605,-0.9234988689,-0.9240365028,-0.9248430729,-0.9252462983,-0.9244397879,-0.9228268266,-0.9214827418,-0.9212139249,-0.9221547842,-0.9228268266,-0.9226924181,-0.9222891927,-0.9218859673,-0.9217515588,-0.9217515588,-0.9220203757,-0.9221547842,-0.9221547842,-0.9224236012,-0.9226924181,-0.9224236012,-0.9220203757,-0.9221547842,-0.9221547842,-0.9217515588,-0.9214827418,-0.9217515588,-0.9220203757,-0.9224236012,-0.9224236012,-0.9224236012,-0.9222891927,-0.9218859673,-0.9216171503,-0.9217515588,-0.9221547842,-0.9220203757,-0.9216171503,-0.9217515588,-0.9222891927,-0.9224236012,-0.9221547842,-0.9222891927,-0.9225580096,-0.9222891927,-0.9218859673,-0.9217515588,-0.9216171503,-0.9212139249,-0.9210795164,-0.9213483334,-0.9216171503,-0.9222891927,-0.9226924181,-0.9224236012,-0.9220203757,-0.9220203757,-0.9220203757,-0.9217515588,-0.9216171503,-0.9217515588,-0.9218859673,-0.9220203757,-0.9222891927,-0.9226924181,-0.9228268266,-0.9225580096,-0.9225580096,-0.9226924181,-0.9226924181,-0.9225580096,-0.9225580096,-0.9226924181,-0.9228268266,-0.923230052,-0.9239020944,-0.9241709113,-0.9236332774,-0.9237676859,-0.9256495237,-0.9273968339,-0.9271280169,-0.9259183407,-0.9251118898,-0.9249774814,-0.9247086048,-0.9245741963,-0.9244397879,-0.9240365028,-0.9239020944,-0.9240365028,-0.9241709113,-0.9241709113,-0.9236332774,-0.922961235,-0.9230956435,-0.9236332774,-0.9234988689,-0.9243053794,-0.9265903831,-0.9271280169,-0.9255151153,-0.9253807068,-0.9263215661,-0.9253807068,-0.9226924181,-0.9213483334,-0.9213483334,-0.9196009636,-0.9151654243,-0.9134180546,-0.9185256958,-0.9243053794,-0.9251118898,-0.9225580096,-0.9198697805,-0.9189289212,-0.920407474,-0.9224236012,-0.923230052,-0.9234988689,-0.9230956435,-0.9217515588,-0.9221547842,-0.9264559746,-0.929816246,-0.929816246,-0.9304882884,-0.9306226969,-0.9304882884,-0.9303538799,-0.9304882884,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9304882884,-0.9304882884,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.929816246,-0.929816246,-0.9299506545,-0.9302194715,-0.9303538799,-0.9303538799,-0.9299506545],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.9269936085,-0.930085063,-0.9290097952,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.930085063,-0.9303538799,-0.930085063,-0.9299506545,-0.930085063,-0.9303538799,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9302194715,-0.930085063,-0.9299506545,-0.9295474291,-0.9253807068,-0.9218859673,-0.9213483334,-0.9225580096,-0.9243053794,-0.9251118898,-0.9239020944,-0.9220203757,-0.9216171503,-0.9218859673,-0.9216171503,-0.9221547842,-0.9243053794,-0.9252462983,-0.9230956435,-0.9205418825,-0.9201386571,-0.9205418825,-0.9202730656,-0.9216171503,-0.9257839322,-0.9284721017,-0.9251118898,-0.9194665551,-0.9186601043,-0.9218859673,-0.9237676859,-0.923230052,-0.9230956435,-0.9233644605,-0.923230052,-0.9230956435,-0.923230052,-0.9233644605,-0.9233644605,-0.9233644605,-0.9234988689,-0.9233644605,-0.9236332774,-0.9236332774,-0.923230052,-0.9240365028,-0.9257839322,-0.9261871576,-0.9245741963,-0.922961235,-0.9222891927,-0.9222891927,-0.9226924181,-0.9228268266,-0.9226924181,-0.9224236012,-0.9221547842,-0.9220203757,-0.9220203757,-0.9218859673,-0.9218859673,-0.9221547842,-0.9222891927,-0.9218859673,-0.9216171503,-0.9217515588,-0.9218859673,-0.9216171503,-0.9216171503,-0.9218859673,-0.9221547842,-0.9222891927,-0.9221547842,-0.9218859673,-0.9218859673,-0.9220203757,-0.9218859673,-0.9220203757,-0.9221547842,-0.9218859673,-0.9216171503,-0.9217515588,-0.9221547842,-0.9222891927,-0.9220203757,-0.9220203757,-0.9222891927,-0.9222891927,-0.9220203757,-0.9217515588,-0.9216171503,-0.9213483334,-0.9212139249,-0.9214827418,-0.9217515588,-0.9221547842,-0.9225580096,-0.9224236012,-0.9220203757,-0.9220203757,-0.9221547842,-0.9220203757,-0.9218859673,-0.9218859673,-0.9218859673,-0.9220203757,-0.9222891927,-0.9226924181,-0.9228268266,-0.9226924181,-0.9228268266,-0.9226924181,-0.9224236012,-0.9222891927,-0.9224236012,-0.9228268266,-0.9230956435,-0.9230956435,-0.9230956435,-0.922961235,-0.9225580096,-0.9225580096,-0.9243053794,-0.9267247915,-0.9272624254,-0.9261871576,-0.9252462983,-0.9249774814,-0.9247086048,-0.9244397879,-0.9243053794,-0.9240365028,-0.9239020944,-0.9241709113,-0.9241709113,-0.9241709113,-0.9240365028,-0.9241709113,-0.9243053794,-0.9241709113,-0.9236332774,-0.923230052,-0.9245741963,-0.9263215661,-0.9267247915,-0.9264559746,-0.9269936085,-0.9271280169,-0.9247086048,-0.9220203757,-0.9212139249,-0.9210795164,-0.9187945127,-0.9163751602,-0.9179880619,-0.9225580096,-0.9248430729,-0.9233644605,-0.9208106995,-0.9191977382,-0.9202730656,-0.9225580096,-0.9236332774,-0.9233644605,-0.9228268266,-0.9213483334,-0.9212139249,-0.9251118898,-0.9290097952,-0.929816246,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.930085063],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9303538799,-0.9282032847,-0.9299506545,-0.9292786121,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.930085063,-0.930085063,-0.9296818376,-0.929816246,-0.9295474291,-0.929816246,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9304882884,-0.930085063,-0.930085063,-0.9294130206,-0.9292786121,-0.9241709113,-0.9214827418,-0.9218859673,-0.922961235,-0.9244397879,-0.9253807068,-0.9239020944,-0.9217515588,-0.9216171503,-0.9218859673,-0.9218859673,-0.9233644605,-0.9252462983,-0.9245741963,-0.9220203757,-0.9209451079,-0.9208106995,-0.9201386571,-0.9213483334,-0.9248430729,-0.9279344678,-0.9276656508,-0.9228268266,-0.9181224704,-0.9193321466,-0.923230052,-0.9239020944,-0.9228268266,-0.9230956435,-0.9234988689,-0.9233644605,-0.9233644605,-0.9230956435,-0.922961235,-0.923230052,-0.9233644605,-0.9233644605,-0.923230052,-0.9234988689,-0.9234988689,-0.922961235,-0.9234988689,-0.9259183407,-0.9271280169,-0.9257839322,-0.9237676859,-0.9230956435,-0.922961235,-0.9226924181,-0.9225580096,-0.9225580096,-0.9226924181,-0.9226924181,-0.9225580096,-0.9222891927,-0.9218859673,-0.9217515588,-0.9220203757,-0.9220203757,-0.9216171503,-0.9216171503,-0.9220203757,-0.9220203757,-0.9217515588,-0.9216171503,-0.9218859673,-0.9220203757,-0.9218859673,-0.9217515588,-0.9217515588,-0.9218859673,-0.9221547842,-0.9221547842,-0.9221547842,-0.9221547842,-0.9220203757,-0.9216171503,-0.9217515588,-0.9222891927,-0.9225580096,-0.9224236012,-0.9221547842,-0.9222891927,-0.9222891927,-0.9220203757,-0.9220203757,-0.9217515588,-0.9214827418,-0.9214827418,-0.9217515588,-0.9218859673,-0.9220203757,-0.9222891927,-0.9222891927,-0.9218859673,-0.9217515588,-0.9221547842,-0.9222891927,-0.9220203757,-0.9218859673,-0.9220203757,-0.9221547842,-0.9221547842,-0.9224236012,-0.9224236012,-0.9221547842,-0.9222891927,-0.9224236012,-0.9218859673,-0.9216171503,-0.9221547842,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.9228268266,-0.922961235,-0.9236332774,-0.9248430729,-0.9260527492,-0.9261871576,-0.9256495237,-0.9251118898,-0.9247086048,-0.9243053794,-0.9241709113,-0.9240365028,-0.9240365028,-0.9240365028,-0.9241709113,-0.9240365028,-0.9240365028,-0.9240365028,-0.9240365028,-0.9239020944,-0.9241709113,-0.9243053794,-0.9234988689,-0.9236332774,-0.9256495237,-0.9271280169,-0.9271280169,-0.9269936085,-0.9260527492,-0.9236332774,-0.9218859673,-0.9212139249,-0.9205418825,-0.9193321466,-0.9193321466,-0.9213483334,-0.9240365028,-0.9248430729,-0.9225580096,-0.9197353721,-0.9196009636,-0.9221547842,-0.9234988689,-0.922961235,-0.9221547842,-0.9209451079,-0.920676291,-0.9241709113,-0.9284721017,-0.929816246,-0.930085063,-0.9302194715,-0.930085063,-0.9302194715,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9299506545,-0.9299506545,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.930085063],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9302194715,-0.9286065698,-0.929816246,-0.929816246,-0.929816246,-0.929816246,-0.9302194715,-0.9302194715,-0.9299506545,-0.9296818376,-0.9295474291,-0.9299506545,-0.930085063,-0.9302194715,-0.9304882884,-0.9303538799,-0.930085063,-0.930085063,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9299506545,-0.9302194715,-0.9303538799,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.9292786121,-0.9290097952,-0.9236332774,-0.9212139249,-0.9220203757,-0.9230956435,-0.9245741963,-0.9251118898,-0.9230956435,-0.9216171503,-0.9224236012,-0.9225580096,-0.9228268266,-0.9247086048,-0.9251118898,-0.9228268266,-0.9209451079,-0.9210795164,-0.9212139249,-0.9212139249,-0.9237676859,-0.9272624254,-0.9283376932,-0.9267247915,-0.9234988689,-0.9213483334,-0.9224236012,-0.9239020944,-0.9233644605,-0.9228268266,-0.923230052,-0.9233644605,-0.9230956435,-0.9230956435,-0.9228268266,-0.922961235,-0.9230956435,-0.9230956435,-0.923230052,-0.9233644605,-0.9234988689,-0.9234988689,-0.922961235,-0.923230052,-0.9252462983,-0.9260527492,-0.9241709113,-0.9225580096,-0.9228268266,-0.9228268266,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9226924181,-0.9226924181,-0.9221547842,-0.9217515588,-0.9217515588,-0.9218859673,-0.9220203757,-0.9221547842,-0.9222891927,-0.9222891927,-0.9222891927,-0.9221547842,-0.9218859673,-0.9217515588,-0.9218859673,-0.9218859673,-0.9218859673,-0.9222891927,-0.9224236012,-0.9222891927,-0.9221547842,-0.9220203757,-0.9221547842,-0.9220203757,-0.9216171503,-0.9222891927,-0.922961235,-0.9224236012,-0.9225580096,-0.9245741963,-0.9252462983,-0.9234988689,-0.9221547842,-0.9221547842,-0.9222891927,-0.9218859673,-0.9216171503,-0.9218859673,-0.9218859673,-0.9218859673,-0.9221547842,-0.9222891927,-0.9217515588,-0.9217515588,-0.9221547842,-0.9224236012,-0.9218859673,-0.9217515588,-0.9220203757,-0.9222891927,-0.9221547842,-0.9221547842,-0.9221547842,-0.9220203757,-0.9218859673,-0.9220203757,-0.9217515588,-0.9213483334,-0.9220203757,-0.9230956435,-0.9230956435,-0.9225580096,-0.9226924181,-0.9230956435,-0.9233644605,-0.923230052,-0.9236332774,-0.9247086048,-0.9257839322,-0.9261871576,-0.9257839322,-0.9249774814,-0.9245741963,-0.9245741963,-0.9245741963,-0.9243053794,-0.9240365028,-0.9239020944,-0.9239020944,-0.9237676859,-0.9236332774,-0.9239020944,-0.9240365028,-0.9239020944,-0.9239020944,-0.9247086048,-0.9239020944,-0.9216171503,-0.9226924181,-0.9260527492,-0.9271280169,-0.9267247915,-0.9267247915,-0.9252462983,-0.9226924181,-0.9213483334,-0.9208106995,-0.9202730656,-0.9201386571,-0.9209451079,-0.922961235,-0.9245741963,-0.9234988689,-0.920676291,-0.9198697805,-0.9217515588,-0.923230052,-0.9230956435,-0.9226924181,-0.9216171503,-0.920676291,-0.9234988689,-0.9283376932,-0.929816246,-0.9299506545,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9302194715,-0.9299506545,-0.9302194715,-0.9303538799,-0.9302194715,-0.9299506545,-0.929816246,-0.9299506545,-0.930085063,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9302194715,-0.9292786121,-0.930085063,-0.9303538799,-0.9302194715,-0.9299506545,-0.9299506545,-0.930085063,-0.9299506545,-0.929816246,-0.9296818376,-0.9302194715,-0.9303538799,-0.930085063,-0.9299506545,-0.929816246,-0.9296818376,-0.9299506545,-0.9303538799,-0.9302194715,-0.9303538799,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.930085063,-0.929816246,-0.9302194715,-0.9295474291,-0.9276656508,-0.922961235,-0.9213483334,-0.9222891927,-0.9236332774,-0.9249774814,-0.9245741963,-0.9220203757,-0.9212139249,-0.922961235,-0.9240365028,-0.9243053794,-0.9245741963,-0.9234988689,-0.9213483334,-0.9208106995,-0.9213483334,-0.9218859673,-0.9236332774,-0.9259183407,-0.9273968339,-0.9278000593,-0.9265903831,-0.9243053794,-0.923230052,-0.9236332774,-0.9239020944,-0.923230052,-0.9228268266,-0.9230956435,-0.9233644605,-0.9230956435,-0.9226924181,-0.9225580096,-0.9228268266,-0.9230956435,-0.923230052,-0.9230956435,-0.922961235,-0.923230052,-0.9234988689,-0.9230956435,-0.923230052,-0.9249774814,-0.9259183407,-0.9241709113,-0.9224236012,-0.9226924181,-0.9236332774,-0.9230956435,-0.9225580096,-0.9222891927,-0.9222891927,-0.9225580096,-0.9225580096,-0.9221547842,-0.9220203757,-0.9220203757,-0.9218859673,-0.9218859673,-0.9221547842,-0.9222891927,-0.9222891927,-0.9222891927,-0.9222891927,-0.9221547842,-0.9218859673,-0.9218859673,-0.9218859673,-0.9220203757,-0.9222891927,-0.9222891927,-0.9220203757,-0.9220203757,-0.9218859673,-0.9217515588,-0.9218859673,-0.9216171503,-0.9220203757,-0.9230956435,-0.9221547842,-0.9222891927,-0.9259183407,-0.9267247915,-0.9260527492,-0.9221547842,-0.9218859673,-0.9224236012,-0.9217515588,-0.9217515588,-0.9220203757,-0.9218859673,-0.9217515588,-0.9220203757,-0.9221547842,-0.9220203757,-0.9218859673,-0.9220203757,-0.9222891927,-0.9221547842,-0.9217515588,-0.9217515588,-0.9221547842,-0.9221547842,-0.9218859673,-0.9220203757,-0.9221547842,-0.9218859673,-0.9220203757,-0.9224236012,-0.9224236012,-0.9225580096,-0.922961235,-0.922961235,-0.9224236012,-0.9225580096,-0.9230956435,-0.9234988689,-0.9239020944,-0.9233644605,-0.9224236012,-0.9233644605,-0.9253807068,-0.9259183407,-0.9249774814,-0.9249774814,-0.9259183407,-0.9257839322,-0.9243053794,-0.9234988689,-0.9237676859,-0.9240365028,-0.9237676859,-0.9234988689,-0.9236332774,-0.9239020944,-0.9240365028,-0.9237676859,-0.9241709113,-0.9243053794,-0.9222891927,-0.9209451079,-0.9237676859,-0.9267247915,-0.9272624254,-0.9275312424,-0.9268592,-0.9236332774,-0.9210795164,-0.9201386571,-0.9197353721,-0.9202730656,-0.9214827418,-0.9222891927,-0.9226924181,-0.9228268266,-0.9217515588,-0.9208106995,-0.9214827418,-0.9228268266,-0.9233644605,-0.9234988689,-0.9225580096,-0.9210795164,-0.9230956435,-0.9280688763,-0.9294130206,-0.9299506545,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.9299506545,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.929816246,-0.9299506545,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9299506545,-0.9299506545,-0.9302194715,-0.9302194715,-0.9299506545,-0.9296818376,-0.929816246,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.9299506545],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9299506545,-0.9291442037,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.9299506545,-0.9296818376,-0.930085063,-0.9303538799,-0.9303538799,-0.930085063,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.929816246,-0.9295474291,-0.9302194715,-0.9288753867,-0.9260527492,-0.9221547842,-0.9218859673,-0.9230956435,-0.9243053794,-0.9256495237,-0.9245741963,-0.9214827418,-0.9210795164,-0.9234988689,-0.9249774814,-0.9247086048,-0.9237676859,-0.9221547842,-0.9212139249,-0.9212139249,-0.9216171503,-0.9230956435,-0.9259183407,-0.9273968339,-0.9271280169,-0.9268592,-0.9260527492,-0.9241709113,-0.9233644605,-0.9236332774,-0.9237676859,-0.9233644605,-0.9230956435,-0.9230956435,-0.923230052,-0.9230956435,-0.9226924181,-0.9225580096,-0.9228268266,-0.922961235,-0.9226924181,-0.922961235,-0.923230052,-0.923230052,-0.9233644605,-0.923230052,-0.9234988689,-0.9249774814,-0.9257839322,-0.9244397879,-0.9224236012,-0.9214827418,-0.9217515588,-0.9224236012,-0.9225580096,-0.9222891927,-0.9221547842,-0.9224236012,-0.9225580096,-0.9224236012,-0.9222891927,-0.9221547842,-0.9218859673,-0.9220203757,-0.9222891927,-0.9222891927,-0.9221547842,-0.9221547842,-0.9221547842,-0.9221547842,-0.9220203757,-0.9216171503,-0.9216171503,-0.9217515588,-0.9218859673,-0.9218859673,-0.9218859673,-0.9220203757,-0.9220203757,-0.9217515588,-0.9218859673,-0.9220203757,-0.9218859673,-0.9224236012,-0.9225580096,-0.9221547842,-0.9236332774,-0.9241709113,-0.9261871576,-0.9225580096,-0.9218859673,-0.9224236012,-0.9220203757,-0.9218859673,-0.9220203757,-0.9217515588,-0.9217515588,-0.9220203757,-0.9221547842,-0.9220203757,-0.9218859673,-0.9218859673,-0.9221547842,-0.9221547842,-0.9218859673,-0.9218859673,-0.9221547842,-0.9221547842,-0.9218859673,-0.9220203757,-0.9222891927,-0.9221547842,-0.9220203757,-0.9222891927,-0.9228268266,-0.9228268266,-0.9225580096,-0.9222891927,-0.9220203757,-0.9220203757,-0.9225580096,-0.9230956435,-0.9236332774,-0.922961235,-0.9202730656,-0.920676291,-0.9237676859,-0.9253807068,-0.9249774814,-0.9244397879,-0.9253807068,-0.9257839322,-0.9245741963,-0.9236332774,-0.9237676859,-0.9240365028,-0.9239020944,-0.9236332774,-0.9233644605,-0.9234988689,-0.9237676859,-0.9239020944,-0.9236332774,-0.9240365028,-0.9236332774,-0.9216171503,-0.9217515588,-0.9244397879,-0.9264559746,-0.9273968339,-0.9278000593,-0.9260527492,-0.9224236012,-0.920407474,-0.9198697805,-0.920407474,-0.9220203757,-0.9225580096,-0.9216171503,-0.9216171503,-0.9221547842,-0.9214827418,-0.9212139249,-0.9224236012,-0.923230052,-0.923230052,-0.9224236012,-0.9210795164,-0.9225580096,-0.9278000593,-0.9292786121,-0.9299506545,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.9296818376,-0.9296818376,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.930085063,-0.9302194715,-0.9304882884,-0.9304882884,-0.9303538799,-0.9299506545,-0.929816246,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.9303538799,-0.9303538799,-0.9302194715,-0.9299506545,-0.9303538799,-0.9302194715,-0.9299506545,-0.929816246,-0.9299506545,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.930085063],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9290097952,-0.9283376932,-0.9296818376,-0.929816246,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.929816246,-0.9299506545,-0.9299506545,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9299506545,-0.9295474291,-0.9296818376,-0.9299506545,-0.9282032847,-0.9249774814,-0.9220203757,-0.9221547842,-0.923230052,-0.9244397879,-0.9255151153,-0.9244397879,-0.9213483334,-0.9205418825,-0.9230956435,-0.9248430729,-0.9243053794,-0.922961235,-0.9218859673,-0.9210795164,-0.920676291,-0.9216171503,-0.9243053794,-0.9273968339,-0.9282032847,-0.9275312424,-0.9264559746,-0.9249774814,-0.9237676859,-0.9233644605,-0.9234988689,-0.9233644605,-0.923230052,-0.923230052,-0.922961235,-0.9226924181,-0.9226924181,-0.9226924181,-0.9225580096,-0.9228268266,-0.9228268266,-0.9228268266,-0.922961235,-0.923230052,-0.9234988689,-0.9233644605,-0.9230956435,-0.9237676859,-0.9255151153,-0.9255151153,-0.923230052,-0.9209451079,-0.920676291,-0.9216171503,-0.9220203757,-0.9220203757,-0.9220203757,-0.9220203757,-0.9218859673,-0.9218859673,-0.9221547842,-0.9220203757,-0.9217515588,-0.9216171503,-0.9218859673,-0.9224236012,-0.9224236012,-0.9221547842,-0.9221547842,-0.9221547842,-0.9221547842,-0.9221547842,-0.9220203757,-0.9216171503,-0.9214827418,-0.9217515588,-0.9220203757,-0.9218859673,-0.9218859673,-0.9220203757,-0.9221547842,-0.9221547842,-0.9221547842,-0.9220203757,-0.9222891927,-0.9225580096,-0.9222891927,-0.9222891927,-0.9230956435,-0.9237676859,-0.9226924181,-0.9221547842,-0.9222891927,-0.9222891927,-0.9220203757,-0.9220203757,-0.9218859673,-0.9218859673,-0.9220203757,-0.9220203757,-0.9220203757,-0.9218859673,-0.9217515588,-0.9217515588,-0.9220203757,-0.9220203757,-0.9220203757,-0.9218859673,-0.9220203757,-0.9220203757,-0.9220203757,-0.9224236012,-0.9224236012,-0.9220203757,-0.9218859673,-0.9224236012,-0.9226924181,-0.9221547842,-0.9218859673,-0.9218859673,-0.9220203757,-0.9224236012,-0.922961235,-0.923230052,-0.9233644605,-0.9226924181,-0.9225580096,-0.9237676859,-0.9248430729,-0.9253807068,-0.9249774814,-0.9249774814,-0.9251118898,-0.9247086048,-0.9241709113,-0.9237676859,-0.9240365028,-0.9241709113,-0.9236332774,-0.9230956435,-0.923230052,-0.9234988689,-0.9236332774,-0.9234988689,-0.9234988689,-0.9239020944,-0.9230956435,-0.9218859673,-0.9225580096,-0.9248430729,-0.9269936085,-0.9283376932,-0.9283376932,-0.9248430729,-0.9216171503,-0.9208106995,-0.9209451079,-0.9220203757,-0.9230956435,-0.9221547842,-0.9212139249,-0.9213483334,-0.9210795164,-0.9210795164,-0.9225580096,-0.9234988689,-0.922961235,-0.9218859673,-0.920676291,-0.9218859673,-0.9272624254,-0.9292786121,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9299506545,-0.930085063,-0.929816246,-0.9295474291,-0.9296818376,-0.9296818376,-0.9299506545,-0.9302194715,-0.9299506545,-0.9295474291,-0.9302194715,-0.9299506545,-0.929816246,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.930085063,-0.9299506545,-0.9303538799,-0.9304882884,-0.9299506545],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.9278000593,-0.9272624254,-0.9292786121,-0.9299506545,-0.930085063,-0.929816246,-0.9299506545,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.929816246,-0.9299506545,-0.930085063,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.930085063,-0.929816246,-0.9299506545,-0.9302194715,-0.930085063,-0.9296818376,-0.9294130206,-0.929816246,-0.9299506545,-0.9278000593,-0.9243053794,-0.9214827418,-0.9210795164,-0.9221547842,-0.9239020944,-0.9251118898,-0.9240365028,-0.9217515588,-0.9209451079,-0.9226924181,-0.9243053794,-0.9239020944,-0.9225580096,-0.9214827418,-0.9208106995,-0.9205418825,-0.9222891927,-0.9256495237,-0.9282032847,-0.9283376932,-0.9269936085,-0.9251118898,-0.9237676859,-0.9234988689,-0.9236332774,-0.9233644605,-0.923230052,-0.9234988689,-0.9236332774,-0.9230956435,-0.9225580096,-0.9224236012,-0.9224236012,-0.9225580096,-0.9225580096,-0.9226924181,-0.922961235,-0.9230956435,-0.9230956435,-0.9230956435,-0.9228268266,-0.9230956435,-0.9244397879,-0.9256495237,-0.9245741963,-0.9222891927,-0.9214827418,-0.9222891927,-0.922961235,-0.9226924181,-0.9222891927,-0.9220203757,-0.9217515588,-0.9216171503,-0.9214827418,-0.9217515588,-0.9220203757,-0.9220203757,-0.9217515588,-0.9217515588,-0.9221547842,-0.9224236012,-0.9222891927,-0.9221547842,-0.9222891927,-0.9222891927,-0.9220203757,-0.9217515588,-0.9213483334,-0.9212139249,-0.9217515588,-0.9221547842,-0.9220203757,-0.9217515588,-0.9220203757,-0.9221547842,-0.9220203757,-0.9217515588,-0.9217515588,-0.9218859673,-0.9221547842,-0.9224236012,-0.9224236012,-0.9225580096,-0.9225580096,-0.9222891927,-0.9220203757,-0.9221547842,-0.9221547842,-0.9221547842,-0.9220203757,-0.9218859673,-0.9218859673,-0.9220203757,-0.9220203757,-0.9218859673,-0.9218859673,-0.9217515588,-0.9217515588,-0.9218859673,-0.9218859673,-0.9217515588,-0.9217515588,-0.9221547842,-0.9222891927,-0.9220203757,-0.9218859673,-0.9221547842,-0.9221547842,-0.9218859673,-0.9220203757,-0.9221547842,-0.9222891927,-0.9221547842,-0.9222891927,-0.9220203757,-0.9217515588,-0.9218859673,-0.922961235,-0.9240365028,-0.9247086048,-0.9249774814,-0.9255151153,-0.9257839322,-0.9260527492,-0.9260527492,-0.9260527492,-0.9265903831,-0.9261871576,-0.9248430729,-0.9239020944,-0.9237676859,-0.9237676859,-0.9230956435,-0.9226924181,-0.922961235,-0.9233644605,-0.9233644605,-0.923230052,-0.9233644605,-0.9236332774,-0.9237676859,-0.9233644605,-0.9233644605,-0.9244397879,-0.9261871576,-0.9275312424,-0.9284721017,-0.9267247915,-0.922961235,-0.9210795164,-0.9212139249,-0.9216171503,-0.9224236012,-0.9226924181,-0.9220203757,-0.9208106995,-0.9198697805,-0.9202730656,-0.9221547842,-0.9236332774,-0.9233644605,-0.9222891927,-0.920676291,-0.9214827418,-0.9264559746,-0.9296818376,-0.930085063,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9299506545,-0.9296818376,-0.929816246,-0.9302194715,-0.9303538799,-0.929816246,-0.9291442037,-0.929816246,-0.9294130206,-0.9295474291,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.930085063,-0.929816246,-0.9299506545,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.9303538799,-0.9302194715,-0.9303538799,-0.929816246,-0.9294130206,-0.9303538799,-0.9304882884,-0.9292786121],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9299506545,-0.9296818376,-0.930085063,-0.9302194715,-0.930085063,-0.9299506545,-0.929816246,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.930085063,-0.9299506545,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.9303538799,-0.930085063,-0.9296818376,-0.929816246,-0.930085063,-0.9299506545,-0.9294130206,-0.9294130206,-0.929816246,-0.9296818376,-0.9267247915,-0.9226924181,-0.9201386571,-0.9196009636,-0.9209451079,-0.9234988689,-0.9247086048,-0.9239020944,-0.9224236012,-0.9216171503,-0.9224236012,-0.9237676859,-0.9236332774,-0.9221547842,-0.9210795164,-0.9205418825,-0.9212139249,-0.9239020944,-0.9271280169,-0.9284721017,-0.9273968339,-0.9253807068,-0.9239020944,-0.9236332774,-0.9239020944,-0.9237676859,-0.9233644605,-0.9233644605,-0.9236332774,-0.9233644605,-0.9230956435,-0.9228268266,-0.9225580096,-0.9224236012,-0.9225580096,-0.9225580096,-0.9226924181,-0.9228268266,-0.922961235,-0.9230956435,-0.923230052,-0.923230052,-0.9234988689,-0.9244397879,-0.9248430729,-0.9239020944,-0.9226924181,-0.9224236012,-0.9226924181,-0.9226924181,-0.9228268266,-0.9226924181,-0.9222891927,-0.9218859673,-0.9217515588,-0.9213483334,-0.9212139249,-0.9214827418,-0.9218859673,-0.9222891927,-0.9224236012,-0.9222891927,-0.9222891927,-0.9222891927,-0.9222891927,-0.9222891927,-0.9221547842,-0.9220203757,-0.9220203757,-0.9214827418,-0.9210795164,-0.9213483334,-0.9221547842,-0.9221547842,-0.9217515588,-0.9216171503,-0.9218859673,-0.9220203757,-0.9218859673,-0.9218859673,-0.9221547842,-0.9222891927,-0.9222891927,-0.9222891927,-0.9224236012,-0.9224236012,-0.9221547842,-0.9221547842,-0.9225580096,-0.9230956435,-0.9224236012,-0.9217515588,-0.9217515588,-0.9221547842,-0.9221547842,-0.9218859673,-0.9218859673,-0.9218859673,-0.9217515588,-0.9217515588,-0.9218859673,-0.9218859673,-0.9216171503,-0.9217515588,-0.9221547842,-0.9222891927,-0.9222891927,-0.9220203757,-0.9218859673,-0.9220203757,-0.9221547842,-0.9222891927,-0.9222891927,-0.9225580096,-0.9226924181,-0.9225580096,-0.9222891927,-0.9218859673,-0.9209451079,-0.9205418825,-0.9214827418,-0.923230052,-0.9240365028,-0.9248430729,-0.9261871576,-0.9265903831,-0.9256495237,-0.9240365028,-0.9233644605,-0.9244397879,-0.9247086048,-0.9241709113,-0.9236332774,-0.9233644605,-0.9228268266,-0.9226924181,-0.9230956435,-0.9233644605,-0.923230052,-0.9234988689,-0.9236332774,-0.9236332774,-0.9239020944,-0.9243053794,-0.9243053794,-0.9247086048,-0.9260527492,-0.9273968339,-0.9283376932,-0.9273968339,-0.9241709113,-0.9214827418,-0.9210795164,-0.9213483334,-0.9213483334,-0.9218859673,-0.9224236012,-0.9217515588,-0.9198697805,-0.9190633297,-0.9205418825,-0.9228268266,-0.9236332774,-0.9228268266,-0.9209451079,-0.9210795164,-0.9255151153,-0.929816246,-0.9299506545,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.929816246,-0.9299506545,-0.9304882884,-0.9304882884,-0.9302194715,-0.929816246,-0.929816246,-0.9299506545,-0.9295474291,-0.930085063,-0.930085063,-0.929816246,-0.930085063,-0.9299506545,-0.9296818376,-0.9299506545,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9303538799,-0.9302194715,-0.929816246,-0.930085063,-0.9303538799,-0.9304882884,-0.9302194715,-0.9299506545,-0.9302194715,-0.9302194715,-0.9294130206],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9294130206,-0.9290097952,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.930085063,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.930085063,-0.9299506545,-0.930085063,-0.9299506545,-0.9294130206,-0.9256495237,-0.9210795164,-0.9193321466,-0.9198697805,-0.9218859673,-0.9240365028,-0.9245741963,-0.9230956435,-0.9217515588,-0.9217515588,-0.9226924181,-0.9233644605,-0.9228268266,-0.9212139249,-0.9201386571,-0.9205418825,-0.9228268266,-0.9261871576,-0.9286065698,-0.9283376932,-0.9259183407,-0.9236332774,-0.922961235,-0.9237676859,-0.9241709113,-0.9239020944,-0.9233644605,-0.9230956435,-0.923230052,-0.923230052,-0.9230956435,-0.922961235,-0.9228268266,-0.9226924181,-0.9225580096,-0.9225580096,-0.9226924181,-0.9230956435,-0.923230052,-0.9233644605,-0.9236332774,-0.9234988689,-0.9236332774,-0.9244397879,-0.9251118898,-0.9249774814,-0.9241709113,-0.9236332774,-0.9230956435,-0.9228268266,-0.9226924181,-0.9224236012,-0.9220203757,-0.9220203757,-0.9218859673,-0.9216171503,-0.9214827418,-0.9217515588,-0.9216171503,-0.9213483334,-0.9213483334,-0.9217515588,-0.9221547842,-0.9224236012,-0.9224236012,-0.9224236012,-0.9220203757,-0.9218859673,-0.9220203757,-0.9218859673,-0.9212139249,-0.9212139249,-0.9218859673,-0.9220203757,-0.9218859673,-0.9216171503,-0.9217515588,-0.9218859673,-0.9220203757,-0.9220203757,-0.9222891927,-0.9222891927,-0.9222891927,-0.9221547842,-0.9221547842,-0.9221547842,-0.9218859673,-0.9217515588,-0.9222891927,-0.9228268266,-0.9224236012,-0.9218859673,-0.9220203757,-0.9222891927,-0.9221547842,-0.9218859673,-0.9220203757,-0.9218859673,-0.9217515588,-0.9217515588,-0.9216171503,-0.9214827418,-0.9213483334,-0.9217515588,-0.9220203757,-0.9221547842,-0.9221547842,-0.9222891927,-0.9221547842,-0.9222891927,-0.9225580096,-0.9226924181,-0.9225580096,-0.9226924181,-0.9226924181,-0.9225580096,-0.9225580096,-0.9225580096,-0.9220203757,-0.9212139249,-0.9210795164,-0.9217515588,-0.9218859673,-0.9221547842,-0.9240365028,-0.9260527492,-0.9257839322,-0.9239020944,-0.9217515588,-0.9217515588,-0.9230956435,-0.9239020944,-0.9236332774,-0.9230956435,-0.9228268266,-0.9228268266,-0.9233644605,-0.9236332774,-0.9234988689,-0.9236332774,-0.9237676859,-0.9236332774,-0.9237676859,-0.9245741963,-0.9245741963,-0.9247086048,-0.9264559746,-0.9284721017,-0.9287409782,-0.9280688763,-0.9260527492,-0.9230956435,-0.9213483334,-0.9212139249,-0.9210795164,-0.9212139249,-0.9222891927,-0.9226924181,-0.9216171503,-0.920407474,-0.920407474,-0.9220203757,-0.9233644605,-0.9228268266,-0.9209451079,-0.9209451079,-0.9247086048,-0.9290097952,-0.9299506545,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.929816246,-0.929816246,-0.9299506545,-0.9303538799,-0.9303538799,-0.9303538799,-0.930085063,-0.930085063,-0.9302194715,-0.9296818376,-0.930085063,-0.9302194715,-0.929816246,-0.9296818376,-0.9299506545,-0.929816246,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9304882884,-0.9303538799,-0.9302194715,-0.930085063,-0.929816246,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9303538799,-0.9303538799,-0.930085063],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9295474291,-0.9295474291,-0.9299506545,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9299506545,-0.9292786121,-0.9249774814,-0.9208106995,-0.9201386571,-0.9218859673,-0.9236332774,-0.9251118898,-0.9252462983,-0.9240365028,-0.9226924181,-0.9225580096,-0.9230956435,-0.922961235,-0.9216171503,-0.9202730656,-0.9197353721,-0.9212139249,-0.9245741963,-0.9278000593,-0.9288753867,-0.9278000593,-0.9253807068,-0.922961235,-0.9221547842,-0.9228268266,-0.9234988689,-0.9233644605,-0.922961235,-0.9226924181,-0.9225580096,-0.9226924181,-0.9226924181,-0.9226924181,-0.922961235,-0.9228268266,-0.9226924181,-0.9226924181,-0.922961235,-0.923230052,-0.9237676859,-0.9240365028,-0.9239020944,-0.9240365028,-0.9247086048,-0.9257839322,-0.9261871576,-0.9256495237,-0.9248430729,-0.9239020944,-0.9230956435,-0.9226924181,-0.9225580096,-0.9221547842,-0.9217515588,-0.9217515588,-0.9220203757,-0.9220203757,-0.9220203757,-0.9221547842,-0.9220203757,-0.9213483334,-0.9208106995,-0.9209451079,-0.9213483334,-0.9216171503,-0.9218859673,-0.9220203757,-0.9220203757,-0.9218859673,-0.9220203757,-0.9221547842,-0.9216171503,-0.9210795164,-0.9213483334,-0.9216171503,-0.9216171503,-0.9216171503,-0.9218859673,-0.9221547842,-0.9222891927,-0.9221547842,-0.9221547842,-0.9222891927,-0.9221547842,-0.9218859673,-0.9216171503,-0.9220203757,-0.9222891927,-0.9221547842,-0.9220203757,-0.9222891927,-0.9225580096,-0.9224236012,-0.9224236012,-0.9222891927,-0.9220203757,-0.9218859673,-0.9217515588,-0.9216171503,-0.9216171503,-0.9217515588,-0.9218859673,-0.9216171503,-0.9214827418,-0.9217515588,-0.9221547842,-0.9221547842,-0.9221547842,-0.9221547842,-0.9224236012,-0.9225580096,-0.9226924181,-0.9228268266,-0.9226924181,-0.9224236012,-0.9222891927,-0.9222891927,-0.9224236012,-0.9228268266,-0.922961235,-0.9225580096,-0.9224236012,-0.9230956435,-0.9230956435,-0.9222891927,-0.9225580096,-0.9247086048,-0.9264559746,-0.9263215661,-0.9253807068,-0.9243053794,-0.9239020944,-0.9239020944,-0.9234988689,-0.923230052,-0.9230956435,-0.923230052,-0.9233644605,-0.9234988689,-0.9236332774,-0.9236332774,-0.9237676859,-0.9237676859,-0.9237676859,-0.9247086048,-0.9249774814,-0.9244397879,-0.9252462983,-0.9278000593,-0.9292786121,-0.9291442037,-0.9278000593,-0.9247086048,-0.9218859673,-0.9209451079,-0.9210795164,-0.9214827418,-0.9222891927,-0.922961235,-0.9226924181,-0.9221547842,-0.9217515588,-0.9221547842,-0.9230956435,-0.922961235,-0.9212139249,-0.9208106995,-0.9241709113,-0.9282032847,-0.9296818376,-0.9302194715,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.9296818376,-0.929816246,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9303538799,-0.9303538799,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.9299506545,-0.929816246,-0.9299506545,-0.930085063,-0.9302194715,-0.930085063,-0.9299506545],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9290097952,-0.9288753867,-0.930085063,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9302194715,-0.930085063,-0.9303538799,-0.9302194715,-0.930085063,-0.9292786121,-0.9247086048,-0.9209451079,-0.9209451079,-0.9228268266,-0.9245741963,-0.9259183407,-0.9263215661,-0.9255151153,-0.923230052,-0.9224236012,-0.9230956435,-0.9228268266,-0.9213483334,-0.9201386571,-0.9202730656,-0.9222891927,-0.9260527492,-0.9288753867,-0.9287409782,-0.9265903831,-0.9245741963,-0.923230052,-0.9222891927,-0.9224236012,-0.9230956435,-0.9230956435,-0.9228268266,-0.9226924181,-0.9225580096,-0.9224236012,-0.9225580096,-0.9228268266,-0.922961235,-0.9228268266,-0.9228268266,-0.9228268266,-0.922961235,-0.9234988689,-0.9239020944,-0.9240365028,-0.9247086048,-0.9255151153,-0.9257839322,-0.9255151153,-0.9251118898,-0.9243053794,-0.9237676859,-0.9234988689,-0.922961235,-0.9224236012,-0.9221547842,-0.9220203757,-0.9218859673,-0.9218859673,-0.9221547842,-0.9224236012,-0.9222891927,-0.9221547842,-0.9222891927,-0.9220203757,-0.9213483334,-0.9210795164,-0.9209451079,-0.920407474,-0.9205418825,-0.9214827418,-0.9218859673,-0.9217515588,-0.9217515588,-0.9217515588,-0.9213483334,-0.9205418825,-0.9205418825,-0.9209451079,-0.9212139249,-0.9214827418,-0.9218859673,-0.9220203757,-0.9220203757,-0.9221547842,-0.9221547842,-0.9220203757,-0.9218859673,-0.9214827418,-0.9213483334,-0.9214827418,-0.9217515588,-0.9216171503,-0.9214827418,-0.9214827418,-0.9217515588,-0.9218859673,-0.9218859673,-0.9217515588,-0.9217515588,-0.9217515588,-0.9216171503,-0.9216171503,-0.9216171503,-0.9217515588,-0.9216171503,-0.9214827418,-0.9216171503,-0.9218859673,-0.9220203757,-0.9221547842,-0.9221547842,-0.9220203757,-0.9221547842,-0.9221547842,-0.9224236012,-0.9228268266,-0.9225580096,-0.9220203757,-0.9218859673,-0.9220203757,-0.9224236012,-0.9228268266,-0.9226924181,-0.9222891927,-0.9224236012,-0.9234988689,-0.9244397879,-0.9240365028,-0.9226924181,-0.9233644605,-0.9253807068,-0.9263215661,-0.9260527492,-0.9255151153,-0.9248430729,-0.9239020944,-0.9234988689,-0.9234988689,-0.9234988689,-0.9233644605,-0.9233644605,-0.9233644605,-0.9236332774,-0.9237676859,-0.9237676859,-0.9237676859,-0.9237676859,-0.9243053794,-0.9248430729,-0.9245741963,-0.9244397879,-0.9263215661,-0.9284721017,-0.9290097952,-0.9284721017,-0.9260527492,-0.9225580096,-0.920676291,-0.920676291,-0.9212139249,-0.9218859673,-0.9224236012,-0.9225580096,-0.9225580096,-0.9222891927,-0.9222891927,-0.9230956435,-0.9233644605,-0.9217515588,-0.920407474,-0.922961235,-0.9275312424,-0.9296818376,-0.930085063,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9299506545,-0.9299506545,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9299506545,-0.929816246,-0.9299506545,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.9296818376,-0.9294130206],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.9291442037,-0.9294130206,-0.9299506545,-0.9304882884,-0.9304882884,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9304882884,-0.9303538799,-0.9299506545,-0.9295474291,-0.9249774814,-0.920676291,-0.9197353721,-0.9220203757,-0.9247086048,-0.9259183407,-0.9257839322,-0.9251118898,-0.923230052,-0.9224236012,-0.9228268266,-0.9225580096,-0.9212139249,-0.9201386571,-0.920676291,-0.9239020944,-0.9279344678,-0.9294130206,-0.9272624254,-0.9241709113,-0.9233644605,-0.9236332774,-0.9233644605,-0.922961235,-0.9233644605,-0.9234988689,-0.9230956435,-0.9230956435,-0.923230052,-0.922961235,-0.9226924181,-0.9228268266,-0.9230956435,-0.922961235,-0.9228268266,-0.9226924181,-0.9230956435,-0.9240365028,-0.9248430729,-0.9253807068,-0.9253807068,-0.9249774814,-0.9244397879,-0.9239020944,-0.9237676859,-0.9237676859,-0.9239020944,-0.9234988689,-0.922961235,-0.9226924181,-0.9226924181,-0.9226924181,-0.9224236012,-0.9221547842,-0.9221547842,-0.9222891927,-0.9221547842,-0.9221547842,-0.9220203757,-0.9217515588,-0.9213483334,-0.9208106995,-0.9196009636,-0.9182568789,-0.9189289212,-0.9210795164,-0.9221547842,-0.9218859673,-0.9218859673,-0.9216171503,-0.9208106995,-0.9200042486,-0.9202730656,-0.9209451079,-0.9214827418,-0.9217515588,-0.9217515588,-0.9213483334,-0.9212139249,-0.9216171503,-0.9220203757,-0.9220203757,-0.9218859673,-0.9218859673,-0.9217515588,-0.9216171503,-0.9213483334,-0.9210795164,-0.920676291,-0.920407474,-0.9208106995,-0.9212139249,-0.9214827418,-0.9214827418,-0.9216171503,-0.9216171503,-0.9213483334,-0.9214827418,-0.9218859673,-0.9213483334,-0.9202730656,-0.9196009636,-0.9201386571,-0.9212139249,-0.9218859673,-0.9220203757,-0.9218859673,-0.9217515588,-0.9218859673,-0.9220203757,-0.9222891927,-0.9224236012,-0.9224236012,-0.9221547842,-0.9220203757,-0.9221547842,-0.9222891927,-0.9225580096,-0.9228268266,-0.9225580096,-0.9224236012,-0.9233644605,-0.9245741963,-0.9247086048,-0.9237676859,-0.922961235,-0.9236332774,-0.9252462983,-0.9259183407,-0.9255151153,-0.9248430729,-0.9240365028,-0.9234988689,-0.9233644605,-0.9233644605,-0.923230052,-0.923230052,-0.9234988689,-0.9237676859,-0.9236332774,-0.9233644605,-0.9234988689,-0.9236332774,-0.9236332774,-0.9241709113,-0.9248430729,-0.9245741963,-0.9249774814,-0.9268592,-0.9282032847,-0.9286065698,-0.9273968339,-0.9243053794,-0.9216171503,-0.9209451079,-0.9210795164,-0.9209451079,-0.9214827418,-0.9224236012,-0.9228268266,-0.9225580096,-0.9222891927,-0.9228268266,-0.9230956435,-0.9217515588,-0.9201386571,-0.9221547842,-0.9271280169,-0.9296818376,-0.930085063,-0.9302194715,-0.9299506545,-0.929816246,-0.929816246,-0.929816246,-0.9299506545,-0.9302194715,-0.9304882884,-0.9304882884,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.929816246,-0.929816246,-0.9302194715,-0.9303538799,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9299506545,-0.929816246,-0.929816246,-0.930085063,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9294130206,-0.9294130206],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9303538799,-0.9287409782,-0.9283376932,-0.929816246,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9306226969,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.930085063,-0.9292786121,-0.9251118898,-0.9202730656,-0.9186601043,-0.9214827418,-0.9247086048,-0.9245741963,-0.923230052,-0.9236332774,-0.9237676859,-0.9226924181,-0.9228268266,-0.9225580096,-0.9208106995,-0.9198697805,-0.9218859673,-0.9261871576,-0.9292786121,-0.9280688763,-0.9247086048,-0.922961235,-0.9233644605,-0.9239020944,-0.9234988689,-0.9228268266,-0.9228268266,-0.9230956435,-0.9230956435,-0.9230956435,-0.9233644605,-0.9233644605,-0.9230956435,-0.9228268266,-0.9228268266,-0.9230956435,-0.9230956435,-0.923230052,-0.9239020944,-0.9248430729,-0.9252462983,-0.9247086048,-0.9237676859,-0.9233644605,-0.9233644605,-0.9236332774,-0.9237676859,-0.9237676859,-0.9239020944,-0.9240365028,-0.9236332774,-0.9230956435,-0.922961235,-0.9228268266,-0.9224236012,-0.9220203757,-0.9220203757,-0.9220203757,-0.9220203757,-0.9220203757,-0.9221547842,-0.9222891927,-0.9218859673,-0.920407474,-0.9182568789,-0.9166439772,-0.9175848365,-0.9200042486,-0.9210795164,-0.9209451079,-0.9210795164,-0.9205418825,-0.9197353721,-0.9202730656,-0.9213483334,-0.9220203757,-0.9218859673,-0.9214827418,-0.9212139249,-0.9214827418,-0.9218859673,-0.9218859673,-0.9218859673,-0.9218859673,-0.9220203757,-0.9224236012,-0.9226924181,-0.9224236012,-0.9220203757,-0.9217515588,-0.9212139249,-0.9208106995,-0.9212139249,-0.9214827418,-0.9216171503,-0.9217515588,-0.9217515588,-0.9216171503,-0.9213483334,-0.9209451079,-0.920407474,-0.920407474,-0.920407474,-0.9198697805,-0.9194665551,-0.9200042486,-0.9209451079,-0.9212139249,-0.920676291,-0.9205418825,-0.9213483334,-0.9220203757,-0.9221547842,-0.9221547842,-0.9222891927,-0.9221547842,-0.9221547842,-0.9221547842,-0.9221547842,-0.9222891927,-0.9222891927,-0.9221547842,-0.9221547842,-0.922961235,-0.9241709113,-0.9243053794,-0.9240365028,-0.9240365028,-0.9241709113,-0.9243053794,-0.9249774814,-0.9252462983,-0.9249774814,-0.9244397879,-0.9237676859,-0.9233644605,-0.923230052,-0.923230052,-0.9230956435,-0.9233644605,-0.9236332774,-0.9236332774,-0.9236332774,-0.9236332774,-0.9237676859,-0.9236332774,-0.9239020944,-0.9247086048,-0.9248430729,-0.9240365028,-0.9251118898,-0.9273968339,-0.9284721017,-0.9283376932,-0.9265903831,-0.9236332774,-0.9218859673,-0.9213483334,-0.9210795164,-0.9212139249,-0.9220203757,-0.9225580096,-0.9228268266,-0.9225580096,-0.9224236012,-0.9224236012,-0.9216171503,-0.9205418825,-0.9217515588,-0.9261871576,-0.9292786121,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.929816246,-0.9296818376,-0.9299506545,-0.930085063,-0.930085063,-0.9296818376,-0.9295474291,-0.9295474291,-0.9299506545,-0.9302194715,-0.9299506545,-0.929816246,-0.9299506545,-0.9302194715,-0.9302194715,-0.9299506545,-0.9299506545,-0.9302194715,-0.9304882884,-0.9303538799,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9296818376,-0.9296818376],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9303538799,-0.9296818376,-0.9296818376,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.930085063,-0.9291442037,-0.9252462983,-0.920407474,-0.9185256958,-0.9209451079,-0.9239020944,-0.923230052,-0.9214827418,-0.9225580096,-0.9241709113,-0.9234988689,-0.9228268266,-0.9222891927,-0.9209451079,-0.9208106995,-0.9239020944,-0.9280688763,-0.9291442037,-0.9263215661,-0.9234988689,-0.922961235,-0.9236332774,-0.9236332774,-0.923230052,-0.922961235,-0.922961235,-0.923230052,-0.923230052,-0.923230052,-0.9233644605,-0.9233644605,-0.923230052,-0.9230956435,-0.922961235,-0.922961235,-0.9230956435,-0.9236332774,-0.9244397879,-0.9247086048,-0.9236332774,-0.9226924181,-0.9226924181,-0.9230956435,-0.923230052,-0.9236332774,-0.9239020944,-0.9240365028,-0.9243053794,-0.9243053794,-0.9237676859,-0.9230956435,-0.9226924181,-0.9226924181,-0.9222891927,-0.9218859673,-0.9218859673,-0.9220203757,-0.9218859673,-0.9220203757,-0.9222891927,-0.9221547842,-0.9213483334,-0.920407474,-0.9196009636,-0.9186601043,-0.9187945127,-0.9197353721,-0.9197353721,-0.9193321466,-0.9196009636,-0.9210795164,-0.9225580096,-0.9230956435,-0.9230956435,-0.9225580096,-0.9218859673,-0.9214827418,-0.9216171503,-0.9218859673,-0.9216171503,-0.9213483334,-0.9216171503,-0.9217515588,-0.9218859673,-0.9228268266,-0.9239020944,-0.923230052,-0.9217515588,-0.9213483334,-0.9217515588,-0.9217515588,-0.9216171503,-0.9216171503,-0.9214827418,-0.9214827418,-0.9216171503,-0.9216171503,-0.9216171503,-0.9210795164,-0.9202730656,-0.9200042486,-0.9202730656,-0.9209451079,-0.9209451079,-0.9198697805,-0.9190633297,-0.9193321466,-0.9197353721,-0.920407474,-0.9216171503,-0.9221547842,-0.9221547842,-0.9221547842,-0.9220203757,-0.9220203757,-0.9220203757,-0.9221547842,-0.9220203757,-0.9218859673,-0.9221547842,-0.9224236012,-0.9222891927,-0.9225580096,-0.9237676859,-0.9240365028,-0.922961235,-0.923230052,-0.9244397879,-0.9248430729,-0.9247086048,-0.9252462983,-0.9253807068,-0.9247086048,-0.9240365028,-0.9234988689,-0.923230052,-0.9230956435,-0.923230052,-0.9233644605,-0.9236332774,-0.9237676859,-0.9237676859,-0.9236332774,-0.9236332774,-0.9237676859,-0.9237676859,-0.9241709113,-0.9248430729,-0.9243053794,-0.9240365028,-0.9260527492,-0.9282032847,-0.9287409782,-0.9279344678,-0.9253807068,-0.9225580096,-0.9214827418,-0.9216171503,-0.9218859673,-0.9220203757,-0.9222891927,-0.9226924181,-0.9228268266,-0.9224236012,-0.9222891927,-0.9220203757,-0.9209451079,-0.9212139249,-0.9248430729,-0.9291442037,-0.930085063,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.929816246,-0.929816246,-0.9299506545,-0.930085063,-0.9299506545,-0.9296818376,-0.930085063,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9299506545,-0.9302194715,-0.9303538799,-0.9299506545,-0.930085063],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9302194715,-0.9296818376,-0.9299506545,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.9290097952,-0.9248430729,-0.920407474,-0.9183912873,-0.9197353721,-0.9228268266,-0.9241709113,-0.922961235,-0.9220203757,-0.9226924181,-0.9230956435,-0.9228268266,-0.9220203757,-0.9210795164,-0.9220203757,-0.9259183407,-0.9288753867,-0.9278000593,-0.9247086048,-0.9230956435,-0.9233644605,-0.9237676859,-0.9234988689,-0.923230052,-0.923230052,-0.9234988689,-0.9237676859,-0.9234988689,-0.9230956435,-0.922961235,-0.9230956435,-0.9230956435,-0.922961235,-0.922961235,-0.9230956435,-0.9234988689,-0.9240365028,-0.9243053794,-0.9236332774,-0.9228268266,-0.9230956435,-0.9234988689,-0.9236332774,-0.9234988689,-0.9237676859,-0.9241709113,-0.9241709113,-0.9240365028,-0.9239020944,-0.9237676859,-0.9233644605,-0.9228268266,-0.9226924181,-0.9222891927,-0.9220203757,-0.9218859673,-0.9218859673,-0.9218859673,-0.9222891927,-0.9225580096,-0.9218859673,-0.9208106995,-0.920407474,-0.920676291,-0.9208106995,-0.9209451079,-0.9212139249,-0.9214827418,-0.9220203757,-0.9237676859,-0.9249774814,-0.9244397879,-0.9241709113,-0.9230956435,-0.9221547842,-0.9217515588,-0.9216171503,-0.9213483334,-0.9213483334,-0.9214827418,-0.9214827418,-0.9216171503,-0.9216171503,-0.9217515588,-0.922961235,-0.9241709113,-0.9234988689,-0.9218859673,-0.9214827418,-0.9217515588,-0.9217515588,-0.9220203757,-0.9221547842,-0.9218859673,-0.9217515588,-0.9217515588,-0.9217515588,-0.9216171503,-0.9216171503,-0.9212139249,-0.920407474,-0.920676291,-0.9217515588,-0.9220203757,-0.9209451079,-0.9193321466,-0.9194665551,-0.9209451079,-0.9209451079,-0.9202730656,-0.9208106995,-0.9217515588,-0.9218859673,-0.9217515588,-0.9217515588,-0.9220203757,-0.9221547842,-0.9220203757,-0.9218859673,-0.9218859673,-0.9221547842,-0.9220203757,-0.9220203757,-0.923230052,-0.9243053794,-0.9222891927,-0.9205418825,-0.9213483334,-0.9230956435,-0.9243053794,-0.9248430729,-0.9253807068,-0.9248430729,-0.9241709113,-0.9237676859,-0.9233644605,-0.923230052,-0.923230052,-0.923230052,-0.9230956435,-0.923230052,-0.9234988689,-0.9236332774,-0.9234988689,-0.9236332774,-0.9237676859,-0.9239020944,-0.9244397879,-0.9245741963,-0.9239020944,-0.9245741963,-0.9268592,-0.9286065698,-0.9287409782,-0.9268592,-0.9236332774,-0.9214827418,-0.9213483334,-0.9218859673,-0.9220203757,-0.9220203757,-0.9225580096,-0.9233644605,-0.923230052,-0.9226924181,-0.9224236012,-0.9214827418,-0.9210795164,-0.9239020944,-0.9284721017,-0.929816246,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9302194715,-0.930085063,-0.9303538799,-0.9299506545,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.929816246,-0.929816246,-0.9299506545,-0.9302194715,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9299506545,-0.929816246],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9299506545,-0.9291442037,-0.9295474291,-0.9299506545,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9287409782,-0.9249774814,-0.9214827418,-0.9205418825,-0.9208106995,-0.9221547842,-0.9243053794,-0.9247086048,-0.9222891927,-0.9205418825,-0.9217515588,-0.9228268266,-0.9220203757,-0.9212139249,-0.9233644605,-0.9271280169,-0.9284721017,-0.9261871576,-0.9236332774,-0.923230052,-0.9236332774,-0.9234988689,-0.9234988689,-0.9233644605,-0.923230052,-0.9233644605,-0.9236332774,-0.9236332774,-0.923230052,-0.9228268266,-0.9228268266,-0.922961235,-0.922961235,-0.922961235,-0.9233644605,-0.9237676859,-0.9239020944,-0.9234988689,-0.922961235,-0.9226924181,-0.9230956435,-0.9236332774,-0.9239020944,-0.9237676859,-0.9240365028,-0.9241709113,-0.9243053794,-0.9241709113,-0.9239020944,-0.9236332774,-0.9230956435,-0.9228268266,-0.9225580096,-0.9222891927,-0.9221547842,-0.9221547842,-0.9221547842,-0.9222891927,-0.9224236012,-0.9221547842,-0.9216171503,-0.9210795164,-0.9210795164,-0.9212139249,-0.9212139249,-0.9212139249,-0.9214827418,-0.9226924181,-0.9239020944,-0.9237676859,-0.9228268266,-0.9226924181,-0.9226924181,-0.9222891927,-0.9216171503,-0.9216171503,-0.9216171503,-0.9212139249,-0.9210795164,-0.9216171503,-0.9217515588,-0.9214827418,-0.9214827418,-0.9218859673,-0.922961235,-0.9239020944,-0.9233644605,-0.9221547842,-0.9216171503,-0.9214827418,-0.9214827418,-0.9218859673,-0.9225580096,-0.9230956435,-0.9230956435,-0.9225580096,-0.9217515588,-0.9210795164,-0.920676291,-0.9208106995,-0.9217515588,-0.9225580096,-0.9225580096,-0.9221547842,-0.9213483334,-0.920407474,-0.9197353721,-0.9202730656,-0.9208106995,-0.9200042486,-0.9196009636,-0.9209451079,-0.9218859673,-0.9217515588,-0.9217515588,-0.9218859673,-0.9220203757,-0.9221547842,-0.9222891927,-0.9220203757,-0.9218859673,-0.9218859673,-0.9217515588,-0.9224236012,-0.9234988689,-0.9224236012,-0.9200042486,-0.9189289212,-0.9191977382,-0.9202730656,-0.9220203757,-0.9237676859,-0.9243053794,-0.9240365028,-0.9237676859,-0.9234988689,-0.923230052,-0.923230052,-0.9233644605,-0.923230052,-0.9230956435,-0.923230052,-0.9233644605,-0.9234988689,-0.9234988689,-0.9236332774,-0.9237676859,-0.9241709113,-0.9244397879,-0.9239020944,-0.9234988689,-0.9252462983,-0.9279344678,-0.9291442037,-0.9280688763,-0.9252462983,-0.9221547842,-0.9209451079,-0.9214827418,-0.9214827418,-0.9214827418,-0.9228268266,-0.9243053794,-0.9241709113,-0.9230956435,-0.9226924181,-0.9222891927,-0.9216171503,-0.9234988689,-0.9275312424,-0.9299506545,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.930085063,-0.9304882884,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9299506545,-0.930085063,-0.930085063,-0.9296818376,-0.9299506545,-0.9299506545,-0.9296818376,-0.9304882884,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9304882884,-0.9303538799,-0.9303538799,-0.929816246,-0.9296818376,-0.929816246,-0.930085063,-0.930085063,-0.9302194715,-0.929816246,-0.929816246],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.929816246,-0.9291442037,-0.929816246,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9299506545,-0.9287409782,-0.9255151153,-0.9225580096,-0.9225580096,-0.9230956435,-0.9221547842,-0.9224236012,-0.9237676859,-0.923230052,-0.9214827418,-0.9214827418,-0.9224236012,-0.9218859673,-0.9221547842,-0.9249774814,-0.9280688763,-0.9276656508,-0.9248430729,-0.9230956435,-0.9230956435,-0.9233644605,-0.923230052,-0.9233644605,-0.9230956435,-0.922961235,-0.923230052,-0.9236332774,-0.9234988689,-0.9228268266,-0.9225580096,-0.9228268266,-0.9230956435,-0.922961235,-0.9230956435,-0.9233644605,-0.9233644605,-0.923230052,-0.9230956435,-0.9228268266,-0.9226924181,-0.922961235,-0.9233644605,-0.9237676859,-0.9240365028,-0.9241709113,-0.9240365028,-0.9240365028,-0.9241709113,-0.9240365028,-0.9234988689,-0.9230956435,-0.9226924181,-0.9224236012,-0.9222891927,-0.9222891927,-0.9222891927,-0.9221547842,-0.9220203757,-0.9220203757,-0.9216171503,-0.9213483334,-0.9213483334,-0.9216171503,-0.9217515588,-0.9216171503,-0.9213483334,-0.9216171503,-0.9226924181,-0.9233644605,-0.9222891927,-0.9213483334,-0.9214827418,-0.9220203757,-0.9217515588,-0.9214827418,-0.9214827418,-0.9214827418,-0.9209451079,-0.9208106995,-0.9210795164,-0.9213483334,-0.9216171503,-0.9217515588,-0.9220203757,-0.9228268266,-0.9237676859,-0.9233644605,-0.9221547842,-0.9217515588,-0.9217515588,-0.9212139249,-0.9210795164,-0.9220203757,-0.9230956435,-0.9234988689,-0.9230956435,-0.9221547842,-0.9214827418,-0.9214827418,-0.9220203757,-0.9225580096,-0.9225580096,-0.9221547842,-0.9216171503,-0.9213483334,-0.9208106995,-0.9201386571,-0.9201386571,-0.9205418825,-0.9205418825,-0.9205418825,-0.9210795164,-0.9217515588,-0.9218859673,-0.9218859673,-0.9217515588,-0.9216171503,-0.9217515588,-0.9221547842,-0.9218859673,-0.9214827418,-0.9216171503,-0.9220203757,-0.9224236012,-0.9228268266,-0.9225580096,-0.9216171503,-0.920676291,-0.9197353721,-0.9191977382,-0.9202730656,-0.9217515588,-0.9226924181,-0.923230052,-0.9236332774,-0.9234988689,-0.9230956435,-0.922961235,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.923230052,-0.9234988689,-0.9234988689,-0.9233644605,-0.9233644605,-0.9236332774,-0.9240365028,-0.9237676859,-0.9230956435,-0.9241709113,-0.9268592,-0.9290097952,-0.9287409782,-0.9261871576,-0.922961235,-0.9214827418,-0.9213483334,-0.9212139249,-0.9214827418,-0.9233644605,-0.9241709113,-0.9239020944,-0.9226924181,-0.9222891927,-0.9222891927,-0.9216171503,-0.9222891927,-0.9260527492,-0.9296818376,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.9304882884,-0.929816246,-0.930085063,-0.9299506545,-0.929816246,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9299506545,-0.9299506545,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.929816246],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9295474291,-0.9291442037,-0.9299506545,-0.9304882884,-0.9303538799,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9306226969,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9299506545,-0.9291442037,-0.9261871576,-0.922961235,-0.9225580096,-0.9237676859,-0.9236332774,-0.9225580096,-0.9228268266,-0.923230052,-0.9225580096,-0.9218859673,-0.9218859673,-0.9218859673,-0.923230052,-0.9265903831,-0.9280688763,-0.9261871576,-0.9237676859,-0.923230052,-0.9233644605,-0.9230956435,-0.922961235,-0.9230956435,-0.922961235,-0.9228268266,-0.9230956435,-0.9233644605,-0.923230052,-0.9228268266,-0.922961235,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.9230956435,-0.922961235,-0.922961235,-0.922961235,-0.9228268266,-0.9228268266,-0.923230052,-0.9236332774,-0.9239020944,-0.9241709113,-0.9243053794,-0.9241709113,-0.9240365028,-0.9241709113,-0.9241709113,-0.9237676859,-0.923230052,-0.9226924181,-0.9224236012,-0.9224236012,-0.9224236012,-0.9224236012,-0.9221547842,-0.9220203757,-0.9217515588,-0.9213483334,-0.9212139249,-0.9214827418,-0.9217515588,-0.9217515588,-0.9217515588,-0.9216171503,-0.9213483334,-0.9216171503,-0.9220203757,-0.9222891927,-0.9221547842,-0.9220203757,-0.9220203757,-0.9217515588,-0.9216171503,-0.9214827418,-0.9212139249,-0.9209451079,-0.9209451079,-0.9213483334,-0.9216171503,-0.9216171503,-0.9216171503,-0.9218859673,-0.9226924181,-0.9236332774,-0.9233644605,-0.9222891927,-0.9216171503,-0.9213483334,-0.9210795164,-0.9210795164,-0.9216171503,-0.9222891927,-0.9224236012,-0.9224236012,-0.9225580096,-0.9228268266,-0.9228268266,-0.9224236012,-0.9220203757,-0.9217515588,-0.9214827418,-0.9213483334,-0.9213483334,-0.9210795164,-0.9208106995,-0.920676291,-0.9208106995,-0.9210795164,-0.9210795164,-0.9212139249,-0.9216171503,-0.9220203757,-0.9221547842,-0.9217515588,-0.9216171503,-0.9217515588,-0.9220203757,-0.9214827418,-0.9212139249,-0.9214827418,-0.9220203757,-0.9222891927,-0.9225580096,-0.9224236012,-0.9224236012,-0.9230956435,-0.9233644605,-0.9226924181,-0.9218859673,-0.9218859673,-0.9224236012,-0.922961235,-0.9233644605,-0.9233644605,-0.922961235,-0.9225580096,-0.9225580096,-0.9228268266,-0.922961235,-0.9230956435,-0.923230052,-0.9236332774,-0.9236332774,-0.923230052,-0.9230956435,-0.9233644605,-0.9239020944,-0.9240365028,-0.9236332774,-0.9237676859,-0.9256495237,-0.9279344678,-0.9288753867,-0.9272624254,-0.9241709113,-0.9220203757,-0.9214827418,-0.9212139249,-0.9216171503,-0.9228268266,-0.9233644605,-0.923230052,-0.9222891927,-0.9213483334,-0.9208106995,-0.9212139249,-0.9221547842,-0.9251118898,-0.9290097952,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9299506545,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9299506545],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9295474291,-0.9294130206,-0.930085063,-0.930085063,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9299506545,-0.9294130206,-0.9267247915,-0.923230052,-0.9218859673,-0.9234988689,-0.9247086048,-0.9234988689,-0.9218859673,-0.9220203757,-0.9225580096,-0.9222891927,-0.9216171503,-0.9220203757,-0.9247086048,-0.9279344678,-0.9276656508,-0.9248430729,-0.923230052,-0.9233644605,-0.9234988689,-0.9230956435,-0.9230956435,-0.9230956435,-0.923230052,-0.9230956435,-0.922961235,-0.9230956435,-0.9233644605,-0.923230052,-0.922961235,-0.9226924181,-0.9228268266,-0.923230052,-0.923230052,-0.922961235,-0.9228268266,-0.922961235,-0.9228268266,-0.9225580096,-0.9226924181,-0.923230052,-0.9237676859,-0.9241709113,-0.9244397879,-0.9244397879,-0.9243053794,-0.9243053794,-0.9241709113,-0.9240365028,-0.9237676859,-0.923230052,-0.9226924181,-0.9225580096,-0.9225580096,-0.9226924181,-0.9225580096,-0.9222891927,-0.9218859673,-0.9217515588,-0.9216171503,-0.9216171503,-0.9218859673,-0.9217515588,-0.9216171503,-0.9216171503,-0.9216171503,-0.9214827418,-0.9213483334,-0.9216171503,-0.9217515588,-0.9217515588,-0.9216171503,-0.9217515588,-0.9217515588,-0.9216171503,-0.9213483334,-0.9212139249,-0.9212139249,-0.9213483334,-0.9214827418,-0.9216171503,-0.9217515588,-0.9216171503,-0.9217515588,-0.9225580096,-0.9234988689,-0.9233644605,-0.9221547842,-0.9213483334,-0.9210795164,-0.9212139249,-0.9213483334,-0.9214827418,-0.9214827418,-0.9214827418,-0.9216171503,-0.9217515588,-0.9216171503,-0.9216171503,-0.9217515588,-0.9216171503,-0.9213483334,-0.9213483334,-0.9213483334,-0.9212139249,-0.9209451079,-0.9208106995,-0.9212139249,-0.9217515588,-0.9220203757,-0.9216171503,-0.9212139249,-0.9212139249,-0.9216171503,-0.9221547842,-0.9222891927,-0.9220203757,-0.9217515588,-0.9217515588,-0.9214827418,-0.9214827418,-0.9217515588,-0.9217515588,-0.9218859673,-0.9224236012,-0.9226924181,-0.9226924181,-0.9230956435,-0.9236332774,-0.9236332774,-0.923230052,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.922961235,-0.9226924181,-0.9225580096,-0.9225580096,-0.9226924181,-0.9226924181,-0.922961235,-0.923230052,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.9234988689,-0.9236332774,-0.9237676859,-0.9237676859,-0.9239020944,-0.9249774814,-0.9269936085,-0.9286065698,-0.9282032847,-0.9255151153,-0.9226924181,-0.9214827418,-0.9210795164,-0.9210795164,-0.9220203757,-0.923230052,-0.9234988689,-0.9222891927,-0.9197353721,-0.9171816111,-0.917450428,-0.9202730656,-0.9243053794,-0.9282032847,-0.929816246,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9299506545,-0.930085063,-0.9304882884,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9299506545],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.929816246,-0.9296818376,-0.9302194715,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9299506545,-0.930085063,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.929816246,-0.9296818376,-0.9272624254,-0.9234988689,-0.9216171503,-0.9230956435,-0.9249774814,-0.9237676859,-0.9209451079,-0.920407474,-0.9218859673,-0.9221547842,-0.9214827418,-0.922961235,-0.9265903831,-0.9287409782,-0.9269936085,-0.9239020944,-0.9228268266,-0.923230052,-0.923230052,-0.9228268266,-0.9228268266,-0.9230956435,-0.9230956435,-0.922961235,-0.922961235,-0.9230956435,-0.922961235,-0.9228268266,-0.9226924181,-0.9228268266,-0.9228268266,-0.9230956435,-0.9230956435,-0.922961235,-0.922961235,-0.923230052,-0.9230956435,-0.9226924181,-0.9228268266,-0.9233644605,-0.9239020944,-0.9241709113,-0.9243053794,-0.9244397879,-0.9244397879,-0.9243053794,-0.9241709113,-0.9239020944,-0.9236332774,-0.9233644605,-0.922961235,-0.9226924181,-0.9225580096,-0.9226924181,-0.9225580096,-0.9221547842,-0.9218859673,-0.9217515588,-0.9218859673,-0.9218859673,-0.9218859673,-0.9217515588,-0.9216171503,-0.9216171503,-0.9217515588,-0.9217515588,-0.9217515588,-0.9217515588,-0.9218859673,-0.9217515588,-0.9213483334,-0.9212139249,-0.9213483334,-0.9216171503,-0.9214827418,-0.9213483334,-0.9213483334,-0.9213483334,-0.9213483334,-0.9214827418,-0.9217515588,-0.9217515588,-0.9216171503,-0.9224236012,-0.9233644605,-0.923230052,-0.9220203757,-0.9213483334,-0.9214827418,-0.9214827418,-0.9212139249,-0.9212139249,-0.9212139249,-0.9212139249,-0.9212139249,-0.9212139249,-0.9209451079,-0.9208106995,-0.9208106995,-0.9210795164,-0.9212139249,-0.9214827418,-0.9213483334,-0.9212139249,-0.9212139249,-0.9216171503,-0.9218859673,-0.9220203757,-0.9221547842,-0.9220203757,-0.9216171503,-0.9214827418,-0.9216171503,-0.9220203757,-0.9222891927,-0.9217515588,-0.9212139249,-0.9216171503,-0.9221547842,-0.9220203757,-0.9217515588,-0.9216171503,-0.9218859673,-0.9225580096,-0.9228268266,-0.9226924181,-0.923230052,-0.9237676859,-0.9236332774,-0.923230052,-0.9230956435,-0.9230956435,-0.923230052,-0.923230052,-0.922961235,-0.9226924181,-0.9225580096,-0.9226924181,-0.9228268266,-0.922961235,-0.9230956435,-0.9230956435,-0.923230052,-0.9234988689,-0.9237676859,-0.9237676859,-0.9237676859,-0.9236332774,-0.9237676859,-0.9240365028,-0.9241709113,-0.9247086048,-0.9263215661,-0.9283376932,-0.9288753867,-0.9269936085,-0.9239020944,-0.9217515588,-0.9209451079,-0.9208106995,-0.9217515588,-0.923230052,-0.9233644605,-0.9220203757,-0.9194665551,-0.9162407517,-0.9152998328,-0.9186601043,-0.9239020944,-0.9278000593,-0.9296818376,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.929816246,-0.9294130206],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.929816246,-0.9296818376,-0.9302194715,-0.9299506545,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9302194715,-0.9299506545,-0.929816246,-0.9282032847,-0.9244397879,-0.9217515588,-0.922961235,-0.9248430729,-0.9225580096,-0.9189289212,-0.9190633297,-0.9216171503,-0.9221547842,-0.9217515588,-0.9243053794,-0.9282032847,-0.9287409782,-0.9257839322,-0.923230052,-0.9230956435,-0.923230052,-0.922961235,-0.9228268266,-0.922961235,-0.9230956435,-0.9230956435,-0.922961235,-0.922961235,-0.923230052,-0.9230956435,-0.9226924181,-0.9228268266,-0.923230052,-0.923230052,-0.9230956435,-0.922961235,-0.922961235,-0.922961235,-0.923230052,-0.922961235,-0.9226924181,-0.9228268266,-0.9234988689,-0.9239020944,-0.9240365028,-0.9243053794,-0.9244397879,-0.9244397879,-0.9243053794,-0.9243053794,-0.9239020944,-0.9234988689,-0.9233644605,-0.9230956435,-0.9228268266,-0.9226924181,-0.9226924181,-0.9224236012,-0.9220203757,-0.9218859673,-0.9217515588,-0.9217515588,-0.9217515588,-0.9216171503,-0.9217515588,-0.9217515588,-0.9217515588,-0.9217515588,-0.9217515588,-0.9217515588,-0.9218859673,-0.9218859673,-0.9220203757,-0.9217515588,-0.9213483334,-0.9213483334,-0.9214827418,-0.9214827418,-0.9213483334,-0.9213483334,-0.9213483334,-0.9214827418,-0.9216171503,-0.9217515588,-0.9217515588,-0.9216171503,-0.9224236012,-0.9234988689,-0.9233644605,-0.9221547842,-0.9212139249,-0.9213483334,-0.9213483334,-0.9213483334,-0.9212139249,-0.9213483334,-0.9213483334,-0.9213483334,-0.9212139249,-0.9210795164,-0.920676291,-0.920676291,-0.9210795164,-0.9213483334,-0.9214827418,-0.9214827418,-0.9214827418,-0.9216171503,-0.9220203757,-0.9222891927,-0.9222891927,-0.9221547842,-0.9217515588,-0.9218859673,-0.9221547842,-0.9220203757,-0.9216171503,-0.9214827418,-0.9213483334,-0.9213483334,-0.9217515588,-0.9220203757,-0.9220203757,-0.9218859673,-0.9218859673,-0.9221547842,-0.9226924181,-0.9226924181,-0.9224236012,-0.9230956435,-0.9237676859,-0.9236332774,-0.9230956435,-0.922961235,-0.923230052,-0.9234988689,-0.9234988689,-0.9233644605,-0.922961235,-0.9226924181,-0.9225580096,-0.9222891927,-0.9222891927,-0.9226924181,-0.9230956435,-0.9233644605,-0.9237676859,-0.9240365028,-0.9239020944,-0.9236332774,-0.9236332774,-0.9239020944,-0.9243053794,-0.9241709113,-0.9240365028,-0.9255151153,-0.9278000593,-0.9290097952,-0.9280688763,-0.9251118898,-0.9224236012,-0.9212139249,-0.9209451079,-0.9214827418,-0.9225580096,-0.9228268266,-0.9221547842,-0.9214827418,-0.9209451079,-0.9202730656,-0.9210795164,-0.9239020944,-0.9272624254,-0.9294130206,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9302194715,-0.929816246,-0.929816246,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9299506545,-0.9296818376,-0.9294130206],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.9295474291,-0.9295474291,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.929816246,-0.9295474291,-0.9288753867,-0.9255151153,-0.9220203757,-0.9230956435,-0.9245741963,-0.9202730656,-0.9154342413,-0.9175848365,-0.9221547842,-0.9225580096,-0.9221547842,-0.9253807068,-0.9288753867,-0.9279344678,-0.9245741963,-0.9228268266,-0.9230956435,-0.9233644605,-0.922961235,-0.922961235,-0.9230956435,-0.9230956435,-0.9230956435,-0.922961235,-0.922961235,-0.9230956435,-0.922961235,-0.9226924181,-0.9225580096,-0.922961235,-0.922961235,-0.922961235,-0.9228268266,-0.9228268266,-0.922961235,-0.9230956435,-0.9226924181,-0.9224236012,-0.9228268266,-0.9234988689,-0.9239020944,-0.9241709113,-0.9245741963,-0.9247086048,-0.9244397879,-0.9241709113,-0.9243053794,-0.9241709113,-0.9234988689,-0.9230956435,-0.922961235,-0.9228268266,-0.9228268266,-0.9226924181,-0.9224236012,-0.9220203757,-0.9218859673,-0.9217515588,-0.9217515588,-0.9217515588,-0.9217515588,-0.9217515588,-0.9217515588,-0.9217515588,-0.9218859673,-0.9218859673,-0.9218859673,-0.9218859673,-0.9220203757,-0.9218859673,-0.9216171503,-0.9214827418,-0.9214827418,-0.9214827418,-0.9209451079,-0.9202730656,-0.920407474,-0.9212139249,-0.9214827418,-0.9213483334,-0.9213483334,-0.9214827418,-0.9214827418,-0.9222891927,-0.9234988689,-0.923230052,-0.9220203757,-0.9214827418,-0.9214827418,-0.9214827418,-0.9213483334,-0.9212139249,-0.9210795164,-0.9210795164,-0.9212139249,-0.9214827418,-0.9214827418,-0.9213483334,-0.9210795164,-0.9210795164,-0.9209451079,-0.9210795164,-0.9214827418,-0.9217515588,-0.9218859673,-0.9221547842,-0.9220203757,-0.9218859673,-0.9217515588,-0.9217515588,-0.9218859673,-0.9218859673,-0.9217515588,-0.9212139249,-0.9210795164,-0.9213483334,-0.9216171503,-0.9216171503,-0.9217515588,-0.9218859673,-0.9218859673,-0.9218859673,-0.9222891927,-0.9228268266,-0.9228268266,-0.9226924181,-0.923230052,-0.9236332774,-0.9234988689,-0.923230052,-0.9230956435,-0.9233644605,-0.9236332774,-0.9236332774,-0.9233644605,-0.9226924181,-0.9224236012,-0.9221547842,-0.9216171503,-0.9217515588,-0.9226924181,-0.9233644605,-0.9236332774,-0.9239020944,-0.9241709113,-0.9241709113,-0.9240365028,-0.9239020944,-0.9240365028,-0.9243053794,-0.9241709113,-0.9239020944,-0.9247086048,-0.9269936085,-0.9288753867,-0.9286065698,-0.9263215661,-0.9233644605,-0.9213483334,-0.920676291,-0.9212139249,-0.9225580096,-0.9230956435,-0.9224236012,-0.9221547842,-0.9224236012,-0.9222891927,-0.9217515588,-0.922961235,-0.9263215661,-0.9288753867,-0.9299506545,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9299506545,-0.9296818376,-0.9299506545,-0.9299506545,-0.9299506545,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9299506545,-0.9299506545,-0.9299506545],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9303538799,-0.9292786121,-0.9292786121,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.930085063,-0.929816246,-0.9294130206,-0.9286065698,-0.9255151153,-0.9222891927,-0.9230956435,-0.9243053794,-0.9198697805,-0.9155686498,-0.9181224704,-0.9222891927,-0.9226924181,-0.923230052,-0.9268592,-0.9288753867,-0.9265903831,-0.9236332774,-0.922961235,-0.923230052,-0.923230052,-0.922961235,-0.9230956435,-0.9230956435,-0.923230052,-0.923230052,-0.9230956435,-0.9228268266,-0.922961235,-0.9230956435,-0.922961235,-0.9228268266,-0.9226924181,-0.922961235,-0.9230956435,-0.9228268266,-0.9226924181,-0.922961235,-0.922961235,-0.9222891927,-0.9222891927,-0.923230052,-0.9237676859,-0.9237676859,-0.9240365028,-0.9245741963,-0.9247086048,-0.9244397879,-0.9240365028,-0.9240365028,-0.9240365028,-0.9237676859,-0.9233644605,-0.9230956435,-0.9228268266,-0.9228268266,-0.9226924181,-0.9224236012,-0.9220203757,-0.9220203757,-0.9220203757,-0.9218859673,-0.9217515588,-0.9218859673,-0.9217515588,-0.9217515588,-0.9218859673,-0.9220203757,-0.9221547842,-0.9218859673,-0.9217515588,-0.9217515588,-0.9217515588,-0.9217515588,-0.9217515588,-0.9216171503,-0.9214827418,-0.9210795164,-0.9208106995,-0.9209451079,-0.9213483334,-0.9214827418,-0.9212139249,-0.9210795164,-0.9212139249,-0.9213483334,-0.9221547842,-0.923230052,-0.9230956435,-0.9221547842,-0.9216171503,-0.9216171503,-0.9214827418,-0.9212139249,-0.9210795164,-0.9209451079,-0.9209451079,-0.9212139249,-0.9214827418,-0.9214827418,-0.9212139249,-0.9213483334,-0.9214827418,-0.9213483334,-0.9212139249,-0.9216171503,-0.9218859673,-0.9218859673,-0.9218859673,-0.9217515588,-0.9216171503,-0.9217515588,-0.9220203757,-0.9218859673,-0.9214827418,-0.9213483334,-0.9212139249,-0.9212139249,-0.9213483334,-0.9214827418,-0.9216171503,-0.9217515588,-0.9218859673,-0.9218859673,-0.9217515588,-0.9222891927,-0.9228268266,-0.9226924181,-0.9225580096,-0.9233644605,-0.9241709113,-0.9240365028,-0.9234988689,-0.923230052,-0.9230956435,-0.923230052,-0.9233644605,-0.922961235,-0.9224236012,-0.9218859673,-0.9218859673,-0.9224236012,-0.9228268266,-0.9230956435,-0.923230052,-0.9236332774,-0.9239020944,-0.9239020944,-0.9237676859,-0.9241709113,-0.9245741963,-0.9244397879,-0.9243053794,-0.9240365028,-0.9236332774,-0.9241709113,-0.9261871576,-0.9286065698,-0.9290097952,-0.9269936085,-0.9240365028,-0.9216171503,-0.9202730656,-0.9209451079,-0.9226924181,-0.923230052,-0.9222891927,-0.9213483334,-0.9212139249,-0.9212139249,-0.9212139249,-0.9224236012,-0.9253807068,-0.9282032847,-0.9296818376,-0.930085063,-0.9299506545,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.930085063,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.9295474291,-0.9291442037,-0.9295474291,-0.9296818376,-0.9294130206,-0.929816246,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9303538799,-0.930085063,-0.9299506545,-0.929816246,-0.9295474291,-0.9296818376,-0.929816246],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9302194715,-0.9292786121,-0.9294130206,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9295474291,-0.9292786121,-0.9284721017,-0.9255151153,-0.9225580096,-0.9230956435,-0.9241709113,-0.9210795164,-0.917719245,-0.9193321466,-0.9224236012,-0.9228268266,-0.9243053794,-0.9279344678,-0.9287409782,-0.9257839322,-0.9233644605,-0.9230956435,-0.9234988689,-0.923230052,-0.9230956435,-0.923230052,-0.923230052,-0.9230956435,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.9230956435,-0.922961235,-0.9228268266,-0.9228268266,-0.922961235,-0.9230956435,-0.9228268266,-0.9226924181,-0.9228268266,-0.9226924181,-0.9224236012,-0.9228268266,-0.9234988689,-0.9237676859,-0.9237676859,-0.9241709113,-0.9244397879,-0.9245741963,-0.9244397879,-0.9241709113,-0.9240365028,-0.9239020944,-0.9237676859,-0.9234988689,-0.923230052,-0.9230956435,-0.9228268266,-0.9226924181,-0.9224236012,-0.9221547842,-0.9218859673,-0.9218859673,-0.9218859673,-0.9217515588,-0.9217515588,-0.9217515588,-0.9218859673,-0.9221547842,-0.9222891927,-0.9222891927,-0.9221547842,-0.9218859673,-0.9218859673,-0.9218859673,-0.9218859673,-0.9218859673,-0.9218859673,-0.9216171503,-0.9214827418,-0.9214827418,-0.9214827418,-0.9213483334,-0.9212139249,-0.9212139249,-0.9213483334,-0.9212139249,-0.9212139249,-0.9218859673,-0.9228268266,-0.922961235,-0.9221547842,-0.9214827418,-0.9213483334,-0.9212139249,-0.9208106995,-0.9208106995,-0.9210795164,-0.9213483334,-0.9213483334,-0.9210795164,-0.9209451079,-0.9208106995,-0.9210795164,-0.9216171503,-0.9218859673,-0.9218859673,-0.9218859673,-0.9218859673,-0.9217515588,-0.9216171503,-0.9216171503,-0.9218859673,-0.9220203757,-0.9218859673,-0.9214827418,-0.9214827418,-0.9214827418,-0.9213483334,-0.9212139249,-0.9212139249,-0.9213483334,-0.9213483334,-0.9216171503,-0.9220203757,-0.9221547842,-0.9220203757,-0.9221547842,-0.9226924181,-0.9225580096,-0.9225580096,-0.9234988689,-0.9244397879,-0.9243053794,-0.9237676859,-0.9233644605,-0.9230956435,-0.922961235,-0.922961235,-0.9226924181,-0.9221547842,-0.9220203757,-0.9221547842,-0.922961235,-0.9234988689,-0.9236332774,-0.9236332774,-0.9237676859,-0.9239020944,-0.9240365028,-0.9240365028,-0.9240365028,-0.9239020944,-0.9236332774,-0.9239020944,-0.9239020944,-0.9234988689,-0.9240365028,-0.9259183407,-0.9280688763,-0.9291442037,-0.9278000593,-0.9247086048,-0.9218859673,-0.9205418825,-0.9209451079,-0.9222891927,-0.9224236012,-0.9214827418,-0.9210795164,-0.9209451079,-0.9208106995,-0.9214827418,-0.9224236012,-0.9243053794,-0.9272624254,-0.9292786121,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9299506545,-0.9299506545,-0.9295474291,-0.9292786121,-0.9296818376,-0.929816246,-0.929816246,-0.930085063,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9303538799,-0.9299506545,-0.930085063,-0.929816246,-0.9295474291,-0.9296818376,-0.929816246],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.930085063,-0.9294130206,-0.9296818376,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9302194715,-0.9295474291,-0.9292786121,-0.9286065698,-0.9259183407,-0.9230956435,-0.9230956435,-0.9241709113,-0.9225580096,-0.9201386571,-0.9205418825,-0.9222891927,-0.9233644605,-0.9253807068,-0.9283376932,-0.9282032847,-0.9253807068,-0.9234988689,-0.9233644605,-0.9233644605,-0.9230956435,-0.922961235,-0.9230956435,-0.923230052,-0.9230956435,-0.922961235,-0.9226924181,-0.9226924181,-0.922961235,-0.9230956435,-0.9230956435,-0.922961235,-0.922961235,-0.922961235,-0.9228268266,-0.9225580096,-0.9225580096,-0.9226924181,-0.9225580096,-0.9224236012,-0.9228268266,-0.9234988689,-0.9237676859,-0.9237676859,-0.9240365028,-0.9243053794,-0.9244397879,-0.9244397879,-0.9241709113,-0.9239020944,-0.9239020944,-0.9236332774,-0.923230052,-0.922961235,-0.922961235,-0.9228268266,-0.9226924181,-0.9225580096,-0.9222891927,-0.9220203757,-0.9218859673,-0.9217515588,-0.9216171503,-0.9216171503,-0.9217515588,-0.9220203757,-0.9222891927,-0.9225580096,-0.9224236012,-0.9220203757,-0.9218859673,-0.9218859673,-0.9217515588,-0.9218859673,-0.9217515588,-0.9216171503,-0.9214827418,-0.9214827418,-0.9214827418,-0.9213483334,-0.9212139249,-0.9212139249,-0.9213483334,-0.9213483334,-0.9213483334,-0.9214827418,-0.9217515588,-0.9224236012,-0.9226924181,-0.9220203757,-0.9213483334,-0.9213483334,-0.9213483334,-0.9208106995,-0.920676291,-0.9210795164,-0.9214827418,-0.9214827418,-0.9212139249,-0.9210795164,-0.9209451079,-0.9210795164,-0.9213483334,-0.9214827418,-0.9217515588,-0.9218859673,-0.9218859673,-0.9218859673,-0.9217515588,-0.9218859673,-0.9221547842,-0.9221547842,-0.9216171503,-0.9216171503,-0.9217515588,-0.9216171503,-0.9213483334,-0.9213483334,-0.9213483334,-0.9213483334,-0.9213483334,-0.9214827418,-0.9216171503,-0.9218859673,-0.9220203757,-0.9221547842,-0.9225580096,-0.9225580096,-0.9226924181,-0.9233644605,-0.9236332774,-0.923230052,-0.922961235,-0.9230956435,-0.9230956435,-0.922961235,-0.9228268266,-0.9225580096,-0.9224236012,-0.9225580096,-0.9228268266,-0.9230956435,-0.923230052,-0.9234988689,-0.9237676859,-0.9237676859,-0.9240365028,-0.9245741963,-0.9247086048,-0.9239020944,-0.923230052,-0.923230052,-0.9237676859,-0.9240365028,-0.9237676859,-0.9239020944,-0.9255151153,-0.9276656508,-0.9290097952,-0.9287409782,-0.9259183407,-0.9224236012,-0.9209451079,-0.9213483334,-0.9220203757,-0.9210795164,-0.9198697805,-0.9202730656,-0.920676291,-0.920407474,-0.9212139249,-0.9221547842,-0.9230956435,-0.9257839322,-0.9288753867,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9303538799,-0.9303538799,-0.9304882884,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.9304882884,-0.9299506545,-0.929816246,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9299506545,-0.9299506545,-0.9296818376,-0.930085063,-0.9299506545,-0.929816246,-0.929816246,-0.9294130206],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9302194715,-0.9299506545,-0.9302194715,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.930085063,-0.9296818376,-0.9292786121,-0.9286065698,-0.9260527492,-0.922961235,-0.9225580096,-0.9239020944,-0.9240365028,-0.922961235,-0.9222891927,-0.9222891927,-0.9236332774,-0.9264559746,-0.9287409782,-0.9278000593,-0.9249774814,-0.9234988689,-0.923230052,-0.9230956435,-0.922961235,-0.922961235,-0.9230956435,-0.923230052,-0.923230052,-0.9230956435,-0.9228268266,-0.9226924181,-0.9228268266,-0.9230956435,-0.9230956435,-0.9228268266,-0.9228268266,-0.922961235,-0.9228268266,-0.9224236012,-0.9224236012,-0.9226924181,-0.9226924181,-0.9224236012,-0.9226924181,-0.9233644605,-0.9237676859,-0.9239020944,-0.9240365028,-0.9241709113,-0.9241709113,-0.9241709113,-0.9241709113,-0.9240365028,-0.9237676859,-0.9237676859,-0.9234988689,-0.9230956435,-0.9228268266,-0.9225580096,-0.9225580096,-0.9225580096,-0.9224236012,-0.9220203757,-0.9216171503,-0.9217515588,-0.9217515588,-0.9217515588,-0.9218859673,-0.9221547842,-0.9224236012,-0.9224236012,-0.9224236012,-0.9221547842,-0.9220203757,-0.9218859673,-0.9218859673,-0.9218859673,-0.9217515588,-0.9214827418,-0.9214827418,-0.9214827418,-0.9216171503,-0.9214827418,-0.9214827418,-0.9213483334,-0.9213483334,-0.9213483334,-0.9214827418,-0.9216171503,-0.9217515588,-0.9220203757,-0.9222891927,-0.9218859673,-0.9214827418,-0.9213483334,-0.9213483334,-0.9212139249,-0.9209451079,-0.9212139249,-0.9214827418,-0.9214827418,-0.9213483334,-0.9213483334,-0.9214827418,-0.9216171503,-0.9214827418,-0.9213483334,-0.9214827418,-0.9217515588,-0.9220203757,-0.9220203757,-0.9218859673,-0.9220203757,-0.9222891927,-0.9221547842,-0.9217515588,-0.9216171503,-0.9216171503,-0.9214827418,-0.9214827418,-0.9214827418,-0.9214827418,-0.9213483334,-0.9213483334,-0.9214827418,-0.9214827418,-0.9217515588,-0.9220203757,-0.9221547842,-0.9222891927,-0.9222891927,-0.9222891927,-0.9225580096,-0.9222891927,-0.9214827418,-0.9216171503,-0.9225580096,-0.9230956435,-0.9228268266,-0.9224236012,-0.9224236012,-0.9225580096,-0.9226924181,-0.9228268266,-0.922961235,-0.922961235,-0.922961235,-0.9230956435,-0.9236332774,-0.9237676859,-0.9237676859,-0.9236332774,-0.9234988689,-0.9234988689,-0.9234988689,-0.9236332774,-0.9240365028,-0.9236332774,-0.9236332774,-0.9251118898,-0.9273968339,-0.9288753867,-0.9290097952,-0.9269936085,-0.9234988689,-0.9214827418,-0.9213483334,-0.9214827418,-0.9205418825,-0.9193321466,-0.9196009636,-0.9201386571,-0.9198697805,-0.920676291,-0.9221547842,-0.922961235,-0.9248430729,-0.9280688763,-0.9299506545,-0.9303538799,-0.9303538799,-0.930085063,-0.929816246,-0.930085063,-0.9302194715,-0.9303538799,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.930085063,-0.9302194715,-0.9304882884,-0.9304882884,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.9303538799,-0.9302194715,-0.9299506545,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.9303538799,-0.9304882884,-0.9303538799,-0.929816246,-0.929816246,-0.930085063,-0.9302194715,-0.9299506545,-0.9296818376,-0.9299506545,-0.9295474291],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9294130206,-0.9288753867,-0.9299506545,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.929816246,-0.9292786121,-0.9287409782,-0.9263215661,-0.923230052,-0.9224236012,-0.9236332774,-0.9244397879,-0.9239020944,-0.9226924181,-0.9222891927,-0.9240365028,-0.9271280169,-0.9288753867,-0.9272624254,-0.9244397879,-0.9230956435,-0.9230956435,-0.922961235,-0.9228268266,-0.9228268266,-0.922961235,-0.9230956435,-0.923230052,-0.923230052,-0.9230956435,-0.922961235,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.922961235,-0.9228268266,-0.9225580096,-0.9224236012,-0.9226924181,-0.9226924181,-0.9225580096,-0.9228268266,-0.9233644605,-0.9237676859,-0.9239020944,-0.9240365028,-0.9241709113,-0.9240365028,-0.9240365028,-0.9240365028,-0.9240365028,-0.9237676859,-0.9234988689,-0.9233644605,-0.9230956435,-0.9228268266,-0.9225580096,-0.9224236012,-0.9224236012,-0.9222891927,-0.9221547842,-0.9220203757,-0.9220203757,-0.9220203757,-0.9218859673,-0.9220203757,-0.9221547842,-0.9222891927,-0.9222891927,-0.9221547842,-0.9218859673,-0.9218859673,-0.9220203757,-0.9218859673,-0.9216171503,-0.9216171503,-0.9217515588,-0.9216171503,-0.9216171503,-0.9214827418,-0.9214827418,-0.9214827418,-0.9213483334,-0.9212139249,-0.9213483334,-0.9214827418,-0.9216171503,-0.9217515588,-0.9218859673,-0.9218859673,-0.9218859673,-0.9214827418,-0.9212139249,-0.9210795164,-0.9212139249,-0.9213483334,-0.9214827418,-0.9214827418,-0.9216171503,-0.9214827418,-0.9214827418,-0.9214827418,-0.9214827418,-0.9216171503,-0.9214827418,-0.9214827418,-0.9216171503,-0.9218859673,-0.9221547842,-0.9222891927,-0.9221547842,-0.9221547842,-0.9221547842,-0.9220203757,-0.9218859673,-0.9217515588,-0.9216171503,-0.9214827418,-0.9214827418,-0.9214827418,-0.9213483334,-0.9212139249,-0.9213483334,-0.9214827418,-0.9216171503,-0.9218859673,-0.9220203757,-0.9222891927,-0.9222891927,-0.9222891927,-0.9221547842,-0.9224236012,-0.9224236012,-0.9224236012,-0.9226924181,-0.922961235,-0.9225580096,-0.9222891927,-0.9224236012,-0.9226924181,-0.9228268266,-0.922961235,-0.9230956435,-0.9230956435,-0.922961235,-0.923230052,-0.9237676859,-0.9237676859,-0.9234988689,-0.923230052,-0.9233644605,-0.9234988689,-0.9233644605,-0.9233644605,-0.9234988689,-0.9234988689,-0.9236332774,-0.9251118898,-0.9272624254,-0.9286065698,-0.9288753867,-0.9275312424,-0.9245741963,-0.9221547842,-0.9213483334,-0.9213483334,-0.9216171503,-0.9214827418,-0.9209451079,-0.9200042486,-0.9191977382,-0.9197353721,-0.9217515588,-0.922961235,-0.9243053794,-0.9271280169,-0.9295474291,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9303538799,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9299506545,-0.9299506545,-0.9302194715,-0.9303538799,-0.9302194715,-0.9299506545,-0.9302194715,-0.9302194715,-0.9303538799,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.929816246,-0.9299506545,-0.9296818376],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9283376932,-0.9272624254,-0.9294130206,-0.929816246,-0.9302194715,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9299506545,-0.9294130206,-0.9288753867,-0.9264559746,-0.9236332774,-0.922961235,-0.9240365028,-0.9244397879,-0.9234988689,-0.9224236012,-0.9224236012,-0.9245741963,-0.9278000593,-0.9290097952,-0.9268592,-0.9240365028,-0.9230956435,-0.923230052,-0.9230956435,-0.9228268266,-0.922961235,-0.923230052,-0.923230052,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.922961235,-0.9230956435,-0.9230956435,-0.9228268266,-0.9228268266,-0.922961235,-0.922961235,-0.9226924181,-0.9225580096,-0.9228268266,-0.922961235,-0.9225580096,-0.9225580096,-0.923230052,-0.9236332774,-0.9236332774,-0.9237676859,-0.9240365028,-0.9241709113,-0.9240365028,-0.9239020944,-0.9239020944,-0.9237676859,-0.9234988689,-0.923230052,-0.9230956435,-0.9228268266,-0.9226924181,-0.9226924181,-0.9225580096,-0.9222891927,-0.9220203757,-0.9218859673,-0.9218859673,-0.9220203757,-0.9218859673,-0.9218859673,-0.9220203757,-0.9221547842,-0.9221547842,-0.9220203757,-0.9218859673,-0.9218859673,-0.9220203757,-0.9218859673,-0.9217515588,-0.9217515588,-0.9217515588,-0.9217515588,-0.9216171503,-0.9214827418,-0.9214827418,-0.9213483334,-0.9212139249,-0.9212139249,-0.9212139249,-0.9213483334,-0.9214827418,-0.9217515588,-0.9218859673,-0.9218859673,-0.9217515588,-0.9216171503,-0.9213483334,-0.9210795164,-0.9210795164,-0.9212139249,-0.9213483334,-0.9213483334,-0.9213483334,-0.9214827418,-0.9216171503,-0.9216171503,-0.9217515588,-0.9217515588,-0.9217515588,-0.9214827418,-0.9214827418,-0.9216171503,-0.9218859673,-0.9221547842,-0.9222891927,-0.9221547842,-0.9221547842,-0.9220203757,-0.9220203757,-0.9218859673,-0.9216171503,-0.9214827418,-0.9212139249,-0.9213483334,-0.9213483334,-0.9212139249,-0.9213483334,-0.9216171503,-0.9217515588,-0.9217515588,-0.9218859673,-0.9221547842,-0.9222891927,-0.9221547842,-0.9221547842,-0.9226924181,-0.922961235,-0.9228268266,-0.9225580096,-0.9225580096,-0.9224236012,-0.9222891927,-0.9224236012,-0.9228268266,-0.9230956435,-0.923230052,-0.922961235,-0.9230956435,-0.923230052,-0.9233644605,-0.9234988689,-0.9236332774,-0.9236332774,-0.9236332774,-0.9236332774,-0.9234988689,-0.9233644605,-0.9233644605,-0.9234988689,-0.9236332774,-0.9240365028,-0.9251118898,-0.9271280169,-0.9286065698,-0.9290097952,-0.9279344678,-0.9252462983,-0.9226924181,-0.9214827418,-0.9213483334,-0.9218859673,-0.9226924181,-0.9220203757,-0.9198697805,-0.9185256958,-0.9190633297,-0.9209451079,-0.9226924181,-0.9240365028,-0.9264559746,-0.9291442037,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9299506545,-0.929816246,-0.9302194715,-0.9303538799,-0.930085063,-0.929816246,-0.9299506545,-0.929816246,-0.930085063,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.929816246,-0.9302194715,-0.9303538799,-0.9302194715,-0.9299506545,-0.9299506545,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9296818376,-0.9290097952],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9282032847,-0.9275312424,-0.9299506545,-0.9296818376,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9299506545,-0.930085063,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9299506545,-0.9292786121,-0.9287409782,-0.9260527492,-0.9233644605,-0.923230052,-0.9243053794,-0.9245741963,-0.9233644605,-0.9221547842,-0.9225580096,-0.9253807068,-0.9287409782,-0.9292786121,-0.9264559746,-0.9237676859,-0.9230956435,-0.9233644605,-0.9230956435,-0.922961235,-0.9228268266,-0.9228268266,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.9230956435,-0.923230052,-0.9230956435,-0.9228268266,-0.9228268266,-0.922961235,-0.9226924181,-0.9225580096,-0.9228268266,-0.9230956435,-0.922961235,-0.9226924181,-0.9230956435,-0.9236332774,-0.9236332774,-0.9236332774,-0.9239020944,-0.9239020944,-0.9239020944,-0.9237676859,-0.9237676859,-0.9234988689,-0.9233644605,-0.9233644605,-0.922961235,-0.9226924181,-0.9226924181,-0.9225580096,-0.9224236012,-0.9222891927,-0.9220203757,-0.9218859673,-0.9218859673,-0.9220203757,-0.9220203757,-0.9220203757,-0.9220203757,-0.9221547842,-0.9221547842,-0.9221547842,-0.9220203757,-0.9220203757,-0.9220203757,-0.9220203757,-0.9220203757,-0.9218859673,-0.9217515588,-0.9216171503,-0.9214827418,-0.9213483334,-0.9212139249,-0.9212139249,-0.9212139249,-0.9212139249,-0.9213483334,-0.9213483334,-0.9213483334,-0.9214827418,-0.9217515588,-0.9218859673,-0.9217515588,-0.9216171503,-0.9216171503,-0.9213483334,-0.9210795164,-0.9210795164,-0.9212139249,-0.9212139249,-0.9212139249,-0.9213483334,-0.9214827418,-0.9217515588,-0.9218859673,-0.9218859673,-0.9218859673,-0.9216171503,-0.9216171503,-0.9217515588,-0.9217515588,-0.9218859673,-0.9220203757,-0.9221547842,-0.9221547842,-0.9220203757,-0.9218859673,-0.9216171503,-0.9214827418,-0.9214827418,-0.9214827418,-0.9213483334,-0.9213483334,-0.9213483334,-0.9214827418,-0.9217515588,-0.9218859673,-0.9217515588,-0.9217515588,-0.9220203757,-0.9222891927,-0.9222891927,-0.9222891927,-0.9225580096,-0.9228268266,-0.9226924181,-0.9224236012,-0.9224236012,-0.9224236012,-0.9224236012,-0.9226924181,-0.9228268266,-0.922961235,-0.9230956435,-0.9230956435,-0.923230052,-0.9233644605,-0.9233644605,-0.923230052,-0.923230052,-0.9234988689,-0.9236332774,-0.9236332774,-0.9234988689,-0.9236332774,-0.9236332774,-0.9237676859,-0.9239020944,-0.9240365028,-0.9251118898,-0.9269936085,-0.9286065698,-0.9291442037,-0.9284721017,-0.9259183407,-0.922961235,-0.9216171503,-0.9209451079,-0.920676291,-0.9212139249,-0.9212139249,-0.9197353721,-0.9182568789,-0.9186601043,-0.920676291,-0.9226924181,-0.9240365028,-0.9260527492,-0.9287409782,-0.9302194715,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.930085063,-0.9299506545,-0.9302194715,-0.9303538799,-0.930085063,-0.929816246,-0.9299506545,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.929816246,-0.929816246,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.930085063,-0.9295474291,-0.9292786121],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9279344678,-0.9273968339,-0.9302194715,-0.9294130206,-0.9302194715,-0.9303538799,-0.930085063,-0.9303538799,-0.9303538799,-0.930085063,-0.930085063,-0.9302194715,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9299506545,-0.9292786121,-0.9283376932,-0.9252462983,-0.9228268266,-0.9230956435,-0.9244397879,-0.9247086048,-0.9233644605,-0.9218859673,-0.922961235,-0.9263215661,-0.9288753867,-0.9286065698,-0.9261871576,-0.9239020944,-0.9233644605,-0.9234988689,-0.923230052,-0.9230956435,-0.9230956435,-0.9228268266,-0.9226924181,-0.9228268266,-0.9228268266,-0.9226924181,-0.9228268266,-0.9228268266,-0.9226924181,-0.9225580096,-0.9225580096,-0.9225580096,-0.9226924181,-0.922961235,-0.922961235,-0.9226924181,-0.9226924181,-0.9230956435,-0.922961235,-0.9226924181,-0.922961235,-0.9233644605,-0.9236332774,-0.9236332774,-0.9237676859,-0.9237676859,-0.9236332774,-0.9236332774,-0.9236332774,-0.9234988689,-0.9233644605,-0.923230052,-0.922961235,-0.9225580096,-0.9224236012,-0.9224236012,-0.9222891927,-0.9221547842,-0.9220203757,-0.9218859673,-0.9218859673,-0.9218859673,-0.9216171503,-0.9216171503,-0.9217515588,-0.9218859673,-0.9221547842,-0.9221547842,-0.9221547842,-0.9220203757,-0.9220203757,-0.9221547842,-0.9222891927,-0.9220203757,-0.9217515588,-0.9216171503,-0.9214827418,-0.9213483334,-0.9213483334,-0.9213483334,-0.9213483334,-0.9212139249,-0.9213483334,-0.9214827418,-0.9213483334,-0.9212139249,-0.9213483334,-0.9214827418,-0.9213483334,-0.9213483334,-0.9214827418,-0.9213483334,-0.9212139249,-0.9210795164,-0.9212139249,-0.9212139249,-0.9212139249,-0.9212139249,-0.9213483334,-0.9214827418,-0.9216171503,-0.9217515588,-0.9218859673,-0.9218859673,-0.9218859673,-0.9218859673,-0.9218859673,-0.9218859673,-0.9216171503,-0.9216171503,-0.9218859673,-0.9220203757,-0.9218859673,-0.9214827418,-0.9213483334,-0.9213483334,-0.9214827418,-0.9214827418,-0.9214827418,-0.9214827418,-0.9214827418,-0.9214827418,-0.9217515588,-0.9218859673,-0.9218859673,-0.9221547842,-0.9222891927,-0.9222891927,-0.9222891927,-0.9225580096,-0.9226924181,-0.9225580096,-0.9224236012,-0.9224236012,-0.9225580096,-0.9226924181,-0.9228268266,-0.9230956435,-0.9230956435,-0.9230956435,-0.923230052,-0.923230052,-0.923230052,-0.9230956435,-0.923230052,-0.923230052,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.9234988689,-0.9237676859,-0.9240365028,-0.9239020944,-0.9247086048,-0.9265903831,-0.9284721017,-0.9291442037,-0.9286065698,-0.9264559746,-0.9236332774,-0.9220203757,-0.9208106995,-0.9193321466,-0.9194665551,-0.9205418825,-0.9201386571,-0.9187945127,-0.9187945127,-0.920676291,-0.9226924181,-0.9240365028,-0.9257839322,-0.9284721017,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9299506545,-0.9296818376,-0.9296818376,-0.9295474291,-0.9287409782],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.9278000593,-0.9279344678,-0.929816246,-0.9291442037,-0.9302194715,-0.9303538799,-0.930085063,-0.9303538799,-0.9302194715,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9304882884,-0.9303538799,-0.9304882884,-0.929816246,-0.9290097952,-0.9280688763,-0.9245741963,-0.9222891927,-0.9233644605,-0.9251118898,-0.9248430729,-0.9230956435,-0.9220203757,-0.9230956435,-0.9264559746,-0.9292786121,-0.9276656508,-0.9236332774,-0.9221547842,-0.9230956435,-0.9236332774,-0.9234988689,-0.9233644605,-0.923230052,-0.9230956435,-0.9228268266,-0.9225580096,-0.9228268266,-0.922961235,-0.922961235,-0.922961235,-0.9228268266,-0.9225580096,-0.9224236012,-0.9224236012,-0.9225580096,-0.922961235,-0.9230956435,-0.9226924181,-0.9225580096,-0.9228268266,-0.9228268266,-0.9225580096,-0.9228268266,-0.9233644605,-0.9234988689,-0.9234988689,-0.9236332774,-0.9237676859,-0.9234988689,-0.9234988689,-0.9234988689,-0.9234988689,-0.9233644605,-0.9230956435,-0.9228268266,-0.9225580096,-0.9224236012,-0.9222891927,-0.9221547842,-0.9220203757,-0.9218859673,-0.9218859673,-0.9217515588,-0.9214827418,-0.9210795164,-0.9209451079,-0.9209451079,-0.9210795164,-0.9216171503,-0.9218859673,-0.9217515588,-0.9217515588,-0.9221547842,-0.9222891927,-0.9221547842,-0.9220203757,-0.9217515588,-0.9216171503,-0.9214827418,-0.9213483334,-0.9213483334,-0.9213483334,-0.9212139249,-0.9212139249,-0.9213483334,-0.9214827418,-0.9214827418,-0.9212139249,-0.9210795164,-0.9210795164,-0.9212139249,-0.9212139249,-0.9214827418,-0.9213483334,-0.9210795164,-0.9210795164,-0.9212139249,-0.9210795164,-0.9210795164,-0.9210795164,-0.9213483334,-0.9216171503,-0.9217515588,-0.9217515588,-0.9218859673,-0.9220203757,-0.9221547842,-0.9221547842,-0.9220203757,-0.9218859673,-0.9216171503,-0.9214827418,-0.9214827418,-0.9216171503,-0.9216171503,-0.9214827418,-0.9212139249,-0.9212139249,-0.9213483334,-0.9214827418,-0.9214827418,-0.9214827418,-0.9214827418,-0.9214827418,-0.9216171503,-0.9218859673,-0.9221547842,-0.9221547842,-0.9221547842,-0.9222891927,-0.9224236012,-0.9225580096,-0.9225580096,-0.9224236012,-0.9224236012,-0.9224236012,-0.9226924181,-0.9228268266,-0.922961235,-0.922961235,-0.922961235,-0.9230956435,-0.9230956435,-0.9230956435,-0.922961235,-0.922961235,-0.9230956435,-0.9233644605,-0.9234988689,-0.9234988689,-0.9233644605,-0.923230052,-0.923230052,-0.9234988689,-0.9239020944,-0.9241709113,-0.9237676859,-0.9240365028,-0.9260527492,-0.9282032847,-0.9291442037,-0.9290097952,-0.9271280169,-0.9241709113,-0.9224236012,-0.9209451079,-0.9187945127,-0.9185256958,-0.9202730656,-0.920676291,-0.9191977382,-0.9186601043,-0.9202730656,-0.9222891927,-0.9234988689,-0.9252462983,-0.9280688763,-0.9299506545,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9299506545,-0.9295474291,-0.9295474291,-0.9296818376,-0.9280688763],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9302194715,-0.9280688763,-0.9280688763,-0.9299506545,-0.929816246,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.930085063,-0.9302194715,-0.9304882884,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9296818376,-0.9290097952,-0.9280688763,-0.9249774814,-0.9226924181,-0.9236332774,-0.9253807068,-0.9249774814,-0.9230956435,-0.9222891927,-0.9234988689,-0.9268592,-0.9295474291,-0.9269936085,-0.9209451079,-0.9194665551,-0.9225580096,-0.9241709113,-0.923230052,-0.922961235,-0.923230052,-0.9230956435,-0.9228268266,-0.9225580096,-0.9226924181,-0.9230956435,-0.923230052,-0.9230956435,-0.922961235,-0.922961235,-0.9228268266,-0.9226924181,-0.9225580096,-0.9228268266,-0.9230956435,-0.9226924181,-0.9224236012,-0.9225580096,-0.9226924181,-0.9226924181,-0.922961235,-0.923230052,-0.923230052,-0.9233644605,-0.9236332774,-0.9236332774,-0.9234988689,-0.9233644605,-0.9233644605,-0.9230956435,-0.922961235,-0.922961235,-0.9228268266,-0.9226924181,-0.9224236012,-0.9221547842,-0.9221547842,-0.9221547842,-0.9218859673,-0.9216171503,-0.9216171503,-0.9214827418,-0.9210795164,-0.9208106995,-0.920676291,-0.9208106995,-0.9212139249,-0.9217515588,-0.9218859673,-0.9218859673,-0.9222891927,-0.9225580096,-0.9222891927,-0.9218859673,-0.9218859673,-0.9217515588,-0.9213483334,-0.9210795164,-0.9210795164,-0.9212139249,-0.9213483334,-0.9213483334,-0.9214827418,-0.9216171503,-0.9216171503,-0.9216171503,-0.9214827418,-0.9213483334,-0.9213483334,-0.9213483334,-0.9214827418,-0.9213483334,-0.9210795164,-0.9212139249,-0.9213483334,-0.9212139249,-0.9209451079,-0.9210795164,-0.9212139249,-0.9216171503,-0.9218859673,-0.9218859673,-0.9218859673,-0.9220203757,-0.9222891927,-0.9224236012,-0.9222891927,-0.9220203757,-0.9216171503,-0.9213483334,-0.9212139249,-0.9212139249,-0.9213483334,-0.9213483334,-0.9212139249,-0.9210795164,-0.9213483334,-0.9216171503,-0.9216171503,-0.9214827418,-0.9214827418,-0.9214827418,-0.9216171503,-0.9218859673,-0.9221547842,-0.9221547842,-0.9221547842,-0.9224236012,-0.9224236012,-0.9222891927,-0.9224236012,-0.9224236012,-0.9222891927,-0.9224236012,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.922961235,-0.9230956435,-0.9230956435,-0.922961235,-0.922961235,-0.922961235,-0.9230956435,-0.9230956435,-0.923230052,-0.9233644605,-0.9233644605,-0.923230052,-0.9233644605,-0.9236332774,-0.9239020944,-0.9240365028,-0.9237676859,-0.9237676859,-0.9257839322,-0.9278000593,-0.9284721017,-0.9287409782,-0.9273968339,-0.9244397879,-0.9225580096,-0.9212139249,-0.9186601043,-0.917719245,-0.9197353721,-0.9210795164,-0.9196009636,-0.9185256958,-0.9197353721,-0.9218859673,-0.923230052,-0.9245741963,-0.9275312424,-0.929816246,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.930085063,-0.929816246,-0.929816246,-0.929816246,-0.9278000593],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9302194715,-0.9292786121,-0.9295474291,-0.9302194715,-0.9299506545,-0.930085063,-0.930085063,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.930085063,-0.930085063,-0.9303538799,-0.9304882884,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.930085063,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9299506545,-0.9299506545,-0.9299506545,-0.9291442037,-0.9282032847,-0.9255151153,-0.922961235,-0.9230956435,-0.9244397879,-0.9244397879,-0.9230956435,-0.9224236012,-0.9241709113,-0.9275312424,-0.9291442037,-0.9268592,-0.9225580096,-0.9213483334,-0.923230052,-0.9239020944,-0.922961235,-0.9225580096,-0.922961235,-0.922961235,-0.922961235,-0.9226924181,-0.9225580096,-0.9228268266,-0.9230956435,-0.9230956435,-0.9228268266,-0.9225580096,-0.9226924181,-0.922961235,-0.9228268266,-0.922961235,-0.9230956435,-0.9226924181,-0.9222891927,-0.9224236012,-0.9228268266,-0.922961235,-0.9228268266,-0.922961235,-0.9230956435,-0.923230052,-0.9234988689,-0.9234988689,-0.9234988689,-0.9234988689,-0.9233644605,-0.923230052,-0.922961235,-0.9228268266,-0.9226924181,-0.9225580096,-0.9224236012,-0.9222891927,-0.9222891927,-0.9220203757,-0.9218859673,-0.9220203757,-0.9217515588,-0.9212139249,-0.9208106995,-0.9205418825,-0.920676291,-0.9212139249,-0.9214827418,-0.9216171503,-0.9220203757,-0.9225580096,-0.9225580096,-0.9224236012,-0.9221547842,-0.9220203757,-0.9217515588,-0.9216171503,-0.9213483334,-0.9213483334,-0.9214827418,-0.9213483334,-0.9213483334,-0.9213483334,-0.9214827418,-0.9214827418,-0.9216171503,-0.9214827418,-0.9212139249,-0.9212139249,-0.9214827418,-0.9217515588,-0.9216171503,-0.9213483334,-0.9212139249,-0.9212139249,-0.9214827418,-0.9213483334,-0.9212139249,-0.9212139249,-0.9213483334,-0.9213483334,-0.9216171503,-0.9217515588,-0.9218859673,-0.9221547842,-0.9224236012,-0.9224236012,-0.9221547842,-0.9220203757,-0.9218859673,-0.9217515588,-0.9214827418,-0.9213483334,-0.9212139249,-0.9212139249,-0.9210795164,-0.9210795164,-0.9214827418,-0.9217515588,-0.9216171503,-0.9214827418,-0.9216171503,-0.9216171503,-0.9216171503,-0.9217515588,-0.9220203757,-0.9221547842,-0.9221547842,-0.9224236012,-0.9225580096,-0.9222891927,-0.9221547842,-0.9221547842,-0.9222891927,-0.9225580096,-0.9226924181,-0.9224236012,-0.9224236012,-0.9226924181,-0.9230956435,-0.9230956435,-0.922961235,-0.922961235,-0.922961235,-0.9230956435,-0.923230052,-0.923230052,-0.9230956435,-0.9233644605,-0.9233644605,-0.9233644605,-0.9234988689,-0.9236332774,-0.9239020944,-0.9241709113,-0.9236332774,-0.923230052,-0.9251118898,-0.9278000593,-0.9283376932,-0.9286065698,-0.9280688763,-0.9252462983,-0.9228268266,-0.9214827418,-0.9187945127,-0.9170472026,-0.9189289212,-0.9208106995,-0.9198697805,-0.9182568789,-0.9187945127,-0.9209451079,-0.9226924181,-0.9241709113,-0.9269936085,-0.9296818376,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9302194715,-0.9299506545,-0.9299506545,-0.9299506545,-0.9292786121],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9302194715,-0.9295474291,-0.929816246,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9303538799,-0.9303538799,-0.930085063,-0.9302194715,-0.9302194715,-0.9299506545,-0.9299506545,-0.9299506545,-0.9292786121,-0.9282032847,-0.9253807068,-0.922961235,-0.922961235,-0.9241709113,-0.9243053794,-0.923230052,-0.9226924181,-0.9245741963,-0.9278000593,-0.9288753867,-0.9264559746,-0.9239020944,-0.923230052,-0.9236332774,-0.9234988689,-0.923230052,-0.9230956435,-0.922961235,-0.9230956435,-0.9230956435,-0.922961235,-0.9225580096,-0.9226924181,-0.9228268266,-0.9228268266,-0.922961235,-0.922961235,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.922961235,-0.9228268266,-0.9225580096,-0.9224236012,-0.9226924181,-0.922961235,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.923230052,-0.9234988689,-0.9234988689,-0.9234988689,-0.9233644605,-0.9230956435,-0.922961235,-0.9228268266,-0.9226924181,-0.9226924181,-0.9225580096,-0.9224236012,-0.9222891927,-0.9222891927,-0.9221547842,-0.9218859673,-0.9214827418,-0.9213483334,-0.9212139249,-0.9208106995,-0.920676291,-0.9212139249,-0.9217515588,-0.9216171503,-0.9217515588,-0.9222891927,-0.9225580096,-0.9224236012,-0.9222891927,-0.9221547842,-0.9218859673,-0.9216171503,-0.9214827418,-0.9214827418,-0.9214827418,-0.9213483334,-0.9212139249,-0.9213483334,-0.9213483334,-0.9213483334,-0.9214827418,-0.9214827418,-0.9210795164,-0.9210795164,-0.9216171503,-0.9217515588,-0.9214827418,-0.9213483334,-0.9213483334,-0.9213483334,-0.9213483334,-0.9213483334,-0.9213483334,-0.9212139249,-0.9213483334,-0.9213483334,-0.9214827418,-0.9217515588,-0.9218859673,-0.9221547842,-0.9225580096,-0.9224236012,-0.9222891927,-0.9220203757,-0.9220203757,-0.9220203757,-0.9216171503,-0.9212139249,-0.9210795164,-0.9212139249,-0.9210795164,-0.9212139249,-0.9213483334,-0.9214827418,-0.9214827418,-0.9216171503,-0.9217515588,-0.9216171503,-0.9217515588,-0.9218859673,-0.9220203757,-0.9221547842,-0.9222891927,-0.9224236012,-0.9222891927,-0.9220203757,-0.9218859673,-0.9220203757,-0.9221547842,-0.9225580096,-0.9226924181,-0.9225580096,-0.9224236012,-0.9226924181,-0.922961235,-0.9230956435,-0.9230956435,-0.9230956435,-0.923230052,-0.923230052,-0.9233644605,-0.9233644605,-0.9230956435,-0.923230052,-0.9233644605,-0.923230052,-0.9233644605,-0.9233644605,-0.9237676859,-0.9244397879,-0.9234988689,-0.9217515588,-0.9237676859,-0.9278000593,-0.9288753867,-0.9286065698,-0.9284721017,-0.9259183407,-0.922961235,-0.9218859673,-0.9197353721,-0.917450428,-0.9185256958,-0.9202730656,-0.9194665551,-0.9179880619,-0.9181224704,-0.9202730656,-0.9224236012,-0.9239020944,-0.9267247915,-0.9296818376,-0.9302194715,-0.9302194715,-0.9302194715,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.930085063,-0.9290097952],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9295474291,-0.9287409782,-0.9295474291,-0.929816246,-0.9299506545,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.930085063,-0.930085063,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.930085063,-0.929816246,-0.9291442037,-0.9279344678,-0.9252462983,-0.922961235,-0.9230956435,-0.9243053794,-0.9244397879,-0.9233644605,-0.9230956435,-0.9252462983,-0.9280688763,-0.9283376932,-0.9259183407,-0.9234988689,-0.923230052,-0.9237676859,-0.9236332774,-0.9233644605,-0.923230052,-0.9230956435,-0.9230956435,-0.9230956435,-0.922961235,-0.9228268266,-0.9226924181,-0.9228268266,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9226924181,-0.9225580096,-0.9225580096,-0.9228268266,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.923230052,-0.9234988689,-0.9234988689,-0.9233644605,-0.923230052,-0.9230956435,-0.9228268266,-0.9228268266,-0.9226924181,-0.9226924181,-0.9225580096,-0.9224236012,-0.9224236012,-0.9224236012,-0.9220203757,-0.9216171503,-0.9214827418,-0.9213483334,-0.9210795164,-0.9209451079,-0.9209451079,-0.9213483334,-0.9216171503,-0.9217515588,-0.9216171503,-0.9218859673,-0.9222891927,-0.9224236012,-0.9222891927,-0.9221547842,-0.9220203757,-0.9217515588,-0.9214827418,-0.9213483334,-0.9213483334,-0.9214827418,-0.9213483334,-0.9213483334,-0.9213483334,-0.9213483334,-0.9214827418,-0.9214827418,-0.9213483334,-0.9212139249,-0.9216171503,-0.9216171503,-0.9213483334,-0.9213483334,-0.9214827418,-0.9213483334,-0.9213483334,-0.9214827418,-0.9214827418,-0.9213483334,-0.9213483334,-0.9214827418,-0.9213483334,-0.9216171503,-0.9220203757,-0.9224236012,-0.9225580096,-0.9224236012,-0.9222891927,-0.9220203757,-0.9217515588,-0.9217515588,-0.9217515588,-0.9213483334,-0.9210795164,-0.9212139249,-0.9212139249,-0.9212139249,-0.9213483334,-0.9214827418,-0.9216171503,-0.9216171503,-0.9214827418,-0.9216171503,-0.9217515588,-0.9220203757,-0.9220203757,-0.9220203757,-0.9222891927,-0.9224236012,-0.9222891927,-0.9220203757,-0.9218859673,-0.9218859673,-0.9221547842,-0.9224236012,-0.9225580096,-0.9224236012,-0.9225580096,-0.9226924181,-0.9228268266,-0.9230956435,-0.9230956435,-0.9230956435,-0.923230052,-0.923230052,-0.923230052,-0.9230956435,-0.9230956435,-0.923230052,-0.9230956435,-0.922961235,-0.9233644605,-0.9234988689,-0.9234988689,-0.9244397879,-0.9236332774,-0.9205418825,-0.9212139249,-0.9264559746,-0.9290097952,-0.9287409782,-0.9282032847,-0.9257839322,-0.9228268266,-0.9221547842,-0.9210795164,-0.9185256958,-0.9185256958,-0.920407474,-0.9201386571,-0.9185256958,-0.9186601043,-0.920676291,-0.9225580096,-0.9239020944,-0.9265903831,-0.9296818376,-0.9302194715,-0.9303538799,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9304882884,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9291442037],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9292786121,-0.9282032847,-0.9292786121,-0.9299506545,-0.9299506545,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.9296818376,-0.9291442037,-0.9275312424,-0.9247086048,-0.9226924181,-0.922961235,-0.9241709113,-0.9240365028,-0.922961235,-0.922961235,-0.9253807068,-0.9283376932,-0.9280688763,-0.9252462983,-0.9233644605,-0.9233644605,-0.9237676859,-0.9234988689,-0.923230052,-0.923230052,-0.9230956435,-0.922961235,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.922961235,-0.922961235,-0.9228268266,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9225580096,-0.9224236012,-0.9226924181,-0.9228268266,-0.9228268266,-0.9228268266,-0.922961235,-0.922961235,-0.9230956435,-0.9233644605,-0.9234988689,-0.9233644605,-0.923230052,-0.9230956435,-0.9228268266,-0.9226924181,-0.9226924181,-0.9225580096,-0.9224236012,-0.9224236012,-0.9222891927,-0.9221547842,-0.9220203757,-0.9218859673,-0.9213483334,-0.9208106995,-0.9205418825,-0.9209451079,-0.9213483334,-0.9214827418,-0.9214827418,-0.9216171503,-0.9218859673,-0.9221547842,-0.9222891927,-0.9222891927,-0.9221547842,-0.9220203757,-0.9217515588,-0.9217515588,-0.9214827418,-0.9214827418,-0.9214827418,-0.9214827418,-0.9213483334,-0.9212139249,-0.9213483334,-0.9214827418,-0.9214827418,-0.9214827418,-0.9213483334,-0.9213483334,-0.9214827418,-0.9214827418,-0.9213483334,-0.9212139249,-0.9212139249,-0.9212139249,-0.9212139249,-0.9213483334,-0.9214827418,-0.9213483334,-0.9213483334,-0.9213483334,-0.9213483334,-0.9217515588,-0.9221547842,-0.9222891927,-0.9221547842,-0.9221547842,-0.9221547842,-0.9218859673,-0.9216171503,-0.9214827418,-0.9216171503,-0.9216171503,-0.9213483334,-0.9212139249,-0.9212139249,-0.9212139249,-0.9213483334,-0.9216171503,-0.9216171503,-0.9216171503,-0.9216171503,-0.9216171503,-0.9217515588,-0.9218859673,-0.9218859673,-0.9220203757,-0.9222891927,-0.9224236012,-0.9221547842,-0.9220203757,-0.9220203757,-0.9220203757,-0.9221547842,-0.9224236012,-0.9224236012,-0.9225580096,-0.9226924181,-0.9228268266,-0.9228268266,-0.922961235,-0.922961235,-0.922961235,-0.9230956435,-0.9230956435,-0.922961235,-0.922961235,-0.9230956435,-0.923230052,-0.9230956435,-0.923230052,-0.9234988689,-0.9234988689,-0.9233644605,-0.9241709113,-0.9237676859,-0.9205418825,-0.9202730656,-0.9253807068,-0.9290097952,-0.9291442037,-0.9284721017,-0.9261871576,-0.922961235,-0.9221547842,-0.9217515588,-0.9196009636,-0.9190633297,-0.920407474,-0.9201386571,-0.9185256958,-0.9185256958,-0.920407474,-0.9222891927,-0.9236332774,-0.9264559746,-0.9295474291,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.929816246,-0.9287409782],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9292786121,-0.9287409782,-0.9296818376,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9303538799,-0.929816246,-0.9291442037,-0.9271280169,-0.9240365028,-0.9224236012,-0.922961235,-0.9240365028,-0.9239020944,-0.9226924181,-0.9230956435,-0.9261871576,-0.9288753867,-0.9279344678,-0.9248430729,-0.923230052,-0.9233644605,-0.9234988689,-0.9233644605,-0.9233644605,-0.9233644605,-0.923230052,-0.9230956435,-0.922961235,-0.9226924181,-0.9226924181,-0.9228268266,-0.9228268266,-0.9226924181,-0.9225580096,-0.9224236012,-0.9220203757,-0.9221547842,-0.9225580096,-0.9225580096,-0.9222891927,-0.9224236012,-0.9224236012,-0.9224236012,-0.9224236012,-0.9226924181,-0.922961235,-0.922961235,-0.9230956435,-0.923230052,-0.923230052,-0.923230052,-0.9233644605,-0.923230052,-0.9230956435,-0.922961235,-0.9228268266,-0.9228268266,-0.9226924181,-0.9224236012,-0.9224236012,-0.9224236012,-0.9222891927,-0.9220203757,-0.9217515588,-0.9214827418,-0.9210795164,-0.920676291,-0.9208106995,-0.9212139249,-0.9214827418,-0.9213483334,-0.9212139249,-0.9213483334,-0.9217515588,-0.9220203757,-0.9221547842,-0.9222891927,-0.9221547842,-0.9220203757,-0.9217515588,-0.9216171503,-0.9214827418,-0.9213483334,-0.9212139249,-0.9212139249,-0.9213483334,-0.9212139249,-0.9213483334,-0.9214827418,-0.9214827418,-0.9214827418,-0.9214827418,-0.9214827418,-0.9214827418,-0.9214827418,-0.9214827418,-0.9214827418,-0.9213483334,-0.9212139249,-0.9213483334,-0.9214827418,-0.9214827418,-0.9216171503,-0.9216171503,-0.9214827418,-0.9214827418,-0.9220203757,-0.9222891927,-0.9221547842,-0.9218859673,-0.9218859673,-0.9218859673,-0.9218859673,-0.9216171503,-0.9214827418,-0.9213483334,-0.9214827418,-0.9213483334,-0.9212139249,-0.9212139249,-0.9212139249,-0.9213483334,-0.9216171503,-0.9217515588,-0.9216171503,-0.9217515588,-0.9218859673,-0.9220203757,-0.9218859673,-0.9220203757,-0.9222891927,-0.9224236012,-0.9222891927,-0.9221547842,-0.9220203757,-0.9220203757,-0.9220203757,-0.9221547842,-0.9222891927,-0.9224236012,-0.9225580096,-0.9226924181,-0.9226924181,-0.9228268266,-0.9230956435,-0.923230052,-0.923230052,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.9230956435,-0.923230052,-0.923230052,-0.9233644605,-0.9234988689,-0.9236332774,-0.9236332774,-0.9240365028,-0.9237676859,-0.9216171503,-0.9212139249,-0.9251118898,-0.9287409782,-0.9291442037,-0.9286065698,-0.9267247915,-0.9233644605,-0.9221547842,-0.9218859673,-0.920407474,-0.9197353721,-0.9205418825,-0.9205418825,-0.9193321466,-0.9190633297,-0.9201386571,-0.9216171503,-0.9233644605,-0.9264559746,-0.9295474291,-0.930085063,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.930085063,-0.9302194715,-0.9299506545,-0.9292786121],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9288753867,-0.9283376932,-0.929816246,-0.9296818376,-0.929816246,-0.9299506545,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.9302194715,-0.930085063,-0.9292786121,-0.9271280169,-0.9240365028,-0.9225580096,-0.923230052,-0.9241709113,-0.9236332774,-0.9225580096,-0.9237676859,-0.9273968339,-0.9292786121,-0.9272624254,-0.9243053794,-0.923230052,-0.9234988689,-0.9234988689,-0.923230052,-0.923230052,-0.9233644605,-0.923230052,-0.9230956435,-0.9228268266,-0.9226924181,-0.9226924181,-0.9226924181,-0.9228268266,-0.9228268266,-0.9225580096,-0.9221547842,-0.9221547842,-0.9226924181,-0.922961235,-0.9226924181,-0.9222891927,-0.9222891927,-0.9225580096,-0.9222891927,-0.9222891927,-0.9228268266,-0.9233644605,-0.923230052,-0.9230956435,-0.9230956435,-0.923230052,-0.923230052,-0.923230052,-0.9230956435,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9225580096,-0.9224236012,-0.9224236012,-0.9222891927,-0.9217515588,-0.9216171503,-0.9214827418,-0.9212139249,-0.9212139249,-0.9212139249,-0.9212139249,-0.9212139249,-0.9212139249,-0.9210795164,-0.9213483334,-0.9216171503,-0.9217515588,-0.9220203757,-0.9218859673,-0.9217515588,-0.9216171503,-0.9216171503,-0.9216171503,-0.9216171503,-0.9214827418,-0.9214827418,-0.9213483334,-0.9213483334,-0.9213483334,-0.9214827418,-0.9213483334,-0.9213483334,-0.9213483334,-0.9214827418,-0.9214827418,-0.9216171503,-0.9214827418,-0.9214827418,-0.9214827418,-0.9213483334,-0.9213483334,-0.9213483334,-0.9214827418,-0.9216171503,-0.9217515588,-0.9217515588,-0.9216171503,-0.9214827418,-0.9217515588,-0.9220203757,-0.9220203757,-0.9218859673,-0.9217515588,-0.9214827418,-0.9214827418,-0.9216171503,-0.9216171503,-0.9213483334,-0.9213483334,-0.9212139249,-0.9210795164,-0.9210795164,-0.9212139249,-0.9213483334,-0.9214827418,-0.9214827418,-0.9214827418,-0.9216171503,-0.9220203757,-0.9221547842,-0.9221547842,-0.9222891927,-0.9225580096,-0.9225580096,-0.9222891927,-0.9220203757,-0.9218859673,-0.9220203757,-0.9220203757,-0.9221547842,-0.9222891927,-0.9225580096,-0.9225580096,-0.9225580096,-0.9226924181,-0.9228268266,-0.9230956435,-0.9230956435,-0.9230956435,-0.922961235,-0.922961235,-0.9230956435,-0.9230956435,-0.9230956435,-0.923230052,-0.9233644605,-0.9234988689,-0.9236332774,-0.9237676859,-0.9237676859,-0.9239020944,-0.9239020944,-0.923230052,-0.9236332774,-0.9261871576,-0.9287409782,-0.9294130206,-0.9288753867,-0.9269936085,-0.9237676859,-0.9222891927,-0.9221547842,-0.9210795164,-0.9202730656,-0.9205418825,-0.9208106995,-0.9208106995,-0.9205418825,-0.9205418825,-0.9212139249,-0.923230052,-0.9265903831,-0.9294130206,-0.930085063,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.9303538799,-0.9299506545,-0.9295474291],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9282032847,-0.9279344678,-0.930085063,-0.929816246,-0.9302194715,-0.9304882884,-0.930085063,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9304882884,-0.9299506545,-0.9288753867,-0.9269936085,-0.9236332774,-0.9224236012,-0.9236332774,-0.9245741963,-0.9234988689,-0.9224236012,-0.9244397879,-0.9284721017,-0.9294130206,-0.9264559746,-0.9236332774,-0.923230052,-0.9234988689,-0.9234988689,-0.923230052,-0.9230956435,-0.9233644605,-0.9233644605,-0.922961235,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9228268266,-0.9228268266,-0.9226924181,-0.9225580096,-0.9225580096,-0.9226924181,-0.9228268266,-0.9228268266,-0.9225580096,-0.9224236012,-0.9222891927,-0.9222891927,-0.9225580096,-0.922961235,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.922961235,-0.922961235,-0.9230956435,-0.9230956435,-0.922961235,-0.9228268266,-0.9228268266,-0.9228268266,-0.9226924181,-0.9225580096,-0.9224236012,-0.9222891927,-0.9221547842,-0.9216171503,-0.9212139249,-0.9214827418,-0.9218859673,-0.9217515588,-0.9216171503,-0.9216171503,-0.9217515588,-0.9216171503,-0.9213483334,-0.9213483334,-0.9216171503,-0.9217515588,-0.9217515588,-0.9217515588,-0.9214827418,-0.9213483334,-0.9214827418,-0.9217515588,-0.9217515588,-0.9217515588,-0.9216171503,-0.9214827418,-0.9213483334,-0.9213483334,-0.9214827418,-0.9213483334,-0.9213483334,-0.9213483334,-0.9213483334,-0.9216171503,-0.9217515588,-0.9216171503,-0.9214827418,-0.9213483334,-0.9213483334,-0.9213483334,-0.9214827418,-0.9214827418,-0.9213483334,-0.9214827418,-0.9214827418,-0.9214827418,-0.9214827418,-0.9214827418,-0.9217515588,-0.9217515588,-0.9217515588,-0.9217515588,-0.9213483334,-0.9212139249,-0.9213483334,-0.9214827418,-0.9213483334,-0.9213483334,-0.9214827418,-0.9212139249,-0.9210795164,-0.9210795164,-0.9213483334,-0.9214827418,-0.9214827418,-0.9216171503,-0.9218859673,-0.9220203757,-0.9220203757,-0.9220203757,-0.9224236012,-0.9225580096,-0.9222891927,-0.9218859673,-0.9217515588,-0.9218859673,-0.9220203757,-0.9220203757,-0.9220203757,-0.9222891927,-0.9225580096,-0.9225580096,-0.9225580096,-0.9226924181,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.922961235,-0.9230956435,-0.923230052,-0.923230052,-0.9230956435,-0.922961235,-0.9233644605,-0.9237676859,-0.9239020944,-0.9237676859,-0.9236332774,-0.9237676859,-0.9240365028,-0.9240365028,-0.9247086048,-0.9264559746,-0.9284721017,-0.9296818376,-0.9294130206,-0.9271280169,-0.9240365028,-0.9225580096,-0.9222891927,-0.9210795164,-0.9202730656,-0.9210795164,-0.9212139249,-0.920407474,-0.9201386571,-0.920676291,-0.9214827418,-0.9234988689,-0.9268592,-0.9294130206,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9299506545,-0.9295474291],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9280688763,-0.9275312424,-0.9299506545,-0.9292786121,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9302194715,-0.930085063,-0.930085063,-0.9303538799,-0.930085063,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9299506545,-0.9288753867,-0.9265903831,-0.9230956435,-0.9220203757,-0.9234988689,-0.9245741963,-0.9236332774,-0.9226924181,-0.9248430729,-0.9287409782,-0.9292786121,-0.9259183407,-0.923230052,-0.923230052,-0.9236332774,-0.9234988689,-0.9233644605,-0.923230052,-0.922961235,-0.922961235,-0.922961235,-0.9226924181,-0.9225580096,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9225580096,-0.9226924181,-0.9226924181,-0.9225580096,-0.9225580096,-0.9228268266,-0.9228268266,-0.9226924181,-0.9224236012,-0.9224236012,-0.9225580096,-0.9226924181,-0.9228268266,-0.922961235,-0.9230956435,-0.9230956435,-0.922961235,-0.9228268266,-0.922961235,-0.9230956435,-0.922961235,-0.9228268266,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9222891927,-0.9220203757,-0.9220203757,-0.9217515588,-0.9212139249,-0.9217515588,-0.9222891927,-0.9217515588,-0.9217515588,-0.9228268266,-0.923230052,-0.9221547842,-0.9213483334,-0.9213483334,-0.9216171503,-0.9216171503,-0.9216171503,-0.9217515588,-0.9217515588,-0.9214827418,-0.9216171503,-0.9217515588,-0.9217515588,-0.9216171503,-0.9216171503,-0.9214827418,-0.9213483334,-0.9213483334,-0.9213483334,-0.9214827418,-0.9214827418,-0.9214827418,-0.9214827418,-0.9217515588,-0.9220203757,-0.9217515588,-0.9214827418,-0.9214827418,-0.9216171503,-0.9214827418,-0.9214827418,-0.9216171503,-0.9216171503,-0.9214827418,-0.9214827418,-0.9216171503,-0.9214827418,-0.9216171503,-0.9217515588,-0.9217515588,-0.9216171503,-0.9216171503,-0.9213483334,-0.9210795164,-0.9210795164,-0.9212139249,-0.9213483334,-0.9216171503,-0.9217515588,-0.9216171503,-0.9212139249,-0.9210795164,-0.9212139249,-0.9213483334,-0.9214827418,-0.9216171503,-0.9218859673,-0.9218859673,-0.9218859673,-0.9220203757,-0.9222891927,-0.9224236012,-0.9220203757,-0.9217515588,-0.9217515588,-0.9218859673,-0.9218859673,-0.9218859673,-0.9220203757,-0.9224236012,-0.9225580096,-0.9225580096,-0.9225580096,-0.9228268266,-0.9230956435,-0.9230956435,-0.922961235,-0.922961235,-0.922961235,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.923230052,-0.9236332774,-0.9236332774,-0.9236332774,-0.9234988689,-0.9236332774,-0.9239020944,-0.9239020944,-0.9243053794,-0.9259183407,-0.9282032847,-0.9295474291,-0.9292786121,-0.9269936085,-0.9239020944,-0.9225580096,-0.9222891927,-0.9212139249,-0.9205418825,-0.9212139249,-0.9212139249,-0.9201386571,-0.9197353721,-0.9205418825,-0.9218859673,-0.9241709113,-0.9272624254,-0.9295474291,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9299506545,-0.9302194715],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.9294130206,-0.9292786121,-0.930085063,-0.9299506545,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.930085063,-0.930085063,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9295474291,-0.9287409782,-0.9256495237,-0.9222891927,-0.9217515588,-0.9236332774,-0.9251118898,-0.9243053794,-0.9228268266,-0.9247086048,-0.9288753867,-0.9295474291,-0.9259183407,-0.9230956435,-0.9233644605,-0.9237676859,-0.9234988689,-0.9233644605,-0.9233644605,-0.9233644605,-0.923230052,-0.9230956435,-0.922961235,-0.9228268266,-0.9228268266,-0.9228268266,-0.9226924181,-0.9226924181,-0.9226924181,-0.9225580096,-0.9226924181,-0.9228268266,-0.9225580096,-0.9225580096,-0.9228268266,-0.9228268266,-0.9224236012,-0.9221547842,-0.9222891927,-0.9226924181,-0.9228268266,-0.9228268266,-0.922961235,-0.9228268266,-0.9228268266,-0.9228268266,-0.922961235,-0.922961235,-0.922961235,-0.9226924181,-0.9225580096,-0.9225580096,-0.9224236012,-0.9222891927,-0.9220203757,-0.9216171503,-0.9216171503,-0.9217515588,-0.9216171503,-0.9221547842,-0.9224236012,-0.9216171503,-0.9218859673,-0.9237676859,-0.9241709113,-0.9228268266,-0.9212139249,-0.9210795164,-0.9213483334,-0.9214827418,-0.9214827418,-0.9216171503,-0.9216171503,-0.9217515588,-0.9217515588,-0.9217515588,-0.9216171503,-0.9216171503,-0.9217515588,-0.9217515588,-0.9216171503,-0.9217515588,-0.9217515588,-0.9216171503,-0.9216171503,-0.9214827418,-0.9217515588,-0.9220203757,-0.9218859673,-0.9216171503,-0.9216171503,-0.9216171503,-0.9216171503,-0.9216171503,-0.9216171503,-0.9217515588,-0.9217515588,-0.9217515588,-0.9216171503,-0.9216171503,-0.9217515588,-0.9217515588,-0.9214827418,-0.9214827418,-0.9214827418,-0.9214827418,-0.9213483334,-0.9212139249,-0.9212139249,-0.9213483334,-0.9213483334,-0.9217515588,-0.9220203757,-0.9216171503,-0.9212139249,-0.9212139249,-0.9210795164,-0.9209451079,-0.9213483334,-0.9218859673,-0.9218859673,-0.9217515588,-0.9218859673,-0.9221547842,-0.9222891927,-0.9222891927,-0.9220203757,-0.9220203757,-0.9218859673,-0.9217515588,-0.9217515588,-0.9217515588,-0.9220203757,-0.9224236012,-0.9225580096,-0.9225580096,-0.9225580096,-0.9226924181,-0.922961235,-0.9230956435,-0.922961235,-0.9228268266,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.9233644605,-0.9236332774,-0.9236332774,-0.9236332774,-0.9236332774,-0.9237676859,-0.9239020944,-0.9240365028,-0.9241709113,-0.9255151153,-0.9279344678,-0.9296818376,-0.9294130206,-0.9267247915,-0.9236332774,-0.9224236012,-0.9225580096,-0.9218859673,-0.9210795164,-0.9210795164,-0.9210795164,-0.920407474,-0.9198697805,-0.9202730656,-0.9218859673,-0.9245741963,-0.9278000593,-0.9296818376,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715],[-0.9306226969,-0.9306226969,-0.9306226969,-0.930085063,-0.9284721017,-0.9286065698,-0.929816246,-0.929816246,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9292786121,-0.9282032847,-0.9251118898,-0.9222891927,-0.9221547842,-0.9240365028,-0.9255151153,-0.9245741963,-0.923230052,-0.9252462983,-0.9291442037,-0.9294130206,-0.9260527492,-0.9234988689,-0.9234988689,-0.9237676859,-0.9236332774,-0.9234988689,-0.9233644605,-0.9233644605,-0.9233644605,-0.923230052,-0.9230956435,-0.922961235,-0.922961235,-0.9228268266,-0.9228268266,-0.9228268266,-0.9226924181,-0.9225580096,-0.9225580096,-0.9226924181,-0.9226924181,-0.9224236012,-0.9225580096,-0.9226924181,-0.9224236012,-0.9222891927,-0.9222891927,-0.9222891927,-0.9224236012,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9228268266,-0.922961235,-0.9228268266,-0.9228268266,-0.922961235,-0.9226924181,-0.9224236012,-0.9222891927,-0.9220203757,-0.9217515588,-0.9214827418,-0.9213483334,-0.9216171503,-0.9221547842,-0.9224236012,-0.9224236012,-0.9216171503,-0.9217515588,-0.9234988689,-0.9239020944,-0.9233644605,-0.9220203757,-0.9212139249,-0.9208106995,-0.9208106995,-0.9210795164,-0.9213483334,-0.9216171503,-0.9217515588,-0.9216171503,-0.9216171503,-0.9217515588,-0.9217515588,-0.9218859673,-0.9220203757,-0.9218859673,-0.9218859673,-0.9218859673,-0.9217515588,-0.9214827418,-0.9213483334,-0.9217515588,-0.9221547842,-0.9220203757,-0.9216171503,-0.9214827418,-0.9217515588,-0.9218859673,-0.9218859673,-0.9218859673,-0.9217515588,-0.9217515588,-0.9218859673,-0.9217515588,-0.9216171503,-0.9216171503,-0.9214827418,-0.9212139249,-0.9212139249,-0.9214827418,-0.9213483334,-0.9212139249,-0.9213483334,-0.9214827418,-0.9213483334,-0.9214827418,-0.9217515588,-0.9218859673,-0.9216171503,-0.9210795164,-0.9210795164,-0.9212139249,-0.9209451079,-0.9208106995,-0.9216171503,-0.9221547842,-0.9220203757,-0.9218859673,-0.9220203757,-0.9220203757,-0.9218859673,-0.9218859673,-0.9220203757,-0.9218859673,-0.9217515588,-0.9217515588,-0.9218859673,-0.9221547842,-0.9224236012,-0.9224236012,-0.9224236012,-0.9226924181,-0.9228268266,-0.9226924181,-0.9226924181,-0.9228268266,-0.9228268266,-0.922961235,-0.922961235,-0.9228268266,-0.9228268266,-0.922961235,-0.9230956435,-0.923230052,-0.9234988689,-0.9236332774,-0.9236332774,-0.9236332774,-0.9237676859,-0.9237676859,-0.9239020944,-0.9241709113,-0.9251118898,-0.9271280169,-0.9294130206,-0.9296818376,-0.9268592,-0.9233644605,-0.9222891927,-0.9228268266,-0.9228268266,-0.9222891927,-0.9220203757,-0.9214827418,-0.9209451079,-0.9208106995,-0.920676291,-0.9214827418,-0.9245741963,-0.9280688763,-0.929816246,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.930085063,-0.930085063,-0.930085063,-0.9295474291,-0.930085063],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9295474291,-0.9272624254,-0.9276656508,-0.9296818376,-0.9296818376,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9302194715,-0.9291442037,-0.9278000593,-0.9247086048,-0.9225580096,-0.9226924181,-0.9241709113,-0.9252462983,-0.9244397879,-0.9236332774,-0.9256495237,-0.9291442037,-0.9292786121,-0.9263215661,-0.9236332774,-0.923230052,-0.9234988689,-0.9236332774,-0.9236332774,-0.9234988689,-0.9233644605,-0.9233644605,-0.9233644605,-0.922961235,-0.9228268266,-0.9230956435,-0.9230956435,-0.922961235,-0.9226924181,-0.9226924181,-0.9228268266,-0.9228268266,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9224236012,-0.9221547842,-0.9221547842,-0.9222891927,-0.9222891927,-0.9224236012,-0.9225580096,-0.9225580096,-0.9226924181,-0.9226924181,-0.9228268266,-0.922961235,-0.9228268266,-0.9228268266,-0.9225580096,-0.9222891927,-0.9220203757,-0.9218859673,-0.9218859673,-0.9217515588,-0.9216171503,-0.9218859673,-0.9222891927,-0.9221547842,-0.9220203757,-0.9218859673,-0.9218859673,-0.9228268266,-0.9233644605,-0.923230052,-0.9228268266,-0.9221547842,-0.9208106995,-0.9200042486,-0.9205418825,-0.9210795164,-0.9213483334,-0.9214827418,-0.9214827418,-0.9216171503,-0.9218859673,-0.9217515588,-0.9217515588,-0.9218859673,-0.9217515588,-0.9214827418,-0.9216171503,-0.9218859673,-0.9214827418,-0.9212139249,-0.9216171503,-0.9222891927,-0.9220203757,-0.9214827418,-0.9214827418,-0.9217515588,-0.9217515588,-0.9217515588,-0.9218859673,-0.9218859673,-0.9218859673,-0.9218859673,-0.9217515588,-0.9216171503,-0.9214827418,-0.9213483334,-0.9210795164,-0.9212139249,-0.9216171503,-0.9216171503,-0.9212139249,-0.9210795164,-0.9210795164,-0.9212139249,-0.9216171503,-0.9220203757,-0.9220203757,-0.9217515588,-0.9212139249,-0.9209451079,-0.9210795164,-0.9210795164,-0.920676291,-0.9209451079,-0.9217515588,-0.9221547842,-0.9218859673,-0.9217515588,-0.9217515588,-0.9218859673,-0.9220203757,-0.9218859673,-0.9217515588,-0.9217515588,-0.9218859673,-0.9220203757,-0.9220203757,-0.9222891927,-0.9222891927,-0.9224236012,-0.9225580096,-0.9228268266,-0.9228268266,-0.9226924181,-0.9226924181,-0.9226924181,-0.9228268266,-0.9228268266,-0.922961235,-0.922961235,-0.922961235,-0.9230956435,-0.9230956435,-0.923230052,-0.9233644605,-0.9233644605,-0.9234988689,-0.9234988689,-0.9236332774,-0.9240365028,-0.9243053794,-0.9248430729,-0.9267247915,-0.9292786121,-0.9299506545,-0.9269936085,-0.9233644605,-0.9222891927,-0.9228268266,-0.9228268266,-0.9226924181,-0.9225580096,-0.9221547842,-0.9218859673,-0.9217515588,-0.9210795164,-0.9212139249,-0.9243053794,-0.9283376932,-0.929816246,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9299506545,-0.930085063,-0.9299506545,-0.9292786121,-0.9302194715],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9294130206,-0.9275312424,-0.9283376932,-0.929816246,-0.9299506545,-0.9303538799,-0.9304882884,-0.9304882884,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.929816246,-0.9290097952,-0.9273968339,-0.9243053794,-0.9222891927,-0.9226924181,-0.9243053794,-0.9252462983,-0.9244397879,-0.9241709113,-0.9267247915,-0.9296818376,-0.9292786121,-0.9263215661,-0.9240365028,-0.9233644605,-0.923230052,-0.923230052,-0.923230052,-0.9234988689,-0.9234988689,-0.923230052,-0.922961235,-0.922961235,-0.922961235,-0.9230956435,-0.923230052,-0.9228268266,-0.9225580096,-0.9225580096,-0.9226924181,-0.9226924181,-0.9226924181,-0.9225580096,-0.9225580096,-0.9226924181,-0.9226924181,-0.9224236012,-0.9221547842,-0.9221547842,-0.9222891927,-0.9222891927,-0.9222891927,-0.9224236012,-0.9225580096,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9225580096,-0.9225580096,-0.9224236012,-0.9220203757,-0.9217515588,-0.9218859673,-0.9218859673,-0.9217515588,-0.9217515588,-0.9220203757,-0.9221547842,-0.9221547842,-0.9220203757,-0.9220203757,-0.9220203757,-0.9221547842,-0.9225580096,-0.9222891927,-0.9222891927,-0.9225580096,-0.9216171503,-0.9198697805,-0.9197353721,-0.920676291,-0.9209451079,-0.9210795164,-0.9214827418,-0.9217515588,-0.9218859673,-0.9218859673,-0.9216171503,-0.9216171503,-0.9214827418,-0.9213483334,-0.9214827418,-0.9216171503,-0.9213483334,-0.9212139249,-0.9216171503,-0.9222891927,-0.9221547842,-0.9217515588,-0.9216171503,-0.9217515588,-0.9216171503,-0.9214827418,-0.9216171503,-0.9216171503,-0.9217515588,-0.9217515588,-0.9216171503,-0.9214827418,-0.9214827418,-0.9213483334,-0.9210795164,-0.9212139249,-0.9218859673,-0.9221547842,-0.9214827418,-0.9208106995,-0.9208106995,-0.9210795164,-0.9217515588,-0.9220203757,-0.9218859673,-0.9217515588,-0.9213483334,-0.9208106995,-0.9209451079,-0.9213483334,-0.9209451079,-0.9208106995,-0.9216171503,-0.9221547842,-0.9220203757,-0.9217515588,-0.9217515588,-0.9218859673,-0.9218859673,-0.9218859673,-0.9217515588,-0.9217515588,-0.9217515588,-0.9218859673,-0.9221547842,-0.9222891927,-0.9224236012,-0.9224236012,-0.9224236012,-0.9224236012,-0.9226924181,-0.9228268266,-0.9228268266,-0.9225580096,-0.9225580096,-0.9228268266,-0.9230956435,-0.9230956435,-0.9228268266,-0.9228268266,-0.923230052,-0.923230052,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.9234988689,-0.9240365028,-0.9244397879,-0.9249774814,-0.9265903831,-0.9291442037,-0.930085063,-0.9269936085,-0.923230052,-0.9222891927,-0.9225580096,-0.9222891927,-0.9225580096,-0.9228268266,-0.9222891927,-0.9218859673,-0.9217515588,-0.9209451079,-0.9212139249,-0.9247086048,-0.9291442037,-0.9296818376,-0.9302194715,-0.9302194715,-0.9302194715,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.930085063,-0.9290097952,-0.9303538799],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9288753867,-0.9273968339,-0.9288753867,-0.9299506545,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.930085063,-0.9290097952,-0.9271280169,-0.9241709113,-0.9221547842,-0.9224236012,-0.9241709113,-0.9249774814,-0.9243053794,-0.9243053794,-0.9271280169,-0.929816246,-0.9288753867,-0.9260527492,-0.9243053794,-0.9237676859,-0.9234988689,-0.9230956435,-0.9228268266,-0.9226924181,-0.9230956435,-0.9230956435,-0.922961235,-0.9228268266,-0.922961235,-0.9230956435,-0.922961235,-0.9228268266,-0.9228268266,-0.9226924181,-0.9224236012,-0.9224236012,-0.9225580096,-0.9225580096,-0.9225580096,-0.9226924181,-0.9226924181,-0.9225580096,-0.9225580096,-0.9224236012,-0.9222891927,-0.9222891927,-0.9222891927,-0.9222891927,-0.9224236012,-0.9226924181,-0.9226924181,-0.9225580096,-0.9225580096,-0.9225580096,-0.9224236012,-0.9222891927,-0.9218859673,-0.9216171503,-0.9217515588,-0.9218859673,-0.9216171503,-0.9217515588,-0.9221547842,-0.9224236012,-0.9221547842,-0.9218859673,-0.9218859673,-0.9220203757,-0.9218859673,-0.9213483334,-0.9208106995,-0.9210795164,-0.9220203757,-0.9214827418,-0.9194665551,-0.9190633297,-0.9205418825,-0.9213483334,-0.9212139249,-0.9214827418,-0.9218859673,-0.9218859673,-0.9217515588,-0.9214827418,-0.9213483334,-0.9213483334,-0.9213483334,-0.9213483334,-0.9213483334,-0.9213483334,-0.9213483334,-0.9217515588,-0.9220203757,-0.9216171503,-0.9212139249,-0.9214827418,-0.9216171503,-0.9216171503,-0.9214827418,-0.9214827418,-0.9216171503,-0.9218859673,-0.9218859673,-0.9217515588,-0.9216171503,-0.9216171503,-0.9213483334,-0.9209451079,-0.9214827418,-0.9225580096,-0.9226924181,-0.9214827418,-0.920676291,-0.920676291,-0.9212139249,-0.9216171503,-0.9216171503,-0.9216171503,-0.9217515588,-0.9214827418,-0.9209451079,-0.9210795164,-0.9213483334,-0.9210795164,-0.9210795164,-0.9217515588,-0.9222891927,-0.9220203757,-0.9217515588,-0.9217515588,-0.9216171503,-0.9216171503,-0.9218859673,-0.9220203757,-0.9218859673,-0.9217515588,-0.9220203757,-0.9221547842,-0.9222891927,-0.9222891927,-0.9222891927,-0.9224236012,-0.9224236012,-0.9224236012,-0.9224236012,-0.9225580096,-0.9226924181,-0.9226924181,-0.9228268266,-0.922961235,-0.922961235,-0.922961235,-0.9228268266,-0.922961235,-0.9230956435,-0.923230052,-0.923230052,-0.9233644605,-0.9233644605,-0.9236332774,-0.9239020944,-0.9240365028,-0.9244397879,-0.9259183407,-0.9290097952,-0.930085063,-0.9273968339,-0.9234988689,-0.9221547842,-0.9220203757,-0.9217515588,-0.9224236012,-0.9228268266,-0.9221547842,-0.9217515588,-0.9217515588,-0.9210795164,-0.9220203757,-0.9259183407,-0.929816246,-0.929816246,-0.9304882884,-0.9303538799,-0.9302194715,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9295474291,-0.9304882884],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9288753867,-0.9273968339,-0.9290097952,-0.9299506545,-0.9299506545,-0.930085063,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9299506545,-0.9290097952,-0.9268592,-0.9240365028,-0.9224236012,-0.9226924181,-0.9241709113,-0.9248430729,-0.9243053794,-0.9245741963,-0.9273968339,-0.929816246,-0.9286065698,-0.9257839322,-0.9241709113,-0.9239020944,-0.9236332774,-0.9234988689,-0.9234988689,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.922961235,-0.9230956435,-0.923230052,-0.9230956435,-0.9226924181,-0.9224236012,-0.9224236012,-0.9225580096,-0.9225580096,-0.9224236012,-0.9222891927,-0.9224236012,-0.9224236012,-0.9224236012,-0.9224236012,-0.9222891927,-0.9222891927,-0.9224236012,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9224236012,-0.9224236012,-0.9221547842,-0.9218859673,-0.9217515588,-0.9218859673,-0.9217515588,-0.9214827418,-0.9217515588,-0.9222891927,-0.9224236012,-0.9220203757,-0.9218859673,-0.9218859673,-0.9220203757,-0.9218859673,-0.9214827418,-0.9208106995,-0.920407474,-0.920676291,-0.9212139249,-0.9202730656,-0.9193321466,-0.9198697805,-0.9210795164,-0.9213483334,-0.9213483334,-0.9216171503,-0.9217515588,-0.9216171503,-0.9216171503,-0.9214827418,-0.9213483334,-0.9213483334,-0.9214827418,-0.9214827418,-0.9214827418,-0.9217515588,-0.9218859673,-0.9216171503,-0.9212139249,-0.9212139249,-0.9213483334,-0.9216171503,-0.9216171503,-0.9216171503,-0.9216171503,-0.9217515588,-0.9218859673,-0.9218859673,-0.9217515588,-0.9217515588,-0.9214827418,-0.9213483334,-0.9216171503,-0.9221547842,-0.9222891927,-0.9221547842,-0.9216171503,-0.9212139249,-0.9213483334,-0.9216171503,-0.9217515588,-0.9216171503,-0.9216171503,-0.9217515588,-0.9216171503,-0.9209451079,-0.9209451079,-0.9213483334,-0.9212139249,-0.9210795164,-0.9214827418,-0.9220203757,-0.9218859673,-0.9216171503,-0.9216171503,-0.9217515588,-0.9217515588,-0.9217515588,-0.9218859673,-0.9217515588,-0.9216171503,-0.9217515588,-0.9221547842,-0.9222891927,-0.9222891927,-0.9222891927,-0.9224236012,-0.9224236012,-0.9224236012,-0.9225580096,-0.9226924181,-0.9226924181,-0.9226924181,-0.9228268266,-0.922961235,-0.922961235,-0.9230956435,-0.9230956435,-0.923230052,-0.923230052,-0.9233644605,-0.9234988689,-0.9236332774,-0.9236332774,-0.9239020944,-0.9239020944,-0.9239020944,-0.9243053794,-0.9259183407,-0.9287409782,-0.9299506545,-0.9275312424,-0.9237676859,-0.9222891927,-0.9220203757,-0.9216171503,-0.9222891927,-0.9228268266,-0.9225580096,-0.9224236012,-0.9222891927,-0.9218859673,-0.922961235,-0.9265903831,-0.9299506545,-0.929816246,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.930085063,-0.930085063,-0.9296818376,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9286065698,-0.9279344678,-0.9296818376,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9292786121,-0.9269936085,-0.9243053794,-0.9228268266,-0.922961235,-0.9243053794,-0.9249774814,-0.9243053794,-0.9247086048,-0.9276656508,-0.9296818376,-0.9283376932,-0.9255151153,-0.9241709113,-0.9239020944,-0.9237676859,-0.9236332774,-0.9236332774,-0.9236332774,-0.9233644605,-0.922961235,-0.922961235,-0.9230956435,-0.9230956435,-0.9230956435,-0.923230052,-0.923230052,-0.9230956435,-0.9230956435,-0.9230956435,-0.9228268266,-0.9226924181,-0.9225580096,-0.9224236012,-0.9224236012,-0.9224236012,-0.9222891927,-0.9222891927,-0.9224236012,-0.9224236012,-0.9224236012,-0.9222891927,-0.9222891927,-0.9224236012,-0.9224236012,-0.9224236012,-0.9225580096,-0.9224236012,-0.9224236012,-0.9224236012,-0.9221547842,-0.9218859673,-0.9218859673,-0.9218859673,-0.9217515588,-0.9213483334,-0.9214827418,-0.9220203757,-0.9222891927,-0.9221547842,-0.9220203757,-0.9218859673,-0.9218859673,-0.9218859673,-0.9217515588,-0.9216171503,-0.9210795164,-0.9202730656,-0.9205418825,-0.9210795164,-0.9201386571,-0.9193321466,-0.9201386571,-0.9212139249,-0.9216171503,-0.9214827418,-0.9214827418,-0.9214827418,-0.9213483334,-0.9213483334,-0.9213483334,-0.9213483334,-0.9214827418,-0.9216171503,-0.9217515588,-0.9220203757,-0.9220203757,-0.9217515588,-0.9214827418,-0.9214827418,-0.9217515588,-0.9217515588,-0.9216171503,-0.9216171503,-0.9217515588,-0.9217515588,-0.9217515588,-0.9217515588,-0.9218859673,-0.9216171503,-0.9216171503,-0.9221547842,-0.9222891927,-0.9217515588,-0.9210795164,-0.9209451079,-0.9213483334,-0.9214827418,-0.9214827418,-0.9214827418,-0.9214827418,-0.9214827418,-0.9214827418,-0.9217515588,-0.9216171503,-0.9212139249,-0.9208106995,-0.9210795164,-0.9213483334,-0.9210795164,-0.9213483334,-0.9217515588,-0.9218859673,-0.9218859673,-0.9218859673,-0.9217515588,-0.9216171503,-0.9216171503,-0.9216171503,-0.9216171503,-0.9217515588,-0.9220203757,-0.9222891927,-0.9224236012,-0.9224236012,-0.9224236012,-0.9222891927,-0.9222891927,-0.9225580096,-0.9228268266,-0.9228268266,-0.9226924181,-0.9226924181,-0.922961235,-0.9230956435,-0.9230956435,-0.9230956435,-0.923230052,-0.9233644605,-0.9233644605,-0.9233644605,-0.9236332774,-0.9237676859,-0.9237676859,-0.9240365028,-0.9241709113,-0.9239020944,-0.9241709113,-0.9259183407,-0.9287409782,-0.9299506545,-0.9273968339,-0.9234988689,-0.9220203757,-0.9224236012,-0.9225580096,-0.9226924181,-0.922961235,-0.9225580096,-0.9225580096,-0.9228268266,-0.9225580096,-0.9233644605,-0.9265903831,-0.9296818376,-0.929816246,-0.9303538799,-0.9303538799,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9299506545,-0.929816246,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9273968339,-0.9265903831,-0.9295474291,-0.9296818376,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9294130206,-0.9268592,-0.9240365028,-0.9226924181,-0.9230956435,-0.9244397879,-0.9252462983,-0.9243053794,-0.9248430729,-0.9280688763,-0.9296818376,-0.9279344678,-0.9253807068,-0.9243053794,-0.9240365028,-0.9237676859,-0.9236332774,-0.9236332774,-0.9234988689,-0.923230052,-0.922961235,-0.9228268266,-0.9228268266,-0.922961235,-0.922961235,-0.9230956435,-0.923230052,-0.923230052,-0.922961235,-0.9228268266,-0.9228268266,-0.9226924181,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9224236012,-0.9224236012,-0.9225580096,-0.9225580096,-0.9224236012,-0.9222891927,-0.9222891927,-0.9224236012,-0.9224236012,-0.9224236012,-0.9225580096,-0.9225580096,-0.9222891927,-0.9220203757,-0.9218859673,-0.9217515588,-0.9217515588,-0.9217515588,-0.9214827418,-0.9212139249,-0.9216171503,-0.9221547842,-0.9221547842,-0.9221547842,-0.9221547842,-0.9220203757,-0.9218859673,-0.9218859673,-0.9218859673,-0.9217515588,-0.9213483334,-0.9209451079,-0.9209451079,-0.9213483334,-0.9209451079,-0.9196009636,-0.9193321466,-0.920407474,-0.9214827418,-0.9214827418,-0.9212139249,-0.9212139249,-0.9212139249,-0.9212139249,-0.9213483334,-0.9216171503,-0.9217515588,-0.9217515588,-0.9218859673,-0.9218859673,-0.9217515588,-0.9213483334,-0.9208106995,-0.9208106995,-0.9213483334,-0.9216171503,-0.9216171503,-0.9216171503,-0.9217515588,-0.9216171503,-0.9216171503,-0.9214827418,-0.9213483334,-0.9214827418,-0.9220203757,-0.9221547842,-0.9213483334,-0.9205418825,-0.9205418825,-0.9210795164,-0.9214827418,-0.9214827418,-0.9212139249,-0.9213483334,-0.9214827418,-0.9214827418,-0.9216171503,-0.9217515588,-0.9217515588,-0.9213483334,-0.9208106995,-0.9208106995,-0.9209451079,-0.9208106995,-0.9209451079,-0.9216171503,-0.9220203757,-0.9220203757,-0.9217515588,-0.9217515588,-0.9214827418,-0.9213483334,-0.9214827418,-0.9216171503,-0.9217515588,-0.9221547842,-0.9226924181,-0.9226924181,-0.9225580096,-0.9224236012,-0.9222891927,-0.9222891927,-0.9224236012,-0.9225580096,-0.9226924181,-0.9228268266,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.9230956435,-0.923230052,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.9234988689,-0.9236332774,-0.9240365028,-0.9243053794,-0.9240365028,-0.9243053794,-0.9261871576,-0.9288753867,-0.930085063,-0.9273968339,-0.923230052,-0.9216171503,-0.9225580096,-0.9230956435,-0.923230052,-0.923230052,-0.9226924181,-0.9224236012,-0.9226924181,-0.9226924181,-0.9237676859,-0.9269936085,-0.9296818376,-0.9299506545,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.929816246,-0.929816246,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9272624254,-0.9269936085,-0.930085063,-0.9292786121,-0.9302194715,-0.9302194715,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9295474291,-0.9268592,-0.9237676859,-0.9225580096,-0.922961235,-0.9241709113,-0.9249774814,-0.9243053794,-0.9247086048,-0.9279344678,-0.929816246,-0.9279344678,-0.9251118898,-0.9244397879,-0.9241709113,-0.9239020944,-0.9236332774,-0.9236332774,-0.9234988689,-0.9233644605,-0.9230956435,-0.922961235,-0.922961235,-0.9230956435,-0.9228268266,-0.9226924181,-0.9228268266,-0.922961235,-0.9230956435,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.9228268266,-0.9226924181,-0.9226924181,-0.9225580096,-0.9225580096,-0.9225580096,-0.9226924181,-0.9224236012,-0.9221547842,-0.9222891927,-0.9224236012,-0.9224236012,-0.9224236012,-0.9224236012,-0.9225580096,-0.9225580096,-0.9220203757,-0.9213483334,-0.9212139249,-0.9214827418,-0.9216171503,-0.9213483334,-0.9212139249,-0.9217515588,-0.9222891927,-0.9222891927,-0.9220203757,-0.9220203757,-0.9220203757,-0.9220203757,-0.9218859673,-0.9217515588,-0.9216171503,-0.9214827418,-0.9214827418,-0.9213483334,-0.9213483334,-0.9217515588,-0.9213483334,-0.9202730656,-0.9197353721,-0.9202730656,-0.9208106995,-0.9210795164,-0.9210795164,-0.9213483334,-0.9214827418,-0.9214827418,-0.9214827418,-0.9217515588,-0.9220203757,-0.9216171503,-0.9209451079,-0.9208106995,-0.9208106995,-0.9200042486,-0.9196009636,-0.920676291,-0.9214827418,-0.9214827418,-0.9213483334,-0.9214827418,-0.9213483334,-0.920676291,-0.9205418825,-0.9214827418,-0.9226924181,-0.9221547842,-0.9208106995,-0.9201386571,-0.9205418825,-0.9210795164,-0.9214827418,-0.9214827418,-0.9213483334,-0.9213483334,-0.9214827418,-0.9216171503,-0.9217515588,-0.9216171503,-0.9217515588,-0.9218859673,-0.9216171503,-0.9210795164,-0.9210795164,-0.9212139249,-0.9208106995,-0.920676291,-0.9213483334,-0.9220203757,-0.9218859673,-0.9217515588,-0.9217515588,-0.9216171503,-0.9216171503,-0.9217515588,-0.9217515588,-0.9217515588,-0.9221547842,-0.9226924181,-0.9228268266,-0.9226924181,-0.9226924181,-0.9224236012,-0.9222891927,-0.9224236012,-0.9225580096,-0.9226924181,-0.9228268266,-0.922961235,-0.922961235,-0.922961235,-0.9230956435,-0.9230956435,-0.923230052,-0.923230052,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.9236332774,-0.9240365028,-0.9243053794,-0.9241709113,-0.9247086048,-0.9265903831,-0.9291442037,-0.930085063,-0.9275312424,-0.9233644605,-0.9214827418,-0.9225580096,-0.9233644605,-0.9233644605,-0.9230956435,-0.9228268266,-0.9224236012,-0.9222891927,-0.9225580096,-0.9241709113,-0.9275312424,-0.9296818376,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.929816246,-0.9299506545,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9303538799,-0.9269936085,-0.9269936085,-0.930085063,-0.9296818376,-0.9302194715,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9302194715,-0.930085063,-0.9302194715,-0.9296818376,-0.9272624254,-0.9237676859,-0.9221547842,-0.9224236012,-0.9237676859,-0.9251118898,-0.9245741963,-0.9247086048,-0.9279344678,-0.930085063,-0.9282032847,-0.9251118898,-0.9243053794,-0.9244397879,-0.9239020944,-0.9233644605,-0.9234988689,-0.9237676859,-0.9236332774,-0.9233644605,-0.9230956435,-0.922961235,-0.9230956435,-0.923230052,-0.9230956435,-0.9228268266,-0.9226924181,-0.9228268266,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.922961235,-0.9226924181,-0.9225580096,-0.9226924181,-0.9225580096,-0.9224236012,-0.9224236012,-0.9224236012,-0.9221547842,-0.9221547842,-0.9224236012,-0.9224236012,-0.9224236012,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9217515588,-0.9209451079,-0.9212139249,-0.9216171503,-0.9214827418,-0.9213483334,-0.9216171503,-0.9220203757,-0.9221547842,-0.9220203757,-0.9218859673,-0.9220203757,-0.9220203757,-0.9218859673,-0.9217515588,-0.9217515588,-0.9216171503,-0.9214827418,-0.9213483334,-0.9212139249,-0.9217515588,-0.9222891927,-0.9220203757,-0.9208106995,-0.9197353721,-0.9197353721,-0.9208106995,-0.9216171503,-0.9216171503,-0.9214827418,-0.9213483334,-0.9213483334,-0.9217515588,-0.9218859673,-0.9209451079,-0.9193321466,-0.9190633297,-0.9196009636,-0.9189289212,-0.9187945127,-0.9208106995,-0.9217515588,-0.9216171503,-0.9214827418,-0.9214827418,-0.9209451079,-0.9202730656,-0.9213483334,-0.923230052,-0.9226924181,-0.920676291,-0.9200042486,-0.920676291,-0.9213483334,-0.9213483334,-0.9214827418,-0.9216171503,-0.9217515588,-0.9216171503,-0.9214827418,-0.9216171503,-0.9217515588,-0.9217515588,-0.9217515588,-0.9218859673,-0.9217515588,-0.9213483334,-0.9210795164,-0.9208106995,-0.9202730656,-0.920676291,-0.9216171503,-0.9221547842,-0.9218859673,-0.9216171503,-0.9217515588,-0.9218859673,-0.9217515588,-0.9217515588,-0.9217515588,-0.9217515588,-0.9218859673,-0.9224236012,-0.9226924181,-0.9228268266,-0.9226924181,-0.9224236012,-0.9224236012,-0.9228268266,-0.9228268266,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.922961235,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.9233644605,-0.9234988689,-0.923230052,-0.923230052,-0.9233644605,-0.9237676859,-0.9239020944,-0.9239020944,-0.9245741963,-0.9267247915,-0.9292786121,-0.9299506545,-0.9273968339,-0.9234988689,-0.9217515588,-0.9226924181,-0.9234988689,-0.9234988689,-0.9233644605,-0.922961235,-0.9224236012,-0.9220203757,-0.9226924181,-0.9251118898,-0.9282032847,-0.929816246,-0.930085063,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.929816246,-0.930085063,-0.9306226969],[-0.9306226969,-0.9306226969,-0.930085063,-0.9273968339,-0.9273968339,-0.929816246,-0.9296818376,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9295474291,-0.9273968339,-0.9236332774,-0.9221547842,-0.9226924181,-0.9241709113,-0.9252462983,-0.9245741963,-0.9247086048,-0.9279344678,-0.930085063,-0.9284721017,-0.9253807068,-0.9241709113,-0.9239020944,-0.9236332774,-0.9234988689,-0.9236332774,-0.9234988689,-0.9233644605,-0.923230052,-0.9230956435,-0.922961235,-0.922961235,-0.923230052,-0.9233644605,-0.923230052,-0.922961235,-0.9226924181,-0.9225580096,-0.9228268266,-0.9228268266,-0.9226924181,-0.9226924181,-0.9225580096,-0.9225580096,-0.9226924181,-0.9226924181,-0.9224236012,-0.9224236012,-0.9225580096,-0.9224236012,-0.9224236012,-0.9224236012,-0.9224236012,-0.9225580096,-0.9225580096,-0.9224236012,-0.9224236012,-0.9225580096,-0.9221547842,-0.9210795164,-0.9205418825,-0.9212139249,-0.9217515588,-0.9218859673,-0.9221547842,-0.9222891927,-0.9220203757,-0.9220203757,-0.9221547842,-0.9220203757,-0.9218859673,-0.9218859673,-0.9217515588,-0.9216171503,-0.9213483334,-0.9213483334,-0.9216171503,-0.9217515588,-0.9216171503,-0.9218859673,-0.9221547842,-0.9220203757,-0.9212139249,-0.920407474,-0.920407474,-0.9212139249,-0.9217515588,-0.9214827418,-0.9212139249,-0.9212139249,-0.9217515588,-0.9218859673,-0.9209451079,-0.9185256958,-0.917719245,-0.9185256958,-0.9189289212,-0.9196009636,-0.9214827418,-0.9218859673,-0.9216171503,-0.9216171503,-0.9218859673,-0.9218859673,-0.9222891927,-0.9230956435,-0.9225580096,-0.920676291,-0.9201386571,-0.9209451079,-0.9216171503,-0.9216171503,-0.9214827418,-0.9214827418,-0.9217515588,-0.9218859673,-0.9217515588,-0.9216171503,-0.9216171503,-0.9217515588,-0.9218859673,-0.9218859673,-0.9217515588,-0.9217515588,-0.9217515588,-0.9210795164,-0.9200042486,-0.9198697805,-0.920676291,-0.9216171503,-0.9218859673,-0.9217515588,-0.9217515588,-0.9218859673,-0.9220203757,-0.9218859673,-0.9217515588,-0.9217515588,-0.9218859673,-0.9217515588,-0.9221547842,-0.9225580096,-0.9228268266,-0.9226924181,-0.9225580096,-0.9225580096,-0.9226924181,-0.9226924181,-0.9226924181,-0.9225580096,-0.9226924181,-0.9228268266,-0.922961235,-0.9233644605,-0.9234988689,-0.9234988689,-0.9234988689,-0.9233644605,-0.9230956435,-0.9230956435,-0.9233644605,-0.9236332774,-0.9237676859,-0.9236332774,-0.9236332774,-0.9245741963,-0.9264559746,-0.9288753867,-0.9296818376,-0.9271280169,-0.9234988689,-0.9222891927,-0.9230956435,-0.9236332774,-0.9234988689,-0.923230052,-0.9230956435,-0.9225580096,-0.9218859673,-0.9226924181,-0.9256495237,-0.9290097952,-0.929816246,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9299506545,-0.9303538799,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9296818376,-0.9273968339,-0.9278000593,-0.9299506545,-0.9299506545,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9303538799,-0.9299506545,-0.9272624254,-0.9233644605,-0.9220203757,-0.9228268266,-0.9243053794,-0.9251118898,-0.9247086048,-0.9249774814,-0.9278000593,-0.9299506545,-0.9287409782,-0.9257839322,-0.9240365028,-0.9236332774,-0.9236332774,-0.9236332774,-0.9236332774,-0.9234988689,-0.9233644605,-0.9233644605,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.922961235,-0.922961235,-0.9230956435,-0.9233644605,-0.9233644605,-0.9230956435,-0.922961235,-0.9228268266,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9225580096,-0.9224236012,-0.9224236012,-0.9225580096,-0.9224236012,-0.9222891927,-0.9224236012,-0.9225580096,-0.9222891927,-0.9222891927,-0.9225580096,-0.9221547842,-0.9212139249,-0.9205418825,-0.9209451079,-0.9217515588,-0.9221547842,-0.9222891927,-0.9222891927,-0.9222891927,-0.9220203757,-0.9220203757,-0.9220203757,-0.9220203757,-0.9218859673,-0.9218859673,-0.9217515588,-0.9218859673,-0.9217515588,-0.9217515588,-0.9218859673,-0.9217515588,-0.9216171503,-0.9217515588,-0.9220203757,-0.9220203757,-0.9217515588,-0.9208106995,-0.9200042486,-0.9202730656,-0.9213483334,-0.9216171503,-0.9214827418,-0.9217515588,-0.9218859673,-0.9212139249,-0.9186601043,-0.917450428,-0.9187945127,-0.9201386571,-0.9212139249,-0.9221547842,-0.9218859673,-0.9216171503,-0.9220203757,-0.922961235,-0.9237676859,-0.923230052,-0.9214827418,-0.9198697805,-0.9201386571,-0.9210795164,-0.9218859673,-0.9220203757,-0.9217515588,-0.9216171503,-0.9216171503,-0.9216171503,-0.9216171503,-0.9216171503,-0.9214827418,-0.9216171503,-0.9217515588,-0.9220203757,-0.9220203757,-0.9218859673,-0.9218859673,-0.9217515588,-0.9216171503,-0.9210795164,-0.9205418825,-0.9208106995,-0.9214827418,-0.9217515588,-0.9217515588,-0.9218859673,-0.9218859673,-0.9218859673,-0.9220203757,-0.9221547842,-0.9221547842,-0.9221547842,-0.9221547842,-0.9222891927,-0.9224236012,-0.9224236012,-0.9224236012,-0.9224236012,-0.9225580096,-0.9225580096,-0.9226924181,-0.9228268266,-0.9228268266,-0.9228268266,-0.922961235,-0.9230956435,-0.923230052,-0.9233644605,-0.9233644605,-0.9230956435,-0.9230956435,-0.9236332774,-0.9239020944,-0.9237676859,-0.9239020944,-0.9239020944,-0.9236332774,-0.9236332774,-0.9245741963,-0.9265903831,-0.9292786121,-0.9299506545,-0.9268592,-0.9236332774,-0.9230956435,-0.9234988689,-0.9234988689,-0.923230052,-0.9228268266,-0.9221547842,-0.9217515588,-0.9217515588,-0.9228268266,-0.9260527492,-0.9294130206,-0.929816246,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9302194715,-0.9302194715,-0.930085063,-0.9292786121,-0.930085063,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9291442037,-0.9264559746,-0.9275312424,-0.9296818376,-0.9296818376,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9296818376,-0.9268592,-0.9230956435,-0.9217515588,-0.9226924181,-0.9241709113,-0.9251118898,-0.9248430729,-0.9251118898,-0.9278000593,-0.929816246,-0.9287409782,-0.9259183407,-0.9241709113,-0.9237676859,-0.9236332774,-0.9236332774,-0.9234988689,-0.9234988689,-0.9233644605,-0.923230052,-0.9230956435,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.9230956435,-0.923230052,-0.9233644605,-0.9233644605,-0.923230052,-0.9230956435,-0.9230956435,-0.9228268266,-0.9226924181,-0.9226924181,-0.9226924181,-0.9225580096,-0.9225580096,-0.9224236012,-0.9225580096,-0.9225580096,-0.9224236012,-0.9222891927,-0.9221547842,-0.9222891927,-0.9224236012,-0.9221547842,-0.9220203757,-0.9224236012,-0.9222891927,-0.9213483334,-0.9208106995,-0.9210795164,-0.9213483334,-0.9217515588,-0.9220203757,-0.9222891927,-0.9222891927,-0.9221547842,-0.9220203757,-0.9220203757,-0.9220203757,-0.9218859673,-0.9218859673,-0.9218859673,-0.9220203757,-0.9220203757,-0.9220203757,-0.9218859673,-0.9217515588,-0.9217515588,-0.9218859673,-0.9220203757,-0.9220203757,-0.9222891927,-0.9221547842,-0.9213483334,-0.9201386571,-0.9200042486,-0.9205418825,-0.9212139249,-0.9216171503,-0.9216171503,-0.9208106995,-0.9186601043,-0.9175848365,-0.9190633297,-0.9208106995,-0.9217515588,-0.9221547842,-0.9217515588,-0.9220203757,-0.922961235,-0.9239020944,-0.923230052,-0.9210795164,-0.9197353721,-0.9205418825,-0.9214827418,-0.9218859673,-0.9220203757,-0.9218859673,-0.9217515588,-0.9216171503,-0.9216171503,-0.9216171503,-0.9216171503,-0.9217515588,-0.9218859673,-0.9218859673,-0.9220203757,-0.9221547842,-0.9220203757,-0.9220203757,-0.9218859673,-0.9218859673,-0.9214827418,-0.920676291,-0.9202730656,-0.920676291,-0.9214827418,-0.9217515588,-0.9216171503,-0.9217515588,-0.9218859673,-0.9217515588,-0.9218859673,-0.9221547842,-0.9221547842,-0.9222891927,-0.9222891927,-0.9224236012,-0.9224236012,-0.9222891927,-0.9222891927,-0.9224236012,-0.9225580096,-0.9225580096,-0.9228268266,-0.922961235,-0.922961235,-0.9228268266,-0.9230956435,-0.923230052,-0.923230052,-0.9230956435,-0.9230956435,-0.9236332774,-0.9243053794,-0.9243053794,-0.9239020944,-0.9234988689,-0.9234988689,-0.9240365028,-0.9240365028,-0.9236332774,-0.9241709113,-0.9265903831,-0.9295474291,-0.9299506545,-0.9267247915,-0.9234988689,-0.9230956435,-0.9237676859,-0.9236332774,-0.9234988689,-0.923230052,-0.9222891927,-0.9218859673,-0.9217515588,-0.923230052,-0.9268592,-0.929816246,-0.9299506545,-0.9302194715,-0.9302194715,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9302194715,-0.9299506545,-0.930085063,-0.930085063,-0.9288753867,-0.930085063,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9290097952,-0.9265903831,-0.9279344678,-0.9296818376,-0.929816246,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9296818376,-0.9271280169,-0.9234988689,-0.9222891927,-0.922961235,-0.9240365028,-0.9248430729,-0.9248430729,-0.9253807068,-0.9279344678,-0.9299506545,-0.9287409782,-0.9260527492,-0.9244397879,-0.9239020944,-0.9237676859,-0.9234988689,-0.9233644605,-0.923230052,-0.923230052,-0.923230052,-0.9230956435,-0.9230956435,-0.922961235,-0.922961235,-0.922961235,-0.9230956435,-0.923230052,-0.9230956435,-0.922961235,-0.922961235,-0.9230956435,-0.9230956435,-0.922961235,-0.9228268266,-0.9228268266,-0.9228268266,-0.9225580096,-0.9224236012,-0.9224236012,-0.9225580096,-0.9225580096,-0.9224236012,-0.9224236012,-0.9224236012,-0.9222891927,-0.9222891927,-0.9221547842,-0.9220203757,-0.9221547842,-0.9222891927,-0.9214827418,-0.9208106995,-0.9210795164,-0.9214827418,-0.9214827418,-0.9216171503,-0.9220203757,-0.9222891927,-0.9221547842,-0.9218859673,-0.9218859673,-0.9218859673,-0.9220203757,-0.9220203757,-0.9218859673,-0.9217515588,-0.9214827418,-0.9213483334,-0.9213483334,-0.9214827418,-0.9216171503,-0.9217515588,-0.9217515588,-0.9218859673,-0.9220203757,-0.9221547842,-0.9220203757,-0.9214827418,-0.9205418825,-0.9200042486,-0.9201386571,-0.9208106995,-0.9210795164,-0.9205418825,-0.9189289212,-0.9182568789,-0.9197353721,-0.9212139249,-0.9218859673,-0.9221547842,-0.9222891927,-0.9222891927,-0.9221547842,-0.9218859673,-0.9209451079,-0.9205418825,-0.9213483334,-0.9220203757,-0.9220203757,-0.9217515588,-0.9216171503,-0.9216171503,-0.9216171503,-0.9214827418,-0.9214827418,-0.9216171503,-0.9217515588,-0.9217515588,-0.9218859673,-0.9221547842,-0.9221547842,-0.9220203757,-0.9218859673,-0.9220203757,-0.9220203757,-0.9220203757,-0.9216171503,-0.920676291,-0.9202730656,-0.9205418825,-0.9214827418,-0.9218859673,-0.9218859673,-0.9218859673,-0.9220203757,-0.9220203757,-0.9220203757,-0.9221547842,-0.9222891927,-0.9221547842,-0.9221547842,-0.9222891927,-0.9224236012,-0.9224236012,-0.9224236012,-0.9224236012,-0.9225580096,-0.9226924181,-0.9228268266,-0.9230956435,-0.923230052,-0.9230956435,-0.922961235,-0.922961235,-0.923230052,-0.9236332774,-0.9243053794,-0.9247086048,-0.9241709113,-0.9237676859,-0.9236332774,-0.9234988689,-0.9234988689,-0.9240365028,-0.9240365028,-0.9236332774,-0.9244397879,-0.9269936085,-0.9296818376,-0.929816246,-0.9264559746,-0.923230052,-0.922961235,-0.9237676859,-0.9240365028,-0.9236332774,-0.922961235,-0.9224236012,-0.9221547842,-0.9217515588,-0.923230052,-0.9273968339,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9299506545,-0.9302194715,-0.9302194715,-0.9290097952,-0.9303538799,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9290097952,-0.9275312424,-0.9287409782,-0.9296818376,-0.930085063,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9299506545,-0.9276656508,-0.9239020944,-0.9222891927,-0.9226924181,-0.9239020944,-0.9248430729,-0.9248430729,-0.9252462983,-0.9278000593,-0.929816246,-0.9290097952,-0.9264559746,-0.9245741963,-0.9240365028,-0.9239020944,-0.9236332774,-0.9234988689,-0.9234988689,-0.9233644605,-0.9233644605,-0.923230052,-0.923230052,-0.9230956435,-0.922961235,-0.922961235,-0.9230956435,-0.923230052,-0.923230052,-0.9230956435,-0.922961235,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9226924181,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9224236012,-0.9222891927,-0.9221547842,-0.9222891927,-0.9222891927,-0.9224236012,-0.9225580096,-0.9218859673,-0.9208106995,-0.9205418825,-0.9210795164,-0.9216171503,-0.9218859673,-0.9221547842,-0.9221547842,-0.9218859673,-0.9216171503,-0.9214827418,-0.9214827418,-0.9217515588,-0.9217515588,-0.9217515588,-0.9217515588,-0.9217515588,-0.9217515588,-0.9217515588,-0.9216171503,-0.9216171503,-0.9216171503,-0.9217515588,-0.9218859673,-0.9220203757,-0.9221547842,-0.9222891927,-0.9221547842,-0.9217515588,-0.9210795164,-0.920407474,-0.9205418825,-0.9212139249,-0.9209451079,-0.9198697805,-0.9194665551,-0.9205418825,-0.9216171503,-0.9222891927,-0.9228268266,-0.922961235,-0.9224236012,-0.9212139249,-0.9202730656,-0.9205418825,-0.9213483334,-0.9216171503,-0.9214827418,-0.9214827418,-0.9214827418,-0.9214827418,-0.9216171503,-0.9217515588,-0.9217515588,-0.9214827418,-0.9216171503,-0.9217515588,-0.9217515588,-0.9218859673,-0.9220203757,-0.9220203757,-0.9217515588,-0.9218859673,-0.9221547842,-0.9221547842,-0.9218859673,-0.9214827418,-0.9209451079,-0.920676291,-0.9210795164,-0.9217515588,-0.9220203757,-0.9220203757,-0.9218859673,-0.9218859673,-0.9220203757,-0.9221547842,-0.9222891927,-0.9222891927,-0.9221547842,-0.9221547842,-0.9224236012,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9228268266,-0.922961235,-0.9230956435,-0.923230052,-0.923230052,-0.922961235,-0.922961235,-0.9237676859,-0.9244397879,-0.9243053794,-0.9239020944,-0.9239020944,-0.9237676859,-0.9236332774,-0.9234988689,-0.9236332774,-0.9240365028,-0.9236332774,-0.9230956435,-0.9244397879,-0.9273968339,-0.9299506545,-0.9296818376,-0.9265903831,-0.923230052,-0.9228268266,-0.9236332774,-0.9240365028,-0.9236332774,-0.9226924181,-0.9218859673,-0.9217515588,-0.9216171503,-0.923230052,-0.9275312424,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.930085063,-0.9303538799,-0.9299506545,-0.9286065698,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9280688763,-0.9265903831,-0.9287409782,-0.9296818376,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9283376932,-0.9247086048,-0.9222891927,-0.9221547842,-0.9233644605,-0.9247086048,-0.9251118898,-0.9252462983,-0.9272624254,-0.9294130206,-0.9291442037,-0.9267247915,-0.9247086048,-0.9240365028,-0.9240365028,-0.9237676859,-0.9234988689,-0.9234988689,-0.9234988689,-0.923230052,-0.9230956435,-0.922961235,-0.9228268266,-0.9228268266,-0.922961235,-0.922961235,-0.922961235,-0.9226924181,-0.9228268266,-0.922961235,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9225580096,-0.9225580096,-0.9226924181,-0.9226924181,-0.9225580096,-0.9225580096,-0.9224236012,-0.9222891927,-0.9221547842,-0.9221547842,-0.9221547842,-0.9222891927,-0.9224236012,-0.9221547842,-0.9210795164,-0.920407474,-0.9208106995,-0.9216171503,-0.9221547842,-0.9221547842,-0.9218859673,-0.9218859673,-0.9218859673,-0.9216171503,-0.9213483334,-0.9213483334,-0.9214827418,-0.9216171503,-0.9217515588,-0.9218859673,-0.9220203757,-0.9220203757,-0.9220203757,-0.9220203757,-0.9218859673,-0.9218859673,-0.9220203757,-0.9221547842,-0.9222891927,-0.9224236012,-0.9221547842,-0.9217515588,-0.9214827418,-0.9214827418,-0.9217515588,-0.9221547842,-0.9221547842,-0.9214827418,-0.9209451079,-0.9213483334,-0.9222891927,-0.9230956435,-0.923230052,-0.9226924181,-0.9222891927,-0.9217515588,-0.9212139249,-0.9212139249,-0.9214827418,-0.9216171503,-0.9214827418,-0.9214827418,-0.9216171503,-0.9216171503,-0.9216171503,-0.9217515588,-0.9217515588,-0.9217515588,-0.9218859673,-0.9220203757,-0.9218859673,-0.9217515588,-0.9216171503,-0.9216171503,-0.9216171503,-0.9218859673,-0.9220203757,-0.9220203757,-0.9218859673,-0.9214827418,-0.9210795164,-0.9210795164,-0.9214827418,-0.9218859673,-0.9220203757,-0.9220203757,-0.9220203757,-0.9218859673,-0.9218859673,-0.9220203757,-0.9222891927,-0.9222891927,-0.9222891927,-0.9224236012,-0.9226924181,-0.9226924181,-0.9226924181,-0.9228268266,-0.922961235,-0.9230956435,-0.922961235,-0.922961235,-0.922961235,-0.9230956435,-0.923230052,-0.9234988689,-0.9236332774,-0.9239020944,-0.9237676859,-0.9237676859,-0.9239020944,-0.9237676859,-0.9236332774,-0.9236332774,-0.9234988689,-0.9237676859,-0.9243053794,-0.922961235,-0.9213483334,-0.923230052,-0.9275312424,-0.930085063,-0.9296818376,-0.9263215661,-0.923230052,-0.9228268266,-0.9239020944,-0.9241709113,-0.9236332774,-0.9226924181,-0.9220203757,-0.9213483334,-0.9210795164,-0.9233644605,-0.9278000593,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9299506545,-0.9302194715,-0.9296818376,-0.9286065698,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9276656508,-0.9257839322,-0.9287409782,-0.9294130206,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9291442037,-0.9256495237,-0.9226924181,-0.9221547842,-0.923230052,-0.9248430729,-0.9255151153,-0.9253807068,-0.9268592,-0.9291442037,-0.9296818376,-0.9275312424,-0.9249774814,-0.9240365028,-0.9239020944,-0.9237676859,-0.9234988689,-0.9236332774,-0.9236332774,-0.9233644605,-0.922961235,-0.9226924181,-0.9226924181,-0.922961235,-0.922961235,-0.922961235,-0.9228268266,-0.922961235,-0.9230956435,-0.9230956435,-0.922961235,-0.9228268266,-0.9228268266,-0.9226924181,-0.9226924181,-0.9228268266,-0.922961235,-0.9226924181,-0.9225580096,-0.9226924181,-0.9228268266,-0.9226924181,-0.9225580096,-0.9224236012,-0.9222891927,-0.9221547842,-0.9221547842,-0.9221547842,-0.9221547842,-0.9222891927,-0.9222891927,-0.9217515588,-0.9209451079,-0.920676291,-0.9212139249,-0.9218859673,-0.9220203757,-0.9220203757,-0.9217515588,-0.9216171503,-0.9214827418,-0.9214827418,-0.9214827418,-0.9217515588,-0.9218859673,-0.9220203757,-0.9218859673,-0.9217515588,-0.9218859673,-0.9220203757,-0.9221547842,-0.9220203757,-0.9218859673,-0.9218859673,-0.9220203757,-0.9221547842,-0.9222891927,-0.9220203757,-0.9216171503,-0.9216171503,-0.9224236012,-0.923230052,-0.9234988689,-0.922961235,-0.9221547842,-0.9216171503,-0.9220203757,-0.9234988689,-0.9240365028,-0.9233644605,-0.9224236012,-0.9221547842,-0.9221547842,-0.9218859673,-0.9214827418,-0.9217515588,-0.9217515588,-0.9217515588,-0.9217515588,-0.9216171503,-0.9216171503,-0.9217515588,-0.9217515588,-0.9218859673,-0.9220203757,-0.9221547842,-0.9220203757,-0.9218859673,-0.9217515588,-0.9216171503,-0.9217515588,-0.9217515588,-0.9218859673,-0.9220203757,-0.9220203757,-0.9218859673,-0.9213483334,-0.9210795164,-0.9213483334,-0.9216171503,-0.9218859673,-0.9218859673,-0.9218859673,-0.9218859673,-0.9220203757,-0.9221547842,-0.9222891927,-0.9221547842,-0.9222891927,-0.9222891927,-0.9224236012,-0.9225580096,-0.9226924181,-0.9226924181,-0.9225580096,-0.9224236012,-0.9221547842,-0.9221547842,-0.9226924181,-0.9230956435,-0.923230052,-0.9233644605,-0.9236332774,-0.9236332774,-0.9233644605,-0.923230052,-0.9233644605,-0.9234988689,-0.9233644605,-0.9233644605,-0.9234988689,-0.9234988689,-0.9239020944,-0.9240365028,-0.9221547842,-0.9202730656,-0.9224236012,-0.9273968339,-0.929816246,-0.9291442037,-0.9257839322,-0.923230052,-0.923230052,-0.9243053794,-0.9243053794,-0.923230052,-0.9221547842,-0.9214827418,-0.9212139249,-0.9217515588,-0.9243053794,-0.9280688763,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.930085063,-0.9302194715,-0.929816246,-0.9291442037,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9286065698,-0.9276656508,-0.929816246,-0.9299506545,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9296818376,-0.9264559746,-0.9230956435,-0.9224236012,-0.923230052,-0.9245741963,-0.9252462983,-0.9251118898,-0.9264559746,-0.9290097952,-0.9299506545,-0.9282032847,-0.9251118898,-0.9230956435,-0.9230956435,-0.9236332774,-0.9237676859,-0.9237676859,-0.9234988689,-0.923230052,-0.922961235,-0.9226924181,-0.9228268266,-0.9230956435,-0.923230052,-0.9230956435,-0.9230956435,-0.9230956435,-0.922961235,-0.922961235,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9226924181,-0.9226924181,-0.9228268266,-0.9228268266,-0.9226924181,-0.9224236012,-0.9224236012,-0.9222891927,-0.9222891927,-0.9221547842,-0.9221547842,-0.9222891927,-0.9224236012,-0.9224236012,-0.9224236012,-0.9216171503,-0.9209451079,-0.9212139249,-0.9217515588,-0.9221547842,-0.9221547842,-0.9217515588,-0.9214827418,-0.9213483334,-0.9213483334,-0.9214827418,-0.9217515588,-0.9217515588,-0.9218859673,-0.9218859673,-0.9218859673,-0.9218859673,-0.9220203757,-0.9220203757,-0.9218859673,-0.9217515588,-0.9217515588,-0.9217515588,-0.9220203757,-0.9218859673,-0.9213483334,-0.9213483334,-0.9217515588,-0.9225580096,-0.9239020944,-0.9244397879,-0.923230052,-0.9216171503,-0.9216171503,-0.9230956435,-0.9240365028,-0.9236332774,-0.9222891927,-0.9208106995,-0.920676291,-0.9216171503,-0.9220203757,-0.9220203757,-0.9221547842,-0.9222891927,-0.9221547842,-0.9220203757,-0.9218859673,-0.9218859673,-0.9220203757,-0.9221547842,-0.9221547842,-0.9222891927,-0.9222891927,-0.9222891927,-0.9221547842,-0.9218859673,-0.9218859673,-0.9218859673,-0.9218859673,-0.9218859673,-0.9221547842,-0.9221547842,-0.9218859673,-0.9213483334,-0.9212139249,-0.9214827418,-0.9217515588,-0.9218859673,-0.9218859673,-0.9218859673,-0.9218859673,-0.9220203757,-0.9221547842,-0.9222891927,-0.9222891927,-0.9222891927,-0.9222891927,-0.9222891927,-0.9224236012,-0.9225580096,-0.9224236012,-0.9220203757,-0.9217515588,-0.9217515588,-0.9220203757,-0.9224236012,-0.9228268266,-0.9230956435,-0.9233644605,-0.9234988689,-0.9234988689,-0.923230052,-0.922961235,-0.9230956435,-0.9234988689,-0.9236332774,-0.9234988689,-0.9233644605,-0.9234988689,-0.9239020944,-0.9237676859,-0.9222891927,-0.9214827418,-0.9240365028,-0.9278000593,-0.9296818376,-0.9287409782,-0.9255151153,-0.923230052,-0.9233644605,-0.9243053794,-0.9243053794,-0.9234988689,-0.9225580096,-0.9217515588,-0.9214827418,-0.9225580096,-0.9252462983,-0.9283376932,-0.9299506545,-0.9302194715,-0.930085063,-0.9302194715,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9299506545,-0.9295474291,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9294130206,-0.9291442037,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.9303538799,-0.929816246,-0.9269936085,-0.923230052,-0.9224236012,-0.9236332774,-0.9248430729,-0.9253807068,-0.9251118898,-0.9260527492,-0.9286065698,-0.930085063,-0.9286065698,-0.9255151153,-0.9228268266,-0.9222891927,-0.9230956435,-0.9234988689,-0.9233644605,-0.9233644605,-0.9233644605,-0.9230956435,-0.9228268266,-0.922961235,-0.9230956435,-0.9230956435,-0.923230052,-0.923230052,-0.923230052,-0.9230956435,-0.9228268266,-0.9226924181,-0.9228268266,-0.9228268266,-0.922961235,-0.922961235,-0.922961235,-0.9228268266,-0.9228268266,-0.9228268266,-0.922961235,-0.9228268266,-0.9225580096,-0.9224236012,-0.9224236012,-0.9224236012,-0.9222891927,-0.9222891927,-0.9222891927,-0.9224236012,-0.9224236012,-0.9224236012,-0.9225580096,-0.9224236012,-0.9217515588,-0.9214827418,-0.9217515588,-0.9221547842,-0.9220203757,-0.9217515588,-0.9213483334,-0.9213483334,-0.9213483334,-0.9213483334,-0.9214827418,-0.9216171503,-0.9217515588,-0.9217515588,-0.9217515588,-0.9217515588,-0.9218859673,-0.9217515588,-0.9214827418,-0.9216171503,-0.9217515588,-0.9218859673,-0.9222891927,-0.9224236012,-0.9217515588,-0.9214827418,-0.9220203757,-0.9224236012,-0.9233644605,-0.9241709113,-0.922961235,-0.9213483334,-0.9218859673,-0.9236332774,-0.9237676859,-0.9224236012,-0.920676291,-0.9197353721,-0.9201386571,-0.9212139249,-0.9220203757,-0.9224236012,-0.9222891927,-0.9222891927,-0.9221547842,-0.9221547842,-0.9221547842,-0.9220203757,-0.9220203757,-0.9221547842,-0.9224236012,-0.9225580096,-0.9225580096,-0.9224236012,-0.9221547842,-0.9218859673,-0.9218859673,-0.9218859673,-0.9218859673,-0.9220203757,-0.9221547842,-0.9221547842,-0.9218859673,-0.9217515588,-0.9216171503,-0.9216171503,-0.9216171503,-0.9217515588,-0.9218859673,-0.9218859673,-0.9218859673,-0.9218859673,-0.9220203757,-0.9222891927,-0.9224236012,-0.9222891927,-0.9221547842,-0.9224236012,-0.9228268266,-0.922961235,-0.9228268266,-0.9226924181,-0.9226924181,-0.922961235,-0.922961235,-0.9228268266,-0.922961235,-0.9230956435,-0.923230052,-0.9233644605,-0.9233644605,-0.923230052,-0.9230956435,-0.923230052,-0.9234988689,-0.9234988689,-0.9234988689,-0.9233644605,-0.9234988689,-0.9237676859,-0.9237676859,-0.923230052,-0.9239020944,-0.9260527492,-0.9283376932,-0.9294130206,-0.9283376932,-0.9253807068,-0.923230052,-0.9233644605,-0.9241709113,-0.9241709113,-0.9234988689,-0.9221547842,-0.9212139249,-0.9213483334,-0.9228268266,-0.9256495237,-0.9286065698,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.929816246,-0.9299506545,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9304882884,-0.929816246,-0.9296818376,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.929816246,-0.9299506545,-0.9302194715,-0.929816246,-0.9275312424,-0.9234988689,-0.9220203757,-0.9228268266,-0.9241709113,-0.9252462983,-0.9255151153,-0.9259183407,-0.9282032847,-0.9302194715,-0.9294130206,-0.9263215661,-0.9239020944,-0.9230956435,-0.9230956435,-0.923230052,-0.9234988689,-0.9239020944,-0.9236332774,-0.9233644605,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.923230052,-0.923230052,-0.9230956435,-0.922961235,-0.922961235,-0.9228268266,-0.9228268266,-0.9226924181,-0.922961235,-0.923230052,-0.922961235,-0.9224236012,-0.9225580096,-0.922961235,-0.9228268266,-0.9226924181,-0.9226924181,-0.9225580096,-0.9224236012,-0.9222891927,-0.9222891927,-0.9224236012,-0.9225580096,-0.9224236012,-0.9224236012,-0.9225580096,-0.9226924181,-0.9222891927,-0.9218859673,-0.9217515588,-0.9216171503,-0.9214827418,-0.9214827418,-0.9212139249,-0.9209451079,-0.9210795164,-0.9213483334,-0.9214827418,-0.9217515588,-0.9218859673,-0.9216171503,-0.9216171503,-0.9218859673,-0.9220203757,-0.9216171503,-0.9214827418,-0.9216171503,-0.9218859673,-0.9221547842,-0.9225580096,-0.9226924181,-0.9218859673,-0.9214827418,-0.9221547842,-0.9226924181,-0.922961235,-0.9230956435,-0.9218859673,-0.920676291,-0.9213483334,-0.923230052,-0.9230956435,-0.9216171503,-0.9205418825,-0.9209451079,-0.9218859673,-0.9220203757,-0.9217515588,-0.9218859673,-0.9222891927,-0.9224236012,-0.9221547842,-0.9221547842,-0.9221547842,-0.9221547842,-0.9221547842,-0.9222891927,-0.9225580096,-0.9228268266,-0.9228268266,-0.9224236012,-0.9220203757,-0.9217515588,-0.9218859673,-0.9220203757,-0.9221547842,-0.9224236012,-0.9224236012,-0.9222891927,-0.9220203757,-0.9221547842,-0.9222891927,-0.9220203757,-0.9218859673,-0.9218859673,-0.9220203757,-0.9218859673,-0.9218859673,-0.9220203757,-0.9221547842,-0.9222891927,-0.9222891927,-0.9222891927,-0.9224236012,-0.922961235,-0.9233644605,-0.923230052,-0.922961235,-0.922961235,-0.9230956435,-0.9230956435,-0.922961235,-0.922961235,-0.922961235,-0.9230956435,-0.922961235,-0.9230956435,-0.923230052,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.9234988689,-0.9234988689,-0.9237676859,-0.9239020944,-0.9240365028,-0.9247086048,-0.9265903831,-0.9287409782,-0.9296818376,-0.9282032847,-0.9251118898,-0.9230956435,-0.9233644605,-0.9240365028,-0.9237676859,-0.922961235,-0.9218859673,-0.9210795164,-0.9212139249,-0.922961235,-0.9261871576,-0.9288753867,-0.9299506545,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9295474291,-0.929816246,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9304882884,-0.9299506545,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9299506545,-0.9295474291,-0.9278000593,-0.9248430729,-0.9222891927,-0.9221547842,-0.9233644605,-0.9249774814,-0.9255151153,-0.9257839322,-0.9273968339,-0.9296818376,-0.9296818376,-0.9269936085,-0.9244397879,-0.9236332774,-0.9239020944,-0.9239020944,-0.9237676859,-0.9237676859,-0.9234988689,-0.9233644605,-0.9233644605,-0.9233644605,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.922961235,-0.9228268266,-0.9226924181,-0.9228268266,-0.922961235,-0.9226924181,-0.9222891927,-0.9225580096,-0.9228268266,-0.9226924181,-0.9226924181,-0.9226924181,-0.9225580096,-0.9221547842,-0.9220203757,-0.9222891927,-0.9224236012,-0.9225580096,-0.9225580096,-0.9224236012,-0.9224236012,-0.9225580096,-0.9224236012,-0.9222891927,-0.9220203757,-0.9214827418,-0.9213483334,-0.9216171503,-0.9213483334,-0.9208106995,-0.9205418825,-0.9209451079,-0.9212139249,-0.9210795164,-0.9209451079,-0.9210795164,-0.9213483334,-0.9217515588,-0.9221547842,-0.9220203757,-0.9218859673,-0.9217515588,-0.9218859673,-0.9222891927,-0.9225580096,-0.9221547842,-0.9212139249,-0.9205418825,-0.9216171503,-0.9233644605,-0.9230956435,-0.920676291,-0.9189289212,-0.9196009636,-0.9214827418,-0.9233644605,-0.9224236012,-0.9209451079,-0.9209451079,-0.9218859673,-0.9222891927,-0.9222891927,-0.9218859673,-0.9214827418,-0.9214827418,-0.9217515588,-0.9221547842,-0.9222891927,-0.9221547842,-0.9221547842,-0.9222891927,-0.9224236012,-0.9225580096,-0.9226924181,-0.9226924181,-0.9228268266,-0.9226924181,-0.9221547842,-0.9218859673,-0.9220203757,-0.9224236012,-0.9226924181,-0.9226924181,-0.9222891927,-0.9221547842,-0.9222891927,-0.9222891927,-0.9222891927,-0.9222891927,-0.9221547842,-0.9220203757,-0.9218859673,-0.9220203757,-0.9220203757,-0.9221547842,-0.9221547842,-0.9221547842,-0.9222891927,-0.9228268266,-0.9233644605,-0.9233644605,-0.922961235,-0.9228268266,-0.922961235,-0.922961235,-0.922961235,-0.9230956435,-0.9230956435,-0.922961235,-0.922961235,-0.922961235,-0.9230956435,-0.9230956435,-0.923230052,-0.9233644605,-0.9234988689,-0.9233644605,-0.9233644605,-0.9233644605,-0.9234988689,-0.9236332774,-0.9239020944,-0.9239020944,-0.9239020944,-0.9245741963,-0.9268592,-0.9292786121,-0.930085063,-0.9280688763,-0.9247086048,-0.9230956435,-0.9234988689,-0.9240365028,-0.9237676859,-0.922961235,-0.9221547842,-0.9213483334,-0.9214827418,-0.9233644605,-0.9265903831,-0.9287409782,-0.929816246,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9292786121,-0.929816246,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9303538799,-0.929816246,-0.9299506545,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9299506545,-0.9292786121,-0.9282032847,-0.9260527492,-0.9234988689,-0.9224236012,-0.922961235,-0.9240365028,-0.9249774814,-0.9255151153,-0.9268592,-0.9290097952,-0.9296818376,-0.9276656508,-0.9249774814,-0.9237676859,-0.9239020944,-0.9240365028,-0.9236332774,-0.9236332774,-0.9234988689,-0.9233644605,-0.9233644605,-0.9234988689,-0.9233644605,-0.9233644605,-0.9233644605,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.9228268266,-0.9226924181,-0.9226924181,-0.9226924181,-0.9225580096,-0.9226924181,-0.9226924181,-0.9222891927,-0.9221547842,-0.9222891927,-0.9224236012,-0.9224236012,-0.9225580096,-0.9225580096,-0.9224236012,-0.9224236012,-0.9225580096,-0.9225580096,-0.9222891927,-0.9220203757,-0.9220203757,-0.9220203757,-0.9216171503,-0.9209451079,-0.920676291,-0.920676291,-0.920676291,-0.920407474,-0.920407474,-0.920676291,-0.9213483334,-0.9218859673,-0.9218859673,-0.9217515588,-0.9216171503,-0.9212139249,-0.9209451079,-0.9214827418,-0.9218859673,-0.9216171503,-0.9210795164,-0.9198697805,-0.9200042486,-0.9214827418,-0.9213483334,-0.9171816111,-0.9146277308,-0.9181224704,-0.9218859673,-0.9225580096,-0.9210795164,-0.9205418825,-0.9214827418,-0.9225580096,-0.9222891927,-0.9220203757,-0.9221547842,-0.9216171503,-0.9209451079,-0.9209451079,-0.9214827418,-0.9218859673,-0.9221547842,-0.9222891927,-0.9222891927,-0.9224236012,-0.9225580096,-0.9228268266,-0.9228268266,-0.922961235,-0.9228268266,-0.9222891927,-0.9216171503,-0.9218859673,-0.9225580096,-0.922961235,-0.922961235,-0.9225580096,-0.9221547842,-0.9217515588,-0.9218859673,-0.9222891927,-0.9224236012,-0.9221547842,-0.9220203757,-0.9220203757,-0.9220203757,-0.9221547842,-0.9222891927,-0.9222891927,-0.9222891927,-0.9224236012,-0.922961235,-0.9233644605,-0.9230956435,-0.9228268266,-0.922961235,-0.922961235,-0.9228268266,-0.9226924181,-0.9228268266,-0.922961235,-0.9228268266,-0.9228268266,-0.922961235,-0.923230052,-0.923230052,-0.922961235,-0.9230956435,-0.9233644605,-0.9234988689,-0.9234988689,-0.9236332774,-0.9234988689,-0.9234988689,-0.9239020944,-0.9239020944,-0.9237676859,-0.9245741963,-0.9268592,-0.9294130206,-0.929816246,-0.9273968339,-0.9243053794,-0.9230956435,-0.9237676859,-0.9240365028,-0.9234988689,-0.9226924181,-0.9214827418,-0.9208106995,-0.9214827418,-0.9239020944,-0.9267247915,-0.9284721017,-0.929816246,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9294130206,-0.9302194715,-0.9306226969,-0.9306226969],[-0.9306226969,-0.929816246,-0.9288753867,-0.9294130206,-0.930085063,-0.930085063,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9299506545,-0.9291442037,-0.9283376932,-0.9268592,-0.9247086048,-0.9226924181,-0.9225580096,-0.9237676859,-0.9251118898,-0.9256495237,-0.9267247915,-0.9286065698,-0.9296818376,-0.9283376932,-0.9257839322,-0.9239020944,-0.9236332774,-0.9237676859,-0.9236332774,-0.9236332774,-0.9236332774,-0.923230052,-0.923230052,-0.9233644605,-0.9233644605,-0.9233644605,-0.923230052,-0.923230052,-0.922961235,-0.922961235,-0.922961235,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.922961235,-0.922961235,-0.922961235,-0.9228268266,-0.9228268266,-0.9228268266,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9225580096,-0.9222891927,-0.9222891927,-0.9224236012,-0.9224236012,-0.9225580096,-0.9226924181,-0.9224236012,-0.9222891927,-0.9224236012,-0.9228268266,-0.9228268266,-0.9224236012,-0.9222891927,-0.9222891927,-0.9217515588,-0.9210795164,-0.9210795164,-0.9210795164,-0.920676291,-0.920407474,-0.9209451079,-0.9217515588,-0.9221547842,-0.9220203757,-0.9217515588,-0.9216171503,-0.9213483334,-0.920676291,-0.9201386571,-0.9208106995,-0.9216171503,-0.9221547842,-0.9216171503,-0.9205418825,-0.9198697805,-0.9198697805,-0.9189289212,-0.9159719348,-0.9148965478,-0.9186601043,-0.9220203757,-0.9216171503,-0.9197353721,-0.9200042486,-0.9216171503,-0.9228268266,-0.9230956435,-0.9228268266,-0.9222891927,-0.9217515588,-0.9214827418,-0.9218859673,-0.9221547842,-0.9220203757,-0.9218859673,-0.9222891927,-0.9224236012,-0.9224236012,-0.9228268266,-0.9230956435,-0.9230956435,-0.9226924181,-0.9221547842,-0.9216171503,-0.9214827418,-0.9221547842,-0.922961235,-0.9230956435,-0.9226924181,-0.9225580096,-0.9224236012,-0.9220203757,-0.9220203757,-0.9224236012,-0.9224236012,-0.9221547842,-0.9221547842,-0.9221547842,-0.9221547842,-0.9221547842,-0.9222891927,-0.9225580096,-0.9225580096,-0.9225580096,-0.9228268266,-0.9230956435,-0.9228268266,-0.9226924181,-0.9228268266,-0.9228268266,-0.9228268266,-0.922961235,-0.9228268266,-0.9228268266,-0.922961235,-0.922961235,-0.922961235,-0.9230956435,-0.9233644605,-0.923230052,-0.9230956435,-0.9230956435,-0.923230052,-0.9233644605,-0.9234988689,-0.9234988689,-0.9234988689,-0.9237676859,-0.9239020944,-0.9237676859,-0.9247086048,-0.9271280169,-0.9294130206,-0.9294130206,-0.9267247915,-0.9239020944,-0.9233644605,-0.9240365028,-0.9239020944,-0.9233644605,-0.9230956435,-0.9224236012,-0.9210795164,-0.9213483334,-0.9241709113,-0.9268592,-0.9284721017,-0.929816246,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9304882884,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9303538799,-0.930085063,-0.9291442037,-0.9303538799,-0.9306226969,-0.9306226969],[-0.9306226969,-0.929816246,-0.9280688763,-0.9287409782,-0.929816246,-0.9299506545,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.929816246,-0.9290097952,-0.9282032847,-0.9272624254,-0.9256495237,-0.9234988689,-0.9226924181,-0.9236332774,-0.9248430729,-0.9253807068,-0.9263215661,-0.9283376932,-0.9296818376,-0.9288753867,-0.9267247915,-0.9245741963,-0.9237676859,-0.9237676859,-0.9239020944,-0.9237676859,-0.9234988689,-0.9233644605,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.9230956435,-0.922961235,-0.922961235,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.922961235,-0.922961235,-0.9228268266,-0.9226924181,-0.9226924181,-0.9226924181,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9224236012,-0.9224236012,-0.9224236012,-0.9224236012,-0.9224236012,-0.9225580096,-0.9225580096,-0.9224236012,-0.9224236012,-0.9226924181,-0.922961235,-0.9230956435,-0.9228268266,-0.9222891927,-0.9217515588,-0.9212139249,-0.9213483334,-0.9216171503,-0.9214827418,-0.9214827418,-0.9221547842,-0.9226924181,-0.9225580096,-0.9221547842,-0.9220203757,-0.9221547842,-0.9216171503,-0.9209451079,-0.9213483334,-0.9225580096,-0.923230052,-0.9233644605,-0.922961235,-0.9217515588,-0.9200042486,-0.9191977382,-0.9182568789,-0.9162407517,-0.9161063433,-0.9189289212,-0.9208106995,-0.9202730656,-0.9187945127,-0.9185256958,-0.9202730656,-0.9221547842,-0.923230052,-0.9230956435,-0.9221547842,-0.9212139249,-0.9210795164,-0.9217515588,-0.9224236012,-0.9224236012,-0.9221547842,-0.9221547842,-0.9224236012,-0.9226924181,-0.922961235,-0.923230052,-0.9226924181,-0.9213483334,-0.920407474,-0.920407474,-0.9208106995,-0.9216171503,-0.9225580096,-0.922961235,-0.9225580096,-0.9225580096,-0.9226924181,-0.9225580096,-0.9225580096,-0.9225580096,-0.9222891927,-0.9221547842,-0.9221547842,-0.9220203757,-0.9218859673,-0.9220203757,-0.9222891927,-0.9224236012,-0.9224236012,-0.9224236012,-0.9228268266,-0.9230956435,-0.922961235,-0.9226924181,-0.9226924181,-0.9228268266,-0.9228268266,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.9230956435,-0.923230052,-0.9233644605,-0.923230052,-0.923230052,-0.9230956435,-0.9230956435,-0.9233644605,-0.9236332774,-0.9236332774,-0.9236332774,-0.9239020944,-0.9239020944,-0.9239020944,-0.9248430729,-0.9273968339,-0.9295474291,-0.9291442037,-0.9263215661,-0.9239020944,-0.9236332774,-0.9243053794,-0.9240365028,-0.9233644605,-0.9228268266,-0.9217515588,-0.9208106995,-0.9218859673,-0.9248430729,-0.9272624254,-0.9286065698,-0.9296818376,-0.9302194715,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.929816246,-0.9302194715,-0.929816246,-0.9288753867,-0.9304882884,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9295474291,-0.9278000593,-0.9290097952,-0.9299506545,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9296818376,-0.9290097952,-0.9282032847,-0.9271280169,-0.9257839322,-0.9239020944,-0.9225580096,-0.9226924181,-0.9237676859,-0.9247086048,-0.9257839322,-0.9278000593,-0.9294130206,-0.9294130206,-0.9275312424,-0.9249774814,-0.9237676859,-0.9236332774,-0.9236332774,-0.9234988689,-0.9234988689,-0.9233644605,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.922961235,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9224236012,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9226924181,-0.9230956435,-0.9234988689,-0.9234988689,-0.922961235,-0.9224236012,-0.9220203757,-0.9220203757,-0.9220203757,-0.9221547842,-0.9222891927,-0.9225580096,-0.9225580096,-0.9221547842,-0.9220203757,-0.9221547842,-0.9220203757,-0.9214827418,-0.9212139249,-0.9220203757,-0.922961235,-0.9225580096,-0.9221547842,-0.9224236012,-0.9212139249,-0.9183912873,-0.917450428,-0.9175848365,-0.9163751602,-0.9163751602,-0.9187945127,-0.9202730656,-0.9194665551,-0.9185256958,-0.9193321466,-0.9210795164,-0.9224236012,-0.9228268266,-0.9224236012,-0.9216171503,-0.9210795164,-0.9214827418,-0.9218859673,-0.9218859673,-0.9220203757,-0.9222891927,-0.9221547842,-0.9221547842,-0.9226924181,-0.923230052,-0.923230052,-0.9225580096,-0.9210795164,-0.9194665551,-0.9189289212,-0.9196009636,-0.920676291,-0.9218859673,-0.9230956435,-0.9233644605,-0.9228268266,-0.9225580096,-0.9226924181,-0.9228268266,-0.9226924181,-0.9222891927,-0.9220203757,-0.9220203757,-0.9220203757,-0.9221547842,-0.9222891927,-0.9224236012,-0.9224236012,-0.9222891927,-0.9224236012,-0.9226924181,-0.922961235,-0.922961235,-0.9226924181,-0.9226924181,-0.9228268266,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.9230956435,-0.923230052,-0.9233644605,-0.9233644605,-0.9233644605,-0.923230052,-0.9234988689,-0.9236332774,-0.9234988689,-0.9236332774,-0.9237676859,-0.9237676859,-0.9239020944,-0.9240365028,-0.9239020944,-0.9240365028,-0.9253807068,-0.9276656508,-0.9292786121,-0.9284721017,-0.9259183407,-0.9239020944,-0.9240365028,-0.9244397879,-0.9239020944,-0.922961235,-0.9218859673,-0.9208106995,-0.920676291,-0.9224236012,-0.9251118898,-0.9271280169,-0.9284721017,-0.9296818376,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9299506545,-0.9302194715,-0.929816246,-0.9286065698,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9287409782,-0.9275312424,-0.9291442037,-0.9299506545,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.930085063,-0.9295474291,-0.9288753867,-0.9279344678,-0.9268592,-0.9259183407,-0.9244397879,-0.9226924181,-0.9224236012,-0.9236332774,-0.9247086048,-0.9253807068,-0.9268592,-0.9288753867,-0.9296818376,-0.9283376932,-0.9259183407,-0.9240365028,-0.9236332774,-0.9237676859,-0.9237676859,-0.9236332774,-0.9234988689,-0.9233644605,-0.9233644605,-0.923230052,-0.923230052,-0.923230052,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.9228268266,-0.9226924181,-0.9226924181,-0.9228268266,-0.9226924181,-0.9225580096,-0.9226924181,-0.9226924181,-0.9226924181,-0.9225580096,-0.9225580096,-0.9225580096,-0.9224236012,-0.9224236012,-0.9224236012,-0.9224236012,-0.9225580096,-0.9224236012,-0.9225580096,-0.9226924181,-0.922961235,-0.923230052,-0.9236332774,-0.9237676859,-0.9234988689,-0.923230052,-0.9230956435,-0.9228268266,-0.9225580096,-0.9222891927,-0.9222891927,-0.9222891927,-0.9222891927,-0.9221547842,-0.9220203757,-0.9220203757,-0.9218859673,-0.9214827418,-0.9213483334,-0.9218859673,-0.9222891927,-0.9221547842,-0.9216171503,-0.9214827418,-0.920676291,-0.9189289212,-0.9175848365,-0.9170472026,-0.9165095687,-0.9169127941,-0.9182568789,-0.9186601043,-0.9182568789,-0.9183912873,-0.9197353721,-0.9214827418,-0.9224236012,-0.9224236012,-0.9221547842,-0.9217515588,-0.9216171503,-0.9216171503,-0.9221547842,-0.9224236012,-0.9224236012,-0.9224236012,-0.9221547842,-0.9220203757,-0.9225580096,-0.9233644605,-0.9234988689,-0.922961235,-0.9221547842,-0.920676291,-0.9196009636,-0.9197353721,-0.9209451079,-0.9224236012,-0.9234988689,-0.9236332774,-0.9230956435,-0.9228268266,-0.9230956435,-0.9230956435,-0.9225580096,-0.9221547842,-0.9218859673,-0.9220203757,-0.9221547842,-0.9221547842,-0.9222891927,-0.9222891927,-0.9224236012,-0.9224236012,-0.9225580096,-0.9226924181,-0.9226924181,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9230956435,-0.923230052,-0.923230052,-0.9233644605,-0.9234988689,-0.9234988689,-0.9233644605,-0.9234988689,-0.9234988689,-0.9234988689,-0.9234988689,-0.9237676859,-0.9239020944,-0.9237676859,-0.9237676859,-0.9239020944,-0.9237676859,-0.9241709113,-0.9259183407,-0.9283376932,-0.9294130206,-0.9280688763,-0.9255151153,-0.9241709113,-0.9244397879,-0.9244397879,-0.9234988689,-0.9225580096,-0.9220203757,-0.9212139249,-0.9209451079,-0.9224236012,-0.9249774814,-0.9268592,-0.9282032847,-0.9296818376,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9296818376,-0.9294130206,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9288753867,-0.9280688763,-0.9294130206,-0.9296818376,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.929816246,-0.9292786121,-0.9284721017,-0.9275312424,-0.9267247915,-0.9260527492,-0.9247086048,-0.922961235,-0.9221547842,-0.9233644605,-0.9245741963,-0.9249774814,-0.9261871576,-0.9283376932,-0.9295474291,-0.9290097952,-0.9269936085,-0.9247086048,-0.9236332774,-0.9236332774,-0.9237676859,-0.9236332774,-0.9234988689,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.923230052,-0.923230052,-0.923230052,-0.9230956435,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.9228268266,-0.9228268266,-0.9228268266,-0.9226924181,-0.9226924181,-0.9226924181,-0.9228268266,-0.9226924181,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9224236012,-0.9222891927,-0.9222891927,-0.9224236012,-0.9225580096,-0.9225580096,-0.9228268266,-0.922961235,-0.9228268266,-0.922961235,-0.9234988689,-0.9237676859,-0.9234988689,-0.9233644605,-0.923230052,-0.9228268266,-0.9222891927,-0.9222891927,-0.9226924181,-0.9225580096,-0.9221547842,-0.9220203757,-0.9221547842,-0.9220203757,-0.9217515588,-0.9217515588,-0.9220203757,-0.9224236012,-0.9225580096,-0.9225580096,-0.9221547842,-0.9218859673,-0.9213483334,-0.9198697805,-0.9175848365,-0.9162407517,-0.9166439772,-0.9173160195,-0.9175848365,-0.9182568789,-0.9185256958,-0.9193321466,-0.9210795164,-0.9222891927,-0.9222891927,-0.9220203757,-0.9221547842,-0.9221547842,-0.9220203757,-0.9220203757,-0.9224236012,-0.9226924181,-0.9226924181,-0.9225580096,-0.9221547842,-0.9222891927,-0.9230956435,-0.9236332774,-0.9234988689,-0.923230052,-0.9228268266,-0.9222891927,-0.9218859673,-0.9224236012,-0.9233644605,-0.9240365028,-0.9239020944,-0.9233644605,-0.922961235,-0.922961235,-0.9228268266,-0.9222891927,-0.9220203757,-0.9220203757,-0.9221547842,-0.9221547842,-0.9222891927,-0.9222891927,-0.9224236012,-0.9224236012,-0.9224236012,-0.9226924181,-0.9228268266,-0.9228268266,-0.9228268266,-0.9226924181,-0.922961235,-0.923230052,-0.923230052,-0.923230052,-0.9233644605,-0.9234988689,-0.9234988689,-0.9234988689,-0.9234988689,-0.9233644605,-0.923230052,-0.9233644605,-0.9236332774,-0.9237676859,-0.9236332774,-0.9236332774,-0.9237676859,-0.9236332774,-0.9236332774,-0.9239020944,-0.9239020944,-0.9244397879,-0.9263215661,-0.9287409782,-0.9294130206,-0.9273968339,-0.9251118898,-0.9244397879,-0.9247086048,-0.9240365028,-0.922961235,-0.9220203757,-0.9212139249,-0.9208106995,-0.9212139249,-0.9228268266,-0.9251118898,-0.9267247915,-0.9280688763,-0.9295474291,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.929816246,-0.9292786121,-0.9292786121,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9292786121,-0.9291442037,-0.930085063,-0.930085063,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.929816246,-0.9292786121,-0.9282032847,-0.9269936085,-0.9265903831,-0.9261871576,-0.9248430729,-0.922961235,-0.9216171503,-0.9222891927,-0.9243053794,-0.9251118898,-0.9256495237,-0.9275312424,-0.9292786121,-0.9292786121,-0.9276656508,-0.9252462983,-0.9237676859,-0.9236332774,-0.9237676859,-0.9236332774,-0.9234988689,-0.9233644605,-0.9234988689,-0.9234988689,-0.9234988689,-0.9234988689,-0.9234988689,-0.9234988689,-0.9233644605,-0.923230052,-0.9230956435,-0.922961235,-0.922961235,-0.922961235,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9226924181,-0.9225580096,-0.9225580096,-0.9226924181,-0.9226924181,-0.9225580096,-0.9222891927,-0.9222891927,-0.9222891927,-0.9224236012,-0.9225580096,-0.922961235,-0.923230052,-0.923230052,-0.9230956435,-0.9234988689,-0.9236332774,-0.9234988689,-0.9233644605,-0.9230956435,-0.9225580096,-0.9221547842,-0.9224236012,-0.9225580096,-0.9224236012,-0.9221547842,-0.9221547842,-0.9221547842,-0.9218859673,-0.9217515588,-0.9217515588,-0.9218859673,-0.9217515588,-0.9217515588,-0.9220203757,-0.9221547842,-0.9221547842,-0.9221547842,-0.9209451079,-0.917719245,-0.9155686498,-0.9157031178,-0.9157031178,-0.9154342413,-0.9166439772,-0.9191977382,-0.9214827418,-0.9224236012,-0.9226924181,-0.9224236012,-0.9220203757,-0.9220203757,-0.9220203757,-0.9217515588,-0.9217515588,-0.9220203757,-0.9222891927,-0.9225580096,-0.9226924181,-0.9224236012,-0.9221547842,-0.9226924181,-0.9233644605,-0.9236332774,-0.9236332774,-0.9237676859,-0.9237676859,-0.9236332774,-0.9237676859,-0.9241709113,-0.9243053794,-0.9240365028,-0.9233644605,-0.9230956435,-0.9228268266,-0.9225580096,-0.9222891927,-0.9221547842,-0.9221547842,-0.9220203757,-0.9220203757,-0.9221547842,-0.9224236012,-0.9224236012,-0.9222891927,-0.9224236012,-0.9225580096,-0.9226924181,-0.922961235,-0.922961235,-0.9226924181,-0.9225580096,-0.9226924181,-0.9226924181,-0.9225580096,-0.9226924181,-0.922961235,-0.9230956435,-0.9230956435,-0.9233644605,-0.9234988689,-0.9234988689,-0.9234988689,-0.9234988689,-0.9234988689,-0.9236332774,-0.9236332774,-0.9236332774,-0.9236332774,-0.9237676859,-0.9239020944,-0.9241709113,-0.9249774814,-0.9271280169,-0.9291442037,-0.9291442037,-0.9269936085,-0.9251118898,-0.9245741963,-0.9244397879,-0.9236332774,-0.9226924181,-0.9220203757,-0.9214827418,-0.9210795164,-0.9213483334,-0.922961235,-0.9251118898,-0.9265903831,-0.9279344678,-0.9295474291,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.930085063,-0.9299506545,-0.929816246,-0.9290097952,-0.9292786121,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.929816246,-0.9296818376,-0.9302194715,-0.930085063,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9299506545,-0.9290097952,-0.9278000593,-0.9267247915,-0.9264559746,-0.9263215661,-0.9245741963,-0.9226924181,-0.9217515588,-0.9224236012,-0.9243053794,-0.9252462983,-0.9252462983,-0.9265903831,-0.9287409782,-0.9294130206,-0.9283376932,-0.9255151153,-0.9226924181,-0.9224236012,-0.9236332774,-0.9239020944,-0.9233644605,-0.923230052,-0.9233644605,-0.9236332774,-0.9236332774,-0.9236332774,-0.9236332774,-0.9234988689,-0.9234988689,-0.9233644605,-0.923230052,-0.9230956435,-0.922961235,-0.9228268266,-0.9228268266,-0.9228268266,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.9228268266,-0.9228268266,-0.9226924181,-0.9226924181,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9224236012,-0.9224236012,-0.9224236012,-0.9224236012,-0.9224236012,-0.9228268266,-0.923230052,-0.9236332774,-0.9239020944,-0.9237676859,-0.9237676859,-0.9236332774,-0.923230052,-0.9228268266,-0.9222891927,-0.9221547842,-0.9224236012,-0.9224236012,-0.9224236012,-0.9222891927,-0.9221547842,-0.9220203757,-0.9218859673,-0.9216171503,-0.9214827418,-0.9213483334,-0.9214827418,-0.9218859673,-0.9221547842,-0.9221547842,-0.9224236012,-0.9226924181,-0.9216171503,-0.9187945127,-0.9169127941,-0.9165095687,-0.9154342413,-0.9147621393,-0.9171816111,-0.9208106995,-0.9225580096,-0.9226924181,-0.9225580096,-0.9224236012,-0.9222891927,-0.9221547842,-0.9220203757,-0.9216171503,-0.9214827418,-0.9218859673,-0.9221547842,-0.9222891927,-0.9225580096,-0.9226924181,-0.9224236012,-0.9224236012,-0.9228268266,-0.9233644605,-0.9234988689,-0.9237676859,-0.9239020944,-0.9240365028,-0.9241709113,-0.9243053794,-0.9243053794,-0.9240365028,-0.9236332774,-0.923230052,-0.9228268266,-0.9225580096,-0.9222891927,-0.9221547842,-0.9220203757,-0.9220203757,-0.9220203757,-0.9224236012,-0.9225580096,-0.9225580096,-0.9222891927,-0.9222891927,-0.9225580096,-0.9226924181,-0.9226924181,-0.9228268266,-0.9228268266,-0.9224236012,-0.9221547842,-0.9220203757,-0.9220203757,-0.9221547842,-0.9222891927,-0.9224236012,-0.9224236012,-0.9225580096,-0.922961235,-0.9234988689,-0.9236332774,-0.9236332774,-0.9236332774,-0.9239020944,-0.9239020944,-0.9239020944,-0.9237676859,-0.9237676859,-0.9241709113,-0.9244397879,-0.9252462983,-0.9272624254,-0.9291442037,-0.9287409782,-0.9265903831,-0.9251118898,-0.9247086048,-0.9241709113,-0.923230052,-0.9224236012,-0.9217515588,-0.9213483334,-0.9212139249,-0.9216171503,-0.923230052,-0.9251118898,-0.9263215661,-0.9276656508,-0.9294130206,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.9290097952,-0.9294130206,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9303538799,-0.9290097952,-0.9291442037,-0.930085063,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9299506545,-0.9286065698,-0.9273968339,-0.9267247915,-0.9264559746,-0.9260527492,-0.9241709113,-0.9221547842,-0.9214827418,-0.9220203757,-0.9237676859,-0.9251118898,-0.9249774814,-0.9255151153,-0.9279344678,-0.9296818376,-0.9288753867,-0.9257839322,-0.9224236012,-0.9221547842,-0.9237676859,-0.9241709113,-0.9234988689,-0.9233644605,-0.9234988689,-0.9236332774,-0.9233644605,-0.923230052,-0.9233644605,-0.9234988689,-0.9233644605,-0.923230052,-0.923230052,-0.923230052,-0.9230956435,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.9230956435,-0.922961235,-0.922961235,-0.922961235,-0.9228268266,-0.9228268266,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9225580096,-0.9224236012,-0.9224236012,-0.9224236012,-0.9225580096,-0.9228268266,-0.923230052,-0.9236332774,-0.9237676859,-0.9239020944,-0.9237676859,-0.9234988689,-0.9230956435,-0.9225580096,-0.9224236012,-0.9224236012,-0.9226924181,-0.9226924181,-0.9225580096,-0.9224236012,-0.9222891927,-0.9220203757,-0.9218859673,-0.9216171503,-0.9214827418,-0.9214827418,-0.9217515588,-0.9221547842,-0.9222891927,-0.9220203757,-0.9222891927,-0.9228268266,-0.9222891927,-0.9208106995,-0.920676291,-0.9212139249,-0.9210795164,-0.9209451079,-0.9212139249,-0.9214827418,-0.9220203757,-0.9225580096,-0.9225580096,-0.9221547842,-0.9220203757,-0.9218859673,-0.9220203757,-0.9218859673,-0.9217515588,-0.9217515588,-0.9220203757,-0.9221547842,-0.9222891927,-0.9225580096,-0.9225580096,-0.9222891927,-0.9224236012,-0.923230052,-0.9237676859,-0.9240365028,-0.9240365028,-0.9240365028,-0.9243053794,-0.9243053794,-0.9241709113,-0.9239020944,-0.9236332774,-0.923230052,-0.9228268266,-0.9225580096,-0.9222891927,-0.9221547842,-0.9220203757,-0.9220203757,-0.9221547842,-0.9222891927,-0.9224236012,-0.9224236012,-0.9222891927,-0.9224236012,-0.9226924181,-0.9225580096,-0.9225580096,-0.9226924181,-0.9228268266,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.9228268266,-0.9225580096,-0.9224236012,-0.922961235,-0.9236332774,-0.9240365028,-0.9239020944,-0.9236332774,-0.9234988689,-0.9236332774,-0.9237676859,-0.9240365028,-0.9241709113,-0.9243053794,-0.9252462983,-0.9273968339,-0.9292786121,-0.9286065698,-0.9264559746,-0.9247086048,-0.9239020944,-0.9234988689,-0.9230956435,-0.9222891927,-0.9212139249,-0.9208106995,-0.9210795164,-0.9220203757,-0.9237676859,-0.9253807068,-0.9261871576,-0.9276656508,-0.9294130206,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9299506545,-0.930085063,-0.929816246,-0.9286065698,-0.9294130206,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9302194715,-0.9288753867,-0.9286065698,-0.9299506545,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.929816246,-0.9284721017,-0.9272624254,-0.9267247915,-0.9263215661,-0.9256495237,-0.9240365028,-0.9221547842,-0.9214827418,-0.9220203757,-0.9233644605,-0.9247086048,-0.9248430729,-0.9247086048,-0.9269936085,-0.9292786121,-0.9292786121,-0.9273968339,-0.9252462983,-0.9236332774,-0.9234988689,-0.9239020944,-0.9237676859,-0.9236332774,-0.9236332774,-0.9234988689,-0.923230052,-0.923230052,-0.9234988689,-0.9237676859,-0.9234988689,-0.923230052,-0.9230956435,-0.9230956435,-0.9230956435,-0.922961235,-0.922961235,-0.923230052,-0.923230052,-0.9230956435,-0.922961235,-0.9228268266,-0.922961235,-0.922961235,-0.922961235,-0.9228268266,-0.9226924181,-0.9225580096,-0.9226924181,-0.9226924181,-0.9225580096,-0.9224236012,-0.9225580096,-0.9225580096,-0.9224236012,-0.9225580096,-0.922961235,-0.9236332774,-0.9239020944,-0.9239020944,-0.9236332774,-0.9233644605,-0.922961235,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9224236012,-0.9222891927,-0.9221547842,-0.9218859673,-0.9217515588,-0.9217515588,-0.9218859673,-0.9220203757,-0.9221547842,-0.9222891927,-0.9220203757,-0.9220203757,-0.9224236012,-0.9221547842,-0.9212139249,-0.9214827418,-0.9224236012,-0.9225580096,-0.9217515588,-0.9212139249,-0.9217515588,-0.9225580096,-0.9228268266,-0.9226924181,-0.9221547842,-0.9218859673,-0.9214827418,-0.9214827418,-0.9218859673,-0.9221547842,-0.9220203757,-0.9220203757,-0.9221547842,-0.9221547842,-0.9224236012,-0.9226924181,-0.9225580096,-0.9224236012,-0.922961235,-0.9236332774,-0.9237676859,-0.9239020944,-0.9241709113,-0.9243053794,-0.9243053794,-0.9240365028,-0.9237676859,-0.9234988689,-0.9233644605,-0.9228268266,-0.9222891927,-0.9221547842,-0.9222891927,-0.9222891927,-0.9221547842,-0.9222891927,-0.9222891927,-0.9222891927,-0.9224236012,-0.9224236012,-0.9225580096,-0.9226924181,-0.9226924181,-0.9226924181,-0.9228268266,-0.922961235,-0.922961235,-0.9230956435,-0.922961235,-0.922961235,-0.9230956435,-0.923230052,-0.923230052,-0.9234988689,-0.9234988689,-0.9234988689,-0.9233644605,-0.9234988689,-0.9234988689,-0.9237676859,-0.9239020944,-0.9237676859,-0.9234988689,-0.9239020944,-0.9241709113,-0.9241709113,-0.9245741963,-0.9263215661,-0.9287409782,-0.9295474291,-0.9282032847,-0.9260527492,-0.9240365028,-0.9228268266,-0.9224236012,-0.9225580096,-0.9224236012,-0.9218859673,-0.9210795164,-0.9208106995,-0.9217515588,-0.9237676859,-0.9253807068,-0.9261871576,-0.9276656508,-0.9295474291,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.929816246,-0.9286065698,-0.9296818376,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9304882884,-0.9296818376,-0.9292786121,-0.930085063,-0.9302194715,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9296818376,-0.9284721017,-0.9273968339,-0.9267247915,-0.9260527492,-0.9252462983,-0.9240365028,-0.9225580096,-0.9218859673,-0.9218859673,-0.9228268266,-0.9243053794,-0.9249774814,-0.9245741963,-0.9257839322,-0.9283376932,-0.9291442037,-0.9287409782,-0.9275312424,-0.9251118898,-0.9234988689,-0.9234988689,-0.9237676859,-0.9236332774,-0.9234988689,-0.9234988689,-0.9234988689,-0.9234988689,-0.9236332774,-0.9236332774,-0.9234988689,-0.9233644605,-0.923230052,-0.923230052,-0.923230052,-0.9230956435,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.923230052,-0.9230956435,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.9228268266,-0.9226924181,-0.9226924181,-0.9226924181,-0.9225580096,-0.9224236012,-0.9225580096,-0.9225580096,-0.9225580096,-0.9226924181,-0.923230052,-0.9236332774,-0.9237676859,-0.9237676859,-0.9234988689,-0.9230956435,-0.9226924181,-0.9225580096,-0.9225580096,-0.9224236012,-0.9222891927,-0.9224236012,-0.9225580096,-0.9224236012,-0.9222891927,-0.9221547842,-0.9220203757,-0.9218859673,-0.9218859673,-0.9220203757,-0.9220203757,-0.9221547842,-0.9221547842,-0.9220203757,-0.9221547842,-0.9225580096,-0.9222891927,-0.9216171503,-0.9212139249,-0.9210795164,-0.9209451079,-0.9213483334,-0.9220203757,-0.9224236012,-0.9226924181,-0.922961235,-0.9228268266,-0.9225580096,-0.9220203757,-0.9213483334,-0.9213483334,-0.9218859673,-0.9221547842,-0.9222891927,-0.9222891927,-0.9222891927,-0.9222891927,-0.9224236012,-0.9226924181,-0.9226924181,-0.9224236012,-0.9225580096,-0.9230956435,-0.9236332774,-0.9240365028,-0.9241709113,-0.9241709113,-0.9241709113,-0.9241709113,-0.9239020944,-0.9236332774,-0.923230052,-0.9228268266,-0.9224236012,-0.9221547842,-0.9222891927,-0.9222891927,-0.9224236012,-0.9224236012,-0.9225580096,-0.9224236012,-0.9221547842,-0.9222891927,-0.9225580096,-0.9226924181,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.922961235,-0.922961235,-0.922961235,-0.9230956435,-0.923230052,-0.923230052,-0.923230052,-0.9233644605,-0.9234988689,-0.9236332774,-0.9237676859,-0.9236332774,-0.9234988689,-0.9237676859,-0.9241709113,-0.9240365028,-0.9237676859,-0.9239020944,-0.9240365028,-0.9240365028,-0.9251118898,-0.9275312424,-0.9294130206,-0.9291442037,-0.9272624254,-0.9255151153,-0.9244397879,-0.9233644605,-0.9226924181,-0.9224236012,-0.9221547842,-0.9217515588,-0.9209451079,-0.9202730656,-0.9214827418,-0.9239020944,-0.9253807068,-0.9261871576,-0.9275312424,-0.9295474291,-0.9303538799,-0.9304882884,-0.9304882884,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.9302194715,-0.9299506545,-0.9286065698,-0.930085063,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9296818376,-0.9294130206,-0.930085063,-0.9302194715,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9302194715,-0.9295474291,-0.9283376932,-0.9272624254,-0.9265903831,-0.9257839322,-0.9247086048,-0.9236332774,-0.9226924181,-0.9220203757,-0.9218859673,-0.9224236012,-0.9237676859,-0.9249774814,-0.9247086048,-0.9249774814,-0.9273968339,-0.9291442037,-0.9291442037,-0.9290097952,-0.9273968339,-0.9244397879,-0.922961235,-0.923230052,-0.9237676859,-0.9236332774,-0.9234988689,-0.9234988689,-0.9234988689,-0.9236332774,-0.9236332774,-0.9234988689,-0.9233644605,-0.9233644605,-0.923230052,-0.923230052,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.923230052,-0.923230052,-0.923230052,-0.922961235,-0.9228268266,-0.9228268266,-0.9228268266,-0.9226924181,-0.9225580096,-0.9225580096,-0.9226924181,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9228268266,-0.923230052,-0.9234988689,-0.9234988689,-0.9234988689,-0.9233644605,-0.9228268266,-0.9225580096,-0.9225580096,-0.9226924181,-0.9225580096,-0.9224236012,-0.9224236012,-0.9224236012,-0.9224236012,-0.9222891927,-0.9221547842,-0.9221547842,-0.9220203757,-0.9218859673,-0.9218859673,-0.9221547842,-0.9222891927,-0.9222891927,-0.9222891927,-0.9224236012,-0.9226924181,-0.9228268266,-0.9222891927,-0.9213483334,-0.9209451079,-0.9216171503,-0.9225580096,-0.9226924181,-0.9225580096,-0.9228268266,-0.922961235,-0.9228268266,-0.9224236012,-0.9218859673,-0.9210795164,-0.9212139249,-0.9218859673,-0.9222891927,-0.9221547842,-0.9221547842,-0.9224236012,-0.9224236012,-0.9224236012,-0.9224236012,-0.9226924181,-0.9225580096,-0.9224236012,-0.9226924181,-0.923230052,-0.9237676859,-0.9240365028,-0.9239020944,-0.9237676859,-0.9237676859,-0.9237676859,-0.9234988689,-0.923230052,-0.9228268266,-0.9224236012,-0.9222891927,-0.9222891927,-0.9224236012,-0.9225580096,-0.9226924181,-0.9226924181,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9226924181,-0.9228268266,-0.9228268266,-0.9226924181,-0.922961235,-0.9230956435,-0.9230956435,-0.922961235,-0.922961235,-0.922961235,-0.9230956435,-0.923230052,-0.923230052,-0.9233644605,-0.9234988689,-0.9236332774,-0.9236332774,-0.9236332774,-0.9237676859,-0.9237676859,-0.9237676859,-0.9240365028,-0.9240365028,-0.9244397879,-0.9259183407,-0.9283376932,-0.9296818376,-0.9290097952,-0.9269936085,-0.9257839322,-0.9249774814,-0.9240365028,-0.923230052,-0.9225580096,-0.9214827418,-0.9209451079,-0.920676291,-0.920407474,-0.9214827418,-0.9240365028,-0.9253807068,-0.9261871576,-0.9278000593,-0.9296818376,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9296818376,-0.9302194715,-0.9299506545,-0.9275312424,-0.9302194715,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9290097952,-0.9291442037,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9302194715,-0.9292786121,-0.9280688763,-0.9269936085,-0.9263215661,-0.9255151153,-0.9244397879,-0.9234988689,-0.9228268266,-0.9221547842,-0.9218859673,-0.9218859673,-0.9230956435,-0.9247086048,-0.9248430729,-0.9244397879,-0.9263215661,-0.9287409782,-0.9291442037,-0.9288753867,-0.9286065698,-0.9260527492,-0.922961235,-0.9224236012,-0.9234988689,-0.9239020944,-0.9236332774,-0.9234988689,-0.9236332774,-0.9236332774,-0.9236332774,-0.9234988689,-0.923230052,-0.923230052,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.923230052,-0.923230052,-0.9233644605,-0.923230052,-0.922961235,-0.922961235,-0.9228268266,-0.9226924181,-0.9224236012,-0.9225580096,-0.9226924181,-0.9226924181,-0.9225580096,-0.9225580096,-0.9225580096,-0.9226924181,-0.9226924181,-0.922961235,-0.923230052,-0.9233644605,-0.9233644605,-0.9230956435,-0.9228268266,-0.9226924181,-0.9226924181,-0.9226924181,-0.9224236012,-0.9222891927,-0.9221547842,-0.9221547842,-0.9222891927,-0.9222891927,-0.9221547842,-0.9221547842,-0.9221547842,-0.9218859673,-0.9218859673,-0.9220203757,-0.9222891927,-0.9221547842,-0.9221547842,-0.9222891927,-0.9225580096,-0.9225580096,-0.9220203757,-0.9208106995,-0.920676291,-0.9220203757,-0.9230956435,-0.9226924181,-0.9221547842,-0.9228268266,-0.923230052,-0.9228268266,-0.9224236012,-0.9220203757,-0.9210795164,-0.9210795164,-0.9220203757,-0.9224236012,-0.9224236012,-0.9224236012,-0.9224236012,-0.9224236012,-0.9225580096,-0.9225580096,-0.9225580096,-0.9226924181,-0.9225580096,-0.9225580096,-0.922961235,-0.9234988689,-0.9237676859,-0.9237676859,-0.9234988689,-0.9233644605,-0.9233644605,-0.9233644605,-0.9230956435,-0.9226924181,-0.9224236012,-0.9222891927,-0.9224236012,-0.9225580096,-0.9225580096,-0.9226924181,-0.9226924181,-0.9225580096,-0.9225580096,-0.9224236012,-0.9225580096,-0.9225580096,-0.9226924181,-0.9228268266,-0.9228268266,-0.922961235,-0.9230956435,-0.9230956435,-0.9230956435,-0.922961235,-0.9228268266,-0.9228268266,-0.922961235,-0.923230052,-0.923230052,-0.9234988689,-0.9236332774,-0.9236332774,-0.9237676859,-0.9239020944,-0.9237676859,-0.9237676859,-0.9239020944,-0.9240365028,-0.9243053794,-0.9252462983,-0.9271280169,-0.9288753867,-0.9294130206,-0.9286065698,-0.9267247915,-0.9251118898,-0.9241709113,-0.9234988689,-0.9230956435,-0.9224236012,-0.9212139249,-0.920407474,-0.9205418825,-0.920407474,-0.9216171503,-0.9241709113,-0.9253807068,-0.9263215661,-0.9280688763,-0.929816246,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.929816246,-0.9302194715,-0.9296818376,-0.9275312424,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9279344678,-0.9287409782,-0.9296818376,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9302194715,-0.9292786121,-0.9279344678,-0.9268592,-0.9261871576,-0.9256495237,-0.9245741963,-0.923230052,-0.9221547842,-0.9216171503,-0.9213483334,-0.9214827418,-0.9224236012,-0.9240365028,-0.9245741963,-0.9237676859,-0.9248430729,-0.9278000593,-0.9291442037,-0.9290097952,-0.9290097952,-0.9276656508,-0.9243053794,-0.9224236012,-0.922961235,-0.9239020944,-0.9237676859,-0.9236332774,-0.9236332774,-0.9236332774,-0.9234988689,-0.9234988689,-0.9233644605,-0.923230052,-0.9233644605,-0.9234988689,-0.9233644605,-0.923230052,-0.9230956435,-0.9230956435,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.9230956435,-0.922961235,-0.922961235,-0.9228268266,-0.9226924181,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9226924181,-0.9226924181,-0.9228268266,-0.922961235,-0.923230052,-0.923230052,-0.922961235,-0.9226924181,-0.9226924181,-0.9228268266,-0.9226924181,-0.9224236012,-0.9222891927,-0.9222891927,-0.9224236012,-0.9222891927,-0.9220203757,-0.9221547842,-0.9221547842,-0.9221547842,-0.9220203757,-0.9218859673,-0.9218859673,-0.9222891927,-0.9226924181,-0.9226924181,-0.9224236012,-0.9224236012,-0.9224236012,-0.9214827418,-0.920676291,-0.9217515588,-0.9233644605,-0.9233644605,-0.9220203757,-0.9217515588,-0.923230052,-0.9237676859,-0.922961235,-0.9224236012,-0.9220203757,-0.9213483334,-0.9213483334,-0.9220203757,-0.9224236012,-0.9225580096,-0.9224236012,-0.9224236012,-0.9224236012,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9228268266,-0.9233644605,-0.9236332774,-0.9237676859,-0.9234988689,-0.9230956435,-0.9230956435,-0.923230052,-0.922961235,-0.9225580096,-0.9222891927,-0.9222891927,-0.9224236012,-0.9225580096,-0.9226924181,-0.9225580096,-0.9225580096,-0.9224236012,-0.9225580096,-0.9225580096,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9228268266,-0.922961235,-0.922961235,-0.9228268266,-0.9228268266,-0.922961235,-0.922961235,-0.922961235,-0.9230956435,-0.9233644605,-0.9234988689,-0.9234988689,-0.9236332774,-0.9236332774,-0.9236332774,-0.9236332774,-0.9236332774,-0.9237676859,-0.9240365028,-0.9240365028,-0.9243053794,-0.9257839322,-0.9280688763,-0.9295474291,-0.9294130206,-0.9280688763,-0.9260527492,-0.9243053794,-0.9233644605,-0.922961235,-0.9228268266,-0.9222891927,-0.9213483334,-0.9208106995,-0.920676291,-0.920407474,-0.9214827418,-0.9239020944,-0.9252462983,-0.9263215661,-0.9282032847,-0.9299506545,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9296818376,-0.9302194715,-0.9292786121,-0.9275312424,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9284721017,-0.9291442037,-0.9292786121,-0.9299506545,-0.9303538799,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9294130206,-0.9279344678,-0.9267247915,-0.9261871576,-0.9253807068,-0.9241709113,-0.9226924181,-0.9216171503,-0.9214827418,-0.9218859673,-0.9220203757,-0.9224236012,-0.9237676859,-0.9247086048,-0.9234988689,-0.923230052,-0.9261871576,-0.9291442037,-0.9291442037,-0.9287409782,-0.9284721017,-0.9263215661,-0.9237676859,-0.923230052,-0.9236332774,-0.9237676859,-0.9237676859,-0.9237676859,-0.9237676859,-0.9236332774,-0.9234988689,-0.9233644605,-0.9233644605,-0.9234988689,-0.9234988689,-0.9234988689,-0.9233644605,-0.9234988689,-0.9234988689,-0.9233644605,-0.923230052,-0.9230956435,-0.9230956435,-0.9230956435,-0.922961235,-0.922961235,-0.922961235,-0.9228268266,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9225580096,-0.9226924181,-0.9225580096,-0.9224236012,-0.9225580096,-0.922961235,-0.923230052,-0.923230052,-0.922961235,-0.9226924181,-0.9225580096,-0.9226924181,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9222891927,-0.9222891927,-0.9222891927,-0.9221547842,-0.9221547842,-0.9221547842,-0.9221547842,-0.9220203757,-0.9220203757,-0.9221547842,-0.9225580096,-0.9226924181,-0.9225580096,-0.9226924181,-0.9225580096,-0.9214827418,-0.9214827418,-0.9228268266,-0.9234988689,-0.9228268266,-0.9216171503,-0.9221547842,-0.9237676859,-0.9237676859,-0.9226924181,-0.9222891927,-0.9221547842,-0.9217515588,-0.9216171503,-0.9220203757,-0.9222891927,-0.9224236012,-0.9224236012,-0.9224236012,-0.9224236012,-0.9224236012,-0.9224236012,-0.9225580096,-0.9226924181,-0.9225580096,-0.9224236012,-0.9226924181,-0.9230956435,-0.9233644605,-0.9234988689,-0.9233644605,-0.9230956435,-0.922961235,-0.9230956435,-0.9228268266,-0.9222891927,-0.9221547842,-0.9222891927,-0.9225580096,-0.9226924181,-0.9226924181,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9228268266,-0.922961235,-0.922961235,-0.9230956435,-0.9230956435,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.9233644605,-0.9234988689,-0.9236332774,-0.9236332774,-0.9236332774,-0.9239020944,-0.9237676859,-0.9236332774,-0.9239020944,-0.9241709113,-0.9241709113,-0.9245741963,-0.9264559746,-0.9286065698,-0.9296818376,-0.9291442037,-0.9273968339,-0.9255151153,-0.9239020944,-0.922961235,-0.9226924181,-0.9225580096,-0.9221547842,-0.9216171503,-0.9210795164,-0.920407474,-0.9201386571,-0.9214827418,-0.9239020944,-0.9252462983,-0.9265903831,-0.9284721017,-0.930085063,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.929816246,-0.9290097952,-0.9283376932,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9292786121,-0.9299506545,-0.929816246,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9295474291,-0.9279344678,-0.9265903831,-0.9257839322,-0.9245741963,-0.922961235,-0.9220203757,-0.9216171503,-0.9216171503,-0.9220203757,-0.9222891927,-0.9225580096,-0.9237676859,-0.9248430729,-0.923230052,-0.9216171503,-0.9241709113,-0.9284721017,-0.9291442037,-0.9275312424,-0.9273968339,-0.9276656508,-0.9260527492,-0.9241709113,-0.9237676859,-0.9239020944,-0.9237676859,-0.9237676859,-0.9236332774,-0.9236332774,-0.9236332774,-0.9234988689,-0.9233644605,-0.9234988689,-0.9234988689,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.923230052,-0.9230956435,-0.9230956435,-0.9230956435,-0.922961235,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9225580096,-0.9226924181,-0.9228268266,-0.922961235,-0.9228268266,-0.9226924181,-0.9226924181,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9224236012,-0.9224236012,-0.9225580096,-0.9224236012,-0.9221547842,-0.9221547842,-0.9222891927,-0.9221547842,-0.9218859673,-0.9217515588,-0.9218859673,-0.9220203757,-0.9224236012,-0.922961235,-0.9226924181,-0.9213483334,-0.9220203757,-0.922961235,-0.9228268266,-0.922961235,-0.9221547842,-0.9228268266,-0.9240365028,-0.9234988689,-0.9224236012,-0.9221547842,-0.9222891927,-0.9220203757,-0.9216171503,-0.9218859673,-0.9224236012,-0.9224236012,-0.9224236012,-0.9224236012,-0.9224236012,-0.9224236012,-0.9224236012,-0.9226924181,-0.9228268266,-0.9228268266,-0.9225580096,-0.9225580096,-0.922961235,-0.9230956435,-0.923230052,-0.923230052,-0.9230956435,-0.9228268266,-0.9225580096,-0.9224236012,-0.9222891927,-0.9224236012,-0.9225580096,-0.9226924181,-0.9226924181,-0.9225580096,-0.9225580096,-0.9225580096,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9225580096,-0.9226924181,-0.9228268266,-0.922961235,-0.922961235,-0.9230956435,-0.923230052,-0.9234988689,-0.9233644605,-0.923230052,-0.923230052,-0.9233644605,-0.9234988689,-0.9236332774,-0.9236332774,-0.9236332774,-0.9237676859,-0.9237676859,-0.9236332774,-0.9237676859,-0.9240365028,-0.9240365028,-0.9243053794,-0.9255151153,-0.9273968339,-0.9287409782,-0.9291442037,-0.9282032847,-0.9263215661,-0.9247086048,-0.9237676859,-0.9230956435,-0.9226924181,-0.9222891927,-0.9216171503,-0.9210795164,-0.9208106995,-0.9200042486,-0.9197353721,-0.9214827418,-0.9239020944,-0.9253807068,-0.9267247915,-0.9287409782,-0.930085063,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.929816246,-0.9287409782,-0.9291442037,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9283376932,-0.929816246,-0.929816246,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9296818376,-0.9278000593,-0.9264559746,-0.9253807068,-0.9237676859,-0.9221547842,-0.9218859673,-0.9218859673,-0.9216171503,-0.9217515588,-0.9221547842,-0.9225580096,-0.9234988689,-0.9244397879,-0.9228268266,-0.9200042486,-0.9217515588,-0.9272624254,-0.9295474291,-0.9271280169,-0.9253807068,-0.9268592,-0.9278000593,-0.9261871576,-0.9243053794,-0.9239020944,-0.9239020944,-0.9237676859,-0.9239020944,-0.9237676859,-0.9236332774,-0.9234988689,-0.9234988689,-0.9234988689,-0.9234988689,-0.9233644605,-0.9234988689,-0.9236332774,-0.9236332774,-0.9234988689,-0.9233644605,-0.923230052,-0.923230052,-0.923230052,-0.9230956435,-0.922961235,-0.922961235,-0.9228268266,-0.9228268266,-0.9228268266,-0.9226924181,-0.9226924181,-0.9228268266,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9225580096,-0.9225580096,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9224236012,-0.9225580096,-0.9228268266,-0.9225580096,-0.9222891927,-0.9222891927,-0.9222891927,-0.9222891927,-0.9222891927,-0.9222891927,-0.9220203757,-0.9217515588,-0.9222891927,-0.9230956435,-0.9225580096,-0.9210795164,-0.9221547842,-0.9230956435,-0.923230052,-0.9236332774,-0.9225580096,-0.9234988689,-0.9243053794,-0.9233644605,-0.9221547842,-0.9220203757,-0.9222891927,-0.9221547842,-0.9216171503,-0.9218859673,-0.9225580096,-0.9226924181,-0.9224236012,-0.9222891927,-0.9224236012,-0.9224236012,-0.9225580096,-0.9228268266,-0.922961235,-0.9228268266,-0.9226924181,-0.9225580096,-0.9226924181,-0.922961235,-0.9230956435,-0.9230956435,-0.9230956435,-0.922961235,-0.9226924181,-0.9222891927,-0.9222891927,-0.9222891927,-0.9225580096,-0.9226924181,-0.9226924181,-0.9225580096,-0.9225580096,-0.9226924181,-0.9228268266,-0.9228268266,-0.9228268266,-0.9226924181,-0.9226924181,-0.9226924181,-0.922961235,-0.9230956435,-0.9230956435,-0.9230956435,-0.923230052,-0.9233644605,-0.9233644605,-0.923230052,-0.923230052,-0.9233644605,-0.9234988689,-0.9236332774,-0.9237676859,-0.9239020944,-0.9240365028,-0.9239020944,-0.9239020944,-0.9240365028,-0.9241709113,-0.9240365028,-0.9248430729,-0.9267247915,-0.9283376932,-0.9291442037,-0.9290097952,-0.9276656508,-0.9256495237,-0.9241709113,-0.9234988689,-0.922961235,-0.9226924181,-0.9221547842,-0.9210795164,-0.920407474,-0.920407474,-0.9200042486,-0.9198697805,-0.9214827418,-0.9239020944,-0.9253807068,-0.9268592,-0.9290097952,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9296818376,-0.929816246,-0.9296818376,-0.9284721017,-0.9288753867,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9303538799,-0.9286065698,-0.9299506545,-0.9296818376,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.930085063,-0.930085063,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9295474291,-0.9275312424,-0.9261871576,-0.9252462983,-0.9233644605,-0.9217515588,-0.9217515588,-0.9220203757,-0.9216171503,-0.9213483334,-0.9221547842,-0.9228268266,-0.9233644605,-0.9241709113,-0.9237676859,-0.9214827418,-0.9209451079,-0.9247086048,-0.9291442037,-0.9288753867,-0.9253807068,-0.9249774814,-0.9276656508,-0.9282032847,-0.9257839322,-0.9239020944,-0.9237676859,-0.9239020944,-0.9239020944,-0.9237676859,-0.9236332774,-0.9233644605,-0.9233644605,-0.9234988689,-0.9234988689,-0.9233644605,-0.9233644605,-0.9233644605,-0.9234988689,-0.9233644605,-0.923230052,-0.9230956435,-0.9230956435,-0.923230052,-0.923230052,-0.923230052,-0.9230956435,-0.922961235,-0.922961235,-0.922961235,-0.9226924181,-0.9226924181,-0.9228268266,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9225580096,-0.9225580096,-0.9228268266,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9225580096,-0.9226924181,-0.9226924181,-0.9225580096,-0.9225580096,-0.9226924181,-0.9226924181,-0.9225580096,-0.9224236012,-0.9222891927,-0.9224236012,-0.9222891927,-0.9217515588,-0.9209451079,-0.9212139249,-0.9222891927,-0.9230956435,-0.9224236012,-0.9212139249,-0.922961235,-0.9243053794,-0.9243053794,-0.9240365028,-0.9226924181,-0.9236332774,-0.9241709113,-0.9230956435,-0.9221547842,-0.9220203757,-0.9222891927,-0.9222891927,-0.9217515588,-0.9216171503,-0.9225580096,-0.9228268266,-0.9224236012,-0.9221547842,-0.9224236012,-0.9225580096,-0.9225580096,-0.922961235,-0.922961235,-0.9228268266,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.922961235,-0.9230956435,-0.9230956435,-0.9228268266,-0.9225580096,-0.9224236012,-0.9224236012,-0.9225580096,-0.9225580096,-0.9226924181,-0.9225580096,-0.9224236012,-0.9225580096,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9228268266,-0.922961235,-0.922961235,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.923230052,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.9234988689,-0.9236332774,-0.9237676859,-0.9239020944,-0.9239020944,-0.9237676859,-0.9239020944,-0.9240365028,-0.9240365028,-0.9243053794,-0.9256495237,-0.9275312424,-0.9288753867,-0.9292786121,-0.9288753867,-0.9271280169,-0.9251118898,-0.9237676859,-0.9230956435,-0.9228268266,-0.9226924181,-0.9222891927,-0.9212139249,-0.9202730656,-0.9198697805,-0.9198697805,-0.920407474,-0.9221547842,-0.9241709113,-0.9252462983,-0.9268592,-0.9291442037,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.9295474291,-0.9286065698,-0.9292786121,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9302194715,-0.9291442037,-0.929816246,-0.9299506545,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9295474291,-0.9275312424,-0.9260527492,-0.9249774814,-0.9233644605,-0.9217515588,-0.9214827418,-0.9217515588,-0.9216171503,-0.9214827418,-0.9221547842,-0.9230956435,-0.9234988689,-0.9240365028,-0.9244397879,-0.9230956435,-0.9213483334,-0.9226924181,-0.9269936085,-0.9294130206,-0.9280688763,-0.9248430729,-0.9249774814,-0.9276656508,-0.9276656508,-0.9249774814,-0.9234988689,-0.9236332774,-0.9239020944,-0.9239020944,-0.9237676859,-0.9234988689,-0.9234988689,-0.9234988689,-0.9236332774,-0.9234988689,-0.923230052,-0.9230956435,-0.923230052,-0.9233644605,-0.923230052,-0.9230956435,-0.923230052,-0.923230052,-0.9230956435,-0.922961235,-0.9230956435,-0.9230956435,-0.9230956435,-0.922961235,-0.9228268266,-0.9226924181,-0.9228268266,-0.9228268266,-0.9226924181,-0.9226924181,-0.9228268266,-0.9228268266,-0.9226924181,-0.9228268266,-0.9226924181,-0.9225580096,-0.9226924181,-0.9226924181,-0.9226924181,-0.9225580096,-0.9226924181,-0.9228268266,-0.9228268266,-0.9226924181,-0.9222891927,-0.9221547842,-0.9225580096,-0.9224236012,-0.9222891927,-0.9226924181,-0.9221547842,-0.9202730656,-0.9196009636,-0.9209451079,-0.9222891927,-0.922961235,-0.9222891927,-0.9213483334,-0.9230956435,-0.9256495237,-0.9259183407,-0.9236332774,-0.9222891927,-0.9236332774,-0.9240365028,-0.922961235,-0.9222891927,-0.9222891927,-0.9225580096,-0.9224236012,-0.9216171503,-0.9216171503,-0.9225580096,-0.922961235,-0.9225580096,-0.9222891927,-0.9224236012,-0.9226924181,-0.9225580096,-0.9226924181,-0.922961235,-0.922961235,-0.9228268266,-0.9228268266,-0.9226924181,-0.9225580096,-0.9228268266,-0.9230956435,-0.9230956435,-0.9226924181,-0.9224236012,-0.9222891927,-0.9224236012,-0.9226924181,-0.9228268266,-0.9226924181,-0.9225580096,-0.9224236012,-0.9225580096,-0.9226924181,-0.9228268266,-0.9228268266,-0.922961235,-0.922961235,-0.9230956435,-0.923230052,-0.923230052,-0.9230956435,-0.9230956435,-0.9230956435,-0.9233644605,-0.9233644605,-0.9233644605,-0.9234988689,-0.9234988689,-0.9234988689,-0.9236332774,-0.9236332774,-0.9237676859,-0.9239020944,-0.9237676859,-0.9236332774,-0.9237676859,-0.9239020944,-0.9240365028,-0.9249774814,-0.9265903831,-0.9280688763,-0.9290097952,-0.9292786121,-0.9282032847,-0.9259183407,-0.9241709113,-0.9233644605,-0.9230956435,-0.922961235,-0.9228268266,-0.9224236012,-0.9216171503,-0.9208106995,-0.9201386571,-0.9198697805,-0.9208106995,-0.9228268266,-0.9243053794,-0.9249774814,-0.9268592,-0.9294130206,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.929816246,-0.9287409782,-0.9296818376,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9302194715,-0.9295474291,-0.929816246,-0.9299506545,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9296818376,-0.9276656508,-0.9260527492,-0.9247086048,-0.922961235,-0.9216171503,-0.9214827418,-0.9218859673,-0.9221547842,-0.9220203757,-0.9221547842,-0.9228268266,-0.9234988689,-0.9233644605,-0.9233644605,-0.922961235,-0.9221547842,-0.9224236012,-0.9249774814,-0.9283376932,-0.9287409782,-0.9257839322,-0.9213483334,-0.9233644605,-0.9276656508,-0.9272624254,-0.9243053794,-0.9233644605,-0.9239020944,-0.9241709113,-0.9239020944,-0.9236332774,-0.9236332774,-0.9237676859,-0.9237676859,-0.9236332774,-0.9236332774,-0.9236332774,-0.9236332774,-0.9234988689,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.923230052,-0.9230956435,-0.9230956435,-0.9233644605,-0.9233644605,-0.9230956435,-0.9228268266,-0.9228268266,-0.922961235,-0.922961235,-0.9228268266,-0.9226924181,-0.9226924181,-0.9226924181,-0.9228268266,-0.9228268266,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9225580096,-0.9226924181,-0.9226924181,-0.9226924181,-0.9228268266,-0.9225580096,-0.9218859673,-0.9217515588,-0.9217515588,-0.9214827418,-0.9213483334,-0.9213483334,-0.9212139249,-0.9213483334,-0.9217515588,-0.9220203757,-0.9222891927,-0.9220203757,-0.9213483334,-0.9226924181,-0.9255151153,-0.9257839322,-0.9228268266,-0.9220203757,-0.9233644605,-0.9234988689,-0.9226924181,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9218859673,-0.9216171503,-0.9222891927,-0.9225580096,-0.9221547842,-0.9222891927,-0.9228268266,-0.9228268266,-0.9225580096,-0.9226924181,-0.922961235,-0.9230956435,-0.922961235,-0.9228268266,-0.9226924181,-0.9225580096,-0.9226924181,-0.922961235,-0.9228268266,-0.9225580096,-0.9225580096,-0.9224236012,-0.9224236012,-0.9226924181,-0.922961235,-0.9228268266,-0.9225580096,-0.9225580096,-0.9226924181,-0.922961235,-0.922961235,-0.9230956435,-0.9230956435,-0.923230052,-0.9233644605,-0.923230052,-0.9230956435,-0.9230956435,-0.923230052,-0.923230052,-0.9233644605,-0.9234988689,-0.9236332774,-0.9236332774,-0.9236332774,-0.9236332774,-0.9236332774,-0.9234988689,-0.9236332774,-0.9237676859,-0.9237676859,-0.9237676859,-0.9237676859,-0.9237676859,-0.9244397879,-0.9261871576,-0.9272624254,-0.9278000593,-0.9287409782,-0.9290097952,-0.9272624254,-0.9248430729,-0.9236332774,-0.9230956435,-0.922961235,-0.922961235,-0.922961235,-0.9224236012,-0.9216171503,-0.9208106995,-0.9200042486,-0.9197353721,-0.920407474,-0.9222891927,-0.9241709113,-0.9249774814,-0.9269936085,-0.9295474291,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9299506545,-0.9296818376,-0.9299506545,-0.9292786121,-0.9276656508,-0.9296818376,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.929816246,-0.9292786121,-0.929816246,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.929816246,-0.9279344678,-0.9260527492,-0.9244397879,-0.9222891927,-0.9208106995,-0.9209451079,-0.9216171503,-0.9218859673,-0.9218859673,-0.9220203757,-0.9225580096,-0.9228268266,-0.9224236012,-0.9224236012,-0.9233644605,-0.9234988689,-0.9228268266,-0.9237676859,-0.9271280169,-0.9295474291,-0.9272624254,-0.9205418825,-0.9191977382,-0.9251118898,-0.9284721017,-0.9261871576,-0.9237676859,-0.9240365028,-0.9243053794,-0.9240365028,-0.9237676859,-0.9237676859,-0.9239020944,-0.9237676859,-0.9234988689,-0.9236332774,-0.9236332774,-0.9236332774,-0.9233644605,-0.9233644605,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.9230956435,-0.9230956435,-0.923230052,-0.9230956435,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.9228268266,-0.9226924181,-0.9226924181,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.922961235,-0.9228268266,-0.9222891927,-0.9218859673,-0.9217515588,-0.9216171503,-0.9216171503,-0.9217515588,-0.9221547842,-0.9222891927,-0.9222891927,-0.9221547842,-0.9221547842,-0.9217515588,-0.9214827418,-0.9225580096,-0.9244397879,-0.9243053794,-0.9224236012,-0.9220203757,-0.9226924181,-0.922961235,-0.9228268266,-0.9228268266,-0.9226924181,-0.9224236012,-0.9224236012,-0.9224236012,-0.9224236012,-0.9225580096,-0.9226924181,-0.9222891927,-0.9222891927,-0.922961235,-0.922961235,-0.9226924181,-0.9226924181,-0.922961235,-0.922961235,-0.9228268266,-0.9228268266,-0.9228268266,-0.9225580096,-0.9226924181,-0.9228268266,-0.9228268266,-0.9224236012,-0.9224236012,-0.9225580096,-0.9225580096,-0.9228268266,-0.922961235,-0.9228268266,-0.9225580096,-0.9226924181,-0.9228268266,-0.9230956435,-0.9230956435,-0.922961235,-0.922961235,-0.923230052,-0.9234988689,-0.9233644605,-0.922961235,-0.9230956435,-0.9234988689,-0.9236332774,-0.9234988689,-0.9234988689,-0.9236332774,-0.9236332774,-0.9237676859,-0.9239020944,-0.9237676859,-0.9236332774,-0.9236332774,-0.9236332774,-0.9234988689,-0.9239020944,-0.9239020944,-0.9239020944,-0.9256495237,-0.9276656508,-0.9271280169,-0.9264559746,-0.9280688763,-0.9286065698,-0.9261871576,-0.9240365028,-0.9236332774,-0.9233644605,-0.922961235,-0.922961235,-0.922961235,-0.9225580096,-0.9214827418,-0.920676291,-0.9201386571,-0.9197353721,-0.9201386571,-0.9221547842,-0.9241709113,-0.9252462983,-0.9273968339,-0.9299506545,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.929816246,-0.930085063,-0.9288753867,-0.9271280169,-0.9299506545,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9296818376,-0.9291442037,-0.9296818376,-0.930085063,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.929816246,-0.9280688763,-0.9260527492,-0.9241709113,-0.9218859673,-0.9202730656,-0.9202730656,-0.9208106995,-0.9212139249,-0.9217515588,-0.9222891927,-0.9226924181,-0.9226924181,-0.9225580096,-0.9228268266,-0.9236332774,-0.9237676859,-0.923230052,-0.9233644605,-0.9257839322,-0.9288753867,-0.9288753867,-0.9241709113,-0.9202730656,-0.923230052,-0.9282032847,-0.9279344678,-0.9251118898,-0.9243053794,-0.9244397879,-0.9241709113,-0.9239020944,-0.9237676859,-0.9237676859,-0.9237676859,-0.9234988689,-0.9233644605,-0.9233644605,-0.9233644605,-0.923230052,-0.9233644605,-0.923230052,-0.9230956435,-0.9230956435,-0.923230052,-0.923230052,-0.9230956435,-0.923230052,-0.9233644605,-0.9233644605,-0.923230052,-0.9230956435,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.9228268266,-0.9226924181,-0.9228268266,-0.922961235,-0.922961235,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9228268266,-0.9228268266,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9224236012,-0.9224236012,-0.9222891927,-0.9222891927,-0.9224236012,-0.9224236012,-0.9217515588,-0.9214827418,-0.9225580096,-0.9241709113,-0.9237676859,-0.9222891927,-0.9220203757,-0.9226924181,-0.9228268266,-0.922961235,-0.923230052,-0.9226924181,-0.9222891927,-0.9225580096,-0.9228268266,-0.9226924181,-0.9220203757,-0.9216171503,-0.9217515588,-0.9222891927,-0.9228268266,-0.9228268266,-0.9226924181,-0.9228268266,-0.9230956435,-0.9230956435,-0.9226924181,-0.9226924181,-0.9226924181,-0.9225580096,-0.9225580096,-0.9226924181,-0.9225580096,-0.9224236012,-0.9225580096,-0.9225580096,-0.9226924181,-0.9228268266,-0.9228268266,-0.9228268266,-0.9226924181,-0.9226924181,-0.922961235,-0.923230052,-0.9233644605,-0.9230956435,-0.9230956435,-0.9233644605,-0.9234988689,-0.9233644605,-0.9230956435,-0.922961235,-0.9233644605,-0.9237676859,-0.9237676859,-0.9234988689,-0.9234988689,-0.9236332774,-0.9239020944,-0.9240365028,-0.9237676859,-0.9236332774,-0.9236332774,-0.9234988689,-0.9237676859,-0.9239020944,-0.9236332774,-0.9247086048,-0.9275312424,-0.9283376932,-0.9267247915,-0.9265903831,-0.9283376932,-0.9276656508,-0.9249774814,-0.9236332774,-0.9234988689,-0.923230052,-0.922961235,-0.922961235,-0.922961235,-0.9224236012,-0.9213483334,-0.9208106995,-0.920407474,-0.9198697805,-0.9201386571,-0.9220203757,-0.9239020944,-0.9252462983,-0.9276656508,-0.9302194715,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9299506545,-0.9303538799,-0.9295474291,-0.9283376932,-0.9304882884,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9299506545,-0.9296818376,-0.9299506545,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.930085063,-0.9283376932,-0.9259183407,-0.9237676859,-0.9214827418,-0.9201386571,-0.9201386571,-0.9208106995,-0.9212139249,-0.9216171503,-0.9220203757,-0.9225580096,-0.922961235,-0.923230052,-0.9234988689,-0.9236332774,-0.9233644605,-0.922961235,-0.922961235,-0.9243053794,-0.9269936085,-0.9290097952,-0.9284721017,-0.9256495237,-0.9244397879,-0.9265903831,-0.9283376932,-0.9265903831,-0.9245741963,-0.9243053794,-0.9243053794,-0.9240365028,-0.9239020944,-0.9237676859,-0.9237676859,-0.9236332774,-0.9234988689,-0.9234988689,-0.9233644605,-0.9233644605,-0.9234988689,-0.9233644605,-0.923230052,-0.923230052,-0.9233644605,-0.9234988689,-0.9233644605,-0.9230956435,-0.9230956435,-0.9233644605,-0.9233644605,-0.9230956435,-0.922961235,-0.9230956435,-0.9230956435,-0.9228268266,-0.9226924181,-0.9228268266,-0.922961235,-0.9230956435,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9225580096,-0.9222891927,-0.9222891927,-0.9224236012,-0.9225580096,-0.9225580096,-0.9225580096,-0.9226924181,-0.9224236012,-0.9214827418,-0.9210795164,-0.9220203757,-0.9233644605,-0.9233644605,-0.9222891927,-0.9218859673,-0.9222891927,-0.9225580096,-0.922961235,-0.9230956435,-0.9225580096,-0.9218859673,-0.9218859673,-0.9220203757,-0.9216171503,-0.9205418825,-0.9200042486,-0.9209451079,-0.9224236012,-0.9228268266,-0.9226924181,-0.9226924181,-0.922961235,-0.9230956435,-0.922961235,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9225580096,-0.9225580096,-0.9225580096,-0.9224236012,-0.9225580096,-0.9226924181,-0.9226924181,-0.9226924181,-0.9228268266,-0.922961235,-0.9228268266,-0.9228268266,-0.922961235,-0.923230052,-0.923230052,-0.9230956435,-0.9230956435,-0.923230052,-0.9233644605,-0.9233644605,-0.9233644605,-0.923230052,-0.9230956435,-0.9234988689,-0.9236332774,-0.9236332774,-0.9234988689,-0.9236332774,-0.9239020944,-0.9237676859,-0.9236332774,-0.9234988689,-0.9234988689,-0.9237676859,-0.9240365028,-0.9236332774,-0.9237676859,-0.9263215661,-0.9286065698,-0.9278000593,-0.9267247915,-0.9279344678,-0.9284721017,-0.9263215661,-0.9241709113,-0.9237676859,-0.9234988689,-0.922961235,-0.9226924181,-0.9228268266,-0.9228268266,-0.9222891927,-0.9210795164,-0.9205418825,-0.920407474,-0.9196009636,-0.9197353721,-0.9216171503,-0.9234988689,-0.9252462983,-0.9278000593,-0.9302194715,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9302194715,-0.9303538799,-0.930085063,-0.9292786121,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9302194715,-0.930085063,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9288753867,-0.9259183407,-0.923230052,-0.9212139249,-0.9200042486,-0.9200042486,-0.9210795164,-0.9216171503,-0.9217515588,-0.9221547842,-0.9228268266,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.9228268266,-0.9224236012,-0.9225580096,-0.9233644605,-0.9255151153,-0.9282032847,-0.929816246,-0.9286065698,-0.9252462983,-0.9241709113,-0.9268592,-0.9279344678,-0.9256495237,-0.9241709113,-0.9243053794,-0.9241709113,-0.9239020944,-0.9237676859,-0.9237676859,-0.9237676859,-0.9237676859,-0.9236332774,-0.9236332774,-0.9236332774,-0.9236332774,-0.9233644605,-0.9230956435,-0.9230956435,-0.9233644605,-0.9234988689,-0.9233644605,-0.9230956435,-0.9230956435,-0.9233644605,-0.923230052,-0.922961235,-0.922961235,-0.9230956435,-0.9230956435,-0.922961235,-0.9228268266,-0.9228268266,-0.9230956435,-0.9230956435,-0.922961235,-0.9228268266,-0.9228268266,-0.9228268266,-0.9225580096,-0.9225580096,-0.9225580096,-0.9228268266,-0.922961235,-0.9228268266,-0.9226924181,-0.9228268266,-0.922961235,-0.9228268266,-0.9226924181,-0.9226924181,-0.9226924181,-0.9224236012,-0.9224236012,-0.9226924181,-0.9226924181,-0.9222891927,-0.9213483334,-0.9210795164,-0.9218859673,-0.922961235,-0.9228268266,-0.9217515588,-0.9216171503,-0.9221547842,-0.9225580096,-0.9228268266,-0.922961235,-0.9228268266,-0.9224236012,-0.9222891927,-0.9222891927,-0.9220203757,-0.9216171503,-0.9214827418,-0.9218859673,-0.9224236012,-0.9226924181,-0.9225580096,-0.9226924181,-0.9228268266,-0.9226924181,-0.9225580096,-0.9225580096,-0.9226924181,-0.9228268266,-0.9226924181,-0.9226924181,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9226924181,-0.9226924181,-0.9226924181,-0.9228268266,-0.922961235,-0.9228268266,-0.9228268266,-0.922961235,-0.9230956435,-0.923230052,-0.9230956435,-0.923230052,-0.923230052,-0.923230052,-0.9233644605,-0.9234988689,-0.9234988689,-0.9233644605,-0.9233644605,-0.9234988689,-0.9236332774,-0.9234988689,-0.9236332774,-0.9236332774,-0.9233644605,-0.9233644605,-0.9234988689,-0.9237676859,-0.9237676859,-0.9239020944,-0.9243053794,-0.9259183407,-0.9282032847,-0.9284721017,-0.9269936085,-0.9271280169,-0.9286065698,-0.9275312424,-0.9247086048,-0.9236332774,-0.9239020944,-0.9234988689,-0.922961235,-0.9226924181,-0.9226924181,-0.9226924181,-0.9222891927,-0.9212139249,-0.9205418825,-0.920407474,-0.9198697805,-0.9201386571,-0.9217515588,-0.9234988689,-0.9253807068,-0.9280688763,-0.930085063,-0.9302194715,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9302194715,-0.9303538799,-0.9302194715,-0.929816246,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9294130206,-0.930085063,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9306226969,-0.9303538799,-0.9303538799,-0.9294130206,-0.9261871576,-0.922961235,-0.9213483334,-0.9202730656,-0.9196009636,-0.9202730656,-0.9212139249,-0.9218859673,-0.9224236012,-0.922961235,-0.9230956435,-0.922961235,-0.922961235,-0.922961235,-0.9221547842,-0.9216171503,-0.9222891927,-0.9230956435,-0.9244397879,-0.9269936085,-0.9294130206,-0.9292786121,-0.9263215661,-0.9243053794,-0.9264559746,-0.9288753867,-0.9273968339,-0.9247086048,-0.9241709113,-0.9241709113,-0.9239020944,-0.9239020944,-0.9239020944,-0.9237676859,-0.9237676859,-0.9239020944,-0.9237676859,-0.9236332774,-0.9237676859,-0.9236332774,-0.922961235,-0.9224236012,-0.9228268266,-0.9233644605,-0.9234988689,-0.9236332774,-0.9234988689,-0.9233644605,-0.923230052,-0.922961235,-0.922961235,-0.9230956435,-0.9230956435,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.923230052,-0.923230052,-0.922961235,-0.9228268266,-0.9228268266,-0.9225580096,-0.9222891927,-0.9224236012,-0.9226924181,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9226924181,-0.9225580096,-0.9225580096,-0.9225580096,-0.9224236012,-0.9225580096,-0.9226924181,-0.9228268266,-0.9225580096,-0.9216171503,-0.9212139249,-0.9220203757,-0.9228268266,-0.9228268266,-0.9216171503,-0.9214827418,-0.9222891927,-0.9228268266,-0.9228268266,-0.922961235,-0.922961235,-0.9230956435,-0.922961235,-0.9228268266,-0.9226924181,-0.9221547842,-0.9218859673,-0.9218859673,-0.9221547842,-0.9222891927,-0.9224236012,-0.9224236012,-0.9225580096,-0.9226924181,-0.9228268266,-0.9228268266,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9228268266,-0.922961235,-0.9228268266,-0.9228268266,-0.922961235,-0.923230052,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.9234988689,-0.9236332774,-0.9234988689,-0.9236332774,-0.9237676859,-0.9236332774,-0.923230052,-0.923230052,-0.9233644605,-0.9236332774,-0.9239020944,-0.9239020944,-0.9237676859,-0.9249774814,-0.9275312424,-0.9288753867,-0.9279344678,-0.9273968339,-0.9283376932,-0.9284721017,-0.9260527492,-0.9237676859,-0.9234988689,-0.9239020944,-0.9234988689,-0.9230956435,-0.922961235,-0.922961235,-0.9226924181,-0.9220203757,-0.9210795164,-0.920407474,-0.9200042486,-0.9198697805,-0.920407474,-0.9217515588,-0.9233644605,-0.9255151153,-0.9282032847,-0.930085063,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9290097952,-0.929816246,-0.929816246,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.930085063,-0.9267247915,-0.9226924181,-0.9212139249,-0.9209451079,-0.9198697805,-0.9193321466,-0.9205418825,-0.9218859673,-0.9226924181,-0.922961235,-0.9228268266,-0.9228268266,-0.922961235,-0.922961235,-0.9221547842,-0.9213483334,-0.9218859673,-0.9228268266,-0.9234988689,-0.9255151153,-0.9283376932,-0.929816246,-0.9288753867,-0.9271280169,-0.9272624254,-0.9291442037,-0.9290097952,-0.9263215661,-0.9245741963,-0.9241709113,-0.9240365028,-0.9239020944,-0.9240365028,-0.9240365028,-0.9240365028,-0.9236332774,-0.9233644605,-0.923230052,-0.9233644605,-0.9234988689,-0.9230956435,-0.9222891927,-0.9224236012,-0.923230052,-0.9236332774,-0.9234988689,-0.9234988689,-0.9233644605,-0.923230052,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.923230052,-0.923230052,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.922961235,-0.922961235,-0.922961235,-0.9226924181,-0.9226924181,-0.9226924181,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9226924181,-0.9225580096,-0.9226924181,-0.9226924181,-0.9224236012,-0.9221547842,-0.9224236012,-0.9226924181,-0.922961235,-0.9228268266,-0.9216171503,-0.9212139249,-0.9218859673,-0.9218859673,-0.9226924181,-0.9218859673,-0.9216171503,-0.9225580096,-0.922961235,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9226924181,-0.9224236012,-0.9222891927,-0.9220203757,-0.9217515588,-0.9217515588,-0.9220203757,-0.9222891927,-0.9224236012,-0.9224236012,-0.9224236012,-0.9225580096,-0.9228268266,-0.9228268266,-0.9226924181,-0.9225580096,-0.9226924181,-0.9226924181,-0.9228268266,-0.9228268266,-0.922961235,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.922961235,-0.922961235,-0.922961235,-0.9230956435,-0.9230956435,-0.923230052,-0.923230052,-0.9233644605,-0.9234988689,-0.9234988689,-0.9234988689,-0.9234988689,-0.9233644605,-0.9234988689,-0.9236332774,-0.9237676859,-0.9239020944,-0.9239020944,-0.9234988689,-0.923230052,-0.9230956435,-0.9233644605,-0.9236332774,-0.9237676859,-0.9236332774,-0.9245741963,-0.9268592,-0.9276656508,-0.9267247915,-0.9267247915,-0.9283376932,-0.9291442037,-0.9272624254,-0.9247086048,-0.9240365028,-0.9241709113,-0.9237676859,-0.923230052,-0.9230956435,-0.9230956435,-0.9230956435,-0.9228268266,-0.9220203757,-0.9210795164,-0.9205418825,-0.9201386571,-0.9197353721,-0.9201386571,-0.9214827418,-0.923230052,-0.9255151153,-0.9283376932,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9302194715,-0.930085063,-0.9302194715,-0.9299506545,-0.9299506545,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9283376932,-0.9292786121,-0.9296818376,-0.930085063,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9278000593,-0.922961235,-0.9210795164,-0.9214827418,-0.920676291,-0.9194665551,-0.920407474,-0.9220203757,-0.9226924181,-0.9226924181,-0.9225580096,-0.9225580096,-0.922961235,-0.923230052,-0.922961235,-0.9220203757,-0.9217515588,-0.9224236012,-0.923230052,-0.9243053794,-0.9267247915,-0.9292786121,-0.9299506545,-0.9287409782,-0.9273968339,-0.9282032847,-0.9296818376,-0.9284721017,-0.9256495237,-0.9243053794,-0.9241709113,-0.9241709113,-0.9240365028,-0.9240365028,-0.9240365028,-0.9239020944,-0.9234988689,-0.9234988689,-0.9234988689,-0.9233644605,-0.9233644605,-0.923230052,-0.9230956435,-0.9233644605,-0.9236332774,-0.9234988689,-0.9234988689,-0.9233644605,-0.923230052,-0.9230956435,-0.9230956435,-0.922961235,-0.9230956435,-0.923230052,-0.9233644605,-0.923230052,-0.9230956435,-0.9230956435,-0.922961235,-0.9228268266,-0.922961235,-0.9230956435,-0.922961235,-0.9226924181,-0.9224236012,-0.9225580096,-0.9228268266,-0.922961235,-0.922961235,-0.9228268266,-0.9226924181,-0.9226924181,-0.9228268266,-0.9228268266,-0.9224236012,-0.9222891927,-0.9224236012,-0.9225580096,-0.9230956435,-0.9230956435,-0.9217515588,-0.9214827418,-0.9218859673,-0.9205418825,-0.9226924181,-0.9218859673,-0.9214827418,-0.9226924181,-0.922961235,-0.9228268266,-0.922961235,-0.9228268266,-0.9226924181,-0.9224236012,-0.9222891927,-0.9222891927,-0.9222891927,-0.9220203757,-0.9220203757,-0.9221547842,-0.9224236012,-0.9224236012,-0.9224236012,-0.9222891927,-0.9224236012,-0.9226924181,-0.922961235,-0.922961235,-0.9228268266,-0.9226924181,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.9226924181,-0.9226924181,-0.9228268266,-0.9228268266,-0.922961235,-0.922961235,-0.9230956435,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.9233644605,-0.9234988689,-0.9234988689,-0.9234988689,-0.9236332774,-0.9236332774,-0.9236332774,-0.9239020944,-0.9239020944,-0.9237676859,-0.9234988689,-0.9233644605,-0.9233644605,-0.9236332774,-0.9239020944,-0.9237676859,-0.9241709113,-0.9265903831,-0.9286065698,-0.9261871576,-0.9234988689,-0.9255151153,-0.9290097952,-0.9287409782,-0.9255151153,-0.9236332774,-0.9240365028,-0.9243053794,-0.9234988689,-0.9230956435,-0.923230052,-0.923230052,-0.9230956435,-0.922961235,-0.9222891927,-0.9216171503,-0.9209451079,-0.9201386571,-0.9194665551,-0.9198697805,-0.9213483334,-0.9233644605,-0.9259183407,-0.9287409782,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9302194715,-0.930085063,-0.9302194715,-0.9294130206,-0.9295474291,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9283376932,-0.9290097952,-0.9295474291,-0.929816246,-0.930085063,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.930085063,-0.9287409782,-0.9241709113,-0.9212139249,-0.9213483334,-0.9212139249,-0.9202730656,-0.9205418825,-0.9214827418,-0.9220203757,-0.9224236012,-0.9226924181,-0.9226924181,-0.922961235,-0.9233644605,-0.9233644605,-0.922961235,-0.9222891927,-0.9224236012,-0.9230956435,-0.9234988689,-0.9248430729,-0.9278000593,-0.9299506545,-0.929816246,-0.9280688763,-0.9273968339,-0.9287409782,-0.9295474291,-0.9276656508,-0.9251118898,-0.9243053794,-0.9241709113,-0.9240365028,-0.9240365028,-0.9241709113,-0.9241709113,-0.9240365028,-0.9240365028,-0.9240365028,-0.9239020944,-0.9236332774,-0.9234988689,-0.9233644605,-0.9236332774,-0.9236332774,-0.9234988689,-0.9233644605,-0.9233644605,-0.923230052,-0.9230956435,-0.9230956435,-0.9230956435,-0.922961235,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.9230956435,-0.922961235,-0.922961235,-0.9230956435,-0.923230052,-0.9230956435,-0.9228268266,-0.9225580096,-0.9225580096,-0.9225580096,-0.9228268266,-0.922961235,-0.9228268266,-0.9226924181,-0.9225580096,-0.9226924181,-0.9228268266,-0.9226924181,-0.9226924181,-0.922961235,-0.922961235,-0.923230052,-0.9233644605,-0.9220203757,-0.9221547842,-0.9222891927,-0.9205418825,-0.9233644605,-0.9220203757,-0.9218859673,-0.922961235,-0.9228268266,-0.9228268266,-0.922961235,-0.9228268266,-0.9224236012,-0.9222891927,-0.9221547842,-0.9224236012,-0.9225580096,-0.9222891927,-0.9220203757,-0.9220203757,-0.9222891927,-0.9224236012,-0.9224236012,-0.9224236012,-0.9224236012,-0.9225580096,-0.9228268266,-0.922961235,-0.9228268266,-0.9226924181,-0.9226924181,-0.9228268266,-0.9228268266,-0.922961235,-0.9228268266,-0.9226924181,-0.9226924181,-0.9228268266,-0.9228268266,-0.922961235,-0.9230956435,-0.923230052,-0.923230052,-0.9233644605,-0.9234988689,-0.9236332774,-0.9234988689,-0.9233644605,-0.923230052,-0.923230052,-0.9233644605,-0.9236332774,-0.9237676859,-0.9237676859,-0.9237676859,-0.9237676859,-0.9237676859,-0.9237676859,-0.9236332774,-0.9237676859,-0.9241709113,-0.9241709113,-0.9244397879,-0.9260527492,-0.9279344678,-0.9269936085,-0.9243053794,-0.9243053794,-0.9272624254,-0.9292786121,-0.9273968339,-0.9241709113,-0.9233644605,-0.9239020944,-0.9237676859,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.9230956435,-0.9226924181,-0.9218859673,-0.9209451079,-0.9197353721,-0.9193321466,-0.9200042486,-0.9214827418,-0.9236332774,-0.9263215661,-0.9291442037,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9294130206,-0.929816246,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9292786121,-0.9296818376,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9291442037,-0.9253807068,-0.9220203757,-0.9210795164,-0.9210795164,-0.9208106995,-0.9201386571,-0.9202730656,-0.9212139249,-0.9220203757,-0.9226924181,-0.922961235,-0.9230956435,-0.9230956435,-0.9230956435,-0.922961235,-0.9228268266,-0.9226924181,-0.9228268266,-0.923230052,-0.9239020944,-0.9257839322,-0.9287409782,-0.930085063,-0.9294130206,-0.9280688763,-0.9278000593,-0.9288753867,-0.9291442037,-0.9271280169,-0.9248430729,-0.9240365028,-0.9241709113,-0.9241709113,-0.9241709113,-0.9241709113,-0.9240365028,-0.9239020944,-0.9239020944,-0.9239020944,-0.9239020944,-0.9237676859,-0.9237676859,-0.9236332774,-0.9236332774,-0.9234988689,-0.9233644605,-0.923230052,-0.923230052,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.923230052,-0.923230052,-0.923230052,-0.9230956435,-0.922961235,-0.922961235,-0.9230956435,-0.9230956435,-0.9230956435,-0.922961235,-0.9228268266,-0.9228268266,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9224236012,-0.9224236012,-0.9226924181,-0.9228268266,-0.922961235,-0.922961235,-0.922961235,-0.9226924181,-0.922961235,-0.922961235,-0.9218859673,-0.9222891927,-0.922961235,-0.9218859673,-0.9243053794,-0.9221547842,-0.9222891927,-0.9230956435,-0.9228268266,-0.9228268266,-0.9230956435,-0.9228268266,-0.9225580096,-0.9224236012,-0.9225580096,-0.9226924181,-0.9225580096,-0.9222891927,-0.9221547842,-0.9220203757,-0.9220203757,-0.9222891927,-0.9225580096,-0.9224236012,-0.9222891927,-0.9224236012,-0.9226924181,-0.922961235,-0.9228268266,-0.9226924181,-0.9228268266,-0.9228268266,-0.922961235,-0.9230956435,-0.922961235,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.922961235,-0.9230956435,-0.9233644605,-0.9233644605,-0.9233644605,-0.9234988689,-0.9237676859,-0.9239020944,-0.9236332774,-0.9233644605,-0.923230052,-0.923230052,-0.9234988689,-0.9237676859,-0.9239020944,-0.9237676859,-0.9237676859,-0.9239020944,-0.9239020944,-0.9239020944,-0.9240365028,-0.9243053794,-0.9244397879,-0.9255151153,-0.9280688763,-0.9279344678,-0.9241709113,-0.9233644605,-0.9271280169,-0.9294130206,-0.9286065698,-0.9256495237,-0.9239020944,-0.9237676859,-0.9237676859,-0.9234988689,-0.9233644605,-0.9234988689,-0.9234988689,-0.923230052,-0.923230052,-0.9230956435,-0.9225580096,-0.9216171503,-0.9205418825,-0.9197353721,-0.9197353721,-0.9202730656,-0.9216171503,-0.9240365028,-0.9268592,-0.9295474291,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.929816246,-0.9296818376,-0.9303538799,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9288753867,-0.9295474291,-0.9299506545,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9294130206,-0.9263215661,-0.923230052,-0.9217515588,-0.9205418825,-0.9190633297,-0.9189289212,-0.9198697805,-0.9209451079,-0.9216171503,-0.9222891927,-0.922961235,-0.9230956435,-0.9228268266,-0.9228268266,-0.922961235,-0.9228268266,-0.9226924181,-0.9228268266,-0.923230052,-0.9237676859,-0.9245741963,-0.9267247915,-0.9292786121,-0.9299506545,-0.9287409782,-0.9278000593,-0.9280688763,-0.9292786121,-0.9290097952,-0.9263215661,-0.9240365028,-0.9239020944,-0.9243053794,-0.9241709113,-0.9240365028,-0.9241709113,-0.9240365028,-0.9239020944,-0.9239020944,-0.9239020944,-0.9239020944,-0.9239020944,-0.9237676859,-0.9236332774,-0.9234988689,-0.9233644605,-0.923230052,-0.923230052,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.923230052,-0.9233644605,-0.923230052,-0.9230956435,-0.922961235,-0.9230956435,-0.9230956435,-0.923230052,-0.9230956435,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.9230956435,-0.9228268266,-0.9224236012,-0.9221547842,-0.9224236012,-0.922961235,-0.9230956435,-0.922961235,-0.9226924181,-0.9226924181,-0.9225580096,-0.9228268266,-0.922961235,-0.9224236012,-0.9226924181,-0.9234988689,-0.9233644605,-0.9240365028,-0.9224236012,-0.9225580096,-0.9230956435,-0.922961235,-0.922961235,-0.922961235,-0.9225580096,-0.9224236012,-0.9225580096,-0.9226924181,-0.9226924181,-0.9224236012,-0.9222891927,-0.9224236012,-0.9224236012,-0.9220203757,-0.9221547842,-0.9226924181,-0.9226924181,-0.9224236012,-0.9225580096,-0.922961235,-0.9230956435,-0.922961235,-0.9228268266,-0.922961235,-0.922961235,-0.9230956435,-0.9230956435,-0.9230956435,-0.922961235,-0.9228268266,-0.9228268266,-0.922961235,-0.9230956435,-0.9230956435,-0.9233644605,-0.9234988689,-0.9234988689,-0.9236332774,-0.9237676859,-0.9239020944,-0.9237676859,-0.9236332774,-0.923230052,-0.9230956435,-0.9233644605,-0.9239020944,-0.9243053794,-0.9239020944,-0.9236332774,-0.9239020944,-0.9240365028,-0.9241709113,-0.9241709113,-0.9241709113,-0.9251118898,-0.9272624254,-0.9292786121,-0.9283376932,-0.9257839322,-0.9261871576,-0.9291442037,-0.9296818376,-0.9268592,-0.9243053794,-0.9240365028,-0.9243053794,-0.9239020944,-0.9236332774,-0.9234988689,-0.9234988689,-0.9233644605,-0.923230052,-0.923230052,-0.922961235,-0.9222891927,-0.9214827418,-0.920676291,-0.9198697805,-0.9196009636,-0.920407474,-0.9217515588,-0.9243053794,-0.9272624254,-0.9299506545,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.930085063,-0.930085063,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9299506545,-0.930085063,-0.9296818376,-0.9292786121,-0.9303538799,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9291442037,-0.9295474291,-0.9299506545,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9296818376,-0.9272624254,-0.9245741963,-0.9226924181,-0.920676291,-0.9191977382,-0.9197353721,-0.9210795164,-0.9212139249,-0.9210795164,-0.9216171503,-0.9222891927,-0.9225580096,-0.9226924181,-0.9228268266,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.9233644605,-0.9237676859,-0.9240365028,-0.9251118898,-0.9276656508,-0.9296818376,-0.9296818376,-0.9287409782,-0.9283376932,-0.9287409782,-0.9294130206,-0.9284721017,-0.9259183407,-0.9243053794,-0.9243053794,-0.9241709113,-0.9239020944,-0.9239020944,-0.9240365028,-0.9239020944,-0.9239020944,-0.9237676859,-0.9237676859,-0.9237676859,-0.9236332774,-0.9234988689,-0.9233644605,-0.9233644605,-0.9233644605,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.9230956435,-0.9230956435,-0.9233644605,-0.9233644605,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.923230052,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.922961235,-0.9226924181,-0.9224236012,-0.9225580096,-0.9228268266,-0.9228268266,-0.9228268266,-0.9228268266,-0.922961235,-0.922961235,-0.9230956435,-0.9230956435,-0.922961235,-0.9230956435,-0.9230956435,-0.9230956435,-0.923230052,-0.9228268266,-0.9228268266,-0.922961235,-0.9228268266,-0.9226924181,-0.9225580096,-0.9222891927,-0.9225580096,-0.922961235,-0.922961235,-0.9226924181,-0.9226924181,-0.9224236012,-0.9222891927,-0.9224236012,-0.9224236012,-0.9221547842,-0.9222891927,-0.9222891927,-0.9222891927,-0.9225580096,-0.922961235,-0.9230956435,-0.9230956435,-0.922961235,-0.922961235,-0.9230956435,-0.923230052,-0.9230956435,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.9230956435,-0.923230052,-0.923230052,-0.9233644605,-0.9234988689,-0.9237676859,-0.9237676859,-0.9236332774,-0.9236332774,-0.9236332774,-0.9233644605,-0.9233644605,-0.9237676859,-0.9240365028,-0.9243053794,-0.9244397879,-0.9241709113,-0.9237676859,-0.9239020944,-0.9240365028,-0.9240365028,-0.9245741963,-0.9265903831,-0.9290097952,-0.9292786121,-0.9280688763,-0.9276656508,-0.9291442037,-0.929816246,-0.9282032847,-0.9251118898,-0.9239020944,-0.9241709113,-0.9243053794,-0.9236332774,-0.9233644605,-0.9234988689,-0.9233644605,-0.923230052,-0.923230052,-0.9233644605,-0.922961235,-0.9220203757,-0.9212139249,-0.9209451079,-0.9202730656,-0.9196009636,-0.9202730656,-0.9220203757,-0.9247086048,-0.9275312424,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.930085063,-0.9303538799,-0.929816246,-0.9291442037,-0.9304882884,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9299506545,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.930085063,-0.9283376932,-0.9257839322,-0.9236332774,-0.9218859673,-0.920676291,-0.920676291,-0.9214827418,-0.9216171503,-0.9210795164,-0.9208106995,-0.9210795164,-0.9218859673,-0.9225580096,-0.9228268266,-0.922961235,-0.9230956435,-0.9230956435,-0.9230956435,-0.9233644605,-0.9236332774,-0.9239020944,-0.9241709113,-0.9255151153,-0.9282032847,-0.929816246,-0.9296818376,-0.9290097952,-0.9286065698,-0.9291442037,-0.9296818376,-0.9286065698,-0.9260527492,-0.9244397879,-0.9241709113,-0.9241709113,-0.9240365028,-0.9240365028,-0.9240365028,-0.9240365028,-0.9239020944,-0.9237676859,-0.9237676859,-0.9237676859,-0.9236332774,-0.9234988689,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.9234988689,-0.9233644605,-0.923230052,-0.9230956435,-0.9230956435,-0.923230052,-0.9233644605,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.9228268266,-0.9225580096,-0.9225580096,-0.9228268266,-0.9228268266,-0.9228268266,-0.9230956435,-0.923230052,-0.9230956435,-0.922961235,-0.9230956435,-0.9230956435,-0.922961235,-0.9225580096,-0.9221547842,-0.9221547842,-0.9222891927,-0.9224236012,-0.9224236012,-0.9224236012,-0.9225580096,-0.9225580096,-0.9226924181,-0.922961235,-0.922961235,-0.922961235,-0.9228268266,-0.9226924181,-0.9224236012,-0.9222891927,-0.9224236012,-0.9222891927,-0.9217515588,-0.9216171503,-0.9221547842,-0.9228268266,-0.9228268266,-0.922961235,-0.923230052,-0.922961235,-0.9228268266,-0.9228268266,-0.9230956435,-0.923230052,-0.9230956435,-0.9230956435,-0.9230956435,-0.922961235,-0.9230956435,-0.923230052,-0.9230956435,-0.923230052,-0.9233644605,-0.9234988689,-0.9234988689,-0.9236332774,-0.9237676859,-0.9234988689,-0.9234988689,-0.9236332774,-0.9237676859,-0.9237676859,-0.9239020944,-0.9240365028,-0.9243053794,-0.9247086048,-0.9247086048,-0.9241709113,-0.9239020944,-0.9240365028,-0.9245741963,-0.9261871576,-0.9283376932,-0.9294130206,-0.9283376932,-0.9273968339,-0.9286065698,-0.9299506545,-0.9288753867,-0.9260527492,-0.9241709113,-0.9241709113,-0.9244397879,-0.9237676859,-0.9230956435,-0.923230052,-0.9233644605,-0.923230052,-0.9230956435,-0.9230956435,-0.923230052,-0.9228268266,-0.9221547842,-0.9214827418,-0.9209451079,-0.9202730656,-0.9200042486,-0.9205418825,-0.9221547842,-0.9251118898,-0.9282032847,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9302194715,-0.9302194715,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9299506545,-0.9292786121,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9295474291,-0.9299506545,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9292786121,-0.9268592,-0.9247086048,-0.9233644605,-0.9217515588,-0.9208106995,-0.9210795164,-0.9214827418,-0.9212139249,-0.920676291,-0.9205418825,-0.9212139249,-0.9222891927,-0.9228268266,-0.922961235,-0.922961235,-0.9230956435,-0.922961235,-0.922961235,-0.9233644605,-0.9239020944,-0.9240365028,-0.9241709113,-0.9256495237,-0.9283376932,-0.9296818376,-0.9296818376,-0.9291442037,-0.9288753867,-0.9292786121,-0.9295474291,-0.9280688763,-0.9255151153,-0.9243053794,-0.9241709113,-0.9241709113,-0.9240365028,-0.9240365028,-0.9241709113,-0.9240365028,-0.9239020944,-0.9237676859,-0.9237676859,-0.9237676859,-0.9234988689,-0.9233644605,-0.9233644605,-0.9234988689,-0.9234988689,-0.9234988689,-0.9233644605,-0.923230052,-0.9230956435,-0.922961235,-0.922961235,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.9228268266,-0.9225580096,-0.9226924181,-0.9230956435,-0.9230956435,-0.922961235,-0.9230956435,-0.923230052,-0.923230052,-0.9230956435,-0.923230052,-0.9230956435,-0.9228268266,-0.9224236012,-0.9222891927,-0.9225580096,-0.9226924181,-0.9225580096,-0.9225580096,-0.9225580096,-0.9225580096,-0.9226924181,-0.9228268266,-0.922961235,-0.922961235,-0.9228268266,-0.9228268266,-0.9228268266,-0.9226924181,-0.9225580096,-0.9224236012,-0.9218859673,-0.9210795164,-0.9209451079,-0.9218859673,-0.9228268266,-0.9230956435,-0.9230956435,-0.923230052,-0.9230956435,-0.9228268266,-0.922961235,-0.9230956435,-0.923230052,-0.923230052,-0.9233644605,-0.923230052,-0.9230956435,-0.923230052,-0.9233644605,-0.923230052,-0.923230052,-0.9233644605,-0.9234988689,-0.9234988689,-0.9236332774,-0.9236332774,-0.9234988689,-0.9234988689,-0.9236332774,-0.9237676859,-0.9237676859,-0.9237676859,-0.9239020944,-0.9240365028,-0.9243053794,-0.9244397879,-0.9243053794,-0.9240365028,-0.9243053794,-0.9257839322,-0.9279344678,-0.9291442037,-0.9286065698,-0.9279344678,-0.9287409782,-0.929816246,-0.9292786121,-0.9269936085,-0.9248430729,-0.9243053794,-0.9244397879,-0.9240365028,-0.9234988689,-0.9233644605,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.9230956435,-0.9230956435,-0.9228268266,-0.9224236012,-0.9217515588,-0.9205418825,-0.9198697805,-0.9201386571,-0.9209451079,-0.9225580096,-0.9256495237,-0.9287409782,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.930085063,-0.9296818376,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9292786121,-0.929816246,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9299506545,-0.9279344678,-0.9257839322,-0.9249774814,-0.9239020944,-0.9222891927,-0.9212139249,-0.9210795164,-0.9209451079,-0.9209451079,-0.920676291,-0.9205418825,-0.9214827418,-0.9226924181,-0.923230052,-0.9230956435,-0.9230956435,-0.922961235,-0.9228268266,-0.9230956435,-0.9239020944,-0.9244397879,-0.9241709113,-0.9241709113,-0.9257839322,-0.9282032847,-0.9295474291,-0.9296818376,-0.9291442037,-0.9287409782,-0.9292786121,-0.9291442037,-0.9272624254,-0.9248430729,-0.9241709113,-0.9241709113,-0.9241709113,-0.9241709113,-0.9241709113,-0.9240365028,-0.9239020944,-0.9239020944,-0.9239020944,-0.9237676859,-0.9236332774,-0.9233644605,-0.9234988689,-0.9236332774,-0.9234988689,-0.9233644605,-0.9233644605,-0.9234988689,-0.9234988689,-0.9233644605,-0.923230052,-0.923230052,-0.9233644605,-0.923230052,-0.9230956435,-0.9230956435,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.9230956435,-0.922961235,-0.9230956435,-0.923230052,-0.9230956435,-0.922961235,-0.922961235,-0.9230956435,-0.9230956435,-0.9230956435,-0.9230956435,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.9230956435,-0.922961235,-0.9226924181,-0.9228268266,-0.9230956435,-0.923230052,-0.922961235,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9226924181,-0.9228268266,-0.922961235,-0.922961235,-0.9228268266,-0.9228268266,-0.9226924181,-0.9225580096,-0.9224236012,-0.9218859673,-0.9212139249,-0.9210795164,-0.9218859673,-0.922961235,-0.923230052,-0.923230052,-0.9230956435,-0.922961235,-0.9230956435,-0.923230052,-0.923230052,-0.9233644605,-0.9233644605,-0.923230052,-0.9230956435,-0.923230052,-0.9233644605,-0.9233644605,-0.923230052,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.9234988689,-0.9234988689,-0.9234988689,-0.9236332774,-0.9236332774,-0.9237676859,-0.9239020944,-0.9239020944,-0.9239020944,-0.9239020944,-0.9240365028,-0.9243053794,-0.9240365028,-0.9237676859,-0.9248430729,-0.9271280169,-0.9288753867,-0.9288753867,-0.9282032847,-0.9284721017,-0.9296818376,-0.9295474291,-0.9275312424,-0.9252462983,-0.9245741963,-0.9245741963,-0.9240365028,-0.9234988689,-0.9233644605,-0.9234988689,-0.9234988689,-0.9233644605,-0.9230956435,-0.9230956435,-0.923230052,-0.9230956435,-0.9230956435,-0.9225580096,-0.9213483334,-0.9200042486,-0.9198697805,-0.920407474,-0.9210795164,-0.9230956435,-0.9267247915,-0.9294130206,-0.930085063,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9302194715,-0.9299506545,-0.9302194715,-0.9299506545,-0.9296818376,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9294130206,-0.930085063,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9292786121,-0.9271280169,-0.9257839322,-0.9257839322,-0.9247086048,-0.9226924181,-0.9213483334,-0.9209451079,-0.9208106995,-0.9205418825,-0.9201386571,-0.920676291,-0.9222891927,-0.923230052,-0.9230956435,-0.9230956435,-0.922961235,-0.922961235,-0.922961235,-0.9234988689,-0.9241709113,-0.9243053794,-0.9239020944,-0.9239020944,-0.9253807068,-0.9276656508,-0.9292786121,-0.9296818376,-0.9288753867,-0.9286065698,-0.9292786121,-0.9288753867,-0.9264559746,-0.9244397879,-0.9241709113,-0.9243053794,-0.9241709113,-0.9241709113,-0.9240365028,-0.9240365028,-0.9240365028,-0.9239020944,-0.9239020944,-0.9237676859,-0.9236332774,-0.9236332774,-0.9236332774,-0.9236332774,-0.9234988689,-0.9234988689,-0.9237676859,-0.9237676859,-0.9236332774,-0.9234988689,-0.9234988689,-0.9234988689,-0.9234988689,-0.923230052,-0.9230956435,-0.923230052,-0.9233644605,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.9230956435,-0.9230956435,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.9233644605,-0.9233644605,-0.923230052,-0.923230052,-0.923230052,-0.9230956435,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.9230956435,-0.9230956435,-0.9230956435,-0.923230052,-0.923230052,-0.9230956435,-0.9228268266,-0.9228268266,-0.9228268266,-0.9226924181,-0.9225580096,-0.9224236012,-0.9221547842,-0.9221547842,-0.9222891927,-0.9228268266,-0.923230052,-0.923230052,-0.923230052,-0.9230956435,-0.9230956435,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.9233644605,-0.9233644605,-0.923230052,-0.9233644605,-0.9234988689,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.9234988689,-0.9236332774,-0.9237676859,-0.9237676859,-0.9236332774,-0.9236332774,-0.9236332774,-0.9236332774,-0.9237676859,-0.9239020944,-0.9239020944,-0.9239020944,-0.9241709113,-0.9243053794,-0.9248430729,-0.9264559746,-0.9283376932,-0.9290097952,-0.9286065698,-0.9287409782,-0.9296818376,-0.929816246,-0.9280688763,-0.9256495237,-0.9243053794,-0.9240365028,-0.9239020944,-0.9234988689,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.9230956435,-0.9228268266,-0.9230956435,-0.923230052,-0.922961235,-0.9218859673,-0.9202730656,-0.9196009636,-0.9201386571,-0.920676291,-0.9214827418,-0.9241709113,-0.9280688763,-0.9299506545,-0.930085063,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9295474291,-0.9295474291,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9290097952,-0.9299506545,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9290097952,-0.9271280169,-0.9260527492,-0.9256495237,-0.9245741963,-0.9226924181,-0.9213483334,-0.920676291,-0.9205418825,-0.9201386571,-0.9198697805,-0.9208106995,-0.9224236012,-0.922961235,-0.922961235,-0.922961235,-0.9230956435,-0.9228268266,-0.9228268266,-0.9233644605,-0.9237676859,-0.9236332774,-0.9233644605,-0.9234988689,-0.9247086048,-0.9271280169,-0.9292786121,-0.9295474291,-0.9286065698,-0.9287409782,-0.9295474291,-0.9286065698,-0.9259183407,-0.9244397879,-0.9244397879,-0.9244397879,-0.9243053794,-0.9241709113,-0.9241709113,-0.9240365028,-0.9239020944,-0.9237676859,-0.9236332774,-0.9236332774,-0.9237676859,-0.9239020944,-0.9239020944,-0.9239020944,-0.9237676859,-0.9237676859,-0.9237676859,-0.9236332774,-0.9236332774,-0.9236332774,-0.9234988689,-0.9234988689,-0.9234988689,-0.9233644605,-0.9233644605,-0.9233644605,-0.923230052,-0.923230052,-0.9234988689,-0.9234988689,-0.923230052,-0.923230052,-0.9233644605,-0.923230052,-0.923230052,-0.9233644605,-0.923230052,-0.923230052,-0.9233644605,-0.9233644605,-0.9233644605,-0.923230052,-0.9230956435,-0.9230956435,-0.923230052,-0.9230956435,-0.9233644605,-0.9237676859,-0.9236332774,-0.9233644605,-0.923230052,-0.9233644605,-0.923230052,-0.9230956435,-0.9233644605,-0.9234988689,-0.923230052,-0.9228268266,-0.9226924181,-0.9226924181,-0.9226924181,-0.9224236012,-0.9222891927,-0.9224236012,-0.9226924181,-0.922961235,-0.9230956435,-0.9230956435,-0.9230956435,-0.923230052,-0.923230052,-0.9233644605,-0.9233644605,-0.923230052,-0.923230052,-0.9234988689,-0.9234988689,-0.9234988689,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.9234988689,-0.9236332774,-0.9237676859,-0.9237676859,-0.9237676859,-0.9237676859,-0.9237676859,-0.9236332774,-0.9236332774,-0.9237676859,-0.9240365028,-0.9241709113,-0.9243053794,-0.9243053794,-0.9251118898,-0.9265903831,-0.9283376932,-0.9290097952,-0.9287409782,-0.9287409782,-0.9294130206,-0.9299506545,-0.9283376932,-0.9260527492,-0.9248430729,-0.9244397879,-0.9237676859,-0.9233644605,-0.923230052,-0.9233644605,-0.9233644605,-0.9230956435,-0.9230956435,-0.923230052,-0.923230052,-0.922961235,-0.9230956435,-0.9233644605,-0.9228268266,-0.9209451079,-0.9193321466,-0.9196009636,-0.9205418825,-0.9208106995,-0.9221547842,-0.9257839322,-0.9290097952,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.930085063,-0.9295474291,-0.9299506545,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9283376932,-0.929816246,-0.930085063,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.930085063,-0.9291442037,-0.9272624254,-0.9261871576,-0.9257839322,-0.9244397879,-0.9218859673,-0.9209451079,-0.9210795164,-0.9205418825,-0.9193321466,-0.9194665551,-0.9213483334,-0.922961235,-0.9230956435,-0.922961235,-0.922961235,-0.9228268266,-0.9224236012,-0.922961235,-0.9237676859,-0.9239020944,-0.923230052,-0.9226924181,-0.922961235,-0.9243053794,-0.9269936085,-0.9292786121,-0.9294130206,-0.9283376932,-0.9287409782,-0.9299506545,-0.9284721017,-0.9256495237,-0.9245741963,-0.9245741963,-0.9245741963,-0.9244397879,-0.9243053794,-0.9240365028,-0.9239020944,-0.9239020944,-0.9239020944,-0.9237676859,-0.9237676859,-0.9239020944,-0.9239020944,-0.9239020944,-0.9239020944,-0.9237676859,-0.9237676859,-0.9237676859,-0.9236332774,-0.9236332774,-0.9234988689,-0.9234988689,-0.9236332774,-0.9234988689,-0.923230052,-0.923230052,-0.9233644605,-0.9233644605,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.9233644605,-0.923230052,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.9234988689,-0.9234988689,-0.9233644605,-0.9233644605,-0.923230052,-0.9230956435,-0.9233644605,-0.9233644605,-0.9230956435,-0.9233644605,-0.923230052,-0.922961235,-0.922961235,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.9230956435,-0.922961235,-0.9226924181,-0.9225580096,-0.9224236012,-0.9224236012,-0.9225580096,-0.9228268266,-0.9230956435,-0.9233644605,-0.9233644605,-0.923230052,-0.923230052,-0.9233644605,-0.9234988689,-0.9234988689,-0.9233644605,-0.9233644605,-0.9234988689,-0.9236332774,-0.9234988689,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.9234988689,-0.9234988689,-0.9236332774,-0.9237676859,-0.9237676859,-0.9237676859,-0.9237676859,-0.9239020944,-0.9240365028,-0.9240365028,-0.9240365028,-0.9240365028,-0.9241709113,-0.9241709113,-0.9243053794,-0.9249774814,-0.9267247915,-0.9284721017,-0.9291442037,-0.9288753867,-0.9287409782,-0.9292786121,-0.9296818376,-0.9286065698,-0.9261871576,-0.9249774814,-0.9249774814,-0.9245741963,-0.9234988689,-0.9230956435,-0.9234988689,-0.9234988689,-0.9230956435,-0.9226924181,-0.9228268266,-0.9230956435,-0.9233644605,-0.9233644605,-0.923230052,-0.9226924181,-0.9214827418,-0.9200042486,-0.9196009636,-0.9202730656,-0.9202730656,-0.920407474,-0.9233644605,-0.9276656508,-0.929816246,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.929816246,-0.930085063,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9282032847,-0.929816246,-0.9299506545,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9294130206,-0.9280688763,-0.9272624254,-0.9259183407,-0.9234988689,-0.9212139249,-0.9212139249,-0.9214827418,-0.9202730656,-0.9189289212,-0.9197353721,-0.9218859673,-0.922961235,-0.9228268266,-0.9226924181,-0.922961235,-0.9228268266,-0.922961235,-0.9237676859,-0.9243053794,-0.9237676859,-0.9228268266,-0.9225580096,-0.922961235,-0.9241709113,-0.9265903831,-0.9287409782,-0.9292786121,-0.9286065698,-0.9291442037,-0.9296818376,-0.9278000593,-0.9253807068,-0.9245741963,-0.9245741963,-0.9244397879,-0.9243053794,-0.9240365028,-0.9239020944,-0.9240365028,-0.9239020944,-0.9239020944,-0.9239020944,-0.9239020944,-0.9239020944,-0.9240365028,-0.9240365028,-0.9239020944,-0.9239020944,-0.9237676859,-0.9237676859,-0.9237676859,-0.9237676859,-0.9236332774,-0.9236332774,-0.9237676859,-0.9234988689,-0.9233644605,-0.9234988689,-0.9234988689,-0.9233644605,-0.9233644605,-0.9233644605,-0.923230052,-0.923230052,-0.9230956435,-0.9230956435,-0.923230052,-0.9233644605,-0.9233644605,-0.9234988689,-0.9233644605,-0.9233644605,-0.9233644605,-0.923230052,-0.9230956435,-0.9234988689,-0.9237676859,-0.9236332774,-0.922961235,-0.9226924181,-0.9224236012,-0.9226924181,-0.923230052,-0.9234988689,-0.9234988689,-0.9233644605,-0.9233644605,-0.923230052,-0.923230052,-0.923230052,-0.922961235,-0.9228268266,-0.9225580096,-0.9226924181,-0.922961235,-0.9230956435,-0.9230956435,-0.9233644605,-0.923230052,-0.9230956435,-0.923230052,-0.9233644605,-0.9234988689,-0.9233644605,-0.9234988689,-0.9236332774,-0.9237676859,-0.9237676859,-0.9237676859,-0.9234988689,-0.9234988689,-0.9234988689,-0.9234988689,-0.9234988689,-0.9234988689,-0.9236332774,-0.9236332774,-0.9239020944,-0.9241709113,-0.9241709113,-0.9240365028,-0.9239020944,-0.9240365028,-0.9241709113,-0.9241709113,-0.9239020944,-0.9240365028,-0.9243053794,-0.9252462983,-0.9271280169,-0.9288753867,-0.9294130206,-0.9290097952,-0.9290097952,-0.9295474291,-0.9296818376,-0.9282032847,-0.9256495237,-0.9243053794,-0.9245741963,-0.9244397879,-0.9236332774,-0.9230956435,-0.923230052,-0.9234988689,-0.9230956435,-0.9225580096,-0.9224236012,-0.9226924181,-0.9228268266,-0.922961235,-0.9226924181,-0.9220203757,-0.9208106995,-0.9194665551,-0.9193321466,-0.920407474,-0.9205418825,-0.9196009636,-0.9210795164,-0.9259183407,-0.9291442037,-0.930085063,-0.930085063,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.930085063,-0.9302194715,-0.930085063,-0.9292786121,-0.9299506545,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9291442037,-0.9299506545,-0.930085063,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9295474291,-0.9290097952,-0.9279344678,-0.9257839322,-0.9226924181,-0.9212139249,-0.9216171503,-0.9209451079,-0.9187945127,-0.9181224704,-0.9198697805,-0.9218859673,-0.9224236012,-0.9224236012,-0.922961235,-0.923230052,-0.9230956435,-0.9230956435,-0.9239020944,-0.9245741963,-0.9239020944,-0.9226924181,-0.9226924181,-0.923230052,-0.9239020944,-0.9259183407,-0.9286065698,-0.9294130206,-0.9286065698,-0.9290097952,-0.9294130206,-0.9275312424,-0.9252462983,-0.9244397879,-0.9245741963,-0.9245741963,-0.9243053794,-0.9240365028,-0.9239020944,-0.9240365028,-0.9240365028,-0.9240365028,-0.9240365028,-0.9241709113,-0.9243053794,-0.9241709113,-0.9240365028,-0.9240365028,-0.9240365028,-0.9239020944,-0.9237676859,-0.9237676859,-0.9237676859,-0.9236332774,-0.9237676859,-0.9237676859,-0.9236332774,-0.9233644605,-0.9233644605,-0.9234988689,-0.9234988689,-0.9233644605,-0.923230052,-0.923230052,-0.9230956435,-0.922961235,-0.9230956435,-0.9233644605,-0.9233644605,-0.923230052,-0.923230052,-0.923230052,-0.9233644605,-0.923230052,-0.9230956435,-0.9233644605,-0.9239020944,-0.9239020944,-0.9236332774,-0.9233644605,-0.9230956435,-0.9230956435,-0.9233644605,-0.9236332774,-0.9234988689,-0.9233644605,-0.9234988689,-0.9234988689,-0.9233644605,-0.923230052,-0.9230956435,-0.922961235,-0.922961235,-0.9230956435,-0.923230052,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.923230052,-0.9234988689,-0.9236332774,-0.9237676859,-0.9237676859,-0.9236332774,-0.9236332774,-0.9236332774,-0.9236332774,-0.9234988689,-0.9233644605,-0.9234988689,-0.9236332774,-0.9236332774,-0.9237676859,-0.9240365028,-0.9241709113,-0.9240365028,-0.9240365028,-0.9243053794,-0.9243053794,-0.9239020944,-0.9236332774,-0.9243053794,-0.9260527492,-0.9280688763,-0.9292786121,-0.9290097952,-0.9287409782,-0.9291442037,-0.9295474291,-0.9294130206,-0.9278000593,-0.9255151153,-0.9243053794,-0.9247086048,-0.9245741963,-0.9234988689,-0.922961235,-0.9230956435,-0.923230052,-0.9230956435,-0.9226924181,-0.9226924181,-0.923230052,-0.9233644605,-0.9226924181,-0.9216171503,-0.9205418825,-0.9197353721,-0.9193321466,-0.9196009636,-0.920407474,-0.920676291,-0.9197353721,-0.920407474,-0.9245741963,-0.9288753867,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.930085063,-0.9302194715,-0.9296818376,-0.9284721017,-0.9299506545,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9291442037,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.9299506545,-0.9295474291,-0.9280688763,-0.9252462983,-0.9218859673,-0.9209451079,-0.9210795164,-0.9201386571,-0.9186601043,-0.9189289212,-0.9209451079,-0.9224236012,-0.9226924181,-0.922961235,-0.9230956435,-0.922961235,-0.922961235,-0.9234988689,-0.9240365028,-0.9239020944,-0.923230052,-0.922961235,-0.9233644605,-0.923230052,-0.9237676859,-0.9260527492,-0.9288753867,-0.9294130206,-0.9290097952,-0.9295474291,-0.9292786121,-0.9272624254,-0.9252462983,-0.9247086048,-0.9248430729,-0.9245741963,-0.9243053794,-0.9241709113,-0.9243053794,-0.9243053794,-0.9241709113,-0.9241709113,-0.9241709113,-0.9243053794,-0.9241709113,-0.9241709113,-0.9240365028,-0.9240365028,-0.9237676859,-0.9239020944,-0.9239020944,-0.9237676859,-0.9236332774,-0.9236332774,-0.9237676859,-0.9237676859,-0.9236332774,-0.9234988689,-0.9236332774,-0.9236332774,-0.9234988689,-0.9233644605,-0.923230052,-0.9230956435,-0.922961235,-0.9230956435,-0.9234988689,-0.9234988689,-0.9233644605,-0.9233644605,-0.9234988689,-0.9234988689,-0.9233644605,-0.923230052,-0.9233644605,-0.9234988689,-0.9234988689,-0.9233644605,-0.9234988689,-0.9234988689,-0.9233644605,-0.9234988689,-0.9236332774,-0.9234988689,-0.9234988689,-0.9234988689,-0.9236332774,-0.9236332774,-0.9233644605,-0.923230052,-0.923230052,-0.923230052,-0.9233644605,-0.923230052,-0.9233644605,-0.9234988689,-0.9233644605,-0.9233644605,-0.9234988689,-0.9233644605,-0.923230052,-0.923230052,-0.9233644605,-0.9237676859,-0.9237676859,-0.9237676859,-0.9236332774,-0.9237676859,-0.9239020944,-0.9237676859,-0.9236332774,-0.9236332774,-0.9234988689,-0.9234988689,-0.9237676859,-0.9237676859,-0.9237676859,-0.9237676859,-0.9239020944,-0.9241709113,-0.9244397879,-0.9244397879,-0.9237676859,-0.923230052,-0.9243053794,-0.9267247915,-0.9290097952,-0.9288753867,-0.9267247915,-0.9268592,-0.9287409782,-0.929816246,-0.9290097952,-0.9269936085,-0.9248430729,-0.9240365028,-0.9248430729,-0.9249774814,-0.9237676859,-0.922961235,-0.923230052,-0.923230052,-0.9228268266,-0.9224236012,-0.9222891927,-0.9222891927,-0.9233644605,-0.9234988689,-0.9213483334,-0.9191977382,-0.9186601043,-0.9190633297,-0.9197353721,-0.920676291,-0.9209451079,-0.9200042486,-0.9205418825,-0.9248430729,-0.9291442037,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9299506545,-0.9290097952,-0.9302194715,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9290097952,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.9296818376,-0.9279344678,-0.9240365028,-0.9210795164,-0.9210795164,-0.9212139249,-0.9198697805,-0.9190633297,-0.920407474,-0.9225580096,-0.923230052,-0.922961235,-0.922961235,-0.9230956435,-0.923230052,-0.922961235,-0.922961235,-0.9237676859,-0.9241709113,-0.9239020944,-0.9236332774,-0.9233644605,-0.9230956435,-0.9236332774,-0.9260527492,-0.9287409782,-0.9294130206,-0.9292786121,-0.9295474291,-0.9291442037,-0.9269936085,-0.9251118898,-0.9245741963,-0.9245741963,-0.9243053794,-0.9241709113,-0.9241709113,-0.9241709113,-0.9243053794,-0.9243053794,-0.9243053794,-0.9243053794,-0.9241709113,-0.9240365028,-0.9237676859,-0.9234988689,-0.9234988689,-0.9237676859,-0.9239020944,-0.9237676859,-0.9236332774,-0.9236332774,-0.9236332774,-0.9236332774,-0.9237676859,-0.9237676859,-0.9239020944,-0.9237676859,-0.9236332774,-0.9236332774,-0.9234988689,-0.9234988689,-0.923230052,-0.9230956435,-0.9233644605,-0.9236332774,-0.9236332774,-0.9234988689,-0.9234988689,-0.9236332774,-0.9236332774,-0.9234988689,-0.9236332774,-0.9237676859,-0.9234988689,-0.9233644605,-0.9234988689,-0.9234988689,-0.9234988689,-0.9234988689,-0.9234988689,-0.9236332774,-0.9234988689,-0.9234988689,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.923230052,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.9233644605,-0.9234988689,-0.9234988689,-0.9233644605,-0.9233644605,-0.9234988689,-0.9239020944,-0.9241709113,-0.9240365028,-0.9239020944,-0.9239020944,-0.9240365028,-0.9239020944,-0.9237676859,-0.9236332774,-0.9236332774,-0.9237676859,-0.9237676859,-0.9237676859,-0.9237676859,-0.9239020944,-0.9239020944,-0.9241709113,-0.9244397879,-0.9241709113,-0.9233644605,-0.9243053794,-0.9273968339,-0.9294130206,-0.9283376932,-0.9256495237,-0.9256495237,-0.9280688763,-0.9295474291,-0.9290097952,-0.9264559746,-0.9245741963,-0.9243053794,-0.9249774814,-0.9249774814,-0.9240365028,-0.9233644605,-0.923230052,-0.9230956435,-0.9228268266,-0.9224236012,-0.9218859673,-0.9220203757,-0.9225580096,-0.9221547842,-0.920407474,-0.9186601043,-0.9183912873,-0.9193321466,-0.9201386571,-0.9205418825,-0.9212139249,-0.9214827418,-0.9224236012,-0.9259183407,-0.9291442037,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9294130206,-0.9304882884,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9294130206,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.9299506545,-0.930085063,-0.9296818376,-0.9268592,-0.9224236012,-0.9209451079,-0.9214827418,-0.920676291,-0.9190633297,-0.9196009636,-0.9218859673,-0.923230052,-0.923230052,-0.9230956435,-0.923230052,-0.9230956435,-0.922961235,-0.9230956435,-0.9234988689,-0.9241709113,-0.9243053794,-0.9240365028,-0.9236332774,-0.9230956435,-0.9226924181,-0.9233644605,-0.9260527492,-0.9286065698,-0.9292786121,-0.9291442037,-0.9294130206,-0.9287409782,-0.9265903831,-0.9247086048,-0.9244397879,-0.9244397879,-0.9241709113,-0.9243053794,-0.9244397879,-0.9244397879,-0.9244397879,-0.9244397879,-0.9243053794,-0.9241709113,-0.9241709113,-0.9240365028,-0.9237676859,-0.9234988689,-0.9234988689,-0.9236332774,-0.9237676859,-0.9237676859,-0.9236332774,-0.9236332774,-0.9236332774,-0.9237676859,-0.9239020944,-0.9240365028,-0.9239020944,-0.9237676859,-0.9237676859,-0.9237676859,-0.9237676859,-0.9234988689,-0.9230956435,-0.922961235,-0.9234988689,-0.9237676859,-0.9236332774,-0.9234988689,-0.9236332774,-0.9236332774,-0.9237676859,-0.9239020944,-0.9239020944,-0.9237676859,-0.9234988689,-0.9234988689,-0.9236332774,-0.9234988689,-0.9234988689,-0.9234988689,-0.9234988689,-0.9236332774,-0.9234988689,-0.9234988689,-0.9234988689,-0.9234988689,-0.9233644605,-0.923230052,-0.9233644605,-0.9234988689,-0.9234988689,-0.9234988689,-0.9234988689,-0.9234988689,-0.9234988689,-0.9233644605,-0.923230052,-0.9233644605,-0.9234988689,-0.9236332774,-0.9239020944,-0.9241709113,-0.9241709113,-0.9240365028,-0.9240365028,-0.9241709113,-0.9240365028,-0.9237676859,-0.9236332774,-0.9236332774,-0.9236332774,-0.9237676859,-0.9239020944,-0.9240365028,-0.9240365028,-0.9240365028,-0.9241709113,-0.9243053794,-0.9243053794,-0.9252462983,-0.9276656508,-0.9296818376,-0.9288753867,-0.9264559746,-0.9261871576,-0.9283376932,-0.9296818376,-0.9287409782,-0.9265903831,-0.9247086048,-0.9244397879,-0.9251118898,-0.9248430729,-0.9237676859,-0.922961235,-0.922961235,-0.9228268266,-0.9225580096,-0.9225580096,-0.9228268266,-0.9228268266,-0.9226924181,-0.9218859673,-0.9196009636,-0.917719245,-0.9185256958,-0.9202730656,-0.9208106995,-0.920676291,-0.9212139249,-0.9228268266,-0.9251118898,-0.9275312424,-0.9295474291,-0.930085063,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9299506545,-0.9303538799,-0.929816246,-0.9291442037,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9294130206,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.929816246,-0.9299506545,-0.930085063,-0.9299506545,-0.9299506545,-0.929816246,-0.9299506545,-0.930085063,-0.9290097952,-0.9248430729,-0.9212139249,-0.9212139249,-0.9210795164,-0.9191977382,-0.9185256958,-0.9205418825,-0.9226924181,-0.923230052,-0.9230956435,-0.922961235,-0.922961235,-0.9230956435,-0.923230052,-0.923230052,-0.9234988689,-0.9240365028,-0.9244397879,-0.9241709113,-0.9234988689,-0.9230956435,-0.922961235,-0.9236332774,-0.9257839322,-0.9278000593,-0.9283376932,-0.9284721017,-0.9288753867,-0.9283376932,-0.9261871576,-0.9247086048,-0.9245741963,-0.9247086048,-0.9245741963,-0.9244397879,-0.9244397879,-0.9244397879,-0.9244397879,-0.9243053794,-0.9243053794,-0.9244397879,-0.9243053794,-0.9240365028,-0.9239020944,-0.9239020944,-0.9237676859,-0.9237676859,-0.9237676859,-0.9236332774,-0.9236332774,-0.9237676859,-0.9237676859,-0.9239020944,-0.9239020944,-0.9237676859,-0.9237676859,-0.9237676859,-0.9237676859,-0.9236332774,-0.9234988689,-0.9233644605,-0.923230052,-0.923230052,-0.9236332774,-0.9237676859,-0.9234988689,-0.9234988689,-0.9234988689,-0.9237676859,-0.9240365028,-0.9240365028,-0.9237676859,-0.9234988689,-0.9234988689,-0.9234988689,-0.9234988689,-0.9234988689,-0.9234988689,-0.9234988689,-0.9236332774,-0.9236332774,-0.9236332774,-0.9236332774,-0.9234988689,-0.9233644605,-0.9233644605,-0.9234988689,-0.9234988689,-0.9234988689,-0.9234988689,-0.9234988689,-0.9234988689,-0.9234988689,-0.9233644605,-0.923230052,-0.9233644605,-0.9234988689,-0.9236332774,-0.9239020944,-0.9240365028,-0.9241709113,-0.9240365028,-0.9240365028,-0.9240365028,-0.9241709113,-0.9239020944,-0.9236332774,-0.9236332774,-0.9237676859,-0.9240365028,-0.9241709113,-0.9241709113,-0.9241709113,-0.9244397879,-0.9245741963,-0.9244397879,-0.9253807068,-0.9276656508,-0.9295474291,-0.9290097952,-0.9271280169,-0.9268592,-0.9286065698,-0.9295474291,-0.9284721017,-0.9264559746,-0.9251118898,-0.9247086048,-0.9247086048,-0.9243053794,-0.9234988689,-0.922961235,-0.9225580096,-0.9220203757,-0.9220203757,-0.9224236012,-0.922961235,-0.923230052,-0.922961235,-0.9216171503,-0.9194665551,-0.9181224704,-0.9187945127,-0.920407474,-0.9212139249,-0.9210795164,-0.9220203757,-0.9244397879,-0.9269936085,-0.9288753867,-0.9299506545,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9302194715,-0.930085063,-0.9303538799,-0.929816246,-0.9292786121,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.929816246,-0.9302194715,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.930085063,-0.9299506545,-0.929816246,-0.929816246,-0.9299506545,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.9272624254,-0.9221547842,-0.920407474,-0.9213483334,-0.9202730656,-0.9185256958,-0.9197353721,-0.9221547842,-0.922961235,-0.9226924181,-0.9228268266,-0.9230956435,-0.922961235,-0.9228268266,-0.922961235,-0.9233644605,-0.9239020944,-0.9243053794,-0.9244397879,-0.9241709113,-0.9234988689,-0.9230956435,-0.9230956435,-0.9233644605,-0.9248430729,-0.9268592,-0.9278000593,-0.9282032847,-0.9286065698,-0.9282032847,-0.9263215661,-0.9248430729,-0.9244397879,-0.9245741963,-0.9245741963,-0.9244397879,-0.9243053794,-0.9243053794,-0.9243053794,-0.9243053794,-0.9243053794,-0.9243053794,-0.9240365028,-0.9241709113,-0.9241709113,-0.9240365028,-0.9237676859,-0.9239020944,-0.9239020944,-0.9237676859,-0.9239020944,-0.9239020944,-0.9239020944,-0.9239020944,-0.9239020944,-0.9237676859,-0.9237676859,-0.9237676859,-0.9236332774,-0.9236332774,-0.9236332774,-0.9234988689,-0.9233644605,-0.9234988689,-0.9237676859,-0.9236332774,-0.9234988689,-0.9234988689,-0.9237676859,-0.9240365028,-0.9240365028,-0.9240365028,-0.9239020944,-0.9237676859,-0.9236332774,-0.9234988689,-0.9234988689,-0.9236332774,-0.9236332774,-0.9236332774,-0.9234988689,-0.9236332774,-0.9237676859,-0.9237676859,-0.9234988689,-0.9234988689,-0.9234988689,-0.9234988689,-0.9234988689,-0.9234988689,-0.9234988689,-0.9236332774,-0.9234988689,-0.9233644605,-0.9233644605,-0.9236332774,-0.9237676859,-0.9237676859,-0.9239020944,-0.9240365028,-0.9241709113,-0.9240365028,-0.9237676859,-0.9237676859,-0.9240365028,-0.9240365028,-0.9237676859,-0.9237676859,-0.9240365028,-0.9241709113,-0.9241709113,-0.9243053794,-0.9245741963,-0.9245741963,-0.9244397879,-0.9252462983,-0.9273968339,-0.9290097952,-0.9288753867,-0.9275312424,-0.9268592,-0.9280688763,-0.9292786121,-0.9283376932,-0.9263215661,-0.9248430729,-0.9240365028,-0.9233644605,-0.9226924181,-0.9224236012,-0.9226924181,-0.9230956435,-0.922961235,-0.9222891927,-0.9221547842,-0.9225580096,-0.9230956435,-0.9230956435,-0.9216171503,-0.9194665551,-0.9182568789,-0.9189289212,-0.9202730656,-0.920676291,-0.9212139249,-0.9230956435,-0.9260527492,-0.9286065698,-0.929816246,-0.930085063,-0.930085063,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9299506545,-0.929816246,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.930085063,-0.9299506545,-0.9299506545,-0.929816246,-0.9296818376,-0.929816246,-0.929816246,-0.9299506545,-0.930085063,-0.930085063,-0.9299506545,-0.9294130206,-0.9243053794,-0.9200042486,-0.9205418825,-0.9209451079,-0.9190633297,-0.9187945127,-0.9208106995,-0.9222891927,-0.9225580096,-0.9228268266,-0.9230956435,-0.9228268266,-0.9226924181,-0.922961235,-0.9233644605,-0.9236332774,-0.9236332774,-0.9240365028,-0.9244397879,-0.9243053794,-0.9239020944,-0.9236332774,-0.9233644605,-0.9234988689,-0.9248430729,-0.9265903831,-0.9273968339,-0.9279344678,-0.9290097952,-0.9287409782,-0.9267247915,-0.9251118898,-0.9245741963,-0.9245741963,-0.9244397879,-0.9241709113,-0.9239020944,-0.9241709113,-0.9244397879,-0.9244397879,-0.9243053794,-0.9241709113,-0.9241709113,-0.9241709113,-0.9240365028,-0.9239020944,-0.9239020944,-0.9240365028,-0.9239020944,-0.9237676859,-0.9239020944,-0.9239020944,-0.9239020944,-0.9240365028,-0.9239020944,-0.9239020944,-0.9237676859,-0.9237676859,-0.9237676859,-0.9237676859,-0.9237676859,-0.9234988689,-0.9233644605,-0.9234988689,-0.9237676859,-0.9236332774,-0.9237676859,-0.9239020944,-0.9240365028,-0.9240365028,-0.9240365028,-0.9237676859,-0.9236332774,-0.9237676859,-0.9236332774,-0.9234988689,-0.9236332774,-0.9237676859,-0.9237676859,-0.9237676859,-0.9237676859,-0.9237676859,-0.9236332774,-0.9236332774,-0.9236332774,-0.9236332774,-0.9234988689,-0.9233644605,-0.9234988689,-0.9236332774,-0.9236332774,-0.9233644605,-0.9233644605,-0.9236332774,-0.9239020944,-0.9239020944,-0.9239020944,-0.9240365028,-0.9241709113,-0.9243053794,-0.9241709113,-0.9240365028,-0.9239020944,-0.9240365028,-0.9240365028,-0.9239020944,-0.9239020944,-0.9241709113,-0.9241709113,-0.9243053794,-0.9247086048,-0.9248430729,-0.9243053794,-0.9251118898,-0.9272624254,-0.9287409782,-0.9282032847,-0.9271280169,-0.9271280169,-0.9286065698,-0.9295474291,-0.9282032847,-0.9263215661,-0.9251118898,-0.9233644605,-0.9205418825,-0.9186601043,-0.9190633297,-0.920676291,-0.9221547842,-0.922961235,-0.923230052,-0.923230052,-0.922961235,-0.922961235,-0.9230956435,-0.9224236012,-0.9205418825,-0.9186601043,-0.9190633297,-0.920407474,-0.9205418825,-0.9213483334,-0.9243053794,-0.9275312424,-0.9295474291,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.930085063,-0.9299506545,-0.929816246,-0.9296818376,-0.929816246,-0.929816246,-0.9299506545,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.9273968339,-0.9212139249,-0.9194665551,-0.920676291,-0.9197353721,-0.9179880619,-0.9186601043,-0.9208106995,-0.9222891927,-0.9228268266,-0.9226924181,-0.923230052,-0.9237676859,-0.9226924181,-0.9216171503,-0.9218859673,-0.9225580096,-0.9225580096,-0.9230956435,-0.9241709113,-0.9247086048,-0.9244397879,-0.9240365028,-0.9233644605,-0.9233644605,-0.9245741963,-0.9261871576,-0.9275312424,-0.9286065698,-0.9292786121,-0.9288753867,-0.9275312424,-0.9261871576,-0.9255151153,-0.9251118898,-0.9243053794,-0.9237676859,-0.9240365028,-0.9244397879,-0.9243053794,-0.9241709113,-0.9240365028,-0.9240365028,-0.9239020944,-0.9240365028,-0.9240365028,-0.9240365028,-0.9239020944,-0.9239020944,-0.9236332774,-0.9236332774,-0.9237676859,-0.9237676859,-0.9239020944,-0.9239020944,-0.9239020944,-0.9237676859,-0.9239020944,-0.9239020944,-0.9239020944,-0.9237676859,-0.9236332774,-0.9233644605,-0.9233644605,-0.9236332774,-0.9237676859,-0.9239020944,-0.9240365028,-0.9241709113,-0.9241709113,-0.9241709113,-0.9239020944,-0.9237676859,-0.9237676859,-0.9237676859,-0.9236332774,-0.9237676859,-0.9239020944,-0.9237676859,-0.9239020944,-0.9240365028,-0.9237676859,-0.9236332774,-0.9236332774,-0.9237676859,-0.9237676859,-0.9236332774,-0.9234988689,-0.9234988689,-0.9236332774,-0.9236332774,-0.9233644605,-0.9233644605,-0.9236332774,-0.9237676859,-0.9239020944,-0.9239020944,-0.9239020944,-0.9241709113,-0.9245741963,-0.9244397879,-0.9241709113,-0.9240365028,-0.9240365028,-0.9240365028,-0.9239020944,-0.9240365028,-0.9241709113,-0.9243053794,-0.9244397879,-0.9247086048,-0.9244397879,-0.9252462983,-0.9276656508,-0.9290097952,-0.9275312424,-0.9260527492,-0.9271280169,-0.9291442037,-0.9295474291,-0.9278000593,-0.9259183407,-0.9252462983,-0.9240365028,-0.9200042486,-0.9152998328,-0.9146277308,-0.9182568789,-0.9220203757,-0.9233644605,-0.9233644605,-0.9236332774,-0.9236332774,-0.9233644605,-0.923230052,-0.9225580096,-0.9212139249,-0.9197353721,-0.9194665551,-0.9201386571,-0.9205418825,-0.9220203757,-0.9252462983,-0.9284721017,-0.9299506545,-0.9299506545,-0.929816246,-0.929816246,-0.9299506545,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9295474291,-0.9299506545,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.930085063,-0.930085063,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.930085063,-0.929816246,-0.929816246,-0.929816246,-0.929816246,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.929816246,-0.9245741963,-0.9197353721,-0.9198697805,-0.920676291,-0.9189289212,-0.917719245,-0.9193321466,-0.9214827418,-0.9221547842,-0.9228268266,-0.9241709113,-0.9225580096,-0.9181224704,-0.9171816111,-0.9201386571,-0.9217515588,-0.9212139249,-0.9212139249,-0.9226924181,-0.9243053794,-0.9248430729,-0.9248430729,-0.9247086048,-0.9239020944,-0.9233644605,-0.9244397879,-0.9264559746,-0.9278000593,-0.9282032847,-0.9284721017,-0.9286065698,-0.9282032847,-0.9273968339,-0.9267247915,-0.9257839322,-0.9245741963,-0.9243053794,-0.9245741963,-0.9244397879,-0.9243053794,-0.9241709113,-0.9240365028,-0.9239020944,-0.9240365028,-0.9240365028,-0.9240365028,-0.9239020944,-0.9239020944,-0.9240365028,-0.9240365028,-0.9239020944,-0.9239020944,-0.9239020944,-0.9240365028,-0.9240365028,-0.9239020944,-0.9239020944,-0.9240365028,-0.9239020944,-0.9237676859,-0.9239020944,-0.9236332774,-0.9234988689,-0.9236332774,-0.9237676859,-0.9240365028,-0.9239020944,-0.9234988689,-0.9237676859,-0.9243053794,-0.9241709113,-0.9239020944,-0.9237676859,-0.9237676859,-0.9237676859,-0.9239020944,-0.9240365028,-0.9237676859,-0.9236332774,-0.9237676859,-0.9237676859,-0.9236332774,-0.9237676859,-0.9237676859,-0.9236332774,-0.9236332774,-0.9236332774,-0.9237676859,-0.9239020944,-0.9239020944,-0.9237676859,-0.9237676859,-0.9239020944,-0.9239020944,-0.9237676859,-0.9237676859,-0.9237676859,-0.9241709113,-0.9245741963,-0.9247086048,-0.9243053794,-0.9243053794,-0.9241709113,-0.9241709113,-0.9241709113,-0.9241709113,-0.9241709113,-0.9243053794,-0.9247086048,-0.9247086048,-0.9255151153,-0.9279344678,-0.9292786121,-0.9275312424,-0.9252462983,-0.9257839322,-0.9284721017,-0.9294130206,-0.9272624254,-0.9248430729,-0.9245741963,-0.9243053794,-0.9221547842,-0.9175848365,-0.914090097,-0.9161063433,-0.9212139249,-0.9241709113,-0.9241709113,-0.9239020944,-0.9237676859,-0.9237676859,-0.9236332774,-0.9228268266,-0.9212139249,-0.9196009636,-0.9194665551,-0.9201386571,-0.9201386571,-0.9213483334,-0.9253807068,-0.9288753867,-0.9299506545,-0.929816246,-0.9296818376,-0.929816246,-0.929816246,-0.929816246,-0.9299506545,-0.930085063,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9295474291,-0.930085063,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9303538799,-0.9302194715,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.929816246,-0.929816246,-0.9299506545,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.929816246,-0.9286065698,-0.9224236012,-0.9189289212,-0.9198697805,-0.9202730656,-0.9189289212,-0.9189289212,-0.9200042486,-0.9212139249,-0.9230956435,-0.923230052,-0.9186601043,-0.9151654243,-0.9175848365,-0.9216171503,-0.9225580096,-0.9217515588,-0.9214827418,-0.9217515588,-0.9224236012,-0.9233644605,-0.9241709113,-0.9248430729,-0.9247086048,-0.9233644605,-0.9230956435,-0.9245741963,-0.9260527492,-0.9267247915,-0.9273968339,-0.9278000593,-0.9272624254,-0.9269936085,-0.9267247915,-0.9261871576,-0.9253807068,-0.9247086048,-0.9245741963,-0.9245741963,-0.9244397879,-0.9241709113,-0.9239020944,-0.9239020944,-0.9241709113,-0.9241709113,-0.9240365028,-0.9240365028,-0.9240365028,-0.9239020944,-0.9239020944,-0.9240365028,-0.9239020944,-0.9239020944,-0.9240365028,-0.9241709113,-0.9240365028,-0.9240365028,-0.9239020944,-0.9237676859,-0.9239020944,-0.9240365028,-0.9237676859,-0.9234988689,-0.9234988689,-0.9240365028,-0.9244397879,-0.922961235,-0.9202730656,-0.9200042486,-0.9226924181,-0.9244397879,-0.9240365028,-0.9236332774,-0.9239020944,-0.9240365028,-0.9240365028,-0.9243053794,-0.9241709113,-0.9234988689,-0.9233644605,-0.9236332774,-0.9237676859,-0.9237676859,-0.9237676859,-0.9237676859,-0.9237676859,-0.9237676859,-0.9239020944,-0.9239020944,-0.9237676859,-0.9236332774,-0.9239020944,-0.9240365028,-0.9239020944,-0.9239020944,-0.9239020944,-0.9239020944,-0.9239020944,-0.9243053794,-0.9245741963,-0.9244397879,-0.9244397879,-0.9244397879,-0.9244397879,-0.9243053794,-0.9243053794,-0.9243053794,-0.9244397879,-0.9249774814,-0.9261871576,-0.9284721017,-0.9292786121,-0.9275312424,-0.9255151153,-0.9259183407,-0.9276656508,-0.9278000593,-0.9260527492,-0.9247086048,-0.9247086048,-0.9240365028,-0.9225580096,-0.9217515588,-0.9200042486,-0.9183912873,-0.9196009636,-0.9224236012,-0.9237676859,-0.9237676859,-0.9237676859,-0.9236332774,-0.9234988689,-0.922961235,-0.9210795164,-0.9190633297,-0.9186601043,-0.9196009636,-0.9200042486,-0.920676291,-0.9241709113,-0.9284721017,-0.930085063,-0.9299506545,-0.9296818376,-0.929816246,-0.9299506545,-0.929816246,-0.929816246,-0.9299506545,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9304882884,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.930085063,-0.929816246,-0.929816246,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9296818376,-0.9265903831,-0.9210795164,-0.9190633297,-0.9200042486,-0.9201386571,-0.9193321466,-0.9191977382,-0.9198697805,-0.9212139249,-0.9218859673,-0.920676291,-0.9202730656,-0.9220203757,-0.9236332774,-0.923230052,-0.922961235,-0.9230956435,-0.9222891927,-0.9216171503,-0.9220203757,-0.9220203757,-0.9220203757,-0.922961235,-0.9234988689,-0.922961235,-0.9230956435,-0.9244397879,-0.9255151153,-0.9255151153,-0.9257839322,-0.9267247915,-0.9268592,-0.9259183407,-0.9249774814,-0.9247086048,-0.9247086048,-0.9245741963,-0.9245741963,-0.9244397879,-0.9243053794,-0.9240365028,-0.9240365028,-0.9240365028,-0.9241709113,-0.9241709113,-0.9241709113,-0.9240365028,-0.9240365028,-0.9239020944,-0.9239020944,-0.9240365028,-0.9240365028,-0.9240365028,-0.9240365028,-0.9240365028,-0.9239020944,-0.9240365028,-0.9240365028,-0.9241709113,-0.9241709113,-0.9240365028,-0.9237676859,-0.9236332774,-0.9241709113,-0.9237676859,-0.9202730656,-0.9157031178,-0.9158375263,-0.9212139249,-0.9247086048,-0.9240365028,-0.9233644605,-0.9239020944,-0.9243053794,-0.9243053794,-0.9243053794,-0.9241709113,-0.9239020944,-0.9237676859,-0.9237676859,-0.9237676859,-0.9236332774,-0.9237676859,-0.9239020944,-0.9239020944,-0.9237676859,-0.9237676859,-0.9237676859,-0.9237676859,-0.9236332774,-0.9236332774,-0.9237676859,-0.9237676859,-0.9239020944,-0.9240365028,-0.9241709113,-0.9240365028,-0.9240365028,-0.9243053794,-0.9245741963,-0.9247086048,-0.9245741963,-0.9244397879,-0.9244397879,-0.9244397879,-0.9247086048,-0.9253807068,-0.9268592,-0.9286065698,-0.9282032847,-0.9261871576,-0.9256495237,-0.9271280169,-0.9287409782,-0.9280688763,-0.9249774814,-0.922961235,-0.9239020944,-0.9245741963,-0.9220203757,-0.9208106995,-0.9224236012,-0.9236332774,-0.9226924181,-0.9217515588,-0.9222891927,-0.923230052,-0.9234988689,-0.923230052,-0.922961235,-0.9224236012,-0.9209451079,-0.9189289212,-0.9181224704,-0.9190633297,-0.9200042486,-0.9202730656,-0.9225580096,-0.9269936085,-0.930085063,-0.930085063,-0.929816246,-0.929816246,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9306226969,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9304882884,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.930085063,-0.929816246,-0.929816246,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9292786121,-0.9255151153,-0.9210795164,-0.9198697805,-0.920407474,-0.9202730656,-0.9196009636,-0.9189289212,-0.9186601043,-0.9200042486,-0.9222891927,-0.9236332774,-0.9239020944,-0.9234988689,-0.9230956435,-0.9233644605,-0.9234988689,-0.9230956435,-0.922961235,-0.922961235,-0.9214827418,-0.9197353721,-0.9205418825,-0.923230052,-0.9240365028,-0.9228268266,-0.9226924181,-0.9245741963,-0.9261871576,-0.9272624254,-0.9280688763,-0.9276656508,-0.9265903831,-0.9256495237,-0.9252462983,-0.9249774814,-0.9247086048,-0.9247086048,-0.9247086048,-0.9244397879,-0.9243053794,-0.9241709113,-0.9241709113,-0.9241709113,-0.9241709113,-0.9241709113,-0.9241709113,-0.9241709113,-0.9241709113,-0.9239020944,-0.9239020944,-0.9240365028,-0.9240365028,-0.9240365028,-0.9241709113,-0.9241709113,-0.9243053794,-0.9243053794,-0.9240365028,-0.9240365028,-0.9241709113,-0.9237676859,-0.9237676859,-0.9237676859,-0.9221547842,-0.9182568789,-0.9148965478,-0.9157031178,-0.9205418825,-0.9239020944,-0.9241709113,-0.9236332774,-0.9240365028,-0.9244397879,-0.9244397879,-0.9241709113,-0.9239020944,-0.9237676859,-0.9239020944,-0.9237676859,-0.9236332774,-0.9237676859,-0.9239020944,-0.9239020944,-0.9239020944,-0.9237676859,-0.9237676859,-0.9239020944,-0.9237676859,-0.9236332774,-0.9236332774,-0.9237676859,-0.9237676859,-0.9237676859,-0.9239020944,-0.9241709113,-0.9243053794,-0.9241709113,-0.9243053794,-0.9248430729,-0.9251118898,-0.9248430729,-0.9244397879,-0.9244397879,-0.9247086048,-0.9259183407,-0.9275312424,-0.9284721017,-0.9271280169,-0.9253807068,-0.9257839322,-0.9272624254,-0.9282032847,-0.9276656508,-0.9256495237,-0.9236332774,-0.9236332774,-0.9239020944,-0.9222891927,-0.920676291,-0.9213483334,-0.9230956435,-0.9240365028,-0.9237676859,-0.922961235,-0.9225580096,-0.922961235,-0.9226924181,-0.9216171503,-0.9209451079,-0.920407474,-0.9190633297,-0.9185256958,-0.9193321466,-0.9200042486,-0.9200042486,-0.9210795164,-0.9248430729,-0.9288753867,-0.9302194715,-0.930085063,-0.929816246,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.930085063,-0.9294130206,-0.9304882884,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9288753867,-0.9252462983,-0.9220203757,-0.9208106995,-0.920676291,-0.9202730656,-0.9196009636,-0.9187945127,-0.9183912873,-0.9196009636,-0.9217515588,-0.922961235,-0.922961235,-0.922961235,-0.923230052,-0.9230956435,-0.923230052,-0.9237676859,-0.922961235,-0.9202730656,-0.9183912873,-0.9198697805,-0.923230052,-0.9248430729,-0.9236332774,-0.9220203757,-0.922961235,-0.9261871576,-0.9279344678,-0.9272624254,-0.9263215661,-0.9265903831,-0.9272624254,-0.9268592,-0.9256495237,-0.9248430729,-0.9248430729,-0.9247086048,-0.9244397879,-0.9244397879,-0.9243053794,-0.9241709113,-0.9240365028,-0.9241709113,-0.9243053794,-0.9243053794,-0.9241709113,-0.9241709113,-0.9240365028,-0.9239020944,-0.9240365028,-0.9241709113,-0.9243053794,-0.9244397879,-0.9244397879,-0.9243053794,-0.9240365028,-0.9237676859,-0.9239020944,-0.9240365028,-0.9239020944,-0.9236332774,-0.9228268266,-0.9200042486,-0.9167783856,-0.9151654243,-0.9162407517,-0.9193321466,-0.9222891927,-0.9239020944,-0.9240365028,-0.9240365028,-0.9241709113,-0.9240365028,-0.9239020944,-0.9239020944,-0.9240365028,-0.9239020944,-0.9237676859,-0.9237676859,-0.9237676859,-0.9239020944,-0.9239020944,-0.9239020944,-0.9237676859,-0.9237676859,-0.9237676859,-0.9237676859,-0.9237676859,-0.9239020944,-0.9239020944,-0.9237676859,-0.9237676859,-0.9239020944,-0.9239020944,-0.9241709113,-0.9241709113,-0.9243053794,-0.9248430729,-0.9253807068,-0.9251118898,-0.9245741963,-0.9244397879,-0.9247086048,-0.9264559746,-0.9284721017,-0.9287409782,-0.9276656508,-0.9275312424,-0.9276656508,-0.9271280169,-0.9257839322,-0.9248430729,-0.9245741963,-0.9249774814,-0.9249774814,-0.9237676859,-0.9221547842,-0.9214827418,-0.9221547842,-0.9228268266,-0.9228268266,-0.9228268266,-0.9224236012,-0.9217515588,-0.9210795164,-0.9202730656,-0.9194665551,-0.9191977382,-0.9191977382,-0.9191977382,-0.9197353721,-0.9201386571,-0.9196009636,-0.9201386571,-0.9233644605,-0.9276656508,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9304882884,-0.9304882884,-0.930085063,-0.9302194715,-0.930085063,-0.9292786121,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9302194715,-0.9287409782,-0.9257839322,-0.922961235,-0.9213483334,-0.9208106995,-0.920676291,-0.9201386571,-0.9190633297,-0.9183912873,-0.9190633297,-0.920676291,-0.9221547842,-0.922961235,-0.923230052,-0.923230052,-0.9236332774,-0.9237676859,-0.9202730656,-0.9159719348,-0.9162407517,-0.920407474,-0.9234988689,-0.9245741963,-0.9247086048,-0.9237676859,-0.9225580096,-0.9234988689,-0.9257839322,-0.9260527492,-0.9256495237,-0.9265903831,-0.9279344678,-0.9280688763,-0.9267247915,-0.9253807068,-0.9247086048,-0.9247086048,-0.9248430729,-0.9247086048,-0.9244397879,-0.9243053794,-0.9241709113,-0.9241709113,-0.9241709113,-0.9243053794,-0.9244397879,-0.9244397879,-0.9243053794,-0.9241709113,-0.9241709113,-0.9243053794,-0.9244397879,-0.9245741963,-0.9244397879,-0.9243053794,-0.9239020944,-0.9237676859,-0.9239020944,-0.9240365028,-0.9236332774,-0.9228268266,-0.920676291,-0.917450428,-0.9146277308,-0.9135524631,-0.9147621393,-0.917719245,-0.920676291,-0.922961235,-0.9237676859,-0.9237676859,-0.9239020944,-0.9239020944,-0.9239020944,-0.9241709113,-0.9243053794,-0.9243053794,-0.9240365028,-0.9239020944,-0.9237676859,-0.9237676859,-0.9237676859,-0.9239020944,-0.9240365028,-0.9240365028,-0.9240365028,-0.9239020944,-0.9239020944,-0.9239020944,-0.9240365028,-0.9240365028,-0.9240365028,-0.9240365028,-0.9239020944,-0.9240365028,-0.9241709113,-0.9243053794,-0.9245741963,-0.9249774814,-0.9251118898,-0.9256495237,-0.9259183407,-0.9255151153,-0.9257839322,-0.9275312424,-0.9286065698,-0.9283376932,-0.9276656508,-0.9265903831,-0.9249774814,-0.9243053794,-0.9245741963,-0.9248430729,-0.9244397879,-0.9237676859,-0.9230956435,-0.9228268266,-0.9225580096,-0.9225580096,-0.9224236012,-0.9218859673,-0.9212139249,-0.920407474,-0.9193321466,-0.9186601043,-0.9185256958,-0.9190633297,-0.9193321466,-0.9193321466,-0.9196009636,-0.9198697805,-0.9193321466,-0.9196009636,-0.9225580096,-0.9272624254,-0.930085063,-0.9302194715,-0.930085063,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9299506545,-0.9299506545,-0.9295474291,-0.9292786121,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9288753867,-0.9265903831,-0.9239020944,-0.9218859673,-0.9208106995,-0.920676291,-0.920407474,-0.9196009636,-0.9185256958,-0.9186601043,-0.9205418825,-0.9226924181,-0.923230052,-0.9233644605,-0.9239020944,-0.9225580096,-0.9183912873,-0.9159719348,-0.9183912873,-0.9220203757,-0.9233644605,-0.9237676859,-0.9248430729,-0.9253807068,-0.9244397879,-0.9230956435,-0.9236332774,-0.9255151153,-0.9272624254,-0.9282032847,-0.9286065698,-0.9287409782,-0.9283376932,-0.9269936085,-0.9253807068,-0.9245741963,-0.9245741963,-0.9247086048,-0.9244397879,-0.9243053794,-0.9241709113,-0.9241709113,-0.9243053794,-0.9244397879,-0.9243053794,-0.9241709113,-0.9241709113,-0.9241709113,-0.9243053794,-0.9243053794,-0.9245741963,-0.9245741963,-0.9243053794,-0.9241709113,-0.9240365028,-0.9236332774,-0.9239020944,-0.9241709113,-0.9222891927,-0.9189289212,-0.9162407517,-0.9144933224,-0.9126116037,-0.9118051529,-0.9134180546,-0.9159719348,-0.9183912873,-0.9210795164,-0.923230052,-0.9239020944,-0.9240365028,-0.9241709113,-0.9241709113,-0.9243053794,-0.9243053794,-0.9243053794,-0.9241709113,-0.9239020944,-0.9237676859,-0.9237676859,-0.9237676859,-0.9239020944,-0.9240365028,-0.9240365028,-0.9240365028,-0.9240365028,-0.9239020944,-0.9239020944,-0.9240365028,-0.9241709113,-0.9243053794,-0.9243053794,-0.9243053794,-0.9243053794,-0.9241709113,-0.9241709113,-0.9244397879,-0.9255151153,-0.9267247915,-0.9280688763,-0.9287409782,-0.9279344678,-0.9263215661,-0.9252462983,-0.9247086048,-0.9245741963,-0.9251118898,-0.9249774814,-0.9244397879,-0.9244397879,-0.9247086048,-0.9241709113,-0.9233644605,-0.9228268266,-0.9224236012,-0.9222891927,-0.9226924181,-0.922961235,-0.9221547842,-0.920676291,-0.9191977382,-0.9183912873,-0.9182568789,-0.9183912873,-0.9187945127,-0.9190633297,-0.9193321466,-0.9200042486,-0.9205418825,-0.920676291,-0.9213483334,-0.9240365028,-0.9278000593,-0.930085063,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9296818376,-0.9295474291,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9294130206,-0.9279344678,-0.9252462983,-0.9220203757,-0.9205418825,-0.9209451079,-0.9208106995,-0.9194665551,-0.9183912873,-0.9193321466,-0.9216171503,-0.9230956435,-0.9234988689,-0.9234988689,-0.9222891927,-0.9212139249,-0.9216171503,-0.9226924181,-0.922961235,-0.922961235,-0.9233644605,-0.9241709113,-0.9249774814,-0.9252462983,-0.9244397879,-0.9233644605,-0.9241709113,-0.9265903831,-0.9286065698,-0.9291442037,-0.9290097952,-0.9290097952,-0.9287409782,-0.9272624254,-0.9255151153,-0.9245741963,-0.9245741963,-0.9245741963,-0.9245741963,-0.9244397879,-0.9244397879,-0.9245741963,-0.9245741963,-0.9244397879,-0.9243053794,-0.9244397879,-0.9244397879,-0.9244397879,-0.9244397879,-0.9244397879,-0.9245741963,-0.9244397879,-0.9244397879,-0.9244397879,-0.9240365028,-0.9240365028,-0.9244397879,-0.9218859673,-0.9161063433,-0.9124771953,-0.9118051529,-0.910595417,-0.9100577831,-0.9123427868,-0.9155686498,-0.9182568789,-0.9212139249,-0.9234988689,-0.9243053794,-0.9243053794,-0.9243053794,-0.9243053794,-0.9243053794,-0.9243053794,-0.9241709113,-0.9241709113,-0.9240365028,-0.9240365028,-0.9239020944,-0.9239020944,-0.9239020944,-0.9239020944,-0.9239020944,-0.9240365028,-0.9240365028,-0.9239020944,-0.9237676859,-0.9240365028,-0.9243053794,-0.9243053794,-0.9243053794,-0.9244397879,-0.9245741963,-0.9244397879,-0.9247086048,-0.9261871576,-0.9279344678,-0.9288753867,-0.9292786121,-0.9291442037,-0.9279344678,-0.9261871576,-0.9249774814,-0.9244397879,-0.9241709113,-0.9240365028,-0.9241709113,-0.9244397879,-0.9243053794,-0.9237676859,-0.9230956435,-0.9224236012,-0.9214827418,-0.920676291,-0.9212139249,-0.9224236012,-0.9222891927,-0.9208106995,-0.9191977382,-0.9185256958,-0.9186601043,-0.9190633297,-0.9193321466,-0.9190633297,-0.9196009636,-0.9214827418,-0.923230052,-0.9241709113,-0.9249774814,-0.9267247915,-0.9290097952,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9302194715,-0.9302194715,-0.9299506545,-0.929816246,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9302194715,-0.9303538799,-0.9304882884,-0.9306226969,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.930085063,-0.9291442037,-0.9265903831,-0.9225580096,-0.9205418825,-0.920676291,-0.9205418825,-0.9193321466,-0.9187945127,-0.9201386571,-0.9224236012,-0.9234988689,-0.9230956435,-0.9233644605,-0.9240365028,-0.9243053794,-0.9236332774,-0.922961235,-0.9230956435,-0.9236332774,-0.9236332774,-0.9236332774,-0.9244397879,-0.9252462983,-0.9249774814,-0.9243053794,-0.9249774814,-0.9271280169,-0.9288753867,-0.9290097952,-0.9286065698,-0.9288753867,-0.9290097952,-0.9279344678,-0.9263215661,-0.9253807068,-0.9249774814,-0.9245741963,-0.9243053794,-0.9244397879,-0.9247086048,-0.9248430729,-0.9248430729,-0.9248430729,-0.9247086048,-0.9245741963,-0.9245741963,-0.9244397879,-0.9244397879,-0.9245741963,-0.9245741963,-0.9244397879,-0.9245741963,-0.9244397879,-0.9241709113,-0.9243053794,-0.9217515588,-0.9157031178,-0.9114019275,-0.9103266001,-0.9092513323,-0.9092513323,-0.9114019275,-0.9146277308,-0.9183912873,-0.9217515588,-0.9234988689,-0.9241709113,-0.9244397879,-0.9245741963,-0.9244397879,-0.9243053794,-0.9243053794,-0.9244397879,-0.9244397879,-0.9241709113,-0.9241709113,-0.9241709113,-0.9240365028,-0.9240365028,-0.9240365028,-0.9240365028,-0.9241709113,-0.9241709113,-0.9240365028,-0.9240365028,-0.9241709113,-0.9241709113,-0.9243053794,-0.9244397879,-0.9247086048,-0.9251118898,-0.9260527492,-0.9275312424,-0.9288753867,-0.9294130206,-0.9290097952,-0.9284721017,-0.9279344678,-0.9269936085,-0.9264559746,-0.9264559746,-0.9260527492,-0.9245741963,-0.9240365028,-0.9243053794,-0.9239020944,-0.923230052,-0.9228268266,-0.9224236012,-0.9214827418,-0.920676291,-0.9212139249,-0.9221547842,-0.9217515588,-0.9202730656,-0.9189289212,-0.9185256958,-0.9189289212,-0.9193321466,-0.9194665551,-0.9201386571,-0.9217515588,-0.9239020944,-0.9257839322,-0.9269936085,-0.9279344678,-0.9290097952,-0.9299506545,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9299506545,-0.9292786121,-0.9295474291,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9304882884,-0.9303538799,-0.9302194715,-0.9299506545,-0.9283376932,-0.923230052,-0.9201386571,-0.920407474,-0.920407474,-0.9189289212,-0.9190633297,-0.9214827418,-0.9230956435,-0.9230956435,-0.9233644605,-0.9240365028,-0.9240365028,-0.9234988689,-0.923230052,-0.9230956435,-0.9230956435,-0.922961235,-0.9230956435,-0.9233644605,-0.9237676859,-0.9244397879,-0.9248430729,-0.9248430729,-0.9255151153,-0.9272624254,-0.9288753867,-0.9287409782,-0.9286065698,-0.9290097952,-0.9294130206,-0.9288753867,-0.9275312424,-0.9256495237,-0.9240365028,-0.9233644605,-0.9237676859,-0.9244397879,-0.9247086048,-0.9248430729,-0.9248430729,-0.9247086048,-0.9245741963,-0.9245741963,-0.9244397879,-0.9244397879,-0.9244397879,-0.9245741963,-0.9245741963,-0.9244397879,-0.9241709113,-0.9241709113,-0.9240365028,-0.9209451079,-0.9151654243,-0.9118051529,-0.9119395614,-0.9116707444,-0.9114019275,-0.9127460122,-0.9162407517,-0.920407474,-0.9226924181,-0.9236332774,-0.9241709113,-0.9247086048,-0.9247086048,-0.9245741963,-0.9244397879,-0.9243053794,-0.9244397879,-0.9247086048,-0.9244397879,-0.9240365028,-0.9237676859,-0.9239020944,-0.9240365028,-0.9241709113,-0.9243053794,-0.9241709113,-0.9240365028,-0.9241709113,-0.9240365028,-0.9240365028,-0.9243053794,-0.9248430729,-0.9255151153,-0.9265903831,-0.9276656508,-0.9287409782,-0.9291442037,-0.9287409782,-0.9280688763,-0.9276656508,-0.9278000593,-0.9283376932,-0.9280688763,-0.9267247915,-0.9251118898,-0.9243053794,-0.9244397879,-0.9244397879,-0.9239020944,-0.9228268266,-0.9220203757,-0.9221547842,-0.9222891927,-0.9218859673,-0.9218859673,-0.9226924181,-0.9221547842,-0.9200042486,-0.9185256958,-0.9185256958,-0.9189289212,-0.9191977382,-0.9198697805,-0.9213483334,-0.9239020944,-0.9265903831,-0.9282032847,-0.9290097952,-0.9296818376,-0.9299506545,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.930085063,-0.9296818376,-0.9299506545,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9282032847,-0.9230956435,-0.9201386571,-0.920407474,-0.9200042486,-0.9190633297,-0.9202730656,-0.9222891927,-0.9230956435,-0.9233644605,-0.9234988689,-0.9234988689,-0.9234988689,-0.9230956435,-0.9218859673,-0.9210795164,-0.9217515588,-0.9228268266,-0.922961235,-0.9224236012,-0.9226924181,-0.9239020944,-0.9249774814,-0.9251118898,-0.9255151153,-0.9273968339,-0.9291442037,-0.9291442037,-0.9286065698,-0.9286065698,-0.9290097952,-0.9287409782,-0.9273968339,-0.9257839322,-0.9245741963,-0.9239020944,-0.9237676859,-0.9239020944,-0.9240365028,-0.9241709113,-0.9243053794,-0.9244397879,-0.9245741963,-0.9245741963,-0.9244397879,-0.9244397879,-0.9245741963,-0.9247086048,-0.9247086048,-0.9247086048,-0.9248430729,-0.9245741963,-0.9226924181,-0.9197353721,-0.9186601043,-0.9200042486,-0.920676291,-0.920676291,-0.9222891927,-0.9247086048,-0.9257839322,-0.9256495237,-0.9251118898,-0.9248430729,-0.9248430729,-0.9245741963,-0.9244397879,-0.9245741963,-0.9245741963,-0.9245741963,-0.9248430729,-0.9245741963,-0.9236332774,-0.9230956435,-0.9236332774,-0.9241709113,-0.9241709113,-0.9241709113,-0.9243053794,-0.9244397879,-0.9247086048,-0.9247086048,-0.9248430729,-0.9255151153,-0.9265903831,-0.9276656508,-0.9286065698,-0.9292786121,-0.9291442037,-0.9283376932,-0.9275312424,-0.9272624254,-0.9278000593,-0.9287409782,-0.9290097952,-0.9276656508,-0.9248430729,-0.9228268266,-0.9233644605,-0.9243053794,-0.9239020944,-0.9233644605,-0.9225580096,-0.9216171503,-0.9214827418,-0.9220203757,-0.9222891927,-0.9224236012,-0.9221547842,-0.920407474,-0.9186601043,-0.9185256958,-0.9190633297,-0.9193321466,-0.9202730656,-0.922961235,-0.9259183407,-0.9279344678,-0.9292786121,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9304882884,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.930085063,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9276656508,-0.9226924181,-0.9201386571,-0.9202730656,-0.9194665551,-0.9191977382,-0.9212139249,-0.9230956435,-0.9233644605,-0.9230956435,-0.923230052,-0.923230052,-0.9224236012,-0.9210795164,-0.9205418825,-0.9216171503,-0.9226924181,-0.9226924181,-0.9222891927,-0.9225580096,-0.922961235,-0.9239020944,-0.9251118898,-0.9253807068,-0.9256495237,-0.9272624254,-0.9287409782,-0.9290097952,-0.9284721017,-0.9280688763,-0.9283376932,-0.9284721017,-0.9283376932,-0.9278000593,-0.9265903831,-0.9252462983,-0.9245741963,-0.9245741963,-0.9244397879,-0.9244397879,-0.9245741963,-0.9245741963,-0.9245741963,-0.9245741963,-0.9245741963,-0.9248430729,-0.9249774814,-0.9252462983,-0.9253807068,-0.9253807068,-0.9257839322,-0.9264559746,-0.9271280169,-0.9278000593,-0.9284721017,-0.9287409782,-0.9288753867,-0.9292786121,-0.9288753867,-0.9278000593,-0.9271280169,-0.9264559746,-0.9256495237,-0.9249774814,-0.9247086048,-0.9247086048,-0.9248430729,-0.9249774814,-0.9247086048,-0.9244397879,-0.9247086048,-0.9247086048,-0.9243053794,-0.9244397879,-0.9247086048,-0.9247086048,-0.9247086048,-0.9253807068,-0.9259183407,-0.9263215661,-0.9267247915,-0.9269936085,-0.9275312424,-0.9283376932,-0.9287409782,-0.9287409782,-0.9284721017,-0.9282032847,-0.9276656508,-0.9276656508,-0.9284721017,-0.9291442037,-0.9286065698,-0.9267247915,-0.9245741963,-0.9233644605,-0.923230052,-0.9233644605,-0.9233644605,-0.923230052,-0.9230956435,-0.9226924181,-0.9220203757,-0.9214827418,-0.9220203757,-0.9224236012,-0.9218859673,-0.9201386571,-0.9186601043,-0.9186601043,-0.9191977382,-0.9191977382,-0.920407474,-0.9236332774,-0.9272624254,-0.9288753867,-0.9299506545,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9299506545,-0.9302194715,-0.9303538799,-0.9299506545,-0.9303538799,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.9295474291,-0.9264559746,-0.9217515588,-0.9201386571,-0.9198697805,-0.9190633297,-0.9201386571,-0.9225580096,-0.9234988689,-0.9230956435,-0.922961235,-0.922961235,-0.9225580096,-0.9221547842,-0.9222891927,-0.9226924181,-0.9228268266,-0.9225580096,-0.9224236012,-0.9226924181,-0.9226924181,-0.9228268266,-0.9237676859,-0.9248430729,-0.9245741963,-0.9244397879,-0.9257839322,-0.9276656508,-0.9287409782,-0.9286065698,-0.9282032847,-0.9280688763,-0.9286065698,-0.9291442037,-0.9288753867,-0.9278000593,-0.9268592,-0.9263215661,-0.9256495237,-0.9249774814,-0.9248430729,-0.9247086048,-0.9247086048,-0.9247086048,-0.9247086048,-0.9248430729,-0.9251118898,-0.9252462983,-0.9255151153,-0.9267247915,-0.9280688763,-0.9288753867,-0.9290097952,-0.9290097952,-0.9288753867,-0.9290097952,-0.9290097952,-0.9288753867,-0.9284721017,-0.9279344678,-0.9273968339,-0.9272624254,-0.9268592,-0.9261871576,-0.9257839322,-0.9257839322,-0.9255151153,-0.9251118898,-0.9252462983,-0.9255151153,-0.9259183407,-0.9263215661,-0.9261871576,-0.9257839322,-0.9257839322,-0.9260527492,-0.9264559746,-0.9271280169,-0.9276656508,-0.9279344678,-0.9280688763,-0.9280688763,-0.9282032847,-0.9284721017,-0.9286065698,-0.9282032847,-0.9280688763,-0.9283376932,-0.9287409782,-0.9290097952,-0.9290097952,-0.9276656508,-0.9255151153,-0.9236332774,-0.9233644605,-0.9243053794,-0.9248430729,-0.9236332774,-0.9226924181,-0.922961235,-0.922961235,-0.9225580096,-0.9221547842,-0.9220203757,-0.9222891927,-0.9224236012,-0.9205418825,-0.9178536534,-0.9179880619,-0.9193321466,-0.9190633297,-0.9196009636,-0.923230052,-0.9278000593,-0.9296818376,-0.9299506545,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9304882884,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9299506545,-0.9304882884,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.929816246,-0.929816246,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9286065698,-0.9243053794,-0.920676291,-0.9198697805,-0.9194665551,-0.9197353721,-0.9216171503,-0.922961235,-0.922961235,-0.9228268266,-0.922961235,-0.922961235,-0.923230052,-0.9233644605,-0.9230956435,-0.9224236012,-0.9222891927,-0.9224236012,-0.9224236012,-0.9221547842,-0.9221547842,-0.9224236012,-0.923230052,-0.9237676859,-0.9240365028,-0.9245741963,-0.9256495237,-0.9269936085,-0.9280688763,-0.9282032847,-0.9278000593,-0.9278000593,-0.9284721017,-0.9288753867,-0.9288753867,-0.9286065698,-0.9282032847,-0.9276656508,-0.9267247915,-0.9257839322,-0.9255151153,-0.9253807068,-0.9252462983,-0.9251118898,-0.9252462983,-0.9256495237,-0.9263215661,-0.9275312424,-0.9286065698,-0.9286065698,-0.9278000593,-0.9272624254,-0.9271280169,-0.9267247915,-0.9264559746,-0.9269936085,-0.9276656508,-0.9278000593,-0.9279344678,-0.9279344678,-0.9279344678,-0.9278000593,-0.9273968339,-0.9269936085,-0.9268592,-0.9265903831,-0.9264559746,-0.9267247915,-0.9269936085,-0.9272624254,-0.9273968339,-0.9272624254,-0.9271280169,-0.9271280169,-0.9273968339,-0.9278000593,-0.9282032847,-0.9283376932,-0.9280688763,-0.9279344678,-0.9279344678,-0.9279344678,-0.9279344678,-0.9280688763,-0.9283376932,-0.9287409782,-0.9292786121,-0.9291442037,-0.9279344678,-0.9261871576,-0.9247086048,-0.9239020944,-0.9237676859,-0.9241709113,-0.9243053794,-0.9237676859,-0.9233644605,-0.923230052,-0.9230956435,-0.9228268266,-0.9225580096,-0.9221547842,-0.9222891927,-0.9222891927,-0.9209451079,-0.9189289212,-0.9179880619,-0.9189289212,-0.9193321466,-0.9194665551,-0.9222891927,-0.9271280169,-0.9299506545,-0.930085063,-0.929816246,-0.930085063,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.930085063,-0.9303538799,-0.9299506545,-0.9299506545,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.930085063,-0.9302194715,-0.9303538799,-0.930085063,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9299506545,-0.9299506545,-0.9299506545,-0.929816246,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.9295474291,-0.9263215661,-0.9218859673,-0.9198697805,-0.9196009636,-0.9193321466,-0.9202730656,-0.9220203757,-0.9228268266,-0.9228268266,-0.922961235,-0.9230956435,-0.923230052,-0.923230052,-0.9228268266,-0.9222891927,-0.9221547842,-0.9221547842,-0.9221547842,-0.9218859673,-0.9218859673,-0.9220203757,-0.9224236012,-0.9230956435,-0.9241709113,-0.9249774814,-0.9252462983,-0.9253807068,-0.9260527492,-0.9269936085,-0.9276656508,-0.9278000593,-0.9279344678,-0.9279344678,-0.9282032847,-0.9286065698,-0.9290097952,-0.9291442037,-0.9287409782,-0.9279344678,-0.9273968339,-0.9271280169,-0.9267247915,-0.9264559746,-0.9264559746,-0.9269936085,-0.9280688763,-0.9287409782,-0.9284721017,-0.9276656508,-0.9263215661,-0.9261871576,-0.9267247915,-0.9240365028,-0.9193321466,-0.9193321466,-0.9237676859,-0.9268592,-0.9267247915,-0.9257839322,-0.9253807068,-0.9253807068,-0.9259183407,-0.9263215661,-0.9264559746,-0.9265903831,-0.9268592,-0.9268592,-0.9269936085,-0.9272624254,-0.9275312424,-0.9275312424,-0.9275312424,-0.9276656508,-0.9276656508,-0.9276656508,-0.9275312424,-0.9273968339,-0.9275312424,-0.9278000593,-0.9280688763,-0.9280688763,-0.9282032847,-0.9286065698,-0.9291442037,-0.9294130206,-0.9287409782,-0.9267247915,-0.9249774814,-0.9241709113,-0.9243053794,-0.9245741963,-0.9244397879,-0.9240365028,-0.9233644605,-0.922961235,-0.922961235,-0.9230956435,-0.922961235,-0.9228268266,-0.9226924181,-0.9225580096,-0.9224236012,-0.9216171503,-0.9193321466,-0.917719245,-0.9185256958,-0.9191977382,-0.9193321466,-0.9216171503,-0.9263215661,-0.9296818376,-0.9302194715,-0.929816246,-0.929816246,-0.9299506545,-0.9296818376,-0.9299506545,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9296818376,-0.929816246,-0.930085063,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.930085063,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9299506545,-0.929816246,-0.9296818376,-0.9296818376,-0.929816246,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.9280688763,-0.9236332774,-0.920407474,-0.9197353721,-0.9190633297,-0.9187945127,-0.920676291,-0.9225580096,-0.922961235,-0.922961235,-0.922961235,-0.922961235,-0.9228268266,-0.9222891927,-0.9218859673,-0.9216171503,-0.9213483334,-0.9214827418,-0.9217515588,-0.9220203757,-0.9222891927,-0.9222891927,-0.9224236012,-0.9228268266,-0.9236332774,-0.9244397879,-0.9249774814,-0.9253807068,-0.9257839322,-0.9264559746,-0.9271280169,-0.9278000593,-0.9279344678,-0.9279344678,-0.9279344678,-0.9282032847,-0.9287409782,-0.9290097952,-0.9287409782,-0.9286065698,-0.9284721017,-0.9282032847,-0.9279344678,-0.9280688763,-0.9283376932,-0.9284721017,-0.9280688763,-0.9275312424,-0.9268592,-0.9257839322,-0.9257839322,-0.9260527492,-0.9216171503,-0.9136868715,-0.9132836461,-0.9216171503,-0.9267247915,-0.9239020944,-0.9209451079,-0.9202730656,-0.920676291,-0.9217515588,-0.9233644605,-0.9240365028,-0.9245741963,-0.9251118898,-0.9256495237,-0.9260527492,-0.9264559746,-0.9268592,-0.9271280169,-0.9272624254,-0.9272624254,-0.9272624254,-0.9271280169,-0.9272624254,-0.9278000593,-0.9282032847,-0.9284721017,-0.9286065698,-0.9290097952,-0.9292786121,-0.9294130206,-0.9287409782,-0.9272624254,-0.9252462983,-0.9243053794,-0.9241709113,-0.9243053794,-0.9244397879,-0.9243053794,-0.9239020944,-0.9234988689,-0.923230052,-0.922961235,-0.9228268266,-0.922961235,-0.9230956435,-0.922961235,-0.9226924181,-0.9226924181,-0.9224236012,-0.9208106995,-0.9187945127,-0.9181224704,-0.9185256958,-0.9186601043,-0.9205418825,-0.9252462983,-0.9292786121,-0.9302194715,-0.9299506545,-0.929816246,-0.929816246,-0.929816246,-0.929816246,-0.929816246,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9299506545,-0.9296818376,-0.9299506545,-0.930085063,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.930085063,-0.930085063,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.930085063,-0.9299506545,-0.9299506545,-0.9302194715,-0.929816246,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9299506545,-0.929816246,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.930085063,-0.9294130206,-0.9256495237,-0.9212139249,-0.9196009636,-0.9194665551,-0.9186601043,-0.9186601043,-0.9200042486,-0.9213483334,-0.9218859673,-0.9218859673,-0.9214827418,-0.9209451079,-0.920407474,-0.9198697805,-0.9193321466,-0.9191977382,-0.9194665551,-0.9201386571,-0.9210795164,-0.9217515588,-0.9220203757,-0.9220203757,-0.9220203757,-0.9222891927,-0.922961235,-0.9239020944,-0.9247086048,-0.9251118898,-0.9255151153,-0.9259183407,-0.9265903831,-0.9275312424,-0.9282032847,-0.9287409782,-0.9290097952,-0.9291442037,-0.9288753867,-0.9286065698,-0.9283376932,-0.9283376932,-0.9284721017,-0.9284721017,-0.9284721017,-0.9282032847,-0.9278000593,-0.9275312424,-0.9269936085,-0.9264559746,-0.9263215661,-0.9263215661,-0.9261871576,-0.9240365028,-0.9202730656,-0.920407474,-0.9248430729,-0.9269936085,-0.9247086048,-0.9224236012,-0.9217515588,-0.9213483334,-0.9218859673,-0.9234988689,-0.9249774814,-0.9256495237,-0.9257839322,-0.9261871576,-0.9267247915,-0.9268592,-0.9268592,-0.9271280169,-0.9273968339,-0.9273968339,-0.9273968339,-0.9278000593,-0.9283376932,-0.9287409782,-0.9290097952,-0.9294130206,-0.9295474291,-0.9294130206,-0.9287409782,-0.9276656508,-0.9259183407,-0.9243053794,-0.9237676859,-0.9241709113,-0.9244397879,-0.9241709113,-0.9234988689,-0.9225580096,-0.9221547842,-0.9225580096,-0.9228268266,-0.9226924181,-0.9224236012,-0.9225580096,-0.9230956435,-0.9230956435,-0.9228268266,-0.922961235,-0.9222891927,-0.9200042486,-0.9182568789,-0.9185256958,-0.9189289212,-0.9197353721,-0.9233644605,-0.9280688763,-0.9302194715,-0.930085063,-0.9299506545,-0.929816246,-0.9296818376,-0.9296818376,-0.9296818376,-0.9296818376,-0.929816246,-0.9299506545,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9302194715,-0.930085063,-0.930085063,-0.9296818376,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.930085063,-0.9276656508,-0.922961235,-0.9200042486,-0.9198697805,-0.9194665551,-0.9182568789,-0.9178536534,-0.9183912873,-0.9190633297,-0.9194665551,-0.9190633297,-0.9185256958,-0.9183912873,-0.9182568789,-0.9181224704,-0.9182568789,-0.9186601043,-0.9187945127,-0.9189289212,-0.9197353721,-0.9205418825,-0.9209451079,-0.9212139249,-0.9214827418,-0.9220203757,-0.9225580096,-0.923230052,-0.9240365028,-0.9248430729,-0.9252462983,-0.9255151153,-0.9257839322,-0.9263215661,-0.9273968339,-0.9287409782,-0.9296818376,-0.929816246,-0.9295474291,-0.9292786121,-0.9290097952,-0.9287409782,-0.9286065698,-0.9283376932,-0.9279344678,-0.9275312424,-0.9273968339,-0.9275312424,-0.9275312424,-0.9276656508,-0.9276656508,-0.9273968339,-0.9272624254,-0.9272624254,-0.9269936085,-0.9269936085,-0.9273968339,-0.9272624254,-0.9267247915,-0.9264559746,-0.9261871576,-0.9260527492,-0.9264559746,-0.9269936085,-0.9272624254,-0.9273968339,-0.9275312424,-0.9278000593,-0.9278000593,-0.9278000593,-0.9279344678,-0.9282032847,-0.9282032847,-0.9282032847,-0.9284721017,-0.9287409782,-0.9292786121,-0.9295474291,-0.9294130206,-0.9286065698,-0.9275312424,-0.9261871576,-0.9249774814,-0.9245741963,-0.9247086048,-0.9245741963,-0.9240365028,-0.9236332774,-0.9233644605,-0.9222891927,-0.9212139249,-0.9212139249,-0.9220203757,-0.9225580096,-0.9224236012,-0.9220203757,-0.9221547842,-0.9226924181,-0.922961235,-0.9230956435,-0.923230052,-0.9217515588,-0.9193321466,-0.9182568789,-0.9185256958,-0.9189289212,-0.9213483334,-0.9260527492,-0.9295474291,-0.9302194715,-0.930085063,-0.930085063,-0.929816246,-0.9295474291,-0.9295474291,-0.9296818376,-0.9296818376,-0.929816246,-0.930085063,-0.9302194715,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.9302194715,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9296818376,-0.9294130206,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9294130206,-0.9259183407,-0.9210795164,-0.9194665551,-0.9202730656,-0.9201386571,-0.9191977382,-0.9186601043,-0.9185256958,-0.9186601043,-0.9187945127,-0.9186601043,-0.9187945127,-0.9191977382,-0.9194665551,-0.9191977382,-0.9189289212,-0.9189289212,-0.9187945127,-0.9187945127,-0.9190633297,-0.9191977382,-0.9194665551,-0.9201386571,-0.9209451079,-0.9216171503,-0.9221547842,-0.9228268266,-0.9234988689,-0.9243053794,-0.9247086048,-0.9249774814,-0.9249774814,-0.9249774814,-0.9255151153,-0.9263215661,-0.9272624254,-0.9283376932,-0.9290097952,-0.9291442037,-0.9291442037,-0.9291442037,-0.9291442037,-0.9292786121,-0.9294130206,-0.9292786121,-0.9292786121,-0.9292786121,-0.9291442037,-0.9287409782,-0.9284721017,-0.9284721017,-0.9286065698,-0.9284721017,-0.9283376932,-0.9283376932,-0.9284721017,-0.9284721017,-0.9286065698,-0.9286065698,-0.9282032847,-0.9276656508,-0.9273968339,-0.9276656508,-0.9282032847,-0.9286065698,-0.9286065698,-0.9286065698,-0.9287409782,-0.9288753867,-0.9288753867,-0.9288753867,-0.9290097952,-0.9291442037,-0.9294130206,-0.9290097952,-0.9283376932,-0.9272624254,-0.9261871576,-0.9253807068,-0.9249774814,-0.9245741963,-0.9244397879,-0.9240365028,-0.9236332774,-0.922961235,-0.9225580096,-0.9222891927,-0.9221547842,-0.9218859673,-0.9220203757,-0.9224236012,-0.9225580096,-0.9224236012,-0.9224236012,-0.9226924181,-0.9228268266,-0.9226924181,-0.923230052,-0.9230956435,-0.9210795164,-0.9186601043,-0.9182568789,-0.9186601043,-0.9194665551,-0.9230956435,-0.9280688763,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.929816246,-0.9296818376,-0.9296818376,-0.9296818376,-0.929816246,-0.9299506545,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9296818376,-0.929816246,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.930085063,-0.930085063,-0.9302194715,-0.9304882884,-0.9304882884,-0.9303538799,-0.930085063,-0.9294130206,-0.9252462983,-0.9202730656,-0.9183912873,-0.9190633297,-0.9193321466,-0.9191977382,-0.9190633297,-0.9190633297,-0.9193321466,-0.9196009636,-0.9197353721,-0.9193321466,-0.9187945127,-0.9190633297,-0.9191977382,-0.9189289212,-0.9186601043,-0.9185256958,-0.9185256958,-0.9182568789,-0.9179880619,-0.9185256958,-0.9193321466,-0.9200042486,-0.9209451079,-0.9220203757,-0.9224236012,-0.9226924181,-0.9233644605,-0.9241709113,-0.9248430729,-0.9249774814,-0.9248430729,-0.9245741963,-0.9245741963,-0.9252462983,-0.9260527492,-0.9265903831,-0.9268592,-0.9273968339,-0.9276656508,-0.9279344678,-0.9282032847,-0.9283376932,-0.9283376932,-0.9283376932,-0.9282032847,-0.9280688763,-0.9280688763,-0.9282032847,-0.9283376932,-0.9283376932,-0.9283376932,-0.9283376932,-0.9284721017,-0.9286065698,-0.9287409782,-0.9287409782,-0.9286065698,-0.9284721017,-0.9286065698,-0.9288753867,-0.9291442037,-0.9292786121,-0.9291442037,-0.9291442037,-0.9288753867,-0.9286065698,-0.9284721017,-0.9283376932,-0.9282032847,-0.9279344678,-0.9271280169,-0.9264559746,-0.9260527492,-0.9255151153,-0.9249774814,-0.9244397879,-0.9243053794,-0.9237676859,-0.922961235,-0.9225580096,-0.9224236012,-0.9222891927,-0.9220203757,-0.9217515588,-0.9220203757,-0.9225580096,-0.9228268266,-0.9226924181,-0.9226924181,-0.9225580096,-0.9224236012,-0.9228268266,-0.922961235,-0.9226924181,-0.922961235,-0.9226924181,-0.9205418825,-0.9185256958,-0.9183912873,-0.9186601043,-0.9201386571,-0.9247086048,-0.9292786121,-0.9303538799,-0.930085063,-0.930085063,-0.930085063,-0.929816246,-0.929816246,-0.929816246,-0.9296818376,-0.929816246,-0.930085063,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9302194715,-0.929816246,-0.930085063,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.929816246,-0.9268592,-0.9224236012,-0.9194665551,-0.9185256958,-0.9183912873,-0.9186601043,-0.9193321466,-0.9200042486,-0.920676291,-0.9216171503,-0.922961235,-0.9240365028,-0.9248430729,-0.9249774814,-0.9240365028,-0.9220203757,-0.9200042486,-0.9189289212,-0.9186601043,-0.9185256958,-0.9181224704,-0.917719245,-0.917719245,-0.9185256958,-0.9202730656,-0.9216171503,-0.9221547842,-0.9222891927,-0.922961235,-0.9236332774,-0.9241709113,-0.9249774814,-0.9253807068,-0.9252462983,-0.9251118898,-0.9251118898,-0.9251118898,-0.9248430729,-0.9248430729,-0.9248430729,-0.9248430729,-0.9247086048,-0.9251118898,-0.9257839322,-0.9261871576,-0.9263215661,-0.9263215661,-0.9263215661,-0.9264559746,-0.9265903831,-0.9264559746,-0.9260527492,-0.9263215661,-0.9267247915,-0.9269936085,-0.9271280169,-0.9272624254,-0.9272624254,-0.9271280169,-0.9268592,-0.9267247915,-0.9271280169,-0.9273968339,-0.9273968339,-0.9273968339,-0.9271280169,-0.9268592,-0.9268592,-0.9261871576,-0.9249774814,-0.9248430729,-0.9252462983,-0.9251118898,-0.9247086048,-0.9244397879,-0.9239020944,-0.9230956435,-0.9224236012,-0.9220203757,-0.9218859673,-0.9216171503,-0.9216171503,-0.9217515588,-0.9216171503,-0.9214827418,-0.9216171503,-0.9221547842,-0.9226924181,-0.9226924181,-0.9225580096,-0.9225580096,-0.9226924181,-0.9228268266,-0.9228268266,-0.9228268266,-0.922961235,-0.9218859673,-0.9197353721,-0.9187945127,-0.9186601043,-0.9183912873,-0.9202730656,-0.9256495237,-0.929816246,-0.9303538799,-0.930085063,-0.930085063,-0.930085063,-0.929816246,-0.929816246,-0.930085063,-0.9299506545,-0.9299506545,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9302194715,-0.9302194715,-0.9294130206,-0.930085063,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.929816246,-0.9276656508,-0.9253807068,-0.9241709113,-0.9240365028,-0.9245741963,-0.9252462983,-0.9261871576,-0.9278000593,-0.9291442037,-0.9296818376,-0.9295474291,-0.9292786121,-0.9288753867,-0.9276656508,-0.9255151153,-0.922961235,-0.9210795164,-0.9197353721,-0.9187945127,-0.9182568789,-0.9179880619,-0.9178536534,-0.9185256958,-0.9200042486,-0.9214827418,-0.9220203757,-0.9218859673,-0.9220203757,-0.9224236012,-0.9230956435,-0.9237676859,-0.9244397879,-0.9249774814,-0.9252462983,-0.9253807068,-0.9252462983,-0.9252462983,-0.9253807068,-0.9255151153,-0.9256495237,-0.9255151153,-0.9259183407,-0.9259183407,-0.9257839322,-0.9257839322,-0.9256495237,-0.9252462983,-0.9253807068,-0.9257839322,-0.9257839322,-0.9257839322,-0.9259183407,-0.9261871576,-0.9261871576,-0.9260527492,-0.9259183407,-0.9257839322,-0.9252462983,-0.9249774814,-0.9255151153,-0.9260527492,-0.9260527492,-0.9259183407,-0.9257839322,-0.9256495237,-0.9257839322,-0.9248430729,-0.9226924181,-0.9224236012,-0.9240365028,-0.9240365028,-0.9228268266,-0.9224236012,-0.9224236012,-0.9217515588,-0.9212139249,-0.9212139249,-0.9212139249,-0.9210795164,-0.9209451079,-0.9210795164,-0.9212139249,-0.9212139249,-0.9214827418,-0.9217515588,-0.9221547842,-0.9222891927,-0.9222891927,-0.9221547842,-0.9224236012,-0.9225580096,-0.9225580096,-0.922961235,-0.9225580096,-0.9202730656,-0.9181224704,-0.9183912873,-0.9187945127,-0.9179880619,-0.920676291,-0.9268592,-0.9299506545,-0.9303538799,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.930085063,-0.9303538799,-0.9292786121,-0.9302194715,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9296818376,-0.9291442037,-0.9291442037,-0.9295474291,-0.929816246,-0.9299506545,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.929816246,-0.9296818376,-0.9294130206,-0.9284721017,-0.9268592,-0.9245741963,-0.9218859673,-0.9197353721,-0.9190633297,-0.9185256958,-0.9179880619,-0.9185256958,-0.9201386571,-0.9214827418,-0.9216171503,-0.9213483334,-0.9217515588,-0.9221547842,-0.9222891927,-0.9226924181,-0.923230052,-0.9234988689,-0.9237676859,-0.9237676859,-0.9239020944,-0.9240365028,-0.9241709113,-0.9243053794,-0.9241709113,-0.9241709113,-0.9241709113,-0.9239020944,-0.9241709113,-0.9241709113,-0.9225580096,-0.9213483334,-0.922961235,-0.9248430729,-0.9248430729,-0.9245741963,-0.9249774814,-0.9252462983,-0.9251118898,-0.9252462983,-0.9255151153,-0.9256495237,-0.9256495237,-0.9256495237,-0.9253807068,-0.9252462983,-0.9251118898,-0.9249774814,-0.9245741963,-0.9244397879,-0.9239020944,-0.9226924181,-0.9218859673,-0.9220203757,-0.9222891927,-0.9217515588,-0.9214827418,-0.9216171503,-0.9216171503,-0.9212139249,-0.9212139249,-0.9212139249,-0.9212139249,-0.9212139249,-0.9212139249,-0.9214827418,-0.9217515588,-0.9217515588,-0.9217515588,-0.9217515588,-0.9221547842,-0.9224236012,-0.9222891927,-0.9221547842,-0.9224236012,-0.9224236012,-0.9218859673,-0.920676291,-0.9186601043,-0.9175848365,-0.9185256958,-0.9186601043,-0.917719245,-0.9210795164,-0.9280688763,-0.929816246,-0.9304882884,-0.9299506545,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.930085063,-0.930085063,-0.9287409782,-0.9303538799,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.929816246,-0.9299506545,-0.930085063,-0.930085063,-0.9295474291,-0.9280688763,-0.9252462983,-0.9217515588,-0.9194665551,-0.9185256958,-0.9182568789,-0.9190633297,-0.920407474,-0.9213483334,-0.9216171503,-0.9217515588,-0.9216171503,-0.9214827418,-0.9216171503,-0.9216171503,-0.9216171503,-0.9216171503,-0.9214827418,-0.9212139249,-0.9213483334,-0.9214827418,-0.9213483334,-0.9212139249,-0.9212139249,-0.9213483334,-0.9214827418,-0.9218859673,-0.9220203757,-0.9213483334,-0.9202730656,-0.9205418825,-0.9217515588,-0.9221547842,-0.9222891927,-0.9226924181,-0.922961235,-0.9230956435,-0.9233644605,-0.9236332774,-0.9237676859,-0.9239020944,-0.9237676859,-0.9234988689,-0.923230052,-0.923230052,-0.9230956435,-0.9225580096,-0.9221547842,-0.9221547842,-0.9222891927,-0.9218859673,-0.9212139249,-0.9210795164,-0.9210795164,-0.9208106995,-0.920676291,-0.920407474,-0.9202730656,-0.9202730656,-0.9205418825,-0.920676291,-0.920676291,-0.9209451079,-0.9214827418,-0.9218859673,-0.9220203757,-0.9218859673,-0.9218859673,-0.9221547842,-0.9222891927,-0.9218859673,-0.9212139249,-0.9208106995,-0.920407474,-0.9196009636,-0.9185256958,-0.9179880619,-0.9183912873,-0.9183912873,-0.917450428,-0.9183912873,-0.9237676859,-0.9292786121,-0.9299506545,-0.9302194715,-0.930085063,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9299506545,-0.9299506545,-0.9280688763,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9299506545,-0.9299506545,-0.929816246,-0.929816246,-0.929816246,-0.929816246,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.929816246,-0.9271280169,-0.9225580096,-0.9194665551,-0.9185256958,-0.9182568789,-0.9187945127,-0.9202730656,-0.9213483334,-0.9218859673,-0.9218859673,-0.9216171503,-0.9212139249,-0.9209451079,-0.9209451079,-0.9209451079,-0.920676291,-0.9202730656,-0.9202730656,-0.9202730656,-0.920407474,-0.920407474,-0.9202730656,-0.920407474,-0.9208106995,-0.9212139249,-0.9214827418,-0.9218859673,-0.9220203757,-0.9214827418,-0.9209451079,-0.9210795164,-0.9213483334,-0.9212139249,-0.9212139249,-0.9213483334,-0.9217515588,-0.9217515588,-0.9217515588,-0.9216171503,-0.9216171503,-0.9217515588,-0.9217515588,-0.9217515588,-0.9216171503,-0.9213483334,-0.9209451079,-0.9208106995,-0.920407474,-0.9194665551,-0.9187945127,-0.9185256958,-0.9183912873,-0.9182568789,-0.9181224704,-0.9181224704,-0.9178536534,-0.917719245,-0.917719245,-0.9175848365,-0.9175848365,-0.9179880619,-0.9186601043,-0.9193321466,-0.9198697805,-0.9205418825,-0.9209451079,-0.9209451079,-0.9208106995,-0.9200042486,-0.9189289212,-0.9181224704,-0.9179880619,-0.9178536534,-0.9178536534,-0.9182568789,-0.9186601043,-0.9179880619,-0.9179880619,-0.9216171503,-0.9272624254,-0.9299506545,-0.930085063,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9302194715,-0.9302194715,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9299506545,-0.9299506545,-0.9291442037,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.929816246,-0.929816246,-0.9296818376,-0.9296818376,-0.929816246,-0.930085063,-0.930085063,-0.929816246,-0.9299506545,-0.929816246,-0.9271280169,-0.9225580096,-0.9196009636,-0.9185256958,-0.9181224704,-0.9189289212,-0.920676291,-0.9217515588,-0.9217515588,-0.9216171503,-0.9214827418,-0.9210795164,-0.9209451079,-0.9209451079,-0.9208106995,-0.920676291,-0.9205418825,-0.920676291,-0.920676291,-0.9205418825,-0.920407474,-0.9201386571,-0.9201386571,-0.9202730656,-0.9202730656,-0.9208106995,-0.9213483334,-0.9212139249,-0.9208106995,-0.920676291,-0.9208106995,-0.9208106995,-0.9209451079,-0.9212139249,-0.9213483334,-0.9212139249,-0.9210795164,-0.9212139249,-0.9213483334,-0.9213483334,-0.9213483334,-0.9213483334,-0.9210795164,-0.9205418825,-0.9198697805,-0.9189289212,-0.9178536534,-0.9169127941,-0.9167783856,-0.9171816111,-0.917450428,-0.917450428,-0.9175848365,-0.917719245,-0.9175848365,-0.9173160195,-0.9173160195,-0.917450428,-0.9171816111,-0.9167783856,-0.9165095687,-0.9167783856,-0.9171816111,-0.9178536534,-0.9183912873,-0.9182568789,-0.917719245,-0.9173160195,-0.9171816111,-0.9171816111,-0.9175848365,-0.9181224704,-0.9183912873,-0.9182568789,-0.9181224704,-0.9186601043,-0.9216171503,-0.9265903831,-0.9295474291,-0.930085063,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9299506545,-0.9294130206,-0.9290097952,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.9296818376,-0.9294130206,-0.9295474291,-0.9295474291,-0.9294130206,-0.9295474291,-0.9299506545,-0.9302194715,-0.930085063,-0.9302194715,-0.929816246,-0.9265903831,-0.9221547842,-0.9196009636,-0.9185256958,-0.9181224704,-0.9193321466,-0.9212139249,-0.9217515588,-0.9214827418,-0.9214827418,-0.9213483334,-0.9209451079,-0.9209451079,-0.9209451079,-0.9208106995,-0.920407474,-0.9198697805,-0.9193321466,-0.9189289212,-0.9185256958,-0.9179880619,-0.9178536534,-0.9179880619,-0.9179880619,-0.9182568789,-0.9186601043,-0.9190633297,-0.9190633297,-0.9193321466,-0.9193321466,-0.9194665551,-0.9198697805,-0.9205418825,-0.9209451079,-0.9212139249,-0.9213483334,-0.9213483334,-0.9210795164,-0.9213483334,-0.9213483334,-0.920676291,-0.9197353721,-0.9189289212,-0.9182568789,-0.9175848365,-0.9173160195,-0.917450428,-0.9175848365,-0.917719245,-0.9178536534,-0.9179880619,-0.9181224704,-0.9185256958,-0.9185256958,-0.9183912873,-0.9179880619,-0.917719245,-0.9175848365,-0.917719245,-0.917719245,-0.9175848365,-0.917450428,-0.9173160195,-0.9173160195,-0.9170472026,-0.9169127941,-0.9173160195,-0.917719245,-0.9175848365,-0.9175848365,-0.9179880619,-0.9182568789,-0.9189289212,-0.9205418825,-0.9236332774,-0.9273968339,-0.929816246,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9306226969,-0.9306226969,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9296818376,-0.9283376932,-0.9283376932,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.930085063,-0.9299506545,-0.9299506545,-0.929816246,-0.929816246,-0.9296818376,-0.9294130206,-0.9294130206,-0.9295474291,-0.9295474291,-0.9296818376,-0.929816246,-0.930085063,-0.9302194715,-0.930085063,-0.9303538799,-0.9292786121,-0.9253807068,-0.9212139249,-0.9191977382,-0.9181224704,-0.9179880619,-0.9198697805,-0.9217515588,-0.9217515588,-0.9214827418,-0.9214827418,-0.9209451079,-0.9202730656,-0.9200042486,-0.9196009636,-0.9186601043,-0.9175848365,-0.9170472026,-0.9167783856,-0.9167783856,-0.9167783856,-0.9167783856,-0.9170472026,-0.9171816111,-0.9171816111,-0.9173160195,-0.917450428,-0.917450428,-0.917450428,-0.9175848365,-0.917719245,-0.9178536534,-0.9183912873,-0.9193321466,-0.9202730656,-0.9209451079,-0.9214827418,-0.9217515588,-0.9216171503,-0.920407474,-0.9187945127,-0.917719245,-0.917719245,-0.9179880619,-0.9185256958,-0.9190633297,-0.9189289212,-0.9186601043,-0.9194665551,-0.920407474,-0.9212139249,-0.9217515588,-0.9222891927,-0.9224236012,-0.9224236012,-0.9216171503,-0.9197353721,-0.9181224704,-0.9175848365,-0.917719245,-0.9175848365,-0.917450428,-0.9175848365,-0.9179880619,-0.9183912873,-0.9183912873,-0.9179880619,-0.9178536534,-0.9181224704,-0.9186601043,-0.9197353721,-0.9216171503,-0.9239020944,-0.9267247915,-0.9290097952,-0.930085063,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9299506545,-0.9288753867,-0.9290097952,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9302194715,-0.930085063,-0.929816246,-0.9296818376,-0.929816246,-0.929816246,-0.9295474291,-0.9295474291,-0.9296818376,-0.9296818376,-0.9296818376,-0.9296818376,-0.9299506545,-0.9299506545,-0.929816246,-0.9302194715,-0.9299506545,-0.9284721017,-0.9234988689,-0.9198697805,-0.9187945127,-0.9179880619,-0.9181224704,-0.9197353721,-0.920676291,-0.9208106995,-0.920676291,-0.9197353721,-0.9183912873,-0.9178536534,-0.917719245,-0.917450428,-0.9170472026,-0.9170472026,-0.9175848365,-0.9178536534,-0.9178536534,-0.917719245,-0.9178536534,-0.9182568789,-0.9183912873,-0.9182568789,-0.9181224704,-0.9181224704,-0.9178536534,-0.9175848365,-0.917719245,-0.917450428,-0.9171816111,-0.917450428,-0.9181224704,-0.9190633297,-0.9201386571,-0.9205418825,-0.9197353721,-0.9183912873,-0.917719245,-0.917719245,-0.9179880619,-0.9185256958,-0.9194665551,-0.9209451079,-0.9228268266,-0.9252462983,-0.9267247915,-0.9272624254,-0.9273968339,-0.9275312424,-0.9280688763,-0.9283376932,-0.9286065698,-0.9284721017,-0.9275312424,-0.9252462983,-0.922961235,-0.9210795164,-0.9193321466,-0.9179880619,-0.917450428,-0.917450428,-0.917450428,-0.917450428,-0.9179880619,-0.9201386571,-0.9225580096,-0.9243053794,-0.9257839322,-0.9273968339,-0.9290097952,-0.9299506545,-0.9302194715,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9299506545,-0.9288753867,-0.9294130206,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.929816246,-0.9296818376,-0.9295474291,-0.9295474291,-0.9296818376,-0.9296818376,-0.9296818376,-0.9296818376,-0.930085063,-0.9302194715,-0.9299506545,-0.930085063,-0.9299506545,-0.9264559746,-0.9209451079,-0.9189289212,-0.9185256958,-0.9171816111,-0.9171816111,-0.9182568789,-0.9186601043,-0.9185256958,-0.917719245,-0.9169127941,-0.9167783856,-0.9173160195,-0.9178536534,-0.9183912873,-0.9185256958,-0.9185256958,-0.9187945127,-0.9196009636,-0.9202730656,-0.9209451079,-0.9210795164,-0.920676291,-0.9196009636,-0.9186601043,-0.9187945127,-0.9191977382,-0.9189289212,-0.9185256958,-0.9182568789,-0.917719245,-0.9173160195,-0.9171816111,-0.9170472026,-0.917450428,-0.9182568789,-0.9178536534,-0.917719245,-0.9183912873,-0.9185256958,-0.9186601043,-0.920407474,-0.9237676859,-0.9272624254,-0.9296818376,-0.930085063,-0.9296818376,-0.9296818376,-0.9296818376,-0.9296818376,-0.9296818376,-0.929816246,-0.929816246,-0.930085063,-0.930085063,-0.929816246,-0.9286065698,-0.9272624254,-0.9255151153,-0.9237676859,-0.9224236012,-0.9218859673,-0.9222891927,-0.9237676859,-0.9257839322,-0.9272624254,-0.9280688763,-0.9290097952,-0.9295474291,-0.9299506545,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.930085063,-0.9302194715,-0.929816246,-0.9287409782,-0.9296818376,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.930085063,-0.9299506545,-0.9299506545,-0.929816246,-0.929816246,-0.9296818376,-0.929816246,-0.929816246,-0.929816246,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.930085063,-0.930085063,-0.9288753867,-0.9241709113,-0.9196009636,-0.9193321466,-0.9191977382,-0.9171816111,-0.9165095687,-0.9167783856,-0.9169127941,-0.9171816111,-0.917719245,-0.9179880619,-0.9186601043,-0.9191977382,-0.9197353721,-0.9208106995,-0.9225580096,-0.9241709113,-0.9255151153,-0.9261871576,-0.9267247915,-0.9269936085,-0.9268592,-0.9257839322,-0.9247086048,-0.9245741963,-0.9244397879,-0.9234988689,-0.9216171503,-0.9201386571,-0.9191977382,-0.9183912873,-0.9181224704,-0.917719245,-0.9170472026,-0.917450428,-0.9186601043,-0.9193321466,-0.9189289212,-0.9190633297,-0.9213483334,-0.9256495237,-0.9295474291,-0.9302194715,-0.9295474291,-0.9292786121,-0.9296818376,-0.9296818376,-0.929816246,-0.9296818376,-0.9296818376,-0.9299506545,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.9296818376,-0.9296818376,-0.9295474291,-0.9291442037,-0.9287409782,-0.9288753867,-0.9292786121,-0.9295474291,-0.929816246,-0.9299506545,-0.9299506545,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9299506545,-0.9288753867,-0.930085063,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.929816246,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9299506545,-0.9282032847,-0.9234988689,-0.9198697805,-0.9193321466,-0.9194665551,-0.9187945127,-0.9183912873,-0.9183912873,-0.9185256958,-0.9190633297,-0.9194665551,-0.9201386571,-0.9222891927,-0.9253807068,-0.9279344678,-0.9288753867,-0.9292786121,-0.9294130206,-0.9296818376,-0.9296818376,-0.9296818376,-0.9296818376,-0.929816246,-0.929816246,-0.9294130206,-0.9288753867,-0.9282032847,-0.9267247915,-0.9249774814,-0.922961235,-0.920676291,-0.9191977382,-0.9189289212,-0.9190633297,-0.9193321466,-0.9196009636,-0.9187945127,-0.9189289212,-0.9220203757,-0.9267247915,-0.929816246,-0.9302194715,-0.9294130206,-0.9294130206,-0.9296818376,-0.9294130206,-0.9292786121,-0.9295474291,-0.9295474291,-0.9296818376,-0.929816246,-0.9299506545,-0.930085063,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9299506545,-0.9303538799,-0.9299506545,-0.9287409782,-0.9302194715,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.930085063,-0.9284721017,-0.9243053794,-0.920407474,-0.9191977382,-0.9191977382,-0.9191977382,-0.9193321466,-0.9197353721,-0.9205418825,-0.9220203757,-0.9247086048,-0.9280688763,-0.9299506545,-0.930085063,-0.9299506545,-0.930085063,-0.930085063,-0.9299506545,-0.929816246,-0.9296818376,-0.9295474291,-0.9295474291,-0.929816246,-0.9296818376,-0.9295474291,-0.9296818376,-0.9295474291,-0.9290097952,-0.9279344678,-0.9255151153,-0.9222891927,-0.9200042486,-0.9194665551,-0.9194665551,-0.9191977382,-0.9201386571,-0.923230052,-0.9272624254,-0.9299506545,-0.930085063,-0.9296818376,-0.9296818376,-0.9296818376,-0.9292786121,-0.9290097952,-0.9291442037,-0.9292786121,-0.9294130206,-0.9295474291,-0.929816246,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9288753867,-0.9304882884,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.929816246,-0.9279344678,-0.9249774814,-0.9230956435,-0.9224236012,-0.9228268266,-0.9240365028,-0.9256495237,-0.9276656508,-0.9294130206,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.930085063,-0.9299506545,-0.929816246,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.9299506545,-0.9294130206,-0.9282032847,-0.9263215661,-0.9247086048,-0.9243053794,-0.9253807068,-0.9269936085,-0.9287409782,-0.9299506545,-0.930085063,-0.9296818376,-0.9294130206,-0.9294130206,-0.9291442037,-0.9291442037,-0.9290097952,-0.9290097952,-0.9292786121,-0.9294130206,-0.9296818376,-0.929816246,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9304882884,-0.9304882884,-0.9302194715,-0.9302194715,-0.9304882884,-0.9304882884,-0.9304882884,-0.9302194715,-0.9303538799,-0.9304882884,-0.9302194715,-0.9299506545,-0.930085063,-0.9291442037,-0.9278000593,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.929816246,-0.9292786121,-0.9286065698,-0.9283376932,-0.9290097952,-0.929816246,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.929816246,-0.9296818376,-0.9296818376,-0.929816246,-0.929816246,-0.9295474291,-0.9295474291,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9296818376,-0.9295474291,-0.9299506545,-0.9302194715,-0.930085063,-0.9299506545,-0.929816246,-0.9295474291,-0.9292786121,-0.9290097952,-0.9288753867,-0.9288753867,-0.9291442037,-0.9294130206,-0.9296818376,-0.929816246,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9306226969,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.929816246,-0.9292786121,-0.9276656508,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9299506545,-0.9299506545,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.929816246,-0.9296818376,-0.9296818376,-0.9296818376,-0.929816246,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.930085063,-0.930085063,-0.9299506545,-0.929816246,-0.9296818376,-0.9296818376,-0.9295474291,-0.9295474291,-0.9295474291,-0.9296818376,-0.929816246,-0.9299506545,-0.9299506545,-0.930085063,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.930085063,-0.9295474291,-0.9294130206,-0.9279344678,-0.9267247915,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.929816246,-0.9296818376,-0.9296818376,-0.9295474291,-0.9294130206,-0.9294130206,-0.9296818376,-0.929816246,-0.9296818376,-0.929816246,-0.9299506545,-0.9299506545,-0.9299506545,-0.929816246,-0.9299506545,-0.930085063,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.9299506545,-0.929816246,-0.929816246,-0.9299506545,-0.930085063,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.930085063,-0.9299506545,-0.930085063,-0.9286065698,-0.9282032847,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9306226969,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.929816246,-0.9296818376,-0.9294130206,-0.9294130206,-0.9295474291,-0.9296818376,-0.9299506545,-0.930085063,-0.930085063,-0.9299506545,-0.929816246,-0.929816246,-0.9299506545,-0.930085063,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.930085063,-0.9299506545,-0.929816246,-0.9282032847,-0.9286065698,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9303538799,-0.9304882884,-0.9306226969,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9303538799,-0.9303538799,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.9299506545,-0.929816246,-0.9296818376,-0.9296818376,-0.929816246,-0.9299506545,-0.930085063,-0.930085063,-0.9299506545,-0.9299506545,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9302194715,-0.930085063,-0.930085063,-0.930085063,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9302194715,-0.9302194715,-0.9299506545,-0.9287409782,-0.9294130206,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.930085063,-0.9299506545,-0.930085063,-0.930085063,-0.9299506545,-0.929816246,-0.929816246,-0.930085063,-0.930085063,-0.930085063,-0.9299506545,-0.930085063,-0.9302194715,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9302194715,-0.9302194715,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9302194715,-0.930085063,-0.9290097952,-0.9299506545,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.930085063,-0.9299506545,-0.9302194715,-0.9304882884,-0.9303538799,-0.9302194715,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9302194715,-0.930085063,-0.9296818376,-0.9288753867,-0.9302194715,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9302194715,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9302194715,-0.9304882884,-0.930085063,-0.9290097952,-0.9303538799,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9302194715,-0.9303538799,-0.9302194715,-0.9294130206,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9304882884,-0.9302194715,-0.9295474291,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.930085063,-0.929816246,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.9306226969,-0.9306226969,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9302194715,-0.9302194715,-0.9296818376,-0.9295474291,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.930085063,-0.9299506545,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9306226969,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9302194715,-0.9303538799,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9302194715,-0.9304882884,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9303538799,-0.9303538799,-0.9306226969,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969],[-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9306226969,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9306226969,-0.9306226969,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9304882884,-0.9303538799,-0.9304882884,-0.9303538799,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969,-0.9306226969]]]},"out":{"output":[[[0.0000142915,0.000014762122,0.000014074442,0.000013313269,0.000014010605,0.00001425967,0.000014514797,0.0000142631925,0.000014614832,0.000014049794,0.000015220159,0.00001469452,0.00001512322,0.000014468526,0.000014938282,0.000015305046,0.000015251907,0.000016253649,0.000014930263,0.000015074004,0.000015058155,0.000014304698,0.0000148119025,0.0000157794,0.000015303733,0.000016918106,0.000014741456,0.000015191953,0.000014993373,0.000014085037,0.000014906802,0.000015662521,0.000015510224,0.00001633721,0.000015610078,0.000015005804,0.00001517918,0.0000141496475,0.000014959138,0.000014919844,0.00001563606,0.00001605227,0.00001608465,0.000014598409,0.000014836047,0.0000139566355,0.000014716032,0.00001462752,0.000015705373,0.000015675774,0.000016186546,0.000014343823,0.000014280749,0.000014276651,0.000014498568,0.000014256516,0.000015431719,0.000014774517,0.00001569862,0.000014214579,0.000014324602,0.000014104419,0.000014536323,0.000014171835,0.000015613128,0.00001486396,0.00001574109,0.000014030554,0.000014122939,0.000014198539,0.000014417647,0.000014162336,0.000015368332,0.000014636687,0.000015526712,0.000014127359,0.000014260594,0.000014108726,0.000014518741,0.000014179053,0.000015619935,0.000014869179,0.000015771397,0.000014038891,0.000014132384,0.000014176038,0.00001444261,0.000014123667,0.000015376703,0.000014632054,0.000015512443,0.000014124206,0.000014240806,0.000014116948,0.000014505152,0.000014168483,0.000015600448,0.000014854891,0.000015763053,0.000014027316,0.000014130202,0.0000141709015,0.000014447197,0.00001411742,0.000015378111,0.000014628022,0.000015510032,0.000014118752,0.000014234168,0.000014120463,0.000014499371,0.000014171469,0.000015595107,0.0000148461395,0.000015757267,0.000014020387,0.000014129218,0.000014167874,0.0000144499945,0.000014114323,0.000015380443,0.000014627228,0.000015510077,0.000014117123,0.000014232308,0.00001412088,0.000014497808,0.000014172321,0.000015593576,0.000014845289,0.000015756514,0.000014020896,0.000014129811,0.00001416805,0.000014449236,0.000014114054,0.000015378682,0.000014626599,0.000015508791,0.000014118011,0.000014233706,0.00001411921,0.0000144992055,0.000014170983,0.000015595539,0.000014849098,0.00001575901,0.000014024614,0.000014130632,0.0000141700775,0.000014448024,0.000014115453,0.000015377393,0.000014627102,0.000015508434,0.000014118726,0.000014234114,0.000014119102,0.0000144997575,0.000014170146,0.000015595733,0.000014848857,0.000015758498,0.00001402226,0.000014129635,0.0000141693345,0.000014448712,0.000014114714,0.00001537858,0.000014625972,0.000015508094,0.000014108954,0.000014218783,0.000014127965,0.000014482524,0.000014171915,0.000015575237,0.000014824083,0.000015735732,0.000013958778,0.000014102214,0.000014138963,0.000014475773,0.000014084016,0.000015417289,0.000014607878,0.000015517904,0.000013872597,0.00001410859,0.000014162119,0.000014318988,0.0000141339615,0.000015410747,0.000014572314,0.00001529279,0.0000133941485,0.000014071182,0.000014251839,0.000014311699,0.00001405919,0.000015014564,0.000014484445,0.000015490032,0.000013962545,0.000014217603,0.000014079718,0.0000143480365,0.000014204172,0.000015537613,0.000014772431,0.000015517962,0.000013477998,0.0000139864405,0.000013967273,0.000014301507,0.000013998651,0.000015105908,0.000014789035,0.000015547024,0.00001349401,0.000014035759,0.000014100869,0.000014209361,0.00001408176,0.0000150221695,0.000014562645,0.000014810827,0.000013515377,0.000014143967,0.000014300129,0.000014337764,0.000014119115,0.000015277325,0.000014763079,0.000015324178,0.000013477317,0.0000143126545,0.0000142818935,0.000014157326,0.000013960881,0.000014392343,0.000014080242,0.000014090411,0.0000134326,0.000014072336,0.000014499412,0.000014009188,0.000013935582,0.00001389675,0.000014175537,0.000014381709,0.000014939236,0.000015430496,0.000015357578,0.000013678825,0.000017707282],[0.000015045396,0.000015627727,0.000017600896,0.000014991329,0.000014521748,0.0000163058,0.000013865826,0.000014571479,0.000012690903,0.000014541051,0.000012885825,0.000013434932,0.000012788731,0.000013174729,0.00001304121,0.000013450803,0.000011752455,0.000013198609,0.000011868352,0.000012931249,0.000013074585,0.00001266596,0.000012670091,0.000013099558,0.000011328799,0.00001263775,0.00001151607,0.000012534717,0.00001284732,0.000012480111,0.000012978766,0.000013329632,0.000011522497,0.000012859173,0.000012557042,0.00001365095,0.000013369353,0.0000131615925,0.0000133705635,0.000013912357,0.000012654357,0.000014705566,0.000013924595,0.000013576946,0.000013055184,0.000013083502,0.000013342247,0.000013597847,0.000013045042,0.000014225293,0.000014498652,0.000013382415,0.000012776406,0.000014330067,0.000013709553,0.000013767503,0.00001341208,0.000013579251,0.0000139409785,0.000013113595,0.000012670913,0.000014251377,0.0000135427035,0.000013661382,0.000013411608,0.000013466308,0.00001402551,0.000013104282,0.000012956419,0.000015128384,0.000014015362,0.000014272458,0.000013387023,0.000013620079,0.000013816313,0.000013013531,0.000012677887,0.0000144862,0.000013476881,0.000013755966,0.000013405405,0.000013476278,0.0000140478505,0.000013130852,0.0000129822065,0.000015232313,0.000014030099,0.0000143997,0.000013366191,0.000013605526,0.000013809674,0.000012977256,0.000012665875,0.000014515836,0.000013455409,0.000013756899,0.000013397687,0.000013466153,0.000014044946,0.000013127033,0.000012998325,0.00001526317,0.000014047557,0.000014440103,0.000013368192,0.000013610782,0.000013814509,0.000012978679,0.000012667917,0.000014529587,0.000013462006,0.000013764641,0.000013394761,0.000013468195,0.000014040726,0.000013128511,0.000013005566,0.000015279451,0.000014057126,0.000014464347,0.000013369836,0.000013615053,0.000013818027,0.000012979979,0.000012667808,0.000014536199,0.000013462301,0.000013766688,0.000013393227,0.000013468093,0.000014040392,0.000013127521,0.0000130049075,0.000015278985,0.000014055369,0.000014461369,0.000013368944,0.000013612159,0.0000138175255,0.000012977998,0.000012666552,0.000014532179,0.000013458963,0.000013762975,0.000013394364,0.00001346668,0.000014042788,0.00001312627,0.00001300166,0.000015271964,0.000014050464,0.000014449111,0.000013368192,0.000013609303,0.000013815759,0.000012976464,0.000012666201,0.000014528674,0.00001345836,0.000013760822,0.000013394991,0.000013465165,0.00001404256,0.000013125656,0.00001300316,0.000015275225,0.000014053908,0.00001445355,0.0000133691865,0.000013610184,0.000013817498,0.000012970339,0.000012666358,0.000014548929,0.000013469056,0.0000137635,0.000013385771,0.000013458398,0.00001403675,0.000013122101,0.0000130714425,0.000015423804,0.000014177188,0.000014688018,0.000013402887,0.000013652799,0.000013866633,0.000012920944,0.000012849036,0.000015020007,0.0000139144,0.000014085803,0.000013430282,0.000013588993,0.000013746145,0.000013652772,0.000013804973,0.000016476006,0.000015074133,0.0000160129,0.00001373016,0.000013888919,0.000013905976,0.000013270917,0.000012894417,0.000015022585,0.000013859983,0.000014644967,0.000013416124,0.000013883927,0.0000136533845,0.000013774398,0.000013429628,0.000016753906,0.000014710251,0.00001616922,0.000013539436,0.000014173011,0.0000136073295,0.000013733343,0.0000135126575,0.000016376425,0.000014930619,0.000015847989,0.000013641815,0.00001372342,0.000013545881,0.000014357782,0.000014686926,0.00001695039,0.000015219505,0.000016116632,0.000013752137,0.000014031744,0.000013830077,0.000014073221,0.000014956328,0.000019136745,0.000017340968,0.000017850636,0.000014558826,0.000015327685,0.000013626563,0.000015087826,0.000015434838,0.000018322631,0.000016095451,0.000016376049,0.000014320505,0.0000137994975,0.000015008653,0.000015803467,0.000015632215,0.000015970045,8.557365e-6,0.000014042856],[0.000013599053,0.000019625313,0.000016651644,0.00001718618,0.000015678152,0.00001720804,0.000015545187,0.000015157469,0.000015398466,0.000016424643,0.000015322454,0.00001751702,0.000015038137,0.00001789792,0.000016191627,0.00001779173,0.000016180806,0.000018728746,0.00001683376,0.000017898861,0.0000149908565,0.000016732509,0.000014479101,0.00001772186,0.000015006175,0.000018699227,0.000015961214,0.000017394648,0.000014317023,0.000016394753,0.000014627366,0.000018824438,0.00001528413,0.000019594512,0.000017663668,0.000020115263,0.000016147585,0.00001797517,0.000016093472,0.000018702545,0.000016859336,0.000021354439,0.000019385154,0.000019031479,0.000014692992,0.000016636135,0.000015017227,0.000018034063,0.000016322072,0.000020387162,0.000018357085,0.000018148397,0.000014318101,0.000015415862,0.000015497599,0.00001832083,0.000015644711,0.000018700888,0.000016807195,0.00001717566,0.000013953028,0.000015486916,0.000015158856,0.000018253235,0.000015738824,0.000018822015,0.000016933747,0.00001677976,0.000013804605,0.000015382306,0.00001578923,0.000018322806,0.000015491421,0.000018628229,0.000016469518,0.0000166205,0.000013749449,0.00001547422,0.000015312331,0.00001820758,0.000015737638,0.000018792725,0.00001690814,0.000016529153,0.000013739592,0.000015496653,0.000015696389,0.00001828151,0.000015426349,0.000018592236,0.000016381891,0.000016471513,0.000013683365,0.000015438358,0.000015321928,0.000018187988,0.0000157044,0.000018762157,0.000016884904,0.000016466849,0.0000137234065,0.000015524787,0.000015686244,0.00001826856,0.000015432912,0.000018596456,0.00001638758,0.000016462798,0.000013682634,0.000015442156,0.000015340029,0.000018193694,0.000015701944,0.000018762283,0.000016883036,0.000016446587,0.000013721234,0.000015538206,0.000015685031,0.00001826255,0.00001543852,0.000018600786,0.0000163918,0.000016455326,0.000013679294,0.000015444306,0.000015346393,0.00001819425,0.000015700462,0.000018759545,0.000016881022,0.000016440425,0.000013719284,0.00001553828,0.000015682444,0.000018259503,0.000015435795,0.000018598621,0.000016387328,0.000016451875,0.000013677729,0.000015442994,0.000015339077,0.000018190069,0.000015700132,0.000018758903,0.000016880234,0.000016447058,0.000013719441,0.000015532902,0.000015681562,0.000018261888,0.000015432322,0.00001859566,0.000016384642,0.000016455027,0.000013678759,0.000015442303,0.000015335712,0.000018188837,0.000015700925,0.000018759492,0.00001688017,0.000016446947,0.000013718146,0.000015534324,0.000015680695,0.000018262359,0.000015435708,0.000018596102,0.000016385377,0.000016436083,0.000013664418,0.000015433632,0.000015358912,0.000018188994,0.000015682894,0.000018746276,0.000016847298,0.000016293736,0.000013638861,0.00001562278,0.000015633228,0.000018240566,0.000015532738,0.000018648581,0.000016460568,0.000016148433,0.000013482189,0.000015163208,0.000015699234,0.000018181363,0.00001563536,0.00001873023,0.000016675798,0.000015264814,0.000013970844,0.000016021286,0.00001604015,0.00001773388,0.000015614693,0.000018932567,0.000016707969,0.000016479575,0.0000137200295,0.000015318072,0.00001602156,0.000017997589,0.000015361782,0.000018292461,0.000015885696,0.000014248401,0.00001461295,0.000016288282,0.000016811298,0.00001684823,0.000016020827,0.00001847958,0.00001666734,0.000015113863,0.000013699751,0.000015818727,0.000015874097,0.000017512977,0.00001587022,0.00001852721,0.000016685884,0.000015429467,0.000014443257,0.000016052514,0.000016427119,0.000017677503,0.000016173353,0.000018391325,0.000015890319,0.000013487102,0.000015194301,0.000017833367,0.0000180853,0.000017377388,0.000016157861,0.00001621131,0.000015509308,0.000014893076,0.000015911335,0.000017056602,0.000017137636,0.000017619739,0.000016785347,0.000018179144,0.000017406197,0.000017283233,0.000016488078,0.000015347885,0.000011269953,0.000012532242],[0.000015103229,0.000019991188,0.000017444054,0.000013181702,0.000015489988,0.000015932897,0.000015717014,0.000013874569,0.00001745655,0.000015439358,0.000015077628,0.000014032869,0.000014990871,0.0000149926145,0.000015979582,0.000015578147,0.000017236076,0.000017599705,0.000016216243,0.000014686884,0.0000141619585,0.000013528169,0.000014720552,0.00001494361,0.0000168258,0.000017940953,0.00001575405,0.000013722686,0.000013418031,0.000013221021,0.000015489575,0.000016493708,0.000018156377,0.000019063884,0.00001822914,0.00001666513,0.000015857271,0.000015371996,0.00001646341,0.000016477561,0.000018784538,0.000019357094,0.000018670236,0.000015482323,0.000014366233,0.000013869806,0.000015180397,0.000015092214,0.000017599166,0.000017498052,0.00001698194,0.000014417468,0.000013431716,0.000013290663,0.00001479039,0.000014516236,0.000015974721,0.000015845028,0.000016042384,0.000013820306,0.000013398632,0.000013097622,0.000014801875,0.000014449415,0.000016129856,0.000015941,0.000016033988,0.000013307442,0.000013278197,0.000013176815,0.000015125253,0.000014071665,0.000015890984,0.00001546646,0.000015635018,0.000013430846,0.000013389844,0.000013058609,0.000014754184,0.000014377939,0.000016077718,0.000015771639,0.000015879563,0.000013038164,0.000013208897,0.00001319033,0.000015354342,0.000013917532,0.000015852236,0.000015330523,0.000015495618,0.0000133005915,0.000013351808,0.00001302504,0.000014732939,0.000014328019,0.000016051075,0.000015708983,0.000015838259,0.000012976018,0.000013187713,0.00001320124,0.000015413216,0.0000139091735,0.000015851345,0.000015328402,0.000015491732,0.000013300325,0.000013356582,0.000013032918,0.00001473984,0.000014331652,0.000016049606,0.000015703741,0.000015835072,0.000012962834,0.000013180698,0.00001320479,0.00001544005,0.000013905406,0.000015850725,0.000015326501,0.000015486134,0.000013297903,0.000013357717,0.000013035702,0.000014739052,0.000014330656,0.00001604751,0.00001569865,0.000015830377,0.000012956679,0.000013178021,0.000013204338,0.000015438092,0.000013902621,0.000015849077,0.000015322088,0.000015481777,0.000013294542,0.0000133557805,0.000013031389,0.0000147362,0.000014327512,0.000016046744,0.000015697975,0.0000158295,0.000012959583,0.000013180646,0.0000132027635,0.000015426318,0.00001390343,0.000015848686,0.000015321446,0.000015484036,0.000013295062,0.0000133556405,0.000013029761,0.00001473648,0.000014328031,0.000016048887,0.000015701045,0.000015831432,0.000012959324,0.000013179428,0.000013202903,0.00001542982,0.000013905354,0.000015851285,0.000015322556,0.000015481319,0.0000132813875,0.000013346906,0.000013030371,0.000014736494,0.000014314551,0.000016038437,0.000015664582,0.00001578929,0.000012815382,0.0000130935,0.000013195501,0.000015647323,0.000013909809,0.000015896578,0.00001536801,0.000015476124,0.000012942761,0.00001308309,0.000013203166,0.000014804883,0.000014265735,0.000016047754,0.000015648353,0.000015709418,0.000012230851,0.000013135549,0.000013432062,0.000016004105,0.000013958751,0.000016001679,0.000015733602,0.00001559771,0.000013233117,0.00001327707,0.000013204389,0.000015107737,0.000013826569,0.00001559371,0.0000151385875,0.000014706535,0.000011220556,0.000013849663,0.000015622587,0.00001714975,0.0000145028,0.000015093092,0.000015544001,0.000015299005,0.000012009281,0.000012804289,0.000013279578,0.00001582603,0.000013864833,0.000015610553,0.000015534146,0.000015596966,0.000012667216,0.000013306515,0.000013447609,0.00001607373,0.000014298656,0.000016165783,0.000015448386,0.000014371549,0.000010683278,0.000014753424,0.000016989165,0.000018461827,0.000015899777,0.000017329958,0.000015319561,0.000013709868,0.000012804082,0.000015837308,0.00001671232,0.00001831552,0.000015374122,0.000015764572,0.000016008013,0.00001650787,0.000015958323,0.000015572963,0.00001560646,0.000013231615,0.000011363912],[0.000014631775,0.000016232536,0.00001599672,0.000012053938,0.000014899399,0.000015472951,0.000014852794,0.000013167292,0.000014556147,0.000013096685,0.00001416304,0.000013192367,0.000015383554,0.00001599126,0.000017034039,0.000016082395,0.00001749852,0.000017256585,0.000016387376,0.000015961808,0.0000139323265,0.000013627979,0.00001441333,0.0000148991985,0.000016980757,0.000018325374,0.000017726476,0.000016243283,0.000014181272,0.0000143654925,0.000015464248,0.000015771879,0.000017108356,0.00001762458,0.00001604947,0.000016338612,0.000015121764,0.000015137866,0.000015571686,0.000015814669,0.000017318773,0.000017902274,0.00001609031,0.00001553385,0.0000140489365,0.000014378116,0.0000149646885,0.000015052916,0.000017154249,0.000017755747,0.000015078489,0.000014094053,0.000012806329,0.000013021116,0.000013795037,0.000014298861,0.000016650818,0.000016558593,0.000014977182,0.000014074108,0.000013344692,0.000013355348,0.000014012235,0.00001453843,0.00001654554,0.000016617932,0.0000148809095,0.00001428951,0.000012702575,0.00001257286,0.000014094591,0.000014029149,0.00001641298,0.000016674034,0.000014846974,0.000014101622,0.000013473629,0.0000131990755,0.000014118496,0.000014378966,0.000016523716,0.00001658456,0.000014793452,0.000014144748,0.000012613404,0.000012525934,0.000014025296,0.000013924249,0.00001623393,0.000016530335,0.000014743327,0.000014018596,0.0000134113525,0.000013083041,0.000014087629,0.000014261942,0.000016472613,0.000016549926,0.000014763418,0.00001409244,0.000012596538,0.000012518577,0.00001400673,0.000013934106,0.000016220465,0.000016533835,0.000014746799,0.000014027222,0.0000134151,0.000013081443,0.000014096123,0.000014253293,0.000016472692,0.000016553684,0.000014763557,0.00001408603,0.000012597428,0.000012520631,0.000014002616,0.000013940699,0.000016214171,0.000016538235,0.000014749189,0.000014035317,0.000013417672,0.000013075606,0.000014100963,0.000014248101,0.000016474074,0.00001655463,0.000014761249,0.000014084163,0.000012595734,0.000012518768,0.000014001801,0.000013940166,0.000016213939,0.000016533771,0.0000147464625,0.000014032106,0.000013416879,0.00001307547,0.0000140982875,0.0000142502495,0.00001647244,0.000016553084,0.000014760124,0.000014085763,0.000012594953,0.00001251668,0.000014002803,0.000013935435,0.000016215594,0.000016531818,0.000014744155,0.000014027743,0.000013416738,0.000013077478,0.000014096836,0.000014255401,0.000016472786,0.000016551805,0.000014760025,0.000014084312,0.000012593752,0.000012516643,0.000014003737,0.000013937788,0.000016215223,0.000016532038,0.0000147396295,0.00001402448,0.000013404562,0.00001305252,0.000014098152,0.000014217481,0.000016449709,0.000016529688,0.000014715345,0.000013958697,0.00001252708,0.000012482396,0.000013942892,0.000014010738,0.000016167109,0.000016604388,0.000014696018,0.000014056025,0.000013113632,0.000012739321,0.0000142379695,0.00001401901,0.000016654789,0.000016651944,0.000014841226,0.000013738583,0.000012254564,0.000012585251,0.00001395782,0.0000144236565,0.000016273625,0.000016608585,0.000015112997,0.000014213902,0.00001306561,0.000012435856,0.00001365242,0.000013037021,0.000014881776,0.000015323432,0.000014054659,0.00001102552,0.000012734851,0.000013493381,0.000013968473,0.000013064352,0.000015210698,0.00001627569,0.000015191809,0.000013826422,0.000012616797,0.000012729424,0.00001385636,0.000014454501,0.00001684092,0.000017063694,0.00001526745,0.000015109798,0.000013639276,0.0000135699565,0.000014592673,0.000014604855,0.000015994432,0.000016044618,0.000014296421,0.0000105570025,0.000012810824,0.000013988136,0.000014012195,0.000013513933,0.000015115334,0.000013862441,0.000012949625,0.000012143983,0.000014209523,0.0000151334925,0.000016175576,0.00001477615,0.000015751197,0.000017337661,0.000016935686,0.000016523589,0.000014983753,0.000014783762,0.000012156567,0.000011996599],[0.000014859355,0.000017625856,0.000014447308,0.000011207275,0.000012195606,0.000012680149,0.0000111638055,0.0000107773285,9.786375e-6,0.000011106377,0.000012283886,0.000013969685,0.00001533662,0.000017641041,0.000017478706,0.000018751587,0.000019538198,0.000021257094,0.000021207567,0.000021613141,0.00001914171,0.000019475041,0.000019663961,0.000021747614,0.000022237147,0.000023395738,0.000022446866,0.000022406743,0.000022082919,0.000022745638,0.000021783897,0.000022001885,0.000020556936,0.0000200074,0.00001861562,0.000018888293,0.000017803832,0.000018407625,0.000018233644,0.000018883971,0.000019297597,0.000019292978,0.000018646038,0.00001907667,0.00001824335,0.000019686215,0.000018594932,0.000019359899,0.000019219413,0.00001946845,0.000018432342,0.000016578519,0.000014835382,0.000015408586,0.000015499298,0.000017317947,0.00001832352,0.000017539836,0.000017259646,0.00001668011,0.000015365387,0.00001666521,0.000016293223,0.000017832159,0.000018223702,0.000017493181,0.000016491285,0.000015020007,0.0000135092305,0.00001409404,0.00001404335,0.00001598263,0.000017116892,0.00001722096,0.000016579372,0.000016163487,0.000014892977,0.000016242833,0.000015951826,0.000017627186,0.000018014725,0.000017295732,0.000016213351,0.000014797556,0.000013370486,0.000013861924,0.000013845067,0.000015749154,0.000016980775,0.000017284157,0.000016585507,0.00001619788,0.000014885593,0.00001619663,0.000015879108,0.000017558514,0.00001798899,0.000017278338,0.00001615937,0.000014731324,0.000013338787,0.000013805527,0.000013806395,0.000015686423,0.000016941436,0.00001726773,0.000016560993,0.000016174341,0.000014861679,0.000016172322,0.000015851752,0.000017534669,0.000017972015,0.000017258857,0.00001613067,0.000014703842,0.000013322934,0.000013784779,0.000013785371,0.00001565498,0.000016913073,0.000017257902,0.00001654172,0.000016155118,0.000014842514,0.000016155365,0.000015836673,0.000017525525,0.000017965263,0.000017251896,0.00001612438,0.00001470293,0.000013322947,0.000013785253,0.000013786817,0.000015658368,0.00001691827,0.000017258215,0.00001654385,0.000016160497,0.000014851662,0.000016163363,0.000015848564,0.000017536007,0.00001797114,0.000017260963,0.000016137565,0.00001471672,0.0000133300755,0.000013794932,0.000013796129,0.000015673488,0.00001692871,0.000017262411,0.000016549626,0.000016169453,0.000014859029,0.000016173184,0.000015857151,0.000017543969,0.00001797594,0.00001726317,0.000016140304,0.000014715639,0.000013328461,0.000013792591,0.000013794893,0.000015671694,0.00001692721,0.000017262297,0.000016544529,0.000016150389,0.000014833473,0.000016141981,0.000015811667,0.000017509221,0.00001795795,0.000017254628,0.00001605201,0.000014576205,0.000013224853,0.000013640787,0.000013651184,0.00001546177,0.000016745998,0.000017212473,0.000016307804,0.000015627817,0.000014172293,0.000015334133,0.00001489829,0.000016539354,0.000017199689,0.000017064835,0.000015375135,0.000013681472,0.000012788059,0.000012972418,0.000013376175,0.000014520404,0.000015941241,0.00001685162,0.000015863881,0.00001468652,0.000013424378,0.000014369945,0.0000135858445,0.000014556203,0.000014876143,0.000015651605,0.000012851168,0.000012469036,0.00001035782,0.000010821738,0.000010258248,0.000012407673,0.000014241391,0.0000163642,0.000015225777,0.00001387973,0.000012876832,0.000013435149,0.000013200925,0.000015058127,0.000016375221,0.000016233806,0.00001540894,0.0000137705365,0.000012671264,0.000012924456,0.0000125196275,0.0000133252215,0.000014110689,0.000015085379,0.000012268175,0.000011822567,9.174799e-6,0.000010082121,8.9577115e-6,9.448186e-6,0.000010660968,0.000011185237,0.000010792869,9.0244985e-6,9.377084e-6,0.0000104215105,0.000010514851,0.000012326461,0.000013485726,0.000014914909,0.000015731875,0.00001407416,0.000013875269,0.000012795195,0.00001019232,0.000010462808],[0.00001579057,0.000015825259,0.000013454665,0.000010511292,0.000010674255,0.000010296757,0.000010496888,9.753151e-6,0.0000126148,0.000015702917,0.000019606887,0.000020573016,0.000022724867,0.000022769533,0.000023737974,0.000023704357,0.000024691051,0.000023233053,0.00002306259,0.000021475647,0.000026095504,0.000025278303,0.000025643185,0.000022074602,0.00002353432,0.000021497408,0.000021616726,0.00002046346,0.000025172263,0.000024553217,0.000025067411,0.000022643355,0.000024108955,0.000022877666,0.00002398544,0.000022543294,0.000025532767,0.000025289128,0.000026217807,0.000023983906,0.000024344823,0.000023460441,0.000024294333,0.000023116318,0.000025956933,0.000025685136,0.000026348544,0.000023638575,0.00002448319,0.000023489496,0.00002458351,0.000023632962,0.000026229634,0.000026471982,0.000026452903,0.000024129127,0.00002414448,0.00002402099,0.00002487049,0.000024883655,0.00002651804,0.00002596513,0.000025875994,0.0000244781,0.000024218574,0.000023718761,0.00002437493,0.000024005485,0.00002478887,0.00002573103,0.000025945277,0.000023802104,0.000023429653,0.000023601297,0.000024343986,0.00002457955,0.000026012714,0.000025749883,0.000025622969,0.00002436921,0.000023962806,0.000023647031,0.000024180265,0.000023876011,0.000024623776,0.000025680994,0.00002610078,0.000023813001,0.000023427396,0.000023627803,0.000024428567,0.000024662106,0.00002605055,0.000025780866,0.000025652382,0.000024358013,0.00002394387,0.000023642184,0.000024174802,0.000023836925,0.000024587967,0.000025660993,0.000026099186,0.000023792207,0.000023403012,0.00002360929,0.000024406261,0.000024641135,0.000026023534,0.000025767838,0.00002563294,0.000024342107,0.00002392392,0.000023626384,0.000024154637,0.000023816543,0.000024564928,0.000025646194,0.000026085328,0.000023781433,0.00002338349,0.000023594253,0.000024388462,0.00002462523,0.000026001679,0.000025760713,0.000025623582,0.000024333356,0.000023914863,0.000023623432,0.000024146942,0.00002381518,0.000024563195,0.000025645557,0.000026081596,0.00002378082,0.000023384182,0.000023596727,0.000024391136,0.000024630444,0.000026009491,0.000025764275,0.000025630814,0.00002433983,0.000023923965,0.000023631295,0.000024156227,0.000023826495,0.000024573761,0.000025654781,0.000026087167,0.000023789553,0.000023392748,0.000023603616,0.000024397534,0.000024639701,0.000026018472,0.000025768208,0.000025633746,0.000024345427,0.000023926978,0.000023632761,0.000024157885,0.000023824836,0.000024573832,0.00002565358,0.000026093488,0.000023787192,0.00002339181,0.000023601093,0.000024399304,0.000024629435,0.000026002821,0.000025771795,0.000025631327,0.000024330433,0.000023918672,0.000023629154,0.000024157538,0.000023738608,0.000024523897,0.000025658326,0.00002626052,0.000023750245,0.00002336256,0.000023493485,0.000024294379,0.000024367724,0.000025495174,0.000025815554,0.000025372832,0.000023871342,0.000023482173,0.000023276676,0.00002409599,0.000023213739,0.000024148349,0.00002540426,0.00002621268,0.000023451537,0.000022725864,0.000023136783,0.000023968405,0.000024254792,0.00002469324,0.00002559015,0.000026448715,0.000024048746,0.000024414034,0.000023180026,0.000023063207,0.000021073178,0.000021198022,0.0000208002,0.000021953028,0.000023121123,0.00002412823,0.00002201261,0.000023431372,0.000022603419,0.00002408841,0.000024766254,0.000025172312,0.000022480948,0.000021486381,0.000021406433,0.00002135391,0.000021057547,0.000020980035,0.000022010046,0.000021493843,0.000020992366,0.000020579884,0.000022392816,0.000021823986,0.000020071993,0.000018299806,0.000016948854,0.00001646809,0.00001697399,0.00001701785,0.000017710323,0.000015910031,0.00001349248,0.0000120212335,0.000011725252,0.000013324447,0.000013848448,0.000013211354,0.000014786667,0.00001616008,0.00001630768,0.000014535229,0.000014789601,0.000010100078,0.000011042682],[0.000016932538,0.000015178413,0.000013163877,0.000010076574,8.651525e-6,9.494966e-6,8.746046e-6,0.000012441906,0.000016985861,0.00002528175,0.000022644976,0.000024080278,0.000022228814,0.000025509256,0.00002291627,0.000022764734,0.000019494646,0.00002080518,0.000018332943,0.0000193344,0.00001884344,0.000021657272,0.000019096182,0.000019976209,0.000018258163,0.000019951876,0.000017926175,0.000019011235,0.000018545965,0.000020952783,0.000019373641,0.000020239124,0.000018989527,0.000021226891,0.000019196314,0.000020098236,0.000019633493,0.000022529646,0.00002138093,0.00002159019,0.0000200516,0.000021826276,0.000019769766,0.000020318104,0.000019283469,0.0000217181,0.000020388328,0.000021223956,0.000019819186,0.000021919956,0.000019931718,0.000020786836,0.000020251653,0.000022948352,0.000021959268,0.000022874938,0.000021734759,0.000023812092,0.000021661961,0.000022467382,0.00002120055,0.000023655715,0.000022367482,0.000023392411,0.000021992024,0.000024215204,0.000021805512,0.00002264085,0.000021859938,0.000024517956,0.000023449122,0.000024347353,0.00002293352,0.000024972232,0.000022678581,0.000023529923,0.00002211084,0.000024485336,0.000023038892,0.000023957848,0.000022442093,0.000024567811,0.000022033757,0.000022800106,0.000021957572,0.00002457955,0.000023494873,0.000024313662,0.000022819117,0.00002479705,0.000022554024,0.00002337201,0.000021975064,0.00002434849,0.000022976077,0.00002391986,0.000022416169,0.000024546755,0.000022029471,0.000022799672,0.000021976048,0.000024614008,0.000023536946,0.000024354691,0.000022857797,0.000024835008,0.00002258476,0.000023404084,0.000022003416,0.000024379206,0.000023003986,0.000023952181,0.000022450484,0.000024583067,0.000022061344,0.00002283283,0.000022008117,0.00002464433,0.000023564524,0.00002438523,0.000022886916,0.00002486321,0.000022608638,0.00002342992,0.000022027687,0.00002440256,0.00002302431,0.000023968336,0.000022465198,0.000024596526,0.000022070646,0.000022839997,0.000022013344,0.000024647808,0.000023565895,0.000024386369,0.000022889188,0.000024862806,0.000022607968,0.000023426994,0.00002202548,0.000024395418,0.000023016933,0.000023959126,0.00002245331,0.000024580606,0.000022055916,0.000022825625,0.000022001926,0.00002463472,0.000023556348,0.00002437372,0.000022876682,0.00002485221,0.000022599173,0.000023417366,0.000022016618,0.00002438802,0.000023011731,0.000023951863,0.000022446822,0.000024576106,0.000022052005,0.00002282151,0.000021999136,0.000024633875,0.000023554527,0.000024370489,0.000022872167,0.000024848441,0.000022591523,0.000023414752,0.000022016093,0.00002439195,0.000023020753,0.000023966348,0.000022455622,0.000024585623,0.00002203876,0.000022817136,0.00002201958,0.000024695948,0.000023607734,0.000024458637,0.00002292274,0.000024941528,0.000022568162,0.000023543882,0.00002232733,0.00002488527,0.00002369274,0.000024734485,0.000022948267,0.000024735757,0.000022753838,0.000023659753,0.000022798518,0.000025372348,0.000024552515,0.000025437277,0.000023446504,0.000025279483,0.000023323159,0.000023819382,0.000021809527,0.00002376418,0.000021896032,0.00002274219,0.000020745583,0.000022709983,0.000020031339,0.000022601782,0.00002273306,0.000027710606,0.00002436094,0.000024896568,0.000021870404,0.000024153533,0.000021446196,0.000023155966,0.000022500359,0.000025585756,0.00002336236,0.000024912291,0.000022302516,0.000024307403,0.00002238976,0.000024417062,0.00002316659,0.000025705302,0.00002448842,0.000025674188,0.000022938026,0.000024872932,0.000022503085,0.00002450753,0.000023963172,0.000027919867,0.000024631125,0.000025320453,0.00002188643,0.000023622599,0.000020745583,0.000021759915,0.000019946607,0.000020734627,0.000017562836,0.000014950852,0.000012763058,0.000013549705,0.000014825228,0.000016636057,0.000016251897,0.000015244418,9.568158e-6,0.000013025662],[0.000016903125,0.00001373286,0.000013996554,0.000010828923,0.000010586128,0.000010964577,0.000014593257,0.000020652846,0.000027266646,0.000023634857,0.000022762455,0.00002102889,0.000021696176,0.000021477634,0.000021351467,0.000020151685,0.00002066313,0.000020419326,0.000020525278,0.00002007634,0.000021092095,0.000021276097,0.000021413598,0.000020107169,0.000020695768,0.000020406516,0.000020651074,0.00002001904,0.000020856036,0.000021154001,0.000021075266,0.00001990467,0.000020677007,0.000020470583,0.000020676376,0.000019743653,0.000020606534,0.00002106012,0.000021131254,0.000020214298,0.000020593607,0.000021030575,0.000020930114,0.000020577098,0.000020931173,0.000021453603,0.000021369535,0.000020447658,0.000020934069,0.000021128315,0.000021031197,0.000020861187,0.000021390271,0.00002190424,0.000021349757,0.000020663405,0.000020971873,0.000021532249,0.00002139474,0.000021652542,0.00002193683,0.000022314003,0.000021839163,0.000021040363,0.000021280805,0.0000215685,0.000021389576,0.000021492468,0.000021794016,0.000022377808,0.000021609554,0.000021281921,0.00002131007,0.000022046454,0.000021668076,0.000022132339,0.000022240327,0.000022797669,0.000022008517,0.000021322878,0.000021407106,0.000021778953,0.000021515272,0.000021654072,0.000021888518,0.000022426004,0.000021665577,0.000021296317,0.00002126768,0.000022017039,0.000021629141,0.000022090377,0.000022210019,0.000022775721,0.000022015527,0.000021321088,0.000021406659,0.000021777478,0.000021512133,0.000021645503,0.00002188741,0.000022419268,0.000021680044,0.00002130426,0.000021276748,0.000022030585,0.00002163737,0.00002210186,0.000022217306,0.000022783674,0.000022022981,0.00002133085,0.000021417562,0.000021790253,0.000021522495,0.000021657976,0.000021895907,0.000022425213,0.000021684427,0.000021311615,0.000021286529,0.000022038172,0.000021642285,0.00002211259,0.000022227205,0.000022790606,0.000022027707,0.000021336138,0.000021419808,0.000021794058,0.00002152457,0.000021660351,0.000021895865,0.000022426753,0.000021683518,0.00002131318,0.000021285474,0.000022038046,0.000021642325,0.000022110757,0.000022227183,0.000022792126,0.000022026026,0.000021336078,0.000021417194,0.0000217904,0.000021521613,0.000021656178,0.000021893988,0.000022425105,0.000021682443,0.000021312204,0.00002128326,0.000022036364,0.00002164121,0.000022107002,0.000022224958,0.000022790517,0.000022026215,0.000021333373,0.000021415437,0.000021788986,0.000021520034,0.0000216556,0.000021897808,0.0000224272,0.000021690033,0.00002131385,0.000021285758,0.00002203813,0.000021645295,0.000022109658,0.000022230171,0.000022793343,0.000022039369,0.000021347903,0.0000214289,0.000021804326,0.00002153309,0.000021683456,0.000021956967,0.000022443377,0.000021841539,0.000021370044,0.000021331378,0.000021976155,0.000021627058,0.000022076916,0.000022294627,0.000022866563,0.000022303433,0.000021656158,0.000021723694,0.000022157701,0.000021900063,0.000022122906,0.000022204704,0.00002271514,0.000021883154,0.000021544818,0.000021414355,0.000022049397,0.000021702634,0.00002198433,0.000021961969,0.0000221799,0.000021657645,0.000020767893,0.000021226364,0.000021203867,0.000021393209,0.000020877547,0.000021483718,0.000021749895,0.000021601538,0.000020042404,0.000020833473,0.0000204218,0.000021218795,0.000020671841,0.000021920268,0.000021989572,0.000022296945,0.000021322512,0.00002274566,0.000022412429,0.000023086643,0.000022717759,0.000023546667,0.000023908091,0.000023363653,0.000023478122,0.000023028855,0.000023570685,0.000022355433,0.000023000037,0.000022711996,0.000023674267,0.00002269987,0.000022302922,0.000022501948,0.000023113893,0.00002378286,0.00002474161,0.00002408432,0.000025440117,0.0000215954,0.000018417319,0.000013906069,0.000014505539,0.000014841907,0.000019232557,0.00001732829,0.000015598647,9.738196e-6,0.000013594125],[0.000016353359,0.000016120506,0.000013511704,9.401332e-6,9.735596e-6,0.000011016092,0.000016677643,0.000025470315,0.000024379648,0.000022587345,0.000021408148,0.000019799389,0.000020926245,0.000020123225,0.000020842197,0.000019624882,0.000020769558,0.00002040385,0.00002108753,0.000020024501,0.000021716422,0.00002141317,0.00002174023,0.000020311438,0.000020925325,0.000020271034,0.000020813257,0.000019857005,0.000021619797,0.000021144237,0.000021608193,0.000020170355,0.000020765478,0.000020168643,0.000020721836,0.000019529294,0.000021355356,0.000020687916,0.000021554704,0.000019922027,0.000020965175,0.000020309715,0.00002125677,0.000020134321,0.000021740356,0.000021194446,0.000021469996,0.000020235148,0.000020893222,0.000020277337,0.00002089105,0.00001985585,0.000021458838,0.000020868869,0.000021487365,0.000019762132,0.000020777838,0.000020114727,0.000021038379,0.000020122401,0.000021684014,0.000021112603,0.000021349228,0.000019965295,0.000020852834,0.00002007475,0.000020778749,0.00001988968,0.000021557662,0.000020788026,0.000021490152,0.00001976907,0.000020956539,0.00002012334,0.000021040907,0.00002012551,0.000021802622,0.000021110529,0.000021422626,0.000020022611,0.000020949707,0.000020142885,0.00002091184,0.000020002057,0.000021661734,0.000020844582,0.00002152925,0.000019777272,0.000020946887,0.000020100613,0.000021038519,0.000020112117,0.000021810254,0.000021124364,0.000021447075,0.000020032428,0.00002095516,0.000020145575,0.000020916268,0.00001999153,0.000021658181,0.000020842992,0.000021528325,0.000019776931,0.000020948786,0.000020100364,0.000021039523,0.000020111733,0.000021810316,0.000021123882,0.000021444928,0.000020033422,0.000020960177,0.000020148285,0.000020917643,0.00001999321,0.00002166006,0.000020840069,0.000021525922,0.000019775196,0.00002095474,0.000020104313,0.000021041067,0.000020114208,0.000021819013,0.000021127527,0.000021444417,0.000020034951,0.000020962616,0.00002015032,0.000020919939,0.000019993819,0.000021661053,0.00002083993,0.0000215266,0.000019776931,0.00002095528,0.000020103584,0.000021040145,0.00002011298,0.000021818014,0.000021128577,0.000021445683,0.000020034282,0.000020963775,0.000020149304,0.000020920417,0.000019993608,0.000021661403,0.000020842157,0.000021528243,0.000019777855,0.000020954461,0.00002010297,0.00002104161,0.000020114208,0.00002181764,0.000021128757,0.00002144908,0.000020035906,0.000020961937,0.000020150092,0.000020919797,0.000019993266,0.000021662416,0.00002084653,0.000021529722,0.000019781062,0.0000209545,0.000020105655,0.000021042993,0.00002011557,0.000021814705,0.000021132786,0.000021449325,0.000020041029,0.000020961357,0.00002015188,0.000020909509,0.000019996432,0.000021660846,0.00002089388,0.000021528573,0.000019828374,0.000020913276,0.00002004011,0.000020922413,0.000020031988,0.000021725225,0.000021112664,0.000021378013,0.000020067688,0.000020916546,0.00002015105,0.000020933809,0.000020161258,0.0000217595,0.000020791316,0.000021359083,0.000019611767,0.000020596062,0.000019804223,0.000020804466,0.000020016807,0.000021519252,0.000020835578,0.000021236892,0.000019923622,0.000020940217,0.000020168181,0.000021111173,0.000020324984,0.000021875538,0.000020944452,0.000021352422,0.000019941263,0.000020428635,0.000019753257,0.000020141964,0.000019959945,0.000021260501,0.00002076528,0.00002095594,0.000020509411,0.000021015177,0.000020652727,0.000021087571,0.000020514242,0.000022133603,0.000021461397,0.000022529754,0.000020812404,0.00002198934,0.000020880376,0.000021954369,0.000020940397,0.000022728334,0.000022075867,0.000022949687,0.000021349146,0.00002295503,0.00002204393,0.00002498817,0.000023828517,0.000026629903,0.000023497587,0.000022134342,0.000017406514,0.000014166849,0.000013321205,0.00001543871,0.000016647435,0.000017368227,0.00001554477,9.999217e-6,0.000013941963],[0.000016047525,0.000014253361,0.000013357398,9.43414e-6,9.8595e-6,0.000013072515,0.00002009421,0.00002678537,0.000023562143,0.000022739912,0.000020898382,0.000020059728,0.000019332207,0.000019862006,0.000019768277,0.000019865434,0.000020053627,0.000020754173,0.000020533678,0.000020783127,0.000020793696,0.000021746886,0.000021164109,0.000020775658,0.000020179474,0.0000203416,0.000020197207,0.00002045942,0.00002059842,0.00002169117,0.000020979855,0.000020661239,0.000019959356,0.000020091202,0.000019787252,0.000019874606,0.000020121537,0.000021136273,0.000020409085,0.000020103853,0.000019653444,0.000019989833,0.000020089441,0.000020566917,0.000020672138,0.000021791875,0.00002088557,0.00002081403,0.000020001618,0.000020254069,0.000019750018,0.000020211117,0.000020191565,0.00002116845,0.000019890096,0.000019622561,0.000019249348,0.000019665667,0.00001963061,0.000020245088,0.000020235282,0.00002123108,0.00002013916,0.000020129444,0.000019549065,0.00001984837,0.000019387484,0.000020017495,0.000019971809,0.000020928179,0.000019684301,0.00001956544,0.00001920611,0.000019584704,0.000019474708,0.000020124435,0.000020159297,0.000021128373,0.000020003354,0.000020049458,0.00001950828,0.000019829962,0.000019415516,0.000020091087,0.000020020856,0.000020974274,0.00001971261,0.000019576002,0.000019189689,0.000019573446,0.000019460895,0.000020111214,0.000020182497,0.000021159629,0.000020043646,0.000020067726,0.00001952542,0.000019844265,0.000019422496,0.000020081128,0.000020019403,0.000020974154,0.00001971558,0.000019575462,0.00001918912,0.00001957016,0.000019458908,0.000020110469,0.000020181264,0.0000211586,0.000020043359,0.000020069487,0.000019527823,0.000019846555,0.000019422941,0.000020081816,0.000020022593,0.000020973155,0.000019714846,0.000019574882,0.000019192286,0.00001957436,0.000019461397,0.000020109643,0.000020183015,0.000021160537,0.000020042251,0.000020068395,0.000019530169,0.000019847199,0.000019423127,0.000020081874,0.000020021085,0.000020971673,0.000019713212,0.000019573481,0.000019189634,0.000019572604,0.000019459187,0.000020108875,0.000020182959,0.000021160577,0.000020041754,0.000020067402,0.00001952894,0.000019846591,0.000019422183,0.000020081166,0.00002002076,0.000020973574,0.000019714564,0.00001957464,0.000019191464,0.00001957326,0.000019459058,0.000020108819,0.000020184018,0.000021160879,0.000020042271,0.000020067611,0.000019528567,0.000019846177,0.000019424164,0.000020081548,0.000020022479,0.000020977173,0.000019721692,0.000019580333,0.00001919941,0.000019577943,0.000019468338,0.000020115609,0.000020188098,0.000021167176,0.000020055233,0.00002007948,0.000019534677,0.000019847199,0.000019431574,0.000020088482,0.000020045061,0.000021018324,0.000019818224,0.000019687886,0.00001930021,0.000019615003,0.000019534154,0.00002014886,0.00002022693,0.000021218088,0.000020122861,0.000020118792,0.00001953045,0.000019760831,0.000019486077,0.000020262994,0.000020123553,0.00002094553,0.000019535812,0.000019176132,0.00001869092,0.000019170007,0.000019252488,0.000020088732,0.000020067055,0.00002117093,0.000020064395,0.000020084153,0.000019689951,0.000020266782,0.00002022992,0.000020963877,0.000020914553,0.000021819471,0.000021108799,0.000020834368,0.00002056878,0.000020097526,0.000020595395,0.000020837824,0.000021214668,0.000021729038,0.000021365378,0.000021395637,0.000021229665,0.000020786241,0.00002075734,0.00002080909,0.000021046706,0.000021530954,0.000020411246,0.000020165546,0.000019624058,0.000020296104,0.00001989852,0.000020776115,0.000020852078,0.000022274162,0.000021147363,0.000021336546,0.000021113228,0.000022685199,0.000023013004,0.000025267529,0.000024225112,0.000026356864,0.000019608962,0.000018219009,0.000013217642,0.000014785933,0.000014351183,0.000018956343,0.0000168975,0.000016847202,0.000010219942,0.000014248565],[0.000014998164,0.000014620658,0.000012309461,8.366137e-6,9.8700175e-6,0.000014829583,0.000025732601,0.000027468419,0.000023480272,0.000022532418,0.000021795679,0.00001943163,0.000019666699,0.000019436096,0.000020030117,0.00001903088,0.000020269468,0.000020351186,0.000021414538,0.00002010088,0.000021123356,0.000021430556,0.000021733204,0.000020314053,0.00002043604,0.000020128618,0.000020572761,0.000019831363,0.000020886886,0.000021206433,0.000021480766,0.000020260171,0.00002032508,0.000020064606,0.000020368409,0.000019629691,0.00002088342,0.000021168953,0.00002141846,0.000020026546,0.000020105079,0.00002014571,0.000020877069,0.00002016074,0.000021154887,0.00002131135,0.00002159466,0.000020511014,0.000020377889,0.000020078274,0.000020346102,0.00001973458,0.000020840347,0.000020885453,0.000020730435,0.000019507273,0.000019735784,0.00001993554,0.000020555543,0.000019815028,0.000020641053,0.000020766964,0.000020869425,0.000019859164,0.000019955243,0.000019850966,0.000020077621,0.000019463178,0.000020546117,0.000020628555,0.000020550173,0.00001938336,0.000019650839,0.000019823232,0.000020355516,0.000019644169,0.000020455342,0.000020608284,0.000020691072,0.000019680114,0.000019859448,0.000019745856,0.000020062196,0.000019438488,0.000020544725,0.000020618192,0.000020570742,0.000019358165,0.000019623272,0.0000197745,0.000020311962,0.000019613039,0.00002045224,0.000020615047,0.00002070331,0.000019694045,0.000019876274,0.000019757856,0.000020068721,0.000019437395,0.000020545254,0.000020623953,0.000020572761,0.000019359808,0.00001961912,0.000019774103,0.000020312058,0.000019614386,0.000020451891,0.00002061605,0.000020703073,0.000019696863,0.0000198776,0.000019759249,0.000020068454,0.000019437413,0.000020548234,0.000020626176,0.000020569898,0.000019358406,0.000019620373,0.000019776366,0.000020311769,0.000019613994,0.000020451656,0.000020617188,0.000020704178,0.000019696374,0.000019878416,0.000019758929,0.000020066118,0.000019436524,0.000020547901,0.00002062419,0.000020569565,0.000019355597,0.000019619605,0.000019773706,0.000020311883,0.00001961143,0.000020450661,0.00002061479,0.000020703763,0.000019692656,0.0000198754,0.000019757497,0.000020067955,0.000019435023,0.000020546275,0.000020623698,0.000020572174,0.000019357278,0.000019620727,0.000019773499,0.000020310781,0.00001961158,0.000020451773,0.000020614574,0.000020701671,0.00001969318,0.000019878471,0.000019757403,0.000020067362,0.000019435041,0.00002054594,0.000020625192,0.000020576214,0.00001936448,0.000019624564,0.000019781119,0.000020316089,0.000019620467,0.000020454328,0.000020620413,0.000020711406,0.000019704434,0.000019877942,0.000019754312,0.000020062158,0.00001943556,0.000020531055,0.000020638887,0.000020613059,0.000019483494,0.000019672063,0.000019901803,0.00002038236,0.000019762358,0.000020495334,0.000020736603,0.000020747564,0.000019749716,0.000019711331,0.000019601333,0.000019945122,0.000019503497,0.000020584419,0.000020563308,0.00002026512,0.000018987335,0.000019251129,0.000019439804,0.000020329055,0.000019552215,0.000020724525,0.000020705402,0.000020931473,0.000019710391,0.00002020817,0.00002020607,0.000020834326,0.000020268135,0.000021127365,0.000021513837,0.00002125531,0.000020635995,0.000020080897,0.000020687974,0.000020519898,0.000020866102,0.000020941636,0.000021486483,0.000021066044,0.000021097467,0.000020561602,0.000020714586,0.000020427,0.000020450856,0.000021047008,0.000020837726,0.000020526317,0.000019221337,0.000019955378,0.000019550462,0.00002009816,0.000019563162,0.00002084665,0.000021290387,0.00002130629,0.000020941676,0.00002158834,0.000022548391,0.000023492208,0.000024761413,0.000027081438,0.000025230736,0.000020958238,0.000016822925,0.000014189888,0.000013900316,0.00001548668,0.000016763015,0.000016838432,0.000015923373,0.00001021432,0.000014135349],[0.000014494767,0.000011796383,0.000012302889,8.976114e-6,0.000012472389,0.000019317684,0.00003153215,0.000023814044,0.00002238293,0.0000211345,0.000020442863,0.000018956198,0.00001913419,0.000018897628,0.000018946295,0.000018561906,0.000019091065,0.000019758514,0.000019619718,0.000019420959,0.000020153011,0.000020694486,0.000020245783,0.000019235695,0.000019313024,0.000019180907,0.000019238796,0.000018890636,0.000019768711,0.00002033838,0.000019664581,0.0000188267,0.000019030898,0.000018955781,0.00001906134,0.000018686214,0.000019902543,0.000020540867,0.00001980681,0.000018825336,0.000019082947,0.000019070994,0.000019229146,0.000018843855,0.000019785892,0.00002025343,0.000019604997,0.000018809329,0.000018880477,0.0000187857,0.000018755038,0.000018303734,0.000019326106,0.000019908637,0.0000191844,0.000018347424,0.00001875722,0.000018970033,0.000019288103,0.0000187407,0.000019470435,0.000019778818,0.000019149287,0.000018388835,0.000018663277,0.000018597839,0.000018648812,0.00001812292,0.000019123465,0.000019633699,0.000019034183,0.000018172157,0.000018676701,0.000018840872,0.000019187108,0.000018542534,0.00001926937,0.000019563648,0.000018986486,0.00001823328,0.000018548422,0.000018519595,0.000018626435,0.000018152776,0.000019118523,0.00001965708,0.000019022114,0.000018159564,0.000018640205,0.000018812127,0.000019151934,0.0000185188,0.000019257133,0.000019571151,0.000018996465,0.000018244482,0.000018568688,0.000018535831,0.000018648065,0.000018159286,0.00001912992,0.000019666755,0.000019028139,0.000018161296,0.000018641771,0.00001881202,0.00001915431,0.000018519859,0.000019258143,0.000019572493,0.000018998004,0.000018247005,0.000018569768,0.00001853647,0.000018646626,0.000018159755,0.00001912828,0.00001966638,0.00001902489,0.000018160395,0.000018641735,0.000018816685,0.000019155186,0.00001852136,0.000019258327,0.00001957449,0.000018999255,0.000018249057,0.000018568599,0.000018538149,0.000018646786,0.000018160083,0.000019127821,0.000019666568,0.000019023766,0.000018159997,0.000018642073,0.000018817564,0.000019156465,0.000018522085,0.00001925739,0.00001957421,0.000018999508,0.000018248815,0.000018568227,0.000018538785,0.000018648527,0.000018160325,0.000019127221,0.000019666193,0.0000190258,0.000018159859,0.000018640792,0.000018815608,0.000019154528,0.0000185197,0.000019257537,0.000019573146,0.000018998438,0.000018247927,0.000018569997,0.000018538183,0.000018648527,0.000018160083,0.000019130395,0.000019668107,0.00001903157,0.000018168623,0.000018650091,0.000018821962,0.000019165785,0.00001852871,0.000019268744,0.000019576413,0.000019007064,0.000018250901,0.000018569466,0.00001852719,0.00001864113,0.00001815958,0.000019146986,0.00001970233,0.000019118157,0.000018317405,0.0000187895,0.000018949475,0.00001931949,0.00001865792,0.000019438377,0.000019676061,0.000019105892,0.000018260043,0.000018463816,0.000018331526,0.00001855387,0.000018193487,0.00001911001,0.000019639918,0.000018839344,0.000017918466,0.000018332663,0.00001864803,0.00001918546,0.00001870763,0.000019477438,0.000019974226,0.000019304498,0.00001871375,0.000019034345,0.000019337518,0.00001935045,0.000019268009,0.000020225232,0.000021006303,0.000020224885,0.000019538327,0.000019861985,0.00001972423,0.00002021877,0.000019647336,0.000020834188,0.000020745565,0.000020603155,0.000019809908,0.000020056877,0.000019553538,0.000020017476,0.000019263525,0.000020211157,0.000020007763,0.000019216572,0.000018307837,0.00001867394,0.000018796578,0.000018831406,0.000019180174,0.000019978666,0.000021296175,0.00002000118,0.000020174779,0.000020016292,0.00002116849,0.000021360205,0.000023795747,0.00002514978,0.000026878946,0.000020178511,0.000018273351,0.000013964024,0.000014882428,0.000014725241,0.000017367463,0.000014984653,0.000015995043,0.000010380218,0.000014912547],[0.000014478824,0.000011890466,9.923296e-6,9.1568e-6,0.000014167739,0.000024456049,0.000030279474,0.000023933617,0.00002062643,0.000020403693,0.000019897912,0.000019208383,0.000019479668,0.000019316874,0.00002000742,0.000019051382,0.000019848561,0.000019483457,0.00001992328,0.0000193722,0.000020476245,0.000020599697,0.000020628615,0.000019507552,0.00001957294,0.000019388963,0.000019560233,0.000019170062,0.000019978608,0.0000202359,0.00002016697,0.000019127221,0.000019410238,0.000019267127,0.000019631958,0.000019237108,0.000020406807,0.000020545373,0.000020568817,0.00001950532,0.000019778308,0.00001956374,0.000019554322,0.000019299676,0.000020072357,0.000020325255,0.000020098007,0.000019225352,0.000019643307,0.000019469935,0.000019465739,0.000019107494,0.000020083808,0.00002040776,0.000020389767,0.000019521472,0.00001981057,0.000019708794,0.000019826653,0.000019640553,0.000020174626,0.00002008174,0.000019888996,0.000019095727,0.000019647203,0.000019355064,0.000019413275,0.00001904951,0.000020001924,0.000020208516,0.000020232717,0.00001940798,0.000019657118,0.000019733,0.000019757497,0.000019613693,0.000020002859,0.000019988918,0.000019768975,0.000019006684,0.00001953654,0.000019273815,0.000019437117,0.000019054778,0.000020020836,0.000020186866,0.000020230209,0.00001933881,0.000019621008,0.000019677957,0.00001972931,0.000019562975,0.000019980935,0.000019975047,0.000019761812,0.000018991139,0.000019535328,0.0000192749,0.00001945082,0.000019058341,0.000020023528,0.000020185902,0.000020223977,0.000019336043,0.000019619474,0.000019677636,0.000019728011,0.000019565625,0.000019979923,0.000019974912,0.00001976298,0.000018992298,0.00001953596,0.000019272858,0.000019446888,0.000019054598,0.000020022688,0.000020183632,0.000020225156,0.000019333516,0.000019621233,0.000019678857,0.000019733563,0.000019566949,0.000019981906,0.00001997598,0.000019766505,0.000018992188,0.000019536745,0.000019273044,0.000019448742,0.00001905385,0.000020021369,0.000020183246,0.000020226369,0.000019331139,0.000019623927,0.000019678275,0.000019735106,0.000019565532,0.000019983583,0.000019975445,0.000019766467,0.000018992027,0.000019536781,0.000019272327,0.0000194503,0.000019053961,0.000020021256,0.00002018109,0.000020223053,0.000019330142,0.000019619773,0.00001967456,0.000019732848,0.000019562583,0.000019980818,0.000019973828,0.000019764488,0.000018990124,0.000019536074,0.000019273466,0.000019450597,0.000019056086,0.000020022631,0.000020186117,0.00002022525,0.000019338366,0.000019620784,0.000019682555,0.000019733317,0.00001957253,0.000019980935,0.000019981351,0.000019760171,0.00001899065,0.00001952799,0.000019270085,0.00001943897,0.000019056068,0.000020039288,0.00002022936,0.000020262858,0.000019444124,0.000019667375,0.000019802372,0.000019758081,0.000019692805,0.000019992063,0.00002014131,0.000019780082,0.000019042789,0.000019401688,0.000019220091,0.00001942209,0.00001909396,0.00002009057,0.000020253934,0.000020254436,0.000019266907,0.000019535682,0.00001958519,0.000019977522,0.00001976215,0.000020357107,0.00002001673,0.000020164278,0.000019264886,0.00002015532,0.000019605875,0.000020065469,0.000019664149,0.000020951884,0.000020996167,0.000020867556,0.000020062522,0.000020281805,0.000020292136,0.000019773726,0.000020242831,0.000020517196,0.000021084214,0.000020360641,0.000019856703,0.000019641115,0.000019830757,0.000019696092,0.000019774858,0.000020435591,0.00002048107,0.000020186404,0.000018960773,0.000019229275,0.00001930448,0.000019633586,0.000019486468,0.00002044179,0.00002100588,0.000020767122,0.000019950165,0.000019994639,0.00002057808,0.000021453498,0.000023079576,0.000026163732,0.00002578153,0.000024189121,0.000018923758,0.000014590474,0.000014277073,0.000014913713,0.000014384631,0.00001451362,0.000015019462,0.000010514741,0.000014243374],[0.000016083774,0.000011480465,0.000010069398,0.000011416442,0.000019099316,0.000030194726,0.000029883682,0.00002410822,0.000020708976,0.000020092524,0.000019325294,0.000019094106,0.00001902912,0.000019265122,0.000019742994,0.00001953913,0.000019330068,0.000019508725,0.000019079944,0.00001941522,0.00001978195,0.00002061711,0.000020104791,0.000019655656,0.000019199022,0.000019335821,0.00001923575,0.000019299841,0.000019780911,0.00002054451,0.000020063899,0.00001956238,0.000019326253,0.000019192341,0.000019352516,0.000019117118,0.000019948471,0.000020486345,0.000020519585,0.000020107685,0.000020093867,0.000019838892,0.000019845553,0.00001952326,0.000020305397,0.000020531485,0.000020670008,0.00001996501,0.000019837225,0.000019510306,0.000019742844,0.000019382844,0.000019988824,0.000020485073,0.000020794649,0.00002040066,0.000020223399,0.000019866515,0.000020132054,0.000019797802,0.000020561934,0.000020366466,0.000020567819,0.000019807132,0.000019870777,0.000019323857,0.000019691415,0.000019288986,0.00002002435,0.000020337196,0.00002081145,0.000020355612,0.00002037651,0.000019952733,0.000020411655,0.00001995374,0.000020669535,0.000020324478,0.000020536127,0.000019690438,0.000019728503,0.000019191115,0.00001963147,0.00001926055,0.000019987412,0.00002030195,0.000020709096,0.000020249048,0.000020248159,0.000019894782,0.000020345657,0.000019914161,0.00002061646,0.000020310586,0.000020497893,0.000019665837,0.000019712385,0.00001918872,0.00001963411,0.000019258732,0.000019989053,0.000020302472,0.000020709154,0.000020243739,0.000020251538,0.000019895711,0.000020353185,0.000019917923,0.000020620002,0.000020310665,0.000020500494,0.00001966698,0.000019712628,0.0000191859,0.000019631547,0.000019255553,0.000019984343,0.000020297884,0.000020700505,0.000020242484,0.000020246054,0.000019895522,0.000020351768,0.000019920963,0.000020617621,0.00002031171,0.000020499849,0.000019668933,0.000019709996,0.00001918612,0.000019630497,0.00001925616,0.000019980876,0.000020295523,0.000020694662,0.000020238003,0.0000202392,0.000019893245,0.000020348334,0.000019918341,0.00002061603,0.000020312,0.000020494726,0.000019665049,0.000019708568,0.000019185754,0.000019629917,0.000019254912,0.000019980915,0.00002029407,0.000020693893,0.000020234704,0.000020238198,0.000019891044,0.00002034717,0.000019916994,0.000020617405,0.000020311149,0.000020497602,0.000019665405,0.000019710506,0.000019188352,0.000019633662,0.000019258126,0.000019986479,0.000020300344,0.000020704534,0.000020243988,0.000020251558,0.000019902924,0.000020364194,0.000019931396,0.0000206356,0.000020323452,0.0000205134,0.00001966912,0.0000197112,0.000019182991,0.000019631172,0.000019258712,0.000020009822,0.000020344842,0.000020790601,0.00002036897,0.000020414886,0.000020086585,0.000020602783,0.000020168394,0.000020927959,0.000020585283,0.000020784219,0.000019828374,0.000019720468,0.000019166004,0.00001965455,0.000019332023,0.000020059077,0.000020447795,0.000020728143,0.000020257892,0.00002007142,0.000019779327,0.00002006985,0.00001962026,0.00002023131,0.000019787005,0.00001974806,0.000019184054,0.000019411313,0.000019057086,0.000019214776,0.000019227478,0.000020052805,0.00002060972,0.00002088874,0.000020764644,0.000020897505,0.00002074788,0.000021177697,0.000020873467,0.000021553613,0.000021492304,0.000021797965,0.00002093305,0.000020378044,0.00001992841,0.000020454505,0.000020415606,0.000020980295,0.000021100506,0.000020495374,0.000019562995,0.000019289906,0.00001930426,0.000019215326,0.000019662499,0.000020131805,0.000021399941,0.000020339274,0.00002030582,0.000019757685,0.000020250282,0.000020342319,0.000021670867,0.000023558572,0.000026135851,0.000025293204,0.000022858147,0.00001560972,0.0000146311195,0.000014286853,0.000014608729,0.000014780083,0.000015684687,0.000011061126,0.000014128328],[0.000017022086,0.0000104940345,9.111973e-6,0.000012521658,0.000023434635,0.00003393648,0.000031092513,0.000024444438,0.000021641086,0.000020413387,0.000020368467,0.000019150364,0.000019421941,0.000019814708,0.00002061422,0.000019759493,0.000020718675,0.00002020422,0.000020599266,0.000019594512,0.000020577432,0.000020968015,0.00002143777,0.000019981848,0.0000202058,0.000020048636,0.000020299374,0.000019626043,0.000020503036,0.000021223754,0.000021477696,0.000020097008,0.000020074367,0.000019993551,0.000020226735,0.000019493475,0.00002033522,0.000021238677,0.000021910173,0.000020651034,0.000020736565,0.000020763635,0.00002088898,0.00002019584,0.00002068111,0.000021574631,0.000022137741,0.000021104632,0.000020571879,0.000020454992,0.00002080145,0.000020228317,0.000020568938,0.000021365724,0.000021960463,0.000021040967,0.000020756925,0.000020748334,0.000020937423,0.000020353671,0.000020762585,0.00002162514,0.000021919537,0.000020964755,0.00002038413,0.00002035695,0.000020621417,0.000020114476,0.000020456066,0.000021447097,0.00002188929,0.000021179736,0.000020699183,0.0000210055,0.000021113005,0.000020614376,0.00002083542,0.000021694585,0.000021851225,0.000020888321,0.000020243739,0.000020208767,0.000020518939,0.00002002477,0.000020422889,0.000021386171,0.000021849477,0.000021053791,0.000020604866,0.000020920137,0.000021070104,0.000020549036,0.000020807225,0.000021654918,0.000021812542,0.000020835718,0.000020220565,0.000020185595,0.000020503056,0.00002001154,0.000020412763,0.000021383092,0.000021838663,0.00002104512,0.00002059948,0.000020923528,0.000021070566,0.000020555583,0.000020806867,0.000021652893,0.000021813166,0.00002083683,0.000020220834,0.000020181324,0.000020499907,0.000020009173,0.0000204093,0.000021375447,0.000021834334,0.000021038337,0.000020596694,0.000020917743,0.000021071732,0.000020555995,0.00002080913,0.000021652915,0.000021816682,0.000020837704,0.000020219119,0.000020177838,0.000020500182,0.000020006788,0.000020409065,0.000021367254,0.000021829772,0.000021030375,0.000020594905,0.000020909327,0.00002106992,0.000020549467,0.000020808813,0.0000216505,0.000021813541,0.00002082942,0.000020216747,0.000020174395,0.00002049762,0.000020004098,0.000020406807,0.000021367803,0.000021828399,0.00002102877,0.000020591742,0.000020907633,0.000021066286,0.000020547664,0.000020808455,0.000021649756,0.00002181196,0.000020831505,0.000020217614,0.000020178742,0.000020499594,0.000020007552,0.000020410369,0.00002137614,0.000021834125,0.000021039703,0.00002059675,0.000020920856,0.000021074946,0.000020563562,0.000020816413,0.000021663243,0.000021818823,0.000020841322,0.000020214375,0.000020169471,0.000020484546,0.000020003527,0.000020416288,0.000021410679,0.000021897014,0.000021164633,0.00002067878,0.000021081598,0.000021203825,0.000020815422,0.000020931513,0.000021885262,0.000021973325,0.00002100394,0.00002023453,0.000020086163,0.000020431617,0.000020002286,0.000020564466,0.000021482017,0.000021930744,0.00002093846,0.000020631802,0.000020640264,0.0000206934,0.00001992427,0.000020490603,0.00002077853,0.00002101159,0.000019634785,0.00001985051,0.00001985019,0.000020233218,0.000019462603,0.00002024418,0.000021270662,0.000022039096,0.000021185351,0.000020921316,0.000021742304,0.000021787677,0.000021521593,0.00002115525,0.000022208325,0.000022421662,0.000021428817,0.00002046988,0.000019901918,0.000020182822,0.000020273934,0.00002080409,0.000021240357,0.000020875417,0.000019494199,0.0000194787,0.000019227442,0.000019456942,0.0000190348,0.000020337548,0.000021047608,0.000021367825,0.000019734636,0.000019701483,0.000019862156,0.000019780215,0.000020695848,0.000023151088,0.000025548721,0.000026000165,0.000024518471,0.000018341581,0.000015482441,0.000015584345,0.000014390365,0.000015868149,0.000015208074,0.0000109956245,0.00001411894],[0.000018561923,0.000011577394,0.000011867481,0.000017646089,0.000030518902,0.000029659419,0.000026225232,0.000023097851,0.000020746495,0.000020893958,0.000019558704,0.00001990613,0.00001908109,0.00001977218,0.000019114237,0.000019652676,0.000019660605,0.000020473357,0.000019482937,0.000020200308,0.000020190215,0.000021403412,0.000020017953,0.000019832629,0.000019348143,0.00001975906,0.000019141637,0.00001940474,0.000019927309,0.000021105277,0.00002005246,0.000019710486,0.000019520206,0.000019652058,0.000019318864,0.000019216388,0.000020106998,0.000021001233,0.000020429608,0.000020089192,0.000020232312,0.00002015726,0.000020022688,0.000019635141,0.000020683536,0.000021129825,0.000021237056,0.000020366893,0.000020463362,0.000019920335,0.00002001803,0.000019623796,0.000020685331,0.000021043294,0.000021059697,0.00002026228,0.000020658816,0.000020128176,0.000020171587,0.000019593223,0.000020857686,0.000021226628,0.00002136607,0.000020260733,0.000020436548,0.000019869962,0.000019935502,0.000019444422,0.000020713282,0.000021083248,0.00002134139,0.000020324733,0.000020843589,0.000020256193,0.000020413134,0.00001969673,0.000021008826,0.000021265367,0.000021446605,0.000020191526,0.000020344687,0.000019775009,0.000019844114,0.000019372883,0.00002062364,0.000021074444,0.000021289006,0.000020269488,0.000020732985,0.000020203603,0.000020340727,0.000019665855,0.000020959176,0.000021243659,0.000021402555,0.00002017099,0.00002031262,0.0000197745,0.000019830966,0.000019367784,0.00002061536,0.000021073338,0.000021288337,0.000020265215,0.00002073342,0.000020207108,0.000020347927,0.000019671803,0.000020964955,0.00002124297,0.00002140323,0.000020171625,0.000020312078,0.000019773424,0.000019834048,0.00001936858,0.000020614083,0.000021066186,0.000021280826,0.000020261063,0.000020727213,0.000020204643,0.000020348625,0.000019676174,0.000020965455,0.00002124692,0.000021406351,0.0000201773,0.000020308824,0.000019775933,0.000019831647,0.00001937137,0.000020608657,0.00002106759,0.00002126841,0.000020260095,0.000020719386,0.000020203506,0.000020337393,0.000019673134,0.000020958018,0.000021246495,0.000021398759,0.000020172087,0.00002030468,0.000019776271,0.000019829205,0.000019368303,0.000020606318,0.000021066406,0.000021270724,0.00002025886,0.000020717946,0.000020200017,0.000020334715,0.00001966805,0.00002095618,0.000021243639,0.000021398188,0.000020170817,0.000020307603,0.000019775272,0.000019829244,0.000019367822,0.000020610583,0.00002107153,0.000021284011,0.00002026713,0.000020730651,0.000020209016,0.00002035136,0.000019681222,0.000020971274,0.000021253407,0.000021412108,0.00002017986,0.000020307722,0.000019768238,0.000019818146,0.000019368708,0.00002062767,0.000021102498,0.00002138346,0.00002037892,0.00002085876,0.000020353204,0.000020542218,0.000019899337,0.000021150128,0.000021398493,0.000021520545,0.000020247657,0.000020267438,0.000019705898,0.000019754898,0.000019372717,0.00002061593,0.000021148171,0.000021152626,0.000020122745,0.000020563857,0.00002005659,0.000019984174,0.000019115314,0.000020382244,0.000020641544,0.00002017859,0.000019178877,0.000019677223,0.000019574865,0.00001942322,0.000018967157,0.000020218211,0.00002095436,0.000021367863,0.00002049119,0.000021220414,0.000020723635,0.000021574404,0.000020597006,0.000021514063,0.000021113992,0.000021369555,0.000020370371,0.00002022826,0.000019444587,0.000019512985,0.000019677374,0.000020428051,0.00002077974,0.000019842826,0.000018924444,0.000018903538,0.000018850864,0.000018431727,0.000018876768,0.000019623909,0.00002114353,0.000019845495,0.00001966957,0.00001955544,0.000020056037,0.000020081012,0.000021181311,0.000023099481,0.000025182228,0.000024932588,0.00002556856,0.000023925724,0.000020393578,0.000017847146,0.000017929868,0.00001768713,0.000016480642,0.000011310824,0.000014195262],[0.000018375775,0.000012244974,0.0000111195295,0.000019072486,0.000028253713,0.00002624412,0.000024276453,0.00002200413,0.00002112922,0.00002070797,0.000021021491,0.000019881089,0.000020631252,0.000019405594,0.000020047088,0.000019231826,0.000020599206,0.000020103373,0.000020499008,0.000020081663,0.00002156416,0.000020991904,0.000021185371,0.000019824556,0.000020453295,0.000020024712,0.00002027637,0.000019589037,0.000020887066,0.000021036474,0.000021183088,0.000019813253,0.000020301542,0.00001995711,0.000020114727,0.000019539148,0.000020750787,0.000020966254,0.000021079068,0.000020024712,0.000020296879,0.000020306617,0.000020107764,0.000019976398,0.00002059027,0.000021173739,0.00002090514,0.000020374742,0.000020358173,0.000020255922,0.000019877203,0.000019852878,0.000020557896,0.000020960599,0.000020764011,0.000020107438,0.00002009607,0.000020063477,0.000019783742,0.000019657737,0.00002035571,0.00002088169,0.000020792584,0.000020226891,0.000020270261,0.000020129157,0.00001966638,0.000019546174,0.000020242154,0.00002081163,0.0000207335,0.000020164702,0.000020008734,0.000020079462,0.000019703475,0.00001965605,0.000020277452,0.000020856214,0.000020770667,0.00002020497,0.000020226871,0.000020057068,0.000019626099,0.000019446017,0.000020211657,0.00002076898,0.000020763931,0.00002013361,0.00001999075,0.000020042404,0.000019688036,0.000019633513,0.000020276004,0.000020847147,0.000020778987,0.00002018856,0.000020228434,0.000020052843,0.00001962636,0.000019436226,0.000020207899,0.00002076421,0.000020762864,0.000020126814,0.000019983925,0.000020039957,0.000019688056,0.000019633007,0.000020275675,0.000020846788,0.000020771004,0.000020184401,0.000020224672,0.000020052688,0.000019626174,0.000019439043,0.000020210655,0.000020763675,0.000020757992,0.000020121362,0.000019980343,0.000020037758,0.000019689895,0.00001963617,0.000020280606,0.000020849791,0.000020776906,0.000020190313,0.000020228066,0.00002005135,0.00001962825,0.000019438006,0.000020212448,0.000020756786,0.000020755715,0.000020116146,0.000019980971,0.000020033518,0.000019686777,0.000019628831,0.000020276835,0.000020843589,0.0000207777,0.000020185711,0.000020226773,0.000020050777,0.000019627185,0.000019433093,0.000020209076,0.000020756965,0.000020756608,0.000020117795,0.000019981657,0.000020032945,0.00001968383,0.00001962595,0.000020274167,0.000020844702,0.000020775957,0.000020185267,0.000020226735,0.000020051064,0.000019626325,0.000019433706,0.000020209576,0.000020763655,0.00002076413,0.000020125184,0.000019985679,0.000020038638,0.000019687735,0.000019630985,0.000020276757,0.000020846688,0.000020772091,0.000020185442,0.000020224132,0.000020043703,0.000019608382,0.000019423424,0.000020200385,0.000020775005,0.000020785526,0.000020204778,0.000020031168,0.000020108244,0.000019738533,0.000019700545,0.000020276506,0.000020822607,0.000020606181,0.000020092852,0.000020085743,0.000019925903,0.000019491263,0.00001927038,0.000020182111,0.000020615224,0.00002060345,0.000019770125,0.000019858406,0.000019797066,0.000019530002,0.000019185645,0.000020257527,0.00002044142,0.000020409358,0.000019530988,0.000020064435,0.00002002118,0.000019795576,0.000019419478,0.000020225038,0.000020973974,0.000020943253,0.000020735793,0.00002024223,0.000020809783,0.000020313124,0.000020723084,0.000020580199,0.00002084476,0.000020126527,0.000020111638,0.00001999603,0.000019845344,0.000019384932,0.00001937813,0.000020503036,0.000020266163,0.000019986746,0.000018813133,0.000019254012,0.0000190806,0.000019304849,0.000018959543,0.000020384985,0.000020692887,0.000020427953,0.000019572231,0.000019626717,0.00002046098,0.000020753321,0.000021937687,0.000022951373,0.000024067054,0.000023467332,0.000024073253,0.000023241051,0.000023377963,0.000020393132,0.000018810782,0.000018241819,0.000016438527,0.000010912575,0.000013560345],[0.00001745114,0.000011778364,0.000011590728,0.000017999237,0.00002710614,0.000025283005,0.00002130879,0.000020909447,0.000018479475,0.000020335472,0.000019241585,0.00002041109,0.00001887812,0.000019545969,0.000018277691,0.000019109299,0.000018554474,0.000019733847,0.00001891932,0.00002020472,0.000019872483,0.000021204332,0.000019662424,0.00002016124,0.00001924876,0.000020121037,0.000019230523,0.000020022344,0.000019940691,0.000021220838,0.000019682853,0.00001990613,0.000018974195,0.00001982463,0.000019166771,0.000019947767,0.00001999254,0.000020941796,0.000019671033,0.000020047833,0.00001918149,0.000019936222,0.000019263709,0.000019985564,0.00001995867,0.00002106484,0.00002017532,0.000020618998,0.000019681916,0.000020328318,0.000019691133,0.000020296027,0.000020272697,0.000020926063,0.00002003264,0.000020037493,0.000019359475,0.00001959412,0.000019214465,0.000019664074,0.00001982136,0.000020713598,0.000020065812,0.000020467674,0.000019715617,0.000020209576,0.000019556615,0.000019988212,0.00002005288,0.000020728714,0.000020030307,0.000020019557,0.000019447165,0.00001959139,0.000019200763,0.000019577066,0.000019778554,0.000020678997,0.000020063077,0.000020423377,0.000019690984,0.00002014475,0.00001947638,0.000019900246,0.000019974093,0.00002069119,0.000019973064,0.000019992522,0.000019415182,0.000019581417,0.000019169916,0.000019568648,0.000019758176,0.000020681386,0.000020051504,0.000020425674,0.0000196694,0.000020141197,0.000019458112,0.000019888597,0.000019959927,0.00002068458,0.000019962457,0.000019988574,0.00001940539,0.000019578729,0.000019166187,0.000019567622,0.00001975192,0.000020679945,0.000020047297,0.000020421741,0.000019665593,0.000020140656,0.00001945798,0.00001988964,0.00001995947,0.000020685942,0.000019962363,0.000019984687,0.000019399524,0.000019576953,0.000019163444,0.000019566874,0.000019750678,0.000020682253,0.000020044889,0.000020425772,0.000019664712,0.00002013747,0.000019452787,0.000019885658,0.00001995066,0.000020680676,0.000019950583,0.000019979449,0.000019393643,0.000019574509,0.000019156703,0.000019562882,0.000019744952,0.000020680538,0.000020043532,0.000020425246,0.000019663192,0.000020137566,0.000019450894,0.000019885752,0.000019950032,0.00002068247,0.000019955018,0.000019983505,0.000019397361,0.000019575704,0.00001915884,0.00001956307,0.00001974791,0.000020681762,0.000020045672,0.000020423882,0.000019665444,0.000020139449,0.00001945327,0.000019886153,0.000019954121,0.000020685487,0.000019960478,0.000019989795,0.00001940167,0.000019580371,0.000019159479,0.000019563311,0.000019742542,0.000020682686,0.000020043972,0.000020425752,0.000019660905,0.000020137239,0.000019437506,0.000019868748,0.000019927462,0.000020669062,0.00001997236,0.000020032889,0.000019425128,0.000019652658,0.000019126162,0.000019589448,0.000019661973,0.00002065592,0.000019869507,0.000020224152,0.000019427183,0.000019933732,0.000019181472,0.000019595147,0.000019728388,0.000020426356,0.00001955626,0.000019462806,0.000019056559,0.000019202229,0.000018832554,0.0000191316,0.000019538571,0.000020179667,0.00001958917,0.000019881998,0.000019512334,0.000020054564,0.000019458574,0.000019854828,0.000020005471,0.000020518213,0.000020211368,0.00002036732,0.000020034702,0.000020265139,0.000020360058,0.000020643552,0.000020635562,0.000020879657,0.00002011438,0.000020411888,0.000019546287,0.000020112002,0.000019255553,0.000019863028,0.000019781157,0.000020316826,0.000018968676,0.000018890312,0.000018389746,0.000018995921,0.000018323644,0.000019266245,0.000019702498,0.00002114448,0.000019385468,0.00001962361,0.000019169896,0.000020354913,0.00002057849,0.000022076225,0.000022534115,0.000023844905,0.000023066526,0.00002284396,0.000023009296,0.000024015104,0.000025298175,0.00002150034,0.000019117373,0.00001598164,0.000011275489,0.0000130161],[0.000017459364,0.000011155281,0.000010782808,0.000015623586,0.000028392571,0.000026928825,0.000024560946,0.000020648868,0.000019958785,0.000020048425,0.00002059133,0.000019497471,0.00001981004,0.000018845958,0.000018794339,0.000018072733,0.000019286797,0.000019232228,0.000019910554,0.000019452991,0.000020607851,0.00002034587,0.00002059618,0.000019571093,0.000020473473,0.00001987197,0.000020387064,0.000019595484,0.000020859816,0.000020551035,0.000020778176,0.0000193623,0.000019956748,0.000019378593,0.000020120673,0.000019656894,0.000020692434,0.000020363223,0.000020690222,0.000019746401,0.000020307856,0.000019835505,0.000020431597,0.000019862082,0.000020792742,0.00002086618,0.000021290833,0.000020430001,0.000020717313,0.00002016174,0.000020786954,0.000020284957,0.000020919797,0.000020414223,0.000020736725,0.000019701258,0.000020181438,0.000019489979,0.000020283333,0.000019691812,0.000020644615,0.000020508864,0.00002115525,0.000020329055,0.000020816493,0.000020156433,0.000020749978,0.00002007498,0.000020738245,0.000020250225,0.000020628164,0.000019695828,0.000020205318,0.000019538178,0.00002022855,0.000019603242,0.000020582123,0.000020438749,0.000021058111,0.000020239915,0.000020759695,0.000020071133,0.000020644497,0.00001993227,0.000020646703,0.000020166239,0.000020563837,0.000019639523,0.000020180705,0.000019521696,0.000020209787,0.000019577086,0.000020569092,0.00002042511,0.000021057689,0.0000202299,0.000020747564,0.000020053665,0.000020627374,0.000019913497,0.000020631293,0.000020152973,0.000020556916,0.000019629357,0.000020169604,0.000019514717,0.000020203544,0.000019565103,0.000020561856,0.000020423746,0.000021054577,0.000020223804,0.000020740184,0.000020048425,0.000020621888,0.00001990877,0.00002062899,0.0000201484,0.000020555955,0.000019623685,0.000020163105,0.000019506846,0.00002020025,0.000019558554,0.000020559799,0.000020420688,0.000021051103,0.000020219022,0.000020739768,0.000020039977,0.000020609798,0.000019896243,0.00002061947,0.000020137968,0.000020547861,0.000019614778,0.00002016124,0.000019501394,0.000020196629,0.000019555757,0.000020557523,0.00002041621,0.000021054897,0.000020220159,0.000020740184,0.000020042422,0.000020612115,0.000019900815,0.000020621417,0.000020143367,0.000020552407,0.000019622355,0.000020165471,0.000019508761,0.000020201116,0.000019561858,0.000020559248,0.000020420708,0.000021055579,0.000020222607,0.000020742675,0.00002004703,0.000020618132,0.000019904575,0.000020623069,0.000020145575,0.000020554582,0.000019623349,0.00002016499,0.000019506808,0.000020199555,0.000019555124,0.00002055519,0.000020417145,0.00002105285,0.000020220372,0.000020740245,0.000020037034,0.000020590192,0.000019870682,0.000020583202,0.000020104428,0.000020524458,0.000019611076,0.000020183556,0.000019513245,0.000020162663,0.000019424218,0.000020471347,0.000020312174,0.000020835558,0.000019930216,0.000020434481,0.000019696054,0.000020157162,0.00001936134,0.000020245765,0.000019718364,0.00002008536,0.000019012958,0.00001974145,0.00001903313,0.000019852689,0.00001919375,0.00002036897,0.000020065105,0.00002071026,0.000020001848,0.000020665533,0.00002008879,0.000020658756,0.000020056495,0.000020559699,0.000020282461,0.000020525376,0.000020174086,0.000020538731,0.000020632373,0.000021260968,0.000020857131,0.000021365542,0.000021120275,0.00002129315,0.00002031202,0.000020613945,0.000019899962,0.00001994828,0.00001939797,0.000020191565,0.000019555479,0.000019431223,0.000018283845,0.000019115569,0.000018900439,0.00001932839,0.000018764164,0.000020434676,0.00002082086,0.000020449921,0.000018911274,0.000019496412,0.000020060379,0.000020468924,0.000020945192,0.00002271778,0.000022995651,0.000022190943,0.000021325215,0.000021190706,0.000022865821,0.000025228186,0.00002244479,0.000018896384,0.000015113344,0.000010909505,0.000012363404],[0.00001763418,0.0000110105875,0.000011357899,0.000015592654,0.000027946613,0.0000282112,0.000023156561,0.000021216225,0.000018459783,0.000020033824,0.000018667957,0.00001969551,0.000018495079,0.000019328429,0.000017702623,0.000018870776,0.000018414667,0.000020054029,0.000018717908,0.000020076148,0.000019680378,0.000020959538,0.000019227038,0.000020061507,0.000019347128,0.00002039183,0.000019045912,0.000019744839,0.000019563126,0.000020720967,0.0000189747,0.000019626399,0.00001889413,0.000020061889,0.000019068031,0.000020253257,0.000019906245,0.000020962396,0.00001927321,0.000020491309,0.000019636078,0.000020772548,0.000019477957,0.000020557503,0.000020179727,0.000021500606,0.000019885772,0.000021112422,0.000020094116,0.000021332984,0.00002005003,0.000021381195,0.000020564386,0.000021499232,0.000019734183,0.000020852018,0.000019883724,0.000020819709,0.000019655168,0.000020872729,0.000020298678,0.000021519314,0.000019956311,0.000021351994,0.000020390973,0.000021588627,0.00002009994,0.000021423015,0.000020509215,0.000021447871,0.00001964887,0.000020884756,0.000019894327,0.000020861247,0.000019635123,0.000020810161,0.000020192469,0.000021430535,0.000019860357,0.000021285352,0.000020327541,0.000021504791,0.000019988403,0.000021272426,0.000020386171,0.000021344218,0.00001955117,0.000020811174,0.00001982569,0.000020830155,0.000019593333,0.00002076528,0.000020158452,0.00002141074,0.000019848712,0.000021267599,0.000020307043,0.00002148169,0.000019968875,0.000021250122,0.000020368156,0.000021332153,0.00001954129,0.00002080159,0.000019814253,0.000020820304,0.000019583173,0.000020755853,0.000020149784,0.00002140876,0.000019846591,0.000021263077,0.000020302337,0.000021478636,0.000019966647,0.000021246677,0.000020363903,0.000021331582,0.000019540992,0.000020799369,0.000019808493,0.000020813475,0.000019578223,0.00002075542,0.00002014402,0.000021406433,0.000019842882,0.000021261372,0.000020297033,0.000021468071,0.000019956577,0.000021238839,0.000020352118,0.000021323345,0.000019534918,0.000020795163,0.000019806868,0.00002081282,0.000019575013,0.00002075156,0.000020143405,0.0000214058,0.000019844436,0.000021262975,0.00002030013,0.000021472431,0.000019959927,0.000021241896,0.000020357456,0.00002132845,0.000019538476,0.000020799369,0.000019811987,0.000020818577,0.000019581455,0.000020755537,0.000020147343,0.00002140778,0.000019846933,0.000021264475,0.000020301659,0.000021477284,0.00001996301,0.000021244326,0.000020360078,0.000021326538,0.000019534806,0.000020795422,0.000019806375,0.000020816095,0.000019575984,0.000020749067,0.000020137624,0.000021404658,0.000019845627,0.000021264514,0.000020298174,0.000021469852,0.000019943905,0.000021216549,0.000020318685,0.00002129256,0.000019524023,0.000020792962,0.000019774254,0.000020798298,0.000019456998,0.00002063629,0.000019939513,0.000021276666,0.000019655881,0.000021025182,0.000020023872,0.00002110089,0.00001954032,0.000020732432,0.00001993685,0.000020895175,0.000019136089,0.000020188983,0.000019373825,0.000020301854,0.000019176754,0.000020353185,0.000019993171,0.000021024802,0.00001953613,0.000020788957,0.000020142503,0.000021154221,0.000019844605,0.00002095322,0.000020420885,0.000021215721,0.000019575667,0.000020902928,0.000020022611,0.00002113843,0.000019919671,0.00002059954,0.00002000053,0.000020924348,0.000019566074,0.000020430836,0.000019535886,0.000020680023,0.000019202556,0.000020244086,0.000019395953,0.000020065698,0.000018266748,0.00001877809,0.0000182862,0.000019332649,0.000018113264,0.00001900895,0.000019022387,0.000020572035,0.000018796722,0.000018875024,0.00001889269,0.000020492187,0.000020446565,0.0000219233,0.000022434175,0.000023460529,0.000021616479,0.000022372069,0.000022218283,0.00002383688,0.000025216184,0.000025850539,0.000021664213,0.000015709942,0.000010453661,0.000012760405],[0.000017101636,0.000011393591,9.988323e-6,0.000015950867,0.000025902238,0.000031063053,0.000027061715,0.000022413902,0.000020389436,0.000020328976,0.000020506204,0.000019949022,0.000020513637,0.000019388075,0.0000196226,0.000019162093,0.000020449257,0.000019910383,0.00002038895,0.000020102798,0.0000213545,0.000020799369,0.000020903466,0.000019942288,0.000021018004,0.000020344105,0.000020521677,0.000019638419,0.000020737494,0.000020456242,0.000020614476,0.000019637726,0.000020560112,0.000020074693,0.000020593941,0.000020035466,0.000021210559,0.00002065403,0.000020887146,0.000020264792,0.000021327798,0.00002066853,0.000020848142,0.000020252388,0.000021378199,0.000020999352,0.000021254682,0.00002073706,0.00002179786,0.000021118281,0.000021323141,0.000020817644,0.000021780428,0.00002110433,0.000021219908,0.000020574862,0.00002144368,0.000020647667,0.000020868647,0.000020465606,0.000021507272,0.00002095602,0.000021312366,0.000020808731,0.000021955479,0.000021161444,0.000021361873,0.000020802245,0.000021746057,0.000020979975,0.000021142825,0.000020479118,0.000021408534,0.000020589288,0.000020823285,0.000020367477,0.000021406146,0.000020848936,0.000021245663,0.000020727213,0.00002188545,0.000021064076,0.000021259244,0.000020684107,0.000021623346,0.000020866997,0.00002106239,0.000020393714,0.000021345828,0.000020536263,0.00002078866,0.000020330954,0.00002137298,0.00002083387,0.000021235779,0.0000207151,0.000021870488,0.000021047708,0.000021243537,0.000020666068,0.000021608605,0.000020856573,0.000021058011,0.00002038901,0.000021342019,0.00002053303,0.000020786083,0.00002032382,0.000021369982,0.000020831505,0.000021235739,0.000020715277,0.00002186634,0.000021042371,0.000021239812,0.000020658992,0.00002160158,0.000020849711,0.000021052607,0.000020382282,0.000021335203,0.000020524574,0.000020778927,0.000020318646,0.000021364176,0.00002082366,0.000021229947,0.000020706706,0.000021859916,0.000021036352,0.000021232418,0.000020654363,0.000021595626,0.00002084661,0.00002105299,0.000020384634,0.000021334268,0.00002052295,0.000020777301,0.000020320254,0.00002136866,0.000020827414,0.000021233996,0.00002071342,0.000021866443,0.000021045282,0.000021240863,0.000020661791,0.000021604732,0.00002085359,0.000021056825,0.000020390215,0.000021343425,0.00002053219,0.000020783864,0.0000203263,0.000021372083,0.000020831825,0.000021237158,0.000020715712,0.000021870008,0.000021048352,0.000021242038,0.000020662008,0.000021604546,0.00002085005,0.000021053353,0.000020385081,0.000021340027,0.000020531075,0.000020782058,0.000020318703,0.000021365724,0.00002082676,0.000021236772,0.000020714073,0.00002186761,0.000021042411,0.000021224987,0.00002063188,0.000021561671,0.000020803138,0.000021020509,0.000020350759,0.000021316677,0.000020508609,0.000020708383,0.00002017047,0.000021218999,0.000020695768,0.00002115666,0.0000205823,0.000021682215,0.000020845657,0.000020949366,0.00002026889,0.0000212157,0.00002049942,0.000020762982,0.000019998413,0.00002092688,0.00002011321,0.000020436137,0.000020101475,0.00002123987,0.000020772151,0.000021027747,0.000020629697,0.000021721267,0.000021045884,0.000021163118,0.000020772488,0.000021669173,0.000021075368,0.000021117778,0.000020623087,0.00002150116,0.000020999752,0.000020897167,0.000020247368,0.000020945849,0.000020922571,0.000021037276,0.000020212507,0.000021315233,0.000020897087,0.000020832857,0.000020079768,0.000020685646,0.000019938296,0.000019848674,0.000018890618,0.000019925084,0.000019433133,0.000019747777,0.000018890581,0.000019718664,0.000020196398,0.000019669907,0.000018965256,0.000019462399,0.000020707792,0.000021012613,0.000021589449,0.000022211545,0.000022500726,0.000022166429,0.000021732416,0.0000223998,0.000022920489,0.000026270915,0.00002389175,0.000021094189,0.000016564247,0.000010423548,0.000012808051],[0.000016911315,0.000011661432,0.000010143245,0.000014214621,0.0000227136,0.000031367163,0.000026026637,0.000022909977,0.000019252837,0.000019987203,0.000018781457,0.000019767012,0.000018169369,0.000019216279,0.000018148363,0.000019273926,0.000018351135,0.00001973027,0.000018767849,0.000019969599,0.000019185827,0.00002063932,0.00001927275,0.000020100939,0.000018994779,0.00002019453,0.000018964389,0.000019784326,0.00001926088,0.000020550919,0.000019262974,0.000019804827,0.00001879328,0.000019803787,0.000019111067,0.000020162546,0.000019442734,0.000020598243,0.00001935774,0.000020378044,0.000019176334,0.000020332234,0.00001912952,0.000020216265,0.000019436096,0.000020877585,0.000019668707,0.000020750867,0.000019335213,0.000020696063,0.000019420737,0.000020692849,0.000019479965,0.000020973474,0.00001944557,0.000020643394,0.00001901002,0.000020317173,0.000018988278,0.000020418955,0.000019347719,0.000021030595,0.000019687079,0.000020963354,0.000019427758,0.000020912279,0.0000194023,0.00002079217,0.000019459614,0.000021025702,0.000019366566,0.000020643452,0.000018985833,0.00002036068,0.000018981487,0.000020422227,0.000019306486,0.000021013715,0.000019627296,0.000020913676,0.000019385228,0.000020840327,0.000019340321,0.000020693815,0.00001937826,0.000020923111,0.000019280636,0.000020551526,0.00001892228,0.000020294343,0.000018940225,0.000020369069,0.000019271243,0.000020975174,0.000019605803,0.000020884876,0.000019363131,0.00002081284,0.000019321682,0.000020672473,0.000019361063,0.000020914074,0.000019275378,0.000020548607,0.00001891867,0.000020295252,0.000018932424,0.000020359941,0.000019265399,0.000020973055,0.000019598605,0.000020879776,0.000019355857,0.000020807323,0.000019308329,0.000020662283,0.0000193451,0.000020904543,0.000019260347,0.000020533267,0.000018897357,0.00002028339,0.000018914232,0.000020347326,0.00001924821,0.000020963536,0.000019581978,0.000020863674,0.00001933844,0.000020798456,0.000019296198,0.000020655742,0.000019337498,0.000020904243,0.000019258767,0.000020532876,0.000018895698,0.000020278943,0.000018914954,0.00002034905,0.000019250798,0.000020967334,0.000019590065,0.000020874699,0.00001935115,0.0000208078,0.000019313264,0.00002066646,0.000019351593,0.000020912777,0.000019271702,0.000020543315,0.000018911924,0.000020291845,0.000018930798,0.000020360485,0.00001926448,0.000020972953,0.000019599578,0.00002088125,0.00001935809,0.000020812246,0.000019317573,0.000020667328,0.000019352665,0.000020909407,0.00001926889,0.000020538711,0.000018909688,0.000020291807,0.000018925924,0.000020350313,0.00001925379,0.000020971935,0.000019594401,0.00002087641,0.000019353512,0.000020810618,0.000019297137,0.000020634754,0.000019305475,0.000020868529,0.000019234209,0.000020504052,0.000018887717,0.000020302394,0.000018825658,0.00002019503,0.000019099532,0.000020878822,0.000019464254,0.000020699046,0.000019221978,0.000020638081,0.000019077324,0.000020262394,0.000019015224,0.000020533933,0.000019032548,0.000020150303,0.000018634519,0.000019822268,0.00001871871,0.00002009745,0.000019348954,0.000020869486,0.000019809739,0.000021008545,0.000019779063,0.0000208156,0.000019724532,0.00002084645,0.000019911902,0.000021123418,0.000019993819,0.000021191598,0.000020027175,0.000021011132,0.00001967895,0.000020344221,0.000019491912,0.000020657082,0.000019626325,0.000020255595,0.000019390813,0.000020626137,0.0000193551,0.000020013851,0.000018918436,0.000020031475,0.000018588567,0.000019214629,0.000018250641,0.000019531322,0.000018011926,0.000019033801,0.000018606728,0.00002032731,0.000018699406,0.00001905556,0.00001869101,0.000020161007,0.000019804487,0.000020449297,0.000019961926,0.000021085218,0.000021061785,0.000022047903,0.000022117694,0.000023930445,0.000025953865,0.000025799976,0.000021255453,0.000015730706,0.000010782192,0.000012938762],[0.00001704187,0.0000114329705,9.454929e-6,0.000013016088,0.00002264925,0.00003421246,0.000031217,0.000023995322,0.000021351365,0.00002008283,0.000020704869,0.0000188408,0.000020057967,0.000019018125,0.000019608233,0.000018031758,0.000019718645,0.000019159936,0.000020354564,0.000018890456,0.000020545529,0.000020177704,0.000020937321,0.00001936592,0.000020426045,0.000019554434,0.000020249954,0.000019208126,0.000020498912,0.000020224808,0.000020728241,0.00001928367,0.000020005185,0.000019393143,0.000020139583,0.0000192724,0.00002058067,0.000020367923,0.000020879796,0.000019685727,0.000020433916,0.000019727298,0.0000202063,0.00001919183,0.000020464202,0.000020274128,0.0000212515,0.000019706275,0.000020558091,0.000019809342,0.000020527727,0.00001922273,0.000020485522,0.000020162566,0.000020810161,0.000019430778,0.000020228066,0.000019436895,0.00001999954,0.000019009622,0.000020355827,0.000020300187,0.000021178666,0.000019707928,0.000020641486,0.000019831097,0.000020419093,0.000019109555,0.000020443447,0.00002006143,0.000020665593,0.000019325424,0.00002020237,0.00001943417,0.000020002304,0.000019006358,0.000020351341,0.000020239586,0.000021061905,0.000019598512,0.000020557289,0.000019741638,0.000020318414,0.000019035962,0.00002035633,0.000019981791,0.00002058707,0.000019254783,0.000020145,0.00001938266,0.000019966667,0.000018961802,0.000020312873,0.000020206935,0.000021043155,0.000019582258,0.000020546568,0.000019727411,0.00002030867,0.000019022387,0.000020351885,0.000019976475,0.00002059082,0.000019250578,0.000020145595,0.000019376099,0.000019966647,0.000018947867,0.000020307798,0.000020197378,0.000021044378,0.000019567324,0.000020538379,0.000019714866,0.000020299663,0.000019001935,0.00002034131,0.00001996202,0.00002057702,0.000019224288,0.0000201238,0.000019353125,0.000019948815,0.000018920024,0.000020290297,0.000020178224,0.000021030475,0.000019538476,0.00002051618,0.000019699435,0.000020294206,0.000018988603,0.000020334523,0.00001995867,0.000020580357,0.00001922119,0.00002012359,0.000019354196,0.000019956386,0.000018925328,0.000020295405,0.000020187366,0.000021047972,0.000019554825,0.000020534344,0.000019713323,0.000020312757,0.000019008097,0.000020348236,0.000019971256,0.000020592666,0.000019236391,0.000020140427,0.000019370776,0.000019969637,0.000018942988,0.000020308824,0.000020199037,0.00002105036,0.00001956863,0.000020541906,0.000019721128,0.000020311263,0.00001901352,0.000020349013,0.000019969219,0.000020589603,0.000019235364,0.000020139276,0.000019365476,0.000019966456,0.000018932693,0.000020302976,0.000020191621,0.00002105333,0.000019550853,0.000020537575,0.000019708868,0.000020294516,0.000018969979,0.000020311556,0.000019911125,0.000020549427,0.000019165454,0.000020131594,0.000019316634,0.000019952733,0.00001877372,0.000020243757,0.000020035084,0.000020980797,0.000019258474,0.000020330855,0.000019486337,0.000020112404,0.000018633558,0.00002004678,0.00001964505,0.00002036229,0.00001901321,0.00001987853,0.000019247494,0.000019853444,0.000019175162,0.000020444713,0.000020640364,0.000021365378,0.0000204151,0.000021103062,0.000020516765,0.000020921316,0.00002005883,0.000021018064,0.000020914275,0.00002158033,0.00002050108,0.00002127632,0.000020524438,0.000020942813,0.000019872728,0.000020582534,0.000020475269,0.00002099941,0.000019637875,0.0000205216,0.000019819281,0.000020470545,0.000018819575,0.000020122918,0.000019464069,0.00001986583,0.00001848383,0.000019594288,0.00001888561,0.000019364552,0.000018352535,0.000019837586,0.000020178897,0.000020215879,0.000018702456,0.000019402929,0.000019562753,0.000019765297,0.00001910039,0.000020091375,0.000020051504,0.000021198894,0.000020664944,0.000021408374,0.000022269829,0.000027055883,0.000024581403,0.000021497961,0.000015344505,0.000010501724,0.000012411887],[0.000016960932,0.000010976766,9.963625e-6,0.000012707071,0.00002376436,0.000031454903,0.000027124264,0.00002234486,0.000019739662,0.000019388777,0.00001835404,0.000018723444,0.000018194007,0.000019032857,0.0000176888,0.000018168848,0.000018069577,0.000019289022,0.000018251772,0.000018970612,0.000019135303,0.000020502233,0.000019152154,0.000019527673,0.000018947108,0.000019671332,0.000018486984,0.000019205689,0.000019084093,0.000020216265,0.00001889696,0.000019231624,0.00001878495,0.000019398747,0.000018518569,0.000019271445,0.000019420497,0.000020520503,0.000019174084,0.000019756197,0.000019187875,0.000019810852,0.000018369625,0.000018962055,0.00001882846,0.000020337022,0.000019173774,0.000019654493,0.00001896278,0.00001997798,0.00001855226,0.000019316156,0.000019080928,0.000020612606,0.000019159754,0.000019902713,0.000019027722,0.000020009173,0.000018304398,0.000019378205,0.00001908788,0.000020906475,0.000019362724,0.000019961508,0.000019136927,0.000020213141,0.000018486297,0.000019304407,0.000018943403,0.000020523223,0.000019008714,0.000019841898,0.00001904001,0.000020051235,0.0000182794,0.000019395085,0.000019032857,0.00002082674,0.000019237401,0.000019849962,0.000019063884,0.000020084344,0.000018406818,0.000019238925,0.000018909363,0.000020437541,0.000018951101,0.000019774989,0.000018978862,0.000019973866,0.00001823801,0.000019329276,0.000018994091,0.000020783664,0.000019227093,0.000019835865,0.000019050218,0.000020073641,0.000018402465,0.000019226763,0.00001890554,0.000020437366,0.000018952529,0.000019767805,0.000018969255,0.000019970303,0.000018231818,0.000019318164,0.000018981815,0.00002078089,0.000019217561,0.000019820754,0.000019031895,0.000020065832,0.00001838596,0.000019208932,0.000018886834,0.000020425949,0.00001893551,0.000019747664,0.000018947288,0.000019956635,0.00001820614,0.000019297413,0.000018956182,0.000020769972,0.000019196681,0.000019800862,0.000019007663,0.000020050089,0.000018373707,0.000019203053,0.000018877057,0.00002042698,0.00001893616,0.000019748924,0.000018949113,0.000019962878,0.000018217568,0.000019307077,0.000018965527,0.000020778452,0.000019215051,0.000019815823,0.00001902707,0.00002006855,0.000018396675,0.00001922042,0.000018894456,0.000020437501,0.000018950397,0.000019756724,0.000018960067,0.000019968762,0.000018232515,0.000019316654,0.00001898138,0.00002078392,0.000019221961,0.000019822779,0.000019037268,0.000020071706,0.000018401604,0.000019222676,0.000018898221,0.000020432766,0.000018948698,0.000019752899,0.000018953522,0.000019962134,0.000018224413,0.000019304553,0.000018967465,0.000020777343,0.00001921417,0.000019802315,0.00001901934,0.000020058313,0.000018374076,0.000019185334,0.000018860106,0.000020386346,0.000018915207,0.00001968351,0.000018912482,0.000019928297,0.000018152481,0.000019135578,0.000018770552,0.00002054502,0.000018974104,0.000019428518,0.00001871052,0.000019755518,0.000018178658,0.000018979334,0.00001868871,0.000020136547,0.000018834475,0.000019679232,0.000019047964,0.000019945523,0.000018576782,0.000019715711,0.000019637688,0.000021128113,0.000019933885,0.000020576745,0.000020128407,0.00002070943,0.000019439953,0.000019961486,0.000020009631,0.00002103621,0.000020115915,0.000020577332,0.000020232987,0.000020572073,0.000019343734,0.00001951265,0.000019311625,0.000020208729,0.000019264664,0.000018998438,0.000018643335,0.000019302253,0.000018300087,0.000018712215,0.000018652352,0.00001968002,0.000018363897,0.00001891692,0.000018436614,0.0000193297,0.000017912658,0.000018757059,0.000018614288,0.000020212718,0.000018732622,0.000018857589,0.00001882758,0.000019569543,0.000019622055,0.000019620224,0.000019758081,0.000020067688,0.000020003527,0.000021013693,0.000020822272,0.000023034674,0.000024959018,0.000027160815,0.000023706347,0.000016330356,0.000010296089,0.000012613404],[0.000017029555,0.000010873266,9.142996e-6,0.000013044234,0.000021750267,0.000033204156,0.000027140515,0.00002295676,0.000020269255,0.000019773255,0.000019764979,0.00001919948,0.000019952162,0.000019698648,0.000019762603,0.000018744935,0.000019878264,0.000019833293,0.000020218637,0.000019405039,0.000021092239,0.00002112376,0.000021108739,0.00001980326,0.000020820802,0.000020201946,0.000020510193,0.000019325904,0.000020630543,0.00002047402,0.000020561229,0.00001947755,0.000020341853,0.000020152147,0.000020286756,0.00001968216,0.000021008085,0.000020957179,0.000020854224,0.000019982954,0.000020928697,0.00002061471,0.000020472282,0.000019523799,0.000020447736,0.000020780217,0.000020755302,0.000019879439,0.000020736228,0.000020719504,0.000020639694,0.000019603502,0.000020947367,0.000020967675,0.00002095748,0.000019921361,0.000020867794,0.000020392801,0.000020372489,0.000019466333,0.000020873405,0.00002101191,0.00002107392,0.000019882322,0.000020867097,0.000020665357,0.000020519234,0.000019398321,0.000020750807,0.000020661297,0.00002074766,0.00001981896,0.000020821239,0.000020314073,0.00002026367,0.000019395731,0.000020783644,0.000020835938,0.000020929736,0.000019763622,0.000020743508,0.000020486441,0.0000203554,0.000019377429,0.000020692887,0.000020580179,0.000020706133,0.000019776631,0.000020751499,0.000020267476,0.000020236306,0.000019362189,0.000020748454,0.000020828686,0.00002092826,0.000019764073,0.00002074762,0.000020493437,0.000020368234,0.000019373938,0.000020690322,0.000020594314,0.000020713223,0.000019771878,0.000020750254,0.000020270976,0.000020242907,0.000019348512,0.000020741825,0.000020826817,0.000020926484,0.00001975047,0.000020728992,0.00002048533,0.000020361826,0.0000193544,0.000020677462,0.00002058601,0.000020701158,0.0000197617,0.000020738305,0.0000202526,0.000020224288,0.000019321942,0.000020721916,0.000020806134,0.0000209114,0.000019727919,0.000020695394,0.000020463793,0.000020347868,0.000019344325,0.000020670936,0.000020580945,0.000020701966,0.000019763773,0.000020736623,0.000020258569,0.000020233605,0.000019337906,0.000020734053,0.00002082362,0.000020928437,0.000019746514,0.000020721087,0.00002048779,0.000020370488,0.000019364203,0.000020685922,0.000020595728,0.000020711246,0.000019766749,0.000020742478,0.000020270416,0.00002024864,0.000019346262,0.000020743844,0.000020833235,0.000020930915,0.000019751806,0.000020732828,0.000020494317,0.000020373245,0.000019368857,0.000020687816,0.000020600286,0.000020710635,0.000019765921,0.000020737849,0.00002026854,0.000020247964,0.000019336761,0.00002073354,0.000020828486,0.000020928599,0.000019736386,0.000020704356,0.000020475642,0.000020353087,0.000019343217,0.000020641033,0.00002055282,0.000020667743,0.000019711952,0.000020675154,0.000020228974,0.000020199152,0.000019190275,0.00002044764,0.00002060461,0.00002065795,0.000019392846,0.00002020312,0.00002012426,0.000020152724,0.000019247274,0.000020454467,0.000020282037,0.000020545373,0.000019791025,0.000020709846,0.000020225616,0.000020341193,0.000019892144,0.000021255735,0.000021284297,0.000021237136,0.000020524672,0.00002138146,0.00002105343,0.000020863934,0.000020232717,0.000021356844,0.000021479087,0.000021344526,0.000020796493,0.000021565518,0.000021424896,0.000021074344,0.000020105923,0.000020376005,0.000020968595,0.0000203481,0.000019619736,0.000019889603,0.000020167181,0.000020054928,0.000019440695,0.000020491249,0.000020223786,0.000020191872,0.000019297227,0.00002031233,0.000019996945,0.000020152129,0.000019190695,0.000019905845,0.000020136318,0.000019349729,0.000018967103,0.000019142404,0.000020144576,0.000019985946,0.000020301446,0.000020266703,0.000020784339,0.000020293915,0.000020419131,0.00002064621,0.000021562619,0.00002497035,0.000024776838,0.000025821786,0.000017379161,0.000010733264,0.0000126534405],[0.000016387845,0.000010661598,9.675166e-6,0.0000119013,0.000021000253,0.000031756033,0.000025622652,0.000022356733,0.000019143006,0.000019473797,0.000018586103,0.000019341796,0.000018505876,0.000019392237,0.00001850293,0.000019116462,0.000018570034,0.000019960366,0.000018658631,0.000019606887,0.000019356448,0.00002087862,0.000019441213,0.000019646117,0.000018919518,0.0000200305,0.000018759081,0.00001938009,0.000019013609,0.00002038582,0.000019054232,0.000019417515,0.000018904982,0.000020091527,0.00001908018,0.00001980683,0.000019722387,0.000020808018,0.000019482955,0.000019667375,0.00001904504,0.000020262976,0.000019018724,0.000019418088,0.000018998058,0.000020331323,0.000019260457,0.000019565177,0.000018941742,0.000020273643,0.000018944722,0.00001947597,0.000019019195,0.000020461253,0.000019144776,0.00001949695,0.000018619225,0.000019942612,0.000018564331,0.00001927992,0.000018860017,0.000020620138,0.00001932347,0.000019705221,0.000018868077,0.0000203053,0.000018754268,0.000019353827,0.000018757775,0.00002033776,0.000018985833,0.000019478832,0.000018513556,0.000019925084,0.000018443085,0.000019255682,0.000018746794,0.000020563248,0.000019212523,0.000019632556,0.000018745024,0.00002018138,0.000018647177,0.000019349765,0.00001874667,0.000020346628,0.000018978899,0.000019463216,0.000018497847,0.000019898425,0.000018427667,0.000019211624,0.000018732873,0.000020527119,0.000019202229,0.000019616462,0.000018751909,0.000020176896,0.00001865502,0.000019336338,0.00001874708,0.000020335763,0.000018979334,0.00001945388,0.000018500248,0.000019898842,0.000018431268,0.000019199242,0.000018729746,0.000020522148,0.000019206678,0.000019610085,0.000018745435,0.000020166066,0.000018641522,0.000019314075,0.000018731766,0.000020314694,0.00001895365,0.000019433168,0.000018474455,0.0000198722,0.00001839587,0.000019162915,0.000018692239,0.00002049117,0.000019174944,0.000019581566,0.000018711198,0.000020140178,0.000018617413,0.000019307132,0.000018717872,0.000020315352,0.000018951281,0.000019440156,0.000018479388,0.000019888881,0.000018416651,0.00001919842,0.000018724531,0.00002053305,0.000019207942,0.000019616069,0.000018744739,0.000020178148,0.000018653027,0.000019338531,0.000018748797,0.000020339874,0.000018975841,0.000019452229,0.000018499171,0.000019902713,0.00001843431,0.000019206935,0.000018734107,0.00002053301,0.00001920981,0.000019613955,0.000018749386,0.000020176454,0.000018656763,0.000019337296,0.00001875148,0.000020333204,0.000018976873,0.00001944318,0.000018497443,0.000019895768,0.000018431268,0.000019189469,0.000018727837,0.000020522539,0.000019210764,0.000019605053,0.000018740968,0.000020163028,0.00001863626,0.000019308512,0.000018714712,0.000020275675,0.000018928054,0.000019372865,0.000018474595,0.000019856343,0.000018365105,0.000019032404,0.000018540535,0.000020346957,0.000018962492,0.000019269846,0.000018368677,0.000019880215,0.000018442293,0.000019331157,0.000018599083,0.00002026081,0.00001897121,0.000019570216,0.000018537901,0.000020059135,0.00001899918,0.000020085512,0.000019596848,0.000021110429,0.00001990298,0.00002045222,0.000019615527,0.00002095578,0.00001991935,0.000020680221,0.00002020763,0.000021302676,0.000020275791,0.000020585067,0.000019939342,0.000021087551,0.000020168047,0.000020349536,0.00001968997,0.000020781245,0.00001977069,0.00001970778,0.000019049672,0.000020112464,0.000019024184,0.000019595522,0.000019146328,0.000020393774,0.000019044352,0.000019421665,0.000018594683,0.000020020187,0.000018647033,0.000019573874,0.000018974539,0.000020340709,0.000018373199,0.000018703224,0.00001850743,0.000019587169,0.000019785213,0.000020074942,0.000020170086,0.000020630956,0.000020708008,0.000021066024,0.000020740066,0.00002139488,0.000022961816,0.00002560802,0.00002530995,0.000017488761,0.000010905563,0.000013017341],[0.000016565811,0.000010191688,9.965317e-6,0.000011836184,0.000022106751,0.00003512601,0.000029215844,0.000023117884,0.000020320642,0.00001973362,0.000020113286,0.00001885027,0.000019803487,0.000019418885,0.000020008622,0.00001864513,0.00002012384,0.000019918854,0.000020884756,0.000018949673,0.00002074766,0.000020296162,0.000020856492,0.000019329977,0.000020416444,0.000019628738,0.000020243486,0.000018681583,0.00002021987,0.00001957802,0.000020159068,0.000019085039,0.000020183343,0.00001970498,0.00002037045,0.000019362964,0.000021025424,0.000020562877,0.000020843368,0.000019574378,0.000020453237,0.000020016025,0.00002086634,0.000019248284,0.00002036934,0.000019998854,0.00002048269,0.000019228193,0.000020175703,0.0000197581,0.000020555915,0.000018793638,0.00002016328,0.00001954034,0.000020113286,0.000018700102,0.000019921208,0.000019360288,0.000020339972,0.000018410874,0.000019891973,0.000019543564,0.000020397896,0.000018972058,0.000020093867,0.000019605353,0.000020475289,0.000018479088,0.000019979847,0.00001936725,0.000020090092,0.000018548351,0.000019830379,0.000019250083,0.00002025459,0.0000182862,0.000019829678,0.000019442012,0.00002031756,0.000018843783,0.000020018297,0.000019488325,0.000020384576,0.000018468976,0.000020008754,0.000019387633,0.000020138295,0.000018570972,0.000019833915,0.000019267309,0.00002024669,0.000018289322,0.000019820358,0.000019443347,0.000020309366,0.00001885099,0.000020023337,0.000019496934,0.000020391537,0.00001847405,0.000020004727,0.000019391644,0.0000201353,0.000018578712,0.000019835901,0.000019275947,0.00002025289,0.000018287717,0.000019815689,0.00001944138,0.000020309462,0.000018854515,0.000020012552,0.000019489793,0.000020377947,0.00001844567,0.000019983678,0.000019375137,0.00002011185,0.000018549961,0.000019798708,0.000019232486,0.000020206126,0.000018236062,0.00001976281,0.000019403262,0.000020276273,0.000018818946,0.000019971521,0.000019459781,0.000020358464,0.00001842828,0.000019972265,0.000019363813,0.000020108204,0.000018547504,0.000019809966,0.000019255756,0.00002024063,0.000018276804,0.00001981212,0.000019447778,0.000020318606,0.000018858507,0.000020016081,0.00001950002,0.000020395368,0.000018468289,0.00002000469,0.000019394402,0.000020131345,0.000018577295,0.000019833953,0.000019280562,0.000020256386,0.000018289373,0.00001982066,0.000019452174,0.000020318006,0.000018857194,0.000020016863,0.000019501042,0.000020393889,0.000018470244,0.00001999851,0.000019394141,0.000020128657,0.000018578588,0.000019827316,0.000019281482,0.000020258201,0.000018287263,0.000019809266,0.000019447796,0.000020316185,0.00001886268,0.000020009917,0.000019493678,0.00002038065,0.000018453658,0.000019968247,0.000019341998,0.000020064646,0.000018540748,0.000019784251,0.000019268928,0.00002019087,0.000018180861,0.000019617903,0.000019328538,0.000020115263,0.000018616454,0.000019720883,0.00001926867,0.000020293935,0.00001836162,0.000020011368,0.000019385468,0.000020245456,0.00001863962,0.000019883799,0.000019487024,0.00002072077,0.00001924188,0.000020690835,0.000020176858,0.000020920876,0.000020147709,0.000020874899,0.000020613847,0.000021424037,0.00002033233,0.00002132473,0.000020705522,0.000021224725,0.0000202932,0.000021000213,0.000020783762,0.00002191634,0.000020315583,0.000020807185,0.000020579198,0.000020831367,0.00001987633,0.000020448088,0.000019998224,0.00002061302,0.000019017853,0.000020489255,0.000019776762,0.000020203814,0.000018896473,0.00002002796,0.000019512056,0.000020334774,0.000018805651,0.000020232195,0.000019942556,0.000019347792,0.000018083438,0.000018610028,0.000019022751,0.000019651663,0.000019458594,0.000020329771,0.0000200288,0.000020376023,0.000019976209,0.000019712515,0.000020040932,0.000022693985,0.000023539213,0.000026011028,0.000018132741,0.000011674306,0.000012728708],[0.000016930164,0.000011227675,0.000011223586,0.0000133762,0.000024931376,0.00003303644,0.00002630689,0.000021673326,0.000018960285,0.00001923564,0.000018347913,0.000018786543,0.00001834312,0.000019209554,0.000018106579,0.000018725514,0.000018479688,0.000020038295,0.000018555695,0.00001892347,0.00001891436,0.000020386986,0.000019203566,0.000019482304,0.000018622331,0.00001966353,0.000018001432,0.000018407047,0.00001812764,0.000019456293,0.00001834928,0.000018973597,0.00001839513,0.00001968017,0.00001846554,0.000019171634,0.000019255553,0.000020408463,0.000019090847,0.000019304058,0.000018590872,0.00001982066,0.000018744346,0.000018777318,0.000018622562,0.00001947729,0.00001864378,0.000018938761,0.000018405273,0.000019651026,0.000018484394,0.000018586263,0.00001824603,0.00001933735,0.000018257395,0.000018624729,0.000018166076,0.000019561969,0.000018302355,0.000018471865,0.000018116045,0.000019461284,0.000018414807,0.000018893626,0.000018353181,0.00001975938,0.000018386065,0.000018430883,0.000018080558,0.000019288986,0.000018162125,0.000018507872,0.00001807013,0.000019546977,0.000018198989,0.000018377896,0.000017980998,0.000019392144,0.000018280183,0.00001877041,0.00001822252,0.00001968659,0.0000183026,0.000018403483,0.000018069111,0.00001934554,0.000018198483,0.00001854225,0.000018077559,0.00001955643,0.000018211591,0.000018378105,0.00001799273,0.000019397232,0.000018299632,0.000018775529,0.000018229159,0.000019684207,0.000018315608,0.00001840889,0.0000180823,0.000019349398,0.000018213224,0.00001855373,0.000018088836,0.00001956085,0.000018223058,0.000018381015,0.000017996164,0.000019385025,0.000018292078,0.000018771465,0.00001822909,0.000019669476,0.000018303035,0.00001838545,0.000018065477,0.00001932349,0.00001818367,0.000018510043,0.000018045263,0.000019504167,0.000018169663,0.000018333816,0.000017954746,0.00001935259,0.000018257744,0.000018736142,0.000018196472,0.000019648965,0.000018282137,0.000018373532,0.000018048395,0.000019320854,0.000018180097,0.00001852076,0.000018060688,0.000019539968,0.000018204282,0.000018375704,0.000017989745,0.000019394585,0.000018299143,0.000018784018,0.000018238272,0.000019692956,0.000018321965,0.000018418355,0.000018083645,0.000019356188,0.000018214614,0.000018557694,0.000018091752,0.00001956988,0.000018227143,0.000018392815,0.000018001829,0.000019403133,0.000018303297,0.00001878006,0.000018237644,0.000019689913,0.000018321965,0.000018412296,0.000018086232,0.000019352627,0.000018221946,0.000018558614,0.000018098552,0.0000195632,0.000018238601,0.000018389956,0.00001800722,0.000019386096,0.000018302162,0.0000187732,0.000018239783,0.000019679946,0.000018318926,0.000018407134,0.000018075421,0.00001932607,0.000018226778,0.000018573204,0.00001813217,0.000019587113,0.000018209837,0.000018342105,0.000017888606,0.000019230083,0.000018095721,0.000018553199,0.00001802306,0.000019549567,0.00001815707,0.000018367453,0.000017946137,0.000019405094,0.000018306351,0.000018740377,0.000018196662,0.000019711651,0.000018646997,0.00001933986,0.000019020028,0.000020581514,0.000019558891,0.000020389767,0.000019751506,0.000020782278,0.00001956277,0.0000202674,0.000020041582,0.000021048794,0.000020020569,0.000020458445,0.000019739586,0.00002084997,0.00001975582,0.000019821096,0.000019397748,0.000020188638,0.000019323232,0.000019767918,0.00001918817,0.000020281186,0.00001883622,0.000019019593,0.000018643655,0.000019653182,0.000018589719,0.000019178071,0.000018566367,0.000019981238,0.000018306002,0.000018798712,0.000018326022,0.000019813782,0.000018207546,0.000018470051,0.000017904802,0.00001949751,0.000019277823,0.000020097334,0.00001990393,0.000020580454,0.000020347035,0.000021247122,0.00002065196,0.000021579506,0.000021934635,0.000024454068,0.00002547532,0.000019775613,0.000011551333,0.000013403898],[0.000015966558,0.000011779587,0.000010264238,0.000015033219,0.000024675937,0.000034821238,0.000027759777,0.000022232185,0.000019927005,0.000019659987,0.000019901443,0.00001912029,0.000019968817,0.000019607429,0.000020142905,0.00001914118,0.000020430603,0.000020215455,0.000020660333,0.000019023912,0.000020831249,0.000020708285,0.000021162796,0.000019951116,0.000020797463,0.000020277375,0.000020239935,0.000018587769,0.000019827126,0.000019648103,0.000020333127,0.000019353973,0.000020274709,0.000020219388,0.000020471658,0.000019577086,0.000020793,0.000020718793,0.00002076528,0.000020117335,0.000020572741,0.000020717433,0.000020823085,0.000019544552,0.000019863672,0.000020099558,0.000020338633,0.000019637444,0.000020434793,0.00002047771,0.0000206211,0.000019205085,0.00001981191,0.000019830248,0.000020200056,0.00001930656,0.000020121095,0.00002033526,0.000020447267,0.000018969273,0.000019633793,0.000019796538,0.000020304156,0.000019390942,0.000020344492,0.000020456417,0.000020533678,0.000019056904,0.000019707271,0.000019760399,0.000020132304,0.000019143516,0.000020029182,0.000020299878,0.000020409436,0.000018879542,0.000019568442,0.00001971983,0.000020212872,0.000019268486,0.00002025577,0.00002040385,0.000020513891,0.000019047257,0.000019753654,0.000019803354,0.000020191448,0.000019162531,0.000020040321,0.000020305415,0.000020414867,0.000018890041,0.000019572737,0.000019740075,0.00002022884,0.000019290015,0.000020259999,0.000020411324,0.00002051792,0.00001905456,0.000019755838,0.000019819205,0.00002020817,0.000019186102,0.00002005156,0.000020317424,0.000020425052,0.00001889923,0.00001956529,0.000019735106,0.000020216921,0.00001927902,0.000020245185,0.000020393638,0.000020491778,0.000019035162,0.000019723911,0.00001978376,0.00002015978,0.000019142568,0.000020001484,0.000020271633,0.00002037791,0.000018862158,0.000019532945,0.00001970265,0.0000201845,0.000019240593,0.000020214606,0.000020368487,0.000020473726,0.000019017072,0.000019716463,0.000019779403,0.00002017147,0.000019156081,0.000020030806,0.000020294381,0.000020411617,0.000018885106,0.000019564002,0.00001973283,0.000020228705,0.000019290328,0.000020269585,0.00002041656,0.000020525827,0.000019060975,0.000019761963,0.00001981484,0.000020206915,0.000019183613,0.000020053263,0.000020314481,0.00002042659,0.000018899627,0.000019572753,0.000019738098,0.000020223053,0.000019284002,0.000020255402,0.000020409863,0.000020515827,0.000019055833,0.000019754256,0.000019818903,0.000020207244,0.000019193092,0.00002005246,0.000020325662,0.000020428948,0.000018911418,0.0000195657,0.000019745536,0.000020224421,0.000019291414,0.00002025772,0.000020421,0.000020514948,0.000019061703,0.000019739831,0.000019794348,0.00002018417,0.00001921287,0.000020068166,0.00002035334,0.000020359495,0.000018838697,0.000019410516,0.00001961953,0.00002003841,0.000019123025,0.00002011722,0.000020344356,0.000020482947,0.0000189136,0.00001968306,0.000019757948,0.00002037307,0.000019444868,0.000020410447,0.000020450447,0.00002075045,0.000019589505,0.000020750947,0.000020823105,0.000021369455,0.00002080365,0.00002153274,0.000021207728,0.000021051766,0.00002017324,0.00002123181,0.000021124164,0.000021456117,0.000020793239,0.000021361364,0.000021298103,0.000021236245,0.000019978741,0.000020235766,0.000020609248,0.00002082372,0.000020346433,0.00002114476,0.000021268977,0.000020926564,0.000019450448,0.000020275038,0.000019944267,0.000020458076,0.000019656518,0.000020642981,0.00002042026,0.000020322212,0.000018825318,0.00001941507,0.000019703324,0.000019680134,0.000018767867,0.000019234558,0.000019555198,0.000019706162,0.00001984521,0.00002013989,0.000020520229,0.00002082954,0.000020974914,0.000020889795,0.000021039725,0.000023089835,0.00002361647,0.000026266178,0.000020760586,0.000012317389,0.000013225611],[0.000015380003,0.000013716799,0.0000110996325,0.000015676656,0.000025602867,0.000034047018,0.0000273871,0.00002259441,0.00001956725,0.00001977333,0.000019076906,0.00001953257,0.000018647568,0.000019371073,0.000018684452,0.000019516987,0.000018903791,0.000020126796,0.000019034727,0.00001928584,0.000019120052,0.00002045269,0.000019756893,0.000020421448,0.00001932559,0.000020311729,0.000018725728,0.000018630983,0.000018176994,0.000019583975,0.000019215637,0.000019905048,0.000019000214,0.000020197553,0.00001930866,0.000019863728,0.000019574865,0.000020817486,0.000019989015,0.000020588051,0.000019576824,0.00002077867,0.00001967364,0.00001941333,0.000018882674,0.000019592942,0.000019439452,0.000020008487,0.000019422183,0.000020533915,0.000019576506,0.000019357316,0.000018852104,0.000019553576,0.00001925425,0.000019865889,0.000019331157,0.000020526748,0.000019358016,0.000019072959,0.000018630255,0.000019639936,0.000019369338,0.000019990654,0.000019431409,0.000020679807,0.000019541701,0.000019337573,0.000018874736,0.000019654719,0.000019217121,0.000019760399,0.000019252597,0.000020528723,0.000019282512,0.000019011179,0.000018559587,0.000019611281,0.000019253002,0.000019877543,0.000019310539,0.000020624759,0.00001947389,0.000019333589,0.00001885189,0.00001969491,0.000019210085,0.000019768182,0.000019212212,0.000020516394,0.000019256417,0.000018993711,0.000018537636,0.000019605597,0.00001926189,0.000019885203,0.000019311587,0.000020619174,0.00001947389,0.00001932124,0.000018856672,0.000019700376,0.000019239475,0.000019789384,0.00001923841,0.0000205421,0.000019291929,0.000019015768,0.000018558278,0.000019611449,0.000019269386,0.000019884443,0.000019318844,0.000020614652,0.000019477771,0.000019312749,0.000018862122,0.000019677693,0.000019215728,0.000019748079,0.000019210122,0.000020475543,0.000019244007,0.000018953504,0.000018515391,0.000019545261,0.000019219651,0.000019835014,0.000019288269,0.000020574802,0.000019446368,0.000019283689,0.00001883541,0.000019668969,0.00001921967,0.000019763998,0.000019227442,0.000020517607,0.000019279238,0.000019004021,0.000018550616,0.000019608495,0.000019271574,0.000019894593,0.000019329165,0.000020635127,0.000019491912,0.000019340414,0.000018869121,0.000019709922,0.000019237292,0.000019794821,0.000019236228,0.000020539475,0.000019279056,0.000019015097,0.000018547504,0.00001960741,0.000019260751,0.000019880139,0.000019312103,0.00002062108,0.000019483457,0.000019330953,0.000018869912,0.000019706275,0.000019252782,0.000019802976,0.000019256784,0.000020552034,0.000019316047,0.000019029465,0.000018582115,0.000019622656,0.000019301351,0.00001990689,0.000019354251,0.000020650088,0.000019515608,0.000019349858,0.000018880028,0.000019693405,0.00001927729,0.000019846138,0.00001931516,0.000020609876,0.0000192838,0.0000189892,0.000018516257,0.000019553985,0.000019161618,0.000019753841,0.000019206698,0.000020585087,0.000019327894,0.000019131947,0.000018534047,0.000019648947,0.000019329203,0.000020046036,0.000019195875,0.000020556014,0.000019406723,0.000019822985,0.00001932406,0.000020942254,0.000020544725,0.000021424692,0.000020190793,0.00002129388,0.00002001904,0.000020517058,0.000019831117,0.000021046002,0.000020644338,0.000021487222,0.000020379037,0.000021494188,0.000019849527,0.000019732772,0.000019037723,0.000020292851,0.00001996996,0.00002088125,0.0000200995,0.000021435912,0.000019741223,0.000019692148,0.00001892116,0.000019913175,0.00001938593,0.000020216054,0.000019326824,0.000020687561,0.000018761157,0.000018869263,0.00001814004,0.000019411405,0.000018666302,0.00001915082,0.00001820265,0.000019298186,0.0000187496,0.000019459781,0.000019086187,0.00001999138,0.0000204277,0.00002136,0.000020806034,0.000021792062,0.000022597687,0.0000251139,0.000025369398,0.000019494813,0.000012158527,0.000013372425],[0.000015907877,0.0000151845825,0.000012486945,0.000017589604,0.000029920839,0.00003688526,0.00003172788,0.000023943228,0.000021160435,0.000020527666,0.000020765834,0.000019427036,0.000020092602,0.000019487452,0.000020383895,0.000018987645,0.000020282385,0.000020075056,0.000021149684,0.000019169258,0.000020625075,0.000020191006,0.0000216975,0.00002010694,0.00002120963,0.000020201907,0.000020824473,0.000018850955,0.000019893758,0.000019650972,0.0000210852,0.000019950601,0.000020728321,0.000020123014,0.000020916448,0.000019872425,0.000021173395,0.00002092371,0.000022081696,0.000020811649,0.00002137035,0.000020791911,0.000021582266,0.000019732866,0.000020360836,0.000020128713,0.000021269383,0.00002034259,0.000021031057,0.000020507201,0.000021267659,0.000019448724,0.00002010228,0.000019828489,0.000021148513,0.00001996817,0.000020871475,0.000020436704,0.000021135973,0.000019152994,0.000019979485,0.000019811061,0.000021231426,0.00002014865,0.000021076554,0.000020474761,0.000021277316,0.000019397341,0.000020152282,0.0000198293,0.000021164773,0.000019831155,0.000020827176,0.000020368738,0.000021106845,0.000019089974,0.000019953077,0.000019788156,0.000021206213,0.000020025285,0.000020995827,0.00002042365,0.000021277012,0.000019363519,0.000020187887,0.000019850455,0.000021205686,0.000019822437,0.000020816573,0.00002035668,0.000021094591,0.000019056795,0.000019922843,0.000019767995,0.000021198488,0.000020030346,0.000020991143,0.000020423397,0.000021272264,0.000019357796,0.00002018165,0.000019855528,0.000021224743,0.000019859752,0.000020844682,0.000020390682,0.00002112924,0.00001909458,0.000019949784,0.000019793537,0.000021210804,0.000020043743,0.000020991263,0.000020419715,0.00002125454,0.000019354547,0.000020172163,0.000019848809,0.000021186079,0.000019803732,0.000020773856,0.00002030927,0.000021030635,0.000019018305,0.000019879533,0.000019736404,0.000021160375,0.000019993495,0.000020954081,0.000020389476,0.000021241005,0.000019342055,0.00002015428,0.000019833858,0.000021201826,0.00001983647,0.000020821892,0.000020369438,0.000021111295,0.000019087553,0.000019946017,0.00001978346,0.000021206839,0.000020043493,0.000021006563,0.000020433448,0.000021283424,0.000019377723,0.000020198631,0.000019867082,0.000021227863,0.000019859903,0.00002084675,0.000020380805,0.000021111215,0.000019076488,0.000019936339,0.000019774914,0.000021196689,0.000020035064,0.00002098892,0.00002042024,0.000021269443,0.00001936821,0.000020187694,0.00001986138,0.000021228127,0.000019871837,0.000020849195,0.000020396496,0.000021131376,0.000019109626,0.000019957148,0.000019807301,0.000021231386,0.000020080475,0.000021022373,0.000020451911,0.000021285454,0.00001939318,0.000020187732,0.000019841407,0.000021225776,0.000019918283,0.000020909545,0.000020441887,0.000021091693,0.000019083913,0.00001986229,0.000019761077,0.000021089843,0.000019928468,0.000020840487,0.000020319789,0.00002114077,0.000019165493,0.000020004767,0.000019654344,0.000021352485,0.00002002372,0.000020967995,0.000020392801,0.000021371614,0.00001971842,0.000020813337,0.000020782158,0.00002215766,0.000021243333,0.000021723092,0.000021095737,0.000021568356,0.00002042741,0.000021079688,0.000020805259,0.000022146061,0.000021185959,0.000021840808,0.00002110749,0.000021698681,0.000019871686,0.000020350546,0.000020342786,0.000021463056,0.000020776906,0.000021484435,0.000020860252,0.000021247892,0.000019346813,0.000020248159,0.000019557903,0.000020991441,0.000019645406,0.000020837746,0.000020094076,0.000020628575,0.000018679355,0.00001958407,0.000019561969,0.000020278458,0.000019113419,0.000019331008,0.00001892578,0.00001950984,0.00001881455,0.000019478162,0.000019627501,0.000020649477,0.000020476129,0.00002058642,0.00002050544,0.000023334973,0.0000241329,0.000026481095,0.000018862534,0.000012112477,0.000013599598],[0.000015971964,0.000016319178,0.000015482028,0.00002210129,0.000032102875,0.000031497977,0.000026756035,0.000022076329,0.000020134476,0.000019698084,0.000019103594,0.000019216463,0.000018833487,0.000019295629,0.000018726192,0.000019195088,0.000019124156,0.000020230864,0.000019359604,0.00001928801,0.00001922264,0.000020116528,0.000019675366,0.000020038007,0.000019483476,0.000020055691,0.00001900875,0.00001867111,0.000018322264,0.000019241494,0.000018981542,0.000019675705,0.000019257664,0.000020000989,0.000019236575,0.000019652769,0.000019604455,0.00002060011,0.000020063499,0.000020421585,0.000019845078,0.000020592704,0.000019787458,0.000019401226,0.000019272602,0.000019695097,0.000019699924,0.000019865907,0.000019600737,0.000020195106,0.000019650932,0.00001927856,0.000019217048,0.000019527375,0.000019501693,0.00001970092,0.000019524452,0.00002022043,0.00001953952,0.000019005724,0.000018953306,0.000019444979,0.000019470232,0.000019793706,0.000019511013,0.0000202691,0.00001959713,0.000019284204,0.000019163317,0.000019533614,0.00001938251,0.0000195839,0.000019412071,0.000020171488,0.000019444551,0.000018948318,0.000018853614,0.000019390332,0.000019349416,0.000019654512,0.000019392754,0.00002020601,0.00001953844,0.00001925537,0.000019123938,0.000019562454,0.000019368412,0.000019568499,0.000019372957,0.000020157799,0.000019406112,0.00001891207,0.000018809991,0.00001937898,0.000019352092,0.00001965708,0.000019393734,0.000020208594,0.000019542074,0.000019249605,0.000019130377,0.000019568612,0.000019399524,0.00001959853,0.000019407165,0.00002018675,0.000019448595,0.000018947414,0.000018842524,0.000019399782,0.000019370962,0.000019668669,0.000019405297,0.000020205549,0.00001953695,0.000019243731,0.000019139283,0.00001954912,0.000019358682,0.000019524936,0.000019343954,0.000020102854,0.000019394456,0.000018902565,0.000018838231,0.000019366085,0.000019343863,0.000019618072,0.000019371424,0.000020162259,0.000019533483,0.000019238942,0.000019139958,0.000019549698,0.000019375913,0.000019569658,0.000019403762,0.000020175703,0.00001944355,0.000018945391,0.00001884716,0.000019394603,0.000019367802,0.000019672101,0.000019411702,0.00002021769,0.000019552344,0.000019269846,0.000019146823,0.000019583285,0.000019405148,0.000019608533,0.000019408999,0.000020185653,0.000019430816,0.000018936324,0.000018828281,0.00001939427,0.00001936073,0.000019671257,0.000019402225,0.000020214819,0.000019544888,0.000019262938,0.000019145944,0.000019582538,0.000019420719,0.000019623816,0.000019431594,0.000020198055,0.000019468895,0.00001896627,0.000018871027,0.000019410572,0.000019408684,0.000019700545,0.000019439396,0.00002022799,0.000019574865,0.000019287403,0.000019169258,0.000019569601,0.000019470064,0.000019687228,0.000019511068,0.000020271402,0.00001949117,0.0000189787,0.000018814782,0.00001934379,0.00001927512,0.000019552812,0.00001926077,0.000020092582,0.00001941533,0.00001907485,0.00001882548,0.00001944355,0.000019374713,0.000019730645,0.000019364497,0.000020220874,0.000019443643,0.000019410629,0.000019311477,0.00002046305,0.000020089976,0.000021089201,0.00002048062,0.000021228165,0.000020153973,0.000020352136,0.000020086642,0.000020710024,0.000020422149,0.00002092762,0.000020549664,0.000021029213,0.000019917525,0.000019535626,0.000019058141,0.000019746778,0.000019588684,0.00002016772,0.000019681447,0.000020449044,0.00001942939,0.000019287716,0.00001875087,0.00001942083,0.000019056923,0.000019435336,0.000019128755,0.00002005858,0.000019184456,0.000019067229,0.000018702029,0.000019479054,0.000019042553,0.00001901167,0.000018573752,0.00001898281,0.000019086516,0.000019345394,0.00001948552,0.000020301697,0.000020471443,0.000021139904,0.000020668136,0.000021689144,0.000022509115,0.000026148813,0.000025796484,0.000018658027,0.000011173977,0.00001360585],[0.000016389096,0.000016786484,0.000014991843,0.000025373438,0.000028748236,0.000029168103,0.000025567075,0.00002228453,0.000020431751,0.000020296124,0.000020115684,0.000019907953,0.000020345986,0.00001995749,0.00002027289,0.000019870511,0.00002073708,0.00002065192,0.000020948626,0.00001992993,0.000020830832,0.000020799605,0.000021288984,0.00002037783,0.00002127693,0.000020873347,0.00002130753,0.00001980428,0.000020220681,0.00002025125,0.000020723537,0.000020020321,0.000020885751,0.00002068602,0.000021059835,0.000020492773,0.000021173413,0.00002126776,0.00002130357,0.000020940997,0.00002132485,0.000021241996,0.000021493268,0.000020504816,0.000020673617,0.000020819987,0.00002079558,0.000020463265,0.0000208665,0.000020815936,0.000021111697,0.000020389243,0.00002074606,0.00002068393,0.000020849731,0.000020347967,0.000020811036,0.00002078079,0.000021108677,0.000020140964,0.000020528723,0.000020483376,0.00002079316,0.000020338071,0.000020873505,0.000020724643,0.000021106645,0.000020358155,0.000020782534,0.000020567857,0.000020783762,0.000020202928,0.0000207498,0.000020692492,0.00002107788,0.000020087906,0.000020478295,0.000020412608,0.000020740898,0.000020218906,0.000020789372,0.000020670994,0.000021094791,0.00002031977,0.000020790781,0.000020567368,0.00002079673,0.000020168758,0.00002072247,0.000020680498,0.000021075208,0.000020043111,0.000020431246,0.000020395952,0.0000207353,0.000020209673,0.00002077855,0.000020668253,0.000021100826,0.000020322832,0.000020800835,0.000020580552,0.000020816095,0.000020199268,0.000020751066,0.000020701216,0.000021099842,0.000020069085,0.000020451871,0.000020415471,0.00002074505,0.000020218444,0.000020779265,0.000020657375,0.00002106962,0.00002029055,0.000020763793,0.0000205374,0.000020745842,0.000020126776,0.000020687166,0.000020664864,0.000021077758,0.000020083176,0.000020461392,0.000020412492,0.000020706844,0.000020164644,0.000020718793,0.00002060968,0.000021048072,0.000020299105,0.000020771024,0.000020565563,0.000020795202,0.00002017274,0.00002072415,0.000020697544,0.000021094229,0.000020076435,0.000020457488,0.000020421156,0.000020760428,0.000020239066,0.000020803673,0.00002067898,0.000021103142,0.00002033334,0.000020804922,0.000020581141,0.000020816631,0.000020203215,0.00002075077,0.000020696438,0.00002108906,0.000020066884,0.00002045671,0.000020415762,0.000020751224,0.000020232466,0.000020792148,0.00002066847,0.000021094029,0.000020329404,0.000020810698,0.000020590702,0.000020827492,0.000020225849,0.000020776191,0.000020722175,0.000021116852,0.000020098849,0.000020479663,0.000020442823,0.000020776431,0.0000202657,0.000020817783,0.000020693735,0.000021109583,0.000020363766,0.000020823105,0.000020597576,0.000020859197,0.000020328609,0.000020878564,0.000020838143,0.00002116754,0.000020112137,0.00002035732,0.00002033877,0.000020622636,0.000020116318,0.000020578002,0.00002056423,0.000021009486,0.000020240435,0.000020641939,0.000020437696,0.000020926063,0.000020190235,0.000020969434,0.000020774647,0.000021400596,0.000020366699,0.00002125892,0.000021034868,0.00002143718,0.000021029873,0.000021837268,0.000021411883,0.000021585909,0.000021152264,0.000021788735,0.000021693219,0.000021646163,0.000021489905,0.000021960002,0.00002181431,0.00002184566,0.000020529606,0.000020559191,0.000020610976,0.000020790801,0.000020419131,0.000020851165,0.000020906178,0.000020930096,0.000020082582,0.000020496349,0.000020150514,0.000020499692,0.000019798086,0.000020698531,0.000020654106,0.00002122341,0.000020103756,0.000020123955,0.00002019819,0.00001994984,0.000019688148,0.000019476027,0.000020011272,0.000020233354,0.0000205508,0.000020701216,0.000021363177,0.000021222213,0.000021515643,0.00002111643,0.000021203989,0.000023308818,0.000024515175,0.000027098722,0.000019429277,0.000011671312,0.000013315478],[0.000015870766,0.000015584848,0.000015602367,0.000023826471,0.00002914541,0.000028226754,0.000023722043,0.000021728418,0.00001968783,0.000020190351,0.000019873543,0.000020538222,0.00001943126,0.000019714358,0.000019373492,0.000020139218,0.00001957294,0.00002065909,0.000019779798,0.000020371052,0.000019701352,0.000020670028,0.00002007383,0.00002043154,0.000019786572,0.000020877886,0.000019959889,0.000020110678,0.000019145435,0.000019944306,0.00001948288,0.000019960593,0.000019465218,0.000020728083,0.000020115971,0.00002092329,0.000020108379,0.000020858142,0.000020234222,0.00002063558,0.000019985982,0.000021057027,0.00002067823,0.000020874899,0.000020122054,0.000020473337,0.000020122035,0.000020332505,0.000019779818,0.000020645382,0.000020401749,0.000020701513,0.00002017047,0.000020338168,0.000020187943,0.000020236479,0.000019928963,0.000020649517,0.000020548467,0.000020395115,0.00001996379,0.000020185074,0.000020089668,0.00002031636,0.000019777253,0.000020645244,0.000020453432,0.000020790801,0.000020198035,0.000020354777,0.000020131902,0.000020173184,0.000019848316,0.000020628318,0.000020530486,0.000020411284,0.00001994887,0.000020164527,0.000020026146,0.000020214917,0.000019685427,0.000020566033,0.000020370313,0.000020719723,0.000020133592,0.000020311574,0.0000200648,0.00002010759,0.000019783309,0.000020587599,0.000020492558,0.000020373169,0.000019882473,0.00002011582,0.000019984021,0.000020177127,0.000019649846,0.00002055282,0.000020367419,0.000020723597,0.000020148247,0.000020335743,0.000020096395,0.000020126257,0.000019801824,0.000020607498,0.000020514359,0.000020393307,0.000019901936,0.000020128964,0.000019994563,0.000020183536,0.000019650972,0.000020539142,0.00002034003,0.000020682726,0.000020100822,0.000020278807,0.000020043168,0.000020085341,0.000019803845,0.00002062002,0.000020548214,0.000020407411,0.000019923926,0.00002012595,0.000020001029,0.000020153917,0.000019644975,0.000020513928,0.00002034841,0.000020701691,0.000020143481,0.000020303092,0.000020080992,0.000020109106,0.00001979378,0.000020599697,0.00002053182,0.0000204078,0.00001992822,0.000020149322,0.000020031302,0.000020227335,0.000019699473,0.00002057863,0.00002038998,0.000020737869,0.000020153531,0.000020324771,0.000020086336,0.00002012476,0.000019804545,0.00002059946,0.00002050198,0.000020384576,0.00001989945,0.000020130865,0.000019998453,0.000020198806,0.000019664487,0.000020558857,0.000020363748,0.000020730336,0.000020145902,0.00002033427,0.000020101226,0.00002015088,0.000019833557,0.000020635758,0.00002055225,0.00002043528,0.00001994982,0.000020170528,0.000020057814,0.000020242154,0.000019718853,0.000020603666,0.00002042846,0.000020791693,0.000020205684,0.000020366524,0.000020214105,0.00002026512,0.00001999727,0.000020771993,0.000020682333,0.000020484275,0.000019962286,0.000020147227,0.000020015757,0.000020148362,0.000019594363,0.000020487147,0.000020317948,0.000020605945,0.000020002859,0.000020306577,0.000020034684,0.00002012906,0.000019654193,0.00002048316,0.000020177107,0.000020471463,0.000019787421,0.000020457079,0.000020054258,0.000020700525,0.000019985146,0.0000210243,0.000020701493,0.000021395228,0.000020519095,0.000021059597,0.000020567348,0.000020852218,0.000020613157,0.000021473046,0.000021120135,0.00002093892,0.000019896945,0.000020304098,0.000020030022,0.000020372567,0.000019645648,0.000020576568,0.00001999893,0.000020499341,0.000019609206,0.000020096473,0.00001958041,0.000019856343,0.000019498382,0.000020633475,0.000020541434,0.000021034968,0.000020163181,0.000020571506,0.000020060894,0.000019915682,0.000019635478,0.000020034588,0.00002124463,0.000020752806,0.000020566955,0.000020767953,0.000021492344,0.000021853497,0.00002101602,0.000020796373,0.000021552833,0.000023107368,0.000024648703,0.000018812863,0.000011403504,0.00001347341],[0.000016096603,0.000014516057,0.000015022384,0.000022853701,0.000030642525,0.000030276413,0.000027102933,0.000022820204,0.000020691525,0.000020873307,0.000021126438,0.000020372197,0.000020578984,0.00001989262,0.000020541593,0.000019713963,0.000020748017,0.00002041148,0.000021577593,0.00001991365,0.000021023718,0.000020638789,0.00002144411,0.000020457412,0.000021136677,0.000020584635,0.000021585392,0.000019997422,0.000020628575,0.000020003947,0.00002069936,0.000020051579,0.000020775837,0.00002038131,0.000021525491,0.000020664214,0.000021429842,0.000021008405,0.000021449776,0.000020849811,0.000021011132,0.000020984817,0.000022211841,0.000021078766,0.000021588297,0.000020874142,0.000021499416,0.000020466467,0.000020954782,0.00002060284,0.00002177941,0.000020668767,0.000021169297,0.00002060353,0.000021144822,0.000020411304,0.000020893081,0.000020662854,0.000021707952,0.000020646092,0.000021112884,0.00002055676,0.000021292497,0.000020419733,0.000020971092,0.000020606023,0.00002183804,0.000020701986,0.000021248785,0.000020624288,0.000021197942,0.000020346142,0.000020881887,0.000020627042,0.000021771082,0.000020649202,0.000021123094,0.000020535126,0.000021270702,0.000020323705,0.000020894098,0.000020518273,0.000021789549,0.000020622478,0.00002120698,0.000020589523,0.000021189313,0.000020294323,0.00002083238,0.000020595102,0.000021787533,0.000020618507,0.000021080616,0.000020481713,0.000021247588,0.000020294961,0.000020871097,0.000020507532,0.000021799462,0.000020635127,0.00002122691,0.000020617405,0.000021214524,0.00002031694,0.000020847843,0.00002061475,0.000021809463,0.00002065137,0.000021111195,0.000020502624,0.000021252736,0.000020302821,0.000020876332,0.000020498443,0.000021778225,0.000020592586,0.000021177291,0.00002056515,0.00002117689,0.000020326845,0.000020870322,0.000020623895,0.000021784394,0.000020646467,0.000021086164,0.000020488864,0.000021229624,0.0000203029,0.000020873187,0.000020512562,0.000021760912,0.000020608382,0.000021189271,0.000020564974,0.000021149179,0.000020289699,0.000020815896,0.000020593607,0.000021777892,0.000020652531,0.000021099662,0.000020512423,0.000021259772,0.000020322503,0.000020899617,0.000020534246,0.000021811209,0.000020644102,0.00002122353,0.00002059844,0.00002118513,0.000020300924,0.000020837051,0.00002059948,0.000021770458,0.000020620353,0.000021085882,0.000020492049,0.000021252798,0.00002030586,0.000020885114,0.000020518957,0.00002180545,0.000020622556,0.00002120945,0.000020596082,0.000021199094,0.000020318801,0.00002085862,0.000020629539,0.000021818409,0.000020684167,0.000021136979,0.000020544743,0.000021302796,0.000020368816,0.00002094567,0.000020580532,0.000021854477,0.000020699874,0.000021269241,0.000020648002,0.00002124994,0.00002046024,0.000020974914,0.000020761378,0.000021872303,0.000020740796,0.000021078622,0.000020500063,0.000021157006,0.000020222878,0.000020742122,0.000020314132,0.000021596945,0.000020446645,0.000021089865,0.000020472458,0.000021266076,0.00002019399,0.000020973634,0.000020535204,0.000021985292,0.000020539084,0.000021234462,0.000020576568,0.000021360243,0.0000205073,0.00002105361,0.000020806889,0.00002193572,0.000021027305,0.000021543954,0.000020978434,0.000021564407,0.00002092421,0.000021491196,0.000021531261,0.000022757376,0.000021359776,0.000021281636,0.000020588188,0.00002121315,0.000020400914,0.000020746573,0.000020261583,0.000021204474,0.000019999063,0.0000206235,0.000019927462,0.000020718893,0.000019793952,0.000020615635,0.000020471676,0.00002196126,0.000020768766,0.000020999973,0.00002053732,0.00002062419,0.000019955702,0.000019775141,0.00001999624,0.000020604275,0.000020833117,0.000020808377,0.000020551643,0.000020904105,0.000020927979,0.000020015643,0.000019711613,0.000021216509,0.000021812792,0.000025583195,0.000019930483,0.000012182854,0.000012800237],[0.000016685774,0.000014005807,0.000015651083,0.000023044959,0.000032486674,0.000030427303,0.000025251487,0.000022054655,0.000019760699,0.000020075287,0.000019486095,0.00001994946,0.000019533969,0.000019792158,0.000019281777,0.00001976185,0.000019397063,0.000020573016,0.000019511534,0.00001993957,0.000019640665,0.000020820782,0.000020242365,0.000020896012,0.000019859563,0.000020711424,0.000019476603,0.000019743538,0.000019112926,0.000019923147,0.000019182826,0.000020010339,0.000019310666,0.00002054204,0.00001981259,0.000020735635,0.000020390798,0.000021146858,0.000020186,0.000020572194,0.000019810419,0.000020786341,0.000020322115,0.000020475387,0.00002019139,0.00002036806,0.000019873127,0.000020065565,0.00001972233,0.000020628418,0.000020221087,0.000020441263,0.000020199479,0.000020511621,0.000020078101,0.000020221296,0.000020004365,0.000020657062,0.000020374548,0.000020221742,0.000020113248,0.000020258742,0.000019869205,0.000020069965,0.000019782326,0.000020679336,0.00002028407,0.000020553582,0.000020255055,0.000020653515,0.000020152838,0.000020315274,0.00002003411,0.00002071105,0.000020377889,0.00002025573,0.00002008379,0.000020227739,0.000019785837,0.000020002459,0.00001969891,0.000020619605,0.00002023704,0.00002049414,0.00002020782,0.000020615242,0.00002012098,0.000020245707,0.000019976342,0.000020636564,0.000020343115,0.0000201922,0.000020033154,0.000020177262,0.000019770068,0.000019976722,0.000019672683,0.000020603862,0.000020231038,0.000020488395,0.000020213547,0.000020630523,0.000020142232,0.000020268946,0.000019990863,0.000020660056,0.000020373574,0.000020242327,0.000020081203,0.000020218404,0.000019796764,0.0000200028,0.000019690928,0.000020605532,0.000020222607,0.000020467909,0.00002018138,0.00002061416,0.000020162508,0.000020299743,0.000020022802,0.00002065781,0.000020370528,0.00002023926,0.000020094612,0.000020206897,0.00001980188,0.00002000036,0.000019706651,0.000020610742,0.000020234993,0.000020462972,0.000020182284,0.000020558524,0.000020078847,0.000020219659,0.00001998663,0.000020646998,0.000020360932,0.0000202239,0.000020082507,0.00002020127,0.000019790628,0.000019992198,0.000019698478,0.000020628477,0.000020255131,0.000020508021,0.000020225425,0.000020629697,0.000020136067,0.000020262936,0.00002000181,0.00002066313,0.000020359319,0.000020207726,0.00002005816,0.00002019788,0.000019785704,0.000019994142,0.000019690326,0.000020625506,0.000020237387,0.000020493359,0.000020202157,0.000020631724,0.000020142195,0.00002028755,0.00002001885,0.000020694544,0.00002040776,0.000020276351,0.000020112864,0.000020250824,0.000019841635,0.000020052958,0.000019746458,0.000020677462,0.00002030013,0.00002056931,0.000020283758,0.000020685746,0.000020260037,0.000020412199,0.000020151552,0.000020803613,0.000020476205,0.000020285712,0.000020076704,0.000020142292,0.000019701109,0.000019876654,0.000019499146,0.000020387513,0.000020003183,0.000020259766,0.000019962916,0.00002049541,0.00001999416,0.000020160547,0.00001979618,0.000020592057,0.000020148054,0.000020210078,0.000019745969,0.000020203699,0.000019550145,0.000019870738,0.000019581212,0.000020389514,0.000020019002,0.000020534833,0.000020419579,0.000020990561,0.00002051661,0.000020687461,0.00002036897,0.000021002696,0.000020645659,0.000020362077,0.00002000839,0.000019909661,0.000019621513,0.000019812913,0.000019315603,0.000020163567,0.00001947792,0.000019783874,0.000019251092,0.000020115436,0.000019683212,0.000020200441,0.000019628196,0.000020671567,0.000020201367,0.000020703448,0.00002005397,0.000020554073,0.000020155492,0.00002011818,0.000019606905,0.000019987508,0.000021053855,0.000020749956,0.000020740817,0.00002042515,0.000021037917,0.000021757176,0.000021234646,0.000021250122,0.000021006,0.000022441152,0.000025175,0.00002060903,0.000011804407,0.000013092127],[0.000016419946,0.000014196087,0.000013471381,0.000024184026,0.00003218334,0.000031289695,0.00002711074,0.000023506125,0.00002117711,0.000020845835,0.000020220255,0.000020222376,0.000020814092,0.00002044142,0.000020764664,0.000020440193,0.000021093021,0.000020813794,0.000021043455,0.000019938048,0.00002123181,0.000021199803,0.000021812666,0.000021103304,0.000021548105,0.000020949106,0.000020896949,0.00001981346,0.00002068681,0.000020554875,0.000020936843,0.000020529958,0.000020912677,0.000020933969,0.00002127202,0.00002080143,0.000021705657,0.00002145974,0.000021337768,0.00002111214,0.000021091835,0.000021451004,0.000021637414,0.000021035108,0.000021164473,0.000021046586,0.000020913296,0.000020661948,0.000021140992,0.000021378524,0.00002159503,0.00002091597,0.000021421667,0.000021176907,0.000021123318,0.000020877149,0.000021258493,0.000021405638,0.000021464284,0.000020766724,0.000021013775,0.000020932212,0.000020980075,0.000020573116,0.000021073298,0.000021221162,0.000021500236,0.000020813713,0.000021431497,0.000021155996,0.000021184504,0.000020820802,0.000021267213,0.000021257783,0.000021347943,0.000020623462,0.000020944111,0.000020776768,0.000020879477,0.00002046779,0.000021022153,0.000021166734,0.000021456037,0.000020748395,0.000021355945,0.000021114538,0.00002117176,0.00002076316,0.000021187434,0.000021218593,0.000021321333,0.000020588855,0.000020884538,0.000020775777,0.000020915031,0.000020459694,0.000020984398,0.000021146334,0.000021445398,0.00002073609,0.000021340982,0.000021132648,0.000021194182,0.000020792724,0.000021204574,0.00002125152,0.000021351934,0.000020636684,0.00002093245,0.000020824911,0.000020941994,0.000020496565,0.000021011692,0.000021166692,0.000021451064,0.000020733618,0.000021344891,0.000021152204,0.000021252616,0.000020858244,0.000021238757,0.000021276159,0.000021365848,0.000020662104,0.000020963196,0.000020841939,0.000020951204,0.000020516885,0.00002102899,0.00002117925,0.000021468215,0.00002075069,0.000021333128,0.000021061504,0.000021116972,0.000020752528,0.000021199074,0.00002125436,0.000021332153,0.00002062649,0.000020919439,0.000020797801,0.000020916188,0.00002048566,0.000021012072,0.000021175838,0.000021475422,0.000020756845,0.000021376058,0.000021127285,0.000021175818,0.00002077859,0.00002122098,0.000021254926,0.000021341002,0.00002061141,0.00002091128,0.000020797324,0.000020927162,0.000020475836,0.000021000973,0.000021162534,0.000021462543,0.000020739353,0.000021355743,0.000021125936,0.000021198104,0.000020806649,0.000021257298,0.00002128793,0.000021391983,0.000020687403,0.000020985539,0.000020867732,0.000020979554,0.000020536147,0.000021044698,0.00002122343,0.000021519028,0.000020809168,0.000021434194,0.000021189151,0.000021252716,0.000020932212,0.000021342958,0.000021367578,0.000021358188,0.00002063438,0.000020791118,0.000020642352,0.000020697644,0.000020285674,0.000020742142,0.000020808038,0.000021137343,0.000020442882,0.000021097307,0.000020976195,0.000021209245,0.000020668924,0.00002124153,0.000021051905,0.000021429043,0.000020637588,0.000021037496,0.000020848838,0.000020849911,0.000020553387,0.000020957938,0.000021042131,0.000020979314,0.000020601818,0.000021352975,0.000021287606,0.000021252068,0.000021186606,0.000021375672,0.000021540605,0.000021159487,0.000020612786,0.000020493047,0.00002056772,0.000020633672,0.000020201445,0.000020496465,0.000020694879,0.000020656667,0.000019818828,0.000020560248,0.000020602683,0.000021148491,0.000020525358,0.000021143673,0.000020801212,0.000021142825,0.000020243739,0.000020397256,0.000020419773,0.000020342493,0.000020017036,0.00001937924,0.00001980513,0.000019487787,0.000020589425,0.000019983563,0.000020716046,0.000020807145,0.00002155865,0.000021040125,0.000021062106,0.000021290996,0.000022148892,0.000025293253,0.000021350836,0.000012098116,0.00001329633],[0.000016016747,0.000014294321,0.00001349898,0.000020240495,0.00003103389,0.00003217125,0.000027028467,0.000024743851,0.000021529579,0.000021496997,0.0000199522,0.000020410409,0.000019401707,0.00001999706,0.000019787005,0.000020863117,0.000019866704,0.00002079094,0.000019466705,0.000019950203,0.000019406203,0.000020902968,0.000020216805,0.000021484782,0.000019822835,0.000021002237,0.000019360343,0.000020089057,0.000019391793,0.00002103206,0.00002014377,0.000021116288,0.000019433966,0.000020740363,0.00001983403,0.000020863057,0.000020243235,0.000021625963,0.000020702639,0.00002161883,0.000020136702,0.000021578006,0.000020505851,0.00002112376,0.000019990044,0.00002091894,0.000020214819,0.000021082966,0.000019969808,0.000021336627,0.000020218944,0.00002085021,0.000019898956,0.000020871037,0.000020214917,0.000021210339,0.000020228954,0.000021585145,0.0000204093,0.000020882784,0.000019903966,0.000020861067,0.000020155338,0.000020964875,0.000019852632,0.000021206617,0.0000200494,0.000020760664,0.000019863994,0.000020917685,0.000020064148,0.000021115444,0.000020037302,0.00002142093,0.000020103103,0.000020650425,0.000019743107,0.000020727412,0.000019969673,0.000020847843,0.000019774216,0.000021128577,0.000019949422,0.000020641033,0.000019752673,0.00002081945,0.00002001618,0.000021038099,0.000019996945,0.000021390617,0.000020098198,0.000020622145,0.000019690402,0.00002069784,0.000019986097,0.000020834128,0.000019728726,0.00002107963,0.000019912035,0.000020603273,0.000019733261,0.000020834546,0.000020044812,0.000021078242,0.000020011674,0.000021412967,0.000020110678,0.00002064926,0.00001972158,0.000020743566,0.000020024903,0.000020879557,0.0000197725,0.000021122049,0.000019954445,0.000020642352,0.000019782969,0.000020909289,0.000020137893,0.00002116314,0.000020078254,0.000021484824,0.000020192758,0.000020713973,0.000019779856,0.00002078416,0.000020072683,0.000020917165,0.000019823667,0.000021183594,0.00002000036,0.000020678348,0.000019768768,0.00002079806,0.000020004576,0.000021051523,0.000020026278,0.000021431251,0.000020143156,0.000020653635,0.00001972536,0.000020720494,0.000020027654,0.000020889478,0.000019789459,0.000021137766,0.000019961926,0.000020655682,0.000019766692,0.000020832736,0.000020025112,0.00002105789,0.000020025458,0.00002141744,0.000020121422,0.000020630523,0.000019717498,0.000020721698,0.000020018755,0.000020865922,0.000019758796,0.00002111516,0.00001993915,0.000020637608,0.000019750169,0.000020845695,0.000020037378,0.000021078924,0.00002003006,0.000021450409,0.000020165335,0.000020721423,0.000019793442,0.000020830612,0.000020096146,0.000020949527,0.000019805733,0.000021186888,0.000020000263,0.000020708067,0.00001982794,0.000020944273,0.000020174799,0.000021272832,0.00002018594,0.000021629387,0.000020236654,0.000020709096,0.000019679119,0.000020667012,0.000019895047,0.000020713322,0.000019561,0.000020876472,0.000019725321,0.000020422422,0.000019620578,0.00002082529,0.00002009747,0.000021102116,0.000019921248,0.00002122999,0.000020016503,0.00002075053,0.000019760831,0.000020855876,0.000020027901,0.000020984136,0.00001987398,0.000021054677,0.000019975256,0.000020625663,0.000019876348,0.000020960197,0.000020540436,0.000021656613,0.00002053738,0.000021684014,0.00002026342,0.000020494375,0.000019681898,0.000020490877,0.00002024451,0.00002070799,0.000019515031,0.000020625645,0.000019395196,0.000019860263,0.000019115168,0.000020453666,0.000019838079,0.000020979916,0.000019646623,0.000020989763,0.000019514213,0.000020344667,0.00001919009,0.00002051479,0.00002013382,0.000020741885,0.000019348512,0.000020110696,0.000020193509,0.000020434656,0.0000198915,0.000020409729,0.000021361853,0.000022041366,0.000021643935,0.000021555443,0.000021958202,0.000023148174,0.00002512528,0.000019133406,0.000011990308,0.000013374223],[0.000015839663,0.000013935103,0.000012099858,0.000018270652,0.000030701052,0.000035535675,0.00003182315,0.000026676747,0.00002364719,0.000022690932,0.000021803058,0.000020455578,0.000020641997,0.000019968533,0.000020926203,0.000020261235,0.000021247426,0.00002063135,0.000021099138,0.000019494888,0.000020698059,0.00002034979,0.000021711761,0.000020690126,0.000021369313,0.000020255537,0.000020593627,0.000019832176,0.000020972195,0.000020822132,0.000022017375,0.000020767398,0.000021099077,0.00002036967,0.000020982376,0.000020316165,0.000021601436,0.000021584756,0.000022568654,0.000021439735,0.00002180836,0.000021607924,0.000022231103,0.00002128663,0.000021713357,0.000021372063,0.000022208282,0.000021076312,0.000021711576,0.000021015678,0.000021475566,0.000020439138,0.000021196425,0.000020800935,0.00002172506,0.00002091174,0.000021752341,0.000021326336,0.0000219443,0.000020766467,0.000021328939,0.000020990801,0.000021689018,0.000020741885,0.000021368332,0.000020652551,0.000021146274,0.000020016236,0.000021042331,0.000020626,0.000021460886,0.000020579138,0.000021447791,0.000020948526,0.000021463384,0.000020359243,0.000021114836,0.00002080419,0.00002146195,0.000020550095,0.00002124378,0.000020548607,0.000020979774,0.00001991475,0.000020865484,0.000020526297,0.000021391312,0.00002055964,0.0000214184,0.000020991023,0.000021517468,0.00002039605,0.00002108725,0.000020784437,0.00002151045,0.000020565583,0.000021234848,0.000020502135,0.000020934845,0.000019886835,0.00002083997,0.000020530251,0.00002140576,0.000020596788,0.000021430391,0.000020984156,0.00002150116,0.000020411713,0.00002111923,0.000020828189,0.000021535103,0.000020595573,0.000021272668,0.000020547253,0.00002100482,0.000019960937,0.000020937661,0.000020632217,0.000021522434,0.00002067466,0.000021522845,0.000021087068,0.00002160941,0.000020485759,0.000021159347,0.000020865426,0.000021586218,0.000020660233,0.000021341757,0.000020637568,0.000021069158,0.000019973599,0.000020939098,0.000020564132,0.00002139276,0.000020573487,0.000021453192,0.000021034066,0.00002153467,0.000020423064,0.000021092521,0.000020798614,0.000021518637,0.000020600286,0.000021274089,0.000020551213,0.000020990283,0.000019915738,0.000020875774,0.00002052896,0.00002137991,0.000020562033,0.000021411965,0.000020978534,0.00002149216,0.000020392938,0.000021088355,0.00002079681,0.000021530912,0.000020601306,0.000021272606,0.000020551113,0.000021007923,0.000019924344,0.000020889358,0.000020549976,0.00002141113,0.000020572526,0.00002143724,0.000021007143,0.000021538284,0.000020454074,0.000021175718,0.000020898382,0.000021641768,0.000020701591,0.000021354213,0.000020610722,0.000021050058,0.000019969484,0.000020966754,0.00002065257,0.000021577674,0.000020773083,0.000021672293,0.000021217964,0.000021710644,0.000020512383,0.00002105809,0.000020770904,0.000021326008,0.000020511034,0.000020995525,0.000020366933,0.000020916666,0.000019711388,0.000020803076,0.000020589818,0.000021698806,0.000020707179,0.00002152303,0.000020964795,0.000021446585,0.000020566682,0.000021233916,0.000021010508,0.000021594844,0.00002088356,0.00002131009,0.000020761872,0.000021000073,0.000020142119,0.000020873566,0.000020751162,0.000021857146,0.000021375019,0.000021917196,0.00002169388,0.000021868174,0.000020830712,0.000020916905,0.000020867614,0.000021520034,0.00002079901,0.000020890253,0.000020055559,0.000020437132,0.000019099916,0.00002024559,0.00001998928,0.000021228327,0.000020374684,0.000021187696,0.000020438496,0.000020772706,0.000019929912,0.000020452962,0.000020487674,0.000021235659,0.000020708483,0.000020507161,0.00001999092,0.000020392354,0.000020039288,0.000020029946,0.000020376121,0.000020847565,0.00002110588,0.000020696794,0.000020416366,0.000022401273,0.00002359018,0.000025478526,0.000018210498,0.000011611329,0.000013294961],[0.00001596968,0.0000132278055,0.000012053341,0.000016582899,0.000030307034,0.00003400422,0.000028998888,0.000025383844,0.000022572875,0.000021702117,0.000020477593,0.00001998366,0.000019338275,0.000019548037,0.000019213476,0.000019990597,0.00001994908,0.00002068979,0.000019341574,0.000019448706,0.000019145962,0.000020508569,0.000019708868,0.000021056203,0.00001980581,0.000020802938,0.000019171232,0.00002006784,0.000019393698,0.000021027327,0.000019996887,0.000020925325,0.00001994769,0.000020943115,0.000019742052,0.000020667092,0.000020439587,0.000021731255,0.00002081423,0.00002151164,0.000021043636,0.000022170088,0.000021077358,0.00002136811,0.00002049121,0.000021089643,0.000020407217,0.000020769181,0.000020601032,0.000021322207,0.00002027844,0.000020683003,0.000020128944,0.000021058713,0.000020249008,0.00002110753,0.00002083683,0.000021872554,0.00002066583,0.000020990201,0.00002034164,0.00002105028,0.000020046762,0.000020573958,0.000020237656,0.000021046324,0.000019782157,0.000020307914,0.000019930027,0.000021118825,0.000020027672,0.000021052489,0.000020512754,0.000021684511,0.000020169027,0.000020697724,0.00002011183,0.000021037074,0.000019892354,0.000020529116,0.000020180052,0.000021063815,0.000019748906,0.000020314015,0.00001993784,0.00002109093,0.000020024618,0.000021048654,0.000020570427,0.000021733618,0.00002026456,0.00002073346,0.000020102549,0.00002098816,0.0000199056,0.000020529273,0.000020175723,0.000021017682,0.000019709376,0.000020264133,0.000019894838,0.000021064938,0.000020010148,0.00002104803,0.000020579962,0.00002173082,0.000020246014,0.000020743291,0.000020124626,0.000021034186,0.00001992292,0.000020548214,0.00002021106,0.0000210738,0.000019777817,0.000020356698,0.000020009136,0.000021183292,0.000020113652,0.000021117052,0.000020637548,0.000021801477,0.000020331845,0.000020794787,0.00002016153,0.000021051223,0.000019978075,0.00002060508,0.000020268308,0.000021132666,0.00001983645,0.000020362699,0.000019966019,0.00002111784,0.000020055253,0.000021038959,0.000020578804,0.000021741704,0.000020272078,0.000020722806,0.00002010391,0.000020984398,0.00001990839,0.000020524927,0.000020179878,0.00002102873,0.000019730816,0.000020288731,0.00001991724,0.000021076092,0.000020011254,0.000021030075,0.000020549016,0.000021703814,0.000020237714,0.000020708188,0.000020104428,0.000020993624,0.00001992271,0.000020544117,0.00002020154,0.000021059475,0.000019751958,0.000020300711,0.000019933505,0.000021100224,0.000020031244,0.000021063915,0.000020574802,0.000021746431,0.000020268038,0.000020773952,0.000020156242,0.000021095175,0.000020014726,0.000020671567,0.000020283487,0.000021145266,0.000019807396,0.000020362737,0.000019985202,0.000021200753,0.000020199286,0.000021290265,0.000020793934,0.000021986216,0.000020457372,0.000020826163,0.000020174106,0.000021025102,0.000019928772,0.000020395019,0.000019936222,0.000020844045,0.000019594008,0.000020030806,0.000019793084,0.000021136517,0.000020269663,0.0000211783,0.000020614809,0.000021666052,0.0000202796,0.00002085526,0.000020331381,0.000021254844,0.000020069621,0.00002076219,0.000020399997,0.0000212453,0.000020048712,0.000020547253,0.000020358368,0.000021382724,0.000020813575,0.000021881568,0.000021556203,0.00002237036,0.000020903704,0.000020847623,0.00002009609,0.00002059082,0.000019950145,0.000020119158,0.000019567156,0.00001998101,0.00001888797,0.000019218149,0.000018937497,0.000020561405,0.000019840158,0.000021254906,0.000020295329,0.000021342,0.000019808887,0.000020800657,0.000019920279,0.0000210694,0.00002026311,0.000020777838,0.000020009804,0.000020469648,0.000020952384,0.00002098926,0.000020773477,0.000021248987,0.000021279466,0.000021791813,0.000021353726,0.000021887785,0.000022400718,0.000025612855,0.00002582942,0.000017540873,0.000010722513,0.000013276639],[0.000015567945,0.000012792097,0.000010292978,0.00001637177,0.000027767031,0.000034511835,0.000029075261,0.0000258275,0.000023177729,0.0000222363,0.000020749443,0.000020474332,0.0000206096,0.000020197533,0.000020338071,0.000020207302,0.000021087953,0.000020977674,0.00002079655,0.000019724419,0.00002077223,0.00002079209,0.000021293068,0.00002061013,0.000021810753,0.000020920957,0.000021046906,0.000020172547,0.000020959716,0.000020972495,0.000021322532,0.00002058165,0.000021533211,0.000021127025,0.000021490665,0.00002093876,0.000021965803,0.000021748981,0.000021855789,0.000021381013,0.0000224042,0.000022351638,0.00002281235,0.000021917718,0.00002198911,0.000021723548,0.000021226546,0.00002067671,0.000021795388,0.000021791793,0.0000221629,0.000021130129,0.000021911554,0.000021569364,0.000021505773,0.000020938242,0.000022127337,0.000021982023,0.000022406442,0.000021305012,0.000021880878,0.000021504975,0.000021096965,0.000020374315,0.000021351323,0.000021311187,0.000021500648,0.00002047525,0.000021641932,0.000021360489,0.000021542579,0.000020770725,0.00002198737,0.000021601169,0.000021839664,0.000020825904,0.00002166349,0.000021354439,0.000021026282,0.00002025712,0.00002134717,0.000021229078,0.00002141015,0.000020524241,0.00002168931,0.000021310925,0.00002151597,0.000020783844,0.000022000584,0.000021645668,0.000021964293,0.00002092886,0.000021700089,0.00002138766,0.000021051084,0.00002026375,0.000021334226,0.00002120512,0.000021390579,0.000020473963,0.000021635866,0.000021260053,0.00002146412,0.00002075922,0.000021992486,0.00002161786,0.000021951271,0.000020896508,0.000021700916,0.000021411986,0.000021056423,0.000020279136,0.000021346683,0.000021265267,0.000021471304,0.000020582731,0.000021756388,0.000021403881,0.000021575124,0.000020825011,0.00002203939,0.00002171143,0.000022021994,0.0000209899,0.000021747695,0.000021447444,0.000021094911,0.000020327658,0.000021405842,0.000021308932,0.00002150239,0.000020580395,0.000021723154,0.000021379035,0.000021566053,0.000020804051,0.000021987433,0.0000216518,0.00002195711,0.000020938302,0.000021704434,0.000021396902,0.000021031437,0.000020246054,0.000021303264,0.00002119121,0.000021379177,0.000020484373,0.000021657355,0.000021286429,0.000021493062,0.00002076508,0.00002196798,0.000021621901,0.00002194451,0.000020929396,0.000021711474,0.000021411986,0.00002107374,0.000020301892,0.000021344646,0.00002125142,0.000021426755,0.000020501882,0.00002166942,0.000021302754,0.000021518657,0.000020781086,0.000021997814,0.000021638156,0.000021959206,0.00002094595,0.00002173451,0.000021439673,0.000021115744,0.000020371925,0.000021407453,0.00002131765,0.000021505015,0.000020576432,0.000021733744,0.000021391352,0.000021668326,0.00002100446,0.000022225677,0.000021899248,0.000022142049,0.000021039643,0.000021686787,0.00002145935,0.000021000373,0.000020233856,0.000020969113,0.000021074082,0.000021294367,0.00002026651,0.00002141652,0.00002141221,0.00002175454,0.000020879259,0.000022121661,0.000021695558,0.000021912305,0.000021048432,0.000022054339,0.000021519048,0.000021233209,0.00002052156,0.000021649177,0.000021230413,0.000021580927,0.00002095538,0.00002205661,0.000021658181,0.000021915148,0.000021589778,0.000022886503,0.000022540586,0.00002251283,0.000021488677,0.000021415151,0.000021260277,0.000020494648,0.000020082678,0.00002034785,0.000020446781,0.000020450896,0.000019490612,0.00002066518,0.00002077841,0.000021482263,0.000020810181,0.000022033086,0.000021118765,0.00002141797,0.000020831088,0.000021578744,0.000021216974,0.000020777066,0.000020642196,0.00002061536,0.000020783604,0.000021473865,0.000021854685,0.000021544345,0.000021900481,0.000021377404,0.000022032833,0.000021509692,0.000021572017,0.000023365546,0.00002511673,0.000027253285,0.00001850517,0.000011153835,0.000013302341],[0.000014964118,0.000012042725,0.000010549786,0.000014076053,0.000025719377,0.000033588272,0.00002685138,0.00002478213,0.000022033253,0.000021684014,0.000020363086,0.000020437072,0.000019258969,0.000019677524,0.000019348587,0.0000200516,0.000019736932,0.000020730435,0.000019524916,0.000019971922,0.00001923986,0.000020454467,0.000019422016,0.000020348198,0.000019224544,0.00002062763,0.000019116735,0.000020102396,0.000019082783,0.000020587304,0.00001923276,0.000020026793,0.000019186651,0.00002066644,0.000019680321,0.000020713895,0.000020028303,0.000021176766,0.000019962687,0.00002068247,0.000020087906,0.000021686681,0.000021072574,0.000021667602,0.000020711208,0.000021018264,0.000019651627,0.000019924364,0.00001949578,0.00002094611,0.000020346783,0.000021041129,0.000020276795,0.000021073982,0.000019568257,0.000020219042,0.000019695359,0.00002125517,0.000020420688,0.0000210603,0.000020333378,0.000020995607,0.000019347737,0.000019582649,0.000019057286,0.000020474683,0.00001952501,0.00002022043,0.000019615863,0.000020772291,0.000019242116,0.000020068663,0.000019299732,0.000020875557,0.000019732228,0.000020523616,0.000019837622,0.000020788799,0.000019082583,0.000019442326,0.000018887213,0.000020369574,0.000019425795,0.000020240803,0.000019626004,0.000020768111,0.000019252433,0.000020068492,0.000019316047,0.00002091583,0.000019869356,0.000020659643,0.000019970876,0.000020861964,0.000019130797,0.000019434428,0.000018869443,0.000020352816,0.000019425406,0.000020221818,0.000019594456,0.000020731444,0.000019218038,0.000020040721,0.000019287643,0.000020900956,0.000019855868,0.0000206368,0.000019941148,0.00002086843,0.000019145707,0.00001945468,0.00001889878,0.000020412628,0.000019513469,0.000020342532,0.0000197112,0.00002083719,0.000019304813,0.000020107553,0.000019365956,0.000020972535,0.000019957966,0.000020737849,0.000020029678,0.000020925485,0.000019205287,0.000019499425,0.00001894635,0.000020435944,0.00001952987,0.000020346044,0.000019713418,0.00002083991,0.000019320025,0.000020111102,0.000019344545,0.000020911342,0.00001988818,0.00002067129,0.00001999216,0.000020868887,0.000019136727,0.000019416257,0.00001884655,0.000020325584,0.000019405315,0.000020208054,0.000019594887,0.000020748017,0.00001924854,0.000020066713,0.000019309746,0.00002091208,0.000019892657,0.000020685804,0.000020000989,0.000020897687,0.00001918184,0.000019476249,0.000018911365,0.000020374975,0.00001942963,0.000020218211,0.000019605315,0.000020746138,0.000019236926,0.00002005728,0.000019298866,0.000020898242,0.000019859279,0.000020675569,0.000019997327,0.000020914154,0.000019165216,0.000019490575,0.000018919573,0.000020434325,0.000019498606,0.000020321126,0.000019677618,0.000020843687,0.00001936989,0.000020238642,0.00001953965,0.000021161788,0.00002007812,0.000020750867,0.0000200386,0.00002091136,0.000019229607,0.000019439043,0.000018822804,0.000020284804,0.000019301498,0.000020016389,0.000019484962,0.00002075162,0.00001938719,0.000020199286,0.000019457424,0.000021034366,0.000019958385,0.000020768051,0.000019950392,0.000020862859,0.000019227442,0.000019649695,0.000019144321,0.000020636939,0.000019929455,0.00002089135,0.000020106652,0.000021086284,0.000019972971,0.00002098722,0.00002057025,0.000022134702,0.00002125517,0.000021657024,0.00002042137,0.000020921694,0.00001959498,0.00001961143,0.000018896077,0.000019959394,0.000018920528,0.00001952421,0.000018952474,0.000020404977,0.000019194465,0.00002021399,0.000019104707,0.000020563857,0.00001934283,0.000020652531,0.00001973439,0.000020917863,0.000019368654,0.000019825879,0.000019210655,0.000020073161,0.00002100602,0.000021265429,0.000021105478,0.000021230799,0.000021459924,0.000022041471,0.000021065864,0.0000210387,0.000021769732,0.00002435634,0.000025469295,0.000017466275,0.00001083878,0.000013476534],[0.000015261947,0.000011202584,0.000010252029,0.0000138227315,0.000026558764,0.00003665282,0.000029702953,0.000024928926,0.000022789063,0.000022151722,0.000021547407,0.000020219426,0.000020324906,0.000019608924,0.000020088579,0.000019461044,0.000020750986,0.000020398655,0.000021300946,0.000019523186,0.000020584832,0.000019905487,0.000020564581,0.000019409017,0.000020572015,0.000019406316,0.000020365555,0.000018814064,0.000019969502,0.000019393994,0.00002002815,0.00001882758,0.000020156665,0.000019560643,0.000020746713,0.000019543098,0.000021139762,0.00002052665,0.00002107796,0.000019977904,0.000021103082,0.000020744674,0.000022115355,0.00002081798,0.000021711141,0.000020737732,0.00002090524,0.00001941035,0.00002033487,0.00001993056,0.000021441941,0.000020045787,0.000021429678,0.00002031694,0.000020677482,0.000019233237,0.000020477788,0.000020042651,0.000021421178,0.00002004986,0.000021133412,0.00002035468,0.000020346451,0.000018756898,0.000019718625,0.0000193807,0.000020593332,0.00001912361,0.000020516316,0.000019781892,0.000020222607,0.000018685003,0.000020086854,0.000019501304,0.000020777205,0.000019290494,0.000020548998,0.000019924972,0.000020018373,0.000018427947,0.000019526407,0.000019201952,0.000020483805,0.000019019577,0.000020573545,0.000019709114,0.000020286176,0.000018737357,0.000020136547,0.000019536035,0.000020946349,0.00001948825,0.000020724705,0.000020049361,0.000020096166,0.000018460049,0.000019534993,0.000019203784,0.00002049459,0.000019022606,0.000020565816,0.000019668782,0.000020243255,0.00001868144,0.000020099444,0.000019479332,0.000020941497,0.000019459336,0.000020698099,0.000020050758,0.000020142137,0.00001849767,0.000019560963,0.00001926191,0.000020585361,0.000019118103,0.000020653693,0.00001976594,0.000020320369,0.000018793264,0.000020184229,0.000019609373,0.000021018925,0.000019572699,0.000020800142,0.000020109777,0.000020154914,0.00001853546,0.00001960266,0.000019287772,0.000020601487,0.00001914085,0.000020659583,0.000019780535,0.000020327503,0.000018801276,0.000020168682,0.000019554078,0.000020931333,0.00001951762,0.00002074966,0.000020055157,0.000020090398,0.000018479828,0.000019549754,0.000019212064,0.000020489042,0.000019005434,0.000020545569,0.00001966837,0.000020274012,0.000018740036,0.000020143405,0.000019541478,0.000020971313,0.000019533038,0.00002076312,0.000020095533,0.000020149724,0.000018523144,0.00001957113,0.000019242741,0.000020490428,0.000019032912,0.000020546117,0.000019687266,0.000020240534,0.000018696981,0.00002009565,0.00001949721,0.000020904263,0.000019461693,0.000020726067,0.000020060665,0.000020123436,0.000018475088,0.000019550742,0.000019233861,0.000020543492,0.000019083984,0.000020638434,0.000019764168,0.0000203633,0.000018890365,0.000020246536,0.000019762321,0.000021071852,0.000019626266,0.000020684383,0.000019997671,0.000020019119,0.000018477309,0.000019417072,0.000019087734,0.000020288053,0.000018840135,0.000020236615,0.00001964441,0.000020303227,0.000018763178,0.000020337548,0.000019789006,0.000021205384,0.000019606568,0.000020879796,0.000019927082,0.00002009787,0.00001869049,0.000019934969,0.000019612311,0.000020914893,0.000019800937,0.000021062247,0.000020146383,0.000020764466,0.000019969619,0.000021246555,0.000021086345,0.000022505617,0.000021142323,0.000021397513,0.000020589014,0.000020474352,0.000019412497,0.000019817675,0.000019351408,0.000020052268,0.000018599578,0.000019847672,0.000019338606,0.000019948206,0.000018647264,0.00002012906,0.00001937035,0.000020224152,0.00001901283,0.000020250765,0.000019769031,0.00001962679,0.00001898368,0.000019252984,0.000019373014,0.000020405154,0.000020357242,0.000020739037,0.000020343174,0.000020814528,0.000020739335,0.000020124127,0.00001998238,0.000021656386,0.000023115106,0.00002625456,0.00001819026,0.000011576786,0.000012853521],[0.00001561353,0.000012157658,0.000011212941,0.000014623461,0.000027918244,0.000034574292,0.000026946625,0.00002328238,0.000020711683,0.00002089599,0.000019838079,0.000019829036,0.000019128407,0.00001932113,0.000018807606,0.000019295756,0.000019183522,0.000020093752,0.00001920708,0.000019135978,0.000019069084,0.000019763376,0.000019017853,0.000019476638,0.000018520337,0.000019570422,0.000018149747,0.000018654699,0.000017987653,0.000019251846,0.000018102126,0.000018805007,0.00001823521,0.000019840782,0.000018905288,0.000019726374,0.00001955229,0.000020791871,0.000019523706,0.000020019957,0.000019319767,0.000020592843,0.000019652189,0.000019872085,0.00001977003,0.000020228645,0.000019255553,0.00001922207,0.0000186576,0.000019720996,0.000018982339,0.000019356208,0.000019412497,0.000020153147,0.000019029918,0.00001925728,0.000018733088,0.000020132842,0.000019130468,0.000019433633,0.00001932959,0.000020048694,0.000018674511,0.000018581884,0.000018128885,0.0000193368,0.000018484376,0.000018728264,0.000018738054,0.000019782326,0.000018435805,0.000018770032,0.000018229472,0.000019762096,0.000018616276,0.000018980672,0.000018795432,0.000019822797,0.000018314646,0.000018341565,0.000017909617,0.000019278208,0.000018403536,0.00001876724,0.00001877673,0.000019869507,0.000018503688,0.000018851762,0.000018296892,0.000019830284,0.00001875148,0.000019109662,0.000018936666,0.00001987887,0.000018380892,0.000018356717,0.000017917167,0.000019249384,0.00001837581,0.000018724639,0.000018735587,0.000019804582,0.000018434153,0.000018771394,0.000018228951,0.000019766316,0.000018703919,0.000019077306,0.000018909705,0.000019871288,0.000018419989,0.000018410014,0.00001795247,0.000019312121,0.000018466317,0.000018815392,0.000018828478,0.000019926263,0.000018553023,0.00001889051,0.000018323557,0.000019851135,0.0000187816,0.0000191433,0.00001898958,0.00001991781,0.000018427543,0.000018416986,0.000017996335,0.00001933549,0.00001847486,0.00001882065,0.00001882485,0.00001991513,0.000018547786,0.000018891158,0.000018327733,0.000019828773,0.000018737857,0.000019095198,0.000018950504,0.000019854051,0.000018370885,0.000018369292,0.000017974706,0.00001927977,0.000018394518,0.000018738949,0.000018733552,0.000019817353,0.00001846681,0.000018832752,0.000018300016,0.000019840725,0.000018780811,0.00001914684,0.000018985469,0.000019922027,0.000018437564,0.000018411769,0.00001797786,0.000019294395,0.000018415738,0.000018749173,0.000018745382,0.000019832025,0.00001845204,0.000018793837,0.000018232671,0.000019772368,0.000018686285,0.000019064575,0.00001889887,0.000019872066,0.000018378298,0.00001835628,0.000017916485,0.00001926913,0.000018418108,0.000018788605,0.000018804038,0.000019932917,0.000018640401,0.000019030735,0.00001845225,0.000020011425,0.000018907615,0.000019237841,0.000018910696,0.00001979584,0.000018315328,0.000018330215,0.000017884067,0.000019213236,0.000018354005,0.00001871059,0.000018579243,0.000019901556,0.000018548812,0.000019039648,0.000018548988,0.000020134916,0.000019007952,0.000019416884,0.000018984836,0.000019972495,0.000018383591,0.000018575276,0.000018290088,0.000019765128,0.000018951028,0.000019720583,0.00001957225,0.00002068604,0.00001954899,0.000020412763,0.000019898254,0.000021339558,0.000020188041,0.000020344221,0.000019783176,0.000020090914,0.000019093724,0.000019000921,0.000018539386,0.000019334586,0.000018245802,0.000018272183,0.000018012235,0.00001925203,0.000018235001,0.000018962943,0.000018410541,0.000019864145,0.00001838859,0.000019018831,0.00001832817,0.000019720073,0.000018539544,0.000019008061,0.00001816384,0.000019404557,0.000019528996,0.00002015457,0.000020141773,0.000020365631,0.00002046469,0.000021516093,0.00002084488,0.000021159465,0.000021133736,0.000023425964,0.000025140716,0.000019171654,0.00001121432,0.000013302519],[0.00001529619,0.000012923286,0.000010240498,0.00001648003,0.000027862283,0.00003594789,0.000028356555,0.000023917692,0.00002167771,0.000021429147,0.000020550919,0.000020075095,0.000020414322,0.000020121863,0.00002019372,0.000019995154,0.000020541278,0.000020503621,0.000020219253,0.00001951868,0.00002046779,0.000020507494,0.000020726857,0.00001986265,0.000020320564,0.000020008316,0.000019861134,0.000018757024,0.000019510715,0.000019513152,0.000020003565,0.000019079545,0.000020065754,0.000020096913,0.000020836036,0.000019947787,0.000021144077,0.000020854066,0.000021114938,0.000020341815,0.000021030035,0.000020916765,0.000020929258,0.000019996716,0.000020492049,0.000020628298,0.000020591568,0.000019788118,0.000020437561,0.000020350002,0.000020573605,0.000019509858,0.000020550035,0.000020505187,0.000020796451,0.000019724475,0.000020566662,0.000020492831,0.000020644575,0.000019481116,0.00002014419,0.00002040595,0.000020235533,0.000019126346,0.000019922654,0.00001996598,0.000020213953,0.00001907234,0.000020127582,0.000020238911,0.000020397876,0.000019154528,0.00002016247,0.000020052365,0.000020315023,0.000019068031,0.00001990298,0.000020143367,0.000020078714,0.00001885108,0.000019823892,0.000019874018,0.000020264713,0.000019101592,0.00002033615,0.000020254454,0.000020504072,0.000019274128,0.000020269605,0.000020132153,0.000020427953,0.000019198456,0.000019973064,0.000020223322,0.00002012359,0.000018898347,0.000019835126,0.000019865794,0.000020230671,0.000019047548,0.000020271016,0.000020188196,0.000020427526,0.000019192872,0.00002020842,0.000020071668,0.000020368776,0.000019143736,0.000019933143,0.000020185922,0.000020119542,0.000018933579,0.00001986697,0.000019902582,0.000020303265,0.000019119434,0.000020357184,0.000020303518,0.000020535754,0.000019293439,0.00002025517,0.00002012904,0.000020418294,0.000019183632,0.000019967332,0.000020230422,0.000020135416,0.000018942663,0.000019907175,0.000019942023,0.000020313355,0.00001912113,0.000020347772,0.000020288053,0.000020540318,0.000019296143,0.000020262338,0.000020138257,0.00002040749,0.000019181802,0.000019959012,0.000020217325,0.000020095322,0.000018894852,0.000019866891,0.000019886322,0.000020242309,0.000019064375,0.000020291303,0.000020189811,0.00002046153,0.000019257739,0.000020267767,0.000020136664,0.000020442394,0.000019228175,0.00002000427,0.000020255266,0.000020156587,0.000018947667,0.000019883497,0.000019924762,0.00002028486,0.00001909394,0.00002029744,0.000020232195,0.00002044715,0.00001920558,0.000020184114,0.000020051486,0.000020330526,0.000019121968,0.000019906112,0.000020173837,0.000020071344,0.00001888098,0.000019809833,0.000019848996,0.000020218464,0.000019081946,0.000020310277,0.000020275926,0.000020587187,0.000019406094,0.000020326475,0.000020252097,0.000020431266,0.00001922011,0.000019836205,0.000020079537,0.000019943278,0.000018813527,0.000019652169,0.000019780082,0.000020133495,0.000018974086,0.000020115533,0.000020217789,0.000020593292,0.000019413534,0.000020541102,0.000020353671,0.00002064621,0.000019423831,0.000020413854,0.000020200116,0.000020246594,0.000019121877,0.000020176223,0.000020070309,0.000020372468,0.00001965382,0.000020975935,0.000020665317,0.000021070666,0.000020544276,0.00002150081,0.000021257298,0.000021079608,0.000020287705,0.00002044251,0.00002071502,0.000020352176,0.000019672701,0.000020079748,0.000020199768,0.000019878737,0.000018834673,0.000019625726,0.00001960627,0.000020339332,0.000019438228,0.000020647863,0.00002023459,0.000020308496,0.000019203582,0.000019750036,0.000020043703,0.000020044334,0.00001939538,0.000019096875,0.000019416497,0.000019392717,0.000020177993,0.000019988882,0.000020647863,0.000020753678,0.00002135391,0.000021166772,0.000021334105,0.000021785705,0.000022986464,0.000025464267,0.000020384285,0.000011737346,0.000013277449],[0.000015159217,0.000014993415,0.0000113675105,0.000016283142,0.000028127117,0.000034224795,0.000027675273,0.000024718709,0.000021251783,0.000021274554,0.000019663137,0.000020033118,0.000019009023,0.000019750527,0.000019516781,0.000020469373,0.000019750281,0.000020559524,0.000019448093,0.00001960769,0.00001947714,0.00002045275,0.000019652638,0.000020297748,0.000019013954,0.000020099846,0.000018561412,0.000018833633,0.000018262219,0.000019609672,0.000018803159,0.000019625388,0.0000185335,0.000020044296,0.000019176188,0.000020008296,0.000019403076,0.000020708563,0.000019748135,0.000020666992,0.000019495537,0.000020785925,0.00001939257,0.00001962288,0.000019025618,0.00002007992,0.000019475952,0.000020181362,0.00001929285,0.00002041183,0.000019237787,0.000019341336,0.000019018053,0.00002003413,0.000019438656,0.00002008988,0.000019260862,0.000020525122,0.00001908271,0.000019169587,0.000018769764,0.00001994499,0.000019028448,0.000019460671,0.000018758723,0.000019995592,0.000018825893,0.000018958983,0.000018765379,0.000019830683,0.000018923236,0.000019456442,0.000018756451,0.000020060952,0.000018673638,0.00001882433,0.000018449735,0.000019725847,0.00001874161,0.000019190054,0.000018555871,0.00001988196,0.000018789071,0.00001904495,0.000018827095,0.000019934056,0.000019008008,0.000019575535,0.000018841914,0.000020154203,0.000018776065,0.000018905414,0.00001852606,0.00001978325,0.000018800309,0.00001923586,0.000018581477,0.000019876235,0.000018760958,0.000018981144,0.000018760387,0.00001985606,0.000018943296,0.00001950054,0.00001877954,0.00002009126,0.000018705632,0.000018823594,0.000018464414,0.000019734918,0.000018781384,0.00001925357,0.0000186172,0.000019933106,0.00001882117,0.000019068413,0.000018850506,0.0000199796,0.000019066956,0.000019635834,0.000018859118,0.000020162914,0.000018773218,0.000018894185,0.000018505894,0.000019777008,0.000018835553,0.000019296014,0.000018641718,0.000019965162,0.000018845201,0.000019080308,0.000018854424,0.000019972342,0.000019073104,0.000019634504,0.00001885937,0.000020162757,0.000018787745,0.000018911762,0.000018529718,0.000019769426,0.00001880133,0.000019211258,0.000018570581,0.000019867195,0.000018769746,0.000018998675,0.000018780489,0.000019888219,0.000019003894,0.000019586367,0.000018861869,0.000020178955,0.000018821009,0.000018956416,0.000018573646,0.00001982533,0.000018856097,0.000019292205,0.0000186457,0.000019950965,0.000018833452,0.000019050764,0.000018816289,0.000019905694,0.000018973778,0.00001952017,0.000018773757,0.00002007255,0.000018680745,0.000018824421,0.000018443612,0.000019729405,0.000018742201,0.000019199279,0.00001854027,0.000019858899,0.000018741772,0.000019002298,0.0000187792,0.000019933183,0.000019091574,0.00001974224,0.000018938597,0.000020283449,0.000018825318,0.000018973526,0.000018457531,0.00001975876,0.000018706649,0.000019129155,0.00001843649,0.000019832345,0.000018645309,0.00001895459,0.000018596635,0.00001996642,0.000019107441,0.000019811629,0.000018913835,0.000020396534,0.000019001502,0.000019514939,0.0000189028,0.00002033012,0.00001910906,0.00001965963,0.000018815446,0.000020110065,0.000018974357,0.000019499295,0.000019043697,0.000020230285,0.000019754218,0.000020833117,0.000019935196,0.00002130495,0.00001967047,0.000019954901,0.00001927218,0.000020418216,0.0000197715,0.000020135376,0.000019286355,0.000020342124,0.000019056415,0.000018959978,0.000018541932,0.000019447443,0.000019014951,0.000019868048,0.00001901709,0.000020315701,0.000018739645,0.000019081073,0.000018272829,0.000019672158,0.00001897861,0.000019716219,0.000018122368,0.000019118977,0.000018729175,0.000019548,0.000019252966,0.000020199903,0.00002071583,0.00002171605,0.000021638796,0.00002197496,0.000022561233,0.000024273235,0.000025291565,0.00001843076,0.0000118630915,0.00001331596],[0.00001579289,0.00001651513,0.000012350005,0.000017627135,0.00003124187,0.000036228823,0.000032086533,0.00002562429,0.000023212988,0.000022130944,0.000021665948,0.00001985161,0.000020319576,0.000019807774,0.000020700052,0.00002011768,0.000021106262,0.000020675667,0.00002101193,0.000019506046,0.000020589112,0.00002036066,0.000021273907,0.000019891613,0.000020597437,0.000019605166,0.000019959774,0.0000185341,0.000019663192,0.000019386578,0.000020602723,0.000019151075,0.00002013603,0.00001957128,0.000020644811,0.000019350524,0.000020793615,0.000020436177,0.000021571606,0.000020238178,0.000021091391,0.00002038372,0.000021000935,0.000019482826,0.000020469764,0.000020203737,0.00002126569,0.000020141253,0.000020916987,0.000020173587,0.000020888141,0.000019340525,0.00002037818,0.000019996392,0.000021285658,0.000019819923,0.000020882804,0.000020010339,0.000020767477,0.000018872286,0.000020012323,0.000019950527,0.000020850784,0.000019451469,0.000020313066,0.00001971889,0.000020490583,0.000018773344,0.000020034053,0.000019761133,0.000020804544,0.00001920252,0.000020348276,0.000019577477,0.000020376607,0.000018435927,0.000019696487,0.000019640647,0.000020619094,0.00001911123,0.000020171028,0.00001956973,0.000020450934,0.000018805042,0.000020186866,0.000019805866,0.000020956859,0.000019325478,0.000020465059,0.000019671426,0.000020494766,0.000018561375,0.000019795933,0.000019735031,0.000020699836,0.000019179754,0.000020201138,0.0000195862,0.000020429765,0.00001877304,0.00002012883,0.000019752184,0.000020900536,0.000019272915,0.000020407937,0.000019585656,0.00002041323,0.00001847227,0.000019734993,0.00001969042,0.000020684896,0.000019196754,0.000020245398,0.000019631434,0.000020495509,0.000018826755,0.000020215437,0.000019828374,0.000021003698,0.00001938083,0.000020502233,0.00001966475,0.000020494415,0.000018571043,0.00001979463,0.000019731511,0.00002074064,0.00001924898,0.000020267962,0.000019649433,0.00002052671,0.000018862229,0.000020227662,0.000019837566,0.000021007525,0.00001938606,0.00002049725,0.000019673902,0.000020501824,0.00001858651,0.000019790989,0.000019722387,0.000020686297,0.000019161891,0.000020156587,0.0000195513,0.000020422285,0.000018795934,0.000020148593,0.000019778554,0.000020953681,0.000019354176,0.000020487927,0.000019707515,0.00002053969,0.00001861553,0.000019844832,0.000019780857,0.000020757598,0.000019251385,0.00002025627,0.0000196604,0.000020508276,0.000018825263,0.000020169431,0.00001979835,0.000020903546,0.000019282033,0.000020403402,0.000019601857,0.000020403248,0.000018461438,0.000019700206,0.000019651214,0.000020637077,0.000019135723,0.000020160296,0.000019535086,0.000020406165,0.000018747598,0.000020126257,0.00001975518,0.000021021853,0.000019432391,0.00002057645,0.000019760926,0.000020543472,0.000018651142,0.00001975015,0.000019701803,0.000020570407,0.000019112778,0.00002001257,0.000019480485,0.000020376354,0.00001854416,0.000019967789,0.000019697989,0.000021135185,0.00001943886,0.00002060056,0.000019816238,0.000020635463,0.000019060613,0.000020374237,0.00002010069,0.000020918284,0.00001960169,0.000020332485,0.000019642726,0.000020139294,0.000018915549,0.00002012242,0.000019942612,0.000021253487,0.00002031384,0.000021299284,0.000020705045,0.000021238351,0.000019917788,0.000020562718,0.000020601192,0.000021282369,0.000020280431,0.000020626727,0.00002000448,0.000020285384,0.000018823648,0.000019834144,0.000019441399,0.000020741489,0.00001930172,0.000020671941,0.000019767165,0.000020450118,0.000018793531,0.000019841427,0.000019830586,0.000021059235,0.000019638866,0.000019617866,0.000018974666,0.00001972124,0.000019160156,0.000019690626,0.000020219426,0.000020783169,0.000020859874,0.000020809644,0.000021105094,0.00002340589,0.000024509165,0.000025966812,0.000017350778,0.000011384793,0.000013221235],[0.0000159493,0.000017193244,0.000014704333,0.000020260984,0.00003203153,0.000031653777,0.000027365248,0.000024047049,0.000021447056,0.00002103216,0.000019655057,0.000019740433,0.000018907216,0.000019572923,0.000019048182,0.000020072624,0.000019834935,0.000020760586,0.000019505096,0.000019509785,0.000019345985,0.000020209442,0.000019398933,0.000019659856,0.000018829232,0.000019485315,0.000018558969,0.000018546423,0.00001815094,0.00001922847,0.000018515444,0.000019065412,0.000018484428,0.000019760399,0.000018951625,0.000019578449,0.000019379,0.000020757714,0.000019695904,0.000020406904,0.00001959201,0.000020613768,0.00001934292,0.000019288176,0.000019077888,0.00002013843,0.000019588346,0.000020099042,0.000019477679,0.00002038788,0.000019243971,0.000019116498,0.00001903235,0.00001990972,0.000019348272,0.000019656181,0.000019147754,0.000019980685,0.000018881847,0.000018662047,0.000018712197,0.0000198532,0.000019093834,0.000019356188,0.000018761604,0.000019748322,0.000018656354,0.000018655803,0.000018677876,0.000019751826,0.000018922423,0.00001912257,0.000018641931,0.00001955794,0.000018488536,0.000018263718,0.000018363862,0.00001961577,0.000018812038,0.000019095727,0.00001860909,0.000019709358,0.000018652583,0.000018699513,0.000018728353,0.000019885752,0.000019025254,0.000019240393,0.000018747563,0.000019678406,0.000018614128,0.000018382418,0.000018455032,0.000019686046,0.000018898529,0.000019159588,0.000018642624,0.000019703552,0.000018628441,0.000018645878,0.000018677183,0.000019815503,0.000018975026,0.00001918217,0.00001867631,0.0000195794,0.00001852083,0.000018296178,0.000018385994,0.00001964696,0.00001888934,0.000019177578,0.000018683275,0.000019744406,0.000018657385,0.000018696785,0.00001873557,0.000019868314,0.00001904753,0.000019299547,0.00001878452,0.000019691812,0.000018616205,0.000018398008,0.000018479264,0.000019692974,0.000018935962,0.00001922746,0.000018706898,0.000019761586,0.000018692026,0.000018728693,0.000018750585,0.000019880785,0.00001905069,0.00001929031,0.0000187926,0.000019699399,0.00001863514,0.000018409364,0.000018466491,0.000019651645,0.000018871244,0.000019117828,0.000018604705,0.000019654006,0.0000186199,0.000018661924,0.00001869256,0.00001982911,0.000019016275,0.000019250008,0.00001879036,0.000019716652,0.000018668456,0.000018434663,0.000018515462,0.000019730533,0.0000189541,0.000019209849,0.000018690527,0.000019738512,0.000018677092,0.000018689654,0.000018716479,0.000019838626,0.000018986539,0.000019197174,0.00001869609,0.000019610889,0.000018519117,0.00001828845,0.000018363056,0.00001961085,0.000018812629,0.000019119962,0.00001860366,0.000019661036,0.000018597555,0.000018638304,0.000018666338,0.000019835561,0.00001910254,0.00001939281,0.000018871819,0.00001982792,0.000018710323,0.000018511826,0.000018458939,0.000019720845,0.000018830884,0.000019052488,0.000018423045,0.000019572139,0.000018539615,0.000018606213,0.000018604243,0.000019969295,0.000019124813,0.000019568555,0.000018943638,0.00002001427,0.00001887119,0.000018927929,0.000018912915,0.000020219157,0.00001912527,0.00001957029,0.000019009565,0.000019949897,0.000018791132,0.000019042734,0.00001917275,0.000020327252,0.000019791216,0.000020500805,0.00002004313,0.000020967813,0.000019796444,0.00001966852,0.000019314093,0.0000201144,0.00001957996,0.000019697276,0.000019099023,0.000019672832,0.000018915747,0.000018701458,0.000018583834,0.000019243787,0.000018866403,0.00001893683,0.000018711644,0.00001949658,0.000018840872,0.00001877714,0.00001855366,0.000019608739,0.00001914737,0.000019314331,0.000018527455,0.000019047111,0.000019439749,0.000019909397,0.000019933106,0.000020903884,0.000020736228,0.000021451433,0.000021256748,0.00002217476,0.000022874217,0.000026675425,0.000026124537,0.000017555383,0.000010705694,0.000013351845],[0.000016242027,0.000017159762,0.000013474927,0.000022315196,0.00003029143,0.000030089204,0.0000266667,0.000023758175,0.000021942918,0.000021354295,0.0000208838,0.000020183477,0.000020791673,0.000019975923,0.000020341853,0.000020070253,0.000020889596,0.000020952963,0.000020754767,0.00001986693,0.0000206143,0.000020786023,0.000020675154,0.000019796726,0.000020295987,0.000020105193,0.00002035666,0.000019357536,0.000019854488,0.000019793404,0.0000202,0.00001922218,0.000020253392,0.000020048521,0.00002101043,0.000020144942,0.000021411232,0.00002110912,0.000021400574,0.000020531857,0.000021498947,0.000021124888,0.00002147536,0.000020166719,0.00002095548,0.000021050319,0.000021101108,0.000020437794,0.000021314825,0.000020962836,0.000021129767,0.00002001442,0.00002090163,0.000020910844,0.000021073078,0.000020098887,0.000020887364,0.000020590014,0.000021003178,0.000019524154,0.000020574527,0.0000206406,0.00002072998,0.000019770936,0.000020494297,0.000020273876,0.00002063373,0.00001945095,0.000020557014,0.0000205577,0.000020735892,0.000019607953,0.00002035041,0.000020116127,0.00002052297,0.00001916646,0.000020308844,0.000020381718,0.00002056631,0.000019500949,0.000020426296,0.000020217556,0.000020602663,0.000019463567,0.000020648218,0.000020602545,0.000020850764,0.00001970528,0.00002051172,0.000020281881,0.000020712749,0.000019307296,0.000020403364,0.000020473435,0.000020633257,0.000019581996,0.00002045905,0.00002023814,0.000020595593,0.00001942172,0.000020594944,0.000020558287,0.000020794607,0.000019637275,0.00002044132,0.000020186404,0.000020629579,0.000019246576,0.00002035136,0.000020451715,0.000020645974,0.000019618426,0.000020494923,0.000020261063,0.00002062297,0.00001946533,0.000020647232,0.000020597536,0.000020865466,0.000019742072,0.0000205607,0.000020292426,0.000020721462,0.000019311366,0.000020423318,0.000020494454,0.000020663898,0.00001961854,0.000020510877,0.00002026912,0.000020638552,0.000019475876,0.000020657357,0.000020598654,0.000020863714,0.000019736688,0.000020562817,0.000020297479,0.000020736032,0.000019327765,0.000020417026,0.00002044881,0.00002059459,0.000019541254,0.000020416112,0.000020195626,0.000020564286,0.000019435245,0.000020603018,0.000020555855,0.000020818517,0.000019724062,0.000020540729,0.000020325468,0.00002075532,0.000019358811,0.0000204523,0.00002051843,0.000020682273,0.000019647221,0.000020488727,0.0000202703,0.000020637704,0.000019477122,0.000020618407,0.000020600386,0.000020814448,0.000019670226,0.00002046147,0.000020207495,0.000020607164,0.00001919807,0.000020309948,0.00002039465,0.000020544314,0.000019501582,0.000020428304,0.000020202506,0.000020532561,0.000019411904,0.000020612903,0.000020571564,0.000020890633,0.000019841691,0.000020688369,0.000020449861,0.00002083834,0.000019382956,0.000020371692,0.000020460455,0.000020548998,0.000019514158,0.000020115436,0.000020075018,0.000020533775,0.000019416608,0.000020595493,0.00002065259,0.000020970294,0.000019776988,0.000020793954,0.000020502897,0.000020964473,0.000019636453,0.000020975533,0.000020765377,0.000020787073,0.000019836336,0.000020733281,0.000020310432,0.000020575077,0.000019858293,0.000021117476,0.000021117436,0.000021380807,0.000020894815,0.000021789652,0.000021643955,0.000021715261,0.000020542022,0.000020906056,0.000020914433,0.0000207087,0.000020096722,0.000020258472,0.000020271962,0.000020316747,0.000019639898,0.000020289446,0.000020163547,0.000020460493,0.000019552383,0.000020420162,0.000020422032,0.000021117516,0.000020189811,0.000020442141,0.00002078091,0.000020340476,0.00002030286,0.000019655563,0.0000201543,0.00002092758,0.000021316717,0.00002128669,0.000021812915,0.000021040005,0.000021694997,0.000021379277,0.000021964002,0.000023746214,0.000025102312,0.000026944568,0.000018300801,0.0000111029885,0.000013339742],[0.00001559551,0.0000153821,0.000013817552,0.000020229474,0.000029439814,0.000028687822,0.000024048632,0.000022729462,0.000020034473,0.000020493417,0.000019520598,0.000020411539,0.000019070194,0.000019757063,0.00001910928,0.000020021294,0.000019389889,0.000020696005,0.00001963778,0.000020336092,0.000019722764,0.000020729665,0.00001972474,0.000019833235,0.000019170848,0.00002025428,0.000019649602,0.000020020969,0.000019239016,0.00001992256,0.000018973687,0.000019217745,0.00001854255,0.000019876974,0.000019324963,0.000020348469,0.000019696656,0.000020742202,0.00001971385,0.000020217036,0.000019536428,0.000020761061,0.000020111946,0.00002042285,0.000019779025,0.000020647194,0.000019790554,0.000020346433,0.000019530187,0.00002080754,0.000019850984,0.00002032632,0.000019765184,0.000020618938,0.000019764997,0.000019976133,0.000019395326,0.000020371011,0.000019764677,0.000019770312,0.000019499888,0.00002031452,0.000019443494,0.000019736724,0.000018857283,0.000020101917,0.000019171213,0.000019702293,0.000019355008,0.000020339041,0.000019377614,0.000019544868,0.000018920979,0.000019927707,0.000019276462,0.000019311072,0.000019193842,0.000020054238,0.000019212375,0.000019536279,0.000018759652,0.000020079404,0.000019159754,0.00001974015,0.000019354047,0.000020324265,0.000019376856,0.000019613637,0.000019030516,0.000020099462,0.000019461117,0.000019496505,0.00001932371,0.000020152993,0.000019296915,0.00001959952,0.000018800183,0.000020090609,0.00001916328,0.000019702742,0.000019309618,0.000020268406,0.000019324667,0.00001951948,0.00001894792,0.000020007152,0.00001938275,0.000019442883,0.000019300061,0.000020145038,0.000019315143,0.000019656987,0.000018848186,0.00002012098,0.000019191646,0.000019751657,0.000019367471,0.00002033551,0.000019403133,0.000019645837,0.000019059886,0.000020108339,0.0000194498,0.000019500987,0.00001933549,0.000020184632,0.000019329904,0.000019639972,0.000018832823,0.000020146555,0.000019224088,0.0000197811,0.000019379924,0.000020343212,0.0000194018,0.000019643176,0.000019072904,0.000020116453,0.000019466519,0.00001952607,0.000019353163,0.000020142828,0.000019270103,0.000019569787,0.00001876903,0.000020064128,0.000019166077,0.000019721992,0.000019338348,0.000020299374,0.000019380219,0.000019639936,0.000019093834,0.000020154761,0.000019527748,0.00001957186,0.000019387078,0.000020215359,0.00001937693,0.000019683193,0.00001886149,0.000020132382,0.000019210085,0.000019748624,0.000019366787,0.0000203257,0.000019384655,0.000019595504,0.000018995883,0.000020023224,0.0000193415,0.000019359992,0.000019201476,0.000020048386,0.000019193403,0.000019497416,0.00001872646,0.000020066309,0.000019133971,0.000019668612,0.0000193189,0.000020298658,0.00001943482,0.000019722971,0.000019184821,0.000020266047,0.000019572792,0.00001954513,0.000019243109,0.000020112559,0.000019216974,0.00001945991,0.000018585057,0.000019861911,0.000018939701,0.00001952611,0.000019228048,0.000020327581,0.00001934021,0.000019648685,0.000018999453,0.00002015157,0.000019341574,0.000019546733,0.000019193201,0.000020199037,0.000019208619,0.000019602214,0.000018860304,0.000020148575,0.000019421886,0.000020118314,0.000019702817,0.00002078293,0.000020110352,0.000020623971,0.000020178357,0.000021356986,0.000020782574,0.000020927979,0.000020055175,0.000020716285,0.00002001614,0.00002012144,0.000019167155,0.000020058007,0.000019490688,0.000020038811,0.000019485575,0.00002004095,0.000019467336,0.000019507032,0.000019284993,0.000020373594,0.000020592392,0.000021310963,0.00002079094,0.000021217864,0.000020343832,0.000020023834,0.000019218514,0.000019847217,0.000021227923,0.000021404983,0.000021259912,0.000021237987,0.000021199014,0.000021744874,0.00002107171,0.000021324484,0.000022426326,0.000024837354,0.000025161704,0.000017382543,0.000010850249,0.000013496198],[0.000015705733,0.000014168401,0.000013173749,0.000019346038,0.00003136163,0.00003070934,0.000027289827,0.000023082568,0.00002138872,0.00002104811,0.00002119018,0.000020028972,0.000020517373,0.000019585339,0.000020120406,0.000019218955,0.00002029947,0.000020250225,0.000021295138,0.00001988103,0.000020897605,0.000020645224,0.000020867934,0.000019813782,0.000020311516,0.000019741261,0.000020708898,0.000019641902,0.000020468866,0.000019826313,0.000020357786,0.000018973,0.000019952238,0.000019432353,0.000020847843,0.000019633586,0.000021062751,0.00002043485,0.000021095315,0.00001994598,0.000020770409,0.000020394747,0.0000218104,0.00002023123,0.00002137147,0.0000206833,0.000021499582,0.000020018946,0.000020879397,0.000020350895,0.000021318463,0.000020064932,0.000020974954,0.000020534011,0.000021101172,0.00001998547,0.000020616364,0.000020302297,0.000021409985,0.000019809759,0.000020892903,0.000020421741,0.00002114452,0.000019621271,0.000020262647,0.000019845987,0.000020848518,0.000019443809,0.000020643412,0.000020257892,0.000020805062,0.000019533354,0.000020216168,0.000019863692,0.000020849413,0.000019344896,0.000020501804,0.000020163892,0.000020948368,0.0000193829,0.000020225965,0.000019767203,0.000020753023,0.00001941333,0.000020590976,0.000020186193,0.000020819372,0.000019609037,0.00002033107,0.000020015015,0.000021079408,0.00001955184,0.000020694899,0.00002028432,0.000021051523,0.000019465238,0.000020268308,0.000019798577,0.000020761061,0.000019406425,0.00002054596,0.000020139314,0.000020756786,0.000019534209,0.000020240726,0.000019946665,0.00002103601,0.000019528026,0.000020698157,0.000020296085,0.000021091593,0.000019524135,0.000020329597,0.000019816125,0.000020793577,0.000019457239,0.000020618054,0.00002020817,0.00002083254,0.000019625088,0.00002034878,0.000020021618,0.000021084274,0.000019547368,0.000020710102,0.000020313124,0.000021095295,0.00001949987,0.000020301697,0.000019838133,0.000020824833,0.000019483196,0.000020622125,0.000020205684,0.000020828029,0.000019635403,0.000020369964,0.00002005265,0.000021111051,0.000019576526,0.000020729802,0.000020280586,0.000021022735,0.000019430649,0.000020233758,0.000019775915,0.000020746238,0.000019438043,0.000020577352,0.000020187887,0.000020815043,0.00001965275,0.000020386364,0.000020085474,0.000021157512,0.000019632877,0.000020770389,0.00002034684,0.000021126902,0.000019567082,0.000020338866,0.00001986301,0.00002082773,0.000019464793,0.000020624859,0.000020222147,0.000020824335,0.00001960124,0.000020294594,0.000019951876,0.000020953623,0.000019407278,0.000020536401,0.000020153628,0.000020926782,0.000019365994,0.000020169951,0.000019721503,0.000020735537,0.00001938876,0.000020522344,0.000020133592,0.000020848916,0.000019692787,0.00002044132,0.000020137144,0.00002119113,0.00001961895,0.000020558718,0.000020101206,0.000020780732,0.000019300081,0.000019973275,0.000019445126,0.000020570309,0.000019042536,0.000020401572,0.000020012629,0.000020794649,0.000019407944,0.000020357864,0.000019916935,0.000021106182,0.000019343364,0.00002049041,0.000020024847,0.000020705165,0.000019299785,0.000020166028,0.000019754238,0.000020777838,0.000019630816,0.000020749245,0.000020413583,0.00002121564,0.000020524534,0.000021176907,0.000021141615,0.000022573993,0.000021056143,0.0000214736,0.00002083872,0.000021403514,0.000020269605,0.000020377056,0.000019849489,0.000020674346,0.000019692656,0.00002050734,0.000019977277,0.000020415762,0.000019699342,0.000020243468,0.000020412532,0.000021999618,0.000021246577,0.00002194564,0.000021520587,0.000021451944,0.000020249277,0.000019889054,0.00001984962,0.000021021031,0.000020928359,0.000021260887,0.000020814903,0.000020917503,0.000020663032,0.000020119542,0.000020335723,0.000022011474,0.000023499042,0.000025853227,0.000017838978,0.00001141973,0.000012968892],[0.000016331835,0.000013847946,0.000014038731,0.000019839837,0.000032675583,0.000030496907,0.000025128445,0.000022305792,0.000019794801,0.00002023569,0.000019058703,0.000019656012,0.000018915802,0.00001944392,0.000018508346,0.00001915084,0.000018837583,0.00002023204,0.000019211808,0.00001977846,0.000019613843,0.000020705205,0.000019720244,0.00001992706,0.000018945644,0.000019755387,0.000019030082,0.000019216424,0.000019004836,0.000019585303,0.000018767365,0.000018935096,0.000018330304,0.000019539613,0.000018947234,0.000019609748,0.00001958592,0.000020622676,0.000019563051,0.000019799445,0.000019198511,0.00002024615,0.000019621646,0.0000196284,0.000019668669,0.00002024366,0.000019561558,0.000019751713,0.000019282272,0.00002042657,0.000019523279,0.000019918627,0.000019773555,0.000020625232,0.000019757705,0.000019961906,0.000019521156,0.000020329093,0.000019584257,0.000019416608,0.000019575984,0.000020124971,0.000019335379,0.000019380848,0.000018931882,0.000020043914,0.000019117137,0.00001943682,0.000019455292,0.000020409025,0.000019435132,0.000019671876,0.000019236282,0.000020107438,0.000019276167,0.000019126419,0.000019288305,0.000019965371,0.000019137093,0.000019272602,0.000018877345,0.000020032869,0.000019100371,0.000019464736,0.000019444198,0.00002044218,0.000019469695,0.000019744068,0.000019291045,0.000020215803,0.000019414867,0.000019282383,0.000019408999,0.000020056055,0.000019230321,0.00001935224,0.000018922947,0.000020044812,0.000019085386,0.000019431964,0.000019401077,0.000020366757,0.0000194018,0.000019652807,0.000019209334,0.000020134034,0.00001935737,0.00001925324,0.000019420571,0.000020077738,0.000019274881,0.000019427665,0.000018976294,0.000020071935,0.000019105764,0.0000194761,0.000019452063,0.00002043033,0.000019468374,0.000019735144,0.000019295094,0.000020212314,0.00001940676,0.000019278523,0.000019425033,0.00002009584,0.000019269404,0.000019378353,0.00001893701,0.000020073372,0.000019130888,0.000019493902,0.00001946394,0.000020446332,0.000019479947,0.000019755349,0.000019332723,0.000020249568,0.000019432317,0.000019289942,0.000019429406,0.00002004749,0.000019199464,0.000019304813,0.000018889392,0.000019995898,0.000019081528,0.000019452842,0.00001944403,0.000020427584,0.000019487768,0.000019763394,0.00001934447,0.000020266683,0.000019483123,0.000019353605,0.000019483941,0.000020119849,0.000019301646,0.000019427685,0.000018992154,0.000020105157,0.000019141764,0.000019476882,0.000019454195,0.00002042926,0.00001947298,0.000019732528,0.00001927297,0.000020169797,0.000019318439,0.000019160867,0.00001929121,0.000019959909,0.00001912963,0.000019261155,0.000018841087,0.000019980953,0.000019059886,0.000019432817,0.000019396768,0.000020364681,0.000019517116,0.000019823308,0.000019373696,0.000020318277,0.000019508463,0.00001933724,0.000019318513,0.00001991143,0.000019010908,0.000019134408,0.000018574337,0.000019710542,0.000018785004,0.000019120254,0.000019077543,0.000020218751,0.000019264902,0.000019536521,0.00001910283,0.000020130614,0.000019239586,0.00001912051,0.000019000776,0.00001981038,0.000018796685,0.000019003675,0.00001876894,0.0000198217,0.000019059067,0.000019481598,0.000019654193,0.000020660944,0.000020032563,0.00002029833,0.000019959545,0.000020903364,0.000020288962,0.000020138008,0.000019823061,0.000020131556,0.000019591167,0.00001962318,0.000018918363,0.000019813046,0.000019172036,0.000019630741,0.000019336263,0.000020238254,0.000019700281,0.000020017054,0.000019497305,0.000020457841,0.000020018888,0.000020581023,0.000020424312,0.000021001935,0.000020607557,0.000020032698,0.000019118577,0.000019608158,0.000020395037,0.000020480993,0.000020710891,0.000020662876,0.000020799089,0.000021307591,0.0000206692,0.000021083892,0.00002126908,0.00002358647,0.000025135345,0.000018662226,0.00001099381,0.0000134142165],[0.000016089098,0.000014234304,0.000012267156,0.000021476138,0.000032743334,0.00003178924,0.000027078184,0.000023516754,0.000021640159,0.000021157148,0.000020550055,0.000019991741,0.000020639083,0.00002007366,0.000020324964,0.000019864734,0.000020611193,0.000020539574,0.000020622065,0.000019878833,0.000020957938,0.000021176182,0.000021126358,0.0000203893,0.000020361456,0.000020206493,0.000020131749,0.000019381236,0.000020046647,0.000020134146,0.000020585205,0.0000196226,0.000020089823,0.000020163969,0.000020738205,0.000019899164,0.000021152486,0.000020929416,0.000021212805,0.000020454467,0.000020799369,0.000020885016,0.00002109803,0.000020176685,0.00002073765,0.000020879537,0.00002101512,0.00002026282,0.000021078906,0.000021008625,0.000021105921,0.000020208188,0.00002114468,0.000020968553,0.000021259122,0.000020542297,0.000021018946,0.000020997028,0.000021002475,0.000019964857,0.000020609856,0.00002071587,0.000020852196,0.000019908788,0.000020666028,0.000020718853,0.00002089137,0.000019829717,0.000020915788,0.000020718458,0.000021087328,0.00002025059,0.000020836613,0.00002073095,0.00002077982,0.000019727937,0.000020496056,0.000020587384,0.000020763022,0.000019753126,0.000020696736,0.000020642432,0.00002083093,0.000019819017,0.000020914493,0.00002075261,0.000021123982,0.000020293935,0.000020885313,0.000020799685,0.00002090295,0.000019842031,0.000020555484,0.000020664529,0.000020844822,0.000019831967,0.000020732747,0.000020654266,0.000020800737,0.00001976939,0.000020861247,0.000020697684,0.000021057629,0.000020224981,0.000020813277,0.000020715988,0.000020858322,0.000019829378,0.000020562404,0.00002068326,0.000020894657,0.000019899866,0.000020789334,0.000020668393,0.000020827296,0.000019816729,0.000020911879,0.000020744515,0.000021110189,0.000020287956,0.000020891786,0.000020812702,0.000020920197,0.000019855566,0.000020593197,0.00002069861,0.000020871435,0.000019841313,0.000020744497,0.000020680696,0.000020834765,0.00001981949,0.00002091154,0.000020757378,0.000021120699,0.000020300537,0.000020915908,0.000020828846,0.000020910782,0.000019838171,0.000020573782,0.00002066055,0.000020824931,0.000019784817,0.000020688683,0.000020612983,0.000020775082,0.000019807529,0.00002088854,0.000020732055,0.00002110288,0.000020311632,0.000020906815,0.00002084657,0.000020957557,0.000019909321,0.000020621495,0.0000207151,0.000020899499,0.000019901652,0.000020788779,0.000020716561,0.000020867315,0.000019835541,0.000020917025,0.000020757141,0.000021134078,0.000020292639,0.000020865067,0.0000207534,0.000020807363,0.000019732246,0.000020465548,0.000020590407,0.000020754647,0.00001976543,0.00002065653,0.000020618074,0.000020780433,0.00001977005,0.000020862362,0.000020712057,0.0000211122,0.000020363514,0.000020945212,0.00002089143,0.000020898722,0.000019873429,0.000020424526,0.00002051657,0.000020592646,0.000019631863,0.000020262665,0.000020288304,0.000020579022,0.000019497193,0.00002060734,0.000020593197,0.000021071048,0.000020142366,0.000020908908,0.000020712372,0.000020895315,0.000019692805,0.000020454856,0.000020405758,0.000020554231,0.000019753275,0.000020599226,0.00002046832,0.00002052432,0.00001977946,0.00002093323,0.000020946229,0.000021177171,0.000020913354,0.000021330688,0.00002138766,0.000021214768,0.000020426492,0.000020678406,0.000020815758,0.000020937263,0.000020189811,0.000020423064,0.00002057588,0.000020577138,0.000019713907,0.000020638336,0.00002062767,0.000021061947,0.000020554055,0.000020907872,0.000020590447,0.000020694979,0.000020007341,0.000020280297,0.000020982396,0.000020922591,0.000020314907,0.000019311386,0.000019701898,0.000019624395,0.000020454954,0.000020024656,0.000020896628,0.000020817843,0.00002131749,0.000020937283,0.00002122837,0.000022000144,0.000023013552,0.000025328856,0.000020185864,0.000011403897,0.000013412822],[0.000015755253,0.000014548486,0.000012629558,0.000018697516,0.000030240919,0.000031727213,0.000026320893,0.000024233961,0.000021075188,0.000021196205,0.000019522255,0.00001997337,0.000018863579,0.000019653444,0.000019292187,0.000020279967,0.000019566874,0.000020619626,0.000019430167,0.000019970303,0.000019574603,0.000021013857,0.000020027806,0.000020817446,0.000019326715,0.000020455851,0.000019247513,0.000019631527,0.000019181949,0.000020385645,0.000019757477,0.000020322444,0.000018873241,0.000020076932,0.000019188186,0.000019878908,0.000019453695,0.0000207933,0.000020051924,0.00002081951,0.000019526537,0.000020836254,0.000019705712,0.00002005858,0.000019309968,0.000020398636,0.000019758138,0.000020442705,0.000019461786,0.000020822032,0.000019667807,0.00002013505,0.000019452007,0.000020640224,0.000019806283,0.000020617208,0.000019641153,0.000020927322,0.000019535513,0.000019800767,0.000019269735,0.000020272273,0.000019421312,0.000019897838,0.00001911329,0.000020467149,0.000019290126,0.000019704283,0.000019158511,0.000020360467,0.000019419553,0.000020239953,0.000019295352,0.000020586715,0.000019199224,0.000019568648,0.000019137,0.000020234993,0.000019287918,0.0000197699,0.00001902451,0.000020408832,0.000019225461,0.000019671765,0.000019139208,0.00002042768,0.00001947391,0.000020281437,0.000019307003,0.000020659032,0.00001928551,0.000019669174,0.000019163226,0.000020286352,0.00001933796,0.000019862175,0.000019057941,0.000020427271,0.00001919507,0.000019625162,0.000019111578,0.000020411284,0.000019469935,0.000020265623,0.00001927194,0.000020593805,0.000019239933,0.000019652338,0.000019168581,0.000020308727,0.000019393605,0.000019938409,0.00001910959,0.000020473435,0.000019249532,0.000019703552,0.000019161416,0.000020433663,0.000019500838,0.000020315583,0.000019352443,0.000020688112,0.000019312563,0.000019693405,0.000019200397,0.000020320176,0.000019361378,0.00001986835,0.000019080582,0.000020481773,0.000019249605,0.000019689538,0.00001915661,0.000020447582,0.000019506715,0.000020321786,0.00001936073,0.000020688623,0.000019287,0.000019657737,0.000019179972,0.000020284957,0.000019335803,0.000019837888,0.000019041809,0.000020419518,0.000019232833,0.000019685107,0.000019148794,0.00002041436,0.000019483754,0.000020316613,0.00001936725,0.00002070878,0.000019342277,0.000019738456,0.000019224342,0.000020339525,0.000019409314,0.000019936339,0.000019136362,0.00002051215,0.000019279074,0.000019712403,0.000019168727,0.00002043411,0.00001948329,0.00002028337,0.000019296951,0.000020599755,0.0000191885,0.000019555067,0.000019085386,0.000020218751,0.000019292831,0.000019801164,0.000019017218,0.000020409436,0.000019206622,0.000019644094,0.000019117902,0.000020435513,0.000019532776,0.000020379988,0.0000194207,0.000020844898,0.00001935606,0.000019703157,0.00001912806,0.000020265197,0.00001925403,0.000019636807,0.00001877431,0.000020110469,0.00001895054,0.000019385061,0.000018911347,0.000020277086,0.000019461359,0.000020263806,0.000019320245,0.00002066459,0.00001927321,0.00001971169,0.000019127185,0.000020374742,0.000019395085,0.000020013811,0.000019225114,0.000020388756,0.000019276224,0.000019662686,0.000019306193,0.000020492616,0.000020184632,0.000021165159,0.000020241343,0.0000214222,0.00001991853,0.000020249125,0.000019540992,0.000020620826,0.000020240957,0.000020610505,0.000019320356,0.000020516532,0.000019419182,0.000019870322,0.00001920338,0.000020583182,0.000020034779,0.000021056683,0.000019789628,0.000020906455,0.000019349638,0.000019963525,0.000019012901,0.000020633475,0.000020271345,0.000020717629,0.000018933164,0.000019605091,0.000019597988,0.000019872708,0.000019596475,0.000020293743,0.000020962296,0.000021789401,0.000021421853,0.000021890624,0.000022709224,0.00002431,0.000025186286,0.000018249284,0.000011660109,0.000013507891],[0.000015665448,0.00001455573,0.0000116738165,0.000017303073,0.000030388126,0.00003457528,0.000030731077,0.00002559774,0.000023235667,0.000022304579,0.00002163174,0.000019883288,0.00002030311,0.000019708568,0.000020617525,0.000019780366,0.000021045042,0.000020609168,0.00002118612,0.000019589785,0.000020859157,0.000020577472,0.000021633308,0.000020359883,0.000020842894,0.000020034415,0.000020512247,0.000019523986,0.000020598616,0.000020474175,0.000021707127,0.000020284746,0.00002073708,0.000019939018,0.000020532014,0.000019554509,0.000020882027,0.000020722331,0.000021990283,0.000020610682,0.00002129654,0.000020805399,0.000021538368,0.000020215879,0.000020929057,0.000020846252,0.000021779804,0.000020466661,0.000021192101,0.000020422052,0.000020873207,0.00001969288,0.000020699046,0.000020340864,0.000021336771,0.000020238911,0.000021121443,0.000020514653,0.00002094541,0.0000196895,0.000020619902,0.000020526826,0.000021091655,0.000019828167,0.000020601447,0.000019964402,0.000020451656,0.000019137036,0.000020331381,0.000019982763,0.000020984156,0.000019795198,0.00002073959,0.00002007452,0.00002050153,0.000019379202,0.000020461137,0.00002041142,0.000020973353,0.000019602978,0.000020494648,0.000019835958,0.000020302548,0.000019064757,0.000020293608,0.000020008429,0.00002098944,0.000019826748,0.000020738109,0.000020116164,0.000020594629,0.000019485538,0.000020551368,0.000020436917,0.000021043475,0.000019679514,0.000020556681,0.00001984133,0.000020274709,0.000019041716,0.000020280664,0.00002002987,0.000020982456,0.000019823174,0.000020698059,0.00002005946,0.000020550347,0.000019492563,0.000020565465,0.0000204579,0.000021119511,0.000019760304,0.000020638394,0.000019913346,0.00002035111,0.00001910826,0.000020313724,0.000020032963,0.000021014837,0.000019881865,0.000020797723,0.000020166353,0.000020631114,0.000019522422,0.00002059082,0.000020481402,0.000021086968,0.00001969735,0.000020600208,0.00001991743,0.000020340049,0.000019090137,0.000020308127,0.00002003793,0.00002101552,0.000019886207,0.00002080502,0.000020172547,0.000020606574,0.000019489999,0.000020559051,0.000020451365,0.000021056683,0.000019664598,0.00002057235,0.000019873429,0.000020305977,0.00001910498,0.000020290665,0.000020006311,0.000020975674,0.000019877183,0.000020804466,0.000020187425,0.000020643885,0.000019550125,0.000020608482,0.000020491052,0.000021115764,0.000019766316,0.000020652136,0.000019942137,0.000020371886,0.00001912,0.000020330392,0.000020034033,0.000020996187,0.000019841482,0.000020732294,0.000020071611,0.00002048738,0.000019364368,0.000020425305,0.00002037305,0.000020981295,0.000019637164,0.000020506439,0.000019841407,0.000020307603,0.00001906512,0.00002028755,0.00002002521,0.000021099882,0.000019949232,0.000020936444,0.000020313413,0.000020759022,0.000019499703,0.000020437034,0.000020408364,0.000020835261,0.000019534378,0.00002015107,0.000019605839,0.000020169393,0.000018764054,0.000020172069,0.000019946854,0.000021230293,0.000019906814,0.000020937881,0.000020285073,0.000020686928,0.000019638755,0.00002062897,0.000020492324,0.000021078766,0.000020051733,0.000020641977,0.000020019728,0.000020342668,0.000019366418,0.000020360174,0.000020386597,0.00002162256,0.000020977415,0.00002171404,0.000021373997,0.00002157426,0.000020625605,0.00002099851,0.000021095355,0.00002194859,0.000020863297,0.000020960599,0.000020091395,0.00002043986,0.000019338311,0.000020262587,0.000020029449,0.000021219765,0.000020628222,0.00002120953,0.000020429981,0.000020501393,0.000019732508,0.00002007791,0.000020689513,0.000021837144,0.000020917285,0.000020254183,0.000019580708,0.000020186539,0.000019596475,0.000019901405,0.000020324984,0.000020941177,0.000020991463,0.000020950125,0.000021229462,0.000023703611,0.00002463021,0.000026323101,0.000017563554,0.000011253177,0.000013009324],[0.000015859405,0.000013817051,0.000012079176,0.00001629442,0.000030196656,0.000032484382,0.000027839124,0.000024445302,0.00002174108,0.00002100502,0.00001956583,0.00001934901,0.000018796167,0.000019128844,0.000018725872,0.000019332207,0.000019445943,0.00002023893,0.000019117411,0.000019163757,0.000019126235,0.000020289563,0.000019517489,0.0000200599,0.000019258492,0.000020080992,0.000019030917,0.000019491468,0.000019117411,0.000020344454,0.00001968276,0.000020199961,0.000019602978,0.000020312795,0.000019402447,0.000019826011,0.00001978161,0.00002088862,0.000020132054,0.000020549174,0.000020266763,0.000021222095,0.00002017601,0.000020388445,0.000019864867,0.000020721698,0.000020030442,0.00002020765,0.000019843394,0.00002048642,0.000019417164,0.000019675816,0.00001958943,0.000020661651,0.000019815861,0.000020482848,0.000020023528,0.000020942134,0.000019515051,0.000019831437,0.000019667206,0.00002069034,0.000019563517,0.000019744632,0.000019390553,0.000020142445,0.000018954734,0.000019163408,0.000019224544,0.000020461059,0.00001948602,0.000020153742,0.000019615996,0.000020587284,0.000019151114,0.000019630721,0.000019525029,0.000020697013,0.000019436524,0.000019629935,0.000019247254,0.000020076972,0.000018882782,0.000019170793,0.00001922341,0.000020502313,0.000019478553,0.00002018059,0.000019623889,0.000020642035,0.00001924197,0.000019771313,0.000019589897,0.000020745247,0.000019475749,0.0000197295,0.000019287183,0.000020098925,0.000018870001,0.000019170117,0.000019233366,0.000020506048,0.000019468729,0.000020154357,0.000019604213,0.000020629403,0.000019259778,0.000019807358,0.000019646248,0.000020819172,0.000019569676,0.000019823496,0.000019360343,0.000020173971,0.000018937099,0.000019200488,0.00001925627,0.000020510995,0.000019519555,0.000020222242,0.00001969504,0.00002069786,0.000019300984,0.000019805091,0.000019652076,0.000020809546,0.000019529256,0.000019749396,0.000019325073,0.00002015997,0.000018918021,0.000019189085,0.000019255058,0.000020533305,0.000019532945,0.000020242773,0.000019705054,0.000020717056,0.000019313577,0.000019805751,0.000019625388,0.000020770764,0.000019493717,0.000019705618,0.000019302346,0.000020103698,0.0000188924,0.000019186376,0.000019241566,0.000020484822,0.000019483066,0.000020215666,0.000019703306,0.000020717549,0.00001930785,0.000019825538,0.000019654737,0.000020801272,0.000019546138,0.000019796935,0.000019368874,0.00002017782,0.00001894485,0.000019210416,0.00001925864,0.000020516647,0.00001949816,0.000020196283,0.000019625182,0.00002060968,0.000019161764,0.00001965691,0.000019512743,0.000020695552,0.000019449299,0.000019673584,0.000019277491,0.000020119924,0.000018925113,0.000019221356,0.00001926345,0.000020565896,0.000019632163,0.000020388268,0.000019786628,0.000020819609,0.000019335415,0.000019674748,0.000019461933,0.000020599971,0.000019377225,0.000019405556,0.000018904133,0.000019751693,0.000018690082,0.000018922694,0.000019116827,0.000020496154,0.000019692092,0.000020272542,0.000019767316,0.000020699736,0.000019395715,0.000019825178,0.000019777535,0.000020815818,0.000019668238,0.000019937497,0.00001964267,0.00002029475,0.000019254543,0.000019512334,0.000019741394,0.000020833333,0.000020428402,0.000021228187,0.000021050582,0.000021792104,0.000020428986,0.000020410389,0.000019908752,0.000020576354,0.00002000406,0.000020101359,0.000019540508,0.000019947976,0.00001898348,0.000019447889,0.000019259152,0.000020788522,0.000020076646,0.000021550017,0.000020560406,0.00002146144,0.000019868085,0.000020674346,0.000019787742,0.00002119006,0.000020461313,0.000020875437,0.000019669757,0.000019918227,0.000020362699,0.000020466387,0.000020384052,0.000021021291,0.000020934267,0.000021625943,0.000021088777,0.00002198523,0.000022875178,0.000026281263,0.000026312888,0.000018113022,0.000010816157,0.000013196961],[0.00001550462,0.000013464599,0.0000103375405,0.000016460443,0.000028119499,0.000033432323,0.000028156612,0.000024947025,0.00002252853,0.00002159437,0.000020539535,0.000020001791,0.000020250534,0.000019965772,0.000020138103,0.000019868428,0.000020603273,0.000020619962,0.000020419073,0.000019648609,0.0000206236,0.000020794905,0.000020873167,0.00002005114,0.00002070094,0.000020530819,0.00002076621,0.000019869583,0.000020559562,0.000020698018,0.000020943533,0.00002011043,0.000021033204,0.000020779045,0.000021307977,0.000020530331,0.000021604195,0.000021433847,0.000021504033,0.00002071913,0.000021777996,0.0000216719,0.00002235181,0.0000212832,0.000021641312,0.000021640879,0.000021238899,0.000020381427,0.000021305012,0.000021150834,0.000021393882,0.000020371594,0.000021425241,0.000021262264,0.000021391024,0.000020493633,0.000021583912,0.000021084454,0.000021417765,0.000020246749,0.000021258878,0.000021275348,0.000021026804,0.000019895731,0.00002078212,0.000020582182,0.000020827136,0.00001969414,0.000021051063,0.000020882882,0.000021262002,0.00002013701,0.000021256586,0.00002067965,0.000021019789,0.000019971198,0.000021213069,0.00002113555,0.000021005459,0.000019736988,0.00002073342,0.000020472691,0.000020757834,0.000019708363,0.0000210819,0.000020843172,0.00002120945,0.000020129424,0.000021253973,0.000020718893,0.00002109266,0.000020066464,0.000021267537,0.000021130107,0.00002103156,0.00001977927,0.000020782456,0.000020488143,0.000020769456,0.000019715204,0.00002106522,0.000020806432,0.000021122692,0.000020083484,0.000021213677,0.000020707397,0.000021103686,0.00002013382,0.000021352893,0.000021203969,0.000021127446,0.000019855528,0.00002085341,0.000020546822,0.000020799804,0.000019746458,0.000021106665,0.000020871197,0.000021236834,0.0000201657,0.00002131251,0.00002078214,0.000021148997,0.00002012551,0.000021339822,0.000021214,0.000021096239,0.000019803316,0.000020819789,0.000020519605,0.000020773597,0.00001973172,0.000021109321,0.000020877069,0.000021249556,0.000020189485,0.000021327127,0.000020781008,0.00002114561,0.000020130443,0.000021327716,0.00002117283,0.000021066668,0.000019776422,0.00002077122,0.00002048318,0.0000207335,0.00001971825,0.000021073198,0.000020826103,0.000021161382,0.000020145288,0.000021302856,0.000020779404,0.000021143916,0.000020129693,0.000021330197,0.000021195172,0.000021097569,0.000019840802,0.000020840527,0.000020545862,0.000020806689,0.000019738154,0.000021098514,0.00002085536,0.000021220556,0.000020127793,0.00002124524,0.00002066786,0.000021008465,0.000019982648,0.000021204049,0.000021111173,0.000020994286,0.000019764131,0.00002075732,0.000020518311,0.000020831547,0.000019781968,0.000021141172,0.000020882067,0.000021336833,0.00002029051,0.000021411823,0.000020821753,0.000021195396,0.000019998663,0.000020985859,0.00002107762,0.000020773063,0.0000196249,0.000020156702,0.00002022311,0.000020578178,0.000019527542,0.000020968773,0.000020936424,0.00002143542,0.000020290374,0.000021424836,0.00002089914,0.000021187938,0.000020240339,0.000021539867,0.000021180504,0.000021038959,0.000020061278,0.00002102468,0.00002066859,0.000020950543,0.000020232756,0.000021444132,0.000021360693,0.000021584467,0.000021186968,0.00002239429,0.000022183094,0.00002210169,0.00002119863,0.000021479682,0.000021482017,0.000020903426,0.000020329055,0.000020582887,0.000020598596,0.000020666934,0.000019934892,0.000021110309,0.00002091234,0.000021675392,0.000021054595,0.000022237275,0.000021227943,0.000021524978,0.000020953143,0.000021476426,0.00002130239,0.000021226586,0.000020982856,0.000020333746,0.000020502763,0.000021121203,0.000021316471,0.00002106245,0.000021641334,0.000021003478,0.000021394944,0.000021216145,0.000021410046,0.000023347638,0.00002478967,0.000027037748,0.000018955205,0.000011256237,0.000013269159],[0.000014941244,0.0000124347525,0.0000106524,0.000014290178,0.000025854335,0.000032416607,0.00002610078,0.000024122754,0.000021229524,0.000021049898,0.00001982533,0.0000199979,0.000019045605,0.00001950452,0.000019417923,0.000019907953,0.000019690928,0.000020563915,0.000019591298,0.000019972742,0.000019585488,0.000020569074,0.000019435132,0.00001965157,0.00001888572,0.000020164605,0.00001915579,0.000019997404,0.000019204646,0.000020401398,0.000019122806,0.000019511665,0.000018951752,0.000020296955,0.000019698571,0.000020552387,0.000020086758,0.000021015097,0.000019735257,0.000020048521,0.000019608775,0.000021122149,0.000020656766,0.000021228063,0.00002050237,0.000020948986,0.000019642557,0.000019731739,0.000019250487,0.000020559759,0.00001983821,0.000020334697,0.000019853484,0.000020766844,0.000019467037,0.00001991648,0.000019259667,0.000020606829,0.00001955488,0.000020081356,0.000019637519,0.000020606083,0.000019178784,0.00001925583,0.000018698194,0.000019970399,0.000019056613,0.00001952272,0.000019280526,0.000020383837,0.000019144101,0.000019641397,0.000018879415,0.000020232177,0.000019153487,0.00001981484,0.000019480669,0.000020539888,0.000019053125,0.000019162733,0.00001860561,0.000019943032,0.000019035599,0.000019567733,0.000019281353,0.00002038306,0.000019079762,0.000019594607,0.000018837654,0.000020262743,0.000019212577,0.000019921761,0.000019506771,0.000020554093,0.000019022369,0.00001916242,0.000018593266,0.000019961259,0.00001905883,0.000019594718,0.000019274568,0.000020353535,0.000019039157,0.00001954707,0.000018814333,0.000020250012,0.000019263929,0.00002000181,0.000019598418,0.00002064999,0.000019119489,0.000019256784,0.000018664576,0.00002000782,0.000019060775,0.000019574285,0.000019296915,0.000020392412,0.000019123392,0.000019633699,0.000018898834,0.000020326688,0.000019300338,0.00001998768,0.000019580613,0.000020637077,0.000019097311,0.000019211642,0.000018628158,0.000019971332,0.000019037469,0.000019567658,0.000019291983,0.00002039607,0.000019130652,0.00001966293,0.000018914161,0.000020325275,0.00001928987,0.00001999851,0.000019590289,0.00002061418,0.00001907525,0.000019191682,0.000018606568,0.000019943145,0.00001904319,0.0000195839,0.00001929745,0.000020390116,0.00001907807,0.000019603502,0.000018897987,0.000020321571,0.000019295057,0.000020004976,0.000019590234,0.000020632962,0.00001910693,0.000019237805,0.00001865148,0.000019993362,0.000019063811,0.000019579325,0.000019287092,0.000020382127,0.000019100371,0.00001961448,0.000018827275,0.000020203679,0.000019133297,0.000019813215,0.00001945839,0.000020507103,0.000019025598,0.000019142439,0.000018600997,0.000019977351,0.000019104962,0.000019645388,0.000019311441,0.000020416754,0.000019168854,0.000019733394,0.000018965764,0.000020318472,0.000019155952,0.000019696581,0.000019293953,0.000020352467,0.000018922748,0.000018908859,0.000018278997,0.000019599856,0.000018729354,0.00001931669,0.000019134335,0.000020371535,0.000019338255,0.000019856683,0.000019161143,0.000020501764,0.00001953788,0.00002009609,0.000019660718,0.000020619626,0.000019352405,0.000019461024,0.000019102667,0.000020316902,0.0000198046,0.000020510995,0.000020190793,0.000021084918,0.000020125875,0.000020819927,0.000020530037,0.000021856917,0.000021194022,0.000021549955,0.000020695492,0.00002120599,0.000020004614,0.00001983628,0.000018993765,0.000020102223,0.000019270858,0.000020011616,0.000019449002,0.000020780057,0.000019651421,0.000020539084,0.000019523948,0.000020836791,0.000019793933,0.000021088737,0.000019987718,0.000021345622,0.000019660869,0.000020038908,0.000019007228,0.00001981484,0.00002051972,0.000020910544,0.00002071984,0.000021086968,0.000020891706,0.000021593094,0.000020847623,0.000021173757,0.000022147708,0.000024457566,0.000024991268,0.000018168745,0.000011135437,0.000013548555],[0.000015282862,0.000011613776,0.000010369541,0.000014177431,0.000027296592,0.000035824723,0.000029368843,0.000024568233,0.000022513559,0.000021869111,0.000021394575,0.000019963374,0.000020093137,0.000019702555,0.00002029111,0.000019678162,0.000020984198,0.00002070086,0.000021623717,0.000019921154,0.000021149379,0.000020546608,0.000020850746,0.000019340561,0.00002017651,0.000019408073,0.000020383915,0.000019136636,0.000020411264,0.000019770803,0.00002027459,0.00001883259,0.000019978419,0.000019479741,0.000020650798,0.000019784213,0.000021319074,0.00002063389,0.000021027769,0.000019747851,0.00002067894,0.000020437072,0.00002183075,0.000020610032,0.00002171897,0.000020675745,0.000020991221,0.000019380275,0.000020264133,0.00001978463,0.000020984398,0.000019697707,0.000021084436,0.000020107916,0.000020586795,0.00001913585,0.000020318452,0.000019649246,0.000020767655,0.000019247733,0.000020630288,0.000020012207,0.000020313551,0.000018683917,0.000019655186,0.000019207577,0.00002021025,0.000018895607,0.00002033811,0.000019647821,0.000020246787,0.000018785666,0.000020001047,0.000019301628,0.000020329384,0.000018898274,0.000020392703,0.000019762698,0.000020146595,0.0000185309,0.000019603129,0.00001916222,0.000020139734,0.000018889068,0.000020345153,0.000019616986,0.000020194258,0.000018694253,0.000019911105,0.000019242943,0.000020344338,0.000018947758,0.000020456377,0.000019723893,0.000020114918,0.000018467408,0.000019568406,0.000019143426,0.00002015403,0.000018878749,0.000020318685,0.000019579009,0.000020136626,0.000018687659,0.00001989002,0.000019249293,0.000020410038,0.000019060448,0.000020575137,0.000019811097,0.000020223863,0.000018574177,0.000019648834,0.000019181161,0.000020166604,0.000018882567,0.000020326106,0.000019625742,0.000020216072,0.000018753983,0.000019972971,0.00001931857,0.00002046061,0.000019058285,0.0000205508,0.000019821871,0.00002021426,0.000018549485,0.000019622656,0.000019160612,0.000020146288,0.000018872557,0.000020321493,0.000019617715,0.000020217325,0.000018768082,0.000019990004,0.000019323654,0.00002043645,0.0000190488,0.000020538144,0.00001980649,0.000020193354,0.000018545645,0.00001959397,0.0000191433,0.00002013553,0.00001890208,0.000020333631,0.000019618015,0.000020163854,0.00001872005,0.000019942538,0.000019308292,0.0000204151,0.000019044097,0.00002055468,0.00001981125,0.000020209076,0.00001855803,0.000019625631,0.00001917178,0.000020174568,0.00001889087,0.000020324382,0.000019607149,0.000020188849,0.000018721657,0.000019906149,0.000019211642,0.000020270532,0.000018875582,0.000020359223,0.000019715204,0.00002010481,0.000018493422,0.000019588477,0.000019180028,0.00002024669,0.000018936937,0.000020349557,0.000019586423,0.000020270028,0.000018794644,0.000020056974,0.000019293382,0.000020356118,0.000018851277,0.000020127467,0.00001965243,0.000019855433,0.000018345518,0.000019207888,0.000018933,0.000019941052,0.000018608998,0.000020111906,0.000019529722,0.000020352758,0.000019115641,0.000020291904,0.000019734618,0.000020767597,0.000019423793,0.000020598029,0.00001988361,0.000020208594,0.000019100044,0.000020041029,0.00001970701,0.000020957359,0.000019973084,0.000021350306,0.000020522382,0.000021168287,0.00002025285,0.000021360367,0.000021296277,0.000022485194,0.000021365257,0.000021955835,0.00002119099,0.000021292764,0.000019957453,0.000020236403,0.000019627934,0.000020504873,0.000019095216,0.000020491541,0.000019597164,0.000020169009,0.000019018144,0.000020411713,0.000019657118,0.000020560092,0.000019600717,0.000020798932,0.000020243853,0.000020299123,0.000019327395,0.000019227331,0.000019131507,0.000020219388,0.000020075115,0.000020507787,0.00002017955,0.000020463849,0.00002033908,0.00001997457,0.00002013626,0.000022092883,0.000023384093,0.000025691015,0.000018414614,0.000011789443,0.000013198308],[0.000015645652,0.000012744243,0.000011597428,0.000015435618,0.000028802682,0.00003433699,0.000026790327,0.000023272036,0.000020572958,0.00002077982,0.000019586254,0.000019660773,0.00001895842,0.000019232173,0.000018757739,0.00001920025,0.00001917787,0.000020115032,0.000019364017,0.000019340006,0.000019494291,0.000020118505,0.00001919053,0.000019191755,0.000018283201,0.000019173005,0.000018230638,0.000018783678,0.000018443543,0.000019535944,0.000018382767,0.000018818228,0.000018196211,0.000019573912,0.00001891728,0.000019767449,0.000019801257,0.00002088557,0.000019563666,0.000019867744,0.000019130011,0.0000203796,0.000019437524,0.000019883515,0.000019779762,0.000020349848,0.000019251129,0.000019281299,0.000018686893,0.000019721429,0.000018893123,0.000019255885,0.000019310832,0.00002011605,0.000018986757,0.00001930632,0.00001869254,0.00001993995,0.000018713785,0.000019096018,0.00001894456,0.000019957453,0.00001859252,0.000018699478,0.000018175642,0.00001937342,0.00001843547,0.000018801222,0.000018818604,0.000019861569,0.00001858917,0.000018994979,0.00001841593,0.000019701465,0.000018459274,0.0000188702,0.000018640152,0.000019768031,0.00001837481,0.000018566172,0.000018130873,0.000019368857,0.000018424485,0.000018793478,0.000018799197,0.00001983927,0.000018524823,0.000018878984,0.000018286828,0.000019592326,0.00001839043,0.000018880604,0.000018663899,0.000019781535,0.00001834298,0.000018539722,0.000018080851,0.000019350467,0.000018411225,0.000018785666,0.000018791614,0.000019833575,0.000018521643,0.000018888402,0.000018307435,0.000019621664,0.000018484181,0.000019015768,0.000018811177,0.000019908883,0.0000184626,0.000018645414,0.000018153349,0.000019389943,0.000018429564,0.000018804882,0.000018810531,0.000019881145,0.000018580095,0.000018951263,0.000018362216,0.00001965933,0.000018494462,0.000019000088,0.000018780667,0.000019881487,0.000018447412,0.00001861942,0.000018125273,0.000019369078,0.000018415543,0.000018794859,0.000018799376,0.000019872274,0.0000185754,0.000018970413,0.000018379227,0.00001967835,0.000018499788,0.000019010184,0.000018778142,0.000019894364,0.000018441186,0.000018608183,0.00001811466,0.000019343659,0.000018408522,0.00001881193,0.000018829862,0.000019861436,0.000018540393,0.000018906154,0.000018322648,0.000019635103,0.000018448398,0.000018950559,0.000018761926,0.000019868388,0.000018427068,0.000018600607,0.000018128176,0.000019376726,0.000018433959,0.000018793638,0.000018788318,0.000019844436,0.00001853212,0.00001891582,0.00001831173,0.000019588497,0.000018375109,0.00001883859,0.0000186377,0.000019755651,0.00001836353,0.00001854844,0.000018118548,0.000019417683,0.00001850323,0.000018846838,0.00001878984,0.000019881296,0.000018654504,0.00001904346,0.00001840517,0.00001973904,0.000018440798,0.00001876715,0.000018474753,0.000019519126,0.000018090579,0.00001831732,0.00001783755,0.000019182753,0.000018299685,0.000018814531,0.000018693629,0.000020007763,0.000018841589,0.000019420959,0.000018849965,0.000020051446,0.0000189232,0.00001936592,0.00001907234,0.000020085972,0.000018792995,0.00001906385,0.00001878047,0.000019888237,0.000019168325,0.000019839477,0.000019986479,0.000020974514,0.00002001318,0.000020702737,0.00002024926,0.000021369982,0.000020314828,0.00002057339,0.000020101455,0.000020529234,0.00001959752,0.000019445144,0.00001884389,0.000019516112,0.000018562208,0.00001883611,0.000018590074,0.00001971953,0.000018623006,0.000019359179,0.000018764465,0.00001992997,0.000018589984,0.000019501229,0.000018743773,0.00002025909,0.000018887267,0.00001926301,0.00001803888,0.00001929813,0.000019226343,0.000020218366,0.000019884557,0.000020510839,0.00002030896,0.00002144235,0.000020848996,0.000021518146,0.000021626087,0.000024305666,0.000025395611,0.000019200452,0.000011402874,0.000013854894],[0.000015442967,0.000013875534,0.000010890359,0.00001784519,0.00002965331,0.000035736382,0.000028451308,0.000023872504,0.00002181897,0.000021432457,0.000020745723,0.000019998795,0.000020353029,0.00001989019,0.000020180938,0.000019791949,0.00002040673,0.000020470312,0.000020374257,0.000019733694,0.000020758369,0.000020914533,0.000020762685,0.000019747851,0.000019964382,0.000019796047,0.000019834748,0.000018998873,0.000019907593,0.000019879648,0.000020282461,0.000019254287,0.00002001257,0.000020019594,0.000020591233,0.000019978495,0.000021188665,0.000020924808,0.000021124124,0.000020271209,0.000020950343,0.000020722726,0.000020770409,0.000019857573,0.000020659387,0.000020615105,0.00002070165,0.00001979112,0.000020533444,0.000020387026,0.000020547372,0.000019532386,0.000020618347,0.000020496682,0.000020804544,0.000019801448,0.000020677679,0.0000203365,0.000020496896,0.000019249754,0.000020237541,0.000020247657,0.000020425967,0.000019252138,0.000020156913,0.00002002431,0.000020338304,0.000019274532,0.000020469764,0.00002032822,0.000020602878,0.000019525774,0.000020484822,0.000020169144,0.000020358231,0.000019114403,0.000020047375,0.00001999481,0.000020250109,0.00001912921,0.000020112328,0.000020023472,0.00002029949,0.000019262881,0.00002041691,0.000020268599,0.000020495685,0.00001939786,0.000020337839,0.000020027977,0.000020212678,0.000019037016,0.000020037358,0.00001999891,0.000020270396,0.000019118977,0.00002008419,0.000019967676,0.000020253587,0.000019216463,0.000020391868,0.000020254492,0.000020459674,0.000019415424,0.000020356756,0.000020082984,0.000020315565,0.000019187035,0.0000201979,0.000020119733,0.000020364778,0.00001919311,0.00002014621,0.000020007608,0.000020315798,0.000019269424,0.000020461997,0.000020335996,0.000020571113,0.000019477104,0.000020420746,0.000020104619,0.00002031632,0.000019154932,0.000020163758,0.000020095189,0.000020348605,0.000019179279,0.000020120866,0.000019993666,0.00002030892,0.000019259502,0.00002045548,0.000020323665,0.000020562169,0.000019483958,0.000020440502,0.000020118543,0.000020325275,0.00001916701,0.00002017374,0.000020100439,0.000020349984,0.000019167412,0.000020096031,0.000019980876,0.00002026887,0.000019256784,0.000020435065,0.000020292831,0.000020473923,0.000019408499,0.000020346724,0.000020041312,0.000020226658,0.00001909345,0.000020118543,0.000020067784,0.000020303693,0.000019140889,0.000020105923,0.000019994237,0.000020306114,0.000019253644,0.000020430212,0.000020294052,0.000020525495,0.000019449633,0.000020379717,0.000020051886,0.000020236403,0.000019069066,0.00002004984,0.000020037109,0.000020276952,0.000019153287,0.000020140178,0.00002008061,0.000020375304,0.00001928643,0.000020433292,0.000020312486,0.00002063491,0.000019520374,0.000020427271,0.000020094192,0.000020278303,0.000018981144,0.000019754538,0.000019859182,0.000019977408,0.000018915765,0.000019856154,0.00001985763,0.000020342144,0.000019275636,0.000020487907,0.000020413036,0.000020821753,0.000019920375,0.00002087231,0.000020526022,0.000020565876,0.000019571447,0.000020521305,0.000020410584,0.000020526337,0.000019691623,0.000020539084,0.000020355516,0.000020482828,0.000019764018,0.000021009888,0.000020866779,0.000021306514,0.000020780295,0.000021681803,0.000021410944,0.000021052449,0.000020447891,0.000020733934,0.000020993944,0.000020842357,0.000020121939,0.00002049588,0.000020495236,0.000020258898,0.000019187419,0.000020155147,0.000019905883,0.000020493711,0.000019680696,0.00002071921,0.000020192334,0.000020115032,0.000019281353,0.000019867612,0.000020093254,0.000020226948,0.000019459447,0.00001908484,0.000019249073,0.00001949487,0.000020003947,0.000020123744,0.00002076209,0.000020878999,0.00002133673,0.000021239039,0.000021749085,0.000022856882,0.000023986424,0.00002565363,0.000020151858,0.000011805465,0.000013909106],[0.00001527055,0.000016357928,0.000012393577,0.000018075938,0.000030265128,0.000034000102,0.000027255834,0.000024467574,0.000021039661,0.000021263177,0.000019722313,0.000020168067,0.000019065194,0.000019863804,0.000019556634,0.00002037045,0.000019636394,0.000020563091,0.000019553203,0.000019874813,0.000019778216,0.000020834685,0.000019707346,0.000020058293,0.000018727853,0.00001976494,0.000018570263,0.000018938057,0.000018517016,0.000019856758,0.000019073013,0.00001981743,0.000018598495,0.00002001217,0.00001916147,0.00001999113,0.00001953339,0.00002078741,0.000019748566,0.00002056515,0.000019416257,0.000020624328,0.000019254048,0.000019654868,0.000019035617,0.000020246787,0.000019466146,0.00002017145,0.000019218478,0.000020448711,0.000019255169,0.00001951896,0.000019108078,0.000020184267,0.000019425313,0.0000200292,0.000019102321,0.000020293219,0.000018852374,0.000019101373,0.000018657298,0.000019976971,0.000019065066,0.000019626697,0.000018792063,0.00002010974,0.000019019577,0.000019397008,0.000019068848,0.000020217421,0.000019249568,0.000019775876,0.00001892867,0.000020177704,0.000018834098,0.000019094634,0.00001854874,0.000019824745,0.000018896671,0.000019483216,0.000018741253,0.000020079633,0.000018995323,0.000019382547,0.000019030953,0.000020161393,0.000019131016,0.000019639805,0.00001879149,0.000020025494,0.000018673281,0.000018965204,0.000018487708,0.000019853635,0.000018909326,0.00001948093,0.000018690082,0.000020019193,0.000018935312,0.000019327174,0.000019012195,0.00002014523,0.00001913618,0.000019650914,0.000018811517,0.000020096299,0.000018787978,0.000019109135,0.000018640152,0.000019989471,0.000018997858,0.000019561632,0.000018751032,0.000020081894,0.000018989293,0.000019400597,0.000019081765,0.0000202376,0.000019225536,0.00001973441,0.000018862553,0.000020113748,0.00001876742,0.000019078434,0.000018611378,0.000019959489,0.00001898444,0.000019548168,0.000018736482,0.00002007383,0.000018984927,0.00001939011,0.00001906054,0.00002021642,0.000019207795,0.000019729161,0.000018865323,0.000020128735,0.000018782495,0.00001910571,0.000018630573,0.000019978705,0.00001898672,0.000019534806,0.000018711804,0.0000200538,0.00001897689,0.000019377983,0.00001906025,0.00002019636,0.000019156922,0.000019651812,0.000018798031,0.00002003927,0.000018698658,0.000019018687,0.000018573628,0.00001992518,0.000018943134,0.000019495352,0.000018716622,0.000020054047,0.000018982339,0.000019381256,0.000019051871,0.000020210578,0.000019197303,0.000019702537,0.000018843604,0.000020057318,0.000018713607,0.00001900304,0.000018548422,0.000019886531,0.000018957391,0.000019559842,0.000018826988,0.000020168585,0.000019022751,0.000019389425,0.00001902841,0.000020212332,0.000019255112,0.000019812609,0.000018884799,0.000020127256,0.0000186772,0.000018864082,0.000018271105,0.000019635328,0.000018626451,0.000019262552,0.00001852627,0.000020029258,0.000018915494,0.000019411016,0.000018907145,0.000020264075,0.000019403724,0.000020173664,0.0000192084,0.00002061884,0.000019207375,0.000019611767,0.000019114019,0.000020438769,0.000019469675,0.000020122114,0.000019198273,0.000020339972,0.00001916348,0.00001965693,0.000019231367,0.000020429452,0.000019981982,0.00002105064,0.000020207899,0.000021464713,0.000019975847,0.000020483396,0.000019488754,0.000020751162,0.000019947882,0.000020606143,0.000019520541,0.000020765003,0.000019364239,0.000019541067,0.000018917606,0.000020051006,0.000019384988,0.000020172722,0.000019151386,0.000020320273,0.000018692364,0.00001922264,0.00001819144,0.000019801182,0.00001878384,0.000019552008,0.000017755508,0.000018991084,0.000018431603,0.00001957182,0.000019267402,0.000020518508,0.000020588777,0.000021771724,0.0000214946,0.000022550865,0.0000236017,0.000025838339,0.000025184798,0.000018015104,0.000011766855,0.000014083868],[0.000015756816,0.000018007888,0.000013608199,0.000020142348,0.00003294517,0.000035087774,0.000031531246,0.000025224985,0.000023079005,0.000022061344,0.000021671962,0.000020031435,0.00002045226,0.00001985763,0.000020733243,0.00002008969,0.000021202875,0.00002079098,0.00002143258,0.000019961373,0.00002126472,0.000020956659,0.000021704393,0.000019967561,0.000020570173,0.0000195859,0.000020041238,0.000018760209,0.00002009404,0.000019741148,0.00002105781,0.0000194462,0.000020401807,0.000019595653,0.000020444051,0.000019543584,0.00002090807,0.000020522088,0.000021537668,0.000020256019,0.00002102861,0.000020287705,0.000020698986,0.000019421199,0.000020535224,0.000020150494,0.000021262791,0.00002006342,0.000020825606,0.000020085781,0.00002066236,0.00001939035,0.000020443329,0.000019996089,0.000021161162,0.000019806112,0.00002075443,0.000019811629,0.000020410096,0.000018763089,0.000020109605,0.000019793688,0.000020872967,0.00001951654,0.00002039644,0.000019697538,0.000020419773,0.00001919551,0.000020386733,0.000019988061,0.000021016502,0.000019607018,0.000020605847,0.000019710353,0.000020384168,0.000018743363,0.000020052688,0.000019660942,0.000020761636,0.000019388464,0.000020340205,0.000019641771,0.000020339234,0.000019128736,0.000020362117,0.000019912984,0.000020895413,0.000019482843,0.000020471403,0.000019576264,0.000020241903,0.000018585428,0.000019947178,0.000019636489,0.000020763022,0.000019382402,0.000020278343,0.000019570105,0.000020281843,0.000019070849,0.000020331981,0.000019893852,0.00002088868,0.000019505042,0.000020487692,0.00001965691,0.000020366058,0.000018721032,0.000020083331,0.000019736668,0.000020840625,0.000019456664,0.000020368621,0.00001965603,0.000020350933,0.00001916604,0.000020407275,0.000019989968,0.000020993884,0.000019577588,0.000020541374,0.00001966023,0.000020327852,0.000018703258,0.000020070385,0.000019737667,0.00002083699,0.000019451933,0.000020353806,0.000019648178,0.000020346492,0.00001914916,0.000020387726,0.000019964515,0.000020975394,0.000019560533,0.000020540436,0.00001966638,0.000020336518,0.000018710538,0.00002007433,0.000019741072,0.000020826878,0.000019436153,0.00002032731,0.000019622561,0.000020326263,0.00001913211,0.00002037548,0.000019936813,0.000020891308,0.000019511162,0.000020462367,0.00001959313,0.000020254995,0.000018642553,0.000020008354,0.000019696938,0.000020781523,0.000019404224,0.000020316069,0.000019625351,0.00002034003,0.000019145087,0.000020378238,0.000019967141,0.000020963336,0.000019559973,0.000020518939,0.000019628906,0.000020282734,0.000018638215,0.00002001864,0.000019712761,0.000020840866,0.000019466017,0.000020447911,0.00001971135,0.000020381349,0.00001912257,0.00002037692,0.000019947767,0.000021008607,0.000019621382,0.000020594767,0.000019636302,0.000020263999,0.0000185771,0.000019755405,0.000019520729,0.000020586343,0.000019129557,0.000020237328,0.00001953708,0.000020331343,0.000018953595,0.000020158606,0.000019862082,0.000021092499,0.00001991891,0.000020838103,0.000020106881,0.000020584674,0.000019419034,0.000020474099,0.00002027237,0.000021060581,0.000020103527,0.000020705718,0.00001997019,0.000020358018,0.000019364054,0.000020404608,0.000020212256,0.00002142463,0.000020675234,0.000021560829,0.000020981877,0.000021325319,0.000020362251,0.000020942754,0.000020746216,0.00002170607,0.00002056613,0.000021201096,0.000020232466,0.000020588168,0.00001924964,0.000020214144,0.000019679983,0.000020839892,0.000019540192,0.00002069125,0.00001982584,0.000020265796,0.000018867267,0.000019817166,0.000019645986,0.000020842375,0.000019300358,0.000019340358,0.000018573344,0.000019399968,0.000018923507,0.000019886815,0.000020318568,0.000020935486,0.000020799625,0.000020976455,0.000021467393,0.000024877629,0.000025059237,0.000024922034,0.000016634089,0.000011230556,0.000013542975],[0.000015748163,0.000018471901,0.000016285037,0.000023032653,0.000031988307,0.000030790245,0.000026760705,0.000023743361,0.000021239506,0.000021049716,0.000019722049,0.00002006811,0.000019215471,0.00001992425,0.000019217287,0.000020282192,0.000019968113,0.000020964255,0.000019649695,0.0000198412,0.00001969645,0.000020687461,0.000019680603,0.000019689463,0.000018928378,0.000019442567,0.000018629757,0.000018700262,0.0000183935,0.000019540694,0.000018753786,0.000019347386,0.000018826915,0.000019943696,0.000019118432,0.000019880215,0.00001968216,0.000020959977,0.000019817166,0.000020600855,0.000019776537,0.000020595493,0.000019196681,0.000019309195,0.000019032548,0.0000201763,0.000019503868,0.000020112999,0.00001945069,0.000020355923,0.00001917593,0.00001931413,0.000019152281,0.000020104619,0.000019389776,0.000019798823,0.000019190731,0.000019943316,0.000018687533,0.00001860458,0.000018634146,0.000019820432,0.00001901506,0.00001953028,0.000018937497,0.000019933374,0.00001885083,0.00001914684,0.000019095181,0.00002019293,0.000019279974,0.000019601015,0.00001905149,0.000019800673,0.00001861752,0.000018525388,0.00001855074,0.000019728464,0.00001890756,0.000019385987,0.000018855126,0.00001981622,0.00001874624,0.000019067831,0.000019038413,0.000020116931,0.000019149506,0.0000194735,0.000018912628,0.000019652376,0.000018465806,0.000018368048,0.000018416475,0.000019702216,0.000018914847,0.000019430685,0.000018832428,0.000019785062,0.000018721443,0.000019060375,0.000019043042,0.00002011745,0.000019178675,0.000019529349,0.000018984729,0.000019768277,0.00001860827,0.000018500548,0.000018531007,0.000019784044,0.000018992097,0.000019502828,0.000018898978,0.000019858142,0.000018771321,0.000019122625,0.00001911298,0.000020212468,0.00001926582,0.00001961233,0.000019028792,0.000019766147,0.000018568493,0.000018487073,0.000018541577,0.00001979365,0.000018983896,0.000019485426,0.000018889446,0.000019857744,0.00001876658,0.000019112178,0.000019091047,0.000020195936,0.00001924854,0.000019600904,0.00001901992,0.000019768315,0.000018577668,0.00001850563,0.000018555711,0.000019816805,0.000018996465,0.00001948628,0.000018879056,0.000019842562,0.000018755432,0.000019099716,0.00001909631,0.000020151974,0.000019176443,0.000019544459,0.000018972403,0.000019693332,0.000018506089,0.00001842974,0.000018479952,0.000019738287,0.000018950414,0.000019440695,0.000018868868,0.000019834672,0.000018765915,0.00001909948,0.000019086568,0.000020170124,0.000019227791,0.000019554434,0.000018993367,0.0000197112,0.000018530336,0.000018415703,0.000018482455,0.000019736914,0.000018992261,0.000019491708,0.000018939629,0.00001988657,0.0000187562,0.000019070667,0.000019049328,0.000020170739,0.00001928117,0.000019664598,0.000019064903,0.000019798992,0.00001852242,0.000018375793,0.000018294224,0.000019556932,0.000018714694,0.000019154546,0.000018548388,0.000019757008,0.000018673407,0.000019094634,0.000018964389,0.00002033842,0.000019481302,0.000020213509,0.000019470064,0.00002037004,0.000019113691,0.000019425832,0.00001944279,0.000020679216,0.000019664394,0.000020359728,0.000019683286,0.000020463245,0.000019174231,0.00001976119,0.00001960885,0.000020761794,0.000020141773,0.000021064036,0.000020626,0.000021325095,0.000020063728,0.000020242038,0.000019629524,0.000020619824,0.000019761643,0.00002025204,0.00001950015,0.000020193045,0.000019109535,0.000019173829,0.00001878237,0.000019685502,0.000019009874,0.00001946429,0.000019121257,0.000019862138,0.00001884256,0.000018859333,0.000018369501,0.000019525234,0.000018714893,0.000018998348,0.000018011307,0.000018630484,0.00001867957,0.00001956042,0.00001972867,0.000021186848,0.000020781048,0.000021702033,0.00002113571,0.000022613898,0.000023726454,0.000027356557,0.000024784447,0.000016708464,0.0000105726385,0.000013690008],[0.000016093272,0.000018235036,0.0000150778005,0.000025131487,0.00002966881,0.000029269275,0.00002626841,0.000023440514,0.000021923468,0.000021289778,0.00002113442,0.00002034389,0.000021018846,0.000020146652,0.000020534677,0.000020139141,0.000021218937,0.000020800953,0.000020948328,0.00002017584,0.000021046446,0.00002128263,0.000020985919,0.000019949288,0.000020403519,0.000020336383,0.000020674188,0.000019609543,0.00002020048,0.000020230902,0.00002042326,0.000019369612,0.00002070965,0.000020380183,0.000021125432,0.000020375848,0.000021596019,0.000021228308,0.000021520074,0.000020641564,0.0000216762,0.00002121052,0.000021374772,0.000020186386,0.000020921834,0.000021016662,0.000021055519,0.000020398189,0.000021273054,0.00002088362,0.000020976155,0.000020002668,0.000020978596,0.000020904223,0.00002109608,0.000020184614,0.00002101157,0.000020622125,0.000020952702,0.0000194971,0.000020581081,0.000020627414,0.000020688862,0.000019858671,0.000020742182,0.000020432046,0.000020634321,0.000019736914,0.000020890511,0.000020796868,0.000020965215,0.000020030042,0.000020814112,0.000020504052,0.000020821853,0.000019434781,0.000020530897,0.0000205499,0.000020630347,0.000019710034,0.000020610465,0.000020311032,0.00002053407,0.000019656874,0.000020848142,0.000020708207,0.000020852574,0.000019925674,0.000020686515,0.000020352953,0.0000206762,0.00001929202,0.000020409494,0.000020506692,0.00002064304,0.000019778103,0.000020657042,0.000020292639,0.000020497306,0.000019624564,0.000020818537,0.000020691406,0.000020867416,0.00001999195,0.000020779065,0.000020496329,0.000020837228,0.00001941333,0.000020502333,0.000020574449,0.000020722311,0.00001984116,0.000020713598,0.000020356312,0.000020552994,0.000019701034,0.000020917087,0.000020793736,0.000020963455,0.000020039117,0.0000208293,0.000020468106,0.000020799487,0.000019395695,0.000020535048,0.000020602802,0.000020714902,0.000019828563,0.000020701335,0.000020350391,0.000020549664,0.000019684827,0.000020895952,0.000020773161,0.000020952124,0.000020022211,0.000020821357,0.000020469335,0.000020800479,0.000019405094,0.000020540554,0.000020615282,0.000020737,0.000019834199,0.000020691665,0.000020348527,0.000020540669,0.000019660418,0.00002087042,0.000020716778,0.000020837784,0.000019961164,0.000020743566,0.00002039605,0.000020720137,0.000019345875,0.000020467032,0.000020546058,0.000020652767,0.000019802957,0.000020664293,0.000020327736,0.000020531681,0.000019649227,0.00002085679,0.000020743606,0.000020878642,0.000019990539,0.000020748237,0.00002042184,0.000020738364,0.000019375526,0.000020484293,0.000020574958,0.000020727017,0.000019823383,0.00002070473,0.000020353244,0.00002054114,0.000019646286,0.00002085492,0.000020752192,0.000020980875,0.00002009195,0.000020875277,0.000020533502,0.000020761714,0.000019307556,0.000020260404,0.000020387453,0.000020499027,0.000019410258,0.000020343194,0.00002015799,0.000020548547,0.00001962975,0.00002092351,0.000020821635,0.000021176242,0.000020323005,0.000021259872,0.000020778016,0.000021033964,0.000020043053,0.000021284135,0.000021068356,0.000021281576,0.000020385549,0.000021240903,0.000020553467,0.00002084027,0.000020170586,0.000021440244,0.000021234808,0.000021578991,0.000021124888,0.000022280492,0.000022027372,0.000021994227,0.00002103168,0.000021433847,0.000021335427,0.000021106081,0.00002030046,0.000020944632,0.000020594647,0.00002056321,0.000019829433,0.000020591113,0.000020395211,0.000020667743,0.000019843112,0.000020913694,0.000020752213,0.00002124463,0.000020178704,0.000020505831,0.000020559699,0.00002015159,0.000019743897,0.000019291709,0.000019671688,0.000020204374,0.000020221856,0.00002085679,0.000021619964,0.00002133144,0.000021635082,0.000021445398,0.000022194203,0.000025116487,0.000025367242,0.000024507879,0.00001729428,0.000010908101,0.000013483064],[0.000015601698,0.000016159078,0.0000151412005,0.000022736833,0.000029164457,0.000028003198,0.000023528799,0.00002239085,0.000019754312,0.000020565996,0.000019630497,0.000020539945,0.00001920701,0.000019956939,0.000019250228,0.00002015403,0.000019454976,0.000020746673,0.000019567417,0.000020433625,0.000019867024,0.000021029593,0.000019661074,0.000019645162,0.000019009784,0.000020237136,0.0000196926,0.000020191255,0.000019422905,0.000020271691,0.000018961857,0.000019202978,0.000018655464,0.000020162028,0.000019530877,0.00002052933,0.000019818734,0.000020904501,0.000019771991,0.000020369205,0.000019542316,0.000020845038,0.000019863483,0.000020261814,0.000019489702,0.000020593292,0.000019538476,0.000020187636,0.000019307758,0.000020781841,0.000019631716,0.000020279367,0.00001956473,0.000020632038,0.000019613806,0.000019958043,0.00001921846,0.00002032322,0.000019448371,0.000019562995,0.000019154639,0.000020133726,0.000019151023,0.000019673602,0.000018852896,0.000020347443,0.000019259043,0.000019982896,0.000019407351,0.000020584812,0.000019525569,0.000019847444,0.000019101519,0.000020239626,0.000019380866,0.00001947365,0.000019179972,0.00002016047,0.000019139154,0.000019562658,0.000018754467,0.000020224827,0.000019188406,0.000019930636,0.000019371812,0.000020491425,0.000019426776,0.000019735991,0.000018990106,0.000020086796,0.000019223024,0.000019301902,0.000019031913,0.000020048006,0.0000191202,0.00001960971,0.00001878565,0.000020200096,0.000019135996,0.000019860148,0.000019321664,0.00002045228,0.000019447481,0.00001980547,0.000019099696,0.000020248795,0.000019384415,0.0000194381,0.00001911905,0.000020120866,0.000019201752,0.000019671688,0.000018820489,0.000020254995,0.000019193276,0.000019935405,0.00001938682,0.000020555759,0.000019494906,0.000019836998,0.000019090829,0.00002020869,0.000019315512,0.00001940241,0.000019118157,0.000020146652,0.00001919247,0.000019658824,0.000018812145,0.000020261294,0.000019183852,0.000019920164,0.000019366844,0.000020540534,0.000019477699,0.000019816069,0.00001907847,0.000020197514,0.0000193031,0.000019391608,0.000019110155,0.000020145806,0.000019203491,0.00001967484,0.000018809149,0.000020252715,0.00001917734,0.00001988211,0.00001936169,0.000020483629,0.000019412479,0.00001975307,0.000019028012,0.00002013459,0.000019263525,0.000019347073,0.000019077288,0.00002008672,0.00001915115,0.000019625968,0.000018789553,0.000020236113,0.00001917902,0.00001989112,0.00001936664,0.000020500964,0.000019463623,0.000019781364,0.000019069066,0.00002018625,0.000019361745,0.000019459856,0.000019194227,0.000020201116,0.000019262607,0.000019687905,0.00001881446,0.000020257527,0.000019185241,0.000019910118,0.000019340358,0.000020513226,0.000019526704,0.00001985585,0.00001916944,0.000020316495,0.000019363204,0.000019358551,0.00001900527,0.000019973351,0.000018882152,0.000019265472,0.000018389324,0.000019909492,0.000018931141,0.000019670413,0.000019176956,0.000020504776,0.000019481879,0.00002001633,0.000019191555,0.000020487225,0.00001954211,0.000019935444,0.000019449133,0.000020642432,0.000019580073,0.000020081894,0.000019197267,0.000020315973,0.000019451134,0.000020422109,0.000019888825,0.000020879677,0.000020157875,0.000020799407,0.000020312506,0.000021651036,0.000020910005,0.000021229624,0.000020157395,0.00002106488,0.00001987597,0.000020201502,0.000019191812,0.000020379153,0.000019499126,0.000020172663,0.000019441344,0.00002034263,0.000019483772,0.000019654888,0.00001928987,0.000020503328,0.000020249974,0.000020882724,0.000020159008,0.000020977295,0.0000196004,0.000019566764,0.00001862235,0.000019346686,0.000019721221,0.00002016793,0.00002003541,0.000020962296,0.000020850448,0.000021693199,0.0000209052,0.000021720793,0.000023380815,0.000025875079,0.000023474495,0.000016321932,0.000010655184,0.000013643088],[0.000015852009,0.000014711024,0.000014352196,0.000021250791,0.000031574906,0.00002990073,0.000026803002,0.000022764343,0.000021329019,0.000021013835,0.000021274273,0.000020109203,0.000020575253,0.000019572419,0.000019994068,0.000019160521,0.000020444675,0.000020121019,0.000021309279,0.000019899146,0.000021243031,0.000020824196,0.000020975773,0.000019565923,0.00002021532,0.000019715655,0.000020942614,0.00001984222,0.000021018504,0.000020229532,0.000020635305,0.000018834511,0.000020065276,0.000019599167,0.000020803793,0.000019733317,0.000021119753,0.000020472928,0.000021025624,0.000019937384,0.000020759813,0.000020158279,0.000021449836,0.000019860905,0.000021115704,0.000020428208,0.000021196629,0.000019684583,0.0000206861,0.000020043015,0.000020997888,0.000019691472,0.000020734686,0.000020153819,0.00002079655,0.000019788931,0.000020481344,0.000019950374,0.000021198084,0.000019435929,0.00002061589,0.000020056994,0.000020844602,0.00001934115,0.00002034591,0.000019767824,0.000020682412,0.000019400302,0.000020554857,0.000020075497,0.000020669042,0.000019709207,0.000020371515,0.000019913801,0.00002113563,0.000019411627,0.000020651154,0.000020152358,0.000020891328,0.000019242558,0.000020262434,0.00001969705,0.000020620886,0.000019381992,0.000020524574,0.00002002729,0.000020599991,0.000019621646,0.000020261332,0.000019789137,0.000020962996,0.00001924641,0.000020496094,0.000020025973,0.000020821593,0.000019252268,0.000020259537,0.000019648009,0.000020559248,0.000019323434,0.000020450992,0.00001998381,0.00002060972,0.00001969521,0.000020371925,0.000019940711,0.00002113325,0.000019384803,0.000020607536,0.000020088615,0.000020885034,0.000019311348,0.000020309812,0.000019702931,0.000020620275,0.000019376155,0.000020522715,0.000020046706,0.000020657317,0.000019689913,0.000020368601,0.000019885676,0.00002107575,0.00001934912,0.000020607615,0.000020113728,0.0000209055,0.000019312914,0.000020312407,0.000019707066,0.000020618112,0.000019363057,0.000020509784,0.00002003348,0.000020645894,0.000019674335,0.000020355516,0.000019877505,0.000021060741,0.000019325294,0.000020582436,0.000020096031,0.000020896929,0.000019327616,0.000020300711,0.000019691397,0.000020600955,0.000019354196,0.00002049287,0.000019995345,0.000020555522,0.000019619492,0.00002029378,0.000019821644,0.000021005842,0.000019302492,0.000020558993,0.000020075458,0.00002086117,0.000019282677,0.000020268966,0.0000196643,0.000020588817,0.00001935104,0.00002049762,0.00002002391,0.000020613374,0.000019692166,0.000020336616,0.000019899202,0.00002111774,0.000019443272,0.000020701691,0.000020214491,0.000020992544,0.000019345061,0.000020318277,0.00001972393,0.00002065269,0.00001933311,0.000020458327,0.000020007019,0.00002068608,0.00001973108,0.000020386695,0.000020020265,0.00002112501,0.00001933534,0.000020442043,0.000019897323,0.000020518135,0.000018885754,0.000019869678,0.00001925425,0.000020421545,0.000018973127,0.000020321184,0.000019867688,0.00002065391,0.000019466166,0.000020425168,0.000020000703,0.000021150045,0.000019542484,0.00002074414,0.000020118025,0.000020755577,0.000019545056,0.000020429356,0.000019748248,0.000020672256,0.000019627485,0.000020879757,0.000020395446,0.00002110763,0.00002034424,0.000021263906,0.000021113046,0.000022680484,0.000021090185,0.000021707374,0.000020881966,0.000021324076,0.000019914087,0.000020426103,0.000019789572,0.00002061599,0.000019507963,0.000020427467,0.0000198664,0.000020435085,0.000019570982,0.000020329131,0.000020236286,0.000021758338,0.000020679789,0.000021609656,0.000021094349,0.000021085158,0.000019598456,0.00001944559,0.000019190566,0.000020170835,0.000019569152,0.000020372274,0.000020013296,0.000020476891,0.000020316651,0.000019962097,0.000020477906,0.000023341448,0.00002417948,0.000024987312,0.000016405405,0.000011080944,0.000013038637],[0.000016427197,0.000014241555,0.000014884742,0.000021410639,0.00003261951,0.000030097443,0.00002470464,0.000022191281,0.000019700075,0.000020315565,0.000019145105,0.00001989186,0.00001901709,0.000019569974,0.000018423643,0.000019162495,0.000018825498,0.00002025774,0.000019168216,0.000019800445,0.000019690928,0.00002088326,0.00001961143,0.000019748004,0.000018740182,0.000019672832,0.00001890462,0.0000193401,0.000019166406,0.000019909967,0.00001881679,0.000018942934,0.00001833116,0.000019655918,0.000018935873,0.000019766881,0.00001960868,0.00002064611,0.000019444551,0.00001983142,0.000019009169,0.000020147536,0.000019218478,0.000019433539,0.000019296105,0.000020110121,0.00001921659,0.000019597464,0.000018960574,0.000020223553,0.00001916034,0.00001979582,0.000019459001,0.00002049893,0.000019462492,0.00001990095,0.000019190897,0.00002020054,0.000019243475,0.00001923696,0.000019149433,0.00001991048,0.000019006033,0.000019397452,0.000018852536,0.000020067802,0.000018965891,0.000019626923,0.0000193868,0.000020493399,0.000019384841,0.000019898065,0.000019234905,0.000020280084,0.000019286907,0.000019297007,0.00001922559,0.000020009098,0.000019034056,0.000019308089,0.00001877168,0.00001998562,0.000018936595,0.000019576899,0.000019356798,0.000020416872,0.000019332594,0.000019788704,0.000019094343,0.00002011649,0.000019115514,0.000019106457,0.000019089644,0.000019885829,0.000018955077,0.000019272271,0.00001876418,0.000019970475,0.000018913906,0.000019548504,0.000019345116,0.000020396905,0.000019364074,0.000019877372,0.000019215326,0.000020250012,0.000019251514,0.00001923043,0.000019183066,0.0000199409,0.000019000505,0.000019317373,0.000018789176,0.000019999443,0.000018933433,0.000019569974,0.000019352257,0.00002044224,0.000019365662,0.00001986441,0.000019194738,0.000020222782,0.000019211295,0.000019212212,0.000019169038,0.000019968094,0.000019018089,0.000019334178,0.00001879131,0.000020004823,0.000018923974,0.000019563406,0.000019338275,0.000020437561,0.000019360252,0.000019855548,0.000019183593,0.000020208978,0.0000191941,0.000019193056,0.000019158986,0.000019963734,0.000019021625,0.0000193544,0.000018805078,0.00001999748,0.000018928271,0.000019556019,0.00001933914,0.000020380357,0.000019301793,0.000019799163,0.000019145324,0.000020173049,0.000019156867,0.000019150419,0.000019138954,0.000019925541,0.000018995159,0.000019299658,0.000018778608,0.000019978399,0.000018916091,0.00001954761,0.00001935414,0.000020401827,0.000019354213,0.000019853333,0.000019210966,0.000020220603,0.000019263322,0.000019291818,0.000019282512,0.000020029429,0.000019076888,0.000019349638,0.000018814173,0.000020037263,0.000018947234,0.000019540676,0.000019297082,0.000020427991,0.000019445682,0.0000198911,0.000019215307,0.000020302356,0.000019276278,0.000019153762,0.000019017454,0.000019759758,0.000018684843,0.00001888327,0.000018345325,0.00001956113,0.000018507182,0.000019171013,0.000018987246,0.000020281224,0.000019251569,0.000019798237,0.000019187071,0.000020360232,0.000019269644,0.000019392995,0.000019146055,0.000020054813,0.000018932224,0.000019375007,0.00001896182,0.000019968704,0.000018967481,0.000019641733,0.000019702517,0.000020710537,0.000020015184,0.000020433956,0.000019958425,0.000021006623,0.00002020948,0.000020245127,0.000019806263,0.000020260404,0.000019333978,0.000019460116,0.000018736284,0.000019781986,0.000018930996,0.000019537323,0.00001922825,0.000020295349,0.000019520523,0.000019846271,0.00001924074,0.000020269701,0.000019584424,0.000020195666,0.000019893112,0.000020698413,0.000019875362,0.000019543937,0.000018554525,0.000019023784,0.000019251165,0.00001952164,0.000019720977,0.000020142099,0.000020257565,0.000021153353,0.000020530682,0.00002142083,0.000022232694,0.000025569536,0.000025344561,0.000017244676,0.000010640541,0.000013496546],[0.000016210723,0.000014434211,0.000012868042,0.000022587883,0.000033482924,0.000031486743,0.000026788153,0.000023276232,0.000021583233,0.000021190968,0.000020787787,0.000020203814,0.000020731148,0.000019965524,0.00002016972,0.000019693725,0.000020595062,0.000020373964,0.000020591133,0.000019835674,0.000021131578,0.000021193375,0.000021172003,0.000020223188,0.000020369906,0.000020221798,0.000020185884,0.000019355635,0.000020114534,0.000020312038,0.000020625153,0.000019546995,0.000020202677,0.000020251733,0.00002066991,0.000019874946,0.000021080754,0.000020848956,0.000021024038,0.000020346044,0.000020726977,0.000020644595,0.000020892205,0.000019841274,0.000020414924,0.000020551917,0.000020743822,0.00001995475,0.000020923071,0.000020763891,0.000020914553,0.000019951896,0.000020917863,0.000020759951,0.000021087973,0.000020410409,0.000020886886,0.000020670108,0.000020873425,0.000019613039,0.000020308611,0.000020441146,0.000020754072,0.00001979716,0.000020844323,0.000020636071,0.000020769063,0.000019839932,0.000020913714,0.000020717966,0.000021009328,0.000020343581,0.000020926964,0.000020670186,0.000020886986,0.000019699624,0.000020425518,0.000020522735,0.000020765872,0.000019718815,0.000020780732,0.000020568388,0.000020701867,0.00001979414,0.000020859676,0.000020670008,0.000020958678,0.000020278885,0.000020785348,0.000020521638,0.000020745703,0.000019560308,0.000020280664,0.000020434773,0.000020679196,0.00001967411,0.000020755639,0.000020555779,0.000020695572,0.000019779744,0.000020847307,0.000020680794,0.000020985859,0.00002036534,0.000020901292,0.000020642055,0.000020849096,0.00001966863,0.000020360485,0.000020480209,0.000020722982,0.000019716352,0.000020782594,0.000020577922,0.000020720869,0.000019798936,0.000020873606,0.000020694388,0.000021005222,0.000020339467,0.000020901352,0.000020619626,0.000020841162,0.000019656838,0.000020371011,0.000020504816,0.000020754589,0.000019730589,0.000020788799,0.000020583242,0.000020720356,0.00001978929,0.00002086813,0.000020691723,0.000021009086,0.000020333631,0.00002088852,0.000020607164,0.000020824056,0.00001963737,0.000020365786,0.000020509333,0.000020762369,0.000019756742,0.000020809388,0.00002059027,0.00002071984,0.000019786383,0.000020842574,0.000020652453,0.000020935286,0.000020293239,0.000020839076,0.000020573507,0.000020768111,0.000019597184,0.000020320971,0.000020482848,0.000020704158,0.000019700958,0.00002075918,0.000020546058,0.000020677717,0.000019750225,0.00002082944,0.000020664904,0.000020960937,0.000020354544,0.000020901094,0.000020659683,0.000020882882,0.000019734842,0.000020439196,0.000020529134,0.000020757796,0.000019734636,0.000020786558,0.000020616717,0.000020739986,0.000019775329,0.000020818181,0.000020685033,0.000021049214,0.000020380203,0.000020850526,0.00002069784,0.000020791436,0.000019559377,0.000020093481,0.000020273508,0.000020400386,0.000019331967,0.000020176281,0.000020204468,0.000020372683,0.000019379757,0.000020555484,0.000020488944,0.000021021251,0.000020307507,0.000021074444,0.00002074976,0.000020845078,0.000019686233,0.00002059734,0.00002049938,0.000020639674,0.000019880898,0.000020671783,0.00002036128,0.000020479762,0.000019617772,0.000020837526,0.000020788759,0.000021241045,0.00002091934,0.00002145184,0.00002132556,0.000021099842,0.000020350642,0.000020632295,0.000020803176,0.000020820165,0.00001993704,0.000020402818,0.000020506359,0.000020443798,0.000019608457,0.000020611744,0.000020536283,0.000020974772,0.000020283796,0.000020712729,0.000020354544,0.00002051749,0.000019677673,0.000020127083,0.000020686237,0.000020497484,0.000019757948,0.00001882864,0.000019065048,0.000018926989,0.000019513971,0.000019560719,0.00002044682,0.000020767497,0.000021165784,0.000021034986,0.00002168238,0.000023547027,0.000024100196,0.000025034586,0.000018052062,0.000010881398,0.000013339856],[0.0000158767,0.000014614679,0.000012939885,0.000019555273,0.000030625873,0.00003160826,0.000025971296,0.000023939441,0.000020689118,0.000021090045,0.000019563293,0.000020170028,0.000018885448,0.000019719811,0.00001909733,0.000020085512,0.000019260146,0.000020426649,0.000019144356,0.000019840745,0.00001940676,0.00002095766,0.000019710635,0.000020531621,0.000019043317,0.00002029947,0.00001885633,0.000019305327,0.0000188075,0.000020213412,0.00001945069,0.000020141197,0.000018809742,0.000020101781,0.000019092959,0.000019845344,0.000019353549,0.00002078406,0.000019808926,0.000020580945,0.000019190878,0.000020572526,0.000019254305,0.000019647485,0.000018884026,0.000020069487,0.000019245108,0.000019990195,0.000018989182,0.000020435924,0.000019138131,0.000019724157,0.00001900741,0.000020449941,0.000019557621,0.000020431617,0.000019205598,0.000020557309,0.000018927405,0.00001926191,0.000018680994,0.000019970683,0.000019047202,0.000019778989,0.000018897032,0.000020341524,0.000018999055,0.000019588477,0.000018925544,0.000020368583,0.000019385192,0.000020301484,0.000019114,0.00002053681,0.00001892847,0.000019390332,0.000018814027,0.000020132247,0.000019087496,0.00001975403,0.000018868634,0.000020314365,0.000018987843,0.000019550815,0.000018940622,0.000020386753,0.000019395104,0.000020295543,0.000019074923,0.000020437794,0.000018837816,0.000019275765,0.000018704419,0.000020016807,0.000019018906,0.000019688243,0.000018846154,0.000020294536,0.000018988494,0.000019544086,0.000018925022,0.00002038203,0.00001942872,0.000020365786,0.000019154766,0.000020540907,0.000018920655,0.00001937268,0.000018773166,0.000020078598,0.000019057741,0.00001973439,0.000018865863,0.000020325371,0.000019008188,0.00001955906,0.000018926736,0.000020371497,0.000019398285,0.000020318335,0.00001911484,0.000020498655,0.000018890654,0.000019354915,0.000018770568,0.00002009168,0.000019065612,0.000019744819,0.000018864172,0.000020332465,0.00001900429,0.000019553743,0.000018920548,0.000020374022,0.000019402874,0.000020317619,0.000019111341,0.000020485933,0.000018877345,0.000019332943,0.000018765755,0.000020097008,0.000019087842,0.000019770145,0.000018890167,0.000020343037,0.000019023368,0.000019562678,0.000018918634,0.00002034878,0.00001937342,0.000020273163,0.000019072286,0.000020449219,0.000018849372,0.000019285859,0.000018730907,0.000020062502,0.0000190411,0.00001970124,0.000018843837,0.000020297864,0.000018976818,0.000019524228,0.000018908895,0.00002037381,0.000019434596,0.000020371826,0.000019186047,0.000020608755,0.00001899373,0.000019450152,0.000018854047,0.000020123704,0.00001908655,0.000019757836,0.000018900744,0.000020370779,0.000019020028,0.000019541067,0.000018902547,0.000020378824,0.000019476603,0.000020404628,0.000019162293,0.000020586835,0.00001890884,0.000019278743,0.000018579918,0.000019914087,0.000018839848,0.000019331488,0.000018478418,0.000020019652,0.000018672356,0.000019141618,0.000018606657,0.0000201286,0.000019294965,0.000020295794,0.000019204444,0.000020639005,0.000019090065,0.000019683455,0.00001906321,0.000020521795,0.00001940761,0.000020065716,0.000019091103,0.000020271826,0.000019030753,0.000019509022,0.00001903088,0.00002032163,0.000019978781,0.000021114134,0.000020072606,0.000021295058,0.000019622132,0.00002003218,0.000019294965,0.00002052935,0.000019855395,0.00002028459,0.000019087332,0.000020403091,0.000019195051,0.000019647598,0.000018970522,0.000020434522,0.00001976415,0.00002071913,0.000019377116,0.000020547352,0.000018945157,0.00001970154,0.000018910427,0.000020538613,0.000019902809,0.00002022992,0.000018492452,0.000019045876,0.000018784789,0.000019021154,0.000019015422,0.000019845364,0.000020573822,0.00002159987,0.000021410862,0.000022304133,0.000023879473,0.00002527223,0.000023501487,0.000016443513,0.000011014338,0.000013462878],[0.000015769712,0.000014357974,0.000011848144,0.00001768865,0.000031105148,0.000034251338,0.000030390183,0.000025163743,0.000022816701,0.000021931435,0.00002158531,0.000019860963,0.000020399628,0.000019627783,0.000020401807,0.000019466092,0.00002076296,0.000020297826,0.000020995867,0.000019376024,0.000020775184,0.000020488475,0.000021527527,0.000019984305,0.000020693282,0.000019734993,0.00002021825,0.000019063611,0.000020244124,0.00002015455,0.00002138872,0.000020011272,0.000020663425,0.000019767711,0.000020401612,0.000019376246,0.000020788719,0.000020566898,0.00002171137,0.000020251056,0.000020929676,0.00002024812,0.000020996627,0.000019550032,0.000020492109,0.000020277317,0.000021158216,0.000019812365,0.000020631684,0.000019866759,0.000020552192,0.000019002915,0.000020287125,0.000019983163,0.000021154343,0.000019916764,0.000020813874,0.000019984858,0.00002036973,0.000018910914,0.000020049018,0.000019998835,0.000020730771,0.000019435725,0.000020369087,0.000019630965,0.0000202617,0.000018726281,0.000020085054,0.00001978344,0.000020930895,0.000019734975,0.0000206406,0.000019825367,0.000020313706,0.000018994326,0.000020201522,0.000020076262,0.000020789552,0.000019435336,0.000020377403,0.00001962273,0.000020229185,0.000018760476,0.000020119753,0.000019837018,0.00002094539,0.000019744424,0.000020645619,0.000019810117,0.000020274436,0.00001892392,0.000020107227,0.000019994523,0.000020687223,0.000019364536,0.000020329559,0.000019604455,0.000020196301,0.00001875282,0.000020116664,0.00001984349,0.000020978376,0.00001981605,0.000020722135,0.000019878471,0.00002033615,0.00001900083,0.000020183015,0.000020039499,0.000020733203,0.00001941735,0.000020366446,0.000019623816,0.000020222415,0.000018756022,0.000020102874,0.000019813366,0.000020948786,0.00001975938,0.000020673006,0.000019830606,0.000020300498,0.000018978539,0.000020179956,0.000020049096,0.000020763298,0.000019423404,0.000020377152,0.000019630854,0.000020225676,0.000018753053,0.000020098389,0.000019814594,0.00002094765,0.000019758496,0.000020663445,0.000019819547,0.000020287627,0.000018963268,0.000020165124,0.0000200525,0.000020776253,0.00001945336,0.00002039712,0.000019644056,0.000020247173,0.00001877791,0.00002010412,0.000019798841,0.000020904243,0.00001972504,0.000020615398,0.000019787874,0.000020248659,0.000018935909,0.00002012459,0.000020029505,0.000020734726,0.00001937948,0.000020343581,0.000019588011,0.000020171567,0.000018752962,0.000020106076,0.00001984171,0.000020993124,0.000019852725,0.000020776053,0.000019967962,0.00002043869,0.000019071922,0.000020238487,0.00002010924,0.00002076532,0.000019443865,0.000020391557,0.000019656105,0.000020251771,0.000018724979,0.00002006807,0.00001980749,0.00002099755,0.00001983664,0.000020749127,0.000019902429,0.000020349109,0.000018922206,0.000019935938,0.000019859996,0.000020436917,0.000019072759,0.000019875173,0.000019323876,0.000020009002,0.000018325654,0.000019816445,0.000019570776,0.000021014377,0.000019750056,0.000020795698,0.000020037358,0.000020459149,0.000019443438,0.000020530271,0.00002039352,0.000021032201,0.000019948622,0.000020534715,0.000019820074,0.000020080437,0.000019063067,0.000020106612,0.00002006277,0.000021359185,0.000020751817,0.000021574097,0.000021076512,0.000021237664,0.000020245514,0.00002078644,0.000020843072,0.00002154642,0.00002037109,0.000020629815,0.000019816616,0.000020315178,0.00001893042,0.000020010415,0.000019711651,0.000020986658,0.000020236615,0.000020848616,0.000020046304,0.000020248699,0.00001944622,0.000020088768,0.000020578198,0.000021453232,0.000020303383,0.000019779649,0.000019091738,0.00001942172,0.000018718087,0.000019380219,0.000019810306,0.00002064741,0.000020686433,0.00002093313,0.000021510245,0.000025050515,0.00002442065,0.000023237018,0.000015794727,0.000010759644,0.000012875187],[0.00001597332,0.000013487733,0.000012077504,0.000016590524,0.000030344081,0.000032399454,0.00002754147,0.000024223333,0.000021414498,0.00002086445,0.00001934556,0.00001942133,0.000018719264,0.0000191876,0.000018436738,0.000019148372,0.000019153378,0.000020203699,0.00001897309,0.000019202465,0.000019073723,0.000020427584,0.000019453788,0.000020017153,0.000019071758,0.000019930501,0.000018660216,0.000019170446,0.000018719444,0.00002013772,0.000019386505,0.000020077297,0.000019340801,0.000020190446,0.000019119616,0.000019704621,0.000019569246,0.00002078293,0.000019867157,0.000020345366,0.000019706613,0.000020716818,0.00001946403,0.000019683024,0.000019270103,0.000020301735,0.000019554434,0.00001983314,0.000019212375,0.00002014281,0.000018873421,0.00001919084,0.000019025454,0.000020442569,0.000019540825,0.000020410895,0.000019637595,0.000020681919,0.000018969093,0.000019322051,0.000019067975,0.000020405581,0.000019258989,0.000019611001,0.00001893031,0.000019963734,0.000018579616,0.000018931449,0.000018839919,0.00002036004,0.00001938434,0.000020285093,0.00001944277,0.00002057804,0.000018946132,0.00001949381,0.00001919366,0.000020549585,0.00001928288,0.000019681822,0.000018980656,0.000019968875,0.000018607721,0.000019004417,0.00001889469,0.00002039181,0.000019406352,0.000020270358,0.000019458426,0.000020589052,0.000018932333,0.000019413237,0.000019144083,0.000020470876,0.000019218955,0.000019583154,0.000018936666,0.000019931147,0.000018590854,0.000019004092,0.000018930708,0.000020434793,0.000019454012,0.000020368601,0.000019532776,0.0000206406,0.000018970557,0.000019485016,0.000019196075,0.000020517098,0.00001924698,0.000019624882,0.000018943945,0.000019944382,0.000018584436,0.000018982195,0.000018893898,0.000020383448,0.000019399062,0.000020295463,0.000019468042,0.000020587559,0.000018938237,0.000019463383,0.000019186815,0.00002053885,0.000019257024,0.000019638886,0.00001894523,0.00001994889,0.00001858364,0.000018978573,0.000018887573,0.000020382107,0.000019399376,0.000020291014,0.000019467429,0.000020578158,0.00001892708,0.000019444587,0.000019180998,0.000020537203,0.000019280986,0.000019671426,0.000018985633,0.000019975865,0.000018621568,0.00001901749,0.0000189081,0.000020374548,0.000019380588,0.000020265565,0.000019446126,0.000020563013,0.000018921377,0.000019429795,0.000019166204,0.000020517668,0.000019241254,0.000019608775,0.0000189358,0.000019920184,0.000018573593,0.000019008841,0.0000189293,0.000020419518,0.000019466055,0.000020404103,0.000019603036,0.000020736763,0.000019056723,0.000019536428,0.000019242594,0.000020575999,0.000019299456,0.000019656798,0.000018969582,0.000019965904,0.000018571945,0.000018936142,0.000018852734,0.00002039179,0.000019494646,0.000020433781,0.000019582594,0.00002069788,0.000018935258,0.000019340081,0.00001898451,0.000020223148,0.000018923758,0.000019182497,0.000018523762,0.000019596997,0.000018308989,0.000018600571,0.000018582168,0.000020185442,0.000019386522,0.00002029144,0.000019566745,0.000020642805,0.000019180156,0.000019834824,0.000019634017,0.000020905301,0.000019601783,0.000020069947,0.00001946884,0.000020186386,0.000018925311,0.000019372514,0.000019397194,0.000020604846,0.0000201387,0.000021231486,0.000020809644,0.000021652027,0.000020087504,0.000020221374,0.000019702837,0.000020504482,0.000019729347,0.00001969211,0.000019068193,0.000019648216,0.000018663828,0.00001910766,0.000018846173,0.000020417767,0.000019761172,0.000021154525,0.00002013461,0.000020976375,0.000019418441,0.000020211715,0.000019429499,0.000020777143,0.000019932326,0.000020210924,0.000019188426,0.000019315657,0.000019601071,0.000019594756,0.000019697443,0.000020579768,0.000020557367,0.000021375874,0.000020734133,0.00002215787,0.00002364904,0.000026412847,0.000024494748,0.00001666955,0.000010363392,0.000013120674],[0.000015651442,0.000012979842,0.000010298899,0.000016464273,0.000028253848,0.00003348299,0.000028056418,0.000024732433,0.000022392707,0.000021509015,0.000020737416,0.000019966952,0.000020432026,0.000019983316,0.000020143443,0.000019702837,0.000020607184,0.00002060357,0.000020530584,0.000019658617,0.000020790503,0.000020925225,0.000021062247,0.000020037893,0.00002080163,0.00002041144,0.000020612353,0.000019579418,0.000020349033,0.000020515456,0.000020801133,0.00001994366,0.000020931871,0.000020672827,0.000021075428,0.000020311942,0.000021429023,0.00002124471,0.000021438917,0.000020554387,0.000021414315,0.00002118507,0.000021603599,0.000020367614,0.000020855578,0.000020928817,0.000020861706,0.000019996469,0.000020766724,0.000020750867,0.000021045182,0.000019753672,0.000020960479,0.000020897427,0.00002125673,0.000020345578,0.000021445072,0.000020811372,0.000021078866,0.000019696636,0.000020754767,0.00002088559,0.000020894497,0.000019650972,0.000020437054,0.00002034781,0.000020633594,0.000019376208,0.000020745683,0.000020677795,0.000021238633,0.000020168643,0.000021268876,0.000020646328,0.000021007063,0.000019757403,0.000020921614,0.000020927282,0.000020953,0.000019697538,0.000020527707,0.000020326435,0.000020616166,0.000019482564,0.00002081945,0.00002072504,0.000021249536,0.000020178877,0.000021262691,0.000020669318,0.000021017182,0.000019732208,0.000020880672,0.000020902986,0.00002088625,0.000019626941,0.00002048656,0.000020290627,0.00002058389,0.00001948288,0.000020852654,0.000020739315,0.000021299344,0.000020248217,0.000021337582,0.000020697289,0.000021030093,0.000019765317,0.00002092804,0.00002090229,0.000020895632,0.000019646604,0.000020497775,0.0000202796,0.000020565483,0.00001944188,0.00002080278,0.000020687205,0.000021247974,0.000020183343,0.000021293472,0.000020663741,0.00002102478,0.00001975484,0.000020937201,0.000020916008,0.000020925665,0.000019649808,0.000020507161,0.000020285499,0.000020572683,0.00001944316,0.000020798494,0.000020692747,0.000021250911,0.000020188252,0.000021296437,0.000020662754,0.000021010088,0.00001974836,0.000020931791,0.000020933549,0.000020947227,0.0000196895,0.000020551213,0.000020317908,0.000020604355,0.00001948134,0.000020823361,0.0000206817,0.000021229078,0.000020180398,0.00002127127,0.000020659447,0.000021001995,0.000019742823,0.000020912239,0.000020909627,0.000020905301,0.000019622245,0.00002051307,0.000020258454,0.000020567564,0.000019489236,0.000020855578,0.000020745088,0.000021303427,0.000020288344,0.000021408598,0.000020789967,0.000021120457,0.000019819905,0.000020955978,0.000020979975,0.000020935564,0.000019675179,0.000020471696,0.000020307043,0.000020551897,0.000019386227,0.000020744457,0.000020666717,0.000021297168,0.000020288595,0.00002140725,0.000020736485,0.000021003198,0.000019628289,0.00002060734,0.000020632668,0.000020459576,0.000019286503,0.000019847577,0.000019928011,0.00002026974,0.000019061903,0.000020510448,0.000020592941,0.000021227072,0.000020208132,0.000021428696,0.00002080905,0.00002112501,0.000020201176,0.000021498352,0.000021163118,0.000021180384,0.00002009151,0.000020956699,0.000020501491,0.000020745209,0.000020029314,0.000021239606,0.000021128999,0.000021559637,0.000021136091,0.00002242222,0.000022058104,0.000021894488,0.000020916827,0.000021252818,0.000021295586,0.000020751224,0.000019952753,0.000020124031,0.000020210386,0.000020365747,0.000019607747,0.000020812206,0.00002067196,0.000021503969,0.0000208483,0.000021989046,0.000021042813,0.000021264941,0.000020577589,0.000021059455,0.000021082202,0.000020689316,0.000020260057,0.000019672814,0.000019995477,0.000020391479,0.000020520622,0.000020590604,0.000021225656,0.000020930855,0.000021160537,0.000021092257,0.000021421136,0.000024140403,0.00002468999,0.000025383555,0.000017528682,0.0000108412205,0.000013060055],[0.000015141027,0.000011994757,0.0000105894605,0.000014248211,0.00002564277,0.00003269544,0.000026088013,0.00002397627,0.0000210059,0.000020921714,0.000019612178,0.000019972875,0.000018924535,0.000019450912,0.00001917873,0.00001980834,0.000019489478,0.000020542218,0.000019409554,0.000019938923,0.000019536446,0.000020700505,0.000019430407,0.000019664336,0.000018801025,0.000020079002,0.000018878227,0.000019708437,0.00001891793,0.000020307545,0.000018993675,0.000019558312,0.000018828765,0.000020273239,0.000019299254,0.000020187943,0.0000196709,0.000020848478,0.000019590047,0.00001997135,0.00001923344,0.000020705027,0.000019725472,0.000020220217,0.000019436895,0.000020275616,0.000019073668,0.000019362522,0.000018758132,0.000020172529,0.000019045567,0.000019607634,0.000019108096,0.000020298774,0.000019104105,0.000019801353,0.000018932224,0.000020296027,0.000018920258,0.000019434689,0.000018953686,0.000020185365,0.00001885178,0.000019084075,0.000018362602,0.000019789893,0.000018601973,0.000019153487,0.000018774042,0.000020107456,0.000018982175,0.000019659818,0.000018694753,0.000020141408,0.000018817671,0.000019452229,0.000018985435,0.000020263573,0.000018855035,0.000019161087,0.000018382732,0.000019809455,0.000018640225,0.000019284902,0.000018850955,0.000020185615,0.000019015042,0.000019686233,0.00001873766,0.000020193567,0.000018848257,0.000019433688,0.000018955927,0.00002019734,0.000018823415,0.000019110044,0.000018351888,0.00001977614,0.000018623592,0.0000192831,0.000018865952,0.000020209229,0.00001903783,0.00001973919,0.00001876724,0.000020212852,0.000018844034,0.00001944954,0.000018967807,0.000020210386,0.000018809076,0.000019122297,0.000018349734,0.00001977235,0.000018593424,0.000019230542,0.000018812863,0.000020144078,0.000018977813,0.00001966747,0.000018720764,0.000020180341,0.00001883805,0.000019454901,0.000018976854,0.000020231984,0.000018816343,0.000019120947,0.0000183487,0.000019777253,0.000018596296,0.000019230212,0.000018817133,0.000020152685,0.00001899458,0.000019677673,0.000018734998,0.000020181033,0.000018836614,0.000019448982,0.00001898395,0.00002024337,0.000018848761,0.000019159499,0.000018388904,0.00001981601,0.00001864074,0.000019275929,0.000018843837,0.000020159856,0.000018996338,0.000019681973,0.000018734641,0.000020180418,0.000018842757,0.000019442548,0.000018974555,0.000020221934,0.000018815355,0.000019104506,0.000018329936,0.00001976511,0.000018624036,0.0000192987,0.000018879991,0.000020225463,0.000019050816,0.000019765619,0.000018843297,0.000020317773,0.000018932205,0.00001952745,0.000019026776,0.000020281535,0.000018864424,0.000019149033,0.0000183739,0.000019792422,0.000018568882,0.000019161143,0.000018749744,0.00002009582,0.00001902092,0.000019767995,0.0000188211,0.000020240745,0.000018766308,0.000019289097,0.000018794302,0.000019980094,0.000018496245,0.000018695644,0.000017941893,0.000019388426,0.000018286739,0.000018902205,0.0000186283,0.000020082294,0.000019048637,0.000019723346,0.00001891822,0.000020387259,0.000019289922,0.000020005797,0.000019440435,0.000020604315,0.000019263322,0.000019519834,0.000018880299,0.00002019788,0.000019433168,0.00002019449,0.000019698307,0.000020794845,0.000019868541,0.000020715179,0.000020263864,0.000021685564,0.000020717926,0.00002112511,0.00002021077,0.000020980095,0.000019734918,0.000019529032,0.000018692203,0.000019780911,0.000018914936,0.000019693482,0.000019149013,0.000020579846,0.000019554414,0.00002046586,0.000019414792,0.00002077138,0.000019663325,0.00002079802,0.000019761776,0.00002104209,0.000019336154,0.000019599427,0.000018706469,0.000019529796,0.000020136298,0.000020419442,0.000020300306,0.000020844822,0.000020761714,0.00002150719,0.000020690026,0.000021209691,0.000022585815,0.00002541703,0.000025008983,0.0000168907,0.000010764879,0.0000133468675],[0.000015511008,0.000011161453,0.000010388031,0.000014031944,0.000027010508,0.000036230034,0.00002956792,0.00002452282,0.000022340131,0.000021598078,0.0000213206,0.000019826673,0.000020079213,0.000019612777,0.000020180474,0.000019435689,0.00002085902,0.000020505518,0.000021475895,0.000019685125,0.00002106972,0.000020495645,0.000020832458,0.000019260402,0.000020132555,0.00001931063,0.000020188156,0.00001881995,0.000020148804,0.000019617959,0.000020205374,0.000018751067,0.000019995345,0.000019330362,0.000020322077,0.000019244539,0.000020843729,0.000020369263,0.000021023998,0.00001954295,0.000020523048,0.000019955738,0.000021093907,0.000019584779,0.000020605768,0.00001993054,0.000020261139,0.00001884513,0.000019715468,0.00001933641,0.000020347326,0.000018782459,0.000020204758,0.000019538515,0.00002020784,0.000018834888,0.00002009172,0.000019237603,0.000020260559,0.0000185373,0.00001979937,0.000019447536,0.00001983367,0.000018389414,0.000019329367,0.000018973127,0.000019955816,0.000018344905,0.000019806283,0.000019295572,0.000020106056,0.000018624267,0.000019909112,0.000019080398,0.000020177089,0.000018463075,0.000019779536,0.000019436635,0.000019852878,0.000018359082,0.000019401856,0.000018964643,0.000020022211,0.000018452092,0.000019918587,0.000019344749,0.000020180745,0.000018689441,0.000019991512,0.000019156738,0.000020192392,0.000018482207,0.00001973919,0.000019394012,0.000019799125,0.000018339255,0.000019374029,0.000018940927,0.000019998854,0.000018428702,0.00001993822,0.000019325515,0.000020202582,0.000018700493,0.00002000595,0.000019149998,0.000020190813,0.000018474753,0.000019752599,0.000019386893,0.000019786608,0.000018317092,0.000019372052,0.000018921646,0.000019968571,0.000018375913,0.000019868066,0.000019273282,0.00002014137,0.000018636456,0.000019956995,0.000019124467,0.000020197976,0.000018484341,0.000019781666,0.000019406592,0.000019815368,0.000018324867,0.000019379426,0.000018927873,0.00001997354,0.000018386467,0.000019880254,0.000019291745,0.00002015674,0.000018650751,0.000019966628,0.00001913501,0.000020198651,0.000018487408,0.000019785062,0.000019427665,0.000019847048,0.00001836339,0.000019416571,0.000018963376,0.000020018964,0.000018430952,0.000019920679,0.000019303672,0.000020166432,0.000018666178,0.00001997034,0.000019138351,0.000020185576,0.000018479775,0.000019762754,0.000019412053,0.000019815256,0.000018312428,0.000019375691,0.000018911707,0.000020010508,0.000018441837,0.000019946303,0.00001933936,0.000020222224,0.000018746474,0.00002007523,0.00001924509,0.000020308476,0.000018558632,0.000019821266,0.000019455292,0.000019824667,0.000018368573,0.000019370002,0.000018948174,0.00001993955,0.000018334254,0.000019775329,0.00001922669,0.000020113883,0.000018687942,0.000020014593,0.000019164321,0.000020125413,0.000018347688,0.000019557343,0.000019179095,0.000019403427,0.000017977534,0.00001886248,0.000018614839,0.000019662799,0.00001807842,0.000019631303,0.000019216279,0.000020181958,0.000018764305,0.000020123187,0.00001953177,0.000020717272,0.000019155917,0.00002045195,0.000019749265,0.000020166488,0.00001893719,0.000019971732,0.000019527877,0.00002064613,0.000019509114,0.00002085723,0.000020156549,0.000020873505,0.000019954941,0.000021207263,0.000020901833,0.000022176833,0.000020793219,0.00002137993,0.000020753143,0.000020856492,0.000019531677,0.000019865434,0.000019346464,0.000020198555,0.000018772324,0.000020308127,0.00001956292,0.00002027906,0.00001913667,0.000020471423,0.000019766976,0.000020661613,0.000019578056,0.00002066378,0.000020276777,0.000020105366,0.000019071485,0.000018978737,0.000019056577,0.000020032754,0.000019794934,0.0000203554,0.000020057738,0.000020388776,0.000020244974,0.000019923966,0.000020199384,0.000022500766,0.000024067605,0.000026128746,0.000017092278,0.000011323667,0.00001294012],[0.000015897458,0.000012274353,0.000011532259,0.000015300084,0.00002822794,0.000034507262,0.000026984764,0.000023239678,0.000020444091,0.000020600837,0.00001942648,0.000019600604,0.000018856455,0.000019171031,0.000018539367,0.000019009603,0.000018973724,0.000020016007,0.000019192159,0.000019286981,0.00001942711,0.000020251287,0.000019207266,0.00001928345,0.000018280898,0.00001920545,0.000018068802,0.000018558083,0.000018152188,0.000019377503,0.000018230012,0.000018824385,0.000018086577,0.000019534771,0.000018580307,0.000019451896,0.00001928617,0.000020694051,0.000019330051,0.000019687284,0.00001873716,0.000020053818,0.000018896671,0.00001920373,0.000018944018,0.000019749094,0.000018641273,0.000018870558,0.000018139954,0.000019444347,0.000018375213,0.000018733372,0.000018518234,0.000019649358,0.000018578712,0.000019020774,0.000018283305,0.00001969645,0.0000183377,0.000018664308,0.000018334535,0.000019551151,0.00001815153,0.00001847729,0.000017861297,0.000019263856,0.000018146597,0.000018485134,0.00001830466,0.000019578672,0.000018351222,0.000018802712,0.000018120727,0.000019573838,0.00001826734,0.000018587272,0.000018222867,0.000019533763,0.000018091372,0.000018430566,0.000017845496,0.000019304684,0.00001820659,0.000018604564,0.000018392815,0.000019707328,0.000018448889,0.000018908768,0.000018204577,0.000019667956,0.000018309058,0.000018610632,0.000018228708,0.000019493717,0.000018063616,0.000018416582,0.000017841174,0.00001927968,0.000018184935,0.000018583693,0.000018387922,0.000019708757,0.000018448152,0.000018929895,0.000018204542,0.000019662106,0.000018297435,0.00001860412,0.000018196612,0.000019476658,0.000018039533,0.000018394569,0.000017813989,0.000019258603,0.000018143708,0.00001853341,0.000018335932,0.000019652507,0.000018394938,0.000018874951,0.000018161641,0.000019629506,0.000018289147,0.000018607296,0.00001821788,0.000019506231,0.000018063392,0.00001841681,0.000017823231,0.000019262881,0.000018149902,0.000018544692,0.000018351519,0.000019665462,0.000018410137,0.000018885465,0.000018175313,0.00001963295,0.0000182963,0.000018607474,0.000018233697,0.00001952594,0.000018094668,0.000018448116,0.000017861075,0.000019303265,0.000018200515,0.000018592325,0.000018390203,0.000019692581,0.000018429915,0.000018901304,0.000018195118,0.000019644449,0.00001829815,0.000018596475,0.000018220591,0.000019510622,0.000018080593,0.000018412313,0.00001782529,0.00001927218,0.000018178727,0.000018579227,0.000018384311,0.000019711782,0.000018488467,0.00001898482,0.000018257795,0.000019732697,0.000018392184,0.000018694682,0.000018269866,0.000019532907,0.00001809006,0.000018436034,0.000017825374,0.000019274808,0.000018143153,0.000018502576,0.000018292636,0.000019619027,0.000018436913,0.000018963883,0.000018244307,0.000019722236,0.000018277082,0.00001849358,0.000017991375,0.000019274607,0.000017738634,0.000018047189,0.000017455053,0.000019010127,0.00001793428,0.00001843257,0.000018128781,0.000019687941,0.000018530955,0.00001913284,0.000018483724,0.000019977295,0.000018811428,0.00001928253,0.000018775207,0.000019903055,0.00001848873,0.00001884069,0.00001847405,0.000019685709,0.000018841643,0.000019505655,0.000019442956,0.000020634105,0.000019619027,0.000020367866,0.000019853162,0.000021173033,0.000020060705,0.00002030228,0.000019733809,0.000020279696,0.000019230083,0.000019145526,0.000018554101,0.00001934283,0.000018391325,0.000018695555,0.00001849201,0.00001980443,0.000018780704,0.000019582707,0.000018879506,0.000020056152,0.000018661995,0.000019457499,0.00001864746,0.000020111562,0.000018744113,0.000019098296,0.000017960296,0.000019211386,0.000019143736,0.000020019861,0.000019735407,0.000020403382,0.00002025546,0.000021412967,0.000020790683,0.000021518084,0.000021984979,0.000025025849,0.000025365985,0.000018322735,0.000011044473,0.000013628343],[0.000015532,0.000013256561,0.000010659574,0.000017343582,0.000028724944,0.00003620917,0.000028618771,0.00002385059,0.000021613881,0.000021263035,0.000020746138,0.000019952733,0.000020289659,0.000019792706,0.000020044296,0.000019607483,0.000020333728,0.00002034527,0.000020332505,0.000019578001,0.000020784199,0.000020864549,0.00002081929,0.000019753314,0.000020074272,0.000019787516,0.000019745195,0.000018744684,0.000019562454,0.000019623965,0.000020088424,0.000019106055,0.000020059231,0.000019914733,0.000020570193,0.000019720506,0.000020949486,0.000020700505,0.000021074344,0.00001999462,0.000020698018,0.000020487654,0.000020681562,0.000019435709,0.000020062942,0.000020188925,0.000020357767,0.000019375082,0.000020193316,0.000020147536,0.000020521855,0.00001914998,0.000020157162,0.000020149477,0.000020566917,0.000019473575,0.00002038823,0.000020150937,0.00002045228,0.000018991628,0.000019861323,0.000020009784,0.000020222782,0.00001905527,0.000019991645,0.000019979105,0.00002041804,0.000019056377,0.000020176896,0.000020165988,0.0000205143,0.000019297928,0.000020284686,0.000020111023,0.000020442745,0.000018938219,0.00001978561,0.000019962898,0.000020181033,0.000018985924,0.0000199893,0.00001998238,0.000020480347,0.000019147972,0.000020319343,0.000020233681,0.000020626236,0.000019386263,0.000020375344,0.000020177416,0.000020494981,0.000018970106,0.000019800069,0.000019967008,0.000020157318,0.000018978302,0.000019991092,0.000019974588,0.00002045425,0.000019129775,0.000020325564,0.000020226467,0.000020620197,0.000019390147,0.00002037616,0.000020150976,0.00002046947,0.000018938996,0.000019753616,0.00001991889,0.00002012762,0.000018960918,0.00001995968,0.00001993531,0.000020398831,0.000019081872,0.000020275076,0.000020174954,0.000020570349,0.000019345965,0.000020346317,0.000020122267,0.000020464084,0.000018938383,0.000019775744,0.00001994653,0.000020154703,0.000018981036,0.00001997259,0.000019937326,0.00002040381,0.000019094143,0.000020289059,0.00002018625,0.00002058283,0.000019363428,0.000020352854,0.000020123973,0.000020462445,0.000018947216,0.000019787214,0.000019972913,0.000020180283,0.00001901428,0.00002001009,0.000019975942,0.00002044912,0.000019144321,0.000020334986,0.000020221009,0.00002060905,0.000019384583,0.00002037546,0.000020151647,0.000020468106,0.000018948444,0.000019775856,0.000019970705,0.00002017601,0.000018995195,0.000019993533,0.000019963773,0.000020440017,0.000019108425,0.000020309482,0.000020227835,0.000020644831,0.000019456329,0.000020434403,0.000020215764,0.000020548607,0.000019019468,0.000019811005,0.000019957966,0.000020174568,0.000018997787,0.000019958308,0.000019937954,0.000020398811,0.000019068868,0.000020214202,0.000020184056,0.000020585223,0.000019431094,0.000020381349,0.000020174743,0.000020383954,0.000018792009,0.000019453733,0.0000196776,0.00001982911,0.00001858738,0.000019521303,0.000019677731,0.000020161375,0.000018914232,0.000020045978,0.000020084364,0.000020723834,0.00001964767,0.000020665671,0.000020438867,0.000020709273,0.000019515051,0.000020467265,0.000020266261,0.00002040887,0.000019462566,0.000020338479,0.000020179707,0.000020395057,0.00001958446,0.000020838997,0.000020673124,0.000021157732,0.000020568817,0.000021485337,0.000021269809,0.000021136919,0.000020302201,0.00002053597,0.000020797306,0.000020561662,0.000019789459,0.000020213565,0.000020390116,0.000020181456,0.000019092413,0.000020234029,0.0000200529,0.00002074135,0.00001989666,0.00002089095,0.000020308496,0.000020225038,0.000019296749,0.000019764808,0.000020146708,0.000020118581,0.000019311643,0.000018928216,0.000019122206,0.000019375637,0.000019851288,0.000020003832,0.000020664686,0.000020916526,0.000021307551,0.000021208944,0.000021746451,0.000023144574,0.000024448098,0.000025631254,0.00001906523,0.000011424055,0.000013585923],[0.000015330887,0.00001553459,0.000011915383,0.00001741367,0.000029323699,0.000034291537,0.000027468235,0.00002440719,0.000020877149,0.000021103666,0.000019661693,0.000020105348,0.0000189577,0.000019700507,0.00001927661,0.000020112559,0.000019443069,0.000020379366,0.000019337629,0.00001968843,0.000019607747,0.000020729703,0.0000195668,0.00002003029,0.000018730103,0.000019746363,0.000018397464,0.000018645558,0.000018126706,0.000019422423,0.00001863596,0.000019530336,0.000018426963,0.000019861342,0.000018928235,0.000019811874,0.000019271409,0.00002065261,0.000019451469,0.00002027378,0.000019075378,0.000020394162,0.000018910336,0.000019030716,0.000018440025,0.00001953082,0.000018862122,0.000019576284,0.000018775743,0.000020083558,0.000018878012,0.000019021336,0.000018564562,0.0000196136,0.00001897251,0.000019600586,0.000018814155,0.000020085148,0.00001869395,0.00001878597,0.000018304747,0.000019616706,0.000018748904,0.000019304038,0.00001858784,0.000019929152,0.000018786668,0.000019039193,0.000018683095,0.000019805677,0.000018923127,0.000019433595,0.000018736857,0.000020071573,0.000018701672,0.000018745042,0.000018241819,0.000019568946,0.00001867745,0.00001924621,0.000018529363,0.000019927975,0.000018823757,0.000019143572,0.00001876826,0.000019915606,0.000019016457,0.000019563144,0.00001881559,0.00002014014,0.00001875647,0.000018790539,0.000018278215,0.000019591149,0.000018685289,0.000019236008,0.000018538572,0.000019908124,0.000018809076,0.000019136618,0.000018754485,0.000019909852,0.000018997098,0.00001955352,0.000018798371,0.000020128926,0.000018705043,0.000018738805,0.0000182163,0.000019539446,0.000018640312,0.000019211919,0.000018496597,0.00001986731,0.000018754,0.000019082056,0.0000187082,0.000019864334,0.000018950504,0.000019511665,0.00001876078,0.000020092008,0.000018682027,0.000018729694,0.000018221564,0.000019558835,0.00001865317,0.000019231771,0.000018503335,0.000019869241,0.000018758867,0.000019098257,0.000018727604,0.000019881694,0.000018970757,0.00001953002,0.000018780434,0.000020094001,0.000018688852,0.000018739735,0.000018238045,0.000019578503,0.000018688495,0.000019261064,0.000018533694,0.000019901083,0.000018809706,0.000019150584,0.000018776049,0.0000199191,0.00001900857,0.000019552383,0.000018799627,0.000020117162,0.000018714447,0.000018746634,0.000018247996,0.000019577086,0.000018693558,0.000019256235,0.000018531962,0.000019902222,0.000018796292,0.00001910775,0.000018736268,0.000019906378,0.000019033656,0.000019622823,0.000018876337,0.000020209132,0.000018782692,0.000018809347,0.000018280829,0.000019589112,0.00001869739,0.000019264537,0.000018537457,0.000019895162,0.000018752962,0.000019075942,0.00001869395,0.000019872576,0.000019016656,0.000019622954,0.000018871819,0.000020192045,0.000018638535,0.000018605095,0.000017969187,0.000019312196,0.000018400378,0.000018875058,0.000018100622,0.00001965693,0.000018516981,0.000018971752,0.000018442557,0.000019898198,0.000019117228,0.000019915624,0.000018926557,0.000020447425,0.000019113017,0.00001963604,0.000018926321,0.000020427155,0.000019278466,0.000019898673,0.000018949277,0.000020197918,0.000019048002,0.000019572923,0.000019063193,0.000020313182,0.000019813348,0.0000208157,0.00001989662,0.000021271575,0.00001972613,0.00002012031,0.000019248871,0.000020529978,0.000019659163,0.000020175512,0.000019234612,0.00002050773,0.000019183779,0.00001942409,0.00001886903,0.000020092832,0.000019477271,0.000020327425,0.000019182919,0.000020396224,0.000018761693,0.000019246798,0.000018229734,0.000019785382,0.000018867842,0.000019549605,0.000017812834,0.000018919283,0.000018404853,0.000019411998,0.000019135176,0.000020349653,0.000020564641,0.000021744378,0.000021478247,0.000022522514,0.000023712135,0.000025862078,0.000024827312,0.000017235387,0.000011417368,0.000013753095],[0.000015918682,0.000017088903,0.000013045962,0.000019026362,0.000032172262,0.00003558953,0.000031771026,0.00002520015,0.000022839342,0.000021792748,0.000021507865,0.000019835847,0.000020361591,0.000019731155,0.000020487008,0.00001977333,0.000020978674,0.000020608637,0.000021177595,0.000019626492,0.000021028369,0.000020666204,0.000021442147,0.000019760775,0.00002045507,0.00001947313,0.000019842486,0.000018438706,0.000019609655,0.000019308587,0.000020414516,0.000019062194,0.000020133399,0.000019425719,0.000020380105,0.000019181107,0.000020752133,0.000020307429,0.000021458185,0.000019881163,0.000020809744,0.000020003316,0.000020566466,0.000018762801,0.000019765524,0.000019540881,0.000020584537,0.000019427405,0.000020330817,0.000019754256,0.000020564934,0.00001872696,0.000019856343,0.000019487527,0.00002075619,0.000019329165,0.000020391752,0.000019714922,0.000020421623,0.000018477343,0.000019661655,0.000019515888,0.000020606594,0.000019171946,0.000020191179,0.000019552625,0.000020490506,0.00001870267,0.000020004118,0.000019627822,0.00002079201,0.000019231404,0.00002036771,0.000019735671,0.000020443193,0.000018428722,0.00001961375,0.000019433539,0.000020538006,0.000019074087,0.000020170373,0.000019509655,0.000020487692,0.000018776478,0.000020109337,0.000019687604,0.000020903364,0.000019347293,0.000020463636,0.000019777233,0.000020471267,0.000018474348,0.000019644338,0.000019481153,0.000020554073,0.000019082001,0.000020177531,0.000019509598,0.00002047361,0.00001876724,0.000020106498,0.000019661693,0.000020878542,0.000019327765,0.000020438241,0.000019747175,0.000020429006,0.000018405502,0.000019583882,0.000019420293,0.000020496016,0.000019046076,0.00002014592,0.00001947001,0.000020418449,0.000018710858,0.000020057376,0.000019625108,0.000020844203,0.000019293273,0.00002041259,0.000019708868,0.000020413505,0.000018397657,0.000019595445,0.000019434206,0.000020520034,0.000019061066,0.00002015501,0.000019466648,0.000020419033,0.000018733088,0.000020076455,0.000019640665,0.00002085536,0.000019307667,0.000020427095,0.00001971718,0.000020416599,0.000018410734,0.000019604791,0.00001945336,0.000020544077,0.000019091503,0.000020177647,0.000019492676,0.000020459715,0.000018783123,0.000020125202,0.000019681465,0.000020892525,0.000019334733,0.000020443855,0.000019739135,0.000020438963,0.000018431287,0.000019618481,0.000019467316,0.000020550997,0.000019095836,0.000020186326,0.000019495947,0.000020459458,0.000018747794,0.000020089039,0.000019674673,0.000020920277,0.000019388206,0.000020512913,0.00001982775,0.000020505284,0.000018484692,0.000019643288,0.00001947534,0.000020544077,0.000019104471,0.000020176376,0.000019493606,0.000020440815,0.000018691759,0.000020030346,0.000019622488,0.00002088121,0.000019393938,0.000020516394,0.00001981074,0.00002037212,0.000018305618,0.000019337758,0.000019204279,0.000020243197,0.000018774115,0.000019757308,0.000019178931,0.000020237077,0.000018459643,0.00001983505,0.000019528157,0.000021068094,0.000019534267,0.00002068109,0.000019933486,0.000020700783,0.000019257152,0.000020416599,0.000020189003,0.000020993604,0.000019867859,0.000020503974,0.000019776442,0.000020252368,0.000019159845,0.00002024557,0.000020058122,0.000021292803,0.00002040815,0.000021332091,0.000020786816,0.000021239282,0.000020064703,0.000020724705,0.000020662204,0.00002134088,0.000020208747,0.000020728537,0.000020073468,0.000020501902,0.000019042389,0.000020161353,0.00001962273,0.0000209558,0.000019583304,0.00002071581,0.000019845229,0.000020364758,0.000018976329,0.000019771162,0.000019746007,0.000020832937,0.000019403835,0.00001938669,0.00001866664,0.000019416164,0.00001886052,0.000019772651,0.000020202042,0.000020871574,0.000020775104,0.00002095738,0.00002148677,0.000024932804,0.000024813988,0.000023959332,0.000016048276,0.00001101168,0.000013253514],[0.00001587667,0.000017614548,0.000015645262,0.000021971711,0.000031954005,0.000031169526,0.000026958038,0.0000236896,0.000021111777,0.000020831429,0.000019530746,0.000019901936,0.000019022715,0.000019672947,0.000018869247,0.000019838286,0.000019654175,0.00002072409,0.000019472312,0.000019633962,0.000019524005,0.0000205781,0.000019514342,0.00001964518,0.000018744757,0.00001938179,0.000018451407,0.00001846945,0.00001808192,0.000019184197,0.000018346514,0.000018984947,0.000018406836,0.000019666455,0.000018770104,0.000019451822,0.00001921824,0.00002066396,0.000019488956,0.000020001084,0.000019195326,0.000020208401,0.000018895265,0.000018795377,0.000018512195,0.000019604064,0.000018926123,0.00001940724,0.000018785307,0.000019905676,0.000018820183,0.000018830542,0.00001860105,0.000019586216,0.000018948824,0.000019212943,0.000018727193,0.000019704095,0.000018675295,0.000018512195,0.000018422974,0.000019579978,0.000018800667,0.00001915053,0.000018520019,0.000019655075,0.000018626612,0.000018791668,0.000018667228,0.000019773688,0.000018943729,0.000019164012,0.000018726318,0.00001972346,0.000018653987,0.000018396078,0.00001830204,0.000019469173,0.000018675702,0.000019030282,0.00001846452,0.000019635965,0.000018630733,0.00001883744,0.00001870472,0.000019850473,0.000019029281,0.000019272125,0.000018805455,0.000019756686,0.000018674973,0.000018436649,0.000018364824,0.000019512892,0.000018721335,0.000019031078,0.000018469416,0.000019622936,0.00001860875,0.000018804163,0.000018679179,0.000019826919,0.000018989382,0.00001923454,0.000018746456,0.000019721429,0.000018622082,0.000018372568,0.000018286322,0.000019457462,0.000018659004,0.000019004818,0.000018435296,0.000019600624,0.000018564775,0.000018762821,0.00001863466,0.000019809153,0.000018960121,0.000019218898,0.00001872755,0.000019710993,0.000018606604,0.000018374441,0.000018296178,0.000019482175,0.00001867394,0.000019026125,0.000018445036,0.000019607747,0.00001856612,0.000018776049,0.000018649203,0.000019816673,0.000018971588,0.000019225334,0.000018742969,0.000019722538,0.000018617733,0.000018382189,0.000018308743,0.000019487545,0.000018694504,0.000019042971,0.000018470842,0.000019626566,0.000018610952,0.00001881297,0.000018695875,0.000019849791,0.000019004401,0.00001923454,0.00001875951,0.00001972773,0.000018641202,0.000018395463,0.000018329954,0.000019496227,0.000018708306,0.00001903894,0.000018473098,0.000019619942,0.000018607561,0.000018800487,0.000018687337,0.000019840802,0.000019040846,0.000019294486,0.000018822822,0.000019793915,0.000018698462,0.0000184357,0.0000183441,0.000019483643,0.000018708486,0.000019027431,0.000018448363,0.000019588777,0.000018556684,0.000018762837,0.000018652405,0.000019818695,0.000019048292,0.000019353163,0.000018866745,0.000019850397,0.00001862837,0.00001831166,0.00001810499,0.000019227515,0.000018415896,0.000018767938,0.000018075214,0.000019323415,0.000018392097,0.000018657742,0.00001844108,0.000019940862,0.000019085568,0.000019709527,0.000019025183,0.000020157913,0.000019007335,0.000019316543,0.000019097548,0.000020489195,0.000019334935,0.000020030175,0.000019275727,0.000020190042,0.00001897669,0.000019475598,0.000019396159,0.000020542786,0.000019887459,0.000020746216,0.000020241267,0.000021130349,0.000019891442,0.00001995612,0.000019440507,0.0000204181,0.000019561316,0.000019866684,0.000019090046,0.000019892772,0.000018913744,0.000019028139,0.000018654024,0.000019668763,0.000019065612,0.000019587002,0.000019120127,0.000019896452,0.000018972927,0.000019023802,0.000018473942,0.000019525924,0.000018800883,0.000019070321,0.000018201834,0.000018716963,0.000018824743,0.000019487918,0.000019648365,0.000021016462,0.000020749285,0.000021666074,0.000021120315,0.000022487295,0.000023735303,0.000027172111,0.000024211438,0.000016428732,0.000010382881,0.000013441967],[0.000016245529,0.000017437798,0.000014396419,0.000024022938,0.00003002474,0.000029620523,0.0000263807,0.000023422817,0.000021747488,0.000021123036,0.000020941816,0.00002025917,0.000020889654,0.000019952333,0.000020248892,0.000019834995,0.000020897825,0.000020703073,0.000020811194,0.000019931775,0.000020951862,0.00002111089,0.000020991862,0.000019850359,0.000020352447,0.000020141657,0.00002046188,0.000019345116,0.000019927138,0.000019890133,0.0000201474,0.000019140049,0.000020254183,0.000020087371,0.000020921296,0.000020038351,0.000021215577,0.000021014295,0.000021375079,0.000020257585,0.000021120557,0.000020773836,0.000021078042,0.000019642952,0.00002035171,0.000020418604,0.000020577432,0.00001974612,0.00002050904,0.000020450643,0.000020861982,0.000019585283,0.00002048775,0.000020444031,0.000020692216,0.000019677449,0.000020422129,0.000020346219,0.000020849313,0.000019404557,0.000020290607,0.000020346957,0.00002054794,0.00001949946,0.000020259013,0.000020123494,0.000020647232,0.000019508556,0.000020570957,0.000020491758,0.000020727844,0.000019666493,0.000020438809,0.000020310723,0.000020721738,0.000019313173,0.000020201694,0.000020249761,0.00002045901,0.000019390332,0.000020213372,0.000020112442,0.00002065907,0.000019552737,0.000020620138,0.000020555288,0.000020816751,0.000019738041,0.000020497893,0.000020346628,0.000020758505,0.00001936603,0.0000202611,0.000020293026,0.00002047447,0.000019394789,0.000020201138,0.000020102741,0.000020634754,0.000019516912,0.000020593017,0.000020531681,0.000020786954,0.000019694759,0.000020446978,0.000020296317,0.000020711585,0.000019304867,0.00002020339,0.000020237367,0.000020429045,0.000019352941,0.000020189676,0.000020077967,0.000020606378,0.000019470363,0.00002055478,0.000020512502,0.000020781306,0.000019675235,0.000020449861,0.000020295154,0.000020725374,0.000019303432,0.0000202148,0.00002026027,0.000020455245,0.000019356412,0.000020209576,0.000020074656,0.000020605728,0.000019477326,0.000020562014,0.000020520054,0.000020785785,0.000019681183,0.000020462698,0.000020304951,0.000020728736,0.00001931041,0.000020218637,0.0000202691,0.000020461273,0.000019378003,0.00002022639,0.000020100499,0.000020639556,0.00001952004,0.000020602958,0.0000205567,0.000020808415,0.000019701973,0.000020465255,0.00002031729,0.000020741845,0.000019341704,0.00002023729,0.00002028407,0.000020476422,0.00001939353,0.000020213798,0.000020098618,0.000020636506,0.00001952732,0.000020606318,0.000020553858,0.000020830354,0.000019757214,0.000020514046,0.000020372703,0.000020782574,0.000019370647,0.000020231579,0.000020270512,0.00002045392,0.000019392995,0.00002015947,0.000020051906,0.000020583693,0.000019472182,0.000020585087,0.000020516885,0.000020813377,0.000019790477,0.000020559562,0.000020432786,0.00002070949,0.000019263212,0.00001999891,0.000020012418,0.000020155452,0.000019163499,0.000019817882,0.000019742767,0.000020454212,0.000019377578,0.000020507161,0.000020521815,0.00002098798,0.000019836034,0.000020917783,0.000020609425,0.000021144097,0.000019943602,0.000021238533,0.000020898822,0.000021057407,0.000020114936,0.000021004478,0.000020438496,0.000020770092,0.000020106248,0.000021335265,0.000021169033,0.000021507312,0.000021002636,0.000022057515,0.000021827378,0.000021896805,0.000020739175,0.000021129847,0.00002114803,0.000020992664,0.000020084899,0.000020485933,0.000020346219,0.000020561347,0.000019725021,0.000020532738,0.00002035468,0.000020804922,0.000019954294,0.000020983658,0.000020821557,0.000021347312,0.00002023069,0.000020447229,0.000020502566,0.000020095207,0.000019732151,0.000019324078,0.000019758063,0.00002028372,0.000020411695,0.000020856334,0.000021545373,0.000021332233,0.000021642716,0.00002141562,0.000022049397,0.00002496297,0.000025216375,0.000024358918,0.000017058228,0.000010791563,0.000013256385],[0.000015756244,0.000015484478,0.000014497131,0.000021547323,0.000029354505,0.000028438504,0.000023745943,0.000022410504,0.000019731982,0.000020440271,0.000019542278,0.000020504893,0.000019117993,0.000019762283,0.000018972656,0.000019865072,0.000019254196,0.000020566975,0.000019412866,0.000020207108,0.000019685427,0.000020850248,0.00001964949,0.000019673658,0.000018960864,0.000020094805,0.000019489702,0.00001988507,0.000019169604,0.000019939893,0.000018805742,0.000019002462,0.000018404466,0.00001978829,0.00001913556,0.000020138084,0.00001943897,0.000020547037,0.000019474912,0.000019904006,0.00001920785,0.000020429163,0.000019524303,0.000019763602,0.000019077872,0.000020002019,0.000019100626,0.000019532143,0.00001880079,0.00002017455,0.000019168343,0.000019757383,0.000019123538,0.000020110161,0.000019285178,0.000019556448,0.000019023168,0.000020160413,0.000019503925,0.000019513616,0.000019041736,0.000019877942,0.000019026524,0.000019375377,0.000018577048,0.0000199317,0.000019012848,0.000019718815,0.000019164103,0.000020188176,0.000019277144,0.000019586965,0.000019005089,0.000020105119,0.000019376894,0.00001940887,0.000019009294,0.000019837455,0.000018981305,0.000019284902,0.000018499048,0.000019905694,0.000019029845,0.00001976136,0.000019181016,0.000020222069,0.00001931774,0.000019631809,0.000019054887,0.000020172029,0.000019463085,0.000019459594,0.000019049583,0.000019839876,0.000018998238,0.000019279845,0.00001849688,0.000019876388,0.000018992569,0.000019714264,0.000019148849,0.000020191006,0.000019271922,0.000019582294,0.000018996465,0.000020112864,0.000019390201,0.000019387558,0.000018992516,0.000019786457,0.000018937262,0.000019230505,0.00001845892,0.000019844756,0.00001894326,0.000019660962,0.00001909886,0.000020158335,0.0000192372,0.000019556093,0.00001897698,0.00002010857,0.000019379093,0.000019387375,0.000018984836,0.000019805168,0.000018945193,0.00001923643,0.000018455912,0.00001985284,0.000018951643,0.000019675666,0.000019116627,0.000020173316,0.000019251092,0.00001956473,0.000018987608,0.000020117084,0.000019391071,0.000019396972,0.000018996609,0.000019806055,0.000018959689,0.00001925629,0.000018481978,0.000019878547,0.000019000052,0.00001972282,0.00001916284,0.000020213933,0.000019287514,0.000019590309,0.000019009583,0.000020135261,0.000019431389,0.0000194353,0.00001903293,0.000019825955,0.00001898462,0.00001926946,0.00001849171,0.00001987599,0.000018997353,0.000019726996,0.000019171854,0.00002021987,0.000019333444,0.00001965691,0.00001907647,0.000020197245,0.000019491317,0.00001947703,0.000019060975,0.000019834444,0.000019008206,0.000019285711,0.000018498271,0.000019845305,0.000018938726,0.000019653236,0.000019131965,0.000020168623,0.000019345449,0.00001967668,0.000019109571,0.000020248603,0.000019453677,0.000019328778,0.000018864963,0.000019607243,0.000018689636,0.000018961477,0.000018174862,0.000019447945,0.000018611485,0.000019395824,0.000018922838,0.00002010389,0.000019158511,0.000019592513,0.000018907902,0.000020167105,0.00001936832,0.000019769124,0.000019244722,0.000020311729,0.000019267072,0.000019794858,0.000018923703,0.000020221663,0.000019436562,0.000020268059,0.000019676454,0.000020764865,0.000020044334,0.000020635955,0.000020189715,0.000021429085,0.000020792546,0.000021017122,0.000019955702,0.000020778432,0.000019803316,0.000019986917,0.000018943512,0.000020075497,0.000019359457,0.00002010412,0.000019348623,0.000020234878,0.00001950852,0.000019765448,0.000019388723,0.00002058599,0.00002042739,0.000021018646,0.000020192738,0.000020918043,0.000019649358,0.000019632444,0.000018745757,0.00001950519,0.000020101303,0.000020382633,0.000020248486,0.00002095742,0.000020925267,0.00002175728,0.000020964035,0.000021598757,0.000023164888,0.000025697533,0.000023614219,0.000016337972,0.000010600493,0.000013478654],[0.000015820611,0.0000141243545,0.000013624211,0.000020106,0.000031575266,0.000030638636,0.000027171825,0.000022890541,0.000021235577,0.000020864509,0.000021134985,0.000020075018,0.00002051749,0.000019516057,0.000019885601,0.000018989454,0.000020268464,0.000020034644,0.000021236996,0.000019674317,0.000020962696,0.00002067618,0.000020925845,0.000019597372,0.000020194375,0.000019622617,0.000020676553,0.000019568592,0.000020597594,0.000019998128,0.000020331516,0.00001875824,0.000019768257,0.000019231495,0.00002066646,0.00001933357,0.000020831229,0.000020202506,0.000020953961,0.000019626004,0.000020466447,0.000020044392,0.00002105554,0.00001946275,0.000020555328,0.00001996263,0.000020648455,0.000019231036,0.000020083253,0.000019664207,0.000020840567,0.000019273926,0.00002038821,0.000020024541,0.0000206493,0.000019562416,0.000020290297,0.000020002344,0.000021087853,0.00001942322,0.00002036497,0.00001984349,0.00002057133,0.000019167666,0.000019985888,0.000019539222,0.00002077766,0.000019220934,0.000020417066,0.000020062675,0.00002071676,0.000019531193,0.00002023679,0.000019863444,0.00002091904,0.000019366604,0.000020375597,0.000019862517,0.000020563248,0.000019114566,0.000019945637,0.000019510604,0.00002077013,0.000019211973,0.000020419793,0.000020026717,0.000020727412,0.00001956807,0.000020312815,0.000019971465,0.000021002137,0.00001939233,0.000020356409,0.000019857005,0.000020574958,0.000019130432,0.00001993881,0.000019505655,0.000020750194,0.000019193496,0.000020405852,0.00002000801,0.000020695472,0.00001952529,0.000020265312,0.00001991935,0.000020926704,0.000019320227,0.00002030441,0.000019809586,0.000020522735,0.000019070758,0.0000198948,0.00001946496,0.000020709924,0.00001913211,0.000020356254,0.00001996181,0.000020676041,0.000019497898,0.000020254995,0.00001991213,0.000020933569,0.000019315014,0.000020311245,0.000019818997,0.000020536421,0.000019065648,0.000019893454,0.000019469173,0.000020717986,0.000019145617,0.000020378415,0.00001997535,0.00002068397,0.000019503274,0.000020259808,0.000019924913,0.000020952863,0.00001932863,0.000020314501,0.000019825178,0.000020549605,0.000019099916,0.000019923395,0.000019497807,0.000020757934,0.000019196643,0.00002042735,0.0000200182,0.00002072253,0.000019539428,0.000020283256,0.0000199475,0.000020982998,0.000019378962,0.00002035072,0.000019849698,0.000020568898,0.000019120107,0.000019935367,0.000019504967,0.000020753758,0.00001920809,0.000020439626,0.000020046837,0.000020758944,0.000019603614,0.000020343756,0.000020001618,0.000021022535,0.000019421183,0.000020367088,0.0000198635,0.000020568663,0.000019141016,0.00001993552,0.000019469286,0.000020688209,0.00001913492,0.00002034523,0.00002000387,0.0000207151,0.000019607858,0.000020342493,0.000019990483,0.000020936364,0.000019315952,0.000020121997,0.000019612964,0.00002014767,0.000018723318,0.000019512816,0.000018984276,0.000020189273,0.000018703224,0.000020043397,0.000019705561,0.000020574154,0.00001924465,0.000020264133,0.000019828318,0.000021106885,0.00001939527,0.00002058597,0.000019931624,0.00002068476,0.00001922341,0.000020198631,0.000019723271,0.000020748079,0.000019595745,0.000020714724,0.000020312853,0.00002110439,0.000020430136,0.000021212423,0.000021074624,0.000022616874,0.000020991043,0.000021376996,0.000020622145,0.000021146112,0.000019866153,0.000020152704,0.000019587917,0.000020682412,0.000019446072,0.000020423822,0.00001982913,0.000020544743,0.00001970246,0.00002041142,0.000020385489,0.00002199167,0.000020863019,0.000021590295,0.000021042712,0.000021047206,0.000019684468,0.000019476676,0.000019337831,0.000020293239,0.00001988526,0.000020561682,0.00002016793,0.000020539554,0.000020410876,0.000019982344,0.000020402955,0.000023035993,0.000024007133,0.000025262034,0.000016402699,0.000011032188,0.000012922448],[0.00001638297,0.000013729546,0.000014220532,0.000020306676,0.000032842843,0.00003085747,0.000025136327,0.000022248112,0.000019635347,0.000020127007,0.0000190213,0.000019742296,0.000018930383,0.000019418403,0.0000182532,0.000018859171,0.000018620183,0.000020051428,0.000019069323,0.000019645011,0.000019554975,0.000020767515,0.000019591578,0.000019770407,0.000018751569,0.000019606623,0.0000188218,0.000019133715,0.000018955494,0.000019640216,0.00001863626,0.000018690118,0.000018053817,0.000019321407,0.000018685716,0.000019352497,0.000019261615,0.00002039564,0.00001929364,0.000019634186,0.000018918778,0.000019992884,0.000019117519,0.000019212137,0.000019043679,0.000019744914,0.000018889483,0.000019144029,0.000018619969,0.000019925163,0.00001897707,0.00001943884,0.000019212906,0.000020260115,0.000019393643,0.000019779007,0.000019243254,0.000020228472,0.000019369982,0.000019296805,0.000019212632,0.000019809851,0.000018932062,0.00001917496,0.000018659468,0.000019899013,0.000018979279,0.000019421905,0.000019275765,0.000020359223,0.00001941122,0.000019763018,0.000019146073,0.00002013868,0.00001930586,0.000019289557,0.00001919172,0.000019786365,0.000018859388,0.00001910161,0.000018602772,0.000019872823,0.000018933308,0.000019412071,0.000019246705,0.000020357902,0.000019426036,0.000019827656,0.000019251864,0.00002023372,0.00001935344,0.000019279643,0.000019187217,0.00001978476,0.000018896762,0.000019125324,0.00001863349,0.000019879722,0.000018940314,0.000019403873,0.000019242061,0.000020337431,0.000019393865,0.000019780327,0.000019197925,0.000020182573,0.00001928551,0.000019199188,0.000019126619,0.00001973488,0.000018841589,0.00001906674,0.000018589577,0.000019847312,0.00001889179,0.000019348936,0.000019196277,0.000020306947,0.000019365496,0.000019760228,0.000019181309,0.000020174934,0.000019276242,0.00001920622,0.000019133715,0.000019754389,0.000018841374,0.00001906543,0.000018577544,0.00001984805,0.000018893068,0.000019362615,0.000019215875,0.000020325584,0.000019376264,0.000019767316,0.000019197814,0.000020188041,0.000019291432,0.00001921135,0.000019138608,0.000019761435,0.000018863218,0.000019093743,0.00001861507,0.000019870076,0.000018933524,0.000019410183,0.000019255443,0.00002035464,0.000019405039,0.000019794195,0.000019220219,0.000020205724,0.00001932533,0.00001925504,0.000019178035,0.000019782081,0.00001888797,0.000019115932,0.000018628334,0.000019881069,0.000018947523,0.000019416739,0.000019266869,0.000020375246,0.000019456182,0.000019856947,0.000019274974,0.000020250745,0.000019365145,0.000019273852,0.000019186888,0.000019771087,0.000018901195,0.000019123445,0.000018624765,0.00001984667,0.00001890444,0.000019322992,0.000019212028,0.000020313919,0.00001948903,0.000019890704,0.000019298222,0.000020279154,0.000019319232,0.000019174395,0.000018980292,0.000019554003,0.000018561092,0.000018718943,0.00001817559,0.000019379535,0.00001842171,0.000018850487,0.000018793102,0.000019985146,0.000019073177,0.000019487954,0.000018980818,0.00002007657,0.000019178216,0.00001917008,0.000018962617,0.000019734334,0.000018676685,0.00001898902,0.000018667904,0.000019813253,0.00001898451,0.000019545596,0.000019548317,0.000020585341,0.000019897343,0.000020235571,0.000019869658,0.00002086045,0.000020268426,0.00002020998,0.000019718307,0.000020060876,0.000019220273,0.000019287349,0.000018581653,0.000019533987,0.000018853201,0.000019423478,0.000019141218,0.000020226427,0.000019603389,0.00001994556,0.000019302346,0.00002031886,0.000019727635,0.000020338537,0.000019931946,0.000020664156,0.000019912188,0.00001966775,0.000018674404,0.000019172256,0.000019464997,0.000019785515,0.000019976133,0.000020282,0.00002039807,0.00002123805,0.000020579748,0.000021390924,0.00002207873,0.000025492282,0.000025333567,0.000017372948,0.000010638999,0.000013415573],[0.000016096448,0.000013909796,0.000012301869,0.000021496855,0.000033009797,0.000032388085,0.000027243177,0.000023433988,0.000021486669,0.000021020067,0.000020608617,0.000020083808,0.0000206818,0.000019922045,0.000020115283,0.000019598569,0.00002040566,0.000020301777,0.000020569956,0.000019766976,0.000021072554,0.000021167378,0.000021152284,0.000020240745,0.000020347443,0.00002014742,0.000020122803,0.000019285491,0.000019972207,0.000020136855,0.000020388115,0.000019349398,0.000019835694,0.000020003738,0.0000207056,0.000019833858,0.00002101127,0.000020736348,0.00002106737,0.000020231599,0.00002064245,0.000020668036,0.000020829282,0.000019851135,0.000020323569,0.000020343328,0.000020462445,0.000019695153,0.000020424506,0.00002057131,0.000021008223,0.000019878453,0.000020835938,0.000020767198,0.000021014335,0.000020374451,0.000020906497,0.000020837942,0.000020899559,0.000019823818,0.000020398713,0.00002037956,0.000020620118,0.000019706556,0.000020470174,0.00002049811,0.000020914473,0.000019768786,0.000020825368,0.000020789948,0.00002109266,0.000020261661,0.000020816771,0.000020720256,0.000020869704,0.000019763376,0.000020361884,0.000020343445,0.000020562993,0.000019607167,0.000020396768,0.000020485171,0.000020895155,0.000019767429,0.000020860669,0.000020792071,0.000021140042,0.000020336305,0.000020925585,0.00002079209,0.000020885274,0.00001977961,0.000020384712,0.000020374704,0.000020592606,0.000019650744,0.0000204445,0.000020516845,0.000020910105,0.000019767542,0.000020840667,0.00002075443,0.000021099358,0.000020288286,0.000020862162,0.000020736703,0.000020823143,0.000019710747,0.000020321184,0.000020330255,0.000020555248,0.000019603915,0.00002040704,0.000020485035,0.000020875057,0.000019718984,0.000020810498,0.000020718697,0.000021086445,0.000020271595,0.000020854166,0.00002073702,0.000020844442,0.000019721618,0.000020344958,0.000020347714,0.000020562993,0.000019601539,0.000020401127,0.000020487165,0.00002086616,0.000019730422,0.000020836234,0.000020736623,0.000021109625,0.0000202843,0.000020870064,0.000020749878,0.000020850746,0.000019725885,0.000020339661,0.000020360874,0.000020581554,0.000019627054,0.000020430232,0.000020519368,0.000020901094,0.000019767127,0.00002087255,0.000020754589,0.000021122029,0.000020305146,0.000020894217,0.000020769854,0.000020866399,0.00001976087,0.000020378706,0.000020385645,0.000020602643,0.00001965127,0.000020444753,0.000020528743,0.000020920019,0.000019779536,0.000020863674,0.000020787826,0.000021146294,0.000020355283,0.000020930833,0.000020808653,0.000020881429,0.00001978323,0.000020368312,0.000020365183,0.000020573232,0.000019657231,0.000020430603,0.000020484058,0.000020855678,0.000019697896,0.000020741489,0.000020766229,0.000021118885,0.0000203935,0.000020947507,0.000020797108,0.000020749601,0.000019638643,0.000020131307,0.000020160816,0.000020273857,0.00001929824,0.000019915302,0.00001999216,0.00002034977,0.000019255736,0.000020351457,0.000020484373,0.00002087657,0.000020075056,0.000020779502,0.000020622007,0.000020875696,0.000019650972,0.000020500162,0.000020352156,0.000020547293,0.000019683417,0.000020564974,0.000020413989,0.000020585774,0.000019810966,0.000020957757,0.000020906416,0.000021153535,0.000020868092,0.000021322185,0.000021362323,0.00002129063,0.000020414614,0.000020632237,0.000020679037,0.00002068977,0.000019851059,0.000020134052,0.000020318219,0.000020383332,0.00001956542,0.000020601701,0.000020578964,0.00002107595,0.000020398247,0.000020763477,0.000020410429,0.000020646741,0.000019781835,0.000020182111,0.000020652747,0.000020526571,0.000019821531,0.000018932982,0.000019166058,0.000019033367,0.000019647729,0.000019662219,0.000020536714,0.000020826144,0.000021225029,0.000021023496,0.000021591446,0.000023349909,0.000024042807,0.000025135392,0.000018061894,0.000010912305,0.000013298282],[0.00001573327,0.0000142669205,0.000012492722,0.00001848064,0.000029989314,0.000032355332,0.000026412796,0.00002403742,0.000020758112,0.000020953083,0.00001945249,0.000019997195,0.000018804827,0.000019585488,0.000019044932,0.000019984134,0.000019279809,0.000020380552,0.000019174486,0.00001980972,0.000019454605,0.000020933508,0.000019713118,0.000020471618,0.000019064666,0.000020250514,0.00001899496,0.000019376874,0.000018961116,0.000020215764,0.000019436302,0.000019903891,0.000018605415,0.000019888086,0.000019087625,0.000019833593,0.000019404002,0.00002065458,0.000019677356,0.000020414203,0.000019253075,0.000020554133,0.000019487305,0.000019815521,0.000019104962,0.000020015472,0.00001926325,0.000019736895,0.000018876895,0.00002019894,0.000019118157,0.000019634186,0.000019074796,0.00002030007,0.000019472516,0.00002043304,0.00001948435,0.000020822468,0.000019375784,0.000019586403,0.000018998184,0.000019960517,0.000019132147,0.000019617248,0.000018854136,0.000020191237,0.000018998384,0.000019483141,0.00001898386,0.000020310781,0.000019360195,0.00002024588,0.000019262148,0.000020660627,0.000019196368,0.000019456664,0.000018906172,0.00001996621,0.000019052344,0.00001954021,0.00001878459,0.000020212236,0.000019018089,0.00001952799,0.000018989509,0.000020339972,0.000019424831,0.000020347656,0.000019352738,0.000020720672,0.000019246025,0.000019528194,0.000018973724,0.000020005167,0.000019084966,0.000019567156,0.000018819035,0.000020220585,0.000019009112,0.000019498457,0.000018950705,0.000020284338,0.000019366364,0.000020281632,0.000019299123,0.00002066441,0.000019198766,0.000019464347,0.000018924751,0.000019951362,0.000019035944,0.0000195088,0.000018772394,0.00002017022,0.000018964101,0.000019446776,0.000018910265,0.000020245996,0.000019339712,0.000020260619,0.0000192838,0.000020653359,0.000019193769,0.000019471347,0.000018940062,0.000019977693,0.000019040412,0.000019516132,0.00001877458,0.000020172009,0.000018965475,0.000019463252,0.000018934355,0.000020272562,0.00001936243,0.00002027434,0.000019294395,0.000020660687,0.000019200763,0.00001947532,0.000018930925,0.000019978379,0.00001905883,0.00001953708,0.000018792905,0.000020205163,0.000019003639,0.0000195029,0.000018965855,0.00002029864,0.00001937606,0.000020294943,0.000019314388,0.000020687936,0.000019221337,0.000019505524,0.000018967918,0.000020013716,0.000019087005,0.000019572028,0.000018820147,0.000020232406,0.000019023548,0.000019518755,0.00001897669,0.000020321844,0.000019420551,0.000020364758,0.000019384248,0.000020767458,0.000019290752,0.000019560608,0.000019003168,0.000020019692,0.00001910478,0.000019581697,0.00001884655,0.000020224497,0.000018993456,0.000019428797,0.000018908948,0.000020255826,0.000019439285,0.000020398013,0.000019412311,0.000020804051,0.00001919075,0.000019398729,0.000018824187,0.000019924459,0.00001895947,0.000019320596,0.000018475934,0.000019783176,0.000018575613,0.000018976763,0.000018645664,0.000020063708,0.00001927536,0.000020198131,0.000019216608,0.000020568074,0.000019119816,0.000019538029,0.000018952944,0.000020199499,0.000019151425,0.000019816634,0.000018993927,0.000020266607,0.00001913386,0.000019603951,0.000019129739,0.000020429123,0.00001997415,0.000021017404,0.000020087964,0.0000213488,0.000019877732,0.000020182457,0.000019434614,0.00002050505,0.000019890438,0.00002014986,0.00001899911,0.000020172318,0.000019111321,0.000019612648,0.000018996501,0.00002040926,0.000019842411,0.000020816255,0.000019456867,0.000020607597,0.000019064193,0.000019806017,0.00001894727,0.000020501177,0.000019915797,0.000020305686,0.000018561996,0.000019164487,0.000018910661,0.000019184437,0.00001911371,0.000019945066,0.000020651409,0.000021636135,0.000021409985,0.000022219214,0.00002372419,0.000025206109,0.000023651586,0.00001641899,0.00001100555,0.00001343032],[0.000015619906,0.000014062568,0.000011399992,0.000016840408,0.000029717348,0.000035226913,0.000030854793,0.000025344441,0.000022804192,0.000021886553,0.000021431822,0.000019780158,0.000020303363,0.000019580579,0.000020435204,0.000019490073,0.000020821593,0.000020433721,0.000021067992,0.000019378353,0.000020830652,0.000020509275,0.000021496384,0.000019963867,0.000020611724,0.000019770614,0.000020300537,0.000019253515,0.000020417961,0.000020338246,0.000021427755,0.000019964058,0.000020433663,0.000019722856,0.000020577098,0.00001944403,0.000021027827,0.00002064247,0.000021857124,0.000020271054,0.000020993226,0.000020517315,0.000021187474,0.000019745159,0.000020566955,0.000020307722,0.000021102538,0.000019739171,0.000020322019,0.000019753126,0.000020500514,0.000019006267,0.000020366835,0.000020038351,0.000021141677,0.000019978608,0.000021002877,0.00002043076,0.000020863416,0.000019311754,0.000020229012,0.000020015566,0.000020571997,0.000019347755,0.000020098409,0.000019638586,0.000020269874,0.00001872439,0.000020131498,0.000019899697,0.000020944111,0.000019662892,0.000020718635,0.00002011461,0.000020581161,0.000019113473,0.000020155452,0.000019997993,0.000020566406,0.000019305273,0.000020105615,0.000019676962,0.000020324362,0.00001874994,0.000020158048,0.000019912357,0.000021036774,0.000019767995,0.000020805379,0.000020183556,0.000020668156,0.000019207777,0.00002022824,0.000020050873,0.000020590545,0.000019314737,0.000020091202,0.000019653726,0.00002027927,0.00001871773,0.000020114898,0.000019861816,0.000020974772,0.000019712159,0.0000207516,0.000020134168,0.000020623303,0.000019157524,0.000020180187,0.000020005129,0.000020548194,0.000019266281,0.000020050988,0.000019615114,0.000020242405,0.00001867403,0.000020084344,0.000019826843,0.000020959198,0.000019702235,0.000020751422,0.000020125528,0.000020633594,0.000019176077,0.000020212852,0.000020018908,0.000020552918,0.000019268045,0.000020059957,0.00001961779,0.00002024559,0.000018688692,0.000020110621,0.000019841995,0.000020979676,0.000019709829,0.000020758052,0.000020123494,0.000020636506,0.000019174578,0.000020202968,0.000020027997,0.000020581809,0.000019295883,0.000020079997,0.000019644862,0.000020284764,0.000018725603,0.00002015134,0.000019871042,0.000021003218,0.000019729385,0.000020782058,0.000020156165,0.000020656096,0.00001920633,0.000020240648,0.000020070616,0.000020616146,0.000019335674,0.000020119349,0.000019680603,0.000020310452,0.00001875275,0.00002015203,0.000019905276,0.000021034126,0.000019792762,0.000020845657,0.000020249587,0.000020733718,0.000019272382,0.000020267093,0.000020086605,0.000020609405,0.000019340838,0.000020107092,0.00001967788,0.000020280606,0.000018699033,0.000020046036,0.000019832252,0.000020985619,0.000019798652,0.000020856412,0.000020253701,0.00002063562,0.000019092395,0.000020026164,0.000019945199,0.000020395855,0.000019109753,0.000019732095,0.000019255278,0.000019804733,0.000018270006,0.000019803185,0.000019719999,0.000021053993,0.000019755651,0.000020830235,0.000020168278,0.000020737336,0.000019340468,0.000020546802,0.000020291303,0.000020936284,0.000019738814,0.000020507357,0.000019873392,0.0000202387,0.000019173609,0.000020235766,0.000020199692,0.00002144231,0.000020769736,0.000021603186,0.000021235477,0.000021605843,0.000020448613,0.00002088342,0.000020877049,0.000021510758,0.000020369653,0.00002049248,0.000019744482,0.000020207437,0.000018917082,0.000020050891,0.000019774896,0.00002108725,0.000020372392,0.000020961636,0.000020199654,0.000020418196,0.000019626399,0.000020185249,0.000020599029,0.000021452415,0.000020375559,0.000019849698,0.000019190511,0.000019545596,0.000018853345,0.000019449688,0.000019875137,0.000020662264,0.000020726997,0.00002091545,0.000021459311,0.00002486098,0.000024341154,0.000023236265,0.00001570175,0.000010723617,0.000012845066],[0.000015813403,0.000013322908,0.000011666515,0.000015886166,0.000029429793,0.000033086097,0.000027940858,0.000024243485,0.000021467498,0.000020762624,0.00001937146,0.000019306744,0.00001868267,0.000019082674,0.000018491111,0.000019118432,0.000019258694,0.000020170452,0.00001900672,0.000019144612,0.000019113873,0.00002037653,0.000019417237,0.000019903435,0.000019003748,0.000019885772,0.000018765271,0.000019265528,0.00001888552,0.000020170568,0.000019435874,0.000019836885,0.00001919712,0.000019968722,0.00001908668,0.000019602792,0.000019503515,0.000020669278,0.000019898995,0.000020164682,0.000019768655,0.000020737472,0.000019726827,0.000019868447,0.000019395344,0.000020106823,0.000019429906,0.000019412128,0.000019083129,0.000019844681,0.000018806137,0.000019109262,0.000019051635,0.000020253006,0.00001949247,0.000020245032,0.000019806168,0.000020922791,0.000019425943,0.000019551468,0.000019306413,0.0000202332,0.00001913014,0.000019236813,0.000018874429,0.000019821227,0.000018649736,0.000018895536,0.000018880766,0.000020252619,0.000019276353,0.000020010166,0.000019458557,0.000020636387,0.000019119962,0.000019396972,0.000019189065,0.000020250765,0.000019068231,0.000019238778,0.000018863688,0.000019853918,0.000018654877,0.00001894194,0.000018923416,0.000020326668,0.000019377983,0.00002012929,0.000019550835,0.000020708365,0.000019200763,0.000019474986,0.000019248413,0.000020285519,0.00001908484,0.000019221905,0.000018830973,0.000019831135,0.000018621373,0.000018894472,0.000018878443,0.000020277355,0.000019324116,0.00002006541,0.000019495985,0.000020662048,0.00001916264,0.000019422627,0.000019212595,0.000020253701,0.000019050181,0.000019181582,0.000018795503,0.000019796764,0.000018586084,0.000018853849,0.000018845363,0.00002024899,0.000019301553,0.000020057738,0.0000195,0.000020665711,0.000019173023,0.000019437877,0.000019222345,0.00002025202,0.000019035018,0.000019176188,0.000018794912,0.000019794821,0.000018582487,0.00001886696,0.000018869607,0.000020276853,0.000019321904,0.000020067784,0.00001949658,0.000020655229,0.00001916255,0.000019433539,0.000019227058,0.00002027548,0.000019070412,0.000019210984,0.00001882232,0.000019827638,0.00001861903,0.000018904133,0.000018893123,0.000020301777,0.000019338107,0.000020092659,0.0000195257,0.000020693264,0.000019195528,0.000019470139,0.000019261926,0.000020317368,0.000019114075,0.00001925392,0.000018864459,0.000019867726,0.00001865468,0.000018928396,0.000018911256,0.000020312775,0.000019366547,0.000020128235,0.000019571953,0.000020761774,0.000019270306,0.0000195379,0.000019312803,0.000020337353,0.000019144705,0.00001925302,0.000018851602,0.000019844472,0.000018662084,0.000018903773,0.000018882603,0.000020263788,0.000019386338,0.00002016022,0.000019603483,0.00002079546,0.00001918484,0.000019344268,0.000019079962,0.0000201238,0.000018947414,0.000019011542,0.00001853477,0.000019459356,0.000018334884,0.00001853622,0.000018682224,0.000020208381,0.000019368172,0.000020038142,0.00001957716,0.000020657475,0.000019290936,0.000019654044,0.000019526668,0.00002059964,0.000019401985,0.000019668443,0.0000193363,0.000020118929,0.000019028103,0.000019328152,0.000019444366,0.000020677619,0.000020171798,0.000021086888,0.000020834168,0.000021723528,0.000020343814,0.000020332853,0.000019824707,0.000020469959,0.000019760284,0.000019637426,0.000019077761,0.000019528119,0.000018645682,0.000019012396,0.00001886482,0.000020420903,0.000019884805,0.00002126628,0.000020272233,0.000021116712,0.00001958491,0.000020350391,0.000019523799,0.000020790107,0.000019968762,0.000020263458,0.000019250228,0.000019416422,0.000019739397,0.000019728577,0.0000197901,0.000020621712,0.000020598087,0.000021382602,0.000020737198,0.000022088121,0.000023551876,0.00002632988,0.000024275689,0.0000165436,0.000010262426,0.0000130724775],[0.000015470325,0.000012860253,9.9799445e-6,0.000015816524,0.000027364124,0.000034160097,0.000028296989,0.000024847897,0.000022314749,0.000021416234,0.000020556916,0.000019905467,0.000020236403,0.000019871439,0.000020065487,0.000019656838,0.000020541513,0.00002055962,0.000020457821,0.000019592231,0.000020744554,0.000020869604,0.000020990283,0.000019945484,0.000020674623,0.000020390993,0.00002069873,0.000019694797,0.000020325255,0.000020516865,0.00002065269,0.000019891651,0.00002053303,0.000020511112,0.000021029793,0.00002016824,0.000021173557,0.000021105778,0.00002128724,0.000020354486,0.000021164211,0.000021250487,0.000021745624,0.000020557347,0.000020802681,0.000020650326,0.000020412726,0.000019665651,0.000020335763,0.000020471249,0.000020864947,0.000019661056,0.000020713123,0.000020753696,0.000021029593,0.000020184132,0.000021284926,0.00002100512,0.000021323649,0.000019873336,0.000020747346,0.000020738504,0.000020559954,0.000019429426,0.000020175954,0.000020274882,0.000020680873,0.00001937148,0.00002065403,0.000020655349,0.00002104799,0.000019936318,0.000021104028,0.00002068113,0.000021080314,0.000019717836,0.000020717864,0.000020696045,0.000020576195,0.000019413646,0.000020150437,0.00002025714,0.0000206832,0.000019414998,0.000020764548,0.000020726045,0.000021154563,0.000020033958,0.00002120132,0.0000207673,0.000021159265,0.000019773954,0.000020759338,0.00002072324,0.000020585538,0.00001940104,0.000020140447,0.000020251906,0.00002065125,0.000019357389,0.000020717234,0.000020685902,0.000021112322,0.000019982934,0.000021134098,0.000020703803,0.000021117154,0.000019730422,0.000020727432,0.000020698651,0.000020563131,0.00001937135,0.000020117757,0.000020225867,0.00002063076,0.000019325054,0.000020699836,0.000020657593,0.000021094853,0.000019984116,0.00002115164,0.000020710693,0.000021138612,0.000019750281,0.000020733281,0.00002069656,0.000020558817,0.00001936243,0.000020110469,0.000020218637,0.000020623462,0.000019337684,0.000020733856,0.000020673931,0.000021114112,0.000019990806,0.000021149017,0.000020696954,0.000021128577,0.00001975,0.000020748454,0.000020725613,0.000020589425,0.000019397305,0.000020151532,0.00002025656,0.000020663621,0.000019365974,0.0000207534,0.000020686199,0.000021130047,0.000020013144,0.000021186363,0.000020738838,0.00002116764,0.000019797028,0.000020792604,0.000020774252,0.000020633634,0.000019441306,0.000020186038,0.000020293704,0.000020695887,0.0000193976,0.000020738067,0.000020722073,0.000021145668,0.000020025705,0.000021187878,0.000020782216,0.000021190686,0.000019833953,0.000020808911,0.00002077966,0.0000206235,0.000019455847,0.000020147287,0.00002022639,0.00002064497,0.000019390684,0.000020698964,0.000020708227,0.000021166552,0.000020094172,0.00002120138,0.000020839196,0.000021103102,0.000019617753,0.00002046145,0.000020485388,0.00002023949,0.000019141802,0.000019716728,0.000019828185,0.00002025258,0.000019061066,0.0000203992,0.000020602232,0.000021046868,0.000019946589,0.00002120868,0.000020799487,0.00002126129,0.000020079155,0.0000213958,0.000021084596,0.0000210056,0.000019844794,0.000020842337,0.000020514339,0.000020873784,0.00002010483,0.000021328591,0.00002123987,0.000021554126,0.000021114394,0.000022367203,0.000022107466,0.00002206892,0.00002106052,0.000021253507,0.000021282185,0.00002070329,0.000019952848,0.00002010529,0.00002023976,0.000020339021,0.000019569543,0.000020823602,0.000020756786,0.000021587533,0.000020977695,0.000022129108,0.000021233856,0.000021460395,0.000020731917,0.000021183512,0.00002117069,0.000020757756,0.000020361515,0.000019790687,0.000020122188,0.000020553602,0.000020747128,0.0000206664,0.000021272508,0.000020963416,0.000021215295,0.000021098273,0.000021432968,0.000024101715,0.000024674831,0.000025152634,0.000017424267,0.000010777041,0.000012998758],[0.000014936972,0.000011923521,0.000010355292,0.000013729703,0.000025221088,0.00003326891,0.000026324205,0.000024043908,0.000021043776,0.000020883084,0.000019670244,0.000019970741,0.000018981253,0.000019433688,0.000019224068,0.000019785912,0.00001954567,0.000020495138,0.000019384637,0.000019862782,0.000019486246,0.000020587579,0.000019364812,0.000019581194,0.000018783696,0.000020087926,0.000019045605,0.000019826673,0.000019054032,0.000020275038,0.00001896014,0.000019346482,0.000018727693,0.000020058753,0.000019263396,0.00002011582,0.000019664187,0.000020654246,0.000019421255,0.000019733037,0.000019215582,0.000020657693,0.000019850851,0.000020261294,0.000019521714,0.000019974723,0.000018770193,0.000018953126,0.00001856557,0.000019882662,0.000018990142,0.000019523763,0.000019114676,0.000020135281,0.000018953884,0.000019544721,0.000019006358,0.000020395191,0.000019174156,0.000019566764,0.000019126528,0.000020051542,0.000018731891,0.000018793782,0.00001831938,0.000019659707,0.000018698604,0.000019199499,0.000018912771,0.000020044276,0.000018793748,0.000019369965,0.000018709396,0.00002011839,0.000018875779,0.0000193604,0.000018951661,0.000019985699,0.00001862997,0.00001874944,0.000018236253,0.000019636956,0.000018648527,0.000019222198,0.000018956034,0.000020121344,0.00001886061,0.000019437746,0.000018787332,0.000020221181,0.000018952493,0.00001941483,0.000018986739,0.000020009022,0.00001863498,0.000018754412,0.000018227403,0.000019615563,0.00001860105,0.000019158402,0.00001890857,0.000020085781,0.000018834691,0.00001939821,0.00001873516,0.000020152493,0.00001889514,0.000019351723,0.000018945444,0.0000199752,0.000018611485,0.000018719711,0.000018204126,0.00001959126,0.00001857625,0.000019133351,0.00001889006,0.000020062884,0.00001882259,0.000019399637,0.000018749404,0.000020168067,0.000018921106,0.000019391218,0.000018971661,0.000019981238,0.000018606728,0.000018716053,0.000018196506,0.00001957843,0.000018575542,0.000019145215,0.000018910589,0.000020086394,0.000018841985,0.000019409832,0.000018743236,0.00002016047,0.000018915152,0.000019375822,0.00001896674,0.000019999674,0.000018632245,0.00001873934,0.000018223023,0.000019619194,0.000018614377,0.00001918226,0.000018927152,0.000020099482,0.000018849874,0.000019430372,0.000018770856,0.000020198786,0.000018965855,0.000019444995,0.00001902754,0.000020058753,0.000018681492,0.000018783803,0.000018260878,0.00001965245,0.000018647994,0.000019199499,0.00001894149,0.000020124819,0.000018874987,0.000019440713,0.00001878366,0.0000202175,0.00001898596,0.000019466055,0.000019044406,0.00002006983,0.000018706613,0.000018828441,0.00001829042,0.000019616144,0.00001858674,0.000019157014,0.00001891858,0.000020096932,0.000018918978,0.000019508743,0.000018857554,0.000020262298,0.000018882116,0.000019220457,0.000018773488,0.000019771012,0.000018381927,0.000018444614,0.000017870394,0.000019200379,0.000018206765,0.000018784733,0.000018594257,0.000019923642,0.000018820167,0.000019362891,0.000018807033,0.000020296471,0.000019247916,0.000019807376,0.000019360545,0.000020347443,0.000019054833,0.000019197523,0.000018741468,0.000020107149,0.00001948485,0.000020215128,0.000019780497,0.000020840605,0.000019902562,0.000020668194,0.000020317018,0.000021712507,0.000020839056,0.000021207688,0.00002026885,0.000020936523,0.0000197532,0.000019552923,0.000018759045,0.000019779744,0.000018940405,0.000019671203,0.000019197503,0.000020589367,0.000019633211,0.000020531288,0.000019551673,0.0000209115,0.00001987269,0.000020952983,0.000019901461,0.000021098876,0.00001944596,0.000019679588,0.000018826144,0.00001963338,0.000020350022,0.000020544256,0.000020423025,0.000020844464,0.000020792446,0.000021527298,0.000020685271,0.000021165057,0.000022528036,0.00002531205,0.000024811054,0.000016769107,0.000010700825,0.000013272487],[0.000015310066,0.000011107881,0.000010241445,0.000013691144,0.000026552687,0.000036894373,0.000029750974,0.00002462584,0.000022308728,0.000021597747,0.00002126472,0.000019842808,0.00002005246,0.000019604418,0.000020174319,0.000019486375,0.00002091154,0.000020591548,0.000021523461,0.000019694684,0.000021047972,0.000020482066,0.000020826183,0.000019266558,0.000020110314,0.000019374695,0.000020316475,0.000019040264,0.000020310761,0.00001975469,0.000020190775,0.000018776907,0.00001980596,0.000019326935,0.000020342473,0.000019344341,0.00002095492,0.000020398948,0.00002093858,0.00001943554,0.000020383994,0.000020068148,0.00002103874,0.000019633642,0.000020567935,0.000019840612,0.000019993304,0.000018630004,0.00001948825,0.00001922702,0.000020287396,0.000018827024,0.00002022855,0.000019663566,0.000020174723,0.000018807175,0.00001997636,0.000019461284,0.00002038514,0.000018740646,0.00001991192,0.000019488196,0.000019699663,0.000018286722,0.00001917178,0.000018974737,0.000020006179,0.000018465402,0.000019890607,0.000019459521,0.000020039364,0.000018535673,0.000019787703,0.000019172512,0.000020143654,0.000018488661,0.000019715919,0.000019363888,0.000019651157,0.000018200653,0.00001912204,0.000018933037,0.000019971541,0.000018448327,0.000019960213,0.000019499814,0.000020094652,0.000018584897,0.000019852725,0.000019251918,0.000020228606,0.000018551395,0.000019779025,0.000019400633,0.00001965485,0.000018194407,0.000019114857,0.000018918923,0.00001992022,0.00001838568,0.000019909929,0.000019456646,0.00002007297,0.00001855842,0.00001982,0.000019194007,0.00002017476,0.000018497884,0.000019735746,0.000019373621,0.000019642952,0.000018171568,0.000019099898,0.00001890399,0.000019914505,0.000018369099,0.000019910003,0.000019444515,0.000020067879,0.000018568882,0.00001984188,0.000019212082,0.000020211522,0.000018540888,0.000019773819,0.000019387058,0.000019637126,0.000018167826,0.000019100353,0.000018899556,0.000019902924,0.000018377317,0.000019934188,0.00001945427,0.000020080628,0.000018575436,0.000019845778,0.000019200159,0.000020205625,0.000018530087,0.00001977005,0.000019403113,0.0000196679,0.00001818745,0.00001911814,0.000018920078,0.000019941413,0.000018406274,0.00001995945,0.000019461655,0.000020090092,0.00001858511,0.00001986981,0.000019222254,0.00002025094,0.000018593353,0.00001983628,0.000019459168,0.000019713774,0.000018229368,0.000019135394,0.00001893979,0.000019969924,0.000018450932,0.000019960422,0.000019516818,0.000020115971,0.000018604598,0.000019862346,0.000019266356,0.000020260772,0.000018603108,0.000019820302,0.000019447685,0.000019707686,0.000018268647,0.000019186962,0.000018973036,0.000019909472,0.000018362478,0.000019869658,0.000019476453,0.000020120673,0.000018708306,0.000019884728,0.000019342055,0.000020120711,0.000018396096,0.000019491132,0.000019097257,0.000019224068,0.000017852764,0.000018717034,0.00001847553,0.000019488585,0.000017963173,0.000019487228,0.00001916436,0.000019991625,0.000018568475,0.00001993246,0.000019463474,0.000020588523,0.000019052053,0.000020280353,0.000019639936,0.000019966572,0.000018775654,0.000019762452,0.000019490612,0.00002071749,0.000019642652,0.000020977195,0.000020233296,0.000020972375,0.000020061563,0.000021229704,0.00002098636,0.000022267259,0.0000209867,0.000021448323,0.000020776688,0.000020867355,0.00001960943,0.000019924839,0.00001943706,0.000020233874,0.000018843513,0.000020323258,0.000019601055,0.000020327716,0.000019230487,0.00002052428,0.00001990034,0.000020841362,0.000019764733,0.000020808257,0.000020371983,0.000020178051,0.000019183834,0.000019062121,0.000019169294,0.000020130174,0.000019936984,0.00002043261,0.00002006742,0.000020396652,0.000020267476,0.000019948699,0.000020179532,0.000022402128,0.000023966462,0.000026272492,0.000016978962,0.000011251213,0.000012856673],[0.000015707456,0.000012220987,0.000011383077,0.000014982367,0.00002789041,0.000034720135,0.000027105312,0.000023283625,0.000020440777,0.000020596004,0.000019434727,0.000019621551,0.000018888888,0.00001917489,0.000018580626,0.000019071176,0.000019072013,0.000020081356,0.00001923731,0.00001927137,0.000019429017,0.000020210211,0.000019211606,0.000019278797,0.000018281142,0.000019201587,0.000018144485,0.000018620254,0.0000182756,0.000019391811,0.000018254557,0.000018734463,0.000018018987,0.000019453768,0.000018613064,0.00001946056,0.00001934034,0.000020610918,0.000019265528,0.000019558554,0.000018737142,0.000020032507,0.000018880748,0.000019118941,0.000018879487,0.000019602587,0.000018491393,0.000018652121,0.000017999631,0.000019304038,0.000018326493,0.00001867166,0.000018598143,0.00001968719,0.000018666462,0.000019009984,0.000018383926,0.000019779289,0.000018461773,0.000018711607,0.00001846394,0.000019494255,0.000018160257,0.000018331037,0.000017811712,0.000019170518,0.000018123837,0.000018406923,0.00001836001,0.000019580204,0.000018406661,0.000018749226,0.000018130857,0.000019558462,0.000018253619,0.00001852486,0.000018240602,0.0000194162,0.00001803616,0.000018267392,0.000017727523,0.000019144612,0.000018117962,0.000018486033,0.000018426541,0.00001966158,0.000018460716,0.000018807374,0.00001818315,0.000019625575,0.0000183191,0.000018589115,0.000018290542,0.000019448518,0.000018036282,0.000018265127,0.000017731465,0.000019138095,0.000018079645,0.000018436456,0.000018385574,0.000019636394,0.000018440463,0.000018794752,0.000018168883,0.000019603016,0.000018291536,0.000018553694,0.000018262655,0.00001942183,0.00001801988,0.000018253078,0.000017723958,0.000019126637,0.000018076455,0.000018428316,0.000018377352,0.000019622974,0.000018438917,0.00001879805,0.000018184259,0.000019618257,0.000018318524,0.00001859119,0.000018296718,0.000019440768,0.00001802196,0.000018244673,0.0000177162,0.000019118414,0.000018066683,0.000018434926,0.000018397288,0.000019645518,0.000018451266,0.000018809185,0.000018185316,0.000019613732,0.000018311084,0.000018575702,0.000018291572,0.000019444014,0.000018039946,0.000018267827,0.000017737602,0.000019134062,0.000018086404,0.000018454697,0.000018410961,0.000019653033,0.000018451161,0.000018810762,0.000018191196,0.000019622787,0.000018333258,0.000018613437,0.000018346953,0.000019496134,0.000018082541,0.000018288729,0.000017751512,0.000019161198,0.000018128643,0.000018484201,0.000018434364,0.000019661486,0.000018467303,0.000018818622,0.000018197148,0.000019643625,0.000018360552,0.00001863795,0.000018335337,0.000019470343,0.000018087887,0.000018334482,0.000017806635,0.000019213127,0.000018137012,0.0000184309,0.000018355562,0.000019653744,0.000018559003,0.000018951083,0.000018284334,0.000019725736,0.000018293107,0.000018423976,0.000018005003,0.000019100737,0.000017678261,0.000017948925,0.000017412076,0.000018838644,0.000017788778,0.000018253635,0.000018050616,0.00001957225,0.000018428791,0.000018984023,0.000018425364,0.000019966608,0.000018756327,0.000019179992,0.000018733033,0.000019831872,0.000018450368,0.000018758205,0.000018394972,0.000019705298,0.00001892634,0.00001959625,0.000019563517,0.000020709509,0.000019731531,0.000020428557,0.000019893701,0.00002121501,0.000020143118,0.000020371379,0.000019803298,0.000020266878,0.000019259722,0.000019204444,0.000018634715,0.000019408388,0.000018448274,0.000018731604,0.000018539615,0.000019834935,0.000018885863,0.000019691735,0.000018990233,0.000020153377,0.000018781366,0.000019552048,0.000018755485,0.000020128118,0.000018829915,0.000019128534,0.000018045279,0.000019249275,0.000019248375,0.000020051675,0.000019811458,0.00002037863,0.000020262529,0.000021389902,0.000020721265,0.000021419195,0.000021898579,0.000024888237,0.00002534548,0.000018294624,0.000010986883,0.000013531989],[0.000015406853,0.000013247777,0.0000105177905,0.000017039383,0.000028328335,0.0000363703,0.000028725517,0.000023855846,0.000021613141,0.000021261007,0.000020744834,0.000019949157,0.00002033873,0.000019802674,0.000020119636,0.000019664,0.000020421585,0.000020444326,0.00002042544,0.000019627316,0.0000208325,0.000020911462,0.00002085492,0.000019799085,0.000020066902,0.000019797575,0.000019786761,0.000018811912,0.000019617042,0.000019705674,0.000020070845,0.000019105892,0.000019924799,0.000019921228,0.000020594767,0.000019777894,0.000020968213,0.000020706626,0.000021000053,0.000019977007,0.000020665455,0.000020572801,0.000020722886,0.000019496207,0.00002006256,0.000020149822,0.0000202063,0.000019319932,0.000020111618,0.000020080284,0.00002049942,0.000019214904,0.000020208998,0.000020283836,0.000020628144,0.000019602325,0.00002046781,0.0000203481,0.000020515377,0.000019128314,0.000019931433,0.000020059077,0.000020210731,0.000019061557,0.000019974055,0.000019971998,0.000020349557,0.00001898873,0.00002012215,0.000020218731,0.000020540201,0.000019356541,0.000020303867,0.000020150208,0.000020415237,0.000018976838,0.000019818279,0.00001997882,0.000020149071,0.000018973198,0.000019898007,0.000019917752,0.00002040321,0.000019075615,0.000020233278,0.00002025884,0.00002059907,0.000019412906,0.00002035862,0.000020212332,0.00002047492,0.000019021136,0.000019842599,0.000019998777,0.000020159585,0.000018983279,0.000019904763,0.000019903777,0.000020367672,0.000019043116,0.000020218424,0.00002023013,0.000020582514,0.000019397748,0.000020346957,0.000020171105,0.00002045156,0.000018994471,0.000019821286,0.000019991854,0.00002015157,0.00001897349,0.000019899866,0.000019887782,0.000020362542,0.000019041372,0.000020211774,0.000020218868,0.000020578256,0.00001940911,0.000020367419,0.000020187194,0.000020469784,0.00001902707,0.000019850417,0.000020005033,0.000020148977,0.00001896761,0.000019893985,0.000019889982,0.000020358484,0.000019049601,0.000020245167,0.000020239047,0.000020599286,0.000019421886,0.000020368272,0.000020171721,0.000020463362,0.000019014733,0.000019838191,0.000020012953,0.000020162086,0.00001899027,0.000019915664,0.00001989554,0.000020363572,0.000019051453,0.000020245436,0.00002023511,0.000020593312,0.000019419163,0.000020370235,0.000020181438,0.00002047986,0.000019041845,0.000019876974,0.000020058465,0.000020207957,0.000019026089,0.00001993149,0.000019946074,0.000020409785,0.000019072377,0.000020225772,0.000020252524,0.000020593707,0.000019417219,0.000020353884,0.000020208594,0.000020480466,0.000019047984,0.000019864525,0.000020018659,0.00002017024,0.000019033601,0.000019982344,0.000019995345,0.00002043563,0.000019074287,0.000020195992,0.000020215455,0.000020647685,0.000019556373,0.00002038413,0.000020301408,0.000020371535,0.000018850307,0.000019459929,0.000019631678,0.000019762096,0.000018643763,0.000019562473,0.000019656369,0.00002010623,0.000018836972,0.000019994563,0.000020037052,0.000020670324,0.000019622674,0.000020618132,0.0000204398,0.000020668687,0.000019449337,0.000020416968,0.000020271169,0.000020400914,0.000019452806,0.000020337702,0.000020233527,0.000020466914,0.00001971447,0.00002094741,0.000020787293,0.00002120243,0.000020642332,0.000021534588,0.000021329142,0.000021170346,0.00002041142,0.000020603058,0.00002085858,0.000020617563,0.000019892032,0.000020306597,0.000020471794,0.000020246825,0.000019142166,0.00002025005,0.000020079404,0.000020813713,0.000020026182,0.000020965015,0.00002039813,0.000020265894,0.000019387891,0.000019802032,0.000020243602,0.000020162643,0.000019394975,0.000018930328,0.000019176827,0.000019382771,0.00001991931,0.000020022593,0.000020661257,0.000020880376,0.000021287891,0.000021162696,0.000021635824,0.000022986156,0.000024294795,0.000025569243,0.000019069303,0.000011380668,0.000013484248],[0.000015250395,0.000015619726,0.000011820087,0.000017199738,0.000029164208,0.000034388504,0.000027547536,0.00002438781,0.000020872092,0.000021089643,0.00001968952,0.000020120327,0.000018982284,0.000019724514,0.000019342257,0.000020190793,0.000019532104,0.000020470368,0.000019423424,0.000019757856,0.00001967047,0.000020789472,0.00001961663,0.000020060972,0.000018739143,0.000019732246,0.00001845373,0.000018676326,0.000018266765,0.00001954416,0.000018758257,0.000019579551,0.000018450051,0.00001987377,0.000019027015,0.00001990767,0.000019423404,0.00002073081,0.00001950772,0.000020289466,0.000019173462,0.000020466583,0.000019050618,0.000019127421,0.000018534312,0.000019501525,0.000018840781,0.000019497638,0.00001876658,0.00002004315,0.00001892762,0.000019052379,0.000018702134,0.00001970389,0.000019116773,0.000019723968,0.000019028466,0.000020254474,0.000018859333,0.000018864099,0.000018427403,0.000019598343,0.000018817707,0.000019322806,0.000018658526,0.000019930027,0.000018795503,0.000018944344,0.000018690367,0.000019737083,0.00001896761,0.000019477588,0.000018829698,0.000020089266,0.000018715658,0.000018736053,0.000018300156,0.000019545596,0.000018702776,0.000019230945,0.000018572016,0.000019895408,0.000018788354,0.000019008225,0.000018735964,0.000019788327,0.000019005958,0.0000195379,0.00001887794,0.000020152205,0.00001876273,0.00001877048,0.00001830796,0.000019555775,0.000018714712,0.00001924566,0.000018566014,0.000019870948,0.000018766292,0.000018998548,0.000018716319,0.000019770745,0.000018986848,0.000019523335,0.000018851099,0.00002011722,0.00001872703,0.000018741825,0.0000182896,0.000019552514,0.00001870959,0.000019230101,0.000018549608,0.000019856665,0.000018760691,0.000018989598,0.00001870747,0.00001976036,0.000018987608,0.000019532199,0.000018870685,0.00002013503,0.000018744919,0.000018763447,0.000018311153,0.000019560775,0.000018710753,0.000019237475,0.00001855665,0.000019858124,0.000018768691,0.000019011179,0.00001873348,0.00001979093,0.000019011199,0.000019552923,0.00001886768,0.000020127372,0.000018732015,0.000018750263,0.000018300208,0.000019570645,0.000018726587,0.00001925247,0.00001856642,0.000019866344,0.000018765737,0.000019000812,0.000018723122,0.000019782196,0.000019003059,0.000019550089,0.00001887216,0.000020143558,0.0000187596,0.000018777462,0.000018334114,0.000019603483,0.000018763374,0.000019289502,0.000018599278,0.000019917828,0.000018810799,0.000019011179,0.000018729996,0.000019779649,0.00001901352,0.00001954539,0.000018878065,0.000020147574,0.000018773988,0.000018788407,0.00001833845,0.000019594474,0.000018746992,0.000019280065,0.00001864227,0.000019982,0.00001884195,0.000019044315,0.00001873759,0.000019772782,0.000019074123,0.000019707195,0.000019016783,0.00002025851,0.000018746741,0.000018639175,0.000018052991,0.000019249128,0.000018396728,0.000018891807,0.00001825522,0.00001966158,0.000018511384,0.00001888905,0.000018427894,0.000019836489,0.000019161782,0.000019915415,0.00001899094,0.000020509666,0.000019144374,0.00001959498,0.000018962979,0.00002043189,0.0000193575,0.000019938469,0.000019025834,0.000020262587,0.000019153871,0.000019687397,0.000019198254,0.000020400972,0.000019936413,0.000020925545,0.000020044467,0.000021361508,0.000019858635,0.000020226023,0.000019334328,0.00002056725,0.000019755405,0.000020295001,0.00001933501,0.000020565876,0.000019250816,0.000019452471,0.000018889068,0.000020074578,0.000019572362,0.000020447209,0.00001930877,0.000020465333,0.00001886813,0.000019322806,0.00001831751,0.000019850264,0.000019004781,0.00001966353,0.000017899065,0.000018957879,0.000018484729,0.000019440473,0.000019166937,0.000020337315,0.000020561034,0.000021716318,0.000021496158,0.0000224315,0.000023602895,0.000025741117,0.00002492648,0.000017258428,0.00001141739,0.000013632918],[0.000015866952,0.000017323928,0.000013063542,0.000018946546,0.000032167383,0.000035819976,0.000031896496,0.00002521522,0.000022823991,0.000021802394,0.000021555832,0.00001990575,0.000020396963,0.000019736895,0.000020565876,0.000019872576,0.000021080896,0.000020720514,0.000021335549,0.000019755273,0.000021166268,0.000020776095,0.000021576956,0.000019853918,0.000020493671,0.000019513116,0.000019895655,0.00001856504,0.00001981469,0.000019570869,0.000020696774,0.000019260806,0.000020250205,0.000019508483,0.000020516924,0.000019379351,0.000021036232,0.000020535597,0.000021658161,0.000019987776,0.000020923251,0.00002012668,0.00002075362,0.000018961315,0.000019985164,0.000019670957,0.000020637137,0.000019422905,0.000020365766,0.000019768919,0.0000206418,0.000018906767,0.000020086623,0.00001973458,0.00002099012,0.000019539893,0.000020609757,0.000019967465,0.000020604315,0.000018659663,0.000019811307,0.000019618408,0.000020680853,0.000019254763,0.000020262163,0.000019632633,0.000020556072,0.00001882293,0.000020100248,0.000019704452,0.000020857746,0.000019345596,0.00002047312,0.000019804846,0.000020496545,0.00001852341,0.00001971103,0.00001950904,0.000020593217,0.00001914735,0.000020213603,0.000019573632,0.000020500944,0.000018831153,0.000020145806,0.000019733601,0.000020919,0.000019376745,0.000020511094,0.000019861305,0.000020549644,0.000018551287,0.000019722236,0.000019520765,0.000020598223,0.000019162,0.000020215455,0.00001954636,0.000020459616,0.000018807033,0.000020107438,0.000019687172,0.000020894258,0.000019373327,0.000020509784,0.000019809322,0.000020519174,0.000018528055,0.000019708981,0.000019518568,0.000020596948,0.00001915862,0.000020205509,0.000019534267,0.000020454563,0.000018813957,0.0000201055,0.00001968736,0.000020896987,0.000019388555,0.000020529018,0.000019832327,0.00002053266,0.000018545805,0.00001972931,0.000019537527,0.000020614121,0.00001917776,0.000020217632,0.000019543042,0.000020463303,0.00001883647,0.00002012904,0.00001970278,0.000020920976,0.0000194023,0.000020530839,0.000019807321,0.000020525162,0.00001853479,0.000019718835,0.000019537303,0.000020612588,0.00001917765,0.00002022639,0.000019544235,0.000020452318,0.000018821367,0.00002012123,0.000019699417,0.000020918642,0.000019403577,0.000020542864,0.000019822759,0.000020540181,0.00001855718,0.000019750622,0.000019568834,0.000020655762,0.000019222052,0.000020273916,0.000019615358,0.000020516043,0.000018850127,0.00002012933,0.000019723084,0.000020930136,0.000019416755,0.000020530877,0.000019865927,0.000020556996,0.00001857664,0.000019740377,0.00001956042,0.000020643769,0.000019201569,0.000020259053,0.000019644918,0.000020555779,0.000018856528,0.00002014087,0.000019704134,0.000020937821,0.000019529256,0.000020664214,0.00001997017,0.000020497093,0.000018486808,0.000019472609,0.00001929997,0.000020252563,0.000018850793,0.000019894118,0.000019335896,0.000020303034,0.000018501853,0.000019886947,0.000019528083,0.00002117176,0.000019563051,0.000020699972,0.000019999216,0.000020717254,0.000019295057,0.000020436177,0.000020241614,0.000021074122,0.000019941832,0.000020539297,0.000019850359,0.0000203647,0.000019333038,0.000020399862,0.000020207513,0.000021435011,0.000020567386,0.000021465943,0.0000209551,0.000021382419,0.00002022801,0.000020807958,0.000020736643,0.000021458533,0.00002036,0.000020863912,0.000020155414,0.000020544392,0.00001912215,0.000020149822,0.000019645011,0.000020994024,0.000019721052,0.000020806252,0.000019948415,0.000020434443,0.000019106164,0.000019829225,0.000019843072,0.000020977333,0.000019590905,0.000019495184,0.000018785933,0.000019517693,0.000018942572,0.00001978778,0.000020227797,0.000020861306,0.000020788184,0.000020952662,0.000021476671,0.000024764577,0.000024744937,0.000024241936,0.000016122152,0.0000110145575,0.000013169038],[0.00001583015,0.000017944425,0.00001577904,0.000022099099,0.00003199703,0.00003125516,0.000027027152,0.000023681492,0.000021103906,0.000020803753,0.000019556504,0.000019915664,0.000019059049,0.000019695679,0.000018942428,0.000019943964,0.00001975094,0.000020814428,0.000019543844,0.000019699793,0.000019601372,0.000020640855,0.00001961822,0.000019723104,0.000018834367,0.000019439452,0.000018513361,0.00001854667,0.000018222589,0.000019334253,0.000018548122,0.000019108425,0.000018565588,0.000019721823,0.000018889375,0.000019558798,0.000019384508,0.00002073449,0.000019598736,0.000020009404,0.000019276187,0.000020246287,0.000019002335,0.000018882512,0.00001865146,0.000019602137,0.000018972367,0.00001932067,0.000018833955,0.000019938278,0.000018961477,0.000018962364,0.000018841034,0.000019732659,0.000019175912,0.000019340561,0.000018947721,0.000019841294,0.000018877508,0.000018641966,0.000018586652,0.000019602492,0.000018863975,0.000019134355,0.00001862251,0.000019676248,0.000018755592,0.000018881738,0.000018800883,0.000019747851,0.000018984872,0.000019161507,0.000018790486,0.000019700827,0.000018721836,0.000018466897,0.000018412788,0.00001949076,0.000018729746,0.000019035997,0.000018560171,0.00001967242,0.000018729193,0.000018870649,0.000018800309,0.00001980443,0.000019033057,0.000019194904,0.000018816021,0.000019735746,0.0000187471,0.000018482137,0.000018425557,0.000019498457,0.000018735142,0.00001905358,0.00001856226,0.000019658206,0.000018685485,0.000018827328,0.000018747634,0.000019771745,0.00001900652,0.0000192008,0.000018817294,0.000019728332,0.000018725694,0.000018475177,0.000018420586,0.000019505878,0.000018734945,0.000019058958,0.000018564951,0.000019660829,0.000018691206,0.000018832248,0.000018748047,0.000019772575,0.00001901428,0.000019208712,0.000018838067,0.000019750281,0.000018744076,0.000018490458,0.00001844444,0.00001953015,0.000018754608,0.00001907416,0.000018579653,0.000019659668,0.000018691544,0.000018839884,0.000018760244,0.000019782608,0.000019021825,0.000019222492,0.000018829107,0.000019737874,0.000018731873,0.000018480463,0.000018423081,0.000019514307,0.000018745668,0.000019075396,0.000018580822,0.00001967152,0.00001868707,0.000018826808,0.000018748582,0.00001978346,0.000019028339,0.000019221961,0.000018839326,0.000019748737,0.000018746205,0.000018494884,0.000018450579,0.000019540807,0.000018790217,0.000019118741,0.000018638448,0.000019728257,0.00001875502,0.000018871351,0.000018792816,0.000019798406,0.000019069485,0.000019238045,0.000018861816,0.000019755746,0.000018767472,0.000018503477,0.000018453711,0.000019522124,0.000018786202,0.000019085313,0.000018605166,0.000019710147,0.000018754985,0.000018871946,0.000018814675,0.000019808,0.000019113199,0.000019349563,0.000019002027,0.000019885905,0.000018758581,0.000018415018,0.000018266644,0.00001927753,0.000018460594,0.0000187345,0.000018228899,0.000019432391,0.000018465173,0.00001862679,0.000018506034,0.000019856456,0.000019094634,0.00001965513,0.000019031713,0.000020142963,0.000019072104,0.000019280582,0.000019128462,0.000020492696,0.000019451636,0.000020095418,0.000019394492,0.000020294128,0.000019148027,0.0000196694,0.000019614647,0.000020704041,0.000020056974,0.000020869824,0.000020395426,0.000021222235,0.000019991836,0.000020026278,0.000019497676,0.000020422598,0.00001964651,0.000019990386,0.000019238558,0.000019965448,0.000018990142,0.000019061521,0.00001869222,0.000019631454,0.000019120565,0.000019690138,0.000019259522,0.000019974932,0.00001908464,0.000019123154,0.000018555324,0.000019585994,0.00001894326,0.000019232284,0.000018369852,0.000018846335,0.000019002317,0.000019611281,0.000019702122,0.000021022195,0.000020777301,0.00002168267,0.000021152728,0.000022417216,0.00002364976,0.000027085674,0.000024586607,0.000016556161,0.000010394225,0.000013365974],[0.000016162838,0.000017797856,0.000014612685,0.000024331872,0.000029981422,0.000029686556,0.000026440594,0.00002344646,0.000021743279,0.000021137826,0.000020952863,0.000020293994,0.000020919839,0.000019999845,0.000020319228,0.000019923033,0.00002100488,0.000020735497,0.000020872272,0.000019986861,0.000020999252,0.00002118616,0.00002106725,0.000019957737,0.000020437014,0.000020267476,0.000020559934,0.000019425332,0.000019982228,0.000020008545,0.000020202042,0.00001926891,0.000020353806,0.000020202002,0.00002098734,0.000020138526,0.000021239546,0.000021085098,0.000021345359,0.000020298872,0.00002110741,0.000020819352,0.000021087611,0.000019704265,0.000020320098,0.000020450856,0.000020508609,0.000019712723,0.00002060229,0.000020529567,0.000020961896,0.000019775498,0.00002062356,0.000020606201,0.00002081407,0.000019852272,0.000020574273,0.000020510566,0.00002101143,0.000019629411,0.00002041839,0.000020443329,0.000020547606,0.000019540415,0.000020305377,0.000020183998,0.00002073767,0.000019666306,0.000020629088,0.00002052019,0.000020717016,0.000019680527,0.00002044411,0.000020356621,0.000020811134,0.000019458352,0.000020299762,0.000020313782,0.00002045587,0.000019398878,0.000020291787,0.000020188656,0.000020714073,0.000019636564,0.000020652846,0.000020577,0.000020795123,0.000019713625,0.000020476225,0.000020380085,0.000020835974,0.000019456293,0.000020304371,0.000020328685,0.000020467869,0.00001940402,0.00002031295,0.000020175703,0.000020664964,0.000019587655,0.000020595573,0.000020531563,0.000020777301,0.000019713043,0.000020489704,0.000020374198,0.000020833353,0.000019455754,0.000020310761,0.000020336867,0.000020477126,0.000019401412,0.000020322173,0.000020179186,0.0000206652,0.000019590309,0.000020596694,0.000020535363,0.000020783209,0.00001973057,0.000020512522,0.000020408443,0.000020859237,0.000019482806,0.000020334523,0.000020353787,0.000020470992,0.000019414274,0.000020323063,0.000020187925,0.000020665278,0.000019593877,0.000020608186,0.00002053732,0.000020785072,0.000019726715,0.000020516885,0.000020386771,0.000020847843,0.000019457666,0.000020308069,0.000020338788,0.000020485426,0.000019412202,0.000020344221,0.00002018879,0.000020661435,0.000019581808,0.00002060506,0.000020541316,0.000020798614,0.00001973458,0.000020527785,0.000020402042,0.000020862739,0.000019480447,0.000020329055,0.00002036732,0.000020512618,0.000019461304,0.000020377172,0.000020245261,0.000020732767,0.000019638963,0.000020636111,0.000020585558,0.000020824296,0.00001977333,0.000020524145,0.000020420319,0.000020856314,0.000019486077,0.000020322153,0.000020358368,0.00002049592,0.00001946394,0.000020311516,0.000020217363,0.000020712414,0.000019635703,0.000020652353,0.000020602743,0.000020848698,0.000019860736,0.000020623205,0.000020544921,0.00002081681,0.000019403557,0.000020065067,0.000020135703,0.00002019008,0.000019195344,0.000019882244,0.000019921228,0.000020516512,0.000019445033,0.000020496174,0.000020494199,0.000020889995,0.000019797764,0.00002086115,0.000020599147,0.000021164411,0.000019981562,0.000021147585,0.000020920756,0.000021102698,0.000020199748,0.000021075972,0.000020552114,0.000020918762,0.000020271304,0.000021487058,0.000021306614,0.00002158381,0.000021086908,0.000022131513,0.000021901715,0.000021973596,0.00002083866,0.00002118232,0.000021184747,0.00002101556,0.000020180745,0.000020622185,0.000020423025,0.00002058597,0.000019784855,0.000020541926,0.00002037136,0.00002079792,0.000020051275,0.000021096723,0.000020926282,0.000021451247,0.000020354817,0.000020487243,0.000020602743,0.000020181225,0.000019922976,0.000019449652,0.00001990896,0.00002047361,0.000020618527,0.000020942534,0.00002158171,0.000021343447,0.000021682257,0.000021427162,0.000022003878,0.00002475768,0.000025196832,0.000024817393,0.000017197475,0.000010810361,0.000013213938],[0.000015657339,0.000015796792,0.000014761024,0.000021931517,0.000029419045,0.000028484646,0.000023808912,0.00002243317,0.000019764206,0.000020447093,0.000019570049,0.000020517078,0.000019141125,0.000019811438,0.000019061757,0.000019976665,0.000019326106,0.000020628164,0.00001943606,0.000020233545,0.000019682404,0.000020875696,0.000019678744,0.000019757685,0.000019041281,0.00002021906,0.000019593559,0.00001999256,0.000019247771,0.000020027253,0.00001885072,0.000019065776,0.000018482137,0.000019904308,0.000019256968,0.000020269817,0.000019544199,0.000020623971,0.000019534267,0.00001995635,0.000019261724,0.000020467265,0.0000195568,0.000019787214,0.000019073868,0.000019953228,0.000019014662,0.000019494386,0.000018848223,0.000020288673,0.000019320762,0.000019941435,0.000019270838,0.000020229398,0.00001940811,0.000019723328,0.00001921331,0.000020325333,0.000019731944,0.00001978695,0.000019267769,0.000020029525,0.000019122095,0.000019410536,0.000018617928,0.00001999096,0.000019149964,0.000019869583,0.000019254048,0.000020198862,0.000019274017,0.000019576413,0.00001904495,0.000020175588,0.000019510193,0.000019565048,0.000019117337,0.000019882189,0.000018991102,0.00001929202,0.000018574656,0.000020010071,0.000019158693,0.000019870567,0.000019270636,0.000020263768,0.000019333054,0.00001960973,0.000019060193,0.000020184556,0.000019514102,0.00001953965,0.000019089992,0.000019864903,0.000018990666,0.000019310335,0.000018589239,0.000020013525,0.000019126619,0.00001982395,0.000019207391,0.000020205433,0.000019286466,0.000019592158,0.000019044932,0.000020172856,0.000019490091,0.000019535086,0.000019092886,0.000019870322,0.000018982484,0.000019307243,0.000018586456,0.000020020836,0.000019131563,0.000019831212,0.000019206349,0.000020207899,0.00001929388,0.000019607596,0.000019067631,0.00002022093,0.000019547386,0.000019583098,0.000019119616,0.000019874207,0.000018973815,0.000019292296,0.000018587343,0.00002002267,0.000019136598,0.000019836225,0.000019216206,0.000020211311,0.000019287147,0.000019600642,0.000019056977,0.000020190255,0.00001949933,0.000019537563,0.000019087569,0.000019868674,0.000018985942,0.000019320301,0.000018600997,0.00002003304,0.000019134792,0.000019832762,0.000019214098,0.000020213392,0.00001928755,0.000019595802,0.000019060632,0.000020203795,0.000019525662,0.000019572213,0.000019125508,0.000019904917,0.000019027304,0.000019343512,0.000018632616,0.00002006407,0.000019186924,0.000019878624,0.000019272162,0.000020252563,0.000019355028,0.000019653893,0.000019118523,0.00002022664,0.000019562043,0.000019590196,0.000019143134,0.000019905978,0.000019052308,0.000019351797,0.000018612833,0.000020031664,0.000019174231,0.000019865452,0.000019257941,0.000020262298,0.000019479425,0.000019792327,0.000019254287,0.00002038236,0.000019639749,0.00001949723,0.000018965602,0.00001969551,0.000018830058,0.000019056723,0.000018285902,0.000019665405,0.000018797207,0.00001950134,0.000018988314,0.000020115014,0.00001916668,0.000019583304,0.000018907127,0.000020151207,0.000019436024,0.00001979346,0.000019230487,0.00002032543,0.000019365161,0.000019875097,0.000019042662,0.000020303672,0.000019576824,0.000020410604,0.000019827203,0.000020857367,0.000020141792,0.000020732945,0.00002026195,0.000021502081,0.000020872929,0.000021107287,0.000020018259,0.000020807582,0.000019848561,0.000020078465,0.000019048564,0.000020173393,0.00001943669,0.000020182324,0.000019414127,0.000020294246,0.000019601184,0.000019884104,0.000019495352,0.000020678546,0.000020555268,0.000021162514,0.000020314033,0.000021006841,0.000019790006,0.000019760078,0.000018862534,0.000019618352,0.000020318259,0.000020527119,0.000020355632,0.000020978194,0.000020962536,0.000021794287,0.000021000193,0.000021565991,0.000023023365,0.000025665915,0.00002407153,0.000016496304,0.000010625098,0.000013445967],[0.000015776843,0.000014382366,0.0000139440235,0.000020572214,0.000031638352,0.000030640214,0.000027216976,0.000022931967,0.000021269829,0.000020906973,0.00002116742,0.000020105,0.00002053969,0.000019561596,0.000019938012,0.000019098185,0.000020375208,0.00002007611,0.00002129126,0.0000197244,0.000021017022,0.000020701196,0.000020998072,0.000019672909,0.000020285073,0.000019725754,0.000020823561,0.000019699868,0.000020752706,0.000020114976,0.000020442121,0.000018839828,0.000019833235,0.000019363797,0.000020727648,0.000019499888,0.000020935326,0.000020331361,0.000021023596,0.000019726544,0.000020511445,0.000020094478,0.000021127045,0.000019509804,0.000020593057,0.000019968475,0.000020641603,0.00001924107,0.000020163663,0.000019833593,0.000020942953,0.000019462917,0.000020567053,0.000020099653,0.000020777541,0.000019763282,0.000020474567,0.000020187732,0.000021366865,0.000019716352,0.000020691366,0.000020085532,0.000020745741,0.000019286595,0.00002005573,0.000019662912,0.00002086254,0.00001938606,0.000020525691,0.00002005376,0.000020708523,0.000019597952,0.000020337411,0.00002001402,0.00002112773,0.000019497546,0.000020502135,0.000019939303,0.00002063792,0.00001917902,0.000020031855,0.00001967591,0.00002085009,0.00001938693,0.000020548663,0.00002010602,0.000020769497,0.000019625239,0.000020369205,0.000020043723,0.000021139096,0.000019486986,0.000020468222,0.000019919575,0.000020630228,0.000019186706,0.000020041429,0.000019677393,0.000020813794,0.000019341483,0.000020466114,0.000020040128,0.000020721362,0.000019602941,0.000020345386,0.000020027559,0.000021127164,0.000019474634,0.000020471229,0.000019921417,0.000020630248,0.000019172128,0.000020050395,0.000019680509,0.000020809288,0.000019349214,0.000020465117,0.000020034817,0.000020719861,0.000019622843,0.000020370875,0.000020062655,0.00002117895,0.000019536596,0.00002051117,0.000019926965,0.000020615378,0.000019176607,0.00002004399,0.00001969551,0.000020817803,0.00001935556,0.000020474547,0.000020040128,0.00002071593,0.000019608719,0.000020357262,0.000020042518,0.000021143655,0.000019480058,0.000020470663,0.000019920963,0.000020635542,0.000019177265,0.000020065047,0.000019684301,0.000020805595,0.00001934888,0.000020466525,0.000020028972,0.00002071261,0.000019597146,0.000020356543,0.000020049267,0.000021170024,0.000019511886,0.000020517038,0.00001996341,0.000020672,0.000019204479,0.000020071497,0.00001971603,0.00002087259,0.000019416662,0.000020547977,0.00002010299,0.000020783109,0.000019668987,0.000020413192,0.000020091988,0.000021203725,0.000019555067,0.0000205243,0.000019962326,0.000020676396,0.000019240244,0.000020057872,0.000019692505,0.00002085532,0.000019382345,0.000020505498,0.000020073257,0.000020845615,0.00001983316,0.000020535106,0.000020194357,0.000021206595,0.000019548559,0.000020294652,0.000019729197,0.000020323412,0.000018951372,0.000019688974,0.000019212559,0.000020432688,0.00001885856,0.000020158106,0.000019747928,0.00002060402,0.000019324687,0.000020277608,0.000019797802,0.000021172285,0.000019492154,0.000020589643,0.000019985182,0.000020683714,0.000019365569,0.000020261507,0.000019770425,0.00002082777,0.000019717741,0.000020808377,0.000020368894,0.000021143693,0.000020506008,0.000021254236,0.000021095215,0.000022707925,0.00002110723,0.000021481525,0.000020691743,0.00002121238,0.000019949022,0.000020261255,0.000019708494,0.000020714171,0.000019548057,0.000020462405,0.000019895959,0.000020575253,0.000019825595,0.000020482008,0.00002044639,0.000022089805,0.000021021031,0.00002171899,0.000021156136,0.000021158035,0.000019820509,0.000019557361,0.000019445739,0.000020408248,0.000020037454,0.000020646328,0.000020201964,0.000020560581,0.000020450272,0.000020009384,0.00002036328,0.000022876442,0.000024012215,0.000025787751,0.00001655744,0.000011070824,0.000012911767],[0.000016376143,0.000013935741,0.000014533399,0.000020802067,0.000032862048,0.000030795796,0.000025117182,0.00002226673,0.000019662762,0.000020159145,0.000019079891,0.00001980766,0.00001898013,0.000019472907,0.000018335093,0.000018999797,0.000018729872,0.0000201484,0.000019116662,0.000019688337,0.00001956891,0.00002079302,0.000019617604,0.000019855812,0.000018804432,0.000019686628,0.000018861707,0.000019219211,0.000019027015,0.00001973582,0.00001870829,0.00001879269,0.000018144468,0.000019459763,0.000018798139,0.000019557529,0.000019421701,0.000020544077,0.000019371499,0.000019722744,0.000018954644,0.000020022802,0.000019113071,0.000019227113,0.000019060357,0.000019756291,0.00001888815,0.000019196184,0.000018726836,0.000020120673,0.00001913722,0.000019704583,0.000019408166,0.000020454407,0.000019543415,0.00001999586,0.000019411385,0.00002037653,0.000019549698,0.000019529349,0.00001943999,0.000019973046,0.000019071213,0.000019306486,0.000018778108,0.000020028932,0.000019090556,0.000019620205,0.000019387095,0.000020446996,0.000019450912,0.000019873392,0.000019277602,0.000020275307,0.000019379777,0.00001936254,0.000019274643,0.000019876064,0.000018959345,0.00001921309,0.00001874111,0.000020022611,0.000019093724,0.000019646923,0.000019430427,0.000020502019,0.000019491226,0.00001988454,0.00001929916,0.000020290065,0.000019386764,0.000019337223,0.000019243696,0.000019847294,0.000018942988,0.000019209352,0.000018746061,0.000020023586,0.000019067867,0.000019609412,0.000019382844,0.000020458972,0.000019460877,0.000019874282,0.000019279183,0.000020275249,0.000019372255,0.000019338699,0.000019242483,0.000019854355,0.000018936087,0.00001921232,0.000018752642,0.000020030346,0.000019069757,0.00001962041,0.000019388206,0.000020461215,0.000019455105,0.000019881942,0.000019299732,0.000020297091,0.000019399395,0.000019394012,0.000019291616,0.000019868465,0.00001893533,0.000019213916,0.000018763714,0.00002002775,0.000019069996,0.000019620278,0.000019396379,0.000020466914,0.00001945965,0.000019878338,0.000019285178,0.000020280875,0.000019376579,0.000019339952,0.000019241988,0.000019851344,0.000018936757,0.00001921439,0.000018755216,0.000020028838,0.000019064684,0.000019613208,0.000019386134,0.000020458912,0.000019449817,0.00001986947,0.000019279221,0.000020284166,0.000019391127,0.000019361174,0.000019273926,0.000019886702,0.000018979768,0.000019236575,0.000018762623,0.000020038888,0.000019117118,0.000019670995,0.00001944266,0.000020498463,0.000019522124,0.000019936433,0.000019346242,0.000020313182,0.000019431687,0.00001939329,0.000019299327,0.000019880179,0.000018985489,0.000019245494,0.000018764771,0.000020027195,0.000019086914,0.000019612497,0.000019397285,0.000020455733,0.000019602156,0.00002007814,0.000019493436,0.000020447074,0.000019492638,0.000019353549,0.000019124522,0.000019621795,0.000018690065,0.000018944633,0.000018378018,0.000019601128,0.000018653953,0.00001910591,0.000018890618,0.000020110352,0.000019155223,0.00001954718,0.00001900112,0.00002005246,0.000019196368,0.00001921287,0.000019001138,0.000019755029,0.000018752553,0.00001912609,0.000018806584,0.00001991762,0.000019117464,0.000019723855,0.000019685838,0.00002068539,0.00001998566,0.000020361378,0.000019934512,0.00002091906,0.000020318259,0.000020277164,0.00001978029,0.000020093521,0.000019278834,0.000019374676,0.000018674726,0.000019647934,0.00001893533,0.000019548597,0.00001923986,0.000020313764,0.00001969859,0.000020101743,0.000019415924,0.000020416132,0.000019798274,0.000020431751,0.000020007723,0.000020738027,0.00001999729,0.000019769823,0.00001874574,0.000019267769,0.000019570534,0.000019896963,0.000020044869,0.000020307525,0.00002040963,0.00002127005,0.000020622125,0.000021365257,0.000021950265,0.000025304616,0.000025308429,0.00001754678,0.000010686089,0.000013411697],[0.000016104925,0.000014116141,0.000012552852,0.000021987264,0.000033324064,0.000032179258,0.000027139531,0.000023385744,0.000021484271,0.000021049636,0.00002065005,0.000020150283,0.000020713322,0.000019954388,0.000020156453,0.000019713438,0.00002052297,0.000020367574,0.000020624662,0.000019807112,0.000021125392,0.00002119198,0.00002121141,0.00002030714,0.000020431227,0.000020224847,0.000020188963,0.000019332098,0.000020047948,0.000020222551,0.000020472322,0.0000194401,0.000019944571,0.000020117719,0.000020764408,0.000019964591,0.00002111792,0.000020825368,0.000021060661,0.000020308786,0.000020654423,0.000020700763,0.000020834348,0.000019843168,0.000020339448,0.000020382418,0.000020525553,0.000019810153,0.000020581318,0.000020803633,0.000021111737,0.000020105885,0.000021098736,0.000020889596,0.000021211856,0.000020583633,0.000021111615,0.000021022573,0.000021098333,0.000020020569,0.000020558582,0.000020531015,0.00002073168,0.000019831345,0.0000206006,0.000020675508,0.000020991823,0.000019920582,0.00002098946,0.000020818,0.000021190162,0.00002039811,0.00002098608,0.000020827056,0.000020916807,0.000019827012,0.000020461664,0.000020466288,0.000020695157,0.000019770936,0.00002056721,0.000020696123,0.000020993686,0.00001996682,0.000021030493,0.00002084158,0.000021218006,0.00002041395,0.000021000653,0.0000208484,0.000020927202,0.00001981947,0.00002043869,0.000020448419,0.00002067825,0.0000197633,0.000020575273,0.000020694013,0.000020965555,0.00001993898,0.000020993106,0.000020821557,0.000021189351,0.000020406205,0.000020981755,0.00002084331,0.000020934667,0.000019822533,0.000020442101,0.000020460846,0.000020685113,0.000019766185,0.00002059406,0.00002069046,0.000020964295,0.000019945293,0.000021003218,0.000020822588,0.000021181615,0.000020413114,0.000020991441,0.000020875117,0.000020959997,0.000019858597,0.000020475856,0.000020490603,0.000020691072,0.000019774896,0.000020592332,0.000020703723,0.000020960599,0.000019949157,0.000021006043,0.000020832062,0.00002119006,0.000020412532,0.000020982416,0.00002084333,0.000020936244,0.000019826331,0.000020443915,0.000020462192,0.000020683121,0.000019762716,0.000020600895,0.000020685726,0.000020955362,0.000019932137,0.000020997268,0.00002082231,0.000021183372,0.000020405389,0.000020981035,0.000020842079,0.00002094551,0.000019840878,0.000020458308,0.000020489177,0.000020714526,0.00001979516,0.00002060121,0.000020696716,0.000020983538,0.000019972018,0.000021033004,0.000020843609,0.000021229665,0.000020460904,0.000021030695,0.000020872949,0.000020944852,0.000019854468,0.000020460298,0.000020478785,0.000020694979,0.000019782308,0.000020565583,0.000020686948,0.000020958838,0.000019933903,0.000020983198,0.000020834446,0.000021249312,0.00002055772,0.000021144055,0.000020980175,0.000020909527,0.000019795461,0.000020236517,0.000020248679,0.000020381738,0.000019491987,0.000020153166,0.000020205838,0.000020563719,0.000019453768,0.00002052931,0.000020527845,0.00002099723,0.000020135798,0.000020832242,0.000020612295,0.000020821297,0.00001970186,0.00002046067,0.000020380066,0.000020546215,0.000019790856,0.000020641328,0.000020467889,0.000020681167,0.000019913916,0.000021058231,0.000020958678,0.000021205586,0.00002095438,0.000021380258,0.00002137249,0.000021303162,0.000020475485,0.00002066845,0.000020718222,0.000020742478,0.000019940635,0.000020243235,0.00002045273,0.000020468768,0.000019658637,0.000020685882,0.000020647076,0.000021123538,0.000020518019,0.000020860947,0.000020490057,0.00002066108,0.00001984824,0.000020214955,0.000020725593,0.000020607811,0.000019918949,0.000019015115,0.000019253497,0.000019119816,0.000019744726,0.00001971291,0.000020563819,0.00002081947,0.000021236467,0.000021027005,0.000021552154,0.000023199753,0.000024073757,0.000025368043,0.000018259014,0.000010984976,0.000013321968],[0.000015751752,0.000014404521,0.000012689778,0.00001891656,0.000030405838,0.000032202406,0.000026313539,0.000024008852,0.000020742893,0.0000209867,0.000019495184,0.000020064186,0.000018849587,0.000019649453,0.000019122679,0.00002009492,0.000019341021,0.00002042694,0.000019180265,0.00001982652,0.00001944813,0.000020945332,0.000019713869,0.000020530937,0.000019087207,0.000020298465,0.000018979714,0.000019398285,0.000018971354,0.000020293335,0.00001946754,0.000020000512,0.00001864634,0.000019964249,0.000019148594,0.00001997017,0.000019510046,0.000020784377,0.000019764375,0.000020525162,0.000019278725,0.000020557269,0.000019414256,0.000019756291,0.000019024292,0.00002000425,0.000019264224,0.000019861114,0.000018966486,0.000020345735,0.00001922759,0.00001986945,0.000019246247,0.000020497346,0.000019640684,0.000020618663,0.000019607036,0.000020982978,0.000019490462,0.000019758965,0.000019095272,0.000020106767,0.000019206567,0.00001977182,0.000018925635,0.000020338439,0.000019090374,0.000019655337,0.000019040319,0.00002039632,0.000019442863,0.000020393229,0.00001934316,0.000020716483,0.000019180303,0.000019524396,0.000018958857,0.000020079116,0.000019141053,0.000019708004,0.000018882658,0.000020333999,0.000019109044,0.000019713138,0.000019095909,0.000020443389,0.000019479128,0.000020426649,0.000019374878,0.000020746693,0.000019204663,0.000019530895,0.000018950197,0.000020047852,0.000019119216,0.000019678557,0.00001887477,0.000020313028,0.000019085204,0.000019681522,0.000019070048,0.000020421428,0.000019468876,0.000020400172,0.00001935353,0.000020727412,0.000019194482,0.000019525643,0.000018947234,0.000020058982,0.000019113892,0.000019680283,0.000018868597,0.000020304795,0.000019079434,0.000019680603,0.000019074996,0.000020429006,0.00001947391,0.00002041033,0.000019367766,0.00002076322,0.000019233568,0.000019557587,0.00001897823,0.000020095993,0.000019141034,0.000019694384,0.000018879919,0.000020320875,0.000019083238,0.000019685333,0.000019082492,0.000020434949,0.000019480967,0.000020412006,0.000019353569,0.000020727093,0.00001919494,0.000019529833,0.000018946239,0.000020059919,0.00001911001,0.000019676267,0.000018864388,0.000020301717,0.000019069412,0.000019670131,0.000019068557,0.000020430252,0.000019467188,0.00002040385,0.000019344325,0.00002072322,0.000019190897,0.000019544274,0.000018953722,0.000020082754,0.000019146823,0.00001972094,0.00001888743,0.000020343037,0.000019117575,0.000019720319,0.000019116389,0.000020466876,0.00001950467,0.000020458814,0.000019409888,0.00002079318,0.000019250469,0.000019579868,0.000018982122,0.000020092486,0.000019157469,0.000019717592,0.0000188915,0.000020334153,0.000019098623,0.000019686215,0.000019089153,0.000020458758,0.000019587058,0.000020589838,0.000019563462,0.00002099785,0.00001930785,0.000019541869,0.000018878083,0.000019979789,0.000019014098,0.00001949262,0.000018652743,0.000020019099,0.00001872955,0.000019211166,0.00001872914,0.000020136778,0.000019329884,0.000020244566,0.000019203546,0.000020540534,0.000019107896,0.000019602156,0.000018964643,0.000020262858,0.000019240153,0.000019931851,0.000019057812,0.000020332485,0.000019197705,0.00001969844,0.000019198933,0.000020482808,0.000020041754,0.00002112362,0.000020146037,0.000021399412,0.000019888332,0.000020224132,0.000019438081,0.000020519878,0.000019911315,0.00002023617,0.000019062649,0.000020281805,0.00001919388,0.000019692448,0.000019046749,0.0000204618,0.00001991158,0.00002091938,0.000019543453,0.00002068121,0.000019104033,0.000019848978,0.000018949764,0.000020535814,0.000019958747,0.000020381427,0.000018601653,0.000019230138,0.000018961586,0.000019265657,0.000019143115,0.000019970952,0.000020634872,0.000021625221,0.000021427328,0.000022197335,0.000023619941,0.000025229196,0.000024057532,0.000016542148,0.000011067278,0.000013455743],[0.000015640475,0.000014187236,0.000011573088,0.000017156359,0.00003024891,0.000034995777,0.000030748608,0.000025312147,0.000022791344,0.000021917174,0.000021463627,0.000019837358,0.000020348663,0.000019613637,0.00002048316,0.00001956667,0.000020873646,0.00002045193,0.000021078464,0.000019384377,0.000020845775,0.000020513344,0.000021523809,0.000019969295,0.00002067338,0.00001978829,0.000020325351,0.00001927672,0.000020485171,0.00002041,0.000021516771,0.000020013296,0.000020518803,0.000019749454,0.000020608913,0.000019537696,0.000021121625,0.000020726284,0.000021912556,0.00002033648,0.000021037557,0.000020488162,0.000021165904,0.00001970184,0.000020530624,0.000020283816,0.000021170466,0.000019860832,0.000020497562,0.000019874473,0.000020628477,0.000019206496,0.000020557269,0.000020179898,0.000021322185,0.000020114112,0.000021122412,0.00002053973,0.000021009186,0.000019466166,0.000020406807,0.000020155452,0.000020738185,0.0000194769,0.000020242484,0.000019737176,0.000020370875,0.000018823324,0.000020244452,0.000019904479,0.00002105773,0.000019799765,0.000020826223,0.00002014642,0.000020613079,0.00001917211,0.000020249607,0.000020088348,0.0000207025,0.000019417515,0.000020241769,0.000019710373,0.000020386986,0.000018900384,0.000020314132,0.00001994246,0.000021102358,0.000019845967,0.000020894797,0.000020212081,0.000020658363,0.000019202556,0.000020246944,0.000020072624,0.000020655012,0.0000193841,0.000020208805,0.000019680752,0.000020356487,0.000018869048,0.000020275365,0.000019927993,0.000021082382,0.000019835865,0.000020849096,0.000020172778,0.000020643236,0.000019197594,0.000020255306,0.000020076875,0.000020658696,0.000019382418,0.000020213836,0.000019658766,0.000020337684,0.000018864082,0.000020283198,0.000019938943,0.000021095093,0.00001984328,0.000020863696,0.00002020601,0.00002068896,0.000019235695,0.000020282927,0.00002010414,0.000020685331,0.000019402429,0.000020219562,0.00001967454,0.000020345715,0.000018873601,0.000020284764,0.00001993917,0.00002108544,0.000019843697,0.000020851918,0.000020174357,0.000020645934,0.00001920404,0.00002026081,0.000020082354,0.000020658026,0.00001938194,0.000020218637,0.000019655843,0.000020329113,0.000018850811,0.000020272058,0.000019936033,0.00002108381,0.000019835315,0.00002084675,0.000020169431,0.000020641366,0.000019216626,0.000020280046,0.000020101437,0.000020701867,0.000019430316,0.000020253876,0.000019694438,0.000020385509,0.000018915223,0.000020332523,0.000019986652,0.000021141797,0.000019895464,0.000020936444,0.000020265894,0.000020735575,0.000019271169,0.000020301311,0.000020122861,0.00002070329,0.000019425626,0.000020232987,0.000019708494,0.000020359106,0.000018878227,0.000020289408,0.000019971141,0.000021202713,0.000020011368,0.00002109946,0.000020444071,0.000020814805,0.000019257208,0.000020145882,0.000019989986,0.000020454348,0.000019220915,0.000019920943,0.000019437692,0.000019999901,0.000018414825,0.0000199056,0.000019757572,0.000021081098,0.000019738362,0.00002079816,0.000020126756,0.000020643729,0.000019428628,0.000020532034,0.000020321824,0.000020957217,0.000019846366,0.000020525787,0.000019888881,0.000020244026,0.00001921626,0.000020277781,0.000020246074,0.000021484886,0.000020848282,0.00002164955,0.000021271046,0.000021595832,0.000020491778,0.000020917483,0.000020896849,0.000021555792,0.000020440446,0.000020572368,0.000019830248,0.000020306461,0.000018985453,0.000020068357,0.000019792253,0.000021116328,0.000020445279,0.000021023696,0.000020249452,0.000020440271,0.000019667075,0.000020167316,0.000020642332,0.000021515498,0.000020460378,0.00001991536,0.000019235586,0.000019621513,0.000018908298,0.000019492842,0.00001990372,0.000020657475,0.000020720712,0.000020902451,0.000021463464,0.000024762783,0.00002437172,0.000023564617,0.000015797455,0.000010760158,0.0000128725105],[0.000015833124,0.000013416148,0.0000117959435,0.000016106216,0.000029766046,0.000032971602,0.000027870574,0.000024273166,0.000021494148,0.000020826421,0.00001939466,0.000019359031,0.00001870276,0.000019115496,0.000018510465,0.000019182587,0.00001928871,0.000020216148,0.000019012285,0.000019158218,0.000019103813,0.000020379019,0.000019417126,0.000019955683,0.000019051562,0.000019948586,0.000018772664,0.00001929673,0.000018902998,0.000020230498,0.000019485837,0.000019927042,0.00001926064,0.000020044947,0.000019133515,0.000019699717,0.00001955902,0.00002074321,0.000019921514,0.0000202447,0.00001980175,0.000020754527,0.00001966533,0.000019823043,0.000019339748,0.00002009536,0.000019452787,0.000019594027,0.000019226727,0.000020016463,0.00001891225,0.000019264902,0.00001916721,0.000020433994,0.000019648889,0.000020400095,0.000019900532,0.000021037054,0.000019527206,0.000019698628,0.00001938375,0.000020334735,0.000019200123,0.00001936339,0.000018932586,0.000019918209,0.000018661249,0.000018968822,0.000018929064,0.000020371399,0.00001938279,0.000020198304,0.000019556765,0.000020716207,0.000019154439,0.000019479185,0.000019232706,0.000020350275,0.000019143718,0.000019387558,0.000018930672,0.000019960022,0.00001871714,0.000019070867,0.000018999925,0.000020429065,0.000019427165,0.00002025285,0.00001962288,0.000020770509,0.00001918945,0.000019486077,0.000019237898,0.000020321184,0.000019118084,0.000019350173,0.000018896259,0.000019914143,0.000018680887,0.000019034436,0.00001899016,0.000020423882,0.000019422701,0.000020231599,0.00001959229,0.00002073447,0.000019173445,0.00001948132,0.00001924074,0.000020327736,0.000019111249,0.000019347828,0.000018889248,0.000019899753,0.000018660234,0.000019020246,0.000018982519,0.000020422578,0.000019420275,0.000020228144,0.000019602325,0.00002075732,0.000019207704,0.000019505487,0.00001925493,0.0000203378,0.000019134355,0.000019364756,0.000018899627,0.000019909909,0.00001867182,0.000019030316,0.000018992316,0.00002042811,0.000019421552,0.000020233507,0.000019598174,0.000020738127,0.00001917337,0.00001948342,0.000019240337,0.000020334794,0.000019115096,0.000019355837,0.00001888959,0.000019902998,0.000018652405,0.000019020774,0.00001898462,0.000020434209,0.000019418496,0.00002024142,0.000019596437,0.000020744616,0.00001917617,0.00001950558,0.000019251864,0.000020361264,0.000019145727,0.000019401856,0.000018926467,0.000019945846,0.000018707504,0.000019080346,0.000019035653,0.000020498284,0.000019499164,0.000020317057,0.000019655414,0.000020822528,0.000019258474,0.000019558853,0.000019290088,0.000020378784,0.000019167046,0.000019389647,0.000018926918,0.000019949537,0.000018698658,0.000019050382,0.00001901954,0.000020484214,0.000019575778,0.000020434383,0.000019811156,0.000021007525,0.000019342406,0.000019514362,0.000019167557,0.00002017072,0.000018963123,0.00001907385,0.00001863713,0.000019625388,0.000018465365,0.000018694986,0.00001874803,0.00002028879,0.000019436635,0.000020117508,0.000019581286,0.000020654934,0.000019269019,0.000019689161,0.00001953179,0.000020612451,0.000019429297,0.000019772782,0.00001937111,0.00002015899,0.000019050363,0.00001940537,0.000019487063,0.000020732334,0.000020223304,0.000021194728,0.000020895772,0.000021775464,0.000020363748,0.00002038306,0.000019844076,0.000020506908,0.000019793422,0.000019718495,0.000019137968,0.00001962462,0.000018707184,0.000019089355,0.000018900275,0.000020459478,0.000019915853,0.000021356844,0.000020340147,0.000021184222,0.000019609111,0.000020392024,0.000019538962,0.000020833353,0.000020015606,0.000020327832,0.000019283927,0.000019462677,0.000019767222,0.000019799067,0.000019826804,0.000020678664,0.00002062769,0.000021399655,0.000020774152,0.000022076916,0.00002350922,0.000026367068,0.000024492016,0.000016614445,0.000010276511,0.000013086971],[0.000015479873,0.000012928203,0.000010053451,0.00001597201,0.000027620903,0.000034043154,0.000028271124,0.000024856998,0.000022373924,0.000021483964,0.000020634794,0.000019937497,0.000020305202,0.00001991458,0.000020106076,0.00001970246,0.000020599835,0.00002060744,0.000020490115,0.000019613788,0.000020763813,0.00002088322,0.000021016922,0.000019969673,0.000020773221,0.000020438241,0.000020730515,0.000019722764,0.000020357515,0.000020564172,0.00002070787,0.000019943316,0.000020658854,0.000020592724,0.000021095135,0.000020249723,0.000021240498,0.000021138148,0.000021306942,0.000020370584,0.000021258393,0.000021206495,0.000021710459,0.000020519426,0.000020808196,0.000020691685,0.000020490603,0.000019803525,0.000020515612,0.000020628358,0.000021014497,0.000019807925,0.000020848021,0.00002089643,0.000021183636,0.000020319672,0.000021461969,0.000021158236,0.000021496322,0.000020012838,0.000020826777,0.000020785727,0.000020625173,0.000019501042,0.00002025799,0.00002032601,0.000020716265,0.000019397232,0.000020798396,0.000020731979,0.000021171214,0.000020085397,0.00002125365,0.000020763042,0.000021162696,0.00001980175,0.00002081419,0.00002079094,0.000020683652,0.000019492414,0.000020317502,0.000020349516,0.000020773477,0.000019485278,0.000020860967,0.00002075623,0.00002121487,0.000020132304,0.000021306229,0.00002080153,0.000021191434,0.000019808775,0.000020799944,0.00002077433,0.000020648888,0.00001946041,0.000020295232,0.000020306345,0.000020724603,0.000019470419,0.00002085373,0.00002074228,0.000021182806,0.00002010713,0.000021270154,0.00002077025,0.000021165964,0.000019796029,0.000020798097,0.000020770349,0.0000206356,0.00001944509,0.000020288866,0.000020298232,0.000020716918,0.000019474466,0.000020847405,0.000020741805,0.0000211718,0.000020101206,0.00002128056,0.00002079318,0.000021187736,0.000019823912,0.000020803494,0.000020778056,0.000020648296,0.00001946316,0.000020299336,0.000020298678,0.00002071674,0.00001947179,0.00002085492,0.000020747424,0.000021178686,0.000020107995,0.000021284173,0.000020775184,0.000021166268,0.000019800804,0.000020803076,0.000020775777,0.00002064686,0.000019456904,0.000020304195,0.00002028879,0.000020701513,0.00001946548,0.000020851561,0.000020739411,0.000021181795,0.00002011509,0.00002129845,0.000020779838,0.000021179674,0.000019826937,0.000020827929,0.00002080782,0.000020679472,0.000019490984,0.000020342337,0.000020335472,0.000020765714,0.000019514102,0.000020896809,0.000020806488,0.000021267111,0.000020182959,0.000021340291,0.000020832997,0.000021244954,0.000019870738,0.000020834945,0.000020817366,0.0000206817,0.000019492323,0.00002030077,0.00002033584,0.000020739986,0.000019485464,0.000020883002,0.000020795063,0.000021295362,0.000020288577,0.000021441534,0.000021013235,0.000021293472,0.000019797915,0.000020573232,0.00002056225,0.000020289155,0.000019186504,0.000019797972,0.00001996918,0.000020398713,0.000019219506,0.00002051841,0.000020686573,0.000021183594,0.000020022935,0.000021248075,0.000020805082,0.000021189251,0.00002010297,0.00002137565,0.000021050239,0.000020993304,0.000019926701,0.000020882168,0.00002052244,0.000020885413,0.000020153991,0.000021361853,0.000021258858,0.000021586937,0.000021179514,0.000022428165,0.000022148995,0.000022075023,0.000021087068,0.000021304055,0.000021319867,0.000020756766,0.00002001339,0.00002017757,0.000020305937,0.000020403908,0.000019640798,0.000020861107,0.000020780355,0.000021617838,0.000021027347,0.000022184513,0.000021259892,0.000021481177,0.000020775025,0.0000211862,0.000021202472,0.000020798117,0.000020420008,0.000019846933,0.000020172894,0.000020620768,0.00002078626,0.000020714686,0.000021313037,0.000020990923,0.000021256365,0.000021154201,0.000021445992,0.000024080347,0.000024715175,0.00002534485,0.000017490494,0.000010797987,0.000013014139],[0.000014938838,0.000011963614,0.000010393372,0.000013809411,0.000025343594,0.00003321749,0.000026294301,0.000024073253,0.00002107151,0.000020922891,0.000019670564,0.000019987776,0.00001897396,0.000019445162,0.000019215691,0.00001981433,0.00001956402,0.000020537478,0.000019403427,0.000019885829,0.000019496021,0.000020600188,0.000019369743,0.000019615432,0.000018815661,0.000020126738,0.000019073177,0.00001986746,0.000019070521,0.000020312524,0.000018985887,0.000019407054,0.000018782639,0.0000201372,0.000019331377,0.000020200441,0.000019690759,0.000020670817,0.000019403373,0.000019750281,0.00001919097,0.000020606003,0.000019762565,0.000020199268,0.000019489087,0.000020012438,0.000018805345,0.000019050854,0.00001864481,0.000020029966,0.000019108606,0.000019668443,0.000019224251,0.000020270936,0.000019070612,0.000019683886,0.00001914936,0.000020582162,0.00001932592,0.000019698948,0.000019169258,0.000020100286,0.00001873114,0.000018838517,0.000018316849,0.000019675366,0.000018664932,0.000019213769,0.000018951841,0.000020146708,0.000018892022,0.000019508054,0.00001880081,0.000020234897,0.000018953126,0.000019464105,0.000019027775,0.000020099116,0.000018689636,0.00001884389,0.000018290943,0.000019724983,0.000018690029,0.000019307206,0.00001899679,0.000020204894,0.00001894232,0.000019575498,0.000018849552,0.000020281494,0.000018987645,0.000019471774,0.00001901002,0.000020060224,0.000018670611,0.000018833882,0.00001828695,0.000019695528,0.000018660126,0.00001926325,0.000018965837,0.000020161164,0.000018908371,0.000019533503,0.000018814244,0.00002024924,0.00001896307,0.00001943406,0.000018988041,0.000020037052,0.000018642873,0.000018803428,0.000018275496,0.000019696994,0.000018674262,0.000019282952,0.000018977487,0.000020162797,0.000018903846,0.000019528417,0.000018824743,0.000020263149,0.00001898558,0.000019466146,0.0000190178,0.000020062158,0.000018666979,0.000018823988,0.000018280272,0.000019685145,0.000018664185,0.000019273944,0.000018974755,0.000020159163,0.000018910247,0.00001953829,0.000018818928,0.000020245301,0.000018955781,0.000019432964,0.000018993293,0.000020044125,0.000018653509,0.0000188225,0.000018275112,0.0000196767,0.000018641147,0.00001925335,0.000018958928,0.00002015332,0.000018897483,0.000019535551,0.000018810279,0.000020248719,0.00001896542,0.000019471532,0.000019018325,0.000020081356,0.000018673407,0.000018843764,0.000018294502,0.000019730758,0.00001871591,0.000019334162,0.000019009349,0.000020225907,0.000018970377,0.00001960242,0.000018879955,0.000020324014,0.000019032657,0.000019526686,0.000019047638,0.000020094325,0.000018691597,0.000018844177,0.00001829096,0.000019721618,0.000018685074,0.000019304076,0.000018991554,0.00002021054,0.000019020756,0.000019705016,0.000019026978,0.00002049461,0.000019089282,0.000019440344,0.000018888079,0.0000198722,0.000018454715,0.000018521961,0.000017942219,0.000019333811,0.000018344223,0.000018961713,0.000018720104,0.000020023357,0.000018932928,0.000019514437,0.000018850558,0.00002027233,0.000019246687,0.000019815936,0.000019333922,0.000020327696,0.000019070012,0.000019257537,0.00001878459,0.000020135683,0.000019514622,0.000020284957,0.000019809078,0.000020864232,0.000019921037,0.000020725158,0.000020346413,0.000021759293,0.00002085912,0.000021243677,0.0000202837,0.000020960897,0.00001977463,0.000019597297,0.00001878984,0.00001983123,0.000018984421,0.00001972438,0.00001922339,0.00002061597,0.000019657604,0.0000205739,0.000019574305,0.000020926982,0.000019883742,0.000020975294,0.000019904252,0.000021109745,0.000019455643,0.0000197006,0.000018829987,0.000019643176,0.00002033677,0.000020563739,0.000020419753,0.000020871952,0.000020812522,0.000021551208,0.000020709036,0.00002119404,0.000022520153,0.000025336129,0.000024926454,0.00001683111,0.000010714948,0.000013286595],[0.000015312287,0.000011133026,0.000010266655,0.000013731092,0.000026694079,0.000036842266,0.000029727662,0.000024617764,0.000022334783,0.000021621881,0.000021294143,0.00001985068,0.000020071382,0.000019607336,0.000020180052,0.00001948212,0.000020927542,0.000020598183,0.000021542208,0.000019704434,0.000021059475,0.000020489548,0.000020838797,0.000019279698,0.000020151378,0.00001938754,0.000020350139,0.000019064795,0.00002033712,0.000019775707,0.00002022579,0.000018809347,0.000019872767,0.000019367693,0.000020427487,0.000019397821,0.000021002095,0.000020380145,0.000020897605,0.000019375544,0.000020350779,0.00001995026,0.00002094581,0.000019540714,0.000020536203,0.000019868125,0.000020061641,0.000018674831,0.00001956445,0.00001932839,0.000020402624,0.000018926918,0.0000203378,0.000019769577,0.000020264462,0.000018901124,0.00002012167,0.000019566856,0.000020528703,0.000018841212,0.000020031148,0.000019537696,0.000019742693,0.000018278457,0.000019179608,0.000018951174,0.000019972495,0.000018434663,0.000019953914,0.00001948541,0.000020102721,0.000018596776,0.000019892525,0.000019218625,0.000020247173,0.000018565554,0.00001984277,0.000019445719,0.000019724306,0.000018222067,0.00001919084,0.00001896343,0.000020043415,0.000018496437,0.000020050777,0.00001950411,0.000020161317,0.000018664772,0.000019965391,0.000019257664,0.000020277106,0.000018585233,0.000019819056,0.000019423534,0.000019704095,0.000018229784,0.00001919778,0.000018943512,0.000019978075,0.000018442945,0.000019993171,0.000019454084,0.000020119503,0.000018638073,0.000019933012,0.000019247163,0.000020263225,0.000018557075,0.000019794348,0.00001941109,0.000019692918,0.000018213346,0.000019193953,0.000018953522,0.000019986785,0.000018461984,0.000020020874,0.0000194774,0.000020139487,0.000018644721,0.000019933543,0.000019246081,0.000020283875,0.000018596882,0.000019838133,0.000019438989,0.000019708456,0.000018220155,0.000019189743,0.000018944073,0.000019982592,0.000018459854,0.000020010166,0.000019460727,0.000020125719,0.00001863912,0.000019926909,0.000019223446,0.00002024895,0.000018552915,0.000019801239,0.00001941533,0.000019692317,0.000018205306,0.000019185516,0.000018923181,0.000019960478,0.000018442153,0.00002001112,0.000019449095,0.000020120962,0.00001861768,0.000019925637,0.000019209463,0.000020261312,0.000018578696,0.000019840763,0.000019437783,0.00001971368,0.000018213155,0.000019205945,0.000018953035,0.00002002987,0.00001851299,0.000020057434,0.00001949775,0.000020180301,0.000018682258,0.000019970208,0.00001927911,0.000020322232,0.000018626026,0.000019855073,0.000019443309,0.000019712195,0.000018233975,0.000019187162,0.000018956054,0.000020003507,0.000018456774,0.000020011483,0.00001947792,0.000020205567,0.000018819934,0.000020074367,0.00001946765,0.000020356854,0.000018593708,0.000019650633,0.0000191885,0.000019312674,0.000017928842,0.000018793173,0.000018578252,0.000019627485,0.000018095567,0.000019591074,0.000019228011,0.00002006145,0.000018654504,0.000019980667,0.000019441455,0.00002056921,0.000019074978,0.000020272253,0.00001961014,0.00001997419,0.00001880063,0.000019791496,0.000019491765,0.000020722608,0.000019650932,0.000021010128,0.000020243197,0.000020982056,0.00002006101,0.000021253589,0.000021006903,0.00002229044,0.000020983898,0.000021464448,0.00002077859,0.000020881609,0.000019628196,0.000019956939,0.00001944952,0.000020268908,0.00001887002,0.000020345462,0.000019619643,0.000020338168,0.000019244319,0.000020539906,0.000019905448,0.000020842894,0.00001977484,0.000020799169,0.00002036227,0.000020175896,0.000019186651,0.000019070503,0.00001916264,0.000020135338,0.000019918663,0.000020426785,0.000020064568,0.000020410253,0.000020281108,0.000019957604,0.000020186135,0.000022407106,0.00002398862,0.000026258167,0.000017037808,0.000011272264,0.000012867588],[0.000015706572,0.0000122426145,0.000011396438,0.000015011442,0.000027945869,0.000034722885,0.000027083839,0.000023281515,0.00002045271,0.000020605768,0.000019431835,0.000019611562,0.000018879093,0.000019172512,0.000018570954,0.000019065921,0.00001906385,0.000020083617,0.000019240593,0.000019275836,0.000019428815,0.000020210655,0.000019217176,0.000019280029,0.000018283426,0.00001920677,0.000018150578,0.000018629526,0.000018279627,0.00001939418,0.000018269866,0.000018749422,0.00001804132,0.000019488956,0.000018643655,0.000019488996,0.000019356448,0.000020601487,0.000019227808,0.000019502642,0.000018665858,0.000019932497,0.000018779612,0.00001901575,0.000018825049,0.000019623272,0.000018541577,0.000018707147,0.000018068304,0.000019421015,0.000018405344,0.000018731103,0.000018691258,0.000019748717,0.000018714838,0.000019055178,0.000018436034,0.000019810721,0.000018505189,0.000018766917,0.000018517598,0.000019521362,0.000018152085,0.00001831063,0.000017775397,0.000019133533,0.000018079627,0.00001840961,0.000018383662,0.000019610345,0.000018425417,0.000018776622,0.000018163928,0.000019607673,0.000018308343,0.00001858752,0.000018308692,0.000019472907,0.000018055971,0.000018287088,0.000017749633,0.000019191006,0.000018142997,0.000018510837,0.00001843802,0.000019687246,0.000018484376,0.000018856654,0.00001821477,0.0000196526,0.000018330058,0.000018604935,0.000018301656,0.00001945837,0.000018049082,0.000018295845,0.000017764789,0.000019170318,0.000018100656,0.000018463112,0.000018399272,0.000019646455,0.000018454715,0.000018829698,0.000018213625,0.000019655075,0.000018340585,0.000018594808,0.000018303419,0.000019466908,0.000018062135,0.000018286095,0.000017754204,0.000019153433,0.000018096463,0.000018461475,0.000018418163,0.000019660174,0.000018472216,0.000018834098,0.00001821081,0.00001964844,0.000018345483,0.000018617287,0.00001832319,0.000019460133,0.000018052835,0.000018279487,0.000017754595,0.0000191618,0.000018105475,0.000018466333,0.000018413666,0.000019655712,0.000018467796,0.000018835535,0.000018205254,0.000019634335,0.000018323557,0.00001858401,0.000018292041,0.000019439212,0.000018036384,0.000018265024,0.000017739616,0.000019142804,0.000018091303,0.000018462672,0.000018412085,0.000019650353,0.000018445407,0.000018811123,0.000018184814,0.00001962784,0.000018316829,0.00001859619,0.000018307941,0.000019464904,0.000018054196,0.00001828871,0.000017754832,0.000019169916,0.00001812458,0.000018505718,0.00001845007,0.00001968721,0.000018496667,0.000018883431,0.000018231123,0.000019669289,0.000018358696,0.000018643052,0.000018328048,0.000019478719,0.000018058088,0.000018286286,0.00001774955,0.000019174266,0.00001810682,0.000018478559,0.000018416353,0.000019698835,0.000018590234,0.00001903068,0.000018375144,0.000019833631,0.000018417353,0.000018578785,0.00001813575,0.000019188443,0.000017737992,0.000017981753,0.000017441425,0.00001888952,0.000017877468,0.00001835845,0.000018152725,0.000019633568,0.000018465948,0.000019048002,0.000018478066,0.000019909643,0.000018702598,0.000019135596,0.000018699104,0.000019749472,0.000018415949,0.00001873732,0.000018403816,0.000019694628,0.000018926881,0.000019587525,0.000019568686,0.000020698413,0.00001973377,0.00002042359,0.000019899639,0.000021227903,0.00002014667,0.000020374684,0.000019799501,0.000020262067,0.00001926448,0.000019211166,0.000018637593,0.000019415053,0.00001845556,0.000018744257,0.000018543718,0.00001983802,0.000018890078,0.000019694948,0.00001899418,0.000020150244,0.00001877748,0.000019548692,0.0000187508,0.000020122496,0.000018824097,0.00001912246,0.000018039551,0.00001924065,0.000019232522,0.00002003388,0.0000197975,0.000020376569,0.000020264944,0.000021394433,0.000020732334,0.000021430065,0.000021899876,0.000024874284,0.000025327432,0.00001832064,0.000010999905,0.000013539358],[0.000015407206,0.000013263946,0.000010530616,0.000017059156,0.000028379172,0.000036392747,0.000028710347,0.000023854982,0.00002161922,0.000021274494,0.000020743744,0.000019946778,0.000020334755,0.000019808698,0.000020120962,0.000019672385,0.000020424233,0.000020449668,0.000020426141,0.000019630348,0.000020835876,0.000020912597,0.000020853988,0.000019797199,0.000020061621,0.000019793366,0.000019781835,0.00001881324,0.000019614947,0.000019703251,0.000020071957,0.000019112944,0.000019933677,0.000019941377,0.000020616973,0.000019791894,0.000020972013,0.000020699836,0.000020971054,0.000019922312,0.000020598243,0.000020464026,0.000020635443,0.000019447834,0.00002005816,0.00002017782,0.000020281224,0.00001939,0.000020172318,0.000020158817,0.000020548254,0.000019281224,0.000020266936,0.000020326339,0.000020638867,0.000019627614,0.00002049416,0.000020345307,0.00002051571,0.00001913211,0.000019932668,0.00002005531,0.000020186404,0.00001901827,0.000019923757,0.000019922349,0.000020338071,0.000018999706,0.000020166815,0.000020223573,0.000020549996,0.000019362227,0.000020329364,0.000020159798,0.000020452164,0.000018997262,0.000019842751,0.000020004632,0.000020172412,0.000018983352,0.000019928031,0.000019923167,0.000020414634,0.000019074723,0.000020261661,0.000020237734,0.000020608597,0.000019416922,0.000020381369,0.00002017807,0.000020475094,0.000019012285,0.00001984258,0.000020002915,0.000020166835,0.000018989074,0.000019934627,0.00001991196,0.000020374899,0.00001905385,0.000020239915,0.000020218096,0.000020581985,0.0000194132,0.00002038201,0.000020189138,0.000020485562,0.00001903344,0.00001985424,0.000020019634,0.00002015232,0.000018964081,0.000019898805,0.000019891671,0.000020349284,0.000019043915,0.000020233065,0.000020227142,0.000020590112,0.000019423793,0.000020380377,0.00002017938,0.000020475289,0.000019037141,0.00001985214,0.000020008525,0.000020148285,0.000018987716,0.000019921836,0.000019907517,0.000020366582,0.000019062958,0.000020245301,0.000020229052,0.000020595513,0.00001942735,0.000020382808,0.000020174357,0.000020461117,0.000019012557,0.000019826293,0.000019996565,0.000020135512,0.0000189607,0.000019901992,0.000019893168,0.000020354466,0.000019046367,0.000020240283,0.000020207206,0.00002057333,0.000019396288,0.000020365476,0.000020152129,0.00002045195,0.000019002588,0.000019829811,0.000020007456,0.000020156722,0.000018982755,0.000019921532,0.000019908124,0.000020378862,0.00001906372,0.000020252543,0.000020239684,0.000020612371,0.00001944952,0.000020404706,0.00002020395,0.00002048826,0.000019028812,0.000019844189,0.000020007628,0.000020164644,0.000018977995,0.000019911751,0.000019914694,0.000020375926,0.000019042425,0.000020251115,0.00002024864,0.000020661297,0.000019572512,0.00002046588,0.000020336014,0.000020450505,0.000018936902,0.000019556708,0.000019716557,0.000019818637,0.00001866025,0.000019550498,0.000019686891,0.000020165644,0.000018921646,0.000020099691,0.000020134263,0.000020710992,0.000019654906,0.000020662934,0.000020404977,0.000020559895,0.000019397656,0.000020330159,0.000020193374,0.000020328938,0.000019435392,0.000020321417,0.000020228048,0.000020437481,0.00001969198,0.000020922791,0.000020776153,0.000021203845,0.000020652156,0.000021536991,0.000021341959,0.000021169943,0.000020411324,0.000020601641,0.000020853848,0.000020614927,0.0000198985,0.000020311652,0.000020480229,0.00002025231,0.000019147295,0.000020250553,0.000020079671,0.00002081558,0.000020028474,0.000020967434,0.000020400037,0.000020259808,0.00001938876,0.000019796744,0.00002024536,0.000020163008,0.00001939625,0.000018930636,0.000019184254,0.000019381272,0.000019916744,0.000020016407,0.000020664706,0.000020884137,0.000021295098,0.000021166976,0.000021641396,0.000022979471,0.000024283052,0.000025553447,0.00001909886,0.000011396677,0.000013493291],[0.000015256083,0.000015648786,0.000011834208,0.000017221519,0.000029212082,0.00003439526,0.000027539814,0.000024391393,0.00002087908,0.000021097307,0.000019682217,0.000020109355,0.000018978086,0.000019724363,0.00001934508,0.000020196378,0.000019534677,0.000020474332,0.000019427016,0.000019761548,0.000019677995,0.000020797344,0.000019618352,0.000020060186,0.000018737572,0.000019727635,0.000018453025,0.000018675224,0.000018269291,0.00001954075,0.000018766828,0.000019591524,0.000018460278,0.000019889432,0.000019044024,0.000019910725,0.000019419644,0.000020706075,0.000019487248,0.000020237521,0.000019092122,0.00002034061,0.000018958983,0.00001907516,0.000018537954,0.000019540135,0.000018890112,0.000019596362,0.000018834728,0.000020085226,0.000018973615,0.000019131727,0.000018782477,0.000019734429,0.000019135157,0.00001974804,0.000019042262,0.000020247116,0.000018829967,0.000018840585,0.000018382558,0.000019556168,0.000018748833,0.000019260697,0.000018598656,0.0000198926,0.00001877449,0.000018948318,0.000018689012,0.000019740997,0.000018968223,0.000019484572,0.000018832912,0.000020093656,0.000018717335,0.000018739054,0.000018296352,0.000019554302,0.000018709181,0.000019245585,0.000018566474,0.000019893056,0.000018790755,0.000019016003,0.000018728568,0.000019782647,0.000019013682,0.00001956083,0.000018872126,0.000020134128,0.000018746097,0.000018766454,0.000018307313,0.000019565663,0.000018727478,0.000019258932,0.000018575382,0.000019881487,0.000018778626,0.000019014878,0.000018720908,0.000019776347,0.000018998675,0.000019550163,0.000018882205,0.000020151705,0.000018756702,0.000018766632,0.000018299492,0.000019546864,0.000018700404,0.00001922759,0.00001854913,0.000019852914,0.00001875622,0.000018990197,0.000018715498,0.000019769805,0.000019001012,0.000019553874,0.00001887416,0.000020140984,0.000018745812,0.000018765504,0.000018313616,0.000019561447,0.000018703775,0.000019240906,0.000018572176,0.000019876956,0.000018776478,0.000019018144,0.000018730962,0.000019783854,0.000019005887,0.000019556168,0.000018879038,0.0000201406,0.000018739502,0.00001875375,0.000018298411,0.000019545745,0.000018692988,0.000019210176,0.000018535691,0.00001984542,0.000018753875,0.000018986322,0.000018711376,0.00001976758,0.00001898004,0.0000195281,0.000018846982,0.000020108244,0.000018712732,0.000018733104,0.000018278004,0.000019549323,0.000018708575,0.000019245843,0.000018564171,0.000019881429,0.000018770927,0.000019001174,0.000018712537,0.00001977346,0.000019013265,0.000019583602,0.0000188997,0.000020179146,0.000018782603,0.000018785613,0.000018306422,0.00001956294,0.000018717568,0.000019243309,0.000018564791,0.000019887137,0.00001876783,0.00001899967,0.000018705274,0.000019792291,0.000019094034,0.00001972374,0.000019034309,0.000020318452,0.000018791847,0.000018693345,0.000018114593,0.000019342277,0.000018484923,0.00001893764,0.000018267392,0.00001970137,0.000018573894,0.000018958457,0.000018544231,0.000019938905,0.00001920558,0.000019954654,0.00001905616,0.000020489842,0.000019076015,0.000019536372,0.000018942952,0.00002035899,0.000019313871,0.000019907744,0.000019038813,0.000020249607,0.000019136034,0.000019654719,0.000019182351,0.000020381349,0.00001993303,0.0000209192,0.000020038447,0.000021360998,0.000019862859,0.000020227586,0.000019332485,0.000020564092,0.000019758852,0.000020301175,0.00001934161,0.000020571153,0.000019255793,0.000019456811,0.000018892077,0.000020073678,0.000019575797,0.00002045,0.00001931146,0.000020464084,0.0000188666,0.000019322788,0.000018321756,0.000019852612,0.000019005325,0.000019666455,0.000017898094,0.00001895855,0.000018485063,0.000019441251,0.000019168765,0.000020339583,0.000020564701,0.00002171901,0.000021494126,0.000022433918,0.000023600578,0.000025736159,0.000024942958,0.00001727908,0.000011428033,0.00001364495],[0.000015866393,0.000017352217,0.00001308324,0.000018975208,0.000032216903,0.000035830122,0.000031902215,0.000025219766,0.000022836553,0.000021807677,0.000021547981,0.000019900133,0.000020400017,0.00001973904,0.000020569172,0.000019876918,0.000021085922,0.000020723517,0.00002134078,0.000019759493,0.00002117089,0.00002078392,0.000021580123,0.000019856305,0.000020490623,0.000019514586,0.000019893396,0.000018567856,0.00001981743,0.000019577927,0.000020710655,0.000019283027,0.00002026974,0.000019529667,0.000020542786,0.000019392255,0.000021029993,0.000020518391,0.000021623922,0.000019940577,0.000020839992,0.000020007305,0.0000206469,0.000018898889,0.000019986861,0.000019723366,0.000020715159,0.000019500447,0.000020428557,0.000019790044,0.000020668944,0.000018983625,0.0000201657,0.000019769992,0.00002102502,0.00001956529,0.000020619726,0.000019954085,0.000020605983,0.000018639514,0.0000197738,0.000019557436,0.000020616206,0.000019209407,0.000020239142,0.000019618015,0.000020510663,0.000018795019,0.000020071133,0.000019693274,0.000020869305,0.000019345911,0.00002047402,0.000019800975,0.000020503641,0.000018519046,0.000019718495,0.000019512874,0.00002060901,0.000019160612,0.000020225772,0.00001956376,0.000020491854,0.000018832285,0.000020130674,0.000019705374,0.000020928557,0.000019411591,0.000020532425,0.00001983418,0.00002054112,0.000018551997,0.00001972867,0.00001953393,0.00002061774,0.000019180832,0.000020229649,0.000019555831,0.000020476344,0.00001882846,0.000020114727,0.000019687059,0.000020904243,0.000019399673,0.000020542413,0.000019830208,0.000020540161,0.000018546938,0.000019720752,0.000019525849,0.00002059457,0.000019162513,0.000020205356,0.00001954062,0.000020457333,0.000018819539,0.00002011509,0.000019692805,0.000020909347,0.000019404946,0.000020546528,0.000019828827,0.000020542138,0.000018553112,0.000019736895,0.000019535366,0.000020590467,0.000019168141,0.000020233296,0.000019560775,0.000020462972,0.000018840172,0.000020134685,0.000019701296,0.000020905,0.000019397361,0.000020532465,0.000019817806,0.000020527295,0.000018529681,0.000019702986,0.000019512761,0.00002057494,0.000019144813,0.000020190659,0.000019526518,0.000020446703,0.00001881324,0.000020105175,0.00001967957,0.00002089635,0.000019378833,0.00002051573,0.000019782608,0.000020501628,0.000018508084,0.000019697143,0.00001950785,0.000020599875,0.000019171433,0.00002022336,0.000019549809,0.00002046621,0.000018816272,0.000020108051,0.000019677713,0.000020911442,0.000019427573,0.000020565289,0.000019862877,0.000020571604,0.000018571007,0.00001972534,0.000019528194,0.000020610387,0.000019169696,0.000020214917,0.000019553761,0.00002047566,0.00001879373,0.000020091644,0.000019673058,0.000020979054,0.000019544943,0.000020670266,0.00002000637,0.000020574233,0.000018538343,0.000019526891,0.000019368837,0.000020363008,0.000018938652,0.00001992233,0.000019378518,0.000020382477,0.00001856874,0.000019983981,0.000019647952,0.000021218208,0.000019599445,0.000020773814,0.000020014288,0.00002065403,0.000019264848,0.000020415217,0.000020193836,0.000021006143,0.000019926681,0.000020543277,0.000019849906,0.000020343658,0.000019302142,0.000020378298,0.000020190562,0.000021432128,0.000020564406,0.000021461725,0.000020953,0.000021388883,0.000020235457,0.000020810698,0.000020737849,0.00002146418,0.000020369069,0.000020872112,0.000020160855,0.000020547332,0.00001912516,0.000020151801,0.000019646042,0.000020991843,0.000019726112,0.000020807125,0.000019950545,0.00002043569,0.00001910919,0.000019829187,0.000019846857,0.000020980655,0.000019596157,0.00001950279,0.00001878959,0.000019523706,0.000018947956,0.000019789628,0.000020229765,0.000020863075,0.000020791058,0.000020956519,0.000021477244,0.000024763916,0.00002475301,0.000024281431,0.000016138565,0.00001102369,0.000013178636],[0.00001583385,0.000017975666,0.000015797561,0.000022119233,0.000032009422,0.000031255844,0.000027031123,0.000023681852,0.000021116168,0.000020808038,0.000019552848,0.000019909377,0.000019058649,0.000019697332,0.000018945011,0.000019946701,0.000019756235,0.000020818617,0.000019546733,0.000019704115,0.00001960382,0.00002064546,0.000019620054,0.000019722538,0.000018835679,0.000019438174,0.000018518023,0.000018544797,0.00001822113,0.000019334198,0.000018564418,0.000019124138,0.00001858805,0.000019737288,0.000018911003,0.000019564935,0.000019383584,0.00002070647,0.000019566316,0.000019948186,0.00001921199,0.0000201281,0.000018895826,0.00001879432,0.00001861871,0.00001964767,0.00001903874,0.000019383251,0.000018859118,0.000019953552,0.000019001882,0.00001902315,0.000018896852,0.00001975938,0.000019213989,0.00001934914,0.000018930365,0.000019826219,0.000018852212,0.000018609675,0.000018516328,0.000019537209,0.000018807732,0.000019121895,0.000018620289,0.000019697989,0.00001873032,0.000018846677,0.000018768063,0.000019757987,0.000018997514,0.000019170171,0.000018793657,0.00001970947,0.00001871839,0.000018471952,0.00001842252,0.00001950772,0.000018739627,0.000019065066,0.00001857432,0.000019675123,0.000018713303,0.000018849318,0.000018766113,0.000019778572,0.000019038884,0.00001922616,0.000018838124,0.000019738645,0.000018740395,0.000018491199,0.000018440149,0.000019511683,0.000018754161,0.00001907194,0.000018579847,0.000019672889,0.00001869584,0.000018831422,0.000018745563,0.000019770841,0.000019012667,0.000019210362,0.000018835553,0.000019752146,0.0000187503,0.00001849919,0.000018437158,0.000019516372,0.000018735607,0.000019058576,0.000018565377,0.00001966578,0.000018692917,0.000018833129,0.000018749888,0.000019778628,0.0000190242,0.000019228506,0.000018842687,0.000019752184,0.000018744186,0.000018493722,0.000018441202,0.000019515628,0.000018729532,0.000019060393,0.000018582346,0.000019676267,0.000018696179,0.000018844736,0.000018766435,0.000019789723,0.000019017762,0.00001922163,0.000018829467,0.000019736273,0.000018721264,0.00001846445,0.00001841026,0.000019499183,0.000018724104,0.000019050181,0.000018557694,0.000019652396,0.000018677147,0.000018815428,0.000018728424,0.000019762378,0.000019007899,0.000019214445,0.000018812414,0.00001972265,0.00001870556,0.00001845329,0.000018398623,0.000019498215,0.000018736,0.00001907516,0.000018574265,0.000019677693,0.000018692826,0.000018824205,0.000018740342,0.000019762283,0.00001902979,0.000019249348,0.000018864263,0.000019769917,0.000018759385,0.000018507535,0.000018440587,0.000019512352,0.000018757417,0.000019073432,0.000018567323,0.000019663417,0.000018683613,0.000018816685,0.000018736304,0.000019769917,0.000019125799,0.000019373621,0.000018985887,0.000019907422,0.000018820489,0.000018472605,0.000018299126,0.000019315437,0.000018533534,0.000018827652,0.000018288187,0.000019460877,0.000018531078,0.000018722229,0.000018615034,0.0000199648,0.00001915409,0.000019690946,0.000019117557,0.000020162508,0.000019021752,0.00001922132,0.000019125962,0.000020430369,0.0000193829,0.000020056554,0.000019413237,0.000020289252,0.000019133806,0.000019639654,0.00001959567,0.000020683003,0.00002005529,0.000020867536,0.000020389669,0.000021220008,0.000019994104,0.000020029029,0.000019494144,0.000020419558,0.000019650895,0.000019998091,0.000019249166,0.000019971521,0.000018993112,0.000019062376,0.000018695342,0.000019633775,0.000019122079,0.000019691792,0.000019263342,0.000019974379,0.000019081492,0.00001912153,0.000018554438,0.000019584424,0.000018943945,0.00001923463,0.000018372917,0.000018850396,0.000019006957,0.00001961665,0.000019704583,0.000021020509,0.000020778016,0.000021685544,0.000021157792,0.000022423117,0.000023646873,0.000027092932,0.000024614383,0.00001655673,0.000010398964,0.000013374223],[0.00001616694,0.00001782517,0.000014620811,0.00002433909,0.000029986768,0.000029684432,0.000026447076,0.000023454468,0.000021763422,0.000021142563,0.000020951424,0.000020289719,0.000020920636,0.000020000494,0.000020322153,0.000019926756,0.000021009688,0.000020737178,0.000020873804,0.000019990312,0.000021002237,0.000021190544,0.000021068072,0.000019959718,0.000020435806,0.000020268522,0.000020558877,0.000019430074,0.000019978477,0.000020011674,0.000020210675,0.000019289206,0.000020369496,0.00002022448,0.000021000573,0.00002014642,0.000021229462,0.000021072114,0.000021312795,0.000020251036,0.000021048432,0.00002073605,0.000021008445,0.000019666604,0.000020325526,0.000020500964,0.000020569936,0.000019762245,0.00002059964,0.000020518566,0.000021008565,0.000019824687,0.000020683989,0.000020646328,0.000020870997,0.00001985977,0.000020563819,0.000020484684,0.000020989222,0.000019566503,0.000020356156,0.000020379173,0.000020508258,0.000019503907,0.000020351592,0.00002023013,0.000020725493,0.00001961622,0.000020606634,0.000020536596,0.000020748948,0.000019690908,0.000020459263,0.000020365302,0.000020827314,0.00001945388,0.000020311923,0.000020331865,0.000020482183,0.00001941322,0.000020319441,0.000020190331,0.000020702933,0.000019617099,0.000020616186,0.00002055282,0.000020801668,0.000019740997,0.000020504345,0.00002038652,0.000020846688,0.000019464087,0.000020314828,0.000020340243,0.000020491072,0.000019419107,0.000020327969,0.000020186231,0.000020669258,0.000019586852,0.000020593785,0.000020525966,0.000020773994,0.000019716803,0.000020505637,0.000020398189,0.000020865644,0.000019483252,0.000020321146,0.000020342162,0.000020482203,0.000019418552,0.00002032983,0.000020184036,0.000020664844,0.00001958913,0.000020597594,0.000020533795,0.000020790503,0.000019732923,0.000020519918,0.000020400465,0.000020859397,0.000019470455,0.000020321551,0.000020345211,0.000020460024,0.000019400839,0.000020334928,0.000020191583,0.000020661711,0.000019591822,0.00002061013,0.000020540221,0.000020785943,0.000019723704,0.000020509,0.000020384441,0.000020842894,0.000019455607,0.000020304331,0.000020330488,0.000020467987,0.000019402467,0.000020323994,0.000020175146,0.000020649635,0.0000195749,0.000020585716,0.000020514126,0.000020776351,0.000019720883,0.00002051123,0.000020372352,0.000020828347,0.000019433577,0.00002028935,0.000020321475,0.00002047521,0.000019413497,0.00002033815,0.00002018908,0.000020672553,0.000019586161,0.000020593452,0.000020541453,0.00002079903,0.000019754276,0.000020531661,0.000020411695,0.000020856372,0.00001946756,0.000020311632,0.000020337664,0.00002048818,0.00001943002,0.000020305222,0.0000201788,0.000020661357,0.000019582407,0.000020591568,0.000020545116,0.000020843507,0.000019869924,0.0000206272,0.0000205507,0.000020876292,0.00001946455,0.000020104446,0.00002016197,0.000020235784,0.000019281519,0.00001995947,0.000019959889,0.000020573194,0.000019520803,0.00002060286,0.000020607045,0.000020969313,0.000019835032,0.00002095772,0.000020671665,0.000021076232,0.000019892334,0.000021068356,0.000020861824,0.0000210389,0.000020181285,0.000021065101,0.000020559659,0.000020890633,0.000020231348,0.000021451004,0.000021289128,0.000021581689,0.00002109431,0.000022131706,0.000021900794,0.00002197014,0.000020839752,0.00002118327,0.000021181977,0.000021019427,0.000020188425,0.00002063259,0.000020428712,0.000020590838,0.000019787913,0.000020546588,0.000020376783,0.000020800062,0.000020055655,0.000021099902,0.000020928479,0.000021449796,0.00002035466,0.000020488162,0.000020603235,0.000020179456,0.000019924648,0.000019452806,0.00001991401,0.000020479938,0.000020625252,0.000020946209,0.000021582739,0.00002134601,0.000021685462,0.000021432088,0.000022004673,0.000024757162,0.000025195895,0.000024839484,0.000017202035,0.000010812794,0.000013217743],[0.000015658907,0.000015819027,0.00001476784,0.00002193522,0.000029426566,0.000028479566,0.000023808436,0.00002244494,0.00001977648,0.000020452027,0.000019572028,0.000020513537,0.000019144905,0.000019808851,0.000019063793,0.000019978894,0.000019327616,0.00002063078,0.000019440175,0.000020239626,0.00001968783,0.00002088153,0.000019683624,0.000019757044,0.00001904346,0.000020223939,0.000019607243,0.000020003507,0.000019258014,0.000020034033,0.000018869767,0.000019090574,0.000018504801,0.000019926796,0.000019278632,0.000020280722,0.000019551879,0.00002061475,0.00001952728,0.000019913043,0.000019209849,0.000020382671,0.000019508985,0.000019764695,0.000019097857,0.000020006788,0.000019074705,0.00001954023,0.000018829502,0.000020259266,0.00001936182,0.000020004958,0.000019327026,0.000020278265,0.000019450132,0.000019728952,0.000019176297,0.000020288286,0.00001965425,0.000019673847,0.000019146128,0.000019917372,0.000019044188,0.000019386134,0.000018645913,0.000020051924,0.00001915683,0.0000198377,0.000019228084,0.000020217132,0.000019285197,0.000019572324,0.000019029845,0.000020170952,0.000019497174,0.00001954994,0.000019102776,0.000019881334,0.000018991954,0.000019305531,0.000018586883,0.000020021542,0.00001915283,0.000019854526,0.000019240355,0.000020234935,0.000019327377,0.000019631134,0.00001908231,0.000020198555,0.00001951803,0.000019551208,0.00001909915,0.0000198722,0.00001900866,0.000019327525,0.000018603161,0.00002002521,0.000019137804,0.000019833593,0.000019210562,0.000020203679,0.000019289942,0.000019600213,0.000019059722,0.000020199132,0.000019522087,0.000019564766,0.000019106985,0.000019888881,0.000018999162,0.000019329904,0.00001860309,0.000020031914,0.000019135176,0.000019829433,0.000019199664,0.0000201984,0.000019283229,0.000019598996,0.000019056595,0.00002020339,0.00001951842,0.000019558202,0.00001910693,0.000019889374,0.000018981162,0.000019304298,0.000018595763,0.000020030633,0.000019134208,0.000019833766,0.000019214243,0.000020210617,0.000019285564,0.000019600326,0.000019059285,0.000020199615,0.000019510082,0.000019543155,0.000019093597,0.000019872368,0.000018981542,0.000019312434,0.000018588584,0.000020015776,0.000019121804,0.000019814803,0.000019191848,0.000020181187,0.00001926042,0.000019579793,0.000019041572,0.000020177627,0.000019479185,0.00001951317,0.000019069284,0.000019859372,0.00001898051,0.000019314626,0.000018590888,0.000020025782,0.000019135723,0.000019826899,0.000019211258,0.000020207977,0.000019312878,0.000019627934,0.000019086261,0.000020212005,0.00001952516,0.000019551766,0.000019105344,0.000019875459,0.000019009729,0.000019317262,0.000018585411,0.000020003983,0.000019111467,0.000019805244,0.000019204717,0.000020210984,0.000019401597,0.000019757648,0.00001923419,0.000020378882,0.000019655414,0.000019563386,0.000019019502,0.000019746778,0.00001886725,0.000019128314,0.000018366542,0.000019742334,0.000018855178,0.00001957535,0.000019085695,0.000020242773,0.000019266796,0.000019652058,0.000019010455,0.000020233663,0.000019387742,0.000019671052,0.000019160685,0.00002029024,0.000019344712,0.00001986316,0.000019061667,0.000020317251,0.000019566653,0.00002037956,0.00001980562,0.00002083077,0.00002013626,0.000020726955,0.00002025716,0.000021494885,0.000020866837,0.000021103926,0.000020011348,0.000020798594,0.000019852592,0.000020086702,0.000019057032,0.00002017984,0.000019443123,0.000020186846,0.00001941931,0.000020297071,0.000019608942,0.000019888881,0.000019495612,0.000020677993,0.000020556798,0.000021164149,0.00002032035,0.000021007525,0.000019787798,0.000019757515,0.000018868472,0.000019623722,0.00002032663,0.000020530468,0.00002035736,0.000020979796,0.000020962794,0.000021794993,0.000021003738,0.00002156344,0.00002301476,0.000025661704,0.000024090132,0.000016499262,0.000010627834,0.000013451393],[0.00001578625,0.0000143987945,0.000013960976,0.00002057341,0.000031652296,0.00003064343,0.000027213004,0.000022942291,0.000021282003,0.000020910444,0.000021175012,0.000020106574,0.000020545782,0.000019561912,0.000019940198,0.000019100498,0.000020379095,0.000020076608,0.000021293412,0.000019729592,0.000021022415,0.000020707812,0.00002100384,0.000019678182,0.000020286041,0.0000197298,0.000020833175,0.00001971451,0.000020768704,0.000020128176,0.00002046582,0.000018871622,0.000019858919,0.00001939344,0.000020751677,0.000019524543,0.000020942554,0.000020343465,0.000021013857,0.000019707686,0.000020463576,0.000020030518,0.000021080272,0.000019496894,0.000020632275,0.000020048235,0.000020698808,0.000019274441,0.000020156049,0.000019817826,0.000021015097,0.000019514771,0.000020645244,0.00002015749,0.000020822588,0.000019750527,0.000020457841,0.000020154741,0.00002128669,0.000019587673,0.000020544057,0.000019964456,0.00002066575,0.000019256106,0.000020083406,0.000019700976,0.000020855876,0.000019355728,0.000020496253,0.00002004944,0.000020714744,0.000019579924,0.000020327328,0.000020006579,0.000021129967,0.000019481062,0.000020484624,0.000019927802,0.00002063865,0.00001917851,0.000020045463,0.000019685389,0.000020843032,0.000019378704,0.000020518664,0.000020078465,0.000020768943,0.000019643157,0.000020388172,0.000020059653,0.000021162738,0.000019497676,0.000020470643,0.00001992406,0.000020642528,0.00001920122,0.000020057318,0.000019694966,0.00002082533,0.000019355784,0.000020472537,0.000020040225,0.00002072152,0.000019615563,0.000020360136,0.000020043817,0.000021153615,0.00001950201,0.000020496525,0.000019937497,0.000020639163,0.000019181674,0.000020061412,0.000019687961,0.000020808475,0.00001934211,0.000020454056,0.000020020969,0.000020706528,0.000019605484,0.000020358057,0.000020049114,0.000021160396,0.000019503701,0.000020503856,0.000019945333,0.00002063389,0.000019173005,0.000020053627,0.000019695153,0.000020814985,0.000019351057,0.000020462874,0.000020026984,0.000020703783,0.00001960612,0.000020355108,0.000020046456,0.000021145064,0.0000194863,0.000020480602,0.00001993282,0.000020637863,0.000019174468,0.000020052403,0.00001967471,0.0000207933,0.00001933488,0.000020451695,0.000020009707,0.000020686375,0.000019582052,0.00002033776,0.000020020358,0.000021115524,0.000019456867,0.000020459167,0.000019914067,0.000020630503,0.000019168216,0.00002005506,0.000019677767,0.000020809526,0.000019346999,0.000020468884,0.00002004137,0.000020738858,0.000019631716,0.000020374257,0.000020048043,0.000021148433,0.000019501304,0.000020475309,0.000019918474,0.000020634045,0.000019186578,0.000020025553,0.000019657382,0.000020799864,0.000019312178,0.000020448284,0.000020042193,0.000020797046,0.000019745272,0.000020489118,0.000020176338,0.000021237987,0.000019589355,0.000020370604,0.00001979616,0.000020383408,0.000019010598,0.000019779309,0.000019305438,0.000020514968,0.00001893116,0.000020245514,0.000019861967,0.000020717194,0.000019396732,0.000020368467,0.000019893701,0.000021152406,0.000019392477,0.000020517688,0.00001996901,0.000020634125,0.00001936398,0.000020249048,0.000019773763,0.000020801926,0.000019685933,0.00002076827,0.000020343969,0.000021135973,0.000020502175,0.000021250224,0.000021092239,0.000022704548,0.000021109645,0.000021478556,0.000020687816,0.000021214,0.000019959813,0.000020271924,0.0000197159,0.000020720652,0.00001955684,0.000020469706,0.000019901443,0.000020582162,0.000019835808,0.000020483414,0.000020448186,0.000022092967,0.000021025424,0.000021720025,0.000021157972,0.000021158154,0.00001981998,0.000019559002,0.000019451969,0.00002041294,0.000020039593,0.000020647056,0.000020202291,0.000020563444,0.00002045152,0.000020009671,0.00002036365,0.000022871121,0.00002400844,0.00002580832,0.000016569571,0.000011073201,0.000012918406],[0.00001638775,0.000013951604,0.000014549333,0.00002080903,0.000032874745,0.00003079233,0.000025117231,0.000022271464,0.000019670506,0.000020161144,0.000019072613,0.000019809777,0.000018986937,0.000019474783,0.000018337576,0.000019002588,0.000018731496,0.00002014888,0.000019116223,0.00001969164,0.000019572362,0.000020797841,0.000019623927,0.000019861209,0.00001880757,0.00001968798,0.000018870523,0.000019227553,0.00001903698,0.000019742447,0.000018726105,0.000018818551,0.000018173077,0.000019486319,0.000018832034,0.000019584517,0.000019449391,0.000020556014,0.000019378464,0.000019696692,0.000018923993,0.000019949232,0.000019056359,0.000019178418,0.000019078252,0.0000198179,0.000018948536,0.000019217745,0.00001873625,0.000020137259,0.000019191208,0.000019743879,0.000019449391,0.000020487127,0.000019543937,0.000019968627,0.000019373882,0.000020333902,0.000019450263,0.000019397989,0.00001931017,0.000019878284,0.000019001718,0.000019274607,0.00001877893,0.000020040836,0.000019080164,0.000019607372,0.000019382012,0.000020449552,0.000019443103,0.000019862839,0.000019267127,0.000020266009,0.000019366937,0.000019356023,0.000019256344,0.00001986873,0.000018952944,0.000019224564,0.000018747312,0.000020031453,0.000019089426,0.000019640309,0.000019412757,0.000020485799,0.000019499053,0.000019915036,0.00001931866,0.00002029711,0.000019399838,0.000019364923,0.000019259007,0.000019861001,0.000018954355,0.000019227315,0.000018761424,0.000020030842,0.000019074705,0.00001961592,0.00001939266,0.00002046151,0.000019464813,0.000019879533,0.000019290292,0.000020281032,0.00001938303,0.000019349858,0.000019254103,0.000019855699,0.000018938706,0.00001920851,0.000018752857,0.000020030671,0.000019064213,0.000019608888,0.000019376763,0.000020454172,0.000019451618,0.000019874473,0.000019282124,0.000020286234,0.00001939048,0.000019356836,0.00001926439,0.000019867783,0.000018942626,0.00001920254,0.000018753964,0.000020037245,0.00001906912,0.00001960973,0.000019380239,0.000020454954,0.000019452806,0.000019876557,0.000019285546,0.000020282443,0.000019374529,0.000019334955,0.000019244539,0.000019853333,0.000018945751,0.000019212686,0.000018751622,0.000020024921,0.000019058612,0.00001959823,0.00001937035,0.000020442101,0.0000194358,0.000019855433,0.000019262185,0.00002026651,0.000019362189,0.000019326235,0.000019229092,0.00001984678,0.000018941633,0.000019215398,0.00001874363,0.000020023224,0.000019064757,0.000019610647,0.000019383435,0.000020455147,0.000019476733,0.000019902904,0.000019308549,0.0000202896,0.000019392459,0.000019356134,0.000019253994,0.000019848467,0.000018942193,0.000019206678,0.000018727622,0.000020000341,0.000019043788,0.00001957617,0.000019375415,0.000020468065,0.000019576974,0.000020016198,0.000019414349,0.000020405525,0.00001946041,0.000019352701,0.000019150382,0.00001968036,0.000018746616,0.000019002371,0.000018448925,0.000019705787,0.000018733874,0.000019186175,0.000018975696,0.000020194357,0.000019252782,0.000019645368,0.00001909742,0.000020163028,0.00001920701,0.000019146548,0.000018944145,0.00001972438,0.000018683239,0.000019062085,0.000018803912,0.000019926965,0.000019116535,0.000019703983,0.000019671614,0.000020664627,0.000019983678,0.000020358873,0.000019929741,0.000020914553,0.000020318916,0.000020281052,0.000019775347,0.000020087831,0.00001928163,0.000019381718,0.000018679017,0.000019649995,0.0000189425,0.000019556186,0.000019245292,0.000020319228,0.00001970558,0.000020105137,0.000019420146,0.000020414302,0.000019799785,0.00002043335,0.000020010224,0.00002074064,0.000020003623,0.00001977348,0.000018747634,0.000019270361,0.000019576712,0.000019897096,0.000020044869,0.000020305977,0.000020412472,0.000021272284,0.000020621672,0.000021366865,0.000021949721,0.000025299767,0.000025310095,0.00001755962,0.000010686018,0.000013418887],[0.000016113652,0.000014134325,0.000012563679,0.00002199085,0.000033362096,0.00003217229,0.000027148746,0.000023398905,0.000021494949,0.00002105088,0.000020643236,0.000020148304,0.000020716325,0.000019954352,0.000020151743,0.000019711857,0.00002052387,0.000020370662,0.00002062722,0.000019811325,0.000021132204,0.000021198388,0.000021216325,0.000020309308,0.000020429277,0.000020225463,0.000020190948,0.00001933787,0.0000200503,0.000020228934,0.000020484507,0.000019459187,0.000019968704,0.000020140562,0.000020778849,0.000019988729,0.000021138956,0.000020847147,0.00002106291,0.000020296742,0.000020621337,0.000020649202,0.000020779502,0.00001981501,0.000020339525,0.00002044251,0.000020569445,0.000019843565,0.000020590642,0.00002084808,0.00002119489,0.000020131307,0.000021137605,0.000020906298,0.000021202128,0.000020540043,0.000021080574,0.000020952162,0.000020984999,0.000019891082,0.000020472557,0.000020477457,0.000020704118,0.000019812156,0.000020598578,0.000020690895,0.000020980055,0.000019915491,0.00002098916,0.00002082088,0.000021199377,0.000020391031,0.000020982636,0.000020823423,0.000020926063,0.000019821797,0.000020456866,0.000020464551,0.000020703053,0.000019781157,0.000020576725,0.000020695552,0.000020984897,0.00001995104,0.000021010228,0.000020836196,0.000021230839,0.000020438476,0.000021014737,0.000020859436,0.000020952064,0.000019847406,0.000020467714,0.000020464358,0.000020690577,0.000019771953,0.000020582771,0.000020695512,0.000020964437,0.000019940862,0.000020994767,0.000020824316,0.000021189837,0.000020412803,0.00002098756,0.00002084995,0.00002093902,0.00001982845,0.000020441616,0.000020458228,0.000020679196,0.000019756215,0.000020581456,0.000020685193,0.000020952144,0.000019937535,0.000020994486,0.000020821735,0.00002117616,0.00002040564,0.000020979256,0.000020855061,0.000020953561,0.000019840536,0.00002044885,0.000020478961,0.00002068397,0.000019755293,0.000020582063,0.00002070094,0.000020954041,0.000019934418,0.000020987738,0.000020821039,0.000021178445,0.000020404823,0.000020974854,0.000020844163,0.000020935406,0.000019820813,0.000020435982,0.00002046502,0.000020685073,0.000019762641,0.000020590564,0.00002068614,0.000020953263,0.000019929608,0.000020981495,0.000020810756,0.00002117079,0.000020388678,0.000020960237,0.000020828666,0.000020926303,0.000019812687,0.000020429492,0.000020458248,0.000020686515,0.00001976558,0.000020580786,0.000020680696,0.000020958918,0.000019934969,0.000020990623,0.000020814707,0.000021198872,0.000020435768,0.00002100436,0.000020849473,0.00002093327,0.000019833178,0.000020444011,0.000020454523,0.000020674799,0.000019752993,0.000020543923,0.000020666756,0.000020937801,0.0000199112,0.000020978054,0.000020828964,0.000021253993,0.000020522579,0.000021089281,0.000020922753,0.000020888918,0.000019774441,0.00002023835,0.000020297264,0.00002045546,0.000019553352,0.000020209345,0.000020314481,0.000020685804,0.000019520932,0.000020586951,0.00002060734,0.000021072998,0.000020211195,0.000020936262,0.000020676514,0.000020817188,0.000019619343,0.000020400503,0.00002033615,0.00002042741,0.000019723855,0.00002061418,0.000020480054,0.00002066794,0.000019895371,0.000021026966,0.000020939538,0.000021202773,0.000020962496,0.000021382704,0.000021378974,0.000021305092,0.00002048652,0.000020670226,0.000020719604,0.00002074416,0.00001994811,0.00002024841,0.000020458854,0.00002047652,0.000019667768,0.000020688745,0.000020647805,0.000021122169,0.000020519605,0.000020861902,0.000020491228,0.00002066045,0.000019850757,0.000020218116,0.00002072842,0.000020612235,0.000019925408,0.00001901934,0.000019256564,0.00001912133,0.000019746532,0.000019711613,0.000020564681,0.000020820087,0.000021239526,0.000021028349,0.000021554888,0.000023200839,0.00002407245,0.00002537305,0.000018273979,0.00001098351,0.000013327941],[0.000015758198,0.000014425019,0.000012704357,0.000018931467,0.000030434325,0.00003218724,0.00002630787,0.000024019042,0.000020747722,0.000020982616,0.000019492489,0.000020065621,0.000018849516,0.000019648947,0.00001912153,0.000020094996,0.000019341667,0.000020428364,0.000019179663,0.000019828054,0.000019453102,0.000020950045,0.0000197162,0.000020532485,0.000019086443,0.000020298716,0.000018985018,0.000019404983,0.00001897347,0.000020299007,0.000019480076,0.000020021256,0.000018664701,0.000019980895,0.00001916423,0.000019982992,0.000019533596,0.000020803513,0.000019783383,0.00002051483,0.00001926044,0.00002051477,0.000019373474,0.000019729838,0.000019030282,0.000020047411,0.00001931962,0.000019899753,0.000018999906,0.000020418955,0.000019313116,0.00001991306,0.000019277491,0.000020518331,0.000019605615,0.000020582358,0.00001955421,0.000020878104,0.000019332336,0.000019602268,0.000019015804,0.000020054908,0.000019170298,0.000019735106,0.000018907884,0.000020322037,0.000019078161,0.00001964728,0.000019037523,0.00002040068,0.000019441659,0.000020383564,0.000019329626,0.00002070862,0.000019168709,0.00001951639,0.000018949584,0.000020078523,0.000019136818,0.00001970872,0.00001887776,0.000020327407,0.00001909478,0.000019696863,0.000019079216,0.000020443056,0.00001950132,0.0000204523,0.000019391053,0.000020763358,0.000019221521,0.000019558518,0.000018973651,0.000020070655,0.000019127403,0.000019686571,0.000018877812,0.000020314053,0.000019086587,0.000019683437,0.00001907376,0.000020426434,0.000019481637,0.000020418158,0.000019369152,0.000020742656,0.000019204646,0.000019530933,0.00001894597,0.000020052212,0.000019107732,0.000019665686,0.000018856996,0.000020294498,0.000019066194,0.000019667881,0.00001906423,0.000020417554,0.000019463178,0.000020394786,0.000019352314,0.00002073781,0.000019214885,0.000019544328,0.000018955205,0.000020069774,0.000019119816,0.000019667337,0.000018862967,0.000020310606,0.000019078343,0.000019670077,0.00001906581,0.000020419247,0.000019468876,0.00002039426,0.000019344103,0.000020722193,0.000019200415,0.000019526053,0.000018945462,0.000020054258,0.000019115805,0.000019673245,0.000018861654,0.00002029891,0.000019068868,0.000019663605,0.000019059267,0.00002041329,0.000019452898,0.000020383079,0.000019328243,0.000020702659,0.000019176498,0.000019516727,0.000018937695,0.000020058274,0.000019112651,0.000019680996,0.000018858489,0.000020298796,0.000019071449,0.000019674633,0.000019074887,0.00002043569,0.000019481135,0.000020434032,0.000019372903,0.000020743171,0.000019204315,0.000019544534,0.000018961658,0.000020072703,0.00001911947,0.000019668874,0.000018853525,0.000020294903,0.000019058576,0.000019649584,0.00001906385,0.000020445863,0.000019557829,0.000020551466,0.000019495372,0.000020913096,0.000019232815,0.000019496914,0.000018848132,0.00002001637,0.000019086443,0.000019578356,0.000018701796,0.00002012125,0.000018848832,0.000019293824,0.000018775816,0.000020206839,0.000019402152,0.00002031454,0.0000192783,0.000020601623,0.000019096346,0.000019538607,0.000018919915,0.000020242096,0.00001917562,0.000019859714,0.000019032967,0.000020336343,0.00001919743,0.000019681785,0.000019190145,0.000020457977,0.000020040588,0.00002112376,0.000020145479,0.000021401373,0.000019894496,0.000020233372,0.000019441974,0.000020523908,0.000019916231,0.000020245088,0.000019071067,0.000020288518,0.000019205672,0.000019702404,0.000019054924,0.00002046338,0.000019916404,0.000020924428,0.000019545652,0.0000206833,0.000019104033,0.000019847084,0.00001894915,0.000020535537,0.000019961315,0.000020385996,0.000018607632,0.000019232595,0.000018962002,0.000019266263,0.00001914527,0.000019974113,0.000020637528,0.000021626707,0.000021427184,0.000022195176,0.000023620392,0.000025226598,0.000024063887,0.000016548254,0.000011067647,0.000013457307],[0.000015646876,0.000014220614,0.0000115926405,0.000017176037,0.000030295245,0.00003497259,0.000030746938,0.000025327818,0.000022803171,0.000021915399,0.000021459065,0.000019838777,0.000020355437,0.000019613788,0.000020483238,0.000019566372,0.000020871714,0.000020450292,0.000021080516,0.00001938682,0.000020849431,0.000020519701,0.000021531036,0.000019973084,0.000020673853,0.000019792593,0.000020335938,0.00001929055,0.00002049596,0.00002042106,0.000021535328,0.000020031914,0.000020541278,0.000019763942,0.000020607733,0.000019554695,0.000021129585,0.000020748314,0.000021925329,0.000020331632,0.000021035088,0.000020449921,0.000021136091,0.000019703362,0.000020561347,0.000020350468,0.000021234624,0.000019924857,0.00002052299,0.000019961564,0.000020720494,0.000019254123,0.000020610563,0.000020201309,0.00002130548,0.000020073468,0.000021078504,0.000020415742,0.000020819152,0.000019324447,0.000020319827,0.000020110985,0.00002069421,0.000019447889,0.000020216285,0.00001971936,0.000020368176,0.000018817958,0.000020245261,0.00001989854,0.000021059677,0.00001980362,0.000020823223,0.000020137642,0.000020611016,0.000019171415,0.000020247193,0.000020083731,0.000020695688,0.000019413608,0.00002023812,0.000019691359,0.000020371768,0.000018887466,0.000020299549,0.000019946056,0.00002112376,0.00001988543,0.000020914093,0.000020222764,0.000020682748,0.00001922856,0.000020277028,0.000020094709,0.00002066524,0.000019390996,0.00002021532,0.000019679888,0.00002035437,0.000018876553,0.00002028074,0.00001993862,0.000021095257,0.000019856436,0.000020872432,0.00002019372,0.000020659269,0.00001920536,0.000020256928,0.000020071688,0.000020648218,0.00001937148,0.000020197649,0.000019649546,0.000020324693,0.000018853183,0.000020268038,0.00001992957,0.000021083046,0.000019832214,0.000020842337,0.0000201845,0.000020673833,0.000019227791,0.000020272968,0.00002008852,0.000020669731,0.000019383326,0.00002021081,0.000019668389,0.000020341018,0.000018860736,0.000020267207,0.000019927746,0.0000210736,0.00001983382,0.00002083244,0.000020165528,0.000020647272,0.000019208272,0.000020255595,0.000020076512,0.000020666519,0.000019387078,0.000020214473,0.000019652582,0.000020330159,0.000018850864,0.000020265177,0.000019926281,0.000021067652,0.000019820698,0.000020825528,0.000020148169,0.000020624071,0.000019189505,0.000020250805,0.000020076473,0.000020664924,0.000019390387,0.000020211657,0.000019651907,0.000020328802,0.000018860215,0.000020285654,0.000019942632,0.000021104592,0.000019868901,0.000020887186,0.000020192661,0.00002066443,0.000019220239,0.000020267342,0.000020088768,0.000020655269,0.000019378298,0.000020190831,0.000019664112,0.00002031599,0.000018836343,0.000020265583,0.000019944744,0.000021173939,0.000019967028,0.00002103208,0.000020345404,0.000020743686,0.000019219833,0.000020135876,0.000020020969,0.000020554839,0.000019337462,0.000020012094,0.000019516838,0.000020121095,0.00001850646,0.000019959356,0.000019806357,0.000021133736,0.000019797764,0.000020837248,0.000020166739,0.000020607715,0.000019349765,0.000020465295,0.000020324615,0.000020885553,0.000019772198,0.000020459674,0.000019871497,0.000020218751,0.000019196168,0.000020254436,0.000020228028,0.000021479374,0.000020851461,0.00002165845,0.000021279851,0.00002161116,0.000020512189,0.000020930494,0.000020904361,0.000021563586,0.00002045308,0.000020582613,0.000019843092,0.000020321262,0.000019000649,0.000020077488,0.000019800143,0.000021120015,0.0000204508,0.000021027547,0.000020252368,0.000020439704,0.000019666755,0.000020161317,0.000020636722,0.000021511867,0.000020461957,0.000019918987,0.000019242061,0.000019625499,0.00001891057,0.000019495501,0.000019907156,0.00002065854,0.000020718775,0.000020905181,0.000021465225,0.000024766798,0.000024373023,0.000023569719,0.000015795376,0.00001075907,0.000012876489],[0.000015839316,0.000013447686,0.0000118230855,0.00001613107,0.000029819092,0.000032956483,0.000027869964,0.000024276429,0.0000214855,0.000020819014,0.000019388075,0.000019360084,0.000018706094,0.000019115641,0.0000185066,0.000019182442,0.000019288655,0.000020215262,0.000019014135,0.000019160796,0.000019105528,0.00002038205,0.000019422423,0.000019957928,0.000019055324,0.000019954541,0.000018785844,0.000019309324,0.00001891279,0.000020241518,0.000019502604,0.00001995066,0.000019284773,0.000020065889,0.000019153524,0.000019725641,0.000019590121,0.000020769716,0.000019940559,0.00002025716,0.000019798312,0.000020724603,0.000019639205,0.00001982102,0.00001937414,0.000020153608,0.000019522442,0.000019612478,0.00001925089,0.000020068148,0.000019002353,0.000019316412,0.000019194245,0.000020447524,0.000019617117,0.000020368117,0.000019825538,0.000020903346,0.000019355284,0.000019575667,0.000019331193,0.000020316475,0.000019168527,0.000019341373,0.000018913457,0.00001991496,0.000018663668,0.000018975787,0.000018934426,0.000020379424,0.000019386893,0.00002020919,0.000019559076,0.000020715219,0.000019148501,0.00001947493,0.000019221172,0.000020342903,0.000019136089,0.000019387151,0.000018916253,0.000019946836,0.000018702991,0.000019068339,0.000019008334,0.00002045669,0.000019460598,0.000020292136,0.000019643496,0.00002078977,0.000019215362,0.000019518531,0.000019265986,0.000020348993,0.00001913337,0.000019362504,0.000018902781,0.000019920679,0.000018682134,0.000019043151,0.000019003586,0.000020434501,0.000019434003,0.0000202481,0.000019615602,0.000020753836,0.000019183979,0.000019477493,0.000019231293,0.000020313493,0.00001910263,0.000019334788,0.000018878749,0.000019892334,0.00001865116,0.000019014007,0.00001898205,0.000020418584,0.000019418645,0.000020225096,0.000019593672,0.00002074331,0.000019195179,0.00001949751,0.0000192454,0.000020329888,0.000019118266,0.000019350948,0.000018890709,0.000019900568,0.000018659628,0.00001901747,0.000018983315,0.000020417514,0.000019414441,0.000020223786,0.000019588233,0.000020726955,0.000019175455,0.000019483066,0.000019239364,0.00002032543,0.000019117682,0.000019353236,0.000018890365,0.000019892468,0.000018650537,0.000019011144,0.000018978211,0.000020418702,0.0000194075,0.00002021696,0.000019576768,0.00002071921,0.000019155259,0.000019471328,0.000019228964,0.000020331012,0.00001911947,0.000019368135,0.000018892906,0.000019904992,0.000018658862,0.000019027051,0.0000189915,0.000020445941,0.000019447629,0.000020277434,0.000019623367,0.000020768843,0.000019202758,0.000019517862,0.000019255058,0.000020345211,0.000019127989,0.000019355395,0.00001888988,0.000019912624,0.000018660465,0.000019016747,0.000018995413,0.000020474117,0.00001954444,0.000020402702,0.000019749132,0.000020928917,0.000019270434,0.000019477047,0.000019144467,0.000020183477,0.000019028339,0.000019185662,0.000018729943,0.000019699868,0.000018540482,0.000018782799,0.000018829052,0.00002032254,0.000019467874,0.000020165471,0.000019611656,0.000020674503,0.000019247384,0.000019631527,0.000019509227,0.00002062118,0.000019381292,0.000019689669,0.00001931763,0.00002014375,0.000019039031,0.00001938728,0.00001948091,0.000020723834,0.000020222897,0.000021202977,0.000020905958,0.000021788032,0.000020377325,0.000020397158,0.000019853844,0.000020513009,0.000019806206,0.00001973298,0.000019149067,0.000019639225,0.000018723405,0.000019103285,0.00001890976,0.000020465137,0.00001992214,0.000021362097,0.000020345171,0.000021186806,0.00001961143,0.000020391264,0.000019533745,0.000020827712,0.000020014824,0.000020333127,0.00001929018,0.000019469564,0.00001977184,0.000019802712,0.00001982775,0.00002067912,0.000020626923,0.000021399268,0.00002077536,0.000022082771,0.000023514622,0.000026366417,0.00002449615,0.00001661283,0.000010276304,0.000013092652],[0.000015485926,0.000012959446,0.000010072346,0.000015996919,0.000027664873,0.000034033837,0.000028278293,0.0000248698,0.000022372751,0.00002147579,0.000020634458,0.000019939227,0.000020307836,0.000019915758,0.000020106,0.000019701429,0.000020603331,0.000020608813,0.000020491309,0.000019615509,0.000020766685,0.000020887685,0.000021019307,0.000019972284,0.000020779798,0.000020445574,0.000020745527,0.000019739378,0.000020368312,0.000020575744,0.000020725078,0.00001996027,0.000020688663,0.00002061194,0.000021115944,0.00002027492,0.000021270012,0.000021160678,0.00002132308,0.000020388503,0.00002128454,0.000021167398,0.00002169295,0.000020534813,0.000020845138,0.000020765892,0.000020518803,0.000019830775,0.000020527588,0.00002071354,0.000021112222,0.000019846744,0.00002086228,0.000020883102,0.000021157228,0.00002026309,0.000021396289,0.00002101081,0.000021331563,0.000019919404,0.000020821039,0.00002079211,0.000020612824,0.000019482268,0.000020253083,0.000020332407,0.000020727628,0.000019393032,0.000020817564,0.000020734984,0.000021180342,0.000020089248,0.000021259062,0.000020757814,0.00002115989,0.000019792158,0.00002079796,0.000020776371,0.00002066916,0.00001947926,0.000020321591,0.000020330624,0.000020768468,0.000019505394,0.000020886608,0.000020773756,0.000021228956,0.00002015403,0.000021332618,0.000020817544,0.000021213695,0.000019837473,0.00002082773,0.000020798574,0.000020667465,0.000019470064,0.000020310645,0.00002031454,0.000020729407,0.000019482399,0.000020863774,0.000020753854,0.000021191758,0.000020120518,0.000021294347,0.000020788957,0.00002117606,0.00001979431,0.000020784377,0.000020758347,0.000020628555,0.00001944316,0.000020282114,0.00002028695,0.000020698473,0.000019463976,0.000020844363,0.000020738978,0.000021173475,0.000020110027,0.000021282429,0.000020788164,0.000021185007,0.00001981344,0.000020792742,0.000020768091,0.000020638534,0.000019452618,0.000020292968,0.000020288711,0.000020698235,0.000019463474,0.00002084311,0.000020734806,0.000021164129,0.000020104542,0.00002127344,0.000020770707,0.000021164371,0.000019801333,0.000020799389,0.000020773974,0.00002064308,0.000019456182,0.000020293453,0.000020284939,0.000020701294,0.000019459112,0.000020839812,0.000020727075,0.000021162132,0.000020098101,0.00002126701,0.000020754745,0.000021149503,0.000019786421,0.000020791871,0.000020773597,0.000020648415,0.00001946342,0.000020304118,0.000020291633,0.000020712077,0.000019472312,0.000020861407,0.00002075447,0.00002120427,0.000020139985,0.000021315802,0.000020798892,0.000021199196,0.00001982741,0.000020808118,0.000020789334,0.000020663525,0.000019472609,0.00002028403,0.000020307449,0.00002070872,0.000019452304,0.000020863197,0.000020770764,0.000021282023,0.00002025374,0.000021415315,0.000020950225,0.000021227457,0.000019755103,0.000020563091,0.000020576334,0.000020328685,0.000019281519,0.000019890647,0.000020051179,0.000020478024,0.000019285031,0.00002059406,0.000020727906,0.000021209347,0.000020052614,0.000021317814,0.000020857826,0.000021175374,0.000020062082,0.000021345888,0.000021020109,0.00002090205,0.000019850264,0.000020807382,0.000020508804,0.000020860709,0.000020142674,0.000021344036,0.00002124536,0.000021577696,0.000021177415,0.00002243501,0.000022157046,0.00002208233,0.000021095193,0.000021307165,0.00002132662,0.000020764983,0.000020028188,0.000020192238,0.000020317619,0.00002041656,0.000019651627,0.00002087044,0.00002078543,0.00002162186,0.000021030215,0.000022187178,0.000021264048,0.000021482407,0.000020777956,0.000021185757,0.000021202552,0.000020799407,0.000020421487,0.000019851514,0.000020176396,0.000020623756,0.000020790563,0.00002071595,0.00002131334,0.000020990321,0.000021256445,0.0000211586,0.000021447546,0.00002408331,0.00002471046,0.00002534652,0.000017484874,0.0000107926535,0.000013016224],[0.000014942641,0.000011986021,0.00001041248,0.000013836052,0.000025390818,0.000033221193,0.000026301446,0.000024082827,0.000021077056,0.00002091908,0.000019670731,0.000019987376,0.000018972403,0.000019445162,0.000019216206,0.000019812232,0.000019564974,0.000020537203,0.000019404335,0.000019887591,0.00001949684,0.000020604355,0.000019373843,0.000019615863,0.000018819503,0.00002013338,0.000019087734,0.000019882984,0.000019081619,0.000020320624,0.000018997189,0.000019425703,0.00001880142,0.000020157624,0.00001935462,0.000020226176,0.00001970964,0.000020692434,0.000019434263,0.000019791309,0.000019219908,0.000020610996,0.000019772782,0.000020235842,0.000019555104,0.000020087811,0.00001885642,0.000019086714,0.000018723122,0.000020135858,0.000019213165,0.000019728877,0.00001924188,0.000020259651,0.000019019939,0.000019622525,0.000019040102,0.000020433838,0.000019197267,0.000019620447,0.000019137402,0.000020092984,0.00001871432,0.000018826107,0.000018311714,0.000019680585,0.000018656994,0.000019207795,0.0000189425,0.000020139563,0.00001888815,0.000019512316,0.0000187907,0.000020229012,0.000018939882,0.000019444495,0.000018995159,0.00002006539,0.000018661567,0.000018832141,0.000018284141,0.000019721108,0.000018693112,0.000019313928,0.000018996301,0.000020199306,0.000018940314,0.000019583116,0.000018864801,0.000020302434,0.000019001156,0.000019489906,0.000019027468,0.000020073181,0.000018677021,0.000018841502,0.000018290577,0.000019699042,0.000018672392,0.000019284258,0.00001897948,0.000020170568,0.000018921502,0.000019553034,0.000018837081,0.000020264657,0.000018970033,0.000019440324,0.000018991665,0.000020038944,0.000018647692,0.000018810117,0.000018266905,0.000019671952,0.000018650964,0.000019260955,0.000018968567,0.000020155838,0.000018904007,0.00001953339,0.00001882837,0.000020257043,0.0000189749,0.00001945184,0.000018995866,0.000020045214,0.000018650466,0.000018814479,0.000018268907,0.00001967362,0.00001864296,0.00001925313,0.000018963612,0.00002015063,0.00001889952,0.000019528976,0.000018813635,0.00002024366,0.000018958368,0.00001944036,0.000019002551,0.000020053778,0.000018655252,0.000018816163,0.000018272967,0.000019677336,0.000018649222,0.000019254123,0.000018955927,0.00002013814,0.000018883647,0.0000195144,0.000018794231,0.000020219271,0.000018932027,0.000019419089,0.000018984203,0.000020043359,0.000018646786,0.000018812001,0.0000182668,0.000019682235,0.000018657314,0.000019274954,0.000018974792,0.000020170663,0.000018908948,0.000019549865,0.000018830506,0.000020268482,0.00001897832,0.000019470734,0.000019007608,0.000020060646,0.000018669774,0.000018824527,0.00001827025,0.00001968353,0.000018638802,0.000019247347,0.00001895439,0.000020172874,0.00001897948,0.000019658524,0.000018965493,0.00002042587,0.000019025236,0.000019385876,0.000018850109,0.000019871648,0.000018476445,0.000018586155,0.000018015635,0.000019424979,0.000018423923,0.000019020883,0.000018791596,0.000020092564,0.000018961442,0.000019523335,0.000018901863,0.000020338459,0.000019239915,0.000019753183,0.00001928516,0.000020268038,0.000018994617,0.00001918881,0.000018744935,0.000020115935,0.000019523539,0.00002029651,0.000019834804,0.000020862799,0.000019914067,0.000020716681,0.000020341,0.000021761763,0.000020861047,0.00002124285,0.000020275134,0.000020958858,0.00001978097,0.00001960756,0.00001879925,0.000019845003,0.000018998204,0.000019739378,0.000019234374,0.000020619293,0.000019662086,0.00002057806,0.000019578149,0.000020929836,0.000019886153,0.000020976375,0.00001990442,0.000021108555,0.000019453657,0.000019701447,0.00001883304,0.000019646117,0.000020337702,0.000020565092,0.000020423455,0.000020871912,0.000020810894,0.000021546975,0.00002070542,0.000021196183,0.000022522128,0.00002532934,0.000024922461,0.000016821916,0.000010709595,0.000013286417],[0.000015319487,0.000011152781,0.000010281255,0.000013757463,0.000026751239,0.000036842408,0.000029748026,0.00002463465,0.000022338021,0.000021610294,0.00002129203,0.000019851306,0.00002007071,0.000019608606,0.000020180705,0.000019481598,0.000020930494,0.00002059956,0.000021542497,0.000019707799,0.000021065944,0.000020494532,0.000020845178,0.000019284294,0.000020154164,0.00001939268,0.000020361747,0.00001908111,0.000020352427,0.000019785231,0.000020242695,0.000018822124,0.000019892164,0.000019374196,0.000020438416,0.000019414922,0.00002101101,0.000020396164,0.000020916987,0.000019417015,0.000020407742,0.000019951096,0.000020973333,0.000019598829,0.000020630916,0.000019958976,0.000020093577,0.000018735464,0.000019648947,0.000019430223,0.000020510448,0.000019002895,0.000020369827,0.000019731568,0.0000201932,0.00001879864,0.000020019193,0.000019458092,0.000020430896,0.000018764986,0.00001997379,0.000019515217,0.000019741883,0.000018271312,0.000019177376,0.000018953378,0.000019978648,0.000018416617,0.000019952582,0.000019461972,0.000020094229,0.00001858979,0.000019894496,0.00001919397,0.000020231828,0.000018540959,0.000019806848,0.000019414885,0.00001970528,0.00001820779,0.000019199022,0.00001895213,0.000020022058,0.000018481114,0.000020036307,0.000019487601,0.000020158568,0.00001866438,0.00001997356,0.000019270894,0.000020302492,0.000018599756,0.000019833065,0.000019432002,0.00001970543,0.000018227873,0.000019202867,0.000018949042,0.000019990692,0.000018464501,0.000020015339,0.000019463605,0.000020140656,0.000018658258,0.000019946665,0.000019241457,0.000020267651,0.000018571025,0.000019810683,0.000019416662,0.000019687097,0.000018204872,0.000019184143,0.000018932515,0.000019961393,0.000018443701,0.00002000303,0.000019466166,0.000020129002,0.000018638748,0.000019931966,0.00001924287,0.000020276235,0.000018580095,0.000019822042,0.000019419718,0.000019695473,0.000018203935,0.000019184383,0.000018924751,0.000019951782,0.000018438303,0.000020002515,0.000019458594,0.00002012359,0.00001863466,0.000019921361,0.000019222052,0.000020252388,0.00001856035,0.000019814159,0.000019427758,0.000019704697,0.00001821029,0.000019193256,0.000018941091,0.000019970552,0.00001844801,0.00002000078,0.000019449855,0.0000201046,0.000018611732,0.000019902942,0.000019201148,0.000020227526,0.000018537281,0.000019789932,0.00001940328,0.000019681842,0.000018187624,0.000019173023,0.000018922765,0.000019976818,0.000018454768,0.000020021276,0.00001946275,0.000020128024,0.000018627767,0.000019935977,0.000019232266,0.000020271093,0.000018581813,0.00001981382,0.000019411424,0.000019686084,0.000018207025,0.000019167175,0.000018920582,0.000019961792,0.00001840847,0.000019975332,0.000019433613,0.000020164316,0.00001875012,0.000020026488,0.00001938314,0.000020307778,0.000018538572,0.000019619829,0.00001918023,0.000019347663,0.000017984428,0.000018871531,0.000018675668,0.000019725923,0.00001817247,0.000019671126,0.000019297873,0.000020117084,0.000018654218,0.000020014251,0.00001950186,0.000020581494,0.000018983714,0.000020173875,0.000019533913,0.000019871364,0.000018749584,0.00001973106,0.0000194673,0.000020707494,0.000019659687,0.000021026846,0.000020247,0.000020979514,0.00002004122,0.00002124384,0.000021002415,0.000022292226,0.000020980577,0.000021457468,0.000020773698,0.000020883303,0.00001963883,0.000019966095,0.000019459892,0.000020282985,0.000018880928,0.000020353029,0.000019621495,0.000020339894,0.000019248577,0.000020543237,0.000019909738,0.0000208484,0.000019776253,0.000020794865,0.000020357767,0.000020167297,0.000019182808,0.000019069848,0.000019162933,0.000020135281,0.000019917201,0.000020427624,0.000020061163,0.000020405096,0.000020278943,0.000019957186,0.00002018673,0.000022405311,0.000023979288,0.000026256388,0.000017027021,0.000011269544,0.000012868373],[0.000015712818,0.00001226138,0.000011415996,0.000015041049,0.000028009556,0.000034739245,0.000027093089,0.000023292907,0.00002045228,0.00002059732,0.00001943226,0.000019611169,0.00001887983,0.00001917328,0.0000185695,0.00001906385,0.000019063758,0.000020082258,0.00001923907,0.000019279201,0.000019436264,0.00002021557,0.000019220804,0.000019284791,0.000018286688,0.000019210634,0.000018160325,0.000018639726,0.000018291972,0.000019405225,0.000018277273,0.000018757615,0.000018053628,0.000019498902,0.000018656,0.00001950973,0.000019382253,0.000020632353,0.000019261632,0.000019544943,0.000018706987,0.000019957186,0.00001878581,0.000019054887,0.00001891499,0.000019682404,0.000018558438,0.00001873439,0.000018145403,0.000019496654,0.000018486686,0.00001879217,0.000018689689,0.00001969271,0.000018627856,0.00001895168,0.00001833567,0.000019736895,0.000018454626,0.000018723085,0.000018464854,0.000019502288,0.00001815082,0.000018319624,0.000017779297,0.000019138552,0.000018085784,0.00001841702,0.000018373374,0.000019604606,0.000018414561,0.000018777122,0.000018154715,0.000019596886,0.000018287368,0.000018568138,0.000018281195,0.00001945234,0.000018043627,0.000018288118,0.000017747874,0.000019175273,0.000018121746,0.000018498553,0.000018428598,0.000019678444,0.000018481502,0.000018865252,0.000018224988,0.000019671952,0.000018351431,0.00001862576,0.00001831351,0.00001946986,0.000018053197,0.000018298462,0.000017766417,0.000019172365,0.000018106994,0.000018475723,0.00001841867,0.00001966623,0.000018477027,0.000018852428,0.000018221059,0.000019653744,0.000018335582,0.000018594488,0.00001829916,0.00001944138,0.000018037159,0.000018268176,0.000017751225,0.000019153615,0.000018091785,0.000018452762,0.000018407187,0.000019651494,0.00001846748,0.000018829609,0.00001821055,0.00001964726,0.000018337436,0.000018598834,0.000018302408,0.000019442976,0.000018040926,0.00001827438,0.00001775192,0.000019153433,0.00001808587,0.000018451707,0.000018403764,0.000019652618,0.000018463412,0.000018828621,0.000018207651,0.000019638492,0.00001832228,0.000018583267,0.00001829684,0.0000194462,0.000018049015,0.000018278615,0.000017758268,0.000019167337,0.000018102935,0.00001845709,0.00001840559,0.000019645162,0.000018447447,0.0000188042,0.00001818164,0.000019618783,0.000018301604,0.000018563553,0.000018275356,0.000019429723,0.000018028028,0.00001825677,0.000017731278,0.000019144867,0.000018093942,0.000018462653,0.000018412471,0.000019657098,0.000018459643,0.000018830506,0.000018198138,0.000019642033,0.000018326284,0.00001860506,0.000018301307,0.000019448427,0.000018034063,0.000018267445,0.00001773253,0.000019145506,0.000018077817,0.000018447343,0.000018389783,0.000019679419,0.000018548651,0.000018976838,0.000018319624,0.00001977516,0.000018359904,0.000018536044,0.000018100242,0.000019165693,0.000017760065,0.000018030416,0.00001750588,0.000018989816,0.000017975546,0.000018443208,0.000018223944,0.00001969752,0.000018513467,0.00001905874,0.000018465118,0.000019924819,0.000018719746,0.000019070048,0.000018599578,0.000019678275,0.000018333712,0.000018654628,0.000018359378,0.000019671314,0.000018928777,0.000019593559,0.000019600475,0.000020714171,0.00001974561,0.000020425674,0.000019897001,0.000021226708,0.000020143174,0.000020370411,0.000019791043,0.000020256404,0.00001926494,0.00001921923,0.000018644294,0.000019421255,0.00001846394,0.000018757113,0.000018554207,0.000019840896,0.00001889442,0.000019698327,0.000018998167,0.000020151418,0.00001877859,0.000019548857,0.000018748422,0.000020116586,0.000018819519,0.000019118941,0.000018038656,0.00001924096,0.000019231642,0.000020031799,0.000019797199,0.000020376063,0.000020262705,0.00002139339,0.000020732274,0.000021426593,0.000021898059,0.000024873572,0.000025328953,0.000018311992,0.000010997492,0.000013538249],[0.000015420641,0.000013288192,0.000010551868,0.000017095816,0.000028462704,0.000036406425,0.000028728256,0.000023876853,0.000021624644,0.000021269261,0.000020745703,0.000019948262,0.000020336905,0.000019808718,0.000020121557,0.000019668032,0.000020420279,0.000020450214,0.00002042883,0.000019631565,0.000020840229,0.000020919797,0.000020860709,0.000019800409,0.000020062904,0.00001979769,0.00001978929,0.000018821262,0.00001962185,0.000019716144,0.00002007879,0.000019117446,0.000019942916,0.000019947729,0.000020620846,0.000019810757,0.000021001735,0.000020730278,0.00002099707,0.000019958425,0.00002065655,0.000020475836,0.000020625075,0.00001944928,0.000020093119,0.000020227237,0.000020257661,0.000019414072,0.0000202459,0.000020245765,0.000020601998,0.00001930435,0.000020240417,0.000020258183,0.000020571584,0.00001954308,0.000020427311,0.000020304351,0.000020505304,0.000019108753,0.0000199037,0.000020043244,0.000020194606,0.000019027395,0.000019935387,0.000019922938,0.00002035235,0.000019011397,0.000020182479,0.000020210193,0.000020548234,0.000019358386,0.000020330235,0.000020131518,0.000020433428,0.000018981633,0.000019824518,0.000019991701,0.000020162086,0.000018984276,0.000019926074,0.000019910667,0.000020396514,0.00001906634,0.000020257834,0.000020234222,0.000020608322,0.00001942872,0.000020397198,0.000020184998,0.000020491874,0.000019030282,0.000019857327,0.000020014937,0.000020170912,0.00001899583,0.000019935065,0.000019910667,0.000020373012,0.000019060431,0.000020256366,0.000020230516,0.000020604628,0.000019438823,0.000020399082,0.000020186117,0.000020477537,0.000019021536,0.00001983592,0.000020003947,0.000020146997,0.000018971823,0.000019912377,0.000019902773,0.000020359203,0.00001904842,0.00002023046,0.000020224497,0.000020589208,0.000019420719,0.00002038127,0.000020178917,0.00002046828,0.000019020374,0.000019829624,0.000019997078,0.000020142465,0.000018979172,0.000019918492,0.000019901803,0.000020352369,0.000019048965,0.00002023565,0.000020223246,0.000020591213,0.000019419163,0.000020382691,0.000020176665,0.000020460122,0.00001900828,0.000019823761,0.000019997195,0.000020147092,0.000018982828,0.000019921134,0.000019905638,0.000020369807,0.000019057414,0.000020237503,0.000020223015,0.000020579788,0.000019399451,0.00002035897,0.00002015405,0.00002044103,0.000018988567,0.000019804505,0.000019983163,0.000020132977,0.000018962292,0.000019900039,0.000019890173,0.000020358562,0.00001904546,0.000020236075,0.000020220275,0.000020587462,0.000019410609,0.000020369807,0.000020163567,0.00002045989,0.000019013067,0.000019830813,0.000020000092,0.000020147978,0.000018965402,0.000019896754,0.0000198911,0.00002036262,0.000019027486,0.000020240592,0.000020230364,0.000020646958,0.000019524434,0.000020432532,0.000020275384,0.000020409221,0.000018902098,0.000019539948,0.000019701616,0.000019819225,0.000018697017,0.000019614816,0.000019764037,0.000020278247,0.000019020374,0.000020166182,0.000020195144,0.000020767557,0.000019667787,0.00002066591,0.000020399628,0.000020589994,0.000019368412,0.000020258802,0.000020112635,0.000020224692,0.000019336669,0.000020231868,0.000020203737,0.000020416073,0.000019690195,0.0000209191,0.00002078196,0.00002120245,0.00002064812,0.000021538634,0.00002133567,0.000021161424,0.000020409729,0.000020591702,0.000020852176,0.00002061766,0.000019909643,0.000020319518,0.000020489451,0.000020264482,0.000019159206,0.00002026226,0.00002008601,0.00002081804,0.000020031417,0.000020970154,0.000020404084,0.000020261603,0.000019392144,0.000019797746,0.000020241132,0.000020158624,0.000019394603,0.000018929624,0.000019181254,0.00001938083,0.000019915586,0.000020015357,0.000020660313,0.000020880216,0.000021292215,0.000021167742,0.000021642449,0.000022984885,0.000024289884,0.000025560052,0.000019092613,0.000011392613,0.00001348997],[0.000015268177,0.000015683072,0.00001186231,0.00001725341,0.00002927835,0.00003439775,0.000027551243,0.00002440931,0.000020883519,0.000021089965,0.000019682817,0.000020110565,0.000018979026,0.000019723611,0.000019342719,0.000020194317,0.000019532014,0.00002047521,0.000019427905,0.000019763525,0.00001967848,0.000020800358,0.000019621439,0.00002006212,0.000018738017,0.000019729367,0.000018455947,0.000018680726,0.00001827588,0.000019550947,0.000018774921,0.00001959496,0.000018461878,0.00001989205,0.000019051164,0.000019925199,0.000019442326,0.000020742242,0.000019523279,0.000020282114,0.000019140705,0.000020380397,0.00001895448,0.000019072104,0.000018561499,0.000019581119,0.000018911473,0.000019614534,0.00001890343,0.00002019112,0.000019025218,0.000019131472,0.000018735804,0.000019665013,0.000019061648,0.000019678087,0.000018994906,0.000020212276,0.000018815088,0.000018826431,0.000018366978,0.000019559002,0.000018756327,0.000019265766,0.000018601175,0.00001989112,0.000018772467,0.00001895815,0.000018687675,0.000019740792,0.000018957717,0.00001948277,0.00001881916,0.000020080379,0.000018694449,0.00001872023,0.000018276452,0.000019541887,0.000018702063,0.000019247494,0.000018563305,0.00001988469,0.000018778108,0.000019015859,0.000018724924,0.000019787025,0.000019011053,0.000019567698,0.000018879686,0.000020146766,0.000018751765,0.00001877406,0.000018311452,0.000019571802,0.000018730103,0.0000192636,0.000018572584,0.000019873469,0.00001877372,0.000019017163,0.000018729765,0.000019786004,0.000019018433,0.00001957785,0.000018894942,0.000020152414,0.00001874953,0.000018763429,0.000018303175,0.000019554453,0.00001871184,0.00001923331,0.000018557215,0.000019862859,0.000018766346,0.00001899545,0.00001871357,0.000019771858,0.000019001083,0.000019551318,0.000018874356,0.000020133859,0.000018729925,0.00001874549,0.000018288432,0.000019541645,0.000018701474,0.000019234392,0.000018555198,0.000019857214,0.00001875983,0.000018999834,0.000018715766,0.000019772971,0.000018995921,0.000019542913,0.000018870001,0.000020130674,0.000018728442,0.000018739054,0.000018284265,0.000019543528,0.000018707451,0.00001923898,0.000018561022,0.000019866247,0.00001876878,0.00001900239,0.000018719336,0.000019775536,0.000018989418,0.000019527486,0.000018853128,0.00002011133,0.000018713465,0.000018723193,0.000018269691,0.000019528885,0.000018691117,0.000019218973,0.000018545134,0.000019852536,0.00001875647,0.000018990342,0.000018708968,0.000019768484,0.000018990106,0.000019538458,0.000018858289,0.000020127716,0.00001873155,0.000018749137,0.000018297189,0.000019558927,0.000018706827,0.000019227607,0.000018550421,0.000019865964,0.000018751765,0.000018990288,0.000018696517,0.000019785892,0.00001907034,0.00001968629,0.000018985089,0.000020267324,0.000018738501,0.000018654184,0.000018085628,0.000019314793,0.000018453413,0.000018953018,0.00001829745,0.000019772293,0.000018685465,0.000019084877,0.000018619969,0.000019996525,0.000019248266,0.000019966019,0.000019026797,0.000020466934,0.000019071904,0.000019489906,0.000018888402,0.000020272193,0.00001922174,0.000019781044,0.000018952456,0.000020195106,0.000019125908,0.000019642051,0.000019180778,0.000020379057,0.000019923185,0.000020903924,0.00002002435,0.000021344607,0.000019852707,0.000020218347,0.0000193243,0.000020560581,0.00001976298,0.000020312116,0.000019351297,0.000020580492,0.000019267585,0.000019467372,0.000018901213,0.000020080839,0.000019582612,0.000020454698,0.000019317242,0.000020470075,0.000018871477,0.000019325,0.000018321494,0.000019850077,0.000019003837,0.000019662873,0.000017899576,0.000018957897,0.00001848293,0.000019439638,0.000019168288,0.00002034003,0.000020563622,0.000021720833,0.000021497408,0.000022434324,0.000023601566,0.000025735006,0.00002493763,0.000017271865,0.000011423369,0.000013641839],[0.000015868965,0.000017393737,0.000013106356,0.000019015622,0.000032248074,0.000035812907,0.00003190179,0.000025223231,0.00002283688,0.00002180177,0.00002154757,0.00001989909,0.00002039603,0.000019735011,0.000020567446,0.000019877316,0.000021084214,0.000020721956,0.000021346683,0.000019764318,0.000021175918,0.000020788737,0.000021585414,0.00001986032,0.00002049287,0.000019516763,0.000019897665,0.000018574214,0.000019824764,0.000019585208,0.00002071749,0.00001928345,0.000020266916,0.000019529534,0.000020543452,0.000019402152,0.000021042633,0.000020544763,0.000021658243,0.000019974037,0.000020892583,0.000020036596,0.00002066918,0.00001892466,0.000020035524,0.000019778157,0.000020753125,0.000019553314,0.000020503565,0.000019891651,0.000020751422,0.000018974719,0.000020096186,0.00001968781,0.000020936604,0.000019502642,0.000020588364,0.000019940939,0.000020584772,0.000018616276,0.000019763092,0.000019560326,0.000020629068,0.000019208199,0.000020238756,0.00001960711,0.000020506399,0.00001879909,0.000020078274,0.000019681991,0.00002085876,0.000019336578,0.000020472593,0.000019772106,0.00002048238,0.000018496985,0.000019699699,0.000019500447,0.000020598342,0.00001916392,0.000020225945,0.00001955296,0.000020481539,0.000018828747,0.000020128215,0.00001970017,0.000020926043,0.000019411369,0.000020544077,0.000019831192,0.000020542022,0.000018549996,0.00001972918,0.000019535812,0.000020617052,0.000019182846,0.000020228394,0.000019548392,0.00002046584,0.000018827885,0.000020120999,0.000019693969,0.00002091962,0.000019418034,0.00002056017,0.000019828318,0.000020538318,0.000018548688,0.000019725265,0.000019528268,0.000020594372,0.000019166388,0.000020215244,0.000019542576,0.000020455907,0.000018823146,0.000020115014,0.000019692805,0.000020905021,0.000019395176,0.000020542393,0.000019812514,0.000020520367,0.000018526784,0.000019706633,0.000019512205,0.000020582633,0.000019159845,0.000020213933,0.000019532477,0.00002044183,0.00001882047,0.00002011202,0.000019684358,0.00002089613,0.000019387558,0.00002053078,0.000019809682,0.000020522599,0.000018524575,0.00001970699,0.00001951639,0.000020594787,0.00001916679,0.000020220525,0.000019542129,0.000020453705,0.000018825658,0.000020116875,0.00001969271,0.000020892225,0.000019376468,0.000020517393,0.000019799616,0.000020505226,0.000018506194,0.000019685182,0.000019499535,0.00002057865,0.000019150875,0.0000202042,0.00001953382,0.000020450525,0.00001880992,0.00002011018,0.000019682573,0.000020901252,0.000019390369,0.000020522226,0.000019813555,0.000020519525,0.000018527791,0.000019706427,0.000019521956,0.000020596712,0.000019157746,0.000020205933,0.000019542334,0.000020458641,0.000018788569,0.000020093023,0.00001966668,0.000020964395,0.000019514158,0.000020639733,0.000019953723,0.00002053885,0.000018493369,0.000019500874,0.000019344932,0.000020339972,0.000018934861,0.000019953473,0.000019416237,0.00002047242,0.000018702598,0.000020085263,0.000019706218,0.000021259386,0.00001962432,0.000020750016,0.000019995116,0.000020656707,0.000019218936,0.000020345327,0.000020128638,0.000020906815,0.000019810004,0.000020442161,0.000019813386,0.000020334173,0.000019297726,0.000020369982,0.000020190466,0.000021418356,0.000020540514,0.000021443495,0.000020942154,0.000021380461,0.000020227662,0.000020803633,0.00002073356,0.000021469465,0.000020377385,0.000020885731,0.000020171201,0.0000205577,0.000019136945,0.000020159318,0.000019654493,0.000020999012,0.000019734936,0.000020813814,0.000019957033,0.0000204398,0.00001911174,0.000019830039,0.000019845873,0.000020981595,0.000019595784,0.000019498866,0.000018788622,0.000019521398,0.000018944234,0.000019788875,0.000020232486,0.000020863137,0.000020789414,0.0000209576,0.00002147829,0.000024765475,0.000024743686,0.000024265251,0.00001613201,0.000011016617,0.000013176386],[0.000015837126,0.000018013661,0.00001583095,0.000022152757,0.000032002037,0.000031239248,0.000027026277,0.000023687184,0.00002111087,0.00002080262,0.000019551915,0.000019906378,0.000019057614,0.000019699004,0.000018944216,0.000019948928,0.000019756084,0.000020818994,0.000019550798,0.000019712083,0.000019608327,0.000020648828,0.000019622263,0.000019728803,0.000018840332,0.00001944353,0.000018520937,0.000018550298,0.000018226778,0.0000193427,0.000018565464,0.000019123427,0.00001858759,0.0000197384,0.00001891611,0.000019575891,0.000019402281,0.000020729407,0.000019592737,0.000019981791,0.000019236613,0.000020158048,0.000018922388,0.000018828961,0.000018669987,0.000019677262,0.000019083804,0.000019448093,0.00001894082,0.000020032046,0.000019053434,0.000019026415,0.00001882354,0.000019668068,0.000019131836,0.000019305013,0.000018912482,0.000019812138,0.00001882774,0.00001859025,0.00001851382,0.000019554118,0.000018808467,0.000019127276,0.000018623183,0.0000196969,0.000018722281,0.000018846946,0.000018758043,0.000019752862,0.000018981416,0.000019165802,0.000018777391,0.00001969534,0.000018693112,0.000018452356,0.000018401395,0.000019499834,0.000018727926,0.00001906843,0.00001857168,0.000019681484,0.000018705541,0.000018850506,0.00001876019,0.000019782063,0.00001903264,0.000019238007,0.000018841878,0.000019751693,0.000018743414,0.000018496456,0.000018438583,0.000019515777,0.000018750014,0.00001907869,0.000018582397,0.000019671876,0.000018689832,0.000018832428,0.000018752802,0.000019778743,0.000019020936,0.000019235567,0.000018850576,0.000019758721,0.000018745131,0.000018490318,0.000018433273,0.000019508761,0.00001873241,0.000019053688,0.000018568386,0.000019664374,0.000018691579,0.000018830488,0.000018748959,0.000019777535,0.00001901321,0.000019221026,0.000018832896,0.000019745177,0.000018728193,0.000018472516,0.000018411874,0.000019495315,0.000018717961,0.000019051417,0.000018561252,0.000019656482,0.000018679017,0.000018824725,0.000018742845,0.00001977399,0.000019004563,0.000019210342,0.000018824401,0.00001973842,0.000018730621,0.000018473433,0.000018415563,0.00001950281,0.000018730569,0.000019060722,0.000018569484,0.000019666999,0.000018687266,0.000018826215,0.00001874379,0.00001977203,0.000019000976,0.000019199262,0.000018813904,0.000019727484,0.000018713214,0.000018452498,0.00001839778,0.000019488196,0.000018720497,0.000019052835,0.000018561552,0.00001966293,0.000018685465,0.000018821243,0.00001873968,0.000019775216,0.000019019775,0.000019221721,0.00001882898,0.00001974435,0.000018728319,0.00001847095,0.000018415421,0.000019506566,0.000018740235,0.000019062612,0.00001856072,0.000019664467,0.00001867656,0.000018814711,0.000018733605,0.000019779856,0.000019106183,0.000019357094,0.000018962184,0.000019882074,0.000018780722,0.000018440447,0.000018271958,0.000019315308,0.00001852272,0.00001881656,0.000018277395,0.000019480596,0.000018590657,0.000018836632,0.00001871939,0.000020034511,0.000019207064,0.000019731173,0.000019087734,0.000020127698,0.00001901497,0.000019174322,0.000019086023,0.00002036435,0.000019294726,0.000019915777,0.000019322788,0.000020244086,0.000019123154,0.00001962636,0.000019597483,0.000020700447,0.000020058485,0.00002085874,0.00002038131,0.000021211998,0.000019989568,0.000020018144,0.000019479852,0.000020410935,0.00001965425,0.000020004441,0.000019259685,0.00001997897,0.000019004057,0.000019072722,0.000018705347,0.00001963986,0.00001912921,0.000019697012,0.000019268175,0.000019976571,0.00001908524,0.00001912299,0.00001855718,0.000019583957,0.000018942681,0.000019231202,0.000018370798,0.00001884594,0.000019005161,0.000019613582,0.000019702631,0.000021022495,0.000020780333,0.000021683849,0.000021157046,0.000022419803,0.000023649533,0.0000270857,0.000024605044,0.000016559714,0.000010396247,0.000013373572],[0.000016169808,0.000017855013,0.000014657221,0.00002437021,0.000029967156,0.000029684123,0.000026451768,0.00002345968,0.000021756552,0.000021133736,0.000020949266,0.00002028608,0.000020922373,0.000020002477,0.000020323723,0.000019926358,0.00002101554,0.00002073417,0.000020873347,0.000019992218,0.000021009988,0.000021198022,0.000021075128,0.00001996505,0.000020444286,0.000020276835,0.000020564818,0.000019435505,0.000019982515,0.000020016292,0.000020208556,0.000019282144,0.000020366699,0.00002022338,0.000021006623,0.000020162854,0.00002124984,0.000021087752,0.000021330727,0.000020279233,0.000021066324,0.000020741529,0.000021018766,0.000019680547,0.000020337451,0.00002053125,0.000020617465,0.000019835788,0.000020670226,0.00002059842,0.000021055157,0.000019806263,0.000020616286,0.00002054831,0.000020807283,0.000019846328,0.00002055803,0.000020471638,0.000020966156,0.000019555553,0.000020366699,0.000020389514,0.000020513125,0.000019502382,0.00002036229,0.000020232581,0.000020715848,0.00001961158,0.000020596673,0.000020529998,0.000020741036,0.000019679252,0.000020450118,0.00002034222,0.000020805954,0.000019435245,0.000020300247,0.0000203232,0.000020475934,0.000019406187,0.000020329984,0.000020194335,0.000020698473,0.00001960756,0.00002061194,0.000020551173,0.000020802165,0.000019741903,0.00002052115,0.0000203964,0.00002085673,0.000019461508,0.00002031512,0.000020341542,0.000020489842,0.000019415756,0.000020337022,0.00002018989,0.000020667683,0.000019586534,0.000020596455,0.000020529234,0.000020786043,0.000019733545,0.000020531113,0.000020399511,0.000020859537,0.000019472813,0.000020315023,0.000020335085,0.000020468164,0.000019402447,0.00002032318,0.00002018342,0.000020663525,0.000019590363,0.000020599186,0.00002053037,0.000020782416,0.000019720845,0.000020515103,0.000020387104,0.000020845477,0.000019452582,0.000020295523,0.000020322832,0.000020454543,0.000019392552,0.000020324227,0.000020176183,0.00002064999,0.000019578934,0.000020588168,0.000020521033,0.000020772171,0.00001971447,0.000020507552,0.0000203845,0.000020847485,0.000019461582,0.000020310858,0.000020335801,0.00002047154,0.000019400357,0.000020331807,0.000020180938,0.00002065586,0.000019580035,0.00002059023,0.000020521189,0.000020768408,0.000019709376,0.000020494355,0.000020371826,0.000020827712,0.000019442752,0.000020291673,0.000020318046,0.000020458407,0.000019401541,0.000020324343,0.000020180765,0.000020662066,0.000019582088,0.000020591253,0.000020532778,0.000020791793,0.000019734221,0.000020507025,0.000020386695,0.0000208386,0.000019452695,0.00002030013,0.000020330739,0.000020476402,0.000019420293,0.000020313124,0.000020181207,0.000020666597,0.000019584704,0.000020600208,0.000020550193,0.000020842832,0.000019852972,0.000020619234,0.000020526022,0.000020854444,0.000019437857,0.000020108224,0.000020160758,0.000020230324,0.000019265106,0.000019942005,0.000019973866,0.000020626667,0.00001962593,0.00002072407,0.000020684265,0.000021038539,0.00001989224,0.000020930895,0.000020637057,0.00002109769,0.000019876255,0.00002105008,0.00002080282,0.000020918762,0.00002002225,0.000020926263,0.000020492498,0.000020854166,0.000020215377,0.000021444886,0.000021297232,0.000021577345,0.000021086063,0.000022125332,0.000021901735,0.000021973954,0.000020836495,0.000021170466,0.000021172807,0.00002101502,0.000020192121,0.000020644635,0.00002043871,0.000020597006,0.000019798312,0.000020552328,0.00002038131,0.000020801193,0.000020061603,0.000021103806,0.000020932352,0.000021453641,0.00002035542,0.00002048656,0.00002060343,0.000020178917,0.000019925143,0.000019451469,0.000019912548,0.000020476538,0.000020625683,0.00002094539,0.000021580927,0.000021344526,0.000021683829,0.00002143023,0.000022006017,0.000024753976,0.00002519455,0.000024828449,0.000017199853,0.000010810289,0.000013219318],[0.00001566049,0.000015833939,0.000014790546,0.000021950495,0.00002943451,0.000028490349,0.000023821789,0.00002245224,0.000019772275,0.00002044805,0.000019572886,0.000020511914,0.000019144705,0.000019811892,0.000019066922,0.000019980667,0.000019326677,0.000020628104,0.000019435856,0.00002023893,0.00001969029,0.000020887623,0.000019686328,0.000019761776,0.000019046603,0.000020227526,0.000019605559,0.000020002915,0.000019254323,0.000020029334,0.000018859766,0.000019079982,0.000018497989,0.00001992425,0.000019283745,0.000020289757,0.000019563537,0.000020630367,0.0000195409,0.000019936508,0.000019223959,0.00002038786,0.000019508128,0.000019769275,0.000019097984,0.000020037816,0.000019149067,0.000019619793,0.000018915045,0.000020365593,0.000019404797,0.000019977866,0.000019253112,0.000020198111,0.000019409888,0.000019713963,0.00001917595,0.000020266492,0.000019632818,0.000019679908,0.000019165345,0.000019943354,0.00001904991,0.00001939366,0.000018647886,0.000020057414,0.000019149506,0.000019831685,0.000019213916,0.000020203814,0.000019263267,0.000019558107,0.000019008532,0.000020150033,0.000019465517,0.000019524543,0.000019084786,0.000019878073,0.000018980583,0.000019306966,0.00001858713,0.000020030117,0.000019144229,0.000019846839,0.00001922451,0.000020227313,0.000019309673,0.000019619138,0.00001906863,0.000020198131,0.000019504409,0.00001954032,0.000019086625,0.000019870738,0.000018997387,0.000019325553,0.000018601777,0.000020031206,0.000019136818,0.000019832723,0.000019208564,0.000020210482,0.00001929136,0.00001961074,0.000019067902,0.000020206204,0.000019511961,0.00001955587,0.000019098532,0.00001987341,0.000018981651,0.000019312729,0.000018589151,0.000020020207,0.000019133626,0.000019832516,0.000019203582,0.000020197245,0.000019274643,0.000019589972,0.000019044459,0.000020186386,0.000019494311,0.000019531471,0.000019075596,0.000019862118,0.000018970612,0.000019304573,0.000018582965,0.000020019119,0.000019122643,0.000019820754,0.000019192636,0.00002018933,0.000019267844,0.000019582407,0.000019039593,0.000020186326,0.000019501824,0.000019546453,0.00001910019,0.000019879932,0.000018985073,0.000019318402,0.000018593477,0.000020026393,0.000019134026,0.000019826653,0.000019199444,0.000020190293,0.000019268928,0.000019577477,0.000019033312,0.000020169855,0.000019491355,0.000019525307,0.000019081346,0.000019859031,0.000018972622,0.000019306799,0.000018586705,0.0000200195,0.000019126053,0.000019821491,0.000019202556,0.000020199517,0.000019286834,0.000019599707,0.000019052271,0.000020187963,0.000019504743,0.000019535068,0.000019091574,0.000019867593,0.000018996228,0.000019314683,0.000018585093,0.00002001154,0.000019112505,0.000019805639,0.000019204626,0.00002021054,0.000019379313,0.000019724175,0.000019202027,0.00002034222,0.000019602849,0.000019529814,0.000018994508,0.000019738456,0.000018844088,0.000019101482,0.000018329132,0.000019729441,0.000018895356,0.000019686346,0.000019208419,0.000020337196,0.000019331139,0.00001971464,0.00001900536,0.000020206608,0.000019404632,0.000019686835,0.000019152665,0.000020220758,0.000019220035,0.000019681484,0.00001894857,0.000020235495,0.000019530038,0.000020362679,0.000019827901,0.000020847345,0.000020143598,0.00002071832,0.000020252368,0.000021503476,0.00002087239,0.000021099902,0.00002000326,0.000020791158,0.000019852252,0.000020090474,0.00001906912,0.000020192027,0.000019453973,0.000020197649,0.000019427165,0.000020303014,0.000019614705,0.000019895655,0.000019504316,0.000020682706,0.000020563779,0.00002116756,0.000020325488,0.000021008165,0.000019795065,0.000019759362,0.000018866385,0.000019622861,0.000020327581,0.000020529567,0.000020356292,0.000020976093,0.000020960599,0.00002179391,0.000021000315,0.000021564036,0.000023019984,0.000025658303,0.000024075776,0.000016500631,0.000010625158,0.0000134487245],[0.000015789637,0.0000144146225,0.000013973962,0.000020587384,0.000031673615,0.00003066398,0.00002722814,0.000022945289,0.000021282856,0.000020909905,0.00002117586,0.000020105885,0.000020545549,0.000019561017,0.000019938847,0.000019100407,0.000020378784,0.000020075115,0.000021291931,0.000019728295,0.000021025424,0.000020707534,0.00002100644,0.000019680527,0.00002028784,0.000019733317,0.000020836154,0.000019712177,0.000020764268,0.000020119656,0.000020451793,0.000018856006,0.000019846839,0.000019388131,0.000020748294,0.000019529256,0.000020946309,0.000020348314,0.00002102488,0.000019721898,0.000020478063,0.00002003646,0.000021088255,0.000019518233,0.0000206469,0.00002008946,0.000020798256,0.000019380275,0.000020245456,0.000019898956,0.00002106514,0.000019478124,0.00002056766,0.000020092564,0.000020794192,0.000019746007,0.000020441887,0.000020133917,0.000021273014,0.000019594641,0.000020574527,0.000019988918,0.00002069044,0.000019262001,0.000020087926,0.00001970449,0.00002084826,0.000019343659,0.000020476285,0.000020035639,0.000020695848,0.000019564059,0.000020308786,0.000019985753,0.000021097085,0.000019453286,0.000020471578,0.000019923431,0.000020637824,0.000019169147,0.000020046054,0.000019681183,0.000020834188,0.000019362798,0.000020494454,0.000020057356,0.000020746238,0.000019622787,0.000020371768,0.000020049343,0.00002115039,0.00001947662,0.000020459634,0.000019917676,0.000020639576,0.00001919333,0.000020060435,0.000019689387,0.00002081943,0.000019353753,0.000020472085,0.00002003797,0.000020719406,0.00001961869,0.000020370857,0.000020056648,0.000021155149,0.000019491745,0.000020483805,0.000019933581,0.00002063308,0.000019179422,0.000020052614,0.000019684583,0.00002080754,0.000019345947,0.000020459382,0.000020022593,0.000020699776,0.000019599578,0.000020345444,0.000020034684,0.000021135225,0.000019474392,0.000020469764,0.00001992425,0.000020630463,0.000019172438,0.00002004961,0.000019680845,0.000020802523,0.000019332669,0.00002044908,0.000020012914,0.00002069208,0.000019589972,0.000020338206,0.000020033232,0.000021142725,0.000019488325,0.000020492227,0.000019942117,0.000020648711,0.000019183686,0.000020066635,0.000019687923,0.000020805557,0.00001934377,0.00002045423,0.000020017458,0.000020689098,0.000019591784,0.000020334814,0.000020022326,0.000021120377,0.000019472962,0.000020468808,0.00001992442,0.00002063135,0.000019168947,0.000020049209,0.000019677844,0.000020802938,0.000019338218,0.000020456066,0.000020021447,0.00002070635,0.000019600586,0.000020345307,0.000020030977,0.000021127025,0.000019482046,0.000020464866,0.00001991931,0.0000206356,0.00001918687,0.000020037702,0.00001966668,0.000020804227,0.000019312343,0.00002044639,0.000020029163,0.000020773023,0.000019714771,0.000020462698,0.000020147054,0.000021190624,0.000019533652,0.00002034331,0.000019777592,0.000020375559,0.000018984167,0.000019740433,0.000019280176,0.000020527003,0.000019019031,0.000020396224,0.000019934114,0.000020774627,0.000019459336,0.000020386713,0.000019891557,0.000021161344,0.000019369392,0.000020473923,0.000019903455,0.000020502644,0.000019243493,0.000020140831,0.000019719471,0.000020753836,0.0000196764,0.000020791394,0.000020370508,0.00002114823,0.000020485739,0.00002124232,0.000021089865,0.000022717435,0.000021114314,0.000021482385,0.000020684522,0.000021212907,0.00001996558,0.000020283624,0.000019733037,0.000020728261,0.000019565981,0.00002047445,0.000019903911,0.000020585558,0.000019843601,0.000020491738,0.000020451287,0.000022095242,0.000021033222,0.000021724976,0.00002116292,0.000021159609,0.000019824838,0.000019561501,0.000019451989,0.000020413894,0.000020039823,0.000020646426,0.000020202291,0.000020561405,0.000020450545,0.000020012189,0.00002036262,0.000022870967,0.000024009241,0.00002578586,0.000016563032,0.000011074204,0.0000129152895],[0.000016392409,0.000013970258,0.000014570035,0.00002082922,0.000032894,0.000030811043,0.0000251283,0.000022269936,0.000019661167,0.000020158932,0.000019072377,0.00001980734,0.00001898681,0.000019474503,0.0000183356,0.000019004328,0.000018731997,0.000020150283,0.000019116243,0.00001969305,0.00001957421,0.000020800935,0.000019623742,0.000019861911,0.000018808863,0.000019689181,0.000018868239,0.000019226287,0.000019033021,0.000019737534,0.000018714642,0.000018804003,0.000018164672,0.000019484089,0.000018828783,0.000019592177,0.000019460838,0.000020568976,0.000019379313,0.000019701109,0.000018928615,0.000019957071,0.000019063284,0.000019204646,0.000019105162,0.000019864354,0.000019033947,0.000019324225,0.00001879296,0.000020186963,0.00001920631,0.00001969442,0.00001935761,0.000020415178,0.000019530169,0.000019956768,0.000019365236,0.000020320293,0.00001944726,0.000019417052,0.000019335359,0.000019904877,0.000019019213,0.000019280802,0.000018780256,0.00002003858,0.000019072813,0.000019599725,0.000019370076,0.000020442083,0.00001943302,0.000019851892,0.000019247715,0.000020253025,0.00001934495,0.00001933357,0.000019241712,0.000019870076,0.00001894783,0.000019216828,0.000018737124,0.000020027328,0.000019074669,0.000019625537,0.000019392439,0.000020468397,0.000019474335,0.000019895047,0.000019296896,0.000020286428,0.000019380017,0.000019346464,0.000019240026,0.000019855925,0.000018946223,0.000019228506,0.000018761782,0.000020034702,0.000019073705,0.0000196191,0.000019393994,0.000020466894,0.000019469342,0.000019891613,0.000019301147,0.00002029862,0.000019388555,0.00001934914,0.00001924944,0.00001985886,0.000018942897,0.000019213567,0.000018752962,0.000020030595,0.000019066994,0.000019610477,0.000019381385,0.000020452359,0.000019445182,0.000019868483,0.000019275782,0.000020278285,0.000019369743,0.000019330899,0.000019233823,0.000019846251,0.000018939178,0.00001920816,0.000018745417,0.000020027728,0.000019061703,0.00001960152,0.000019371959,0.000020448206,0.000019439767,0.000019864656,0.000019271756,0.000020277646,0.000019376375,0.000019347017,0.000019253002,0.000019865982,0.000018952818,0.000019226598,0.000018762461,0.000020035715,0.000019066467,0.00001960984,0.000019376615,0.000020446138,0.000019440824,0.00001986189,0.000019273999,0.000020270396,0.00001936601,0.000019329276,0.0000192423,0.000019849223,0.00001894156,0.00001920906,0.000018747742,0.000020029851,0.00001906423,0.00001960485,0.000019372754,0.000020449004,0.000019448762,0.000019872576,0.000019280764,0.0000202784,0.000019376042,0.000019339748,0.000019244026,0.000019850397,0.00001894783,0.000019211717,0.000018734909,0.000020012341,0.000019043406,0.000019570609,0.000019360252,0.000020450741,0.000019550667,0.000019992733,0.000019392699,0.000020385198,0.000019418349,0.000019316412,0.000019118084,0.000019678031,0.000018737179,0.000018987064,0.000018408591,0.000019662835,0.00001872046,0.000019239327,0.000019079343,0.000020280104,0.000019303709,0.00001970528,0.000019120618,0.000020153666,0.000019208896,0.000019131161,0.000018893681,0.000019656125,0.000018617857,0.000018954988,0.000018733926,0.000019863313,0.000019071122,0.0000196776,0.000019703457,0.000020690222,0.000020005453,0.000020357553,0.000019923451,0.000020915091,0.000020320624,0.000020279098,0.000019772895,0.000020081377,0.000019285068,0.000019386485,0.000018688977,0.000019664038,0.000018953975,0.000019565345,0.000019251569,0.00002032572,0.000019712214,0.000020113883,0.000019431982,0.000020424312,0.000019807227,0.000020442141,0.000020016101,0.00002074072,0.00002000469,0.000019774292,0.000018750978,0.000019268413,0.00001957617,0.000019898727,0.000020043684,0.000020302607,0.000020412823,0.000021271673,0.000020622223,0.000021366968,0.00002194723,0.000025307874,0.000025308429,0.000017552906,0.000010685457,0.000013418541],[0.000016120968,0.0000141563805,0.000012585851,0.000022020315,0.000033397653,0.00003219485,0.000027169028,0.00002340214,0.000021487633,0.000021045884,0.000020641091,0.000020148804,0.00002071674,0.000019952087,0.00002015159,0.000019709583,0.000020523987,0.000020367146,0.00002062722,0.000019813839,0.000021139882,0.000021199055,0.00002121825,0.000020313142,0.000020433135,0.000020229823,0.000020192065,0.00001933796,0.000020051006,0.000020227102,0.00002048191,0.000019450543,0.000019964991,0.000020139276,0.000020778512,0.000019988995,0.000021153899,0.000020858064,0.000021063815,0.000020289892,0.00002061597,0.00002066185,0.00002079211,0.000019847312,0.000020393656,0.000020510643,0.000020646366,0.000019907193,0.000020636742,0.000020854266,0.000021188484,0.000020062636,0.000021034366,0.000020869842,0.000021206757,0.000020535324,0.000021064858,0.00002094575,0.000020993226,0.000019903966,0.000020487438,0.000020493399,0.00002071595,0.000019809342,0.000020599402,0.000020690717,0.000020972793,0.000019912168,0.000020981755,0.000020812246,0.00002119014,0.000020381349,0.000020964835,0.000020805735,0.00002091162,0.00001980175,0.000020445183,0.000020464202,0.000020697367,0.000019767449,0.000020572368,0.000020689631,0.000020969994,0.000019937117,0.00002099729,0.000020823183,0.000021206757,0.0000204202,0.000020993624,0.000020844742,0.000020944612,0.000019832629,0.000020453159,0.000020459382,0.000020690282,0.000019772877,0.00002059353,0.000020697742,0.000020964813,0.000019943336,0.000020999993,0.00002083824,0.000021203301,0.00002042326,0.000020991483,0.000020861029,0.000020952004,0.000019833991,0.000020445612,0.000020465763,0.000020688072,0.000019768257,0.000020589798,0.000020694248,0.000020960897,0.000019941795,0.000020994647,0.000020822488,0.000021174868,0.000020403248,0.000020974794,0.000020847941,0.0000209385,0.000019821304,0.000020431129,0.000020462485,0.000020685291,0.000019765448,0.000020582103,0.000020693677,0.0000209558,0.00001993822,0.000020990801,0.000020822668,0.000021175838,0.000020398655,0.000020972433,0.000020842774,0.000020941716,0.00001983123,0.00002044522,0.00002047152,0.000020693973,0.000019772688,0.000020606063,0.000020693005,0.00002095564,0.000019937175,0.00002098706,0.000020815402,0.000021171618,0.00002039671,0.000020966294,0.000020837586,0.000020926762,0.000019817844,0.000020430174,0.000020461372,0.000020684285,0.000019764488,0.000020583988,0.000020688447,0.000020957877,0.000019931165,0.000020983456,0.000020810676,0.000021180624,0.000020405563,0.000020977855,0.000020841004,0.000020929338,0.000019825275,0.000020436195,0.000020463362,0.000020685862,0.000019762227,0.000020552583,0.000020676573,0.000020940715,0.000019902145,0.000020968175,0.000020820642,0.00002124297,0.000020500083,0.00002106737,0.000020897467,0.00002086813,0.000019747456,0.000020236768,0.000020300691,0.000020459947,0.000019545596,0.00002017782,0.000020275713,0.000020649419,0.00001954323,0.000020687638,0.00002067535,0.000021128051,0.000020247193,0.0000209566,0.000020672926,0.000020855876,0.000019609412,0.000020353398,0.000020257892,0.000020354486,0.000019630143,0.000020484644,0.000020408754,0.000020618918,0.000019879648,0.000021027286,0.000020956279,0.000021205486,0.0000209531,0.00002137769,0.000021370899,0.000021307409,0.000020487927,0.000020662754,0.000020716918,0.000020744694,0.000019956273,0.000020256966,0.00002047494,0.000020488025,0.000019675854,0.000020693755,0.00002065192,0.000021126683,0.000020526259,0.000020871574,0.000020500689,0.000020664373,0.000019855755,0.00002022012,0.00002072739,0.000020611351,0.000019923527,0.000019015859,0.00001925458,0.000019120673,0.000019748624,0.000019712628,0.000020562718,0.000020821873,0.000021242626,0.000021031297,0.00002155758,0.000023201368,0.000024068431,0.0000253648,0.000018266992,0.000010982315,0.000013327064],[0.000015765323,0.000014447252,0.000012721851,0.000018956416,0.000030465368,0.00003220004,0.000026322852,0.000024016592,0.000020737356,0.000020978114,0.000019493233,0.00002006453,0.000018847808,0.00001964857,0.000019120163,0.00002009469,0.000019338606,0.000020425576,0.000019179644,0.00001983,0.000019454845,0.000020953841,0.000019717592,0.000020534793,0.000019090046,0.000020299161,0.000018982213,0.000019397898,0.000018967085,0.000020293277,0.000019473686,0.000020010586,0.000018661302,0.000019976456,0.000019159443,0.00001998158,0.000019540956,0.000020814528,0.000019785837,0.000020513637,0.000019243345,0.000020515161,0.000019387742,0.000019767485,0.000019093359,0.000020150648,0.000019403577,0.00001996722,0.000019038267,0.000020441401,0.000019269792,0.00001980972,0.000019167905,0.00002045985,0.000019604886,0.000020557347,0.000019536334,0.000020869862,0.000019342055,0.000019621213,0.000019028847,0.000020068492,0.000019171835,0.00001972726,0.000018899304,0.000020316262,0.000019072359,0.000019637968,0.00001903059,0.000020395699,0.000019434226,0.000020371477,0.000019314331,0.000020689118,0.000019154219,0.000019502697,0.00001893645,0.00002007255,0.000019129227,0.000019697294,0.00001886401,0.000020310179,0.000019074268,0.000019674222,0.000019064448,0.000020425072,0.000019476769,0.000020420182,0.000019362098,0.000020735952,0.000019200268,0.000019538515,0.000018956704,0.000020062693,0.000019119216,0.000019681596,0.000018876859,0.000020314616,0.000019084331,0.000019680845,0.000019074705,0.000020434325,0.000019493791,0.000020417554,0.00001935809,0.000020740084,0.000019214282,0.000019542465,0.000018953233,0.000020062962,0.000019120818,0.000019682197,0.000018869696,0.000020306423,0.000019078816,0.00001967484,0.00001907114,0.000020418469,0.00001946431,0.000020393714,0.000019348623,0.000020725256,0.000019199682,0.00001952313,0.000018944216,0.00002005883,0.00001912184,0.00001967728,0.000018862858,0.000020300671,0.000019071595,0.000019666868,0.000019064866,0.000020417883,0.000019462232,0.000020390235,0.0000193396,0.000020717986,0.000019196003,0.000019532814,0.000018948047,0.000020063288,0.000019120127,0.000019686158,0.00001887063,0.000020307622,0.00001907596,0.00001967439,0.00001906843,0.000020416523,0.000019460264,0.000020385625,0.000019334935,0.000020713636,0.000019191208,0.00001952095,0.000018940513,0.000020054162,0.000019115241,0.000019675517,0.000018860252,0.000020299047,0.000019069066,0.000019663137,0.000019057268,0.00002041183,0.00001945503,0.000020395155,0.00001934768,0.00002072907,0.000019203822,0.000019542278,0.000018959778,0.000020075862,0.00001912877,0.000019685202,0.000018862138,0.00002029982,0.000019054214,0.00001963619,0.000019044823,0.000020423862,0.00001953313,0.000020518488,0.000019456014,0.00002086264,0.000019193567,0.000019474392,0.000018839291,0.00002002156,0.000019079762,0.000019573856,0.000018671233,0.000020074502,0.00001881988,0.00001931319,0.00001884459,0.00002029475,0.000019463121,0.000020351807,0.000019291561,0.00002060958,0.000019143865,0.000019569712,0.000018875418,0.000020145268,0.000019127969,0.000019769313,0.000018970648,0.00002026197,0.000019179992,0.000019676174,0.000019226434,0.000020469257,0.000020052326,0.000021122652,0.000020147516,0.000021403166,0.000019897305,0.00002023588,0.00001943847,0.00002051841,0.000019921286,0.000020256966,0.00001908222,0.000020304951,0.000019220126,0.000019711406,0.000019057778,0.000020469257,0.000019919786,0.000020929916,0.000019553445,0.00002069417,0.000019112817,0.000019855415,0.000018952764,0.000020536048,0.000019960136,0.000020384692,0.00001860561,0.00001923135,0.00001896419,0.000019266483,0.000019147552,0.000019973522,0.00002063877,0.000021628852,0.000021425201,0.000022197779,0.000023625076,0.000025221427,0.000024044182,0.000016549264,0.000011068724,0.000013455986],[0.000015653442,0.000014245588,0.00001161155,0.00001720197,0.000030342866,0.00003500005,0.00003075603,0.000025329437,0.00002280589,0.000021917445,0.00002146064,0.000019836678,0.000020354719,0.000019614012,0.00002048228,0.000019567882,0.00002087223,0.000020446256,0.000021079468,0.000019389721,0.000020852018,0.000020520973,0.000021531057,0.000019972951,0.000020678743,0.00001979244,0.00002033299,0.000019286392,0.000020485895,0.000020408852,0.000021521737,0.000020021256,0.000020536774,0.000019756668,0.000020596968,0.000019543173,0.000021133392,0.000020750927,0.000021930722,0.000020324034,0.000021016882,0.00002044325,0.000021170286,0.000019747797,0.000020635247,0.000020459966,0.0000213327,0.000019966572,0.000020577569,0.000019984496,0.000020663289,0.000019134408,0.000020471229,0.00002016047,0.000021264697,0.00002003862,0.000021038539,0.000020402662,0.000020828587,0.000019330326,0.000020332835,0.000020122285,0.000020700585,0.00001943417,0.000020201078,0.000019711068,0.000020356429,0.000018806368,0.000020233392,0.00001989372,0.000021049336,0.000019783665,0.000020800953,0.000020120922,0.000020594493,0.000019150146,0.000020235591,0.000020074349,0.000020682925,0.000019397083,0.000020215244,0.000019672063,0.000020345715,0.000018859944,0.000020279638,0.000019931509,0.00002109451,0.000019852932,0.000020875834,0.000020191255,0.000020657713,0.000019205727,0.000020262356,0.000020082678,0.000020659956,0.00001938682,0.000020214415,0.000019677524,0.000020353787,0.00001887209,0.000020276448,0.000019942023,0.0000210995,0.000019846499,0.00002084665,0.000020184518,0.000020667228,0.000019219944,0.00002026825,0.000020084439,0.000020664944,0.000019389925,0.000020215897,0.000019663512,0.000020340398,0.00001886581,0.000020276042,0.000019932953,0.000021075368,0.000019826824,0.000020835758,0.00002017145,0.000020649144,0.000019206256,0.000020257778,0.000020082123,0.000020673418,0.00001938693,0.000020209209,0.000019662704,0.00002033549,0.000018855251,0.000020268928,0.000019929039,0.000021070786,0.00001982157,0.000020827434,0.000020161047,0.000020641939,0.000019203528,0.00002025998,0.000020079537,0.000020668787,0.000019394676,0.00002022203,0.00001966323,0.000020341658,0.00001886491,0.000020266936,0.000019922729,0.00002106281,0.000019818808,0.000020818716,0.000020154128,0.000020636624,0.000019199553,0.000020251906,0.000020079058,0.000020666323,0.000019386152,0.000020207108,0.000019652714,0.00002032828,0.00001884549,0.000020260713,0.000019915151,0.00002106717,0.00001982393,0.00002084164,0.000020173818,0.000020656904,0.000019221648,0.000020273857,0.000020096972,0.00002067831,0.00001939553,0.000020205509,0.000019664769,0.000020310703,0.000018815033,0.000020239104,0.000019921323,0.000021139478,0.000019936964,0.00002099879,0.00002030501,0.000020702679,0.00001919236,0.00002012144,0.00002001318,0.00002056111,0.00001932524,0.000019988462,0.000019484274,0.000020088923,0.000018521609,0.000020024921,0.000019889241,0.000021214648,0.000019854355,0.00002086228,0.000020192816,0.000020683516,0.00001938643,0.000020413563,0.000020210868,0.000020807185,0.000019744444,0.000020396146,0.000019834011,0.000020207688,0.000019215968,0.000020286583,0.00002026108,0.000021495542,0.00002084808,0.0000216563,0.00002128119,0.0000216172,0.000020520054,0.000020936664,0.000020901154,0.000021566093,0.000020463303,0.000020597969,0.000019855377,0.000020333611,0.000019007102,0.000020078753,0.00001980292,0.0000211237,0.000020453199,0.000021032722,0.000020258703,0.000020445084,0.000019671463,0.000020160913,0.000020642628,0.000021515643,0.000020465939,0.000019921761,0.000019240997,0.000019626248,0.00001891214,0.000019496523,0.000019908903,0.00002065915,0.000020721403,0.000020906695,0.00002146586,0.0000247702,0.000024369003,0.000023550596,0.0000157997,0.0000107614815,0.000012875224],[0.000015847158,0.000013472628,0.000011844517,0.000016155735,0.000029849134,0.00003296774,0.000027883681,0.000024276893,0.000021481566,0.000020819014,0.000019385507,0.000019356503,0.000018705043,0.00001911464,0.00001850436,0.00001917957,0.000019285528,0.000020213083,0.000019012958,0.000019162093,0.000019105726,0.000020381252,0.000019421348,0.000019957757,0.000019058432,0.000019957548,0.000018783714,0.000019302897,0.000018903465,0.000020225772,0.000019484869,0.000019936946,0.00001927718,0.000020057892,0.000019142459,0.000019714284,0.000019587245,0.000020767795,0.00001992729,0.0000202359,0.000019782874,0.000020724487,0.000019669626,0.000019874738,0.000019424904,0.00002023268,0.000019590196,0.000019654757,0.000019297322,0.000020098772,0.000018946692,0.000019210911,0.000019109753,0.0000204064,0.00001959341,0.000020330546,0.000019790346,0.000020894377,0.000019358682,0.000019583751,0.00001934399,0.000020329597,0.000019170884,0.000019330917,0.000018898581,0.00001989721,0.000018647052,0.000018955729,0.000018920528,0.000020366388,0.000019374767,0.00002018958,0.00001953611,0.000020696518,0.000019130357,0.000019458223,0.000019213841,0.000020336072,0.00001912049,0.000019371017,0.000018900275,0.000019925199,0.000018677823,0.00001903774,0.000018985833,0.000020432493,0.000019431687,0.000020251962,0.000019610647,0.000020756705,0.000019187126,0.000019493344,0.000019246998,0.000020338168,0.00001912837,0.000019362282,0.000018899575,0.000019920868,0.000018682687,0.00001903313,0.000018991735,0.000020438358,0.000019441584,0.000020232814,0.000019585843,0.000020741905,0.000019188023,0.000019487545,0.000019246667,0.000020330779,0.000019117755,0.000019353734,0.000018893663,0.000019902107,0.000018663153,0.000019017634,0.000018978719,0.000020410722,0.000019408537,0.00002020713,0.00001957925,0.000020724168,0.00001917692,0.000019475876,0.000019234174,0.000020321359,0.000019114948,0.00001934259,0.000018883702,0.000019897665,0.000018662422,0.000019012232,0.000018974719,0.00002041107,0.00001940661,0.000020211368,0.000019578485,0.000020722175,0.000019166937,0.00001947662,0.000019235731,0.000020330392,0.000019119652,0.000019365218,0.000018902998,0.000019911504,0.000018667513,0.000019023584,0.000018984167,0.000020414827,0.000019406409,0.00002021397,0.000019573277,0.00002071593,0.000019167137,0.000019479425,0.00001923542,0.000020329171,0.000019120218,0.000019356652,0.000018887627,0.00001989482,0.00001865173,0.000019009385,0.000018971317,0.00002041734,0.000019414367,0.000020226447,0.000019586701,0.000020740441,0.000019186358,0.000019503646,0.00001925682,0.000020353922,0.00001913618,0.000019366584,0.000018895247,0.000019906756,0.00001864579,0.000018994198,0.000018974068,0.000020450525,0.00001951317,0.000020373169,0.000019724626,0.00002089653,0.000019237988,0.000019451598,0.000019120182,0.00002017761,0.000019010999,0.000019161764,0.00001870292,0.000019658355,0.000018505682,0.000018766561,0.000018861563,0.000020406556,0.000019558742,0.000020237561,0.000019638866,0.000020704809,0.000019317888,0.000019676156,0.000019474763,0.00002050943,0.00001931599,0.000019623049,0.000019298463,0.000020106843,0.00001903442,0.000019393958,0.00001952771,0.000020751877,0.00002024953,0.000021207446,0.000020906815,0.000021783419,0.000020380456,0.0000203963,0.000019851761,0.000020502546,0.000019802656,0.000019738118,0.000019162093,0.000019650952,0.000018728979,0.000019109753,0.00001891342,0.000020468633,0.000019923127,0.000021365624,0.00002035109,0.000021193759,0.000019615321,0.000020398442,0.000019540676,0.000020834585,0.000020018946,0.000020331574,0.000019291709,0.000019471105,0.000019772746,0.000019801673,0.00001983017,0.000020678743,0.000020629896,0.000021400881,0.000020774727,0.000022082037,0.000023515273,0.000026359601,0.000024484567,0.000016618884,0.000010279373,0.000013092252],[0.000015494288,0.000012981526,0.0000100876505,0.00001602931,0.000027712007,0.00003406339,0.000028303386,0.000024878886,0.000022374159,0.000021481383,0.00002063202,0.000019936566,0.00002030737,0.000019916175,0.000020106076,0.000019700281,0.000020601878,0.000020606654,0.00002049197,0.000019616387,0.00002076926,0.000020889198,0.000021020349,0.000019974226,0.00002078406,0.000020449179,0.00002074606,0.000019735764,0.000020364136,0.00002056929,0.000020710339,0.00001994288,0.000020686179,0.000020605887,0.000021105316,0.00002026226,0.000021264314,0.000021154201,0.000021305335,0.000020361533,0.000021266624,0.000021169337,0.00002173339,0.000020592233,0.000020875137,0.000020804368,0.000020569565,0.000019869944,0.000020574333,0.00002071984,0.000021048052,0.000019749887,0.000020814568,0.0000208746,0.00002114803,0.000020240204,0.000021371023,0.000021000113,0.000021329466,0.000019913934,0.000020828766,0.000020799585,0.00002062118,0.0000194769,0.00002023565,0.000020314053,0.000020707357,0.000019378851,0.000020793537,0.000020718953,0.000021164451,0.000020074023,0.000021230557,0.000020733341,0.000021134842,0.000019764188,0.00002078103,0.000020760606,0.000020655289,0.000019463809,0.000020299995,0.000020313104,0.00002073518,0.000019474151,0.000020858659,0.000020748275,0.000021194628,0.00002011885,0.00002129518,0.000020790227,0.000021188403,0.000019811005,0.00002080903,0.000020786736,0.000020663878,0.000019469342,0.000020310217,0.000020310259,0.000020729822,0.000019480038,0.000020857507,0.000020762624,0.000021208822,0.000020116931,0.000021258027,0.00002077429,0.000021177857,0.000019796462,0.000020791475,0.000020772786,0.000020643336,0.000019457628,0.000020298989,0.000020293084,0.000020706982,0.000019467838,0.000020836314,0.000020728023,0.000021158397,0.00002009626,0.000021259528,0.000020770092,0.000021169559,0.000019798992,0.000020790325,0.000020766487,0.00002063078,0.000019441899,0.00002027438,0.000020290008,0.000020708601,0.00001946173,0.000020837586,0.000020733401,0.00002116427,0.000020097794,0.000021262285,0.000020761001,0.000021158256,0.000019792875,0.000020792526,0.000020767398,0.000020650543,0.000019470064,0.000020316398,0.000020297595,0.000020704138,0.00001947064,0.000020850865,0.000020736526,0.000021162716,0.000020096319,0.000021255453,0.000020752312,0.000021152164,0.000019791705,0.000020792268,0.000020771677,0.00002064304,0.000019456404,0.000020291169,0.000020283644,0.000020699243,0.000019455587,0.00002083876,0.0000207335,0.000021177233,0.000020104044,0.00002127131,0.000020771677,0.000021173495,0.00001981191,0.00002080764,0.00002078763,0.00002065795,0.00001946622,0.000020275558,0.00002028935,0.000020691012,0.000019429037,0.000020842574,0.000020748155,0.000021256283,0.000020234203,0.000021393475,0.00002091555,0.000021203909,0.000019735164,0.000020551153,0.000020556092,0.000020310083,0.000019251222,0.000019852952,0.000020017935,0.000020444188,0.000019270048,0.000020617837,0.00002080419,0.000021305557,0.000020141291,0.000021347578,0.000020875337,0.000021255879,0.000020104964,0.000021320722,0.000020964875,0.000020821853,0.000019787762,0.000020737434,0.000020482066,0.000020842852,0.00002015107,0.000021364522,0.000021276544,0.000021590788,0.000021179616,0.000022430644,0.000022154005,0.000022082266,0.000021100082,0.000021298672,0.000021313483,0.000020753105,0.000020030346,0.000020199788,0.000020327194,0.000020422869,0.000019654906,0.000020871832,0.000020786003,0.000021624004,0.000021032904,0.00002219177,0.000021266867,0.0000214855,0.000020779622,0.000021186968,0.000021203097,0.000020800459,0.000020423338,0.000019852421,0.000020178511,0.000020624819,0.000020793736,0.000020715732,0.000021315233,0.000020990843,0.000021256445,0.000021155493,0.000021446585,0.00002407757,0.000024708008,0.000025334728,0.000017490378,0.0000107993565,0.000013019253],[0.000014951722,0.000012001988,0.000010427753,0.000013863181,0.000025407362,0.000033247026,0.000026320164,0.000024089535,0.000021075046,0.000020921114,0.000019664805,0.000019982914,0.000018970955,0.000019445608,0.000019217232,0.00001981297,0.000019563948,0.000020535794,0.000019406056,0.000019891613,0.00001949894,0.00002060496,0.000019377263,0.000019617042,0.000018823073,0.000020136278,0.00001909041,0.000019878225,0.000019077872,0.000020311787,0.00001898788,0.000019413423,0.000018794195,0.00002015257,0.00001934565,0.000020213585,0.000019701034,0.000020681307,0.000019411516,0.00001975678,0.000019190584,0.000020610329,0.000019804978,0.000020284551,0.000019581941,0.000020114976,0.000018898618,0.000019154875,0.00001877046,0.000020131401,0.000019125653,0.000019623028,0.000019197687,0.000020249625,0.000019021807,0.000019610328,0.000019028992,0.00002043076,0.00001919192,0.000019611394,0.000019134464,0.000020099827,0.000018715891,0.000018822482,0.000018301464,0.000019670864,0.000018649007,0.000019194813,0.000018931069,0.000020133955,0.000018880388,0.000019498662,0.00001877286,0.000020204585,0.000018907054,0.000019407795,0.000018972763,0.000020045729,0.000018647424,0.00001881749,0.000018269013,0.000019697276,0.000018664985,0.000019278725,0.00001897157,0.000020168201,0.000018911618,0.000019547684,0.000018829467,0.000020264462,0.000018972856,0.000019458223,0.000019005669,0.000020059117,0.000018671217,0.000018837674,0.000018291832,0.00001970139,0.000018673743,0.000019282934,0.00001898663,0.000020181822,0.000018933506,0.00001955268,0.000018818604,0.000020241305,0.000018964029,0.000019431074,0.000018984203,0.000020039708,0.00001866221,0.000018826413,0.000018277728,0.000019682124,0.000018658007,0.000019266428,0.000018970231,0.00002015084,0.000018897212,0.000019522664,0.000018814299,0.000020239915,0.000018963665,0.000019441788,0.00001900083,0.000020049476,0.000018650075,0.000018800614,0.000018259188,0.000019672514,0.0000186539,0.00001925864,0.000018964589,0.000020152742,0.000018899285,0.000019522124,0.00001880533,0.00002023013,0.00001894438,0.000019426869,0.000018986973,0.00002004764,0.00001866568,0.000018840045,0.000018284456,0.000019680378,0.000018649256,0.000019262809,0.000018972276,0.000020155185,0.000018893825,0.000019518364,0.000018795952,0.00002021935,0.000018937153,0.000019424295,0.000018990524,0.000020045367,0.000018648705,0.000018812576,0.00001826429,0.000019669962,0.000018639406,0.000019248359,0.000018954715,0.000020147823,0.000018891375,0.000019516112,0.00001880169,0.000020241401,0.000018959543,0.000019451692,0.000019005705,0.000020061067,0.000018656834,0.000018810028,0.000018254663,0.000019666417,0.000018619296,0.000019221081,0.000018930203,0.000020148265,0.000018960609,0.00001963503,0.000018937695,0.000020388912,0.000018997642,0.000019365974,0.000018835715,0.000019853711,0.000018443261,0.000018541508,0.000017969958,0.000019380017,0.000018396746,0.000018999961,0.000018812181,0.000020153166,0.00001904911,0.000019612702,0.000018925544,0.000020346899,0.000019305548,0.00001982773,0.000019293273,0.00002026651,0.000018986791,0.000019119307,0.000018713929,0.00002009858,0.000019542988,0.00002032727,0.000019888977,0.000020898582,0.000019936395,0.000020734191,0.000020358368,0.0000217699,0.000020869962,0.000021247264,0.000020275695,0.000020952502,0.000019777272,0.00001960741,0.000018805025,0.000019856607,0.00001900393,0.000019739813,0.00001923366,0.000020620002,0.00001966385,0.000020581101,0.000019581006,0.000020934107,0.000019888863,0.000020978136,0.000019907287,0.000021111999,0.00001945735,0.000019703213,0.000018835553,0.000019647934,0.000020342202,0.000020566269,0.000020427233,0.000020871594,0.000020813277,0.000021551887,0.00002070467,0.000021196365,0.00002251822,0.0000253298,0.000024918922,0.000016827564,0.0000107140695,0.000013290156],[0.000015326517,0.000011166521,0.000010292242,0.00001377939,0.000026747513,0.000036883677,0.00002977002,0.000024637682,0.000022341963,0.0000216185,0.000021293292,0.000019850473,0.0000200723,0.000019610758,0.000020182362,0.000019482788,0.000020930474,0.000020599029,0.0000215464,0.000019711819,0.000021066648,0.000020494923,0.000020848282,0.00001928724,0.000020155107,0.000019396897,0.000020367692,0.000019082892,0.00002034944,0.00001978078,0.00002023675,0.000018814908,0.000019889205,0.00001937037,0.000020433214,0.000019402929,0.0000210051,0.000020386831,0.000020895794,0.000019381847,0.000020365302,0.000019938505,0.000021002137,0.000019643945,0.000020651429,0.000019991036,0.000020165086,0.000018806477,0.000019704716,0.000019414349,0.000020412297,0.000018906316,0.000020301155,0.000019737628,0.000020186386,0.000018795163,0.000020015033,0.000019460635,0.000020433545,0.000018757524,0.000019971865,0.000019517507,0.000019744914,0.000018271174,0.000019170062,0.000018950252,0.000019966725,0.000018409539,0.00001993822,0.000019463048,0.000020091395,0.000018587094,0.000019876557,0.000019185058,0.000020195088,0.000018502613,0.000019769937,0.000019388777,0.000019679926,0.000018189341,0.000019176645,0.000018931503,0.000019988938,0.000018449382,0.000020010166,0.000019465238,0.000020134512,0.000018640225,0.000019941757,0.000019238722,0.000020272484,0.000018574727,0.000019812269,0.000019422589,0.000019706971,0.000018227594,0.000019205287,0.000018952638,0.000019989244,0.000018463006,0.00002002414,0.000019483829,0.000020149053,0.000018663062,0.00001993493,0.00001924542,0.000020250167,0.00001855281,0.00001979631,0.000019414034,0.000019699924,0.000018217794,0.000019194684,0.00001893683,0.000019971161,0.000018457758,0.000020019022,0.000019470046,0.000020131441,0.000018640045,0.00001992463,0.000019234925,0.000020261139,0.000018571556,0.00001982102,0.000019434614,0.000019704754,0.000018205481,0.000019180065,0.000018939085,0.000019969428,0.00001845137,0.000020008734,0.000019465962,0.000020126123,0.000018634002,0.000019914827,0.000019218864,0.00002024061,0.000018552899,0.000019808358,0.000019428202,0.000019711613,0.00001821682,0.00001919022,0.000018923236,0.000019958632,0.000018447676,0.000020012914,0.000019458612,0.000020115127,0.000018622137,0.000019904099,0.000019205048,0.000020231173,0.000018546441,0.000019799445,0.000019411775,0.000019689463,0.000018198345,0.000019177485,0.000018918128,0.000019952562,0.000018433413,0.00001998995,0.000019447816,0.000020107456,0.000018612389,0.00001990167,0.000019218258,0.000020253237,0.000018566669,0.000019813291,0.000019414016,0.000019683248,0.000018194962,0.000019159626,0.000018910463,0.000019942403,0.000018392237,0.000019952144,0.000019415256,0.000020140447,0.000018730872,0.000020003545,0.00001935547,0.000020280644,0.000018517334,0.000019604082,0.000019167412,0.000019328907,0.000017942422,0.000018819233,0.000018633169,0.000019694666,0.000018165729,0.00001969829,0.000019357629,0.000020189773,0.00001873784,0.000020050089,0.00001950279,0.000020636327,0.000019062958,0.000020199479,0.000019539893,0.000019846611,0.000018741397,0.000019693218,0.00001947989,0.000020745741,0.000019724157,0.00002109061,0.000020287647,0.000020996387,0.000020056706,0.000021258535,0.000021007525,0.000022293181,0.000020991984,0.000021467888,0.000020774429,0.00002088312,0.000019639167,0.00001997278,0.000019465795,0.000020290277,0.00001888154,0.000020354175,0.000019621533,0.000020340127,0.000019247567,0.000020545647,0.000019908864,0.00002084478,0.000019775802,0.000020796017,0.000020361147,0.000020174779,0.000019187511,0.000019073159,0.000019164469,0.000020136547,0.000019920773,0.000020429006,0.000020064339,0.000020407138,0.000020284473,0.000019959147,0.000020184845,0.000022406743,0.000023980614,0.000026257288,0.000017030774,0.000011269931,0.000012868447],[0.000015721122,0.000012271931,0.000011422628,0.000015052241,0.000027994412,0.00003474223,0.000027112163,0.000023292041,0.000020452942,0.000020605,0.000019431742,0.00001961031,0.000018879686,0.000019173718,0.000018569235,0.000019062194,0.000019061703,0.000020081683,0.00001924041,0.000019280618,0.000019435633,0.000020213798,0.000019222016,0.00001928847,0.000018288763,0.000019212284,0.0000181667,0.000018641183,0.000018292007,0.000019399653,0.000018275932,0.000018754035,0.000018053817,0.000019497193,0.000018651765,0.000019502864,0.000019376837,0.000020622185,0.000019240282,0.000019507683,0.000018662404,0.000019930672,0.000018799985,0.000019077397,0.000018916595,0.00001971684,0.000018636136,0.000018817582,0.000018188195,0.000019484442,0.000018409171,0.000018708075,0.000018645007,0.000019686946,0.000018628709,0.00001894445,0.00001834111,0.000019754632,0.000018463641,0.00001872546,0.00001846584,0.00001951064,0.000018149176,0.000018318822,0.000017773635,0.000019131125,0.000018080023,0.000018406221,0.000018365017,0.00001959879,0.000018415667,0.000018776745,0.000018155477,0.000019593726,0.00001827058,0.000018546565,0.000018254297,0.000019435096,0.000018024537,0.000018266592,0.000017734186,0.000019159479,0.000018100329,0.000018468465,0.000018404186,0.00001965622,0.000018464221,0.000018837962,0.000018207493,0.000019649977,0.000018330775,0.000018604527,0.00001830129,0.00001945711,0.000018053594,0.000018300889,0.000017767874,0.00001917136,0.000018111656,0.000018475599,0.00001843062,0.000019674015,0.000018485856,0.000018854083,0.000018225213,0.00001965633,0.000018335251,0.000018580839,0.000018288554,0.000019440713,0.000018041907,0.000018275756,0.000017759523,0.000019158913,0.00001809693,0.000018461827,0.000018416107,0.000019655543,0.000018469485,0.000018826575,0.000018211105,0.000019643232,0.000018331071,0.00001858869,0.000018300801,0.000019450355,0.000018049497,0.000018276436,0.00001775776,0.00001916414,0.000018100813,0.000018455172,0.000018406854,0.00001964683,0.00001846142,0.000018815932,0.00001819786,0.000019628438,0.000018317092,0.00001858449,0.000018297731,0.000019453157,0.00001804411,0.000018276245,0.000017747907,0.00001915148,0.000018093202,0.000018461069,0.000018409222,0.000019648834,0.000018453184,0.000018812398,0.00001818993,0.000019621719,0.000018307295,0.000018571964,0.000018285467,0.000019437117,0.000018032773,0.00001826607,0.000017741952,0.00001914642,0.000018083025,0.000018446655,0.000018396062,0.00001963868,0.000018445318,0.000018808432,0.000018185438,0.00001962945,0.000018324465,0.000018595942,0.000018299388,0.00001944978,0.000018033496,0.000018257919,0.000017726932,0.000019144483,0.000018075403,0.000018440463,0.000018372393,0.000019657531,0.000018528744,0.000018953595,0.000018302424,0.000019757214,0.000018348896,0.000018528834,0.000018090182,0.000019160392,0.000017741391,0.000017995424,0.000017457965,0.000018940476,0.000017949578,0.000018428264,0.000018239645,0.000019756913,0.000018578323,0.000019129046,0.000018509054,0.000019952866,0.000018764878,0.000019155897,0.000018656905,0.000019692243,0.000018337558,0.00001865865,0.000018374583,0.00001968126,0.000018969564,0.000019663774,0.00001968017,0.000020749818,0.00001976856,0.000020440055,0.000019907688,0.000021224581,0.000020146288,0.00002037348,0.00001979597,0.000020254301,0.00001926845,0.000019221961,0.000018649967,0.000019431001,0.000018469345,0.000018758668,0.000018551571,0.000019838626,0.00001889114,0.00001969551,0.00001899708,0.00002015063,0.00001877825,0.000019550107,0.000018749422,0.000020121288,0.000018826107,0.000019124958,0.000018041545,0.000019242832,0.000019234449,0.00002003625,0.000019800182,0.00002037725,0.000020263999,0.000021396514,0.000020732234,0.00002142467,0.000021900169,0.000024879953,0.000025325813,0.000018305951,0.0000109977955,0.00001353941],[0.000015431482,0.000013302849,0.000010558392,0.00001710989,0.000028425977,0.000036413334,0.000028735081,0.000023868475,0.000021622849,0.000021270762,0.000020742202,0.000019948928,0.00002033611,0.000019809191,0.000020120231,0.000019667055,0.00002041919,0.000020450485,0.000020431227,0.00001963531,0.000020844125,0.000020920697,0.000020861306,0.000019805337,0.000020066942,0.000019799765,0.000019793348,0.000018825802,0.000019623049,0.000019717367,0.00002007927,0.000019118632,0.00001994461,0.000019948397,0.000020617326,0.000019803769,0.000020996727,0.000020717529,0.000020973754,0.000019924573,0.000020607655,0.000020455402,0.000020641663,0.000019478275,0.000020094192,0.000020261063,0.000020336887,0.000019478124,0.000020278323,0.000020227604,0.000020542904,0.000019245346,0.000020220989,0.000020279831,0.000020567191,0.000019530056,0.000020427953,0.000020321766,0.000020520503,0.000019110776,0.000019913916,0.0000200516,0.000020199865,0.000019017218,0.00001992216,0.000019915968,0.000020344454,0.000019004872,0.000020166162,0.000020212005,0.000020550407,0.000019362244,0.000020327154,0.000020141215,0.000020424777,0.00001896978,0.000019809058,0.000019975618,0.00002014621,0.000018963503,0.00001990651,0.000019898824,0.000020375111,0.000019046603,0.000020234473,0.000020217807,0.000020591233,0.000019413257,0.000020381118,0.00002017199,0.000020472282,0.000019016856,0.000019843754,0.000020009593,0.000020169375,0.000019000177,0.000019932157,0.000019912017,0.00002038164,0.000019065776,0.00002025654,0.000020241305,0.000020603175,0.000019435189,0.000020387299,0.000020190582,0.000020474528,0.000019011924,0.000019820302,0.000019998968,0.00002015188,0.00001897888,0.00001992651,0.00001991196,0.000020358095,0.000019052615,0.00002023704,0.000020222493,0.000020587973,0.000019421701,0.000020380981,0.000020179225,0.000020467909,0.000019017834,0.000019830095,0.000020004803,0.000020149399,0.000018981487,0.000019922274,0.00001991044,0.00002036297,0.000019055014,0.000020231848,0.000020222764,0.000020586695,0.000019411775,0.00002037208,0.000020177858,0.000020466094,0.000019016567,0.00001982896,0.000019992503,0.00002014308,0.00001897651,0.000019918323,0.000019899526,0.00002035792,0.000019057468,0.000020242038,0.000020217576,0.00002058281,0.000019407351,0.00002036536,0.000020159585,0.000020447385,0.000019000703,0.000019816882,0.000019992884,0.000020140447,0.000018969526,0.000019906985,0.000019891233,0.000020352758,0.00001904112,0.00002022178,0.000020215475,0.000020576863,0.000019401097,0.000020358155,0.00002016997,0.000020460024,0.000019014553,0.000019825859,0.000019997671,0.000020147996,0.000018961658,0.000019897856,0.000019893947,0.00002036365,0.000019030282,0.000020231888,0.000020216265,0.000020630307,0.000019512781,0.000020421585,0.000020266203,0.0000204078,0.000018903971,0.00001953682,0.000019692448,0.000019803732,0.00001866559,0.000019576302,0.00001972267,0.000020238853,0.000018997098,0.000020172818,0.00002023125,0.00002082384,0.000019722143,0.000020702164,0.0000204277,0.000020647489,0.000019426665,0.000020318743,0.000020123973,0.000020207244,0.000019360048,0.000020236866,0.000020208054,0.00002043717,0.000019749265,0.000020978434,0.000020805399,0.000021210419,0.000020651683,0.00002154005,0.000021330485,0.000021155633,0.000020411986,0.000020590092,0.00002085339,0.00002061595,0.000019913688,0.000020326668,0.000020497815,0.000020268464,0.000019157269,0.000020258627,0.000020083598,0.000020813177,0.000020026202,0.000020967695,0.000020402525,0.000020259284,0.000019388872,0.000019798614,0.000020241208,0.00002016424,0.000019398618,0.000018934426,0.000019186999,0.000019384248,0.000019919613,0.000020019519,0.000020664984,0.000020880572,0.000021293981,0.00002116986,0.000021640612,0.000022979757,0.000024287916,0.000025554398,0.00001908655,0.000011392808,0.000013494229],[0.00001528139,0.000015694937,0.000011866055,0.00001726228,0.00002922047,0.00003440543,0.000027551243,0.000024397044,0.000020879397,0.000021089583,0.000019680245,0.00002011066,0.0000189808,0.000019725847,0.000019345596,0.000020193605,0.000019530858,0.000020477202,0.000019432742,0.00001976822,0.000019682573,0.000020803673,0.000019624656,0.000020066158,0.000018743487,0.000019733168,0.000018462231,0.000018683506,0.000018277082,0.000019549958,0.000018778697,0.00001959597,0.000018466757,0.000019894915,0.000019050072,0.000019918587,0.000019435023,0.000020723814,0.000019499535,0.000020246383,0.000019092104,0.000020351748,0.000018983987,0.000019103232,0.000018576675,0.000019613768,0.000018960212,0.000019668032,0.000018925617,0.000020171721,0.000018975026,0.00001910529,0.000018746116,0.000019670038,0.000019050998,0.000019651476,0.000018988369,0.000020226062,0.000018826251,0.000018835679,0.000018376055,0.000019571728,0.000018752768,0.000019256675,0.000018587643,0.000019883952,0.000018771376,0.000018954337,0.000018684415,0.000019738945,0.000018959741,0.000019482826,0.000018823828,0.000020085054,0.000018695233,0.000018718836,0.00001827039,0.000019536148,0.000018693183,0.00001922616,0.000018546476,0.000019864714,0.000018763374,0.000018997824,0.000018707378,0.000019765752,0.00001899306,0.000019544552,0.000018862338,0.000020132285,0.000018736857,0.000018757148,0.000018299894,0.00001956277,0.000018725657,0.000019263636,0.000018574816,0.000019874777,0.000018776585,0.000019014426,0.000018732926,0.000019788195,0.000019010637,0.000019559076,0.000018885808,0.000020144213,0.00001874118,0.000018753804,0.00001829042,0.000019540117,0.00001871805,0.000019244852,0.000018565766,0.000019869109,0.000018770676,0.000018999688,0.000018716873,0.00001977165,0.000019000703,0.000019550424,0.00001887648,0.000020140773,0.000018742916,0.00001875309,0.000018293542,0.000019546229,0.000018707362,0.000019234174,0.000018562792,0.00001986386,0.00001877363,0.00001900201,0.000018717086,0.000019767655,0.000018997967,0.000019534677,0.000018869678,0.000020135089,0.000018743935,0.00001874626,0.000018281578,0.00001953952,0.0000187072,0.0000192372,0.000018560066,0.000019859845,0.000018767883,0.000019006648,0.000018724104,0.000019771576,0.00001899248,0.000019531844,0.000018858813,0.000020115014,0.000018721264,0.000018734212,0.000018283672,0.000019539744,0.00001869666,0.000019223171,0.000018549748,0.000019852367,0.000018754232,0.000018984765,0.000018707024,0.000019762245,0.000018983279,0.00001952285,0.000018856816,0.00002012407,0.00001873859,0.000018751352,0.000018293787,0.00001955516,0.000018705417,0.000019224473,0.000018549254,0.000019869016,0.00001876146,0.000018998982,0.000018698409,0.000019781062,0.000019059067,0.000019669851,0.000018977687,0.000020258049,0.000018733801,0.000018652707,0.000018079922,0.00001930728,0.000018428229,0.00001892246,0.00001826532,0.000019733507,0.00001864714,0.000019050145,0.00001861553,0.000020037149,0.00001929158,0.000020011921,0.000019043879,0.000020482066,0.000019123829,0.000019552792,0.00001890947,0.000020265932,0.000019242687,0.000019807321,0.00001897528,0.000020210058,0.000019152356,0.000019700658,0.000019236062,0.000020406691,0.000019938409,0.000020925985,0.000020040397,0.00002134316,0.0000198546,0.000020215146,0.000019321942,0.000020557209,0.000019762942,0.000020314848,0.000019355746,0.000020590289,0.000019268542,0.000019471978,0.000018901323,0.00002008103,0.000019577104,0.000020448926,0.000019314553,0.000020468788,0.000018869498,0.000019321113,0.0000183187,0.000019848902,0.00001900353,0.000019666624,0.00001790149,0.000018961966,0.000018486138,0.000019441863,0.00001917231,0.000020343346,0.00002056623,0.000021721062,0.000021498638,0.000022433982,0.000023597877,0.00002572644,0.000024931898,0.000017270513,0.000011424262,0.000013645718],[0.000015875232,0.000017399378,0.000013104256,0.000019025762,0.00003221881,0.00003585381,0.000031905318,0.000025221354,0.000022844548,0.000021807384,0.000021547716,0.000019902924,0.000020398831,0.000019739851,0.000020570487,0.000019878205,0.000021086404,0.000020723577,0.000021348576,0.000019766881,0.000021179636,0.000020791931,0.000021588585,0.000019864334,0.000020499516,0.000019522795,0.00001990408,0.000018577757,0.000019824347,0.000019584424,0.000020721265,0.000019288895,0.000020274398,0.000019536577,0.000020542648,0.000019396972,0.000021033184,0.000020528902,0.000021630585,0.00001993879,0.000020841402,0.000020011215,0.000020703665,0.000018974828,0.000020067937,0.000019811212,0.000020791416,0.000019583154,0.000020524498,0.000019871763,0.000020701887,0.000018954246,0.00002011273,0.000019688749,0.000020904123,0.00001948537,0.000020581474,0.000019944819,0.000020596004,0.000018624072,0.000019775403,0.000019569357,0.000020627258,0.000019194757,0.000020227526,0.000019604344,0.000020508569,0.000018796902,0.00002007276,0.000019681765,0.00002085186,0.000019333958,0.000020468377,0.000019784497,0.000020483432,0.000018494638,0.000019689463,0.000019490722,0.00002058065,0.000019142988,0.000020202697,0.000019538384,0.000020462796,0.000018810762,0.000020109643,0.00001967895,0.000020899739,0.000019388373,0.00002052802,0.000019815578,0.000020530917,0.000018536733,0.000019716219,0.000019527337,0.000020613534,0.000019187437,0.000020232967,0.000019551058,0.000020467169,0.00001883137,0.000020126257,0.00001969998,0.000020912856,0.000019400986,0.000020541082,0.000019825802,0.00002052477,0.000018535195,0.000019709434,0.000019512558,0.000020588424,0.000019174304,0.000020222087,0.000019545578,0.00002046465,0.00001883234,0.000020122074,0.000019692505,0.000020908012,0.000019398894,0.000020541513,0.000019820547,0.000020539574,0.000018543808,0.000019709376,0.000019518364,0.000020589248,0.000019165856,0.00002021638,0.000019547442,0.000020458445,0.000018831226,0.000020117432,0.000019697914,0.00002090855,0.000019398525,0.000020533542,0.000019832478,0.000020524985,0.000018522544,0.000019700863,0.000019519815,0.000020597634,0.000019168434,0.000020217461,0.00001954323,0.000020451247,0.000018827885,0.000020120577,0.000019693218,0.000020897884,0.000019379777,0.000020517607,0.000019804866,0.00002051391,0.000018518003,0.000019701296,0.00001951371,0.000020580179,0.000019152885,0.000020205991,0.000019532328,0.000020442434,0.000018808378,0.000020103143,0.000019682911,0.000020890353,0.000019377336,0.000020512754,0.000019820529,0.000020524829,0.000018530742,0.000019707628,0.000019522347,0.000020596533,0.000019153433,0.000020204856,0.000019546622,0.000020464942,0.000018799286,0.000020097334,0.000019667976,0.000020952983,0.000019501806,0.00002063192,0.000019946074,0.000020530291,0.000018488801,0.000019500205,0.000019340763,0.000020323743,0.000018896708,0.000019915187,0.000019384508,0.000020434169,0.000018663153,0.000020075076,0.000019735351,0.000021296824,0.000019653295,0.000020768646,0.000020005835,0.000020701098,0.000019286595,0.000020369049,0.000020099116,0.000020918382,0.000019845116,0.000020469179,0.000019836261,0.000020368758,0.0000193611,0.00002043454,0.000020223399,0.00002143262,0.000020559051,0.000021460723,0.000020942134,0.000021377933,0.000020224365,0.000020801153,0.00002072842,0.000021469175,0.000020378258,0.000020890991,0.000020176569,0.000020562366,0.00001913702,0.000020160258,0.000019650539,0.000020994885,0.000019731324,0.000020810816,0.000019951935,0.000020435924,0.000019106292,0.00001982896,0.000019844436,0.000020982636,0.000019596606,0.000019500856,0.000018789877,0.000019524936,0.000018947216,0.000019791987,0.000020235553,0.000020866062,0.000020792644,0.00002095866,0.000021479846,0.000024763254,0.000024742483,0.000024260577,0.000016134594,0.000011017699,0.0000131758725],[0.000015842821,0.000018009263,0.000015813508,0.000022128812,0.000032015378,0.00003127648,0.00002703646,0.00002368603,0.000021114798,0.000020808971,0.000019554098,0.000019910536,0.000019061084,0.000019702122,0.000018948373,0.000019950983,0.000019757234,0.000020820304,0.000019549456,0.00001970979,0.000019609111,0.000020652473,0.000019628307,0.00001973345,0.000018846873,0.000019447963,0.000018526041,0.000018555129,0.000018230638,0.000019342313,0.000018568333,0.000019131727,0.000018597113,0.000019749454,0.000018923669,0.00001957912,0.0000194023,0.000020716345,0.000019573521,0.000019939056,0.000019192727,0.00002012689,0.000018939358,0.000018859226,0.000018705347,0.000019708286,0.000019107858,0.000019472627,0.000018954825,0.000020006903,0.000018996898,0.000019005869,0.000018847863,0.000019672458,0.000019097402,0.000019285859,0.00001891757,0.00001981722,0.000018830022,0.000018602665,0.000018525565,0.0000195682,0.000018806224,0.000019114237,0.000018608733,0.000019688036,0.000018720692,0.00001884486,0.000018756631,0.000019751675,0.00001897347,0.000019157524,0.000018774259,0.00001969953,0.000018697267,0.000018453835,0.000018397395,0.000019490928,0.000018712963,0.00001905425,0.000018556739,0.000019666926,0.000018692755,0.000018837763,0.000018744167,0.000019771916,0.000019010111,0.000019218001,0.000018826897,0.000019746176,0.000018734123,0.000018484834,0.000018428105,0.000019513991,0.000018750854,0.000019089008,0.000018588444,0.00001967927,0.000018700317,0.000018841823,0.000018756917,0.000019781797,0.000019020485,0.000019224692,0.00001883453,0.000019749716,0.000018736802,0.000018477838,0.00001842424,0.000019495204,0.000018716837,0.000019047457,0.000018571893,0.000019663736,0.000018700797,0.000018841016,0.000018755378,0.000019775009,0.00001900768,0.000019216717,0.00001883304,0.00001974627,0.00001874188,0.000018485556,0.000018421606,0.000019497435,0.000018730996,0.000019055724,0.00001857354,0.00001966531,0.000018701316,0.000018835948,0.000018762785,0.000019785686,0.000019026378,0.000019216663,0.000018829374,0.0000197257,0.000018715622,0.000018461104,0.00001841644,0.000019500614,0.000018733677,0.000019058394,0.000018570865,0.000019660098,0.000018690223,0.000018825658,0.000018748618,0.000019776837,0.000019008388,0.0000191969,0.000018814442,0.000019724062,0.000018718532,0.00001845864,0.000018407363,0.000019493289,0.000018722263,0.000019051799,0.00001856295,0.000019655768,0.000018680283,0.000018816667,0.000018739824,0.000019769634,0.000019008823,0.00001919917,0.00001882135,0.000019739342,0.000018735607,0.000018473256,0.000018414737,0.000019505338,0.000018736213,0.000019053163,0.00001855504,0.000019658337,0.00001867825,0.000018817025,0.00001873473,0.000019776782,0.000019096746,0.000019338384,0.000018949853,0.0000198718,0.000018778142,0.000018443841,0.000018273038,0.000019317573,0.00001850427,0.00001879389,0.000018246605,0.000019453602,0.00001855718,0.000018787654,0.000018691348,0.000020063591,0.000019234245,0.000019758985,0.000019113144,0.000020157126,0.000019063486,0.000019257664,0.000019123518,0.000020345928,0.000019308882,0.000019960042,0.000019369945,0.00002028076,0.000019171543,0.000019699153,0.000019658242,0.00002072565,0.000020067306,0.000020865804,0.000020388483,0.000021199741,0.000019983545,0.00002001177,0.000019478031,0.000020406264,0.000019649638,0.000020006673,0.00001926347,0.000019986823,0.000019007392,0.000019075651,0.000018705452,0.000019643101,0.00001912857,0.000019697482,0.000019267365,0.00001997537,0.000019082656,0.0000191206,0.00001855373,0.000019583415,0.000018943349,0.000019231386,0.000018373199,0.000018852052,0.00001901,0.00001961564,0.000019704115,0.00002102426,0.000020781523,0.000021685235,0.00002116102,0.000022417473,0.00002365285,0.000027078313,0.000024598825,0.000016559952,0.000010395533,0.000013371774],[0.000016170718,0.000017843506,0.000014631147,0.000024331035,0.000030022391,0.000029717854,0.00002645419,0.000023454668,0.000021765665,0.000021138632,0.000020953541,0.000020288962,0.000020922493,0.000020004385,0.000020325391,0.000019926965,0.000021013457,0.000020732848,0.000020874342,0.000019992218,0.000021012112,0.000021199803,0.00002107774,0.000019968666,0.000020447504,0.000020282057,0.00002057135,0.000019440195,0.000019987165,0.000020019766,0.00002021295,0.000019284847,0.000020378122,0.000020230962,0.000021006,0.000020161164,0.000021246455,0.000021078504,0.000021309299,0.000020243311,0.000021018604,0.000020724507,0.000021030515,0.00001972077,0.00002036837,0.000020568094,0.000020632493,0.000019852518,0.00002067959,0.000020566386,0.000021002576,0.000019791629,0.000020641446,0.000020556976,0.000020773497,0.000019818808,0.000020564326,0.000020480737,0.000020971014,0.000019563162,0.000020383215,0.000020401067,0.000020515103,0.000019494813,0.000020340747,0.000020218522,0.000020712512,0.000019610758,0.00002059186,0.00002052344,0.000020732017,0.000019671108,0.000020435826,0.000020343427,0.000020802898,0.000019433113,0.00002029173,0.000020307467,0.000020458268,0.000019395306,0.000020319538,0.000020184152,0.000020677935,0.00001959296,0.000020598049,0.000020527177,0.000020781285,0.000019720883,0.000020502037,0.000020382613,0.00002084822,0.000019456162,0.00002030923,0.000020342532,0.000020488435,0.000019423645,0.00002034721,0.000020192989,0.000020677342,0.000019596026,0.00002060121,0.000020530957,0.000020783367,0.000019727127,0.000020512247,0.000020388057,0.000020847086,0.000019459614,0.000020302588,0.000020330972,0.000020454132,0.000019391146,0.000020317793,0.000020186846,0.000020670483,0.000019597204,0.000020599835,0.000020526102,0.000020775005,0.000019717085,0.000020511405,0.000020389707,0.000020846352,0.000019464105,0.000020301874,0.000020333127,0.000020464531,0.00001941133,0.000020329906,0.0000201901,0.000020667743,0.000019608962,0.000020615871,0.000020552308,0.00002078404,0.000019712743,0.000020474607,0.000020361844,0.000020824951,0.000019457091,0.000020302705,0.000020331478,0.000020462307,0.000019403355,0.000020325526,0.00002017955,0.000020660333,0.000019589823,0.000020599147,0.0000205298,0.000020776768,0.000019710786,0.000020493222,0.00002037243,0.000020825984,0.000019443643,0.000020293859,0.000020324362,0.000020460475,0.000019400266,0.000020322503,0.000020174588,0.000020651429,0.000019582147,0.000020588148,0.000020527394,0.000020775104,0.000019719304,0.000020493711,0.000020388738,0.000020842832,0.000019459483,0.00002030077,0.000020330333,0.000020470174,0.000019413608,0.000020301253,0.000020172894,0.000020659643,0.000019589897,0.000020598538,0.000020545782,0.000020833513,0.000019843565,0.000020612706,0.000020523323,0.000020858659,0.000019445773,0.000020112271,0.000020160798,0.000020228066,0.000019247971,0.000019916213,0.000019947634,0.000020591153,0.000019578636,0.000020689118,0.000020704218,0.000021065382,0.000019915567,0.000020958058,0.000020655722,0.00002114599,0.000019963658,0.000021093063,0.000020795796,0.000020925407,0.000020059442,0.000020971474,0.000020537242,0.000020904921,0.000020276739,0.000021492448,0.000021314216,0.00002158562,0.00002109093,0.000022122378,0.000021891607,0.000021962851,0.00002082787,0.000021164069,0.0000211675,0.000021008966,0.000020188714,0.000020647252,0.000020439431,0.000020595453,0.00001979618,0.000020552507,0.000020380709,0.00002080288,0.000020058924,0.000021100706,0.000020928079,0.000021449387,0.000020353747,0.000020487496,0.0000206006,0.000020179745,0.00001992349,0.000019456776,0.000019917543,0.000020480993,0.000020627827,0.000020945132,0.000021582924,0.000021347782,0.000021685339,0.000021429247,0.00002200411,0.0000247527,0.000025187655,0.000024817653,0.000017202461,0.0000108067015,0.000013217252],[0.000015663776,0.00001581663,0.000014758196,0.000021892442,0.000029437344,0.00002851696,0.00002382204,0.000022446224,0.000019778083,0.000020451129,0.000019574974,0.000020515083,0.000019144247,0.000019811061,0.000019065503,0.000019980038,0.000019325165,0.000020628675,0.000019438914,0.000020240726,0.000019692354,0.0000208888,0.00001968783,0.000019764695,0.000019050507,0.000020231404,0.000019610814,0.000020008525,0.000019256931,0.000020033995,0.000018862102,0.000019083602,0.00001850577,0.00001993149,0.000019283376,0.000020282618,0.000019552699,0.000020611546,0.000019523613,0.000019899659,0.00001919148,0.00002038131,0.000019549772,0.00001982223,0.000019151845,0.000020093521,0.000019170646,0.000019632613,0.000018924246,0.000020332622,0.000019343845,0.00001996579,0.000019280305,0.00002020659,0.000019389647,0.000019704357,0.000019179699,0.000020273374,0.000019632913,0.000019687604,0.000019169787,0.000019953684,0.0000190486,0.00001938765,0.000018633471,0.000020044257,0.000019145233,0.000019831818,0.000019211588,0.00002020422,0.000019262516,0.000019558145,0.000019005505,0.000020150226,0.000019463845,0.000019517283,0.00001907354,0.000019863483,0.000018967392,0.000019302584,0.00001858153,0.000020021582,0.000019127076,0.000019829831,0.00001920547,0.000020205336,0.000019280747,0.000019596455,0.000019046094,0.000020178762,0.000019492805,0.000019536801,0.000019085532,0.00001987379,0.000018993076,0.000019328649,0.000018604776,0.00002003262,0.000019135978,0.000019837946,0.000019210085,0.000020205895,0.000019284626,0.000019602081,0.000019055597,0.000020191506,0.000019501971,0.000019539837,0.000019090901,0.00001987614,0.000018984456,0.000019305051,0.000018583993,0.000020018679,0.000019141855,0.000019839401,0.000019202556,0.00002019455,0.000019282272,0.000019598006,0.000019049146,0.000020189791,0.000019502884,0.000019538646,0.000019089426,0.000019876425,0.000018994599,0.000019316913,0.00001859972,0.000020028456,0.000019154675,0.000019858955,0.000019236117,0.000020214105,0.00001927025,0.000019568759,0.00001903511,0.000020183881,0.000019511757,0.000019546118,0.000019097566,0.000019871137,0.000018983987,0.000019307445,0.000018591385,0.000020019728,0.000019139794,0.000019834995,0.00001921135,0.000020202235,0.00001928174,0.000019588962,0.000019043788,0.000020175858,0.000019495874,0.000019526853,0.000019085459,0.00001986297,0.000018977813,0.000019311423,0.00001859424,0.00002002076,0.00001912766,0.000019824385,0.000019204113,0.000020195916,0.000019285031,0.000019593374,0.000019052326,0.000020193951,0.000019522144,0.000019548728,0.000019097948,0.000019871479,0.00001899362,0.000019308714,0.000018580431,0.000020006197,0.000019114985,0.000019811174,0.000019204903,0.000020204121,0.000019376042,0.000019718513,0.000019199939,0.000020341833,0.000019612085,0.000019536372,0.000018997642,0.000019737214,0.000018831028,0.000019083713,0.00001830403,0.000019698102,0.00001885883,0.00001962348,0.000019166917,0.000020352447,0.000019345061,0.00001972015,0.000019007608,0.00002023287,0.000019446796,0.000019772368,0.000019195088,0.000020235302,0.00001924542,0.000019731286,0.000019001174,0.000020297923,0.000019588777,0.000020430818,0.000019869205,0.00002086059,0.000020152838,0.000020739213,0.000020263902,0.000021497388,0.000020875197,0.00002110266,0.000020005493,0.000020792742,0.000019846479,0.000020087084,0.000019066048,0.000020195512,0.000019450708,0.000020193875,0.000019422701,0.000020304544,0.00001961201,0.000019893681,0.000019496765,0.000020677382,0.000020552878,0.000021157268,0.000020315952,0.000021003198,0.00001978895,0.000019757063,0.000018867986,0.00001962683,0.000020330488,0.00002053311,0.00002035895,0.000020977453,0.000020964175,0.000021797008,0.000020999732,0.000021560027,0.000023020204,0.00002565429,0.00002407036,0.000016503165,0.0000106209445,0.000013449481],[0.000015787891,0.000014393358,0.000013942134,0.000020518899,0.000031679807,0.000030705356,0.00002722632,0.000022939557,0.000021290793,0.000020911162,0.000021179048,0.00002010736,0.00002054351,0.000019559655,0.00001993744,0.000019099898,0.000020379252,0.000020073947,0.000021292111,0.000019731042,0.000021031457,0.000020709333,0.000021012194,0.000019684301,0.000020291749,0.000019736668,0.000020840409,0.00001971823,0.000020768626,0.000020121613,0.00002045671,0.000018859046,0.000019856494,0.000019399782,0.000020740481,0.000019514808,0.000020917525,0.000020324615,0.000020990561,0.000019694402,0.000020441672,0.000020043455,0.000021145186,0.000019596082,0.000020721265,0.000020149764,0.000020820802,0.000019387448,0.000020249992,0.000019858842,0.000021015097,0.000019465591,0.000020597909,0.000020105597,0.000020778927,0.000019743087,0.00002044996,0.000020138756,0.00002127693,0.000019596568,0.000020574922,0.000019990082,0.000020687856,0.000019259447,0.000020078847,0.000019691828,0.000020847565,0.000019340652,0.000020481713,0.00002003606,0.00002069334,0.000019562007,0.000020306868,0.000019984174,0.000021080916,0.000019440564,0.000020449297,0.00001990818,0.000020619076,0.000019163299,0.000020037529,0.000019676192,0.000020821,0.000019341262,0.000020469022,0.000020031855,0.000020714824,0.000019598474,0.000020349458,0.000020028838,0.000021124284,0.000019471234,0.000020464417,0.000019921248,0.000020639261,0.00001919117,0.00002006455,0.000019691623,0.000020821793,0.000019351888,0.000020470214,0.000020034167,0.0000207118,0.000019609392,0.000020354059,0.000020040645,0.000021141213,0.000019483716,0.00002047855,0.000019938561,0.00002064176,0.000019182058,0.000020047106,0.000019684827,0.000020818854,0.000019359844,0.000020467207,0.000020022326,0.000020706646,0.00001961663,0.000020357902,0.000020039288,0.00002113575,0.00001948054,0.000020471169,0.000019940293,0.000020642528,0.000019195691,0.000020065716,0.000019706238,0.000020848956,0.000019383842,0.000020486266,0.000020028283,0.000020688507,0.000019599427,0.000020354759,0.000020048445,0.000021142725,0.000019497342,0.000020487008,0.000019935957,0.000020634656,0.000019182955,0.000020056821,0.000019693576,0.000020820662,0.000019357058,0.000020472322,0.000020034913,0.00002070963,0.000019606287,0.00002034752,0.000020034358,0.000021133854,0.000019479146,0.000020463985,0.000019922254,0.000020636407,0.000019181034,0.000020056648,0.000019681898,0.000020803,0.000019343863,0.000020458814,0.000020024178,0.00002070649,0.000019606887,0.00002035072,0.00002004206,0.000021147363,0.000019502158,0.00002048195,0.000019932726,0.000020640737,0.000019188243,0.000020035466,0.000019666624,0.000020801292,0.000019316598,0.000020449257,0.000020030748,0.000020770092,0.000019716652,0.000020465528,0.000020152724,0.00002120051,0.000019546416,0.000020344803,0.00001976558,0.000020354117,0.000018961731,0.000019717309,0.000019252397,0.00002049811,0.000018973416,0.000020352078,0.000019947405,0.000020793615,0.000019440564,0.00002038306,0.000019891539,0.000021189717,0.000019417552,0.000020525376,0.000019911162,0.000020524241,0.000019307667,0.000020196378,0.000019778103,0.00002083244,0.000019746327,0.000020826461,0.000020368312,0.00002114206,0.000020505167,0.00002125442,0.00002109622,0.00002271176,0.000021118181,0.000021486832,0.000020683161,0.00002120872,0.000019956862,0.000020282618,0.00001973123,0.00002072496,0.000019555497,0.000020467363,0.000019900683,0.00002058069,0.000019834066,0.000020484586,0.000020443875,0.000022086288,0.000021019088,0.000021718286,0.00002115628,0.000021155734,0.000019820642,0.0000195629,0.000019455272,0.000020418256,0.000020040932,0.000020648258,0.000020204141,0.0000205617,0.00002045275,0.000020012629,0.000020361029,0.000022867063,0.000024010935,0.000025787751,0.000016567295,0.000011064851,0.000012915314],[0.000016390048,0.000013945154,0.000014524629,0.000020735853,0.00003290711,0.000030850733,0.000025127485,0.000022269895,0.000019669738,0.000020158817,0.000019074141,0.000019810192,0.000018985,0.000019478533,0.000018338364,0.000019004963,0.000018734801,0.000020151321,0.000019118012,0.00001969737,0.000019578503,0.000020804584,0.000019626435,0.000019864505,0.000018811086,0.000019692354,0.00001887299,0.000019231751,0.000019037414,0.00001973902,0.000018717445,0.000018808809,0.000018175606,0.000019496467,0.000018835553,0.000019591354,0.000019449613,0.00002055076,0.000019363888,0.000019678575,0.000018911238,0.00001995907,0.000019129027,0.000019277253,0.000019166862,0.000019909929,0.000019054723,0.000019326899,0.000018785899,0.000020146152,0.000019157087,0.00001968383,0.00001938094,0.000020418547,0.00001951991,0.000019962192,0.000019373289,0.00002032789,0.000019447927,0.00001942409,0.000019334679,0.000019911902,0.000019018597,0.00001928082,0.000018772253,0.000020032581,0.000019069394,0.000019597146,0.000019364848,0.000020439196,0.000019431334,0.000019853936,0.000019250963,0.000020254203,0.00001933916,0.000019322806,0.000019226893,0.000019855868,0.000018932784,0.000019208033,0.000018738088,0.00002003306,0.000019070285,0.000019613937,0.000019377558,0.000020456455,0.000019455736,0.000019876215,0.000019277933,0.000020275038,0.000019365089,0.00001933488,0.000019244448,0.000019861682,0.000018949022,0.000019228615,0.000018762821,0.000020039863,0.000019071922,0.000019619643,0.000019390294,0.000020464358,0.000019457944,0.0000198787,0.000019282732,0.000020282096,0.000019374824,0.000019339732,0.000019248853,0.000019863843,0.000018953559,0.000019221392,0.000018758688,0.0000200386,0.000019075633,0.000019621382,0.000019392273,0.000020467169,0.000019459838,0.000019884938,0.000019291507,0.000020287125,0.000019387337,0.000019346999,0.000019252102,0.000019867139,0.000018973307,0.000019237108,0.000018777266,0.000020053742,0.000019103923,0.000019641882,0.0000193949,0.000020456377,0.000019455883,0.000019881923,0.00001928687,0.000020281128,0.000019384728,0.000019347368,0.000019253865,0.000019852574,0.000018950035,0.000019216663,0.0000187613,0.000020036136,0.000019080964,0.000019620467,0.000019394049,0.00002046338,0.000019458055,0.000019873924,0.000019285419,0.000020279329,0.000019375988,0.000019331617,0.000019240319,0.000019848523,0.00001894756,0.000019217525,0.000018758383,0.00002003239,0.000019069976,0.00001961031,0.000019380126,0.000020450818,0.000019453435,0.000019876576,0.000019290072,0.000020285364,0.000019395287,0.000019357518,0.000019258034,0.000019857176,0.000018951896,0.00001921025,0.000018735267,0.000020013144,0.000019049256,0.000019573092,0.000019363999,0.00002045033,0.000019552774,0.000019991512,0.000019399431,0.000020389205,0.000019426907,0.000019317298,0.000019114566,0.000019670882,0.000018720442,0.00001896884,0.000018388204,0.000019640347,0.000018696233,0.000019195784,0.00001903609,0.00002028523,0.00001929942,0.000019676943,0.000019096273,0.000020161817,0.000019221869,0.000019181418,0.000018938419,0.000019698178,0.00001865228,0.00001902803,0.000018804467,0.000019938543,0.000019147643,0.000019759984,0.000019739491,0.000020686,0.00001999481,0.000020367126,0.000019931433,0.000020912837,0.000020319634,0.000020276835,0.000019776007,0.00002008107,0.000019277933,0.00001938044,0.000018683362,0.00001966338,0.000018949277,0.000019559917,0.000019244228,0.000020323898,0.000019705016,0.00002010621,0.00001942346,0.000020419753,0.00001979837,0.00002043187,0.00002000822,0.000020737989,0.000019996965,0.000019770841,0.000018751103,0.000019272878,0.000019577814,0.000019900039,0.000020045005,0.000020306577,0.000020412783,0.000021271413,0.000020622636,0.000021366355,0.000021945472,0.000025301866,0.000025307947,0.000017547916,0.000010675344,0.000013417237],[0.000016114342,0.0000141182945,0.0000125417,0.000021906852,0.000033318185,0.00003224398,0.000027156955,0.00002339404,0.000021493186,0.00002104512,0.000020640717,0.000020151301,0.000020716148,0.000019953399,0.000020151014,0.000019706651,0.000020526377,0.0000203694,0.000020628184,0.00001981344,0.000021143793,0.000021199923,0.000021218126,0.000020315216,0.000020437112,0.000020234163,0.000020197842,0.0000193415,0.000020054793,0.000020229669,0.000020484822,0.000019455421,0.000019974857,0.000020151609,0.000020785052,0.000019987165,0.000021144037,0.000020839196,0.00002104143,0.000020279174,0.000020604924,0.00002067817,0.000020858122,0.000019928677,0.000020437676,0.000020552621,0.000020665948,0.000019903093,0.000020625252,0.000020815838,0.000021152668,0.000020053876,0.000021058513,0.000020874919,0.000021201096,0.000020539142,0.000021070444,0.00002094589,0.00002099657,0.000019903342,0.00002049086,0.000020494415,0.000020720552,0.000019807603,0.000020592803,0.000020679769,0.000020975354,0.000019906644,0.000020977994,0.000020811909,0.000021189657,0.000020381582,0.000020968093,0.000020809446,0.000020905958,0.000019793555,0.000020437228,0.000020449454,0.000020685073,0.00001976249,0.000020572093,0.00002069048,0.000020964995,0.000019937934,0.000020995347,0.00002081838,0.000021191554,0.000020406205,0.000020978394,0.000020837288,0.000020934189,0.000019826597,0.000020448691,0.000020473726,0.000020702362,0.000019780158,0.00002059516,0.000020696438,0.000020964255,0.000019943298,0.000021003778,0.00002083087,0.00002119105,0.000020412257,0.000020984298,0.00002085019,0.000020942394,0.000019827503,0.000020445143,0.000020474821,0.000020700485,0.00001978097,0.000020598694,0.000020700842,0.000020970394,0.000019950317,0.000021003798,0.000020836036,0.00002118725,0.000020418955,0.000020991243,0.000020861029,0.000020949406,0.000019847672,0.000020451773,0.000020488864,0.000020717453,0.00001980428,0.000020604884,0.000020719624,0.000020978476,0.000019957566,0.000021006963,0.000020831467,0.000021185897,0.000020414107,0.000020980535,0.000020854863,0.000020943553,0.000019835847,0.000020438592,0.00002046955,0.000020694368,0.000019778421,0.000020591291,0.000020701671,0.000020972633,0.000019953322,0.00002100524,0.000020831429,0.00002118802,0.000020410993,0.000020978094,0.00002084156,0.000020929298,0.000019821266,0.000020430722,0.000020461157,0.000020686928,0.000019768428,0.000020591271,0.00002069127,0.00002095784,0.000019936128,0.00002098818,0.000020818756,0.000021181977,0.000020408697,0.000020981777,0.00002085148,0.000020941974,0.00001984097,0.00002044251,0.000020468106,0.000020688862,0.000019764318,0.000020552114,0.000020681562,0.000020942933,0.00001990746,0.000020966414,0.000020820979,0.000021243153,0.000020502821,0.00002106938,0.000020898242,0.000020865325,0.00001975143,0.00002023675,0.000020295523,0.000020440893,0.000019521844,0.000020158068,0.000020254107,0.000020626805,0.000019505824,0.000020649064,0.000020677639,0.000021130167,0.000020216728,0.000020940817,0.000020680478,0.000020868769,0.00001963016,0.000020407295,0.00002029651,0.000020388445,0.000019698402,0.000020575371,0.000020483962,0.000020697998,0.000019940862,0.000021066286,0.000020949905,0.0000211996,0.0000209574,0.00002137341,0.000021370943,0.000021300682,0.000020479489,0.000020663465,0.000020712729,0.0000207387,0.000019946512,0.00002025059,0.000020467638,0.000020483609,0.00001967184,0.000020690677,0.000020649104,0.000021124748,0.000020519976,0.000020869267,0.00002049596,0.00002066252,0.000019852821,0.000020218038,0.000020724781,0.000020607518,0.000019919653,0.000019020174,0.000019259282,0.000019124449,0.000019751278,0.000019717969,0.000020563895,0.000020820107,0.000021240903,0.000021027166,0.00002154971,0.000023193028,0.000024068982,0.000025368163,0.000018264465,0.0000109739085,0.000013327115],[0.000015766916,0.000014414127,0.000012679616,0.000018844017,0.000030386589,0.000032238942,0.00002630995,0.000024008188,0.000020738027,0.000020979875,0.000019492862,0.00002006696,0.0000188502,0.000019650952,0.000019119652,0.000020094976,0.00001933857,0.000020424797,0.000019178162,0.000019827809,0.000019454012,0.000020952364,0.000019719228,0.000020537595,0.000019093743,0.000020305184,0.00001898806,0.000019404595,0.000018969236,0.000020295212,0.000019476453,0.000020017418,0.00001867369,0.000019985337,0.000019167155,0.000019983545,0.0000195349,0.000020797663,0.000019769182,0.000020503838,0.000019260457,0.000020552487,0.000019475749,0.000019857649,0.00001915882,0.000020210173,0.000019437228,0.00001996956,0.000019025652,0.000020415937,0.000019246687,0.000019802146,0.00001918698,0.00002046342,0.0000196015,0.00002057027,0.00001953926,0.000020868529,0.000019340874,0.00001961678,0.00001902246,0.000020067228,0.000019171322,0.00001972818,0.000018899176,0.00002031754,0.000019072777,0.00001963735,0.000019028628,0.000020392567,0.000019432946,0.000020373323,0.000019322642,0.000020696498,0.00001915926,0.00001949684,0.000018936847,0.000020064876,0.000019118941,0.000019684958,0.00001886644,0.000020304176,0.000019070576,0.00001966989,0.000019060994,0.00002041144,0.00001946032,0.000020395972,0.000019344821,0.000020717825,0.000019197412,0.000019532477,0.000018957357,0.000020069754,0.000019132895,0.000019690458,0.00001887551,0.00002030923,0.000019074287,0.00001967424,0.000019070723,0.000020424934,0.000019473946,0.00002040862,0.000019355506,0.000020728063,0.000019198163,0.000019527395,0.000018951534,0.000020070349,0.000019132985,0.000019694759,0.000018877094,0.000020313531,0.000019082347,0.000019683006,0.000019076306,0.00002043078,0.000019479628,0.000020415217,0.000019368172,0.000020752686,0.000019221814,0.000019551151,0.000018971426,0.000020091431,0.000019166333,0.000019727748,0.000018900384,0.000020329848,0.000019087189,0.00001967167,0.000019064266,0.000020410018,0.000019461155,0.000020403442,0.000019362615,0.000020738464,0.000019210891,0.00001954034,0.00001896108,0.000020069927,0.00001913649,0.000019696994,0.0000188801,0.000020318548,0.00001909254,0.000019688936,0.000019081383,0.000020430856,0.000019478051,0.00002040706,0.00001935296,0.000020727251,0.000019200781,0.000019531008,0.000018948933,0.00002005971,0.000019122206,0.000019681278,0.000018868004,0.00002030228,0.000019074705,0.000019672609,0.000019066612,0.000020418158,0.000019464756,0.000020404084,0.000019360252,0.000020744752,0.000019222418,0.000019555924,0.000018967283,0.000020083655,0.000019136216,0.000019684281,0.000018861383,0.00002030133,0.00001906443,0.000019643006,0.000019047964,0.000020425383,0.000019537638,0.000020520092,0.000019461117,0.000020870182,0.000019205048,0.000019481915,0.000018836146,0.000020010757,0.000019060431,0.000019543602,0.000018647639,0.000020045634,0.000018792223,0.000019275965,0.000018820883,0.000020295582,0.000019449724,0.000020319692,0.000019257317,0.000020608442,0.00001915716,0.000019591896,0.00001890114,0.000020198266,0.000019168581,0.000019832669,0.000019037325,0.000020351728,0.000019250836,0.000019739793,0.000019244539,0.000020476285,0.000020059537,0.000021136031,0.000020156278,0.000021403861,0.000019902658,0.00002023457,0.000019442827,0.00002051978,0.000019916537,0.000020247213,0.000019075542,0.000020298097,0.000019209994,0.0000197065,0.00001905445,0.000020468982,0.00001991665,0.000020925425,0.000019547348,0.000020687776,0.000019104999,0.000019850018,0.000018947288,0.000020530897,0.000019954978,0.000020379735,0.000018602523,0.000019233952,0.000018967212,0.000019270048,0.000019151661,0.00001997819,0.00002063558,0.000021625654,0.000021422607,0.000022189017,0.00002361199,0.000025218975,0.00002406368,0.000016545839,0.000011056929,0.000013459477],[0.000015655383,0.000014197035,0.000011562939,0.000017093287,0.000030154499,0.00003505035,0.000030756175,0.000025323736,0.000022807977,0.000021915857,0.0000214658,0.000019841653,0.000020359534,0.000019614105,0.000020477046,0.00001956486,0.000020871794,0.000020446178,0.000021078806,0.000019387337,0.000020851501,0.000020522735,0.000021533438,0.000019976,0.000020684956,0.00001979803,0.000020338613,0.000019291065,0.00002048779,0.000020410973,0.000021525659,0.000020024903,0.000020544334,0.000019762037,0.000020598596,0.000019544104,0.000021116328,0.000020731166,0.000021899832,0.000020329288,0.000021030293,0.000020512873,0.000021263522,0.000019839003,0.000020697724,0.000020523947,0.000021379483,0.000019974172,0.00002056474,0.00001996341,0.00002064426,0.000019128755,0.00002047287,0.000020160664,0.000021263339,0.000020049534,0.000021041447,0.000020405505,0.000020825131,0.000019321848,0.00002032031,0.000020111102,0.000020695137,0.000019430167,0.000020198342,0.000019710524,0.000020363981,0.000018810602,0.000020232948,0.000019896092,0.00002105333,0.00001978163,0.000020804508,0.000020127332,0.0000206005,0.000019148683,0.000020228279,0.000020065794,0.00002066232,0.00001937924,0.000020199634,0.00001966685,0.00002033041,0.000018850558,0.000020270185,0.000019920733,0.000021080272,0.000019828261,0.00002084512,0.000020171028,0.000020649912,0.000019203582,0.000020260868,0.000020085665,0.000020677462,0.000019398785,0.000020218038,0.000019671501,0.000020340514,0.000018857354,0.000020273103,0.000019933239,0.000021083128,0.000019837622,0.000020845715,0.000020174164,0.000020648573,0.000019207135,0.00002026454,0.000020087198,0.000020680221,0.000019399838,0.000020226234,0.000019664973,0.00002034329,0.000018869678,0.000020275462,0.000019938847,0.000021091775,0.000019854677,0.000020862222,0.000020203082,0.000020667268,0.000019223244,0.000020270802,0.000020110565,0.00002071435,0.000019431112,0.000020245956,0.000019686928,0.000020344725,0.000018853867,0.000020267458,0.00001993111,0.000021076212,0.000019838268,0.000020845337,0.000020181438,0.00002065781,0.000019224803,0.000020273412,0.000020094843,0.00002068677,0.000019409461,0.000020234203,0.00001967668,0.000020352485,0.000018879236,0.000020282985,0.000019941148,0.000021084776,0.000019837831,0.000020847585,0.000020176973,0.000020653219,0.000019213878,0.000020261756,0.00002008831,0.000020669318,0.00001938974,0.000020212177,0.000019658899,0.000020334464,0.000018858093,0.000020271384,0.000019927898,0.00002107949,0.000019835428,0.000020857487,0.000020193027,0.000020677244,0.000019236613,0.000020278498,0.000020099154,0.000020676534,0.0000193905,0.000020194297,0.000019671352,0.00002032254,0.000018831242,0.000020247657,0.00001992562,0.000021145728,0.00001993999,0.00002101115,0.000020318434,0.000020713302,0.000019195691,0.000020117603,0.00002000303,0.000020536754,0.000019293455,0.000019953095,0.000019452675,0.00002005531,0.000018500636,0.000020023814,0.000019893492,0.000021203645,0.000019826617,0.000020834388,0.000020178206,0.000020680794,0.00001939958,0.000020422965,0.00002023478,0.000020838817,0.000019784118,0.000020470467,0.00001991462,0.000020277395,0.000019266208,0.000020307818,0.000020257314,0.00002149825,0.00002086063,0.000021664977,0.000021284884,0.000021615097,0.00002051792,0.000020930713,0.000020900356,0.000021564407,0.000020453646,0.000020589288,0.000019843887,0.000020324926,0.000018998258,0.000020078542,0.000019798179,0.00002112092,0.000020447795,0.000021027789,0.000020252428,0.000020441965,0.000019665667,0.000020161164,0.00002063682,0.000021510656,0.000020462601,0.000019922007,0.000019241254,0.00001962915,0.00001891618,0.000019500838,0.00001991327,0.000020658912,0.000020716046,0.000020903006,0.000021461747,0.000024757352,0.000024369234,0.000023579452,0.00001580223,0.000010752228,0.000012877814],[0.000015847234,0.000013418912,0.000011785003,0.00001603674,0.000029667339,0.0000330069,0.000027879372,0.000024279183,0.000021487138,0.000020821,0.000019389943,0.000019360232,0.000018706898,0.000019116023,0.000018503035,0.00001917851,0.000019286557,0.00002021507,0.00001901274,0.000019162477,0.000019107732,0.000020386035,0.000019425073,0.00001996341,0.000019064975,0.00001996301,0.000018790162,0.000019310244,0.000018908191,0.000020230209,0.000019488401,0.000019941966,0.000019283927,0.00002006411,0.000019145251,0.00001971479,0.000019590552,0.00002076522,0.000019923908,0.0000202459,0.000019814084,0.000020791018,0.000019768087,0.000019941472,0.000019462137,0.000020270918,0.000019624133,0.000019648814,0.000019280857,0.00002007948,0.000018933271,0.0000192034,0.000019101955,0.000020408463,0.000019598643,0.000020343115,0.000019798012,0.000020899739,0.0000193575,0.000019578783,0.000019332188,0.000020319827,0.00001916361,0.000019325535,0.000018895555,0.000019899164,0.000018652245,0.000018961442,0.000018917715,0.000020364447,0.000019377116,0.000020185365,0.00001953611,0.000020697526,0.000019135485,0.000019452582,0.000019206185,0.000020321437,0.00001910835,0.00001934486,0.000018880839,0.000019907118,0.000018665858,0.000019022296,0.000018977886,0.000020415762,0.000019416128,0.000020223591,0.000019588217,0.000020733993,0.000019176645,0.000019477346,0.000019242962,0.00002033204,0.00001912877,0.000019359493,0.000018895555,0.000019905145,0.00001866527,0.000019018198,0.000018980745,0.000020418314,0.000019412017,0.000020220603,0.000019587338,0.000020733441,0.00001917648,0.000019478366,0.000019238503,0.000020326204,0.000019117464,0.000019355837,0.000018893968,0.000019901707,0.000018663364,0.000019029918,0.000018992714,0.000020428266,0.000019426294,0.000020252715,0.00001962114,0.000020763991,0.000019203566,0.000019500316,0.000019248266,0.000020345811,0.000019153742,0.000019381827,0.000018914197,0.000019913097,0.000018672961,0.0000190295,0.000018988983,0.000020419617,0.000019416477,0.000020221374,0.000019591465,0.000020737238,0.00001918828,0.000019493418,0.0000192452,0.00002033332,0.000019130395,0.000019367952,0.000018911347,0.000019917126,0.000018679995,0.000019039357,0.000018996137,0.00002042739,0.000019420218,0.000020230189,0.000019599278,0.00002074604,0.000019188828,0.0000194913,0.000019247127,0.000020337877,0.00001912505,0.000019354788,0.000018894203,0.000019903606,0.000018662582,0.000019019993,0.0000189827,0.000020423688,0.000019422276,0.000020232426,0.000019602474,0.000020759933,0.000019204113,0.000019511644,0.000019259116,0.000020347112,0.000019131088,0.000019356412,0.000018895627,0.000019915682,0.000018664558,0.000019006304,0.00001897709,0.000020449335,0.000019518364,0.000020377869,0.00001973315,0.000020908172,0.000019247751,0.000019458279,0.000019119032,0.000020167854,0.000018998964,0.000019143536,0.00001867549,0.000019629824,0.000018485609,0.000018759707,0.000018870434,0.000020405836,0.000019528716,0.000020207552,0.000019610681,0.000020690202,0.000019312545,0.000019679683,0.000019472498,0.000020549036,0.000019359199,0.000019699999,0.000019376468,0.000020205724,0.000019111942,0.000019456404,0.00001954349,0.000020743488,0.00002024254,0.00002120245,0.000020908788,0.000021779513,0.000020379213,0.000020386384,0.000019848598,0.000020498463,0.000019799445,0.00001972504,0.000019149578,0.000019635947,0.00001871623,0.00001909589,0.00001890516,0.000020461293,0.000019916195,0.000021360469,0.000020341988,0.000021185191,0.000019609934,0.000020392237,0.000019536354,0.000020831327,0.00002001553,0.000020332485,0.000019292978,0.000019472052,0.00001977746,0.000019807074,0.00001983384,0.000020681819,0.000020631056,0.000021398739,0.000020772548,0.000022078138,0.000023505698,0.000026355052,0.000024506127,0.00001661546,0.000010272669,0.0000130915405],[0.000015486547,0.000012931941,0.000010034179,0.000015901414,0.000027534248,0.000034101806,0.00002829208,0.000024878673,0.000022380731,0.000021480277,0.000020634674,0.000019941566,0.000020311341,0.000019917637,0.000020106152,0.00001970077,0.00002060457,0.000020610367,0.00002049545,0.000019618969,0.000020770567,0.000020891946,0.000021023918,0.000019976856,0.000020792128,0.000020454192,0.000020749423,0.00001974017,0.000020368117,0.000020569605,0.000020715475,0.00001994849,0.000020692925,0.000020609248,0.000021104006,0.000020261352,0.000021267862,0.000021155169,0.000021317104,0.000020395933,0.000021298672,0.000021262102,0.00002182563,0.000020659525,0.000020878124,0.00002081405,0.00002058548,0.000019865907,0.000020543923,0.000020699006,0.000021033222,0.000019741563,0.000020803891,0.00002087464,0.000021156762,0.000020251828,0.000021373447,0.0000210162,0.000021334472,0.00001990746,0.000020811929,0.000020783127,0.000020614376,0.00001947144,0.000020226562,0.000020305879,0.00002070104,0.000019379997,0.000020782354,0.000020717549,0.00002117172,0.000020075326,0.000021225715,0.000020734133,0.000021137685,0.000019760322,0.000020771024,0.000020740203,0.000020636722,0.000019447907,0.000020268984,0.00002029678,0.000020717529,0.000019464458,0.00002084842,0.000020741036,0.00002118521,0.000020105712,0.00002127214,0.000020780017,0.000021176927,0.000019796518,0.00002079427,0.000020778252,0.000020650385,0.000019459112,0.000020293684,0.000020295329,0.00002071425,0.000019464644,0.000020845577,0.000020737158,0.000021169499,0.000020101896,0.000021274373,0.000020773597,0.000021164955,0.00001979299,0.000020792406,0.000020769021,0.000020639261,0.000019452156,0.000020293935,0.000020289408,0.000020712925,0.00001948091,0.000020856114,0.000020752133,0.000021183088,0.000020133955,0.00002131141,0.000020815043,0.000021198508,0.000019828847,0.000020805379,0.00002078416,0.000020658184,0.000019482137,0.00002029113,0.00002031357,0.00002074764,0.000019499908,0.00002086638,0.000020752013,0.000021172931,0.000020106421,0.000021269709,0.000020777541,0.000021173193,0.000019810475,0.000020799922,0.000020776211,0.000020647922,0.000019464216,0.0000203083,0.000020303769,0.000020723834,0.00001948643,0.000020857726,0.000020748395,0.000021181677,0.000020114898,0.000021291828,0.000020787273,0.000021178868,0.000019807358,0.000020802523,0.000020780948,0.000020648278,0.000019457684,0.00002029353,0.000020295232,0.000020707239,0.00001946869,0.000020850228,0.000020745663,0.0000211862,0.000020112137,0.000021282754,0.000020794885,0.000021194062,0.000019822324,0.00002080778,0.000020788522,0.000020655505,0.000019468485,0.000020271247,0.000020304467,0.000020709984,0.000019444644,0.000020849531,0.000020755042,0.000021261028,0.000020237521,0.000021400083,0.00002092351,0.000021210339,0.000019737065,0.000020546215,0.000020553289,0.000020307198,0.000019243109,0.000019831079,0.000019993036,0.00002042622,0.000019268118,0.000020621868,0.000020792704,0.000021281394,0.000020111562,0.00002132426,0.000020856713,0.000021237238,0.000020090456,0.000021318507,0.000020995187,0.0000208746,0.000019852632,0.000020842654,0.000020575568,0.000020928539,0.000020192643,0.00002136821,0.000021261534,0.000021590376,0.000021182343,0.000022425127,0.000022153687,0.00002207694,0.00002109455,0.000021295544,0.000021313974,0.000020750867,0.000020020148,0.000020183477,0.000020312698,0.000020408483,0.000019643157,0.000020864827,0.000020779424,0.000021618747,0.000021027026,0.000022185062,0.000021257258,0.000021481383,0.000020776273,0.000021187554,0.000021201744,0.000020800378,0.00002042326,0.00001985725,0.000020180456,0.000020629934,0.000020798912,0.000020717453,0.000021318872,0.000020992264,0.000021258167,0.000021153353,0.000021445949,0.000024075549,0.000024707371,0.000025354086,0.00001748861,0.00001079323,0.00001301507],[0.000014940505,0.0000119523365,0.000010378496,0.000013742422,0.00002526565,0.000033274366,0.000026308975,0.000024089673,0.000021077258,0.000020921694,0.000019668107,0.000019985317,0.000018969418,0.00001944379,0.000019214152,0.000019812553,0.000019563666,0.000020538731,0.000019406592,0.000019890911,0.000019499406,0.000020606789,0.000019378742,0.000019622132,0.000018827077,0.00002014156,0.000019090792,0.000019882302,0.000019080999,0.000020315332,0.000018991284,0.0000194172,0.000018800703,0.00002015551,0.000019346686,0.000020213412,0.00001970013,0.000020688862,0.00001944294,0.000019799105,0.000019261468,0.000020711188,0.000019926378,0.000020370371,0.000019598885,0.000020107878,0.00001891517,0.0000191479,0.00001872964,0.000020103927,0.000019126182,0.000019622039,0.00001918568,0.000020253181,0.000019036124,0.000019621908,0.00001903698,0.00002044329,0.000019193056,0.000019605652,0.000019117446,0.000020086125,0.00001870952,0.000018824905,0.000018295044,0.000019665744,0.000018641344,0.000019193256,0.000018928326,0.00002013793,0.000018884477,0.000019503794,0.000018782746,0.00002021212,0.000018912284,0.000019405094,0.000018968278,0.000020031188,0.000018638251,0.000018805724,0.000018256631,0.000019675816,0.0000186497,0.000019267769,0.00001897376,0.000020168316,0.000018908479,0.000019533558,0.000018823666,0.000020258201,0.000018973507,0.000019446481,0.000018998493,0.000020051695,0.000018665394,0.00001881961,0.000018274119,0.00001968079,0.000018657227,0.000019262716,0.000018968893,0.000020154646,0.000018903953,0.000019530095,0.000018819754,0.0000202442,0.000018960971,0.000019440304,0.000019001393,0.000020050547,0.000018654095,0.000018812665,0.000018268996,0.000019677655,0.00001865968,0.000019276498,0.000018983352,0.00002017276,0.000018918652,0.00001955958,0.000018860359,0.000020291904,0.00001899938,0.000019471643,0.000019024601,0.0000200768,0.000018682116,0.000018825156,0.000018275932,0.000019695584,0.00001869632,0.000019312269,0.000018995304,0.00002016651,0.000018910427,0.000019535086,0.000018818353,0.000020243699,0.000018970683,0.000019457684,0.000019012505,0.000020058982,0.000018660428,0.00001882223,0.000018279696,0.000019689443,0.00001866956,0.000019283118,0.00001898223,0.00002017403,0.00001892273,0.00001955365,0.000018833758,0.000020259999,0.000018972094,0.000019450283,0.000019006377,0.000020059653,0.000018660554,0.000018816127,0.000018271852,0.000019683212,0.000018655464,0.000019267934,0.00001897557,0.000020167201,0.000018904007,0.000019532534,0.000018825443,0.000020266143,0.000018984367,0.000019469173,0.000019013954,0.000020067591,0.000018665876,0.00001881001,0.000018260043,0.000019677826,0.00001864257,0.00001924386,0.000018945248,0.000020160624,0.000018968984,0.00001964325,0.000018943332,0.000020397216,0.000019001103,0.000019368339,0.000018835033,0.000019851495,0.000018442786,0.000018539791,0.000017959284,0.000019356374,0.00001838275,0.000019006666,0.00001882302,0.000020144307,0.000019009947,0.000019577328,0.000018900384,0.00002033204,0.000019277695,0.000019803429,0.000019289906,0.000020307836,0.000019025127,0.000019202631,0.000018812576,0.000020201214,0.000019607878,0.000020360467,0.000019866779,0.000020890095,0.000019946227,0.00002073878,0.000020360543,0.000021762986,0.000020876074,0.000021252008,0.000020288653,0.000020960515,0.000019784213,0.000019604717,0.000018799896,0.000019844132,0.00001899121,0.000019728124,0.00001922623,0.00002061599,0.000019659556,0.000020575293,0.000019573894,0.000020929097,0.000019881334,0.000020973433,0.000019904594,0.000021109263,0.000019456404,0.000019704208,0.000018835626,0.000019649846,0.00002034552,0.000020570937,0.000020433428,0.00002087663,0.000020814923,0.000021551414,0.00002070558,0.000021192425,0.000022514312,0.00002532748,0.00002494039,0.00001682636,0.000010714622,0.000013284859],[0.000015315982,0.000011127072,0.000010259364,0.000013682751,0.000026619771,0.000036922636,0.000029762354,0.000024640736,0.000022347951,0.000021618685,0.000021294001,0.000019851099,0.000020070978,0.000019608551,0.000020179474,0.000019481005,0.000020929536,0.000020596377,0.000021544365,0.000019708945,0.000021068236,0.00002049594,0.00002084989,0.000019288764,0.000020163354,0.000019401356,0.000020370915,0.000019083347,0.00002034942,0.000019780684,0.000020234858,0.000018815392,0.000019892714,0.000019376745,0.000020431928,0.000019401115,0.000021001113,0.000020387939,0.000020918544,0.000019442716,0.000020435944,0.000020057623,0.000021129159,0.000019738305,0.000020681819,0.000019968094,0.000020174202,0.000018813473,0.00001966805,0.000019393568,0.000020407917,0.000018904928,0.0000202825,0.000019734052,0.00002021,0.000018815177,0.000020006293,0.000019471996,0.000020433545,0.000018748011,0.00001994967,0.000019496003,0.000019727204,0.00001826295,0.000019164505,0.000018940007,0.000019955949,0.000018403483,0.000019927404,0.000019464682,0.000020094116,0.000018594861,0.00001987777,0.000019202722,0.000020196301,0.000018504112,0.000019763716,0.000019385987,0.000019673453,0.000018187242,0.000019163244,0.000018926285,0.00001997318,0.000018441626,0.000020005129,0.000019478402,0.000020136491,0.000018638482,0.000019924535,0.000019243567,0.000020267613,0.000018575081,0.000019812913,0.000019419998,0.00001970402,0.00001821795,0.00001918612,0.000018938472,0.000019975485,0.000018448152,0.000019999674,0.000019463587,0.000020126008,0.000018641042,0.00001992461,0.000019234265,0.000020263844,0.000018572282,0.000019820642,0.00001942624,0.000019701822,0.000018208622,0.00001918625,0.000018934554,0.000019973866,0.000018460663,0.000020023777,0.000019484032,0.000020150072,0.000018668634,0.00001995296,0.000019264922,0.000020271402,0.000018584613,0.000019849469,0.000019466146,0.000019720432,0.00001821894,0.000019173005,0.000018956849,0.000020013525,0.000018488661,0.00002003667,0.000019480818,0.000020132919,0.000018641966,0.000019925124,0.000019234265,0.000020267034,0.000018583656,0.000019830795,0.000019431334,0.000019705074,0.000018210741,0.000019193989,0.000018941417,0.000019986746,0.000018472887,0.000020026164,0.000019482974,0.00002014813,0.000018658988,0.000019942518,0.000019242887,0.000020264772,0.000018575205,0.000019818675,0.000019426108,0.000019694402,0.000018204508,0.000019179422,0.000018934194,0.000019970494,0.000018451108,0.000020009154,0.000019469193,0.000020126508,0.000018634873,0.000019926909,0.000019246687,0.00002027521,0.000018588336,0.000019825386,0.000019426534,0.000019693538,0.000018206434,0.000019157653,0.000018926195,0.000019959909,0.000018413595,0.000019971409,0.000019431687,0.000020153897,0.000018741128,0.000020012552,0.000019362282,0.000020283971,0.000018520248,0.00001960096,0.000019161911,0.000019320854,0.000017938557,0.00001880576,0.000018612709,0.000019683699,0.000018181052,0.000019715393,0.000019348345,0.000020160642,0.000018690742,0.000020033442,0.000019492638,0.000020600935,0.000019029954,0.000020191736,0.000019562229,0.000019875837,0.000018790826,0.000019790763,0.000019546434,0.000020798216,0.00001973025,0.000021064418,0.000020268444,0.000021000253,0.00002007701,0.000021262975,0.000021013915,0.000022300454,0.000021009828,0.000021480604,0.00002078638,0.00002089611,0.000019643288,0.000019967905,0.000019460376,0.00002027612,0.000018874878,0.000020348742,0.000019619381,0.000020339972,0.000019245805,0.000020542688,0.000019906036,0.000020841144,0.000019768617,0.000020793377,0.000020359534,0.000020175337,0.00001918817,0.000019074796,0.00001916659,0.000020141599,0.000019928202,0.000020432943,0.000020068299,0.000020409709,0.000020285537,0.00001995789,0.000020183381,0.000022395783,0.000023982033,0.000026258016,0.000017031763,0.00001127078,0.000012865994],[0.000015718319,0.000012229988,0.000011395057,0.000014963847,0.000027887167,0.0000347469,0.000027106424,0.00002329484,0.000020454954,0.000020603235,0.000019431205,0.000019610627,0.000018877327,0.000019170811,0.000018566616,0.000019060632,0.000019060213,0.000020082927,0.000019239438,0.000019279882,0.000019436393,0.000020218693,0.000019226598,0.000019289759,0.00001829478,0.000019217892,0.00001816786,0.000018642908,0.00001829302,0.000019402689,0.000018277256,0.000018756917,0.00001805578,0.000019498793,0.000018655803,0.0000195029,0.000019388002,0.000020641091,0.000019273559,0.000019570422,0.000018738234,0.000020024883,0.000018898798,0.000019137968,0.00001892078,0.000019661355,0.000018622775,0.000018817404,0.00001815875,0.000019456273,0.00001841825,0.000018716926,0.00001863109,0.000019687548,0.000018650733,0.000018964949,0.000018344082,0.000019757383,0.00001846549,0.000018722158,0.000018447095,0.000019495985,0.000018130078,0.00001831152,0.000017763079,0.000019125926,0.000018069302,0.000018403887,0.000018358432,0.00001960169,0.000018419163,0.000018784125,0.000018164517,0.00001960741,0.000018283914,0.000018551855,0.000018251512,0.000019431574,0.000018015515,0.000018254506,0.000017729586,0.000019153287,0.000018095843,0.000018464907,0.000018407432,0.00001966625,0.00001847255,0.000018835843,0.000018208466,0.00001964767,0.000018336666,0.000018601653,0.000018305445,0.000019448724,0.000018045814,0.000018280898,0.000017753036,0.000019156465,0.000018096032,0.000018450879,0.000018400078,0.000019643663,0.00001846225,0.000018826502,0.000018209073,0.000019644094,0.000018337594,0.000018598957,0.000018306404,0.00001944711,0.000018043387,0.000018270615,0.000017748398,0.000019150619,0.000018097688,0.000018459237,0.000018420375,0.000019667148,0.000018485047,0.000018849947,0.000018220417,0.000019655936,0.000018335111,0.000018603072,0.000018333467,0.000019490017,0.000018071285,0.000018270022,0.000017743168,0.00001916456,0.000018125616,0.000018470773,0.000018421517,0.000019651776,0.00001846769,0.000018820005,0.000018201887,0.000019636751,0.00001833385,0.000018600022,0.000018311383,0.000019452453,0.000018048671,0.000018280707,0.00001775998,0.000019164578,0.000018109376,0.000018474631,0.000018426506,0.000019667657,0.000018477733,0.00001884601,0.000018220051,0.00001964535,0.000018331177,0.00001860082,0.000018306859,0.000019452638,0.00001803974,0.000018270006,0.00001774432,0.000019153249,0.000018096014,0.000018460347,0.000018411769,0.000019658242,0.000018465049,0.000018829016,0.000018206312,0.000019650783,0.000018343768,0.000018610419,0.000018307504,0.00001945503,0.00001804017,0.000018259225,0.000017725833,0.000019141398,0.000018083887,0.000018453782,0.000018386554,0.000019665873,0.000018534913,0.000018965438,0.00001831124,0.000019765392,0.000018351835,0.000018532704,0.000018085922,0.000019159534,0.000017734981,0.000017994154,0.000017453354,0.000018930436,0.000017941054,0.00001843751,0.00001824803,0.000019737798,0.000018528357,0.000019082874,0.000018484094,0.000019934798,0.000018718532,0.000019119268,0.000018655464,0.00001972726,0.00001836507,0.000018727496,0.000018451266,0.000019758176,0.000019012377,0.000019679588,0.000019648984,0.000020739868,0.000019767767,0.0000204461,0.0000199127,0.000021229098,0.000020159547,0.000020384012,0.000019816087,0.00002026711,0.00001927786,0.000019222052,0.00001865093,0.000019423145,0.000018465436,0.00001874987,0.000018546405,0.000019835732,0.000018891067,0.000019695264,0.000018991735,0.000020150303,0.000018776855,0.000019545038,0.000018746508,0.000020123398,0.000018827957,0.000019127112,0.00001804306,0.000019246998,0.000019237677,0.000020042251,0.0000198046,0.000020384363,0.000020270203,0.000021398697,0.000020731304,0.00002142647,0.000021894175,0.000024868568,0.000025331587,0.000018312481,0.000011000754,0.000013535653],[0.000015418023,0.000013249723,0.000010527846,0.000017008148,0.000028328552,0.00003641934,0.000028735107,0.000023871115,0.000021626149,0.000021271513,0.000020745822,0.000019950185,0.00002033677,0.000019808567,0.000020119829,0.00001966745,0.000020420086,0.000020450467,0.000020431751,0.000019633007,0.00002084325,0.000020921774,0.000020864212,0.000019806603,0.000020072492,0.000019808265,0.000019797275,0.000018826879,0.00001962477,0.000019717028,0.00002008153,0.000019121768,0.00001994499,0.0000199483,0.000020620393,0.00001981057,0.000021009208,0.000020743091,0.000021001393,0.000019985391,0.000020671132,0.000020548781,0.000020702699,0.000019497898,0.000020051235,0.000020194451,0.00002031417,0.000019487861,0.000020254975,0.000020209209,0.000020563424,0.000019259887,0.00002019713,0.000020259322,0.00002059296,0.00001954895,0.00002043409,0.000020336169,0.000020520329,0.000019105619,0.000019905354,0.000020032105,0.000020190831,0.000019004581,0.000019916042,0.000019912872,0.000020340884,0.000019001809,0.000020166488,0.000020212814,0.000020553152,0.000019368357,0.000020333688,0.000020158182,0.000020438301,0.000018978972,0.00001981091,0.00001996958,0.000020140582,0.000018955168,0.000019898425,0.00001989647,0.000020371146,0.000019047002,0.000020235515,0.000020230575,0.000020600346,0.000019418589,0.000020378688,0.00002018419,0.000020475894,0.000019025743,0.00001984451,0.00002000841,0.000020158797,0.00001898062,0.000019914447,0.000019902998,0.000020370098,0.000019049745,0.00002022824,0.000020226313,0.000020589898,0.000019418905,0.000020381349,0.000020185615,0.000020476109,0.000019020337,0.00001983486,0.000020002992,0.000020150976,0.000018975987,0.000019913003,0.00001990689,0.000020368234,0.000019053507,0.000020233663,0.00002022093,0.000020591133,0.0000194343,0.000020376412,0.000020175723,0.000020452788,0.00001903106,0.000019856134,0.000020035715,0.000020165045,0.000018984982,0.000019905448,0.000019920983,0.000020380747,0.000019056468,0.000020225212,0.000020219948,0.000020580786,0.00001941009,0.00002037245,0.000020179168,0.000020465997,0.000019021516,0.000019840121,0.000020010204,0.000020152069,0.000018985525,0.000019925143,0.0000199112,0.000020378435,0.00001906994,0.00002025287,0.000020242598,0.000020604492,0.000019430112,0.000020385489,0.000020182784,0.000020476442,0.000019027395,0.000019839628,0.000020006502,0.000020151474,0.000018972583,0.000019909263,0.00001990112,0.000020368176,0.000019053306,0.000020240435,0.000020230265,0.000020589898,0.000019415738,0.000020375868,0.0000201865,0.000020471696,0.000019024692,0.00001983019,0.000020000303,0.000020148324,0.00001896325,0.00001989019,0.000019895579,0.000020367146,0.000019039648,0.000020238293,0.00002022525,0.000020632257,0.000019517842,0.000020429687,0.000020267922,0.000020402937,0.000018901286,0.000019534398,0.000019688581,0.000019797953,0.000018661782,0.00001956458,0.000019712308,0.00002023044,0.00001899016,0.00002017249,0.000020217632,0.00002077976,0.000019674428,0.00002067618,0.000020413523,0.000020593863,0.00001937706,0.000020322095,0.000020154914,0.000020237387,0.000019404371,0.000020317038,0.00002026371,0.000020485015,0.000019752975,0.000020964415,0.000020795243,0.000021215134,0.000020657772,0.000021537115,0.000021335773,0.000021163,0.00002041919,0.00002059842,0.000020861047,0.000020616973,0.000019906756,0.00002031634,0.000020489158,0.000020258782,0.000019152574,0.00002025455,0.000020081414,0.000020814092,0.000020025285,0.000020964777,0.000020399453,0.000020260695,0.000019387262,0.000019799163,0.00002024032,0.000020166182,0.00001940093,0.000018939574,0.000019188901,0.000019390183,0.000019924191,0.000020026124,0.000020670755,0.00002088398,0.00002129727,0.00002116754,0.00002164379,0.000022979362,0.000024278212,0.000025553885,0.000019091358,0.000011395894,0.000013493265],[0.000015270158,0.000015630916,0.000011818926,0.000017161334,0.000029171217,0.000034394867,0.000027551925,0.000024399396,0.000020880056,0.000021092015,0.000019681109,0.000020110965,0.000018978339,0.00001972346,0.000019343346,0.00002019243,0.000019532312,0.000020475816,0.000019429963,0.000019764037,0.000019677393,0.000020800617,0.00001962436,0.000020070253,0.000018747545,0.000019740206,0.000018463605,0.00001868472,0.000018276436,0.0000195524,0.000018779396,0.000019598698,0.000018467039,0.000019893738,0.000019050545,0.0000199286,0.000019458872,0.000020765714,0.00001954351,0.000020314965,0.00001917295,0.00002044327,0.000019040719,0.00001912299,0.000018539544,0.000019528605,0.000018920078,0.000019658766,0.000018903684,0.000020148113,0.000019003568,0.000019126455,0.000018727638,0.00001964902,0.000019057577,0.000019667807,0.00001899929,0.000020231617,0.000018831135,0.000018832698,0.000018374547,0.00001956292,0.00001874245,0.0000192461,0.00001858052,0.000019879666,0.000018767974,0.000018951481,0.0000186852,0.00001974081,0.000018961513,0.000019486133,0.000018833074,0.000020098983,0.000018712642,0.000018734463,0.000018281073,0.000019538906,0.000018687106,0.000019213841,0.000018543045,0.000019859182,0.000018763429,0.000018998564,0.000018714196,0.000019774141,0.00001900112,0.00001954254,0.00001887164,0.000020138028,0.00001874726,0.00001876325,0.00001831009,0.000019564915,0.000018720139,0.000019240795,0.000018560755,0.000019868976,0.000018774632,0.000019003965,0.000018722943,0.000019778781,0.000019008334,0.000019549847,0.000018878623,0.000020141253,0.000018745812,0.000018758223,0.000018301866,0.000019557492,0.000018715338,0.000019236575,0.000018561446,0.000019874813,0.00001878332,0.00001900228,0.000018712517,0.000019763602,0.000018995523,0.000019549343,0.000018874212,0.00002011672,0.000018712393,0.000018757435,0.000018319783,0.000019559675,0.00001871482,0.000019239145,0.000018573806,0.000019888219,0.00001878545,0.000018984982,0.000018705845,0.000019756837,0.000018988041,0.00001952814,0.00001886741,0.00002013119,0.000018744722,0.000018757435,0.000018303594,0.000019558089,0.000018717335,0.000019242061,0.000018566367,0.00001987538,0.000018789518,0.000019022424,0.00001874549,0.000019798048,0.000019023513,0.000019558349,0.00001888941,0.000020151858,0.000018759958,0.000018769084,0.00001831105,0.000019563015,0.00001871466,0.000019231642,0.000018554667,0.000019863444,0.00001877209,0.00001900112,0.000018721228,0.000019773555,0.000018996954,0.000019540246,0.00001887569,0.000020141715,0.000018746901,0.000018759134,0.000018303665,0.000019562156,0.000018704579,0.000019222492,0.000018550598,0.000019869338,0.00001876461,0.000019003657,0.000018704919,0.000019789855,0.000019063229,0.000019673396,0.000018976638,0.000020258221,0.000018730014,0.000018652334,0.000018077713,0.000019307923,0.000018422641,0.000018915638,0.000018255132,0.000019727919,0.000018633915,0.000019051273,0.0000186199,0.00002001156,0.000019230634,0.000019964229,0.000019024093,0.000020462465,0.000019060193,0.00001948251,0.000018895735,0.000020284628,0.0000192423,0.000019849638,0.000019029936,0.000020264964,0.000019176572,0.000019709452,0.00001921833,0.000020408968,0.000019951001,0.000020934845,0.000020047966,0.000021356516,0.000019864183,0.000020226582,0.000019335046,0.000020566269,0.00001976543,0.000020308593,0.000019350005,0.000020580042,0.00001926202,0.000019463327,0.00001889687,0.00002007789,0.000019574882,0.000020447911,0.000019309598,0.000020465412,0.00001886795,0.000019320283,0.000018316394,0.000019848298,0.00001900353,0.00001966595,0.000017901266,0.000018963485,0.000018490477,0.00001944915,0.000019176498,0.000020348489,0.000020568074,0.000021725122,0.000021498761,0.000022431415,0.00002360114,0.000025734686,0.000024937772,0.00001726959,0.000011432207,0.000013642126],[0.000015875974,0.000017330998,0.000013055945,0.000018902116,0.000032191598,0.000035848683,0.000031900632,0.000025222655,0.000022841521,0.000021808091,0.000021548556,0.000019902505,0.0000203985,0.000019738627,0.000020571075,0.00001987707,0.000021084656,0.000020722115,0.000021345542,0.000019763394,0.000021176444,0.000020788066,0.000021588317,0.000019866515,0.000020504129,0.000019527692,0.000019907175,0.000018577419,0.00001982446,0.00001958334,0.000020721642,0.000019287569,0.00002027202,0.000019533409,0.000020534599,0.000019401577,0.000021052105,0.000020567915,0.000021669379,0.000020003336,0.000020913156,0.000020100995,0.00002075829,0.000018986828,0.000020029049,0.000019717798,0.000020731266,0.000019587169,0.000020508473,0.000019855925,0.000020725593,0.000018985942,0.00002009469,0.000019657662,0.000020912577,0.000019493436,0.000020593883,0.000019955778,0.00002059677,0.000018624445,0.00001976807,0.000019564077,0.00002062356,0.000019187457,0.000020213354,0.000019600624,0.000020512853,0.00001878889,0.000020071036,0.00001968336,0.000020856114,0.000019333904,0.000020470388,0.000019796142,0.000020494237,0.000018507006,0.000019700845,0.000019499945,0.000020578904,0.000019130595,0.000020195646,0.000019537581,0.000020460378,0.000018812181,0.000020111733,0.000019691359,0.000020909587,0.000019388002,0.00002052526,0.00001983123,0.00002053924,0.000018547678,0.000019731304,0.00001953885,0.000020614632,0.00001917337,0.000020217461,0.000019547237,0.000020468182,0.000018831099,0.000020125932,0.000019709452,0.000020914811,0.000019398802,0.00002053973,0.000019829982,0.000020541787,0.00001854315,0.000019722012,0.00001953259,0.000020603844,0.000019170739,0.000020220506,0.000019555198,0.000020468691,0.000018824994,0.000020109834,0.000019679794,0.000020894937,0.000019393623,0.000020520309,0.00001981191,0.000020499496,0.000018537034,0.000019728162,0.000019519815,0.000020577118,0.000019172438,0.00002023534,0.000019567547,0.00002046467,0.000018816272,0.000020102854,0.000019689764,0.00002089374,0.00001938386,0.000020526864,0.000019820925,0.000020535204,0.000018546105,0.000019723873,0.000019527915,0.000020603331,0.000019169678,0.000020217249,0.0000195491,0.00002047937,0.00001884975,0.000020145575,0.000019733412,0.000020943035,0.000019427127,0.000020554504,0.000019849129,0.000020550899,0.000018554525,0.000019731606,0.000019535142,0.00002059785,0.000019160392,0.000020208034,0.000019546753,0.000020464377,0.000018821063,0.000020113901,0.000019694064,0.000020906316,0.00001939305,0.000020527707,0.00001983439,0.000020530819,0.000018537212,0.000019714884,0.000019528214,0.00002059349,0.000019150893,0.000020204392,0.000019548654,0.000020469315,0.000018807625,0.000020110487,0.000019679665,0.000020959198,0.000019504298,0.000020631429,0.00001994539,0.000020528627,0.000018486175,0.000019494517,0.000019331083,0.000020312038,0.00001888615,0.00001990765,0.000019378685,0.000020431675,0.000018664754,0.000020082009,0.00001970949,0.000021241814,0.000019598045,0.00002075047,0.000019999388,0.000020612606,0.000019198676,0.000020338284,0.000020126085,0.000020917725,0.00001986803,0.00002053127,0.00001987705,0.00002038656,0.000019353272,0.000020418449,0.000020214222,0.000021439406,0.000020573645,0.000021468766,0.00002095532,0.000021384967,0.000020238216,0.000020808771,0.00002074331,0.000021470978,0.000020377094,0.000020880414,0.000020168201,0.00002055564,0.000019130832,0.000020157951,0.000019648329,0.000020993766,0.000019726976,0.000020809845,0.00001994982,0.000020434305,0.000019104962,0.000019828412,0.000019840461,0.000020982136,0.00001959425,0.000019501675,0.000018790539,0.000019527246,0.000018952565,0.000019796822,0.00002024092,0.000020868947,0.000020793477,0.000020956439,0.000021478229,0.000024760046,0.000024748453,0.000024265828,0.000016129963,0.00001102552,0.00001316699],[0.000015844755,0.000017949851,0.000015761265,0.00002202525,0.000032023683,0.000031267355,0.000027029964,0.000023686935,0.00002111228,0.000020809466,0.000019552997,0.000019909112,0.000019060284,0.000019699079,0.000018947072,0.000019951478,0.000019757836,0.000020820662,0.00001955048,0.000019710486,0.000019607896,0.000020650226,0.000019626135,0.00001973616,0.00001884878,0.000019455661,0.000018527791,0.00001855865,0.000018231227,0.000019344452,0.000018568546,0.000019133771,0.000018591103,0.000019746985,0.000018915278,0.00001958364,0.000019420162,0.000020765536,0.00001962129,0.000020020225,0.000019273833,0.00002023015,0.00001899527,0.000018870434,0.000018673656,0.00001961031,0.000019028721,0.000019449893,0.000018952944,0.000019988995,0.000019027015,0.000019048273,0.000018853112,0.000019658935,0.0000191015,0.000019312656,0.000018942339,0.000019827674,0.00001883832,0.000018599898,0.000018525776,0.000019558294,0.000018802424,0.000019094106,0.000018590872,0.000019671857,0.00001871905,0.000018843046,0.000018756435,0.00001975177,0.00001897662,0.0000191599,0.000018779254,0.00001970107,0.000018706898,0.000018464556,0.000018405643,0.000019491968,0.000018710056,0.00001903538,0.000018546318,0.00001965935,0.000018697943,0.000018845185,0.000018753411,0.00001978044,0.000019017345,0.000019210507,0.000018828658,0.000019745856,0.000018750156,0.000018494304,0.00001843941,0.000019519406,0.000018753322,0.000019069776,0.000018574674,0.000019663361,0.000018698782,0.000018838824,0.000018760495,0.000019781364,0.000019018344,0.00001921529,0.0000188408,0.000019752919,0.000018746474,0.000018487144,0.000018432236,0.000019513413,0.000018740253,0.00001906074,0.000018580042,0.00001967516,0.00001870422,0.000018832985,0.00001874742,0.000019765092,0.00001900103,0.000019207924,0.000018827563,0.00001972632,0.00001872446,0.000018475865,0.000018425348,0.000019481526,0.000018720568,0.000019062738,0.000018594204,0.000019682704,0.000018711109,0.000018829627,0.00001874531,0.000019767278,0.000019010655,0.000019200032,0.000018827435,0.000019737026,0.000018739627,0.000018482895,0.00001843032,0.000019507235,0.000018740591,0.000019059395,0.000018570263,0.000019660192,0.000018707826,0.000018855359,0.000018789911,0.000019811343,0.000019063811,0.000019244668,0.00001885687,0.000019754558,0.000018757864,0.000018490775,0.00001843498,0.000019503701,0.00001873164,0.000019044297,0.000018564704,0.000019659967,0.000018692079,0.000018827095,0.000018750961,0.000019774763,0.000019018235,0.00001921014,0.000018832267,0.0000197448,0.000018738412,0.000018478771,0.000018420604,0.000019509282,0.000018740842,0.00001904989,0.000018557357,0.000019662068,0.000018686429,0.000018826915,0.000018745563,0.000019784798,0.000019099387,0.000019340247,0.000018948265,0.000019870718,0.000018773397,0.000018441484,0.000018263281,0.000019310446,0.00001849919,0.000018791938,0.000018247978,0.000019461284,0.00001856564,0.000018810064,0.000018694627,0.000020036403,0.000019176716,0.000019710053,0.000019099989,0.000020137566,0.00001896475,0.000019168454,0.000019106457,0.00002038963,0.000019326751,0.000020017054,0.000019433688,0.000020343252,0.000019190384,0.000019698684,0.000019641246,0.000020718675,0.000020070749,0.000020878642,0.000020403382,0.000021220638,0.000019998128,0.000020031282,0.00001950026,0.000020427758,0.000019661542,0.000020004138,0.00001925379,0.0000199752,0.000018999997,0.00001906732,0.000018700048,0.000019640309,0.000019124887,0.000019693294,0.000019262809,0.0000199748,0.000019080582,0.000019119725,0.00001855488,0.000019582594,0.00001893997,0.000019230614,0.000018370729,0.000018850216,0.000019010962,0.000019624733,0.000019712534,0.000021030457,0.000020782692,0.000021686208,0.000021159021,0.000022415763,0.000023645138,0.000027080843,0.000024605466,0.000016554788,0.000010402078,0.000013362456],[0.000016175036,0.000017800234,0.000014586928,0.000024245264,0.000030039604,0.000029708674,0.00002645434,0.000023459052,0.000021765145,0.000021141677,0.000020952522,0.00002029022,0.000020923013,0.000020004785,0.000020325622,0.00001992883,0.000021015598,0.000020735932,0.000020877666,0.000019992884,0.000021009828,0.000021197902,0.000021078966,0.000019971485,0.00002045228,0.000020283971,0.000020572723,0.000019438914,0.000019989719,0.000020017838,0.000020213914,0.000019286816,0.00002037723,0.000020224808,0.000021002616,0.000020161566,0.000021261372,0.000021099037,0.000021348453,0.000020311652,0.00002111077,0.0000208181,0.00002109101,0.000019721805,0.000020328513,0.00002047447,0.000020524458,0.000019833424,0.000020680933,0.000020576686,0.000021027186,0.000019847559,0.000020664904,0.000020545449,0.000020768905,0.000019826863,0.000020581867,0.000020483432,0.000020968533,0.000019560177,0.000020366486,0.00002039109,0.000020505207,0.000019489198,0.00002030834,0.000020205202,0.000020712196,0.000019613955,0.00002059842,0.000020516904,0.000020728143,0.000019668782,0.000020433896,0.000020343601,0.000020802263,0.000019439007,0.000020294285,0.000020307487,0.000020453763,0.000019385154,0.000020298503,0.000020172069,0.000020678328,0.000019605783,0.000020605983,0.000020537633,0.000020784319,0.00001972094,0.000020501062,0.00002039708,0.00002086262,0.000019478755,0.000020319983,0.000020347461,0.000020485406,0.000019422405,0.000020332118,0.000020192816,0.000020679749,0.000019600044,0.000020602192,0.000020539397,0.000020783546,0.000019728444,0.000020516629,0.000020395542,0.000020850784,0.000019463067,0.000020311827,0.000020343135,0.000020473766,0.000019413035,0.000020337196,0.00002019867,0.000020669439,0.00001959139,0.0000205919,0.000020523616,0.00002075431,0.000019698966,0.000020489215,0.000020384285,0.000020822867,0.000019469917,0.000020309017,0.000020320273,0.000020448868,0.000019420238,0.000020353049,0.000020213065,0.000020675961,0.000019603054,0.000020590407,0.000020531035,0.000020773123,0.000019719115,0.000020496253,0.00002038411,0.0000208451,0.000019467874,0.000020312407,0.000020340844,0.000020474547,0.000019413164,0.000020323705,0.00002018238,0.000020671625,0.000019616855,0.000020630092,0.000020572093,0.000020813732,0.00001975695,0.000020524085,0.000020405192,0.00002085339,0.00001946819,0.0000203053,0.000020329442,0.00002046174,0.000019402503,0.000020312891,0.00002018186,0.000020662657,0.000019595203,0.000020599344,0.000020538651,0.000020782456,0.000019725472,0.000020500182,0.00002039072,0.000020839574,0.000019459318,0.000020300227,0.000020332835,0.000020473415,0.000019417459,0.000020298698,0.000020177877,0.000020671487,0.000019599296,0.000020605217,0.000020548527,0.000020829004,0.000019839137,0.00002060803,0.000020522559,0.000020850128,0.000019441528,0.000020103986,0.000020157875,0.000020228954,0.00001925537,0.000019926227,0.000019956538,0.000020618172,0.000019597184,0.00002068253,0.00002066378,0.000021019188,0.000019835561,0.000020945572,0.000020619036,0.000021017904,0.000019880234,0.000021088837,0.000020826817,0.000020951622,0.000020117412,0.000021058793,0.000020576725,0.000020926043,0.000020273335,0.000021485379,0.000021307895,0.000021589964,0.000021095517,0.00002213508,0.00002190516,0.000021968339,0.000020842615,0.000021184222,0.000021190383,0.000021022595,0.000020193624,0.000020635247,0.000020431695,0.000020591624,0.000019787629,0.000020546038,0.000020376101,0.000020800717,0.000020051486,0.000021095959,0.000020923988,0.000021450083,0.000020350915,0.000020486988,0.000020599186,0.000020181285,0.000019922198,0.000019457166,0.000019917183,0.00002048314,0.000020629088,0.000020948248,0.000021585744,0.000021348636,0.000021687427,0.000021428348,0.000022000897,0.000024746778,0.000025195512,0.00002481917,0.000017198623,0.000010815559,0.000013205609],[0.000015667974,0.000015793734,0.0000147332485,0.00002184585,0.000029440742,0.00002849842,0.000023822791,0.000022453032,0.00001978044,0.000020456357,0.000019574603,0.000020516805,0.0000191477,0.000019814179,0.000019069685,0.000019985355,0.00001932911,0.00002063316,0.00001943797,0.000020239859,0.000019691435,0.000020889576,0.000019687997,0.000019769615,0.000019053507,0.000020233258,0.000019602325,0.000020002459,0.000019247953,0.0000200305,0.000018857912,0.000019081674,0.000018500812,0.000019923813,0.000019272602,0.000020279831,0.000019557587,0.000020636644,0.000019556726,0.000019978266,0.00001927569,0.000020480855,0.000019605672,0.000019842088,0.000019118432,0.000020004365,0.00001907505,0.000019585488,0.000018939738,0.000020348003,0.000019383288,0.000020021103,0.000019326695,0.00002021854,0.000019394955,0.000019712666,0.000019202704,0.000020283875,0.000019650126,0.000019690271,0.000019169824,0.000019942632,0.000019054032,0.00001937486,0.000018618106,0.000020018679,0.00001913804,0.000019832762,0.000019216755,0.000020206242,0.00001926797,0.00001956473,0.000019013483,0.000020155147,0.000019473631,0.000019528661,0.000019084038,0.000019869603,0.000018969924,0.00001929329,0.000018571822,0.00002001053,0.000019129648,0.000019842411,0.00001921604,0.00002021322,0.000019288324,0.0000196015,0.000019058576,0.000020202735,0.000019527617,0.000019570645,0.000019115825,0.000019893701,0.000019003332,0.0000193243,0.000018603127,0.000020028818,0.000019146804,0.0000198433,0.000019217196,0.0000202132,0.000019295629,0.000019610588,0.000019067376,0.000020194875,0.000019507757,0.000019551115,0.000019099696,0.000019882908,0.000018996681,0.000019327616,0.00001860827,0.00002003646,0.000019147497,0.000019839308,0.000019205541,0.000020196398,0.000019264555,0.000019562136,0.00001903166,0.000020183728,0.000019509282,0.000019557621,0.000019119307,0.000019880179,0.000019001103,0.000019352627,0.000018632742,0.000020043093,0.00001914295,0.000019834275,0.000019207466,0.000020190408,0.000019278668,0.000019592344,0.000019054107,0.000020193336,0.000019516838,0.000019555067,0.00001910456,0.00001988435,0.000018997624,0.000019319325,0.00001859557,0.000020025667,0.000019153817,0.000019858388,0.000019243218,0.000020245147,0.000019331083,0.000019635254,0.000019086277,0.000020214511,0.000019533596,0.000019558873,0.000019105217,0.000019866799,0.000018988187,0.000019309102,0.000018592465,0.000020017877,0.00001913585,0.000019831457,0.00001921593,0.000020207726,0.000019293695,0.000019603167,0.000019062667,0.00002019713,0.0000195211,0.00001954912,0.00001909866,0.00001987292,0.000018994924,0.000019305935,0.000018576693,0.00002000366,0.00001912277,0.00001982121,0.000019214629,0.000020213316,0.000019375284,0.000019713532,0.000019196406,0.000020339041,0.000019606045,0.000019531322,0.0000189919,0.00001973678,0.000018840423,0.000019093359,0.000018317389,0.00001971857,0.000018879378,0.000019643569,0.000019156374,0.000020305357,0.0000192706,0.000019645968,0.000018962055,0.00002014475,0.000019315732,0.000019691002,0.000019202118,0.000020269625,0.00001926584,0.000019803392,0.000019062212,0.000020327,0.00001959199,0.000020421117,0.000019843848,0.000020855417,0.000020148842,0.00002073706,0.000020267034,0.000021503949,0.000020877866,0.000021115744,0.000020023357,0.000020815083,0.000019862042,0.000020097295,0.00001906594,0.000020190215,0.00001944752,0.00002019216,0.00001942209,0.00002030007,0.000019609075,0.000019891291,0.000019498568,0.000020680596,0.00002055382,0.000021162856,0.000020315023,0.000021003738,0.000019787365,0.00001976151,0.00001887288,0.00001963179,0.000020329035,0.000020541649,0.00002036233,0.000020986217,0.000020964835,0.000021800834,0.000021001775,0.000021567965,0.000023013048,0.000025672032,0.000024083127,0.000016507462,0.000010628665,0.000013437341],[0.00001579152,0.0000143959805,0.000013924461,0.00002050765,0.000031665128,0.000030664214,0.000027224998,0.000022943188,0.00002129191,0.000020918622,0.000021179514,0.000020110334,0.000020547017,0.000019564432,0.000019942137,0.000019107785,0.000020379774,0.000020076608,0.000021289128,0.000019728877,0.000021025902,0.000020708345,0.000021007303,0.000019683455,0.0000202962,0.00001973902,0.00002083391,0.000019707872,0.000020755519,0.000020113326,0.00002044645,0.000018850757,0.000019848183,0.000019386707,0.00002073518,0.000019511404,0.000020934189,0.000020344725,0.000021026686,0.00001975126,0.00002052473,0.000020113192,0.000021189251,0.000019586367,0.000020677007,0.000020061603,0.000020731839,0.000019342755,0.000020247715,0.000019893625,0.000021046906,0.000019519164,0.000020637528,0.000020129079,0.000020790227,0.000019739491,0.000020469412,0.00002016049,0.000021300824,0.00001961405,0.00002056472,0.000019986746,0.000020680813,0.000019259522,0.000020062042,0.00001967077,0.000020857568,0.00001934283,0.000020499047,0.000020042844,0.000020707299,0.000019571093,0.000020317115,0.000019992902,0.000021093283,0.000019455829,0.000020461839,0.00001991815,0.000020623087,0.000019161289,0.000020029009,0.00001966912,0.000020818417,0.000019345523,0.000020479469,0.0000200425,0.000020725276,0.000019607203,0.000020360836,0.00002005026,0.000021169135,0.000019513636,0.000020507005,0.000019953779,0.000020654914,0.00001919551,0.000020060015,0.000019697989,0.000020836096,0.000019362282,0.000020484214,0.000020049572,0.000020731602,0.0000196229,0.000020373673,0.000020052212,0.00002115057,0.000019491095,0.00002048607,0.000019941472,0.000020653555,0.000019202338,0.000020071036,0.000019703588,0.000020837368,0.000019370482,0.000020475993,0.000020027728,0.000020697013,0.000019585414,0.000020322967,0.00002002246,0.000021128635,0.000019488029,0.000020489782,0.000019956538,0.000020668176,0.000019216994,0.000020084575,0.00001969395,0.000020818776,0.000019348125,0.000020464084,0.000020024865,0.000020701196,0.000019603222,0.000020358388,0.000020050682,0.000021161626,0.00001950463,0.000020499869,0.000019948815,0.000020653515,0.000019190915,0.000020060072,0.000019696168,0.000020836216,0.000019386614,0.000020506672,0.000020077585,0.000020759971,0.000019649957,0.000020388268,0.000020071822,0.00002117186,0.000019512743,0.000020483903,0.000019927442,0.000020628811,0.000019186504,0.000020050624,0.000019688243,0.000020817703,0.000019352165,0.000020472244,0.000020039784,0.000020721876,0.000019613506,0.000020362018,0.000020046686,0.000021149077,0.000019501507,0.000020479663,0.000019927138,0.000020633634,0.00001918217,0.000020031568,0.000019662406,0.00002081034,0.000019326271,0.00002046186,0.000020037569,0.000020772964,0.000019709847,0.000020462327,0.000020149322,0.000021191678,0.000019542278,0.000020343969,0.000019770163,0.000020361107,0.000018967337,0.00001973343,0.000019264591,0.000020514948,0.00001898386,0.000020327212,0.00001991272,0.000020713123,0.000019354085,0.000020337411,0.000019788666,0.000021056725,0.000019356263,0.000020540416,0.000019926358,0.000020539515,0.0000193496,0.000020259304,0.000019790403,0.000020834805,0.000019727842,0.00002080909,0.000020359746,0.0000211396,0.000020504307,0.000021254073,0.00002109642,0.000022709766,0.000021123276,0.00002149093,0.000020696005,0.000021216954,0.000019967923,0.000020276642,0.000019726582,0.000020718775,0.000019558927,0.00002046432,0.000019895673,0.000020575215,0.000019833084,0.000020482652,0.000020446547,0.000022085784,0.00002102472,0.000021721082,0.00002115275,0.00002115291,0.000019827485,0.000019572568,0.000019457239,0.000020420473,0.000020057068,0.000020659563,0.000020210886,0.000020563288,0.000020460962,0.000020008581,0.000020361591,0.000022849472,0.000024021518,0.000025824838,0.000016585444,0.0000110661385,0.000012897959],[0.000016391738,0.000013971349,0.000014526027,0.000020761812,0.00003288161,0.000030789804,0.000025113806,0.000022259934,0.000019667994,0.000020155376,0.000019072068,0.000019805091,0.000018984674,0.000019474095,0.000018338818,0.000019002877,0.000018735482,0.00002014669,0.00001911422,0.000019684037,0.000019570476,0.000020789828,0.000019618314,0.000019849773,0.000018804989,0.000019688448,0.000018867482,0.000019216755,0.000019022242,0.000019729518,0.000018706345,0.00001879527,0.000018156394,0.000019475876,0.000018815661,0.000019570645,0.00001944544,0.000020561465,0.000019392552,0.00001973584,0.000018976763,0.000020040034,0.000019154219,0.000019269055,0.000019105362,0.000019808529,0.000018955874,0.000019240464,0.000018768798,0.000020174837,0.000019198877,0.000019723722,0.000019418367,0.000020453843,0.000019548803,0.000019972378,0.000019404482,0.000020363806,0.000019491987,0.000019447834,0.00001934495,0.000019906756,0.000019022822,0.000019282365,0.000018770175,0.00002002389,0.000019071576,0.000019600287,0.000019367802,0.000020446276,0.000019441473,0.00001986765,0.00001926584,0.000020270087,0.000019357185,0.000019342664,0.000019242263,0.000019867859,0.000018936214,0.00001920937,0.000018738216,0.000020029009,0.000019071667,0.00001962417,0.000019392552,0.000020476422,0.000019467985,0.000019888674,0.000019293917,0.000020294265,0.000019400357,0.000019374398,0.00001927753,0.000019885865,0.000018968332,0.000019232339,0.000018763929,0.00002004248,0.000019085459,0.000019629244,0.000019401263,0.000020478336,0.000019474335,0.00001989666,0.000019306874,0.000020295736,0.000019383288,0.000019350486,0.00001925932,0.000019874054,0.000018963015,0.000019239731,0.000018774437,0.000020055788,0.000019098314,0.000019642388,0.000019405019,0.000020475563,0.0000194647,0.000019877296,0.000019272216,0.000020266472,0.000019370205,0.00001932817,0.000019248173,0.000019857554,0.00001896636,0.000019244613,0.000018777248,0.000020044316,0.000019078489,0.000019625088,0.000019383824,0.000020449492,0.000019446146,0.00001987669,0.000019291487,0.000020295425,0.000019400395,0.000019368412,0.000019270012,0.00001987866,0.000018963738,0.000019234027,0.00001876894,0.000020050988,0.000019104307,0.000019659368,0.000019429297,0.00002050771,0.000019509636,0.000019931318,0.0000193283,0.000020317115,0.000019417237,0.0000193739,0.000019266152,0.000019854411,0.00001894158,0.000019215859,0.000018759027,0.000020032143,0.000019077252,0.000019621251,0.000019392624,0.00002046623,0.000019468374,0.000019887497,0.000019298664,0.000020292813,0.000019397692,0.000019361634,0.000019258106,0.000019860187,0.000018948607,0.00001920743,0.000018730496,0.000020011388,0.000019051979,0.000019579344,0.000019366566,0.000020457255,0.000019557661,0.000019992465,0.000019393272,0.000020385218,0.00001942748,0.000019322953,0.00001911905,0.000019673884,0.000018731373,0.000018980221,0.000018405783,0.000019665611,0.00001873164,0.00001921923,0.00001902324,0.00002023511,0.000019228415,0.00001960887,0.000019032803,0.000020046436,0.000019099789,0.000019135596,0.000018945824,0.000019717272,0.000018676006,0.000019092085,0.000018848887,0.000019948568,0.000019146111,0.000019739568,0.000019714846,0.000020677106,0.000019988003,0.000020347694,0.000019923547,0.000020900197,0.000020315507,0.00002026512,0.000019773028,0.00002007186,0.000019274496,0.0000193611,0.000018673121,0.000019634916,0.00001893495,0.000019540788,0.000019232963,0.000020292215,0.00001969271,0.000020077392,0.000019407964,0.00002039385,0.000019791234,0.000020415664,0.00001999727,0.000020708956,0.000019981351,0.000019738853,0.00001873886,0.000019250632,0.00001956335,0.000019884938,0.000020029851,0.000020302297,0.00002040527,0.000021259568,0.000020609068,0.000021336851,0.000021892294,0.000025239158,0.000025286812,0.000017584789,0.000010686223,0.000013393804],[0.000016116433,0.000014177619,0.000012563691,0.00002197056,0.000033351535,0.000032192485,0.000027136064,0.000023382801,0.000021492837,0.000021052205,0.000020646525,0.000020155185,0.000020725396,0.000019960422,0.00002016097,0.000019718025,0.000020532229,0.00002037723,0.00002063135,0.000019813573,0.000021141415,0.00002119855,0.000021215415,0.000020306597,0.00002043261,0.000020238467,0.000020208747,0.0000193453,0.000020049916,0.00002022938,0.000020483922,0.000019444811,0.000019960878,0.000020141484,0.000020785526,0.000019984098,0.000021152668,0.000020863039,0.000021068978,0.0000203251,0.000020682588,0.000020738898,0.000020894937,0.000019894953,0.00002036365,0.000020433234,0.000020548547,0.000019814537,0.000020572272,0.000020863215,0.0000212208,0.000020107285,0.00002107806,0.000020906356,0.000021222499,0.000020548056,0.000021095335,0.000020976975,0.00002103621,0.000019933848,0.000020497035,0.000020488727,0.000020720434,0.000019810419,0.000020589367,0.000020663367,0.000020986718,0.000019903511,0.000020984377,0.00002081838,0.000021195052,0.000020390273,0.000020980136,0.000020816573,0.000020914991,0.000019809115,0.000020453432,0.00002045665,0.000020690735,0.000019762583,0.000020569427,0.000020689018,0.000020964813,0.000019939724,0.000021002215,0.000020828407,0.000021208012,0.000020413094,0.000020992366,0.000020846848,0.000020951262,0.000019847274,0.000020462816,0.000020482907,0.00002071194,0.000019789422,0.000020593077,0.000020702933,0.000020977415,0.000019949879,0.000021009308,0.000020842455,0.000021211674,0.000020424604,0.000020999552,0.000020852971,0.000020943293,0.000019834104,0.000020457255,0.000020478745,0.000020704889,0.000019788517,0.000020607458,0.000020716838,0.000020990561,0.000019966,0.000021021593,0.000020849413,0.000021206859,0.000020423708,0.000020982658,0.00002083987,0.000020920119,0.000019808247,0.00002041294,0.000020460475,0.000020702699,0.000019795632,0.000020594118,0.000020693498,0.000020964015,0.000019946494,0.000020994885,0.000020819569,0.000021180927,0.000020409572,0.000020989763,0.000020851063,0.000020949425,0.000019847255,0.000020463343,0.000020487205,0.000020707357,0.000019788384,0.000020602389,0.000020713382,0.000020990763,0.000019972875,0.000021033984,0.00002086662,0.000021233003,0.000020451773,0.000021026584,0.000020872332,0.000020961515,0.000019854526,0.000020456397,0.000020461546,0.000020682055,0.000019769557,0.000020582123,0.000020695688,0.000020969193,0.000019944971,0.000020999632,0.000020827612,0.00002119952,0.000020414904,0.000020990503,0.000020849375,0.00002093876,0.000019837094,0.000020443855,0.00002046338,0.000020684107,0.000019758383,0.000020547312,0.00002066855,0.00002093894,0.0000198985,0.000020961057,0.000020814112,0.000021243619,0.000020495645,0.00002106072,0.000020897407,0.000020867694,0.000019754727,0.000020223322,0.000020288693,0.000020446469,0.000019541309,0.000020184903,0.00002028488,0.000020679336,0.00001953708,0.000020599933,0.000020629363,0.000021051967,0.000020147978,0.000020859636,0.000020569369,0.000020760903,0.000019604773,0.00002042468,0.000020312058,0.000020422442,0.000019753106,0.000020632333,0.00002049158,0.000020701274,0.000019932288,0.000021065922,0.00002095832,0.00002120041,0.000020947627,0.000021371614,0.000021373631,0.000021305092,0.00002048353,0.000020658972,0.00002071261,0.000020735537,0.000019935787,0.000020235419,0.00002044253,0.000020465215,0.000019663004,0.000020681562,0.000020642135,0.000021113448,0.000020513498,0.000020855101,0.000020495665,0.000020672374,0.00001986765,0.000020229745,0.000020730218,0.000020597614,0.000019909074,0.000019019195,0.000019264095,0.000019134062,0.000019751693,0.00001971526,0.000020576843,0.000020835001,0.000021237158,0.000021009308,0.000021520997,0.000023129702,0.000024067054,0.000025447516,0.00001833532,0.0000109965895,0.000013307835],[0.000015768375,0.000014481599,0.000012721209,0.000018947974,0.000030447707,0.00003219344,0.000026323001,0.00002400615,0.000020752432,0.000020983638,0.000019509822,0.000020072932,0.00001886804,0.000019652676,0.000019140669,0.000020101648,0.000019357221,0.000020426181,0.000019204004,0.000019834144,0.000019477568,0.000020953523,0.00001974657,0.000020538928,0.000019107567,0.000020306848,0.000019015224,0.000019418201,0.00001898958,0.000020298754,0.000019491,0.000020013029,0.000018673585,0.000019984402,0.00001917721,0.000019989147,0.000019548317,0.00002081441,0.000019797784,0.000020547293,0.000019317446,0.000020616344,0.000019490073,0.000019831494,0.000019082492,0.000020077354,0.000019325367,0.000019864165,0.000018963847,0.00002045431,0.000019331948,0.000019879286,0.000019234723,0.000020511387,0.000019634841,0.000020598989,0.000019567511,0.00002091543,0.000019393901,0.000019654999,0.000019044932,0.000020071438,0.000019184583,0.000019737045,0.00001890893,0.000020326379,0.000019078907,0.000019645706,0.000019033112,0.000020401263,0.000019438581,0.00002039181,0.000019333147,0.000020708956,0.000019167794,0.000019515943,0.000018950757,0.000020082945,0.000019121659,0.0000196889,0.000018862014,0.000020307894,0.000019063922,0.000019666926,0.000019053125,0.000020419968,0.000019465813,0.000020411675,0.000019352516,0.000020736368,0.000019206038,0.000019548746,0.000018965204,0.000020088251,0.000019143772,0.000019709038,0.000018880712,0.00002032287,0.000019080817,0.000019680772,0.000019069194,0.000020434773,0.000019481598,0.000020418001,0.000019362447,0.000020746535,0.000019205487,0.000019537323,0.000018957664,0.000020078829,0.000019133715,0.000019702104,0.00001888327,0.000020334677,0.000019096255,0.000019697181,0.000019084568,0.000020446216,0.000019486875,0.000020424994,0.000019359772,0.000020740878,0.000019209096,0.00001952814,0.00001895513,0.000020091797,0.000019165474,0.000019719904,0.000018876104,0.000020313628,0.000019070303,0.000019674053,0.00001905496,0.00002041619,0.000019461284,0.00002040457,0.000019348974,0.000020732588,0.000019201258,0.000019549865,0.000018964425,0.000020091182,0.000019138386,0.000019707159,0.00001888363,0.000020334832,0.000019097366,0.000019704283,0.000019093213,0.000020461099,0.000019502679,0.000020452339,0.000019393068,0.000020773201,0.000019228908,0.000019561372,0.000018966595,0.00002007119,0.000019122625,0.000019685107,0.00001887155,0.000020313551,0.00001907676,0.000019677505,0.000019064448,0.000020423455,0.000019467021,0.000020412393,0.000019357776,0.000020743704,0.000019210067,0.00001954746,0.000018957357,0.00002008019,0.000019127094,0.000019685032,0.000018857103,0.000020301562,0.000019056813,0.000019643345,0.000019038376,0.000020415315,0.000019523595,0.000020518919,0.00001945761,0.000020875159,0.000019205416,0.000019481637,0.000018832698,0.000020010339,0.00001907154,0.000019574452,0.000018690527,0.000020109834,0.000018837189,0.000019298368,0.000018771518,0.000020215532,0.00001937475,0.000020250745,0.000019176096,0.000020493633,0.000019071049,0.000019564095,0.000018925437,0.000020224616,0.000019203655,0.000019900019,0.000019075342,0.000020363164,0.000019251993,0.000019735351,0.000019258143,0.000020495509,0.00002008559,0.000021143249,0.000020185327,0.000021421178,0.000019947349,0.00002025374,0.000019471885,0.000020511445,0.000019949252,0.000020244683,0.000019082983,0.000020271227,0.000019226707,0.000019715711,0.000019092122,0.000020480602,0.000019960346,0.000020940439,0.000019583267,0.000020708383,0.000019163244,0.000019889792,0.000019014771,0.0000205308,0.000019991588,0.000020377656,0.000018632065,0.000019235495,0.000019016275,0.000019280396,0.000019168854,0.00001997901,0.00002066916,0.000021626623,0.000021421729,0.000022137805,0.000023517538,0.000025202264,0.000024268142,0.000016644277,0.0000110837655,0.000013444737],[0.000015665344,0.000014296312,0.000011632242,0.000017229782,0.000030368541,0.00003498623,0.00003077099,0.000025334848,0.000022823535,0.000021930848,0.000021480235,0.000019864656,0.000020370546,0.000019638625,0.000020504209,0.00001959257,0.000020888301,0.000020470916,0.000021098554,0.00001941209,0.000020873984,0.000020546175,0.000021560727,0.000020007856,0.000020693598,0.000019818279,0.000020374859,0.000019318955,0.000020516081,0.000020423064,0.000021538346,0.000020037913,0.000020555817,0.000019767636,0.00002063186,0.000019559451,0.000021162574,0.000020765556,0.000021947544,0.00002036196,0.000021079428,0.000020542158,0.000021254662,0.000019777837,0.000020623107,0.00002038034,0.000021281516,0.000019887459,0.000020489098,0.000019951267,0.00002074503,0.000019216553,0.000020537615,0.000020210366,0.000021311127,0.000020089383,0.000021076836,0.000020455323,0.000020878124,0.000019368006,0.0000203449,0.000020124127,0.000020697724,0.00001943467,0.000020206915,0.00001972158,0.000020373926,0.00001880323,0.000020228106,0.00001989888,0.000021060701,0.000019789477,0.000020808633,0.00002013142,0.000020602527,0.000019155004,0.000020241152,0.000020070196,0.000020663721,0.000019375673,0.000020196263,0.000019662219,0.000020327057,0.00001883216,0.000020255826,0.000019908903,0.0000210819,0.000019830304,0.000020847763,0.000020177416,0.000020664373,0.000019210836,0.000020270936,0.000020094765,0.000020690086,0.000019407888,0.00002022525,0.000019678293,0.000020346006,0.000018854766,0.00002027409,0.000019928582,0.000021089923,0.000019841103,0.000020853688,0.000020185576,0.0000206598,0.000019202374,0.00002026342,0.000020086854,0.000020676356,0.00001940302,0.000020228299,0.000019686233,0.0000203607,0.000018870813,0.000020287318,0.000019943469,0.00002109077,0.00001984224,0.000020849751,0.000020178168,0.0000206559,0.000019213989,0.000020267093,0.000020102145,0.000020712097,0.000019431705,0.00002023675,0.00001967334,0.000020334794,0.000018841034,0.000020255382,0.000019914505,0.000021073762,0.000019832669,0.000020840049,0.000020164951,0.000020645128,0.000019214189,0.000020276466,0.000020098561,0.00002069119,0.000019407647,0.000020229012,0.000019681953,0.000020356176,0.000018868184,0.000020293684,0.00001995106,0.000021111959,0.000019870966,0.000020890155,0.000020211137,0.00002068101,0.000019222529,0.000020268366,0.000020084364,0.000020664864,0.000019390924,0.00002020732,0.000019665724,0.000020334852,0.000018848204,0.000020264171,0.000019917372,0.000021076894,0.00001983352,0.000020853471,0.000020179821,0.00002066581,0.000019215471,0.000020263806,0.00002008969,0.000020671387,0.000019383122,0.00002019245,0.000019660212,0.000020311982,0.000018815392,0.000020238891,0.000019908599,0.000021135731,0.000019928772,0.000020993624,0.000020307973,0.000020709134,0.000019190255,0.000020110103,0.000019999045,0.000020545294,0.000019316985,0.000020010739,0.000019510064,0.000020107955,0.000018486562,0.00001994362,0.000019800333,0.000021116088,0.000019722764,0.00002072658,0.000020071018,0.000020560465,0.000019378944,0.000020437814,0.00002026771,0.000020885313,0.000019839345,0.000020518584,0.000019917525,0.000020296955,0.00001927523,0.000020332369,0.000020282172,0.000021532534,0.000020886648,0.000021680728,0.000021316087,0.000021655558,0.000020567053,0.00002095878,0.00002092351,0.000021590213,0.000020488103,0.000020602565,0.00001983927,0.00002034222,0.000019034327,0.000020124051,0.000019845967,0.000021178725,0.000020498186,0.00002107945,0.000020309404,0.000020511034,0.000019738758,0.000020247619,0.000020670974,0.000021563934,0.00002050026,0.000019945826,0.00001929112,0.000019687266,0.000019002027,0.000019543788,0.000019943165,0.000020696498,0.00002074331,0.000020891926,0.0000214203,0.000024632252,0.000024387484,0.000023934599,0.000015957654,0.000010793621,0.000012875297],[0.000015865728,0.0000135336795,0.000011888062,0.000016209364,0.000029945075,0.000032916905,0.00002788791,0.000024275527,0.000021493615,0.000020809744,0.000019399322,0.000019365385,0.000018725354,0.000019119325,0.000018530141,0.000019183357,0.000019303578,0.000020210924,0.000019032657,0.000019160192,0.000019129118,0.00002037651,0.000019455292,0.000019953914,0.000019070303,0.000019942288,0.000018809544,0.000019302142,0.000018923036,0.000020207552,0.000019487954,0.000019913137,0.000019280747,0.000020044163,0.000019131034,0.000019698025,0.000019601015,0.000020779959,0.000019963087,0.000020276255,0.000019839687,0.000020809804,0.000019727053,0.000019867537,0.000019388612,0.000020142577,0.000019511142,0.000019559544,0.000019189725,0.000020036268,0.000018988983,0.000019292482,0.000019166753,0.000020481186,0.000019665049,0.000020405836,0.000019832894,0.000020932031,0.000019397656,0.000019621682,0.00001937377,0.000020339467,0.000019179754,0.000019330695,0.000018906749,0.000019915378,0.000018654202,0.000018961442,0.000018922947,0.000020372567,0.000019385801,0.00002019326,0.000019535999,0.000020704041,0.00001913074,0.000019455198,0.000019210105,0.000020333591,0.000019108005,0.0000193434,0.000018875204,0.000019910802,0.000018652227,0.00001901849,0.000018971135,0.000020429628,0.000019425775,0.000020240765,0.000019586441,0.000020743844,0.000019185736,0.000019495204,0.000019244759,0.000020345753,0.000019138643,0.000019375046,0.000018902494,0.000019923698,0.000018664932,0.000019027177,0.000018985942,0.000020432844,0.000019429037,0.000020239528,0.000019590661,0.000020747088,0.000019182204,0.00001948026,0.000019233514,0.000020329617,0.000019123445,0.000019367933,0.000018904928,0.000019927536,0.00001867255,0.000019037523,0.000019001935,0.000020453568,0.000019441028,0.000020241208,0.000019592624,0.000020742202,0.000019183137,0.000019485,0.00001924731,0.00002034362,0.000019152683,0.000019384583,0.000018909795,0.00001991513,0.0000186518,0.000019008443,0.00001896949,0.000020425792,0.000019422183,0.000020241941,0.000019588048,0.000020736348,0.000019167923,0.0000194913,0.000019248504,0.000020352214,0.000019136107,0.000019376654,0.000018904495,0.000019927898,0.00001867492,0.000019045005,0.000019006158,0.000020467442,0.000019460838,0.000020281708,0.000019623067,0.000020776928,0.000019200561,0.000019500094,0.000019246136,0.000020336945,0.000019123647,0.000019357629,0.000018889843,0.000019911125,0.000018655483,0.000019020808,0.000018981,0.000020435884,0.000019426368,0.000020242309,0.00001959098,0.000020749878,0.000019184712,0.000019498197,0.000019242521,0.000020342453,0.000019123136,0.000019349342,0.000018881416,0.000019908675,0.000018643104,0.000019001302,0.000018973868,0.000020458583,0.000019518011,0.000020380416,0.000019719266,0.000020904501,0.000019241934,0.000019455754,0.000019115916,0.000020173375,0.000019017309,0.000019176661,0.000018724086,0.000019705712,0.000018523604,0.000018761782,0.000018793515,0.000020320816,0.000019441344,0.000020103029,0.000019507217,0.000020586029,0.000019220053,0.000019637819,0.000019485185,0.000020592883,0.000019411462,0.000019773706,0.000019415904,0.000020210058,0.000019121931,0.000019451432,0.000019573388,0.000020760408,0.000020284358,0.00002119968,0.000020919997,0.000021760869,0.000020398773,0.000020369787,0.00001986943,0.000020460024,0.000019809511,0.000019701522,0.000019148172,0.000019589617,0.000018731229,0.000019080018,0.000018950072,0.000020476109,0.000019972551,0.000021352158,0.000020380941,0.000021191254,0.000019671765,0.000020394786,0.000019593333,0.00002080659,0.000020065583,0.000020336285,0.00001934888,0.000019494366,0.00001987288,0.000019818242,0.00001992197,0.000020661513,0.000020656806,0.00002138103,0.00002077978,0.000021991542,0.0000233729,0.000026335558,0.000024943312,0.00001677253,0.000010311183,0.00001309194],[0.00001550669,0.000013065572,0.000010137955,0.00001612704,0.000027830443,0.000033989014,0.000028273305,0.000024861953,0.000022377786,0.000021474232,0.000020629028,0.00001995671,0.000020324633,0.000019929039,0.000020120828,0.000019728408,0.000020622263,0.000020617326,0.000020497659,0.000019632987,0.000020773421,0.000020899559,0.000021034026,0.000020003392,0.000020778196,0.000020477613,0.000020767377,0.000019748248,0.000020363437,0.000020559759,0.000020682824,0.00001993436,0.000020657772,0.000020599875,0.0000210739,0.000020243891,0.00002126192,0.000021175534,0.000021342144,0.000020403888,0.000021313019,0.000021257925,0.000021782402,0.000020553642,0.000020806152,0.000020681562,0.000020438281,0.000019755953,0.000020448088,0.000020606654,0.000021044962,0.000019817051,0.000020846928,0.000020915151,0.000021232134,0.000020311729,0.000021392312,0.000021040025,0.000021350488,0.000019931795,0.000020845058,0.00002080524,0.000020629383,0.000019477828,0.000020232079,0.000020299065,0.000020684423,0.000019364239,0.00002076203,0.000020723042,0.000021186059,0.00002006654,0.000021217522,0.000020728221,0.000021118703,0.00001973631,0.000020767913,0.000020734884,0.00002063202,0.000019431613,0.000020250996,0.000020279987,0.000020688209,0.000019431463,0.000020842615,0.000020734095,0.000021203161,0.00002010529,0.000021271797,0.000020776668,0.000021177333,0.000019795594,0.000020798554,0.000020775737,0.0000206611,0.000019466612,0.00002029235,0.000020300306,0.000020707752,0.000019444773,0.000020850963,0.00002074228,0.000021194122,0.000020107016,0.000021272954,0.000020773517,0.000021173151,0.00001978429,0.000020785348,0.000020759675,0.000020645324,0.00001946043,0.000020298754,0.00002029893,0.000020710379,0.000019465757,0.000020860232,0.000020752233,0.000021202653,0.000020112846,0.00002127068,0.000020785368,0.000021181435,0.000019803922,0.000020805,0.000020776768,0.000020656254,0.000019475061,0.000020283682,0.000020291516,0.000020691386,0.000019430352,0.000020834388,0.000020736585,0.000021190624,0.000020111082,0.0000212748,0.000020760943,0.000021152164,0.000019786516,0.000020801708,0.000020777343,0.000020655702,0.000019466073,0.000020294865,0.000020293915,0.000020711623,0.000019466908,0.000020869526,0.000020764724,0.000021231304,0.000020139505,0.000021301516,0.00002079548,0.00002118412,0.000019792593,0.000020794627,0.000020769736,0.000020649517,0.000019454865,0.000020281961,0.00002028726,0.000020690697,0.000019442492,0.000020848895,0.000020741805,0.00002120061,0.000020103507,0.000021268734,0.000020764803,0.000021163967,0.000019785006,0.000020783902,0.000020764921,0.000020644242,0.000019450968,0.000020252543,0.00002028109,0.000020679336,0.000019419718,0.000020849513,0.000020755715,0.000021276544,0.000020234955,0.000021387334,0.000020915231,0.000021194182,0.000019721165,0.000020531974,0.00002055084,0.000020325622,0.000019259172,0.000019884823,0.000020037798,0.000020454348,0.000019222089,0.00002053924,0.000020681919,0.00002116645,0.000019981258,0.00002120429,0.000020734766,0.000021083268,0.00002002309,0.000021313404,0.00002101147,0.000020927182,0.000019922654,0.000020892106,0.000020569605,0.000020916885,0.000020184036,0.000021391555,0.000021281861,0.000021603104,0.000021174465,0.00002239132,0.000022116155,0.000022029388,0.000021068194,0.000021301415,0.00002129185,0.00002073354,0.000020017436,0.000020172722,0.000020303924,0.000020400037,0.000019641846,0.000020864689,0.000020797108,0.000021621117,0.00002102536,0.000022180684,0.00002129776,0.00002152028,0.000020816373,0.000021238737,0.00002124218,0.000020831229,0.000020493007,0.000019893208,0.000020238063,0.000020663818,0.000020936224,0.00002076211,0.000021386397,0.000020994024,0.000021263259,0.000021128251,0.000021375405,0.000023881614,0.000024706878,0.000025829198,0.000017688835,0.000010831361,0.000013022245],[0.0000149645175,0.000012063288,0.00001047217,0.000013941803,0.000025525,0.000033137883,0.000026292395,0.00002407245,0.000021086566,0.000020921914,0.000019697878,0.000020009727,0.000018996156,0.000019455958,0.000019253112,0.000019845344,0.000019606252,0.00002055031,0.000019447667,0.0000199244,0.000019540843,0.000020612057,0.000019433335,0.000019646322,0.000018874682,0.000020169624,0.000019154439,0.000019910021,0.000019111212,0.000020291924,0.000019003837,0.000019396603,0.000018785398,0.000020130787,0.000019325129,0.000020187348,0.000019689405,0.000020669811,0.000019441584,0.000019786856,0.000019240979,0.000020665671,0.00001984612,0.000020260037,0.000019493047,0.000019962306,0.000018740771,0.000018996283,0.000018601175,0.000019975865,0.000019060975,0.000019647166,0.00001919842,0.000020265372,0.000019072813,0.00001967017,0.00001906583,0.000020469295,0.000019205396,0.000019617546,0.000019143006,0.000020099136,0.000018734427,0.000018840907,0.000018302268,0.000019654868,0.00001860625,0.000019145544,0.0000188828,0.000020106689,0.000018871226,0.000019491896,0.000018762283,0.00002019422,0.000018877921,0.000019374824,0.000018940422,0.000020011445,0.000018612922,0.000018784538,0.000018223735,0.00001964771,0.000018584702,0.000019205541,0.000018920637,0.000020139409,0.000018890654,0.000019521622,0.00001880472,0.000020243138,0.000018949366,0.000019436042,0.000018984656,0.000020040932,0.000018653294,0.000018820883,0.000018258928,0.000019669418,0.000018615441,0.000019221503,0.000018933308,0.000020140793,0.000018893825,0.000019524434,0.000018806799,0.000020235957,0.000018942681,0.000019421404,0.000018973416,0.000020025229,0.000018642713,0.000018815375,0.000018260931,0.000019676098,0.000018624356,0.000019240593,0.00001894783,0.000020152493,0.000018911058,0.000019532683,0.000018817995,0.000020251306,0.000018966759,0.000019445757,0.000019007462,0.000020047852,0.000018656336,0.000018816523,0.000018260287,0.000019657306,0.00001859502,0.000019203326,0.000018919176,0.000020127485,0.00001888932,0.000019525829,0.000018797475,0.000020226427,0.000018928002,0.000019421572,0.000018979876,0.00002004183,0.000018644669,0.000018815339,0.000018256387,0.00001966837,0.000018615247,0.000019238558,0.000018949962,0.000020164682,0.00001891665,0.000019553836,0.000018828585,0.000020262145,0.000018950668,0.000019424479,0.000018974375,0.000020032448,0.000018647052,0.000018809167,0.00001825139,0.000019662555,0.000018605095,0.0000192145,0.000018926503,0.00002013672,0.000018886602,0.000019515273,0.000018792152,0.000020229303,0.000018932134,0.000019420015,0.000018972838,0.000020034835,0.00001863763,0.000018790612,0.000018226117,0.000019647541,0.000018585304,0.000019197358,0.000018906081,0.000020145844,0.000018962237,0.000019636956,0.000018927494,0.000020383974,0.000018975225,0.000019340874,0.000018809149,0.00001984084,0.000018461262,0.000018578481,0.000018008885,0.0000194162,0.00001837318,0.0000189466,0.000018710038,0.000020016712,0.00001888172,0.000019438785,0.00001879269,0.000020208729,0.000019170502,0.00001973377,0.000019279936,0.00002031698,0.000019073195,0.00001928023,0.000018834997,0.000020180822,0.00001957533,0.00002031361,0.000019862859,0.000020875914,0.000019987641,0.000020745068,0.00002037484,0.000021712487,0.000020879397,0.000021235153,0.000020316262,0.000020925225,0.000019820793,0.000019619081,0.000018831333,0.000019836054,0.00001902451,0.000019732302,0.00001926088,0.000020612018,0.000019724983,0.000020599246,0.00001965725,0.000020970114,0.000020018068,0.000021065382,0.000020021294,0.000021148007,0.000019589523,0.000019824498,0.00001897291,0.000019763092,0.000020607222,0.000020758705,0.000020621397,0.000020910564,0.000020862162,0.0000215605,0.00002073166,0.000021145366,0.000022365582,0.000025126887,0.000025091926,0.00001705317,0.000010753725,0.00001328638],[0.000015322541,0.000011203096,0.0000103058355,0.0000138350615,0.000026828751,0.000036776553,0.000029743374,0.00002465103,0.000022374372,0.000021649446,0.00002133207,0.000019897268,0.000020100499,0.000019638923,0.000020212621,0.00001953844,0.000020977355,0.000020647845,0.000021601169,0.000019778667,0.000021106323,0.000020541727,0.000020897427,0.00001936472,0.000020201425,0.000019471328,0.000020446585,0.000019162111,0.000020396128,0.000019814463,0.000020259053,0.000018845849,0.000019885962,0.000019388297,0.000020437561,0.000019402225,0.000020993746,0.00002039002,0.000020934387,0.000019433188,0.00002040385,0.000020001122,0.00002103533,0.000019613824,0.000020565936,0.000019819961,0.000019999006,0.00001864458,0.000019552606,0.000019254709,0.000020314694,0.000018902943,0.000020297517,0.000019724175,0.000020229785,0.00001885473,0.000020040454,0.000019519239,0.000020474643,0.000018765379,0.000019962821,0.000019499183,0.000019723158,0.000018282102,0.000019180907,0.00001893374,0.000019915491,0.00001835299,0.000019822173,0.000019428518,0.00002005703,0.000018582292,0.00001985091,0.00001919853,0.00002016824,0.000018464538,0.000019722933,0.00001933619,0.000019625406,0.000018153953,0.000019125982,0.000018892744,0.00001991025,0.00001835446,0.00001990987,0.000019425368,0.000020094594,0.000018613171,0.00001989706,0.000019235236,0.000020249008,0.000018546212,0.000019793612,0.00001938902,0.000019674748,0.000018201157,0.000019166187,0.00001891351,0.000019939778,0.000018386643,0.000019932668,0.000019428498,0.000020099347,0.00001862171,0.000019906623,0.000019231642,0.000020246343,0.000018537954,0.000019783347,0.000019382273,0.000019669007,0.000018194893,0.000019174597,0.000018916271,0.000019945921,0.000018401044,0.00001995279,0.000019439323,0.000020116337,0.00001864627,0.000019904706,0.000019250065,0.000020268657,0.000018574214,0.000019815048,0.000019409035,0.000019683417,0.000018213224,0.000019168874,0.000018915927,0.000019919613,0.000018372953,0.000019920792,0.000019423145,0.000020086336,0.000018617733,0.000019903415,0.00001921364,0.000020233354,0.000018530849,0.00001978678,0.000019387448,0.000019667299,0.000018188595,0.000019163812,0.000018909634,0.000019936984,0.000018392868,0.000019946625,0.000019449002,0.000020120442,0.0000186401,0.000019923793,0.000019253075,0.000020247791,0.000018531944,0.000019776762,0.000019382142,0.00001966068,0.000018189323,0.000019154146,0.000018909723,0.000019928715,0.000018375442,0.000019920564,0.00001941957,0.000020087236,0.000018607012,0.000019885734,0.000019220915,0.000020233758,0.000018536823,0.000019777517,0.00001937242,0.000019644394,0.000018169108,0.000019118814,0.000018889898,0.000019908106,0.00001834725,0.000019892694,0.000019391628,0.000020125586,0.000018729514,0.000019977504,0.00001935438,0.000020254127,0.000018483988,0.00001956402,0.000019135705,0.000019320338,0.00001797121,0.000018865863,0.000018635461,0.000019650071,0.00001807292,0.000019561316,0.000019211771,0.000019984536,0.000018557126,0.000019918247,0.00001939603,0.000020472438,0.00001898719,0.00002018088,0.000019585825,0.000019948739,0.000018851584,0.000019823989,0.000019534638,0.000020773421,0.0000197062,0.000021017122,0.000020273335,0.00002102045,0.000020137853,0.00002125969,0.000021043194,0.000022291162,0.000021059455,0.00002151244,0.000020833353,0.000020946949,0.000019709696,0.000019996927,0.00001950943,0.000020322328,0.000018953324,0.00002037307,0.00001966837,0.000020403364,0.000019365605,0.000020625095,0.000020017782,0.000020952162,0.000019940446,0.000020926802,0.000020487596,0.000020335065,0.000019369114,0.00001919961,0.000019314388,0.00002031264,0.000020164873,0.000020580552,0.00002018238,0.00002046342,0.000020364118,0.000019979829,0.000020162412,0.000022210357,0.00002387576,0.00002615051,0.000017314198,0.000011304786,0.0000128594675],[0.000015727886,0.000012237665,0.00001143152,0.00001506689,0.000028033175,0.00003475883,0.000027124885,0.00002332832,0.000020502273,0.00002063627,0.000019469842,0.000019655356,0.00001891885,0.000019201623,0.000018614945,0.000019098075,0.000019110374,0.000020114323,0.000019297431,0.000019331967,0.000019497136,0.000020259786,0.000019292462,0.00001935091,0.000018362163,0.000019267805,0.000018247612,0.00001869313,0.000018376668,0.000019428908,0.000018339326,0.000018765004,0.000018071887,0.000019500949,0.000018668261,0.000019490612,0.000019370851,0.000020606103,0.00001927341,0.000019551357,0.000018723727,0.000019993018,0.000018827706,0.000019059613,0.000018840405,0.000019548168,0.000018466986,0.00001862647,0.000018036384,0.000019335637,0.000018296892,0.000018681636,0.000018666286,0.000019723535,0.000018687766,0.000019039484,0.00001839964,0.000019823856,0.000018534913,0.000018761479,0.000018473855,0.000019490259,0.000018138846,0.0000183169,0.000017785555,0.000019137127,0.000018052233,0.000018350225,0.000018303575,0.000019567118,0.00001840229,0.000018774688,0.000018153174,0.000019601333,0.000018267132,0.00001852673,0.000018218401,0.000019399506,0.00001798057,0.00001821663,0.000017692933,0.000019129502,0.00001804485,0.000018401272,0.000018341756,0.0000196331,0.00001845086,0.000018823577,0.000018189357,0.000019642483,0.00001832064,0.000018579298,0.00001827844,0.000019426257,0.000018026412,0.000018258215,0.000017727305,0.000019143918,0.000018063944,0.000018415967,0.00001836162,0.000019631454,0.000018452003,0.000018827312,0.00001819951,0.000019646754,0.000018321163,0.000018572726,0.00001827241,0.000019417756,0.000018017492,0.000018244082,0.000017722334,0.000019142057,0.000018067976,0.000018421359,0.000018374232,0.000019644543,0.000018477078,0.000018842939,0.000018204038,0.000019641733,0.000018344135,0.000018594079,0.000018300016,0.000019435207,0.000018044488,0.000018261591,0.000017729739,0.000019124667,0.000018044626,0.000018397113,0.000018352044,0.000019622692,0.000018440993,0.000018811732,0.000018187242,0.000019633568,0.000018308972,0.000018566776,0.000018271348,0.000019425608,0.000018020688,0.000018240846,0.000017713988,0.000019134573,0.000018060327,0.000018414086,0.000018369921,0.00001965573,0.000018472887,0.00001884594,0.000018210185,0.000019658637,0.000018321407,0.000018568333,0.000018267008,0.000019425033,0.000018017767,0.00001823928,0.000017715474,0.000019135741,0.000018057692,0.000018405624,0.000018351624,0.000019624695,0.000018441995,0.000018810924,0.000018183651,0.000019633924,0.000018317283,0.000018575134,0.000018268089,0.000019414589,0.000017999664,0.000018219149,0.000017695364,0.000019124504,0.000018044437,0.000018406081,0.000018335984,0.00001964756,0.00001853053,0.000018963015,0.000018296001,0.000019755047,0.000018338887,0.00001850743,0.000018073972,0.000019154857,0.00001776374,0.000018047189,0.000017497436,0.00001896466,0.000017889304,0.000018315293,0.000018092771,0.000019572008,0.000018376457,0.000018956813,0.000018409048,0.00001985055,0.00001865027,0.000019096346,0.000018686162,0.00001977135,0.000018445284,0.000018780722,0.000018479968,0.000019758138,0.000019027377,0.000019666662,0.00001965483,0.00002074604,0.00001982378,0.000020497737,0.000019992141,0.000021233533,0.000020216361,0.000020394084,0.000019858899,0.000020241208,0.000019316543,0.000019189634,0.000018670129,0.00001940787,0.000018525441,0.000018784232,0.000018631374,0.000019884084,0.000019023058,0.00001979363,0.000019129793,0.00002020709,0.000018904602,0.000019638212,0.00001890527,0.000020188694,0.000018994833,0.00001924687,0.000018184692,0.000019339583,0.000019436617,0.000020195377,0.000019988709,0.000020475447,0.00002035637,0.000021445789,0.000020775005,0.000021375057,0.00002173704,0.000024522797,0.000025293326,0.00001857726,0.000011037207,0.000013494332],[0.000015411393,0.0000131827965,0.000010512365,0.000017053235,0.00002841844,0.00003639872,0.000028734998,0.000023896102,0.000021682134,0.000021305945,0.000020766229,0.000019985164,0.000020366271,0.000019833215,0.000020128773,0.000019686964,0.000020441672,0.000020474958,0.000020472009,0.000019682067,0.000020911042,0.000020976533,0.00002090847,0.00001987974,0.000020132591,0.00001987777,0.000019849565,0.000018906856,0.00001969675,0.000019794368,0.000020154685,0.00001916065,0.000019978419,0.00001999956,0.000020663309,0.000019827563,0.000021009568,0.000020736228,0.000021013015,0.00001999296,0.000020679037,0.00002053734,0.000020662204,0.000019436506,0.000020024903,0.000020107553,0.000020167201,0.000019283358,0.000020139256,0.000020110238,0.00002046153,0.000019225443,0.000020277685,0.000020342512,0.000020649024,0.000019626697,0.000020501004,0.000020420124,0.000020610505,0.000019157635,0.000019928126,0.00002002307,0.000020184769,0.000019018995,0.000019913878,0.000019973464,0.000020360214,0.000018986739,0.000020128713,0.000020209422,0.000020571959,0.000019369318,0.000020327716,0.000020189946,0.000020434365,0.000018952782,0.000019797764,0.00001994111,0.000020129079,0.000018909524,0.000019870493,0.000019901918,0.000020380357,0.000019000032,0.000020202253,0.000020236672,0.000020610938,0.000019411924,0.000020367439,0.000020205298,0.00002046988,0.00001899418,0.00001982015,0.000019981218,0.000020152916,0.000018953288,0.000019898198,0.000019907593,0.000020386617,0.00001901341,0.0000202137,0.000020235591,0.000020606967,0.000019419014,0.000020378415,0.000020205933,0.000020475718,0.000018993747,0.000019813348,0.000019976398,0.00002014323,0.000018938943,0.000019891766,0.000019901328,0.000020382107,0.00001901711,0.000020225058,0.000020254416,0.000020630032,0.0000194526,0.000020380552,0.000020225425,0.000020491816,0.000019017725,0.00001982603,0.000019993706,0.000020163508,0.000018957842,0.000019891539,0.000019895124,0.000020371204,0.00001901312,0.00002020657,0.00002023951,0.000020599127,0.000019412146,0.000020371963,0.000020196245,0.00002046192,0.000018987645,0.000019811874,0.00001997922,0.000020146075,0.000018938652,0.000019882738,0.00001990074,0.000020388523,0.000019012958,0.000020218578,0.00002025795,0.000020634125,0.000019434727,0.000020381078,0.000020210578,0.00002046828,0.000018985687,0.000019814857,0.000019981371,0.000020145346,0.000018937479,0.000019885221,0.00001990393,0.000020387453,0.000019010618,0.000020210984,0.000020238082,0.000020605847,0.000019410869,0.000020361884,0.000020206377,0.000020462972,0.00001899036,0.000019804564,0.000019965619,0.000020130059,0.000018915278,0.000019864921,0.000019900968,0.00002037348,0.000019001338,0.00002021557,0.000020245474,0.000020653219,0.000019526835,0.00002041469,0.00002029798,0.000020398733,0.0000188877,0.000019532477,0.00001969737,0.000019839363,0.000018713357,0.000019594905,0.00001974546,0.000020215532,0.000018854998,0.00002001637,0.000020067344,0.000020623678,0.000019586141,0.000020613237,0.000020339778,0.000020505187,0.000019390774,0.00002035606,0.000020219562,0.000020339196,0.000019483996,0.000020370875,0.000020294285,0.000020529507,0.000019784778,0.000020995147,0.000020846392,0.000021250164,0.000020736743,0.000021599211,0.000021398573,0.000021183594,0.000020475698,0.000020652,0.000020894497,0.00002063741,0.000019914638,0.000020308145,0.000020502077,0.000020304777,0.00001922759,0.000020335297,0.00002018265,0.000020916747,0.00002016824,0.000021052469,0.000020488924,0.000020293588,0.000019503868,0.000019907024,0.000020402917,0.000020284204,0.000019548896,0.000019015804,0.000019278374,0.000019487954,0.000020070675,0.000020143694,0.000020772488,0.000020921076,0.000021346092,0.000021178403,0.000021560685,0.000022733386,0.000023939463,0.000025459167,0.000019462526,0.000011429984,0.000013513741],[0.000015243735,0.000015442023,0.00001171879,0.000017034135,0.000029082803,0.000034357792,0.000027504853,0.000024419367,0.000020898364,0.0000211293,0.000019711424,0.00002017124,0.000019023748,0.000019777894,0.000019379186,0.000020206493,0.000019543659,0.00002048148,0.000019455718,0.000019811325,0.000019736386,0.000020865882,0.000019703362,0.000020157835,0.000018834888,0.000019822022,0.000018559074,0.000018770086,0.000018395447,0.000019646492,0.00001891342,0.000019669194,0.000018533428,0.00001994267,0.000019108935,0.000019957071,0.000019472387,0.000020732155,0.000019545652,0.000020321728,0.0000191928,0.000020432202,0.000018986504,0.000019058232,0.0000185033,0.00001944826,0.000018794553,0.000019445886,0.000018769299,0.000020044736,0.000018924318,0.000019056686,0.000018778574,0.000019752748,0.00001913585,0.000019747702,0.000019073032,0.000020304467,0.000018916937,0.000018905252,0.000018427754,0.000019562473,0.000018781671,0.000019244393,0.000018611998,0.000019934114,0.000018840476,0.000018962292,0.000018700674,0.00001974674,0.000018996718,0.000019497546,0.000018849641,0.000020107438,0.000018723604,0.000018730674,0.000018287055,0.000019527002,0.000018684397,0.000019172585,0.000018529592,0.000019857573,0.000018754145,0.000018944776,0.000018684486,0.000019768579,0.000019015115,0.000019551524,0.00001887551,0.000020147381,0.00001874792,0.000018750512,0.000018297555,0.000019542764,0.000018713874,0.000019212155,0.000018553075,0.000019868883,0.000018762714,0.000018954426,0.000018689709,0.000019769464,0.000019017418,0.000019561541,0.000018885106,0.000020155914,0.00001875205,0.000018751818,0.000018294537,0.000019539613,0.000018708628,0.000019201185,0.000018544548,0.000019859732,0.000018764395,0.000018959814,0.000018703258,0.000019791534,0.000019051671,0.000019589635,0.000018911545,0.000020184576,0.000018790073,0.000018780363,0.000018323924,0.000019552344,0.000018726996,0.000019219799,0.000018560702,0.000019858597,0.000018759385,0.000018953,0.000018692454,0.000019766167,0.000019020628,0.000019558294,0.000018885863,0.000020148535,0.000018744613,0.000018744186,0.00001829253,0.000019538124,0.000018709556,0.000019201476,0.000018545503,0.000019865263,0.000018764915,0.000018952871,0.000018693398,0.000019787345,0.000019040082,0.00001957477,0.000018887395,0.000020149533,0.00001874962,0.000018748278,0.00001830068,0.000019542242,0.000018712126,0.000019196972,0.000018546123,0.000019863559,0.000018767132,0.000018951987,0.000018693398,0.00001977005,0.00001901468,0.000019543098,0.000018878227,0.00002014425,0.000018749119,0.000018745168,0.000018295654,0.000019537581,0.000018690973,0.00001917414,0.000018529718,0.000019862156,0.000018755663,0.000018956323,0.000018676737,0.000019787458,0.000019091849,0.000019686366,0.000018991139,0.000020271556,0.000018752606,0.000018660643,0.000018114179,0.0000193453,0.000018515038,0.000018975894,0.000018303594,0.000019757346,0.000018587078,0.000018905685,0.000018449857,0.000019832516,0.00001912638,0.000019894915,0.00001896269,0.000020364,0.000019016674,0.000019503794,0.000018950233,0.000020366933,0.000019372606,0.000019953171,0.000019086841,0.000020298232,0.000019244593,0.000019762849,0.000019284405,0.000020473726,0.00002004615,0.000021036914,0.000020175434,0.000021429147,0.000020017076,0.000020366291,0.000019468485,0.000020606496,0.000019888881,0.000020342162,0.000019409461,0.000020567151,0.000019333129,0.000019517805,0.000018998131,0.000020155665,0.000019770125,0.000020625448,0.000019478868,0.000020578924,0.000019014824,0.000019461248,0.000018505347,0.000020000169,0.000019224251,0.000019829453,0.000018004866,0.000019027158,0.000018646038,0.000019558145,0.000019308127,0.000020426374,0.00002065464,0.000021768634,0.000021555688,0.000022346736,0.000023360844,0.000025519525,0.000025037953,0.000017626462,0.000011513709,0.000013673752],[0.000015878548,0.00001702855,0.000012827549,0.00001856743,0.000031994347,0.00003577618,0.000031801006,0.00002521082,0.000022855618,0.000021835476,0.000021569756,0.000019979982,0.000020445652,0.0000197712,0.000020568486,0.000019882851,0.000021076072,0.000020729309,0.000021374935,0.000019817391,0.000021243537,0.000020873626,0.000021666569,0.000019972207,0.000020589348,0.000019632109,0.000019988252,0.000018682045,0.000019925808,0.000019709114,0.00002087958,0.00001942196,0.000020359319,0.000019605222,0.000020609208,0.000019461173,0.000021099864,0.000020572174,0.00002169175,0.000020038982,0.000020952004,0.000020109337,0.00002068464,0.000018896762,0.000019959927,0.000019653387,0.000020619902,0.000019392774,0.00002035045,0.00001975742,0.000020647825,0.000018917372,0.00002013891,0.000019776027,0.00002102526,0.000019573725,0.000020668787,0.000020013162,0.00002065915,0.000018703062,0.000019843223,0.000019596493,0.000020661317,0.000019246907,0.000020211522,0.000019676436,0.000020622872,0.00001882117,0.000020072473,0.000019693764,0.000020894577,0.000019354879,0.000020483687,0.00001982272,0.000020509295,0.000018511877,0.0000196969,0.000019486206,0.000020577707,0.000019117648,0.000020178168,0.000019553725,0.000020505478,0.000018765182,0.00002008107,0.000019690233,0.000020936142,0.000019405297,0.000020530037,0.000019855357,0.000020549054,0.00001853951,0.000019711275,0.000019514697,0.00002060453,0.000019161562,0.00002021,0.000019560459,0.00002049588,0.000018774705,0.000020087946,0.000019691022,0.000020935506,0.000019419553,0.000020543177,0.00001985515,0.000020552563,0.00001854248,0.00001971073,0.000019514177,0.00002060054,0.000019156794,0.000020202968,0.000019559244,0.000020502037,0.000018785378,0.00002009772,0.00001970744,0.000020962356,0.00001945362,0.000020568703,0.000019907136,0.000020602802,0.000018588282,0.000019737345,0.000019530355,0.000020615755,0.000019175493,0.000020218502,0.000019568442,0.000020503076,0.000018782495,0.000020088559,0.00001969752,0.000020934986,0.000019422405,0.000020543472,0.000019855755,0.000020541944,0.00001853334,0.000019708343,0.00001950945,0.000020601487,0.00001916065,0.000020207051,0.000019562007,0.000020506164,0.000018774293,0.000020090398,0.000019704321,0.00002095576,0.000019429537,0.000020539297,0.00001985335,0.00002054888,0.000018541401,0.000019708887,0.000019516167,0.000020601132,0.00001915548,0.000020199499,0.000019565849,0.000020509295,0.000018777642,0.000020087486,0.000019698215,0.000020931813,0.000019406149,0.000020528683,0.000019859732,0.00002053924,0.000018537741,0.000019704792,0.000019515554,0.000020591233,0.00001913182,0.000020183863,0.000019559135,0.000020504189,0.00001875409,0.000020069008,0.00001967484,0.00002098842,0.00001952501,0.000020633594,0.000019965808,0.00002053736,0.000018505294,0.00001952745,0.00001937998,0.000020392004,0.000018957391,0.000019942403,0.00001942083,0.00002041553,0.000018509336,0.000019916803,0.000019561501,0.000021136699,0.000019557194,0.000020669258,0.000019893378,0.000020560228,0.000019246156,0.00002038584,0.00002021025,0.000021064336,0.000019997613,0.000020595553,0.000019915473,0.000020463849,0.000019435985,0.000020502604,0.00002031171,0.000021548803,0.000020732155,0.00002156451,0.000021101874,0.000021484107,0.000020465117,0.000020934587,0.000020872749,0.00002161118,0.000020527215,0.000020971154,0.000020222049,0.000020607597,0.00001922926,0.000020234935,0.000019769992,0.0000211263,0.000019989471,0.000020978376,0.000020131018,0.000020545725,0.0000193224,0.000020028972,0.000020067266,0.00002121936,0.000019825178,0.000019596082,0.000018868832,0.00001964728,0.000019131836,0.000019902638,0.000020339583,0.000020915091,0.000020864012,0.000020972733,0.000021438405,0.00002444966,0.000024750694,0.000025257797,0.000016551947,0.000011089274,0.00001312319],[0.000015867483,0.000017593427,0.000015369827,0.000021402575,0.00003200515,0.00003130056,0.000027004431,0.00002371435,0.00002112779,0.00002086439,0.000019591113,0.00002000263,0.00001913689,0.000019790687,0.000019003493,0.000020021485,0.000019808964,0.000020871776,0.000019578803,0.000019764093,0.000019674615,0.000020729625,0.000019717008,0.00001982102,0.000018959525,0.000019562118,0.000018637096,0.000018632742,0.000018346323,0.000019438748,0.000018739289,0.000019235658,0.00001870249,0.000019789364,0.000018966486,0.000019590925,0.00001945605,0.00002075237,0.00001965661,0.000020043703,0.000019303228,0.000020241807,0.000018945517,0.000018819772,0.000018647585,0.000019604662,0.000018992298,0.000019315714,0.00001882047,0.000019891253,0.000018928633,0.000018947685,0.000018868166,0.000019752693,0.000019223684,0.000019418589,0.000019055287,0.000019933732,0.000018898329,0.00001868331,0.000018670184,0.000019674879,0.00001892515,0.00001915272,0.000018627305,0.000019687172,0.000018774095,0.00001885919,0.000018792995,0.000019747098,0.000019028557,0.000019210946,0.000018822966,0.000019728031,0.00001873082,0.000018471828,0.000018437686,0.000019495743,0.00001874819,0.000019045296,0.000018539722,0.000019653782,0.000018707702,0.00001883974,0.000018767741,0.000019788327,0.000019055686,0.00001926417,0.000018858289,0.00001977829,0.000018764214,0.000018503246,0.000018459361,0.000019519592,0.000018778663,0.000019085586,0.000018573486,0.000019669795,0.000018703313,0.000018828676,0.000018763662,0.000019790667,0.000019055942,0.000019268375,0.0000188666,0.000019789233,0.00001876087,0.000018503972,0.00001846216,0.000019521081,0.000018772682,0.000019080126,0.000018574761,0.000019673866,0.000018707095,0.000018827724,0.00001877218,0.000019798445,0.00001907736,0.000019290052,0.00001889705,0.00001982949,0.000018826611,0.000018552862,0.00001848168,0.000019523559,0.00001879484,0.00001909438,0.000018584544,0.000019667299,0.000018710109,0.000018833003,0.000018766883,0.000019782552,0.000019062267,0.000019272822,0.000018866205,0.00001977776,0.000018752535,0.000018486984,0.000018452638,0.000019513116,0.000018774042,0.000019083202,0.000018572264,0.000019666793,0.000018708182,0.00001883092,0.000018767258,0.000019791196,0.00001907456,0.000019284002,0.000018867717,0.000019778912,0.000018758974,0.000018498678,0.000018458675,0.000019512092,0.000018775958,0.000019075596,0.000018570689,0.000019666193,0.000018711751,0.000018828585,0.000018769406,0.000019785177,0.000019059013,0.000019256931,0.000018861636,0.000019777195,0.000018755754,0.000018486686,0.000018446744,0.000019515142,0.000018769872,0.000019061776,0.000018550829,0.000019658843,0.000018695377,0.000018827599,0.000018760458,0.000019797084,0.000019153651,0.000019417237,0.000018993855,0.000019907422,0.000018813867,0.000018479193,0.000018341687,0.00001937462,0.000018596083,0.000018882585,0.000018327803,0.000019514995,0.000018537652,0.0000186955,0.000018553925,0.000019885412,0.00001909988,0.000019657942,0.000019027177,0.000020057356,0.00001896419,0.000019247365,0.000019214134,0.000020525475,0.000019491987,0.00002015282,0.000019504,0.000020360854,0.000019261945,0.000019769539,0.000019765015,0.000020869604,0.000020239375,0.000021055801,0.00002059618,0.000021338072,0.000020151148,0.000020185518,0.000019703813,0.000020503308,0.000019810872,0.000020057223,0.000019381698,0.000019979656,0.000019063411,0.000019075433,0.000018807983,0.000019679308,0.00001929997,0.000019889452,0.000019508054,0.000020133322,0.00001923652,0.000019274643,0.000018780238,0.00001974433,0.000019172292,0.000019378223,0.000018497549,0.000018903647,0.000019186504,0.000019790818,0.000019873924,0.000021098434,0.00002085488,0.000021720338,0.000021247854,0.000022329034,0.000023414932,0.000027025892,0.000025711015,0.000016881184,0.000010461579,0.000013300666],[0.000016209424,0.000017393138,0.000014089349,0.000023432936,0.000030334068,0.000029798168,0.00002645187,0.00002344123,0.000021779575,0.000021132504,0.000021013033,0.000020325971,0.000020990561,0.000020048215,0.000020383643,0.000019976113,0.000021094349,0.000020733103,0.000020904663,0.000020050644,0.000021094109,0.000021277398,0.000021150792,0.000020068128,0.000020564661,0.000020421954,0.000020666106,0.000019528567,0.000020046398,0.000020081223,0.000020290647,0.000019398747,0.000020445494,0.000020283855,0.000021025442,0.000020163336,0.00002126472,0.000021114858,0.000021364176,0.000020303363,0.000021114192,0.000020779918,0.000021025942,0.000019628851,0.000020281032,0.000020427018,0.000020505187,0.000019704716,0.000020550957,0.000020434987,0.000020895533,0.000019719266,0.000020603844,0.000020592135,0.00002081548,0.00001990353,0.000020670186,0.000020547468,0.000020977333,0.00001955669,0.000020447833,0.000020521971,0.000020627102,0.000019583396,0.000020294478,0.000020222435,0.000020746296,0.000019620335,0.000020643472,0.000020505851,0.0000207118,0.000019694777,0.000020447484,0.00002032853,0.000020765498,0.0000194167,0.000020284262,0.000020290761,0.000020464006,0.000019426221,0.000020266743,0.000020164662,0.000020692176,0.000019616351,0.000020630563,0.000020526491,0.000020776886,0.000019740715,0.000020507454,0.000020385685,0.00002082652,0.000019443643,0.000020302201,0.000020323898,0.000020493808,0.000019451933,0.00002031357,0.00002018061,0.00002067896,0.000019599427,0.000020615282,0.000020532818,0.000020782554,0.000019744142,0.000020514202,0.000020396476,0.000020826581,0.000019435596,0.00002030561,0.00002032632,0.00002049031,0.000019443847,0.000020305803,0.000020175376,0.00002067466,0.000019602474,0.00002061597,0.000020539397,0.00002078973,0.000019769577,0.00002054063,0.00002043678,0.000020885052,0.000019491095,0.000020304544,0.000020320564,0.000020500944,0.00001947001,0.000020310239,0.00002018546,0.000020682786,0.000019605428,0.000020609266,0.000020524632,0.00002077546,0.000019751298,0.000020509195,0.0000203824,0.000020812959,0.000019432613,0.000020295425,0.000020315409,0.000020486657,0.000019454012,0.000020311516,0.000020178377,0.000020680736,0.000019605428,0.000020617505,0.000020532034,0.000020787767,0.00001976034,0.000020515632,0.000020386753,0.00002081943,0.000019436524,0.000020298272,0.000020320933,0.000020487301,0.00001945492,0.000020306248,0.000020182631,0.000020686337,0.00001960468,0.000020619784,0.000020532485,0.000020777738,0.000019744237,0.000020505498,0.000020387552,0.000020812246,0.00001943454,0.000020287782,0.000020319016,0.000020481793,0.000019450894,0.000020274108,0.000020170624,0.000020675468,0.000019603838,0.000020631842,0.000020547861,0.000020837506,0.000019888692,0.000020631232,0.00002052839,0.000020842295,0.000019464924,0.000020139698,0.000020181727,0.000020275675,0.00001931925,0.000019980474,0.0000199652,0.000020567308,0.0000194678,0.00002053742,0.00002051031,0.000020892903,0.000019787836,0.000020855417,0.00002052708,0.000020982998,0.000019954789,0.000021184786,0.000020939078,0.000021087328,0.0000202409,0.000021141132,0.000020619626,0.000020969874,0.00002034065,0.000021566566,0.000021406066,0.000021678887,0.000021207325,0.000022232292,0.000022007342,0.000021908398,0.00002099657,0.00002137465,0.000021300886,0.000021101672,0.00002028879,0.000020757021,0.000020519055,0.000020617425,0.000019844454,0.000020621574,0.000020451149,0.000020863674,0.000020233065,0.000021317202,0.000021087148,0.000021528796,0.000020516785,0.00002068251,0.000020793676,0.000020337353,0.000020139525,0.00001952922,0.000019983374,0.000020574056,0.000020790245,0.000021022715,0.000021691792,0.000021317694,0.000021714146,0.000021453581,0.00002190238,0.000024336141,0.0000252272,0.000026058624,0.000017637913,0.000010885343,0.000013184444],[0.000015646801,0.000015239389,0.000014137641,0.000020831983,0.000029286586,0.000028528197,0.000023718829,0.00002237721,0.000019669418,0.000020429903,0.000019561297,0.000020520856,0.000019148265,0.000019827958,0.000019078852,0.000019979941,0.00001933748,0.000020606809,0.000019418589,0.000020241807,0.000019713343,0.000020905898,0.000019728219,0.000019816693,0.000019141655,0.000020319092,0.000019712477,0.000020045138,0.000019280305,0.000019982592,0.000018909994,0.000019128425,0.000018561375,0.000019942252,0.000019304885,0.000020239859,0.000019533372,0.000020547606,0.000019526518,0.000019919176,0.000019208253,0.00002034525,0.000019428684,0.000019620242,0.000018913997,0.00001978563,0.000018934643,0.000019412202,0.000018752122,0.000020139083,0.000019199573,0.000019774989,0.00001917242,0.000020129117,0.000019389334,0.00001967666,0.000019171452,0.00002026081,0.000019570814,0.000019530336,0.000019053088,0.00001991893,0.000019152556,0.000019386653,0.000018612265,0.00002000095,0.000019127294,0.000019752448,0.000019215417,0.000020150303,0.00001929147,0.000019517378,0.0000189694,0.000020067151,0.000019382604,0.000019362853,0.00001894989,0.000019729838,0.000018941308,0.00001925932,0.000018537812,0.000019948739,0.000019076415,0.000019741186,0.000019168929,0.00002013964,0.000019281317,0.000019548615,0.000018995142,0.000020106843,0.000019402041,0.00001937863,0.000018953126,0.00001973921,0.000018955494,0.000019283836,0.000018561163,0.000019967067,0.000019077524,0.000019725454,0.000019152027,0.000020133839,0.000019274568,0.00001954295,0.000018988458,0.000020105674,0.000019386393,0.000019359899,0.000018946565,0.000019742805,0.00001894794,0.000019277584,0.000018556702,0.000019968742,0.000019083367,0.000019734278,0.000019158713,0.00002014012,0.000019290088,0.00001957199,0.000019031188,0.000020169009,0.00001947183,0.000019435949,0.000018972058,0.000019745195,0.000018973706,0.000019299197,0.000018572653,0.000019975047,0.00001908475,0.000019721185,0.000019151406,0.000020122208,0.000019280673,0.000019553538,0.000019002915,0.000020104657,0.000019397232,0.000019369929,0.000018953866,0.000019734636,0.000018952385,0.000019284369,0.000018561323,0.000019963334,0.000019078434,0.000019725792,0.000019159334,0.00002012887,0.000019281795,0.000019552755,0.000018998295,0.000020102261,0.000019397416,0.00001936662,0.000018955168,0.000019738533,0.000018960374,0.000019283285,0.000018566652,0.000019967447,0.000019088626,0.000019732772,0.000019169604,0.000020136222,0.00001928527,0.000019544217,0.00001899987,0.000020108244,0.000019419998,0.00001938377,0.000018963086,0.00001974369,0.000018962055,0.000019270747,0.000018539933,0.00001994849,0.000019067467,0.000019723346,0.000019168727,0.000020155492,0.000019391071,0.000019696243,0.000019161453,0.000020296144,0.000019569376,0.000019455309,0.000018940296,0.000019668538,0.000018853596,0.000019117155,0.000018343033,0.000019681522,0.00001878135,0.000019399951,0.00001893013,0.000020052576,0.000019154728,0.00001949299,0.000018808916,0.000019996145,0.000019265122,0.000019635609,0.000019203271,0.000020305222,0.00001937294,0.000019895826,0.00001911156,0.000020343252,0.000019652769,0.00002042363,0.000019886871,0.000020870959,0.000020233643,0.000020823702,0.000020316436,0.000021486872,0.000020815283,0.000021074444,0.000020059824,0.000020814568,0.000019982992,0.000020180649,0.000019211038,0.00002023129,0.000019572923,0.000020191506,0.000019504929,0.000020282461,0.000019761266,0.000020018811,0.000019677149,0.000020743784,0.000020641583,0.000021229564,0.000020469295,0.000021092479,0.000020022402,0.00001988693,0.000018920115,0.000019628196,0.000020431384,0.00002061186,0.000020479098,0.00002098962,0.000021007623,0.000021782234,0.000021057145,0.000021434622,0.00002270065,0.00002552853,0.00002514026,0.00001687716,0.000010697539,0.000013385133],[0.000015657995,0.000013555417,0.0000131685865,0.000019206787,0.00003166335,0.000030933872,0.000027161435,0.000022843655,0.000021183392,0.000020830214,0.000021164087,0.000020061067,0.000020509744,0.000019495259,0.000019881314,0.000019033585,0.000020363417,0.000020023243,0.000021238271,0.000019672196,0.000021071006,0.000020687521,0.00002106239,0.000019737741,0.000020372274,0.000019825216,0.000020953263,0.000019752504,0.000020759793,0.000020054735,0.00002045431,0.000018902494,0.000019901216,0.000019426036,0.000020761121,0.000019511925,0.000020908112,0.000020272872,0.000021013315,0.000019712385,0.000020485368,0.000019990786,0.000021021553,0.00001928996,0.000020345986,0.000019755933,0.000020533582,0.000019156922,0.00002008946,0.00001964872,0.000020880334,0.000019273024,0.000020456942,0.000020043168,0.000020784852,0.000019679794,0.000020458367,0.000020103718,0.000021251399,0.000019397361,0.00002037956,0.000019877372,0.000020746573,0.000019296785,0.000020098256,0.000019644787,0.000020936763,0.000019258658,0.000020497913,0.000020079307,0.000020750254,0.000019530578,0.00002030195,0.000019917507,0.000021013535,0.000019245163,0.000020280373,0.000019762849,0.000020569916,0.00001912361,0.000020040397,0.00001958013,0.000020840289,0.000019203857,0.000020454114,0.000019999063,0.000020762427,0.000019536279,0.000020327425,0.000019945808,0.000021053493,0.000019263654,0.00002029504,0.00001977378,0.000020589034,0.00001914642,0.000020061296,0.00001959384,0.000020822668,0.00001919417,0.00002042811,0.00001998444,0.000020756883,0.00001952894,0.00002031886,0.000019940997,0.000021045062,0.000019243309,0.000020281881,0.000019774367,0.000020588639,0.00001913961,0.00002005881,0.000019597557,0.000020824753,0.000019203108,0.000020430116,0.000019985202,0.000020767497,0.00001955917,0.00002036437,0.000020006539,0.000021130994,0.000019325773,0.000020321222,0.000019781308,0.000020601248,0.0000191688,0.000020067937,0.000019607953,0.000020826024,0.000019196643,0.000020425654,0.000019989415,0.000020756368,0.000019545187,0.000020332622,0.00001995119,0.000021049898,0.00001925728,0.0000202956,0.000019777535,0.000020588228,0.000019146346,0.000020062003,0.000019593765,0.000020824951,0.00001920243,0.00002043602,0.00001998705,0.000020760684,0.000019541776,0.000020325468,0.000019944686,0.000021051002,0.000019260071,0.000020290589,0.000019781666,0.000020596475,0.000019151114,0.000020062444,0.000019603895,0.00002083866,0.000019216388,0.000020448984,0.000020001333,0.00002076415,0.00001954459,0.00002032605,0.000019955036,0.000021070848,0.000019294688,0.000020308398,0.000019782457,0.000020588719,0.00001913461,0.000020032314,0.00001957128,0.000020821357,0.000019183686,0.00002042439,0.000020003354,0.000020817128,0.000019665762,0.000020454698,0.00002009628,0.000021180927,0.000019420182,0.000020247251,0.00001967805,0.000020351981,0.000018958874,0.00001974934,0.000019210764,0.000020409749,0.00001872714,0.000020067077,0.000019740339,0.00002061943,0.000019211662,0.000020231038,0.000019677544,0.000021040083,0.00001926823,0.000020522088,0.00001996202,0.00002071423,0.000019429723,0.00002034812,0.000019812194,0.000020925147,0.000019739718,0.000020847028,0.000020366213,0.000021220778,0.000020547548,0.00002134477,0.000021091151,0.000022623068,0.000021024438,0.000021482345,0.000020749363,0.000021379257,0.00002014254,0.00002046153,0.000019878244,0.000020852516,0.000019674633,0.000020532425,0.000019964002,0.000020703921,0.000019991474,0.000020674326,0.000020518664,0.000022151678,0.000021051866,0.000021760392,0.000021257034,0.000021311005,0.000019980647,0.000019588477,0.000019438488,0.000020431637,0.000020089747,0.000020656726,0.000020199152,0.00002054688,0.000020505831,0.00002004594,0.000020306734,0.000022540135,0.00002402823,0.000026157944,0.000017001386,0.000011158834,0.000012886512],[0.00001627434,0.000012887804,0.000013658216,0.0000193544,0.00003288807,0.000031451364,0.000025231146,0.000022399308,0.000019635236,0.000020231153,0.000019068884,0.000019893796,0.000018952729,0.000019541458,0.000018334027,0.000019050129,0.000018750585,0.000020212314,0.000019100444,0.000019807529,0.000019634504,0.000020994445,0.000019743728,0.000020077852,0.000018988658,0.000019871952,0.000018991173,0.000019390794,0.00001912266,0.000019840878,0.000018809329,0.000019032477,0.000018330355,0.000019671052,0.000018938237,0.000019761417,0.000019548186,0.000020740817,0.000019517136,0.00001995945,0.000019093906,0.000020157875,0.00001909691,0.000019312343,0.000019011759,0.000019859392,0.000018947017,0.000019424739,0.000018794177,0.000020217652,0.000019119325,0.000019765996,0.000019408499,0.000020635522,0.000019670846,0.000020232215,0.0000195629,0.000020596062,0.000019562565,0.00001965292,0.00001940898,0.000020171932,0.000019239236,0.000019723366,0.000019045186,0.00002028753,0.00001920188,0.000019796707,0.000019510342,0.000020694999,0.000019646099,0.000020139314,0.00001947781,0.000020471267,0.00001941235,0.000019494348,0.000019282124,0.000020061603,0.00001905456,0.000019498513,0.000018927478,0.000020217769,0.00001912507,0.000019758005,0.000019466946,0.000020666577,0.000019625855,0.000020145288,0.000019468933,0.000020485093,0.000019420218,0.000019497658,0.000019279809,0.000020059117,0.000019063611,0.000019508576,0.000018929119,0.00002020549,0.00001910079,0.000019736122,0.000019453102,0.000020654423,0.000019616293,0.000020139698,0.0000194634,0.000020481499,0.000019408333,0.000019484478,0.000019269275,0.000020064836,0.00001905816,0.000019499386,0.000018923,0.000020203177,0.000019104726,0.000019742316,0.000019458723,0.000020659701,0.000019631003,0.000020163969,0.000019503144,0.000020545607,0.000019488232,0.000019553743,0.00001930575,0.000020060532,0.000019075887,0.00001952665,0.000018946132,0.000020213854,0.000019109317,0.000019732754,0.000019453175,0.000020652176,0.000019620578,0.000020141812,0.00001947103,0.000020482203,0.000019420979,0.00001948738,0.000019277915,0.000020062884,0.000019067975,0.00001950828,0.0000189317,0.000020211117,0.000019111085,0.000019742258,0.00001946071,0.000020655269,0.000019622525,0.000020142366,0.00001946756,0.000020478668,0.000019419756,0.00001949037,0.00001928345,0.000020067764,0.00001907405,0.000019511943,0.000018941038,0.000020219852,0.000019127112,0.000019755802,0.000019474057,0.000020661455,0.000019628495,0.000020141388,0.000019474319,0.000020483023,0.00001944268,0.000019513544,0.000019299989,0.00002006254,0.000019051979,0.000019485129,0.000018908713,0.000020197862,0.000019098987,0.000019716672,0.000019450652,0.00002066642,0.000019730778,0.000020285557,0.000019612291,0.000020643749,0.000019549248,0.000019570309,0.000019213732,0.000019886835,0.000018858202,0.000019274348,0.000018587927,0.00001982792,0.000018700834,0.000019215087,0.000019007626,0.000020309966,0.00001928433,0.000019720506,0.000019129557,0.00002025969,0.000019223518,0.000019361802,0.000019101373,0.00002007728,0.000018978844,0.000019435467,0.000019007335,0.000020125914,0.000019248082,0.00001994111,0.000019797972,0.000020846033,0.000020109854,0.00002065517,0.000020164296,0.000021158196,0.000020428324,0.000020530742,0.000019915302,0.00002042361,0.000019548168,0.000019805186,0.000019066574,0.000019992063,0.000019214043,0.000019763584,0.000019482955,0.000020471578,0.000019947729,0.000020334715,0.00001975307,0.000020646703,0.000019990253,0.000020543785,0.000020153244,0.000020906216,0.000020226717,0.000019949117,0.000018821782,0.0000193276,0.000019643963,0.00001997897,0.000020095898,0.000020329906,0.000020478024,0.000021386904,0.00002079431,0.00002141121,0.000021907834,0.000024930067,0.00002537968,0.000017821856,0.000010735108,0.00001335862],[0.000016064292,0.000012729813,0.000011708123,0.000020193027,0.0000327252,0.00003290156,0.00002736885,0.00002351079,0.000021534363,0.000020989863,0.000020664984,0.000020102912,0.000020619686,0.000019886986,0.000020062675,0.000019588271,0.000020507161,0.000020260366,0.000020508041,0.000019790725,0.000021205282,0.0000211782,0.0000213676,0.000020436233,0.000020594553,0.000020244375,0.00002020158,0.00001938486,0.00002010667,0.00002030288,0.000020599364,0.000019650764,0.000020142252,0.00002024756,0.000020795243,0.000019958308,0.000021179068,0.000020892485,0.000021203321,0.000020376083,0.00002071674,0.000020559875,0.000020776273,0.000019744311,0.000020358251,0.000020418527,0.000020652373,0.000019984916,0.00002066589,0.000020698692,0.000021041047,0.0000199363,0.000021041287,0.000020948646,0.00002135114,0.000020681327,0.000021205928,0.000020921114,0.000021036092,0.000020012207,0.000020718062,0.000020699776,0.000020957119,0.000020200077,0.000020903448,0.00002072502,0.000021053653,0.000019925143,0.000021009208,0.000020980155,0.000021314867,0.000020548801,0.000021131134,0.000020776391,0.00002088354,0.000019836734,0.000020574194,0.00002059675,0.000020818437,0.000020010624,0.000020755639,0.000020679276,0.000020990543,0.000019884008,0.000021028469,0.000020907572,0.000021319238,0.000020529076,0.00002112642,0.0000207821,0.000020906517,0.00001984667,0.00002056986,0.00002060958,0.000020825944,0.000020017515,0.000020750827,0.000020674366,0.000020961757,0.000019868748,0.000021018684,0.000020894757,0.000021318687,0.000020528942,0.00002112519,0.00002077982,0.00002090554,0.000019835032,0.00002056617,0.000020613628,0.000020827852,0.000020013544,0.00002075077,0.000020675292,0.000020957179,0.000019871328,0.00002102494,0.000020895155,0.00002131942,0.000020545744,0.00002115747,0.000020834546,0.000020963595,0.000019885752,0.000020570602,0.00002060508,0.000020831169,0.000020037225,0.000020766349,0.00002068178,0.000020960537,0.000019870417,0.00002101119,0.000020896987,0.000021305761,0.000020527394,0.000021132648,0.000020786203,0.000020902986,0.000019840007,0.000020565425,0.000020612018,0.000020830632,0.000020021867,0.000020753976,0.000020677895,0.000020968115,0.000019873372,0.000021021131,0.000020899857,0.000021319502,0.000020530564,0.000021123074,0.000020778432,0.000020902009,0.00001984506,0.000020571095,0.00002061888,0.000020832222,0.00002002391,0.000020762409,0.000020687381,0.000020977475,0.000019883173,0.000021032401,0.000020907333,0.00002131765,0.000020536203,0.000021124928,0.000020782196,0.000020900556,0.000019865169,0.000020575626,0.000020609405,0.00002081282,0.000019996012,0.000020723359,0.000020667781,0.000020952162,0.000019856285,0.000020982918,0.000020928697,0.000021354439,0.000020660036,0.000021242748,0.000020884736,0.00002088342,0.00001982034,0.000020371983,0.000020398753,0.000020541022,0.000019729612,0.00002031049,0.000020269894,0.000020526219,0.00001944585,0.000020495783,0.000020645797,0.00002102502,0.000020165471,0.000020910105,0.00002062073,0.000020865664,0.000019672083,0.00002068833,0.000020586951,0.00002081141,0.00002001175,0.000020834605,0.000020540356,0.000020741132,0.000019994734,0.000021108799,0.000020958638,0.000021324648,0.000021156018,0.000021583335,0.000021405656,0.000021270094,0.000020598596,0.00002080768,0.000020876232,0.00002093299,0.00002026249,0.000020764744,0.00002077859,0.000020672158,0.000019852878,0.000020841422,0.000020799744,0.000021244145,0.000020753874,0.000021136939,0.000020706982,0.000020731719,0.000019933543,0.000020239626,0.000020810261,0.000020666577,0.000020001047,0.00001906603,0.000019259962,0.000019162751,0.000019821115,0.000019782005,0.000020551584,0.000020768586,0.000021316515,0.000021177313,0.000021639022,0.00002310032,0.000024175215,0.000025561296,0.000018479775,0.000010985762,0.000013303001],[0.000015734142,0.0000127864505,0.000011560094,0.00001678277,0.000028299932,0.000032818174,0.000026108399,0.000023975903,0.000020472653,0.000020959778,0.000019323359,0.000020068856,0.000018699799,0.000019682384,0.00001885581,0.000019928677,0.000019094216,0.000020395719,0.000018902565,0.000019837831,0.000019294339,0.000021048994,0.000019580559,0.00002058915,0.000018949926,0.000020287336,0.000018681421,0.000019318864,0.000018790306,0.000020368507,0.000019411238,0.00002011626,0.000018597095,0.000019959489,0.000018792618,0.000019720734,0.000019151514,0.000020705065,0.000019457628,0.000020345191,0.000018816756,0.000020266414,0.000018738376,0.000019369372,0.000018608927,0.000020037665,0.00001910028,0.000019933732,0.000018720692,0.00002014667,0.0000186473,0.000019442401,0.000018803536,0.000020436195,0.000019426554,0.000020581356,0.000019216095,0.000020656433,0.00001884044,0.000019561148,0.000018875582,0.000020316535,0.000019168527,0.000020030748,0.000018943349,0.000020357786,0.000018779701,0.000019520057,0.000018793497,0.00002037047,0.000019277915,0.000020420279,0.000019102594,0.00002055376,0.000018713017,0.000019449077,0.000018755503,0.000020229128,0.000019046694,0.00001984154,0.000018797242,0.000020243293,0.000018720924,0.000019460207,0.000018745526,0.000020307583,0.000019234283,0.000020375577,0.00001907094,0.000020536147,0.000018695768,0.000019422774,0.000018741468,0.00002022992,0.000019039267,0.000019829982,0.000018784125,0.000020217884,0.00001868935,0.00001942648,0.000018727942,0.000020294032,0.00001922647,0.000020364176,0.00001906394,0.000020525222,0.000018680887,0.000019407018,0.000018732355,0.00002022882,0.000019032841,0.00001982104,0.000018774366,0.00002020549,0.000018680354,0.0000194222,0.000018725872,0.000020291516,0.000019231697,0.000020382555,0.00001908899,0.000020575784,0.000018736982,0.000019447667,0.000018735267,0.00002022257,0.00001905049,0.000019849791,0.000018794948,0.000020221547,0.000018691062,0.00001943026,0.000018732355,0.000020297537,0.000019230889,0.000020365613,0.000019070958,0.000020533875,0.000018681849,0.000019406907,0.000018738305,0.000020226795,0.000019036488,0.000019833293,0.000018787834,0.000020218424,0.000018691153,0.000019427072,0.000018728568,0.000020293277,0.000019229752,0.00002036633,0.000019066574,0.000020529409,0.000018690047,0.00001941931,0.000018744631,0.000020237252,0.000019043915,0.000019835203,0.000018793711,0.000020226042,0.000018701958,0.000019439378,0.000018741575,0.000020304971,0.000019234429,0.000020377676,0.000019079398,0.000020545076,0.000018709949,0.000019445366,0.000018759027,0.000020245707,0.000019041026,0.000019826484,0.000018774474,0.00002022579,0.000018708395,0.00001943339,0.000018722943,0.000020324382,0.000019327083,0.000020539848,0.000019215435,0.000020717529,0.000018735338,0.000019426072,0.000018636083,0.000020137431,0.00001891418,0.000019665107,0.000018557552,0.000019987203,0.000018509265,0.00001913222,0.00001843577,0.000019964991,0.000019066121,0.000020090802,0.000018915982,0.00002040276,0.00001872823,0.000019490091,0.00001874903,0.000020385314,0.000019093815,0.000019953151,0.00001880047,0.000020265159,0.000018853327,0.000019559338,0.000018826018,0.000020351865,0.000019705807,0.000021134158,0.000019913252,0.000021422362,0.00001957464,0.00002036297,0.000019301775,0.000020794627,0.000019741394,0.000020602349,0.000019340414,0.000020834426,0.000019276444,0.000019806168,0.00001898748,0.000020559659,0.000019925428,0.00002105321,0.000019638905,0.000020909925,0.000019092631,0.000019900664,0.00001883593,0.000020613374,0.000019823232,0.000020321882,0.000018450895,0.000019267549,0.000018846567,0.000019327948,0.000019096346,0.000020001771,0.000020528178,0.000021710584,0.000021510388,0.000022436016,0.000023813773,0.000025299983,0.000024100795,0.000016566159,0.000011042924,0.000013358175],[0.000015531286,0.000012303523,0.000010146398,0.000014881548,0.00002720535,0.000035830533,0.000030456362,0.000025096664,0.000022491156,0.000021668986,0.00002130495,0.000019567882,0.000020262203,0.00001937002,0.00002012476,0.000019109353,0.000020598794,0.00002015359,0.000020764763,0.0000190964,0.00002068975,0.000020302723,0.00002129721,0.000019729347,0.000020525515,0.000019516892,0.000019850264,0.00001887128,0.000020187194,0.000020204603,0.000021235233,0.000019848449,0.000020264906,0.000019488976,0.000020026813,0.000018965638,0.000020478863,0.00002025915,0.00002128257,0.00001980679,0.000020478336,0.000019864165,0.000020253681,0.00001882977,0.000019848618,0.000019865698,0.00002066317,0.000019506455,0.000020037893,0.000019265399,0.000019638324,0.000018370412,0.000019728408,0.000019644076,0.000020652551,0.000019775951,0.00002053454,0.000019750358,0.000019892144,0.000018744595,0.000019931147,0.000019832421,0.00002029378,0.00001932806,0.000019962858,0.000019354824,0.000019641264,0.000018351922,0.000019591223,0.000019483048,0.000020351827,0.000019499053,0.00002031082,0.000019580315,0.000019762885,0.000018613986,0.000019798785,0.000019735257,0.000020169296,0.000019168234,0.000019808322,0.00001925504,0.00001956292,0.000018305165,0.000019548821,0.000019434281,0.000020336169,0.000019474113,0.00002029564,0.000019565794,0.000019763753,0.000018596564,0.000019794821,0.00001974271,0.000020173778,0.000019164067,0.000019804127,0.000019240098,0.000019533372,0.000018282799,0.000019538253,0.000019421515,0.000020327232,0.000019469007,0.000020286467,0.000019553612,0.000019750865,0.000018583427,0.000019785855,0.000019737741,0.000020165393,0.000019151534,0.000019789271,0.000019230596,0.000019520356,0.000018272985,0.000019535551,0.000019424979,0.000020329868,0.000019480838,0.00002030441,0.000019585881,0.000019790195,0.000018611412,0.000019784517,0.00001973055,0.000020180629,0.00001918288,0.000019805733,0.000019241474,0.000019531528,0.000018283217,0.0000195379,0.000019431334,0.00002033173,0.000019473222,0.000020285384,0.000019555646,0.000019749057,0.000018582701,0.000019786043,0.000019741412,0.000020168316,0.000019169112,0.000019807208,0.000019240611,0.000019525849,0.000018281718,0.000019537452,0.00001942585,0.000020326184,0.00001947365,0.000020291382,0.000019560475,0.000019758645,0.000018599845,0.000019799332,0.000019749774,0.000020180169,0.000019173718,0.000019809322,0.000019248393,0.000019538496,0.000018296054,0.000019551413,0.0000194381,0.000020338188,0.000019483123,0.000020309037,0.000019588011,0.000019786892,0.00001863132,0.000019823194,0.00001976875,0.000020189927,0.000019175364,0.000019799578,0.00001924968,0.000019540956,0.000018285536,0.000019512296,0.000019445255,0.00002041878,0.000019629168,0.000020496056,0.000019723855,0.000019823061,0.000018639976,0.00001976626,0.000019699435,0.000020043035,0.00001908908,0.000019686815,0.000019161946,0.000019426887,0.0000181256,0.00001930448,0.000019270323,0.000020274978,0.00001937318,0.000020207552,0.000019603784,0.00001999258,0.000018904946,0.000020147882,0.000019975256,0.000020639143,0.000019462064,0.000020206744,0.000019518568,0.00001970947,0.000018746563,0.00001980362,0.000019895806,0.000021068254,0.000020619036,0.000021520196,0.000021001715,0.000021133472,0.00002020312,0.000020847008,0.00002076718,0.000021393413,0.000020214435,0.000020854482,0.000020025476,0.000020309017,0.000018927332,0.00001992503,0.000019757648,0.0000209879,0.000020388172,0.00002101522,0.00002029142,0.000020322173,0.000019531939,0.000019955472,0.000020517999,0.000021261776,0.00002024843,0.000019760775,0.00001901582,0.00001941807,0.000018759116,0.000019478719,0.000019885545,0.000020584595,0.000020769992,0.000021102278,0.000021701248,0.000025121568,0.000024369654,0.000022834944,0.000015598676,0.000010638613,0.000012735216],[0.000015616986,0.000011671635,0.000010231868,0.000013354316,0.000026087593,0.000033135482,0.000027792703,0.00002436726,0.000021298876,0.000020918063,0.00001919139,0.000019337518,0.000018512814,0.000019150346,0.000018127485,0.000019007555,0.000018941868,0.000020187828,0.000018697552,0.000019141855,0.00001891481,0.000020652806,0.0000192086,0.000020180225,0.000019062085,0.000020153973,0.000018411576,0.000019184072,0.000018814657,0.000020567837,0.000019393086,0.000020090474,0.000019257941,0.000020344629,0.000018833487,0.00001962462,0.00001928448,0.000020894617,0.000019563704,0.000020357767,0.00001954023,0.000020767695,0.00001896079,0.00001937948,0.000018784789,0.000020235302,0.000019108387,0.000019684207,0.000019033458,0.000020043226,0.000018240375,0.000018947288,0.000018686036,0.000020472633,0.000019243567,0.000020528118,0.00001982463,0.000020990403,0.000018821424,0.000019645498,0.00001922383,0.000020772964,0.000019069612,0.000019837604,0.000019159992,0.00002025544,0.000018320166,0.000019106074,0.000018773182,0.000020497991,0.000019019939,0.000020380377,0.000019616948,0.00002087034,0.000018670753,0.000019547497,0.000019123263,0.000020709174,0.000018941344,0.000019676023,0.000019025072,0.000020130807,0.00001822756,0.000019048637,0.000018735089,0.000020445845,0.000018994779,0.00002034587,0.00001957113,0.000020825528,0.000018651266,0.000019495297,0.000019083292,0.000020669988,0.000018929028,0.000019651945,0.000019000596,0.000020094325,0.00001819066,0.000019002498,0.000018710449,0.000020424777,0.00001897595,0.00002032196,0.000019549585,0.000020800102,0.000018627215,0.000019475061,0.00001907696,0.000020665357,0.00001891611,0.000019642614,0.000018994326,0.000020083444,0.00001817696,0.000018992661,0.000018705061,0.000020428948,0.00001898623,0.000020340223,0.000019570738,0.00002083544,0.000018660961,0.000019503757,0.000019079034,0.000020658263,0.00001893506,0.00001966762,0.000019005325,0.000020095169,0.000018191196,0.00001900112,0.00001871466,0.000020435085,0.000018989871,0.000020335723,0.000019560588,0.000020807303,0.000018635335,0.000019478755,0.000019076688,0.000020667525,0.00001892867,0.0000196565,0.000019005724,0.00002009421,0.000018188872,0.000019003603,0.000018716783,0.000020432708,0.000018984456,0.000020331672,0.000019563311,0.000020813575,0.000018640081,0.000019490259,0.000019090901,0.000020677126,0.000018933813,0.000019663663,0.000019014498,0.000020106536,0.000018205863,0.000019021662,0.000018730854,0.000020443566,0.000018990704,0.000020343427,0.00001957843,0.00002084164,0.000018669863,0.000019525885,0.000019113764,0.000020710755,0.00001895647,0.000019666175,0.000019013192,0.00002011532,0.000018215118,0.000019027324,0.000018731997,0.000020497366,0.00001912237,0.000020550919,0.000019774292,0.000021018424,0.000018733712,0.000019605803,0.000019170904,0.00002078418,0.000018971823,0.000019664056,0.000019036905,0.000020147727,0.000018290106,0.000019100953,0.000018871568,0.000020550367,0.000019091376,0.000020391752,0.000019591074,0.000020890473,0.000018822877,0.000019854488,0.00001937571,0.000021008625,0.000019109846,0.000019987412,0.000019287698,0.000020444188,0.000018578712,0.000019432688,0.000019237292,0.000020894697,0.000019886491,0.000021598964,0.000020834983,0.000022080056,0.0000200429,0.000020784775,0.00001994754,0.00002122266,0.000019753446,0.000020289699,0.000019395065,0.000020422089,0.000018813884,0.00001950478,0.00001898004,0.0000207497,0.000019835768,0.000021554106,0.000020496525,0.000021651202,0.000019611018,0.00002061082,0.00001958928,0.0000210736,0.000019878396,0.00002025577,0.000019015713,0.000019378223,0.00001940711,0.00001981535,0.000019754783,0.00002085363,0.000020599324,0.000021595277,0.000020925963,0.000022515364,0.000023954217,0.000026508636,0.000023287175,0.00001624065,0.000010139685,0.000012985686],[0.00001534029,0.000011224914,9.09794e-6,0.000013216154,0.000023666771,0.000035133744,0.000028771798,0.000025145895,0.000022464661,0.00002154683,0.000020718635,0.000019760171,0.000020219773,0.000019710278,0.00001988196,0.000019229752,0.000020268657,0.000020326534,0.000020345055,0.000019314959,0.000020755104,0.000020843609,0.000021099519,0.000019948548,0.00002108564,0.000020198459,0.000020305977,0.000019307592,0.000020447093,0.000020560248,0.000020970054,0.000020126334,0.00002105056,0.000020677639,0.000021090003,0.000020085092,0.000021258737,0.000020856176,0.000021189131,0.000020195223,0.000021274536,0.000020828407,0.00002112368,0.000019757477,0.000020346803,0.000020309619,0.000020287782,0.000019532014,0.000020490994,0.000020278498,0.00002028461,0.000019250816,0.000020547155,0.000020444617,0.000020749145,0.000020204392,0.000021547716,0.00002090829,0.000020762349,0.000019698178,0.000020893322,0.00002073765,0.000020418236,0.000019597204,0.000020575842,0.000020273625,0.000020218271,0.000019300485,0.000020676061,0.000020421565,0.000020672394,0.000020037493,0.000021424223,0.000020784497,0.00002064117,0.00001962784,0.00002085184,0.000020684442,0.000020337158,0.000019505933,0.00002045345,0.000020179417,0.000020108013,0.000019242503,0.000020649124,0.000020387726,0.000020656275,0.000020019614,0.00002139539,0.000020742618,0.000020608462,0.000019581474,0.000020786598,0.000020643118,0.000020315158,0.00001949682,0.000020435591,0.000020154741,0.00002008015,0.000019212577,0.000020628655,0.000020378006,0.00002064048,0.00001999954,0.000021371778,0.000020718044,0.000020587699,0.000019565794,0.000020778234,0.000020636151,0.000020308185,0.000019493122,0.000020433741,0.000020145173,0.000020060705,0.000019198109,0.000020622734,0.000020377325,0.00002064808,0.000020017935,0.000021393942,0.000020746851,0.000020612195,0.000019589263,0.00002077653,0.00002063507,0.000020315061,0.000019509858,0.000020437872,0.000020155549,0.000020073929,0.000019206678,0.000020623087,0.00002038133,0.000020647016,0.000020012665,0.000021382764,0.000020726344,0.000020587953,0.000019569414,0.000020782752,0.000020640618,0.000020311478,0.000019502362,0.00002044298,0.00002015453,0.00002007387,0.000019211642,0.000020630268,0.00002038032,0.000020644871,0.000020007914,0.00002138095,0.000020728636,0.000020594845,0.00001957744,0.000020793756,0.000020648158,0.000020318163,0.000019510417,0.000020455967,0.000020166739,0.000020091451,0.000019234081,0.000020658323,0.000020399239,0.000020658066,0.000020020589,0.00002139972,0.000020755399,0.000020624051,0.000019612571,0.00002083375,0.000020708421,0.000020357107,0.000019530205,0.00002044805,0.000020194664,0.000020108435,0.000019257004,0.000020674623,0.000020463283,0.000020795382,0.00002018319,0.000021568974,0.00002090229,0.000020718755,0.000019671108,0.000021021431,0.000020985577,0.000020499985,0.000019634579,0.000020520914,0.000020315352,0.00002022419,0.000019435689,0.000020858462,0.000020593472,0.000020761756,0.000020074003,0.000021437445,0.000020717767,0.000020850706,0.00001998787,0.00002158241,0.000020942454,0.000020871734,0.000019848467,0.000021127387,0.000020318026,0.000020608362,0.000019979789,0.000021529988,0.000021154905,0.000021667622,0.00002127123,0.00002267793,0.000022046665,0.000021960608,0.000021030857,0.000021679072,0.00002161355,0.000021157066,0.000020132517,0.000020755913,0.000020571251,0.000020734666,0.00001989042,0.000021171296,0.000020832142,0.000021724645,0.000021192403,0.000022496413,0.000021435728,0.000021508728,0.000020807483,0.000021324342,0.000021194466,0.000020765237,0.000020289737,0.000019786628,0.000019939684,0.000020394356,0.000020348314,0.00002069786,0.00002129384,0.000021060418,0.00002134127,0.000021400738,0.000021878206,0.000024848227,0.000024779129,0.000023791412,0.00001692771,0.000010640399,0.000012958817],[0.000015128586,0.000010559499,9.414754e-6,0.000011288153,0.000021372796,0.00003292648,0.000026652158,0.000024302975,0.000020980337,0.000020929796,0.000019284993,0.000019615096,0.000018481996,0.000019253386,0.000018543966,0.000019284553,0.000018875042,0.000020185846,0.000018737286,0.000019392515,0.00001897727,0.000020501217,0.000018855791,0.000019425257,0.000018366663,0.000019789233,0.000018279312,0.000019294412,0.000018547325,0.000020365223,0.000018846567,0.000019441417,0.000018609071,0.000020191332,0.000018878516,0.000019750414,0.000019059413,0.000020279464,0.000018567713,0.000019239933,0.000018350924,0.000020018908,0.000018394658,0.000018979787,0.000018031466,0.000019289759,0.000017933733,0.00001849783,0.000017678498,0.000019388168,0.000017942713,0.000018769513,0.00001798093,0.000019602923,0.00001811981,0.000019008588,0.00001798184,0.000019806754,0.000018126915,0.00001907245,0.000018043318,0.000019745856,0.000017907569,0.000018415949,0.000017348892,0.000019195544,0.00001784764,0.000018784054,0.000017899714,0.000019611394,0.000017996404,0.000018889825,0.000017831768,0.00001976739,0.000018086525,0.000019065194,0.000018039154,0.000019777026,0.000017905091,0.0000183804,0.000017286613,0.000019123992,0.000017768856,0.000018701565,0.00001785583,0.000019586927,0.000018013472,0.000018900762,0.000017847726,0.000019743333,0.000018055418,0.000019000505,0.000017987997,0.000019701973,0.000017886336,0.000018362005,0.000017286975,0.00001909815,0.00001774955,0.000018664201,0.000017834607,0.00001956195,0.000017998223,0.000018874682,0.000017826767,0.000019715524,0.000018033925,0.000018978357,0.000017974551,0.00001969072,0.000017875576,0.000018349927,0.00001727585,0.000019085623,0.000017734998,0.00001865091,0.000017824677,0.000019558107,0.000017996661,0.00001888579,0.000017843557,0.000019739266,0.000018054403,0.000019003131,0.000017978375,0.000019699606,0.000017887307,0.000018366452,0.00001728269,0.000019097366,0.000017747027,0.000018655393,0.000017825781,0.000019557026,0.000017995733,0.000018875382,0.00001782636,0.000019715488,0.000018032017,0.000018975172,0.000017971844,0.000019682366,0.000017869406,0.000018347197,0.000017276609,0.00001908262,0.000017735963,0.00001865148,0.000017822349,0.000019549418,0.000017992423,0.000018870813,0.0000178242,0.000019713285,0.000018039103,0.000018983625,0.00001797925,0.000019689349,0.000017880282,0.000018360079,0.000017291064,0.000019100225,0.00001776269,0.00001868046,0.000017853563,0.000019578803,0.000018011031,0.00001889087,0.0000178497,0.000019756008,0.000018081817,0.00001904346,0.00001804707,0.000019786099,0.000017938111,0.000018410909,0.000017311986,0.000019155243,0.000017808146,0.000018744024,0.000017908234,0.000019702893,0.00001812733,0.00001903636,0.000017933047,0.000019868388,0.000018098119,0.000019092831,0.000018206783,0.00002020865,0.000018116494,0.00001854057,0.000017201526,0.000019145707,0.000017797502,0.000018813653,0.000017814855,0.000019610983,0.000018055141,0.000018826575,0.00001778742,0.000019669944,0.000018333816,0.000019352017,0.000018575842,0.000020137777,0.00001842858,0.000018883342,0.000017934623,0.000019614441,0.000018542658,0.00001965468,0.000019006195,0.000020531974,0.000019151734,0.000020307429,0.000019514251,0.00002132369,0.000019882396,0.000020738878,0.000019760115,0.000021193455,0.00001934877,0.000019556785,0.000018585783,0.000020099691,0.000018821063,0.000019884388,0.000019010582,0.000020695708,0.000019398285,0.000020534793,0.000019331597,0.000020919997,0.000019457128,0.000020655742,0.000019602176,0.000021104432,0.000019104944,0.000019404557,0.000018383345,0.000019256344,0.000019442605,0.000019992598,0.000019889241,0.000020752213,0.000020684345,0.00002151796,0.000020651665,0.000021454418,0.000023135328,0.000025600693,0.000023270282,0.000016208234,0.000010588541,0.00001322358],[0.00001558751,0.000010122159,9.462154e-6,0.000011274327,0.000022362148,0.00003604497,0.00003025494,0.000024662364,0.000022172371,0.000021210866,0.000020888321,0.000019163737,0.000019606512,0.000019113655,0.000019614012,0.000018567802,0.000020167643,0.000019827996,0.000020725354,0.000018826107,0.000020446741,0.000019828753,0.000020206357,0.000018486791,0.000019730835,0.000018715713,0.000019518699,0.000017906184,0.000019591896,0.000019057994,0.000019762378,0.000018223527,0.00001966972,0.000018969564,0.000019926416,0.000018326318,0.000020130019,0.000019273246,0.00001970575,0.000018053473,0.00001936845,0.000018670024,0.000019414905,0.000017622579,0.000018546865,0.000018052664,0.000018573683,0.00001726108,0.000018466844,0.00001811138,0.000019004454,0.000017330884,0.000018674225,0.000018128936,0.000018636456,0.000017315931,0.000018725746,0.000018262253,0.00001901535,0.000017433409,0.00001856867,0.00001804941,0.000018183115,0.00001683811,0.000018002533,0.00001780144,0.000018712857,0.000017181786,0.000018596971,0.000018043576,0.00001851449,0.000017137341,0.000018657776,0.00001830815,0.000019091302,0.000017494214,0.000018680068,0.000018148985,0.000018218314,0.000016825783,0.00001798834,0.00001778491,0.000018666286,0.000017109352,0.000018544955,0.000018042647,0.000018573717,0.000017186949,0.000018682258,0.000018302302,0.000019055124,0.000017431714,0.000018600766,0.000018100518,0.00001820298,0.00001682835,0.000017990433,0.00001778118,0.000018652849,0.000017084309,0.000018524257,0.000018028131,0.000018556631,0.0000171733,0.00001866568,0.000018287437,0.000019038722,0.000017418968,0.000018590941,0.0000180922,0.000018188717,0.00001681728,0.000017980346,0.000017771077,0.000018638375,0.000017072354,0.000018512303,0.000018019982,0.000018552155,0.00001717584,0.000018678624,0.000018302895,0.000019056743,0.000017432862,0.000018591953,0.000018100156,0.000018198172,0.000016831897,0.000017984068,0.000017775958,0.000018642588,0.000017072778,0.000018506724,0.00001801306,0.000018544106,0.000017164952,0.000018654842,0.000018277377,0.000019025834,0.00001740628,0.000018576622,0.000018081764,0.000018176752,0.000016807564,0.000017972598,0.000017762266,0.000018628494,0.000017066217,0.00001850196,0.000018007922,0.000018544319,0.000017164884,0.00001865566,0.000018275094,0.000019030607,0.00001741309,0.000018585872,0.000018085077,0.000018188994,0.000016817232,0.000017984154,0.000017777891,0.000018656603,0.00001709125,0.000018536486,0.000018038725,0.00001857246,0.000017183507,0.000018687711,0.00001832055,0.000019097055,0.000017484941,0.000018679533,0.000018180946,0.000018275077,0.000016890348,0.000018037881,0.000017845394,0.000018737197,0.000017179378,0.000018627394,0.0000181209,0.000018659859,0.000017257573,0.000018794679,0.000018436296,0.00001917584,0.000017597085,0.000018926467,0.000018582612,0.000018508612,0.000017018338,0.000018057555,0.000017862232,0.00001874692,0.000017246139,0.0000185072,0.000017886796,0.000018450772,0.000017033015,0.000018509265,0.000018157381,0.000019262827,0.000017687013,0.000019169074,0.000018527915,0.000018994779,0.00001738654,0.000018827563,0.000018248222,0.000019604513,0.000018050976,0.000019910689,0.000019071103,0.000019991874,0.000018599914,0.000020307603,0.000019840158,0.000021142361,0.000019519182,0.000020549976,0.00002001967,0.000020238487,0.000018786202,0.000019524228,0.000019071504,0.000019992942,0.000018363178,0.000019946912,0.000019147059,0.00002001765,0.000018677929,0.000020281379,0.000019437359,0.000020349013,0.000018991826,0.00002029202,0.000019914465,0.000019741903,0.0000185958,0.000018686285,0.000018628602,0.000019470901,0.000018992027,0.00001978931,0.000019594887,0.000020281863,0.0000200777,0.000020041622,0.000020321786,0.000023291486,0.000023901344,0.00002467363,0.000016210677,0.000011182079,0.0000128442325],[0.000015861431,0.000011151398,0.00001043019,0.0000127164285,0.000023793706,0.00003361862,0.000027462342,0.000023180868,0.000020105943,0.000020297302,0.000018952367,0.000019095727,0.000018214407,0.000018747045,0.00001786518,0.000018460507,0.000018391202,0.000019719622,0.000018554916,0.00001875554,0.00001868732,0.000019779856,0.000018489047,0.000018766561,0.000017751716,0.000018860377,0.000017369519,0.000018011926,0.000017368724,0.000019103576,0.000017779383,0.000018390518,0.000017665621,0.000019315787,0.000017935306,0.000018661372,0.000018160656,0.000019596753,0.000017944665,0.000018531484,0.000017515984,0.000018971135,0.000017319417,0.000017776976,0.000016837774,0.000018160186,0.000016768005,0.000017644676,0.00001695608,0.000018461598,0.000017042374,0.000017728538,0.000016943262,0.00001836873,0.000016817634,0.000017759556,0.000017209173,0.000018877201,0.000017112681,0.000017986658,0.000016891829,0.000018305584,0.00001644469,0.000017272969,0.000016763846,0.000018375302,0.000016943084,0.000017737959,0.000017028126,0.000018462724,0.00001673733,0.000017661157,0.000017213866,0.000019055597,0.000017275735,0.000018169074,0.00001701532,0.000018442082,0.000016484131,0.00001725234,0.00001674726,0.000018379103,0.000016935752,0.000017684046,0.000016989035,0.000018442488,0.000016780305,0.00001771049,0.000017221832,0.000019030082,0.000017253837,0.000018103454,0.000016952086,0.000018389132,0.000016478112,0.000017245859,0.00001674437,0.000018351013,0.000016920576,0.00001765151,0.000016967791,0.000018415229,0.000016764037,0.000017687806,0.00001720435,0.00001900866,0.000017234826,0.000018085026,0.000016940177,0.000018373777,0.000016464242,0.00001722817,0.000016730994,0.00001833623,0.000016906382,0.000017638906,0.000016961692,0.000018413912,0.000016763703,0.000017692664,0.000017215803,0.000019027088,0.000017251288,0.000018093218,0.00001694163,0.000018387029,0.000016475911,0.000017241107,0.000016738271,0.00001834382,0.000016910059,0.000017639039,0.000016959235,0.000018405413,0.000016754337,0.000017680486,0.000017201477,0.000018998946,0.000017219762,0.000018064255,0.000016925063,0.000018365281,0.00001646074,0.000017218546,0.000016725362,0.00001832693,0.000016896196,0.000017626511,0.000016952492,0.00001839857,0.000016753505,0.000017678329,0.000017195556,0.000018994055,0.000017225248,0.00001807585,0.000016935524,0.000018368362,0.000016459266,0.00001722487,0.000016730817,0.000018333922,0.000016915252,0.000017650398,0.000016979251,0.000018426841,0.000016773936,0.00001770453,0.00001722656,0.000019052397,0.000017288508,0.000018164397,0.000017029539,0.000018492168,0.000016551141,0.000017339315,0.00001683217,0.00001847581,0.000017026958,0.000017797958,0.000017119766,0.00001860366,0.000016899901,0.000017856477,0.000017408023,0.000019274514,0.000017369635,0.000018217062,0.000017143078,0.00001877415,0.000016763623,0.00001746586,0.000016947577,0.000018750943,0.000017303732,0.000018020446,0.000017059676,0.000018426612,0.00001687217,0.000017679104,0.000017107885,0.000018812827,0.00001736604,0.000018196817,0.000017266348,0.000018714303,0.000017014248,0.00001766493,0.000017007304,0.000018564439,0.000017385444,0.000018333956,0.00001787849,0.00001951639,0.000018098515,0.000019204113,0.000018529028,0.000020436119,0.00001898482,0.00001978078,0.00001881105,0.000020197938,0.000018570901,0.000019060632,0.000018262568,0.000019547815,0.000018200531,0.000018645753,0.000018077799,0.000019452043,0.000018316114,0.000019245364,0.000018434486,0.000019864183,0.000018236567,0.000019093031,0.000018240602,0.000019972684,0.0000184254,0.000018843764,0.00001772186,0.000019057923,0.000018619117,0.000019522813,0.00001918535,0.00002005728,0.00002003239,0.000021363687,0.000020797126,0.000021735505,0.00002265999,0.000025812897,0.0000253177,0.00001733437,0.000010883838,0.000013626238],[0.000015152353,0.000011758733,9.477218e-6,0.000014105066,0.000023941586,0.000035686255,0.0000291495,0.000023619308,0.000020994086,0.000020765377,0.000020466954,0.00001949868,0.00001962056,0.000019377594,0.0000195859,0.000019112196,0.000019958004,0.000020028894,0.000020051464,0.000019058649,0.000020170528,0.000020202562,0.00002041878,0.000019194722,0.000019669007,0.000019291561,0.000019322937,0.000018062186,0.000019089992,0.000019097166,0.000019684207,0.000018650164,0.000019610026,0.000019499275,0.000020090723,0.000018808953,0.00001985782,0.00001958235,0.000020078465,0.000018810046,0.000019528026,0.000019378149,0.000019512074,0.000017989918,0.000018474366,0.000018576126,0.00001881026,0.000018068336,0.000019013429,0.000019102192,0.000019232064,0.000017978495,0.000018802531,0.000018651692,0.0000187914,0.000018073197,0.000019382345,0.000019417645,0.000019302972,0.000018009125,0.000018766632,0.000018573664,0.000018515673,0.000017800014,0.000018993404,0.000019043733,0.00001910376,0.000018032102,0.000019006557,0.000018783105,0.000018811355,0.00001803778,0.000019473797,0.000019578149,0.000019516876,0.00001823441,0.000018944416,0.000018664558,0.000018571167,0.000017791272,0.000018979841,0.000019024093,0.000019073286,0.000018009761,0.000018974666,0.000018754501,0.000018809975,0.000018057124,0.000019475396,0.000019553034,0.000019474855,0.000018180532,0.000018860701,0.000018620483,0.000018540624,0.000017779688,0.000018945444,0.00001899987,0.000019044368,0.00001798129,0.000018941038,0.000018739787,0.000018792995,0.00001803974,0.000019451489,0.000019534284,0.000019452935,0.000018162404,0.000018845149,0.000018610881,0.000018527031,0.000017768112,0.000018932496,0.000018988785,0.000019032605,0.000017973507,0.00001893831,0.000018735267,0.000018789859,0.000018046261,0.000019465164,0.000019551002,0.000019464458,0.000018162507,0.00001884071,0.000018617004,0.000018534365,0.00001777162,0.000018938057,0.000018994,0.000019030753,0.00001797457,0.000018935654,0.000018731122,0.000018782048,0.00001803666,0.000019449837,0.00001952594,0.000019433726,0.000018146131,0.000018830453,0.000018605362,0.00001852371,0.000017765486,0.000018927802,0.000018979552,0.000019018906,0.000017965074,0.00001892558,0.000018726889,0.000018777517,0.000018031844,0.000019440842,0.000019517322,0.000019436375,0.000018151288,0.000018839057,0.000018605326,0.000018516115,0.000017759134,0.000018923416,0.000018978755,0.00001902754,0.000017979764,0.000018951914,0.000018754681,0.000018804989,0.000018056797,0.000019476547,0.000019581716,0.000019510604,0.000018224571,0.000018938328,0.000018721032,0.000018647886,0.000017887683,0.00001907114,0.000019148703,0.000019196772,0.000018143637,0.000019119761,0.000018898221,0.000018932044,0.000018191302,0.000019665424,0.000019817997,0.000019655863,0.000018295601,0.000019063831,0.000019027106,0.00001895712,0.000018078299,0.000019452435,0.000019650277,0.000019680901,0.000018459255,0.000019139208,0.000018715427,0.000018902098,0.000018115301,0.0000192909,0.000019247127,0.000019528678,0.000018291903,0.000019132713,0.000018964425,0.000019168983,0.00001809988,0.000019124376,0.000018873492,0.000019400411,0.000018289566,0.000019641415,0.000019333222,0.000020117259,0.000019265748,0.0000204523,0.00002033266,0.000020589878,0.000019471365,0.000020041773,0.000020269721,0.000020364194,0.000019502846,0.000020214047,0.000020352796,0.00002024368,0.000018827957,0.000019691153,0.000019347535,0.000020205298,0.000019327488,0.000020532132,0.000019914865,0.000020054316,0.0000188924,0.000019475581,0.000019747984,0.000019786252,0.000019095398,0.000018890709,0.000019066685,0.000019100882,0.00001949539,0.000019666211,0.000020367068,0.000020713065,0.000021277296,0.000021324871,0.000022047925,0.000024009905,0.000024562678,0.000024529345,0.000017722774,0.000011255871,0.000013297521],[0.000014946205,0.000013819739,0.000010347612,0.0000146506245,0.000025044877,0.000034145865,0.00002783737,0.0000238728,0.000020113632,0.000020417008,0.000019189194,0.000019539708,0.000018428915,0.000019170264,0.000018657884,0.000019607092,0.000019028594,0.00002013054,0.000018878174,0.00001916807,0.000018855917,0.00001998503,0.000018672588,0.00001922715,0.000018037881,0.000019139354,0.000017633944,0.000018188422,0.00001751824,0.000019198053,0.000018040375,0.000018879218,0.000017698218,0.000019460616,0.000018149556,0.000018869876,0.000018066254,0.000019398933,0.000018059362,0.000018786328,0.000017765247,0.000019115423,0.000017428323,0.000017665318,0.000016885435,0.00001838368,0.000017263943,0.000018070921,0.000017124124,0.0000187816,0.000017336983,0.000017754392,0.000017013712,0.00001829213,0.000017069733,0.000017816486,0.000017163904,0.00001894306,0.000017167817,0.00001751996,0.000016536422,0.000018096514,0.000016703127,0.000017409104,0.000016616967,0.00001852332,0.000017162758,0.000017652452,0.00001692981,0.000018326178,0.000016982976,0.000017705695,0.000017115668,0.000019037596,0.00001727595,0.000017691094,0.000016626731,0.000018172314,0.000016725953,0.000017393006,0.000016560978,0.00001847981,0.000017140152,0.000017626478,0.000016897338,0.000018315415,0.000016972648,0.000017718989,0.000017120516,0.000019036399,0.000017250992,0.000017655953,0.00001657229,0.000018107183,0.000016685915,0.000017362894,0.000016535034,0.000018448593,0.000017113627,0.000017594284,0.000016871929,0.00001829731,0.00001695988,0.000017696477,0.000017102648,0.000019019468,0.000017236389,0.000017637392,0.000016559336,0.000018093064,0.000016671776,0.000017345517,0.000016519982,0.000018433748,0.000017100201,0.000017580614,0.000016856731,0.000018284507,0.0000169511,0.00001769511,0.000017105469,0.00001902912,0.000017235057,0.00001763016,0.000016545397,0.000018091167,0.000016672284,0.00001734292,0.000016516202,0.000018433695,0.000017095717,0.00001757924,0.000016853324,0.000018277638,0.000016940063,0.000017679407,0.000017087257,0.000019006195,0.000017215361,0.000017612465,0.000016535601,0.000018079592,0.000016665384,0.000017333346,0.000016506989,0.000018420198,0.000017089083,0.000017571949,0.00001684802,0.000018274222,0.000016941049,0.000017676355,0.000017082484,0.000019000268,0.000017220189,0.000017621958,0.000016546359,0.000018084334,0.000016660983,0.000017334123,0.000016510925,0.000018428089,0.000017104474,0.000017593193,0.000016876822,0.000018308534,0.000016973132,0.000017722503,0.000017134515,0.000019071158,0.000017277136,0.000017691415,0.000016625589,0.000018201104,0.000016785747,0.000017471773,0.000016640817,0.000018607401,0.000017253607,0.000017746637,0.000016973132,0.000018415773,0.000017029295,0.000017810267,0.000017221044,0.000019220364,0.000017300203,0.000017659422,0.00001661714,0.00001830087,0.00001681946,0.000017360875,0.000016656853,0.000018816236,0.000017439861,0.000017760387,0.00001665377,0.000018100363,0.000017030108,0.000017835848,0.000017107313,0.000019053798,0.000017593311,0.000018197547,0.00001742111,0.00001899958,0.000017492814,0.000018278093,0.000017340208,0.00001895627,0.000017628765,0.00001821253,0.000017540757,0.000019085477,0.000018093891,0.000019277877,0.000018340304,0.000020207224,0.000018373234,0.00001918958,0.000018278093,0.000020199037,0.00001872171,0.000019724852,0.00001872905,0.000020553387,0.000018689156,0.000018954155,0.000017964476,0.000019464662,0.000018511524,0.00001959044,0.000018397554,0.000020006502,0.00001819951,0.000018830848,0.000017672934,0.000019463678,0.000018232775,0.000019124958,0.000017607981,0.000018917372,0.000018013865,0.000019186833,0.000018793622,0.000020222937,0.000020301735,0.00002168749,0.000021435279,0.000023069233,0.000024765548,0.000026125706,0.000022733473,0.000016074267,0.0000111016225,0.000013408589],[0.00001556401,0.000014990084,0.00001185401,0.000016394317,0.00002953796,0.000036692025,0.000032174317,0.000024715411,0.000021886031,0.000020925545,0.000020962716,0.000019280968,0.000019722856,0.000019233457,0.000020150705,0.000019141782,0.000020596613,0.000020167663,0.00002083846,0.000018964154,0.000020253468,0.000019758476,0.00002049119,0.000018687766,0.00001968432,0.000018783607,0.000019345614,0.00001776823,0.00001926211,0.000018856834,0.00001986943,0.00001820489,0.000019505562,0.000018889916,0.000019954085,0.000018141682,0.000019608982,0.000019014135,0.000020075766,0.00001839836,0.000019527097,0.000018884313,0.000019401818,0.000017305747,0.000018343611,0.000018232011,0.000019060504,0.000017616094,0.00001870194,0.000018344574,0.000019098094,0.00001727091,0.000018402483,0.000017947437,0.000018795736,0.00001731144,0.000018685609,0.0000182941,0.000018827615,0.00001684672,0.00001792462,0.00001764456,0.000018273875,0.000016876114,0.000018101002,0.000017820854,0.000018658686,0.0000170362,0.00001825252,0.000017851913,0.000018580964,0.00001709262,0.000018563445,0.000018247822,0.00001884222,0.000016869388,0.000018026909,0.000017696952,0.000018282119,0.000016832491,0.00001808744,0.000017759301,0.000018599383,0.000016981763,0.00001822205,0.000017850602,0.000018602912,0.000017102648,0.00001857788,0.000018267376,0.000018829141,0.000016847023,0.000017971792,0.000017637678,0.000018225544,0.0000168096,0.000018062306,0.000017746095,0.0000185695,0.000016957796,0.000018194754,0.000017838009,0.000018580484,0.000017086573,0.000018560526,0.000018264203,0.000018814962,0.00001683779,0.000017960365,0.000017629993,0.000018207198,0.000016796781,0.00001804917,0.000017736656,0.000018552384,0.000016941678,0.00001817916,0.000017823386,0.000018565164,0.000017079421,0.000018560295,0.000018276052,0.000018819395,0.000016830629,0.000017947694,0.000017624176,0.000018195118,0.000016788612,0.000018042698,0.000017732224,0.000018538607,0.000016935428,0.00001817214,0.000017815262,0.00001854807,0.000017061986,0.000018538094,0.000018249772,0.000018792565,0.000016817665,0.000017934879,0.000017614262,0.000018186825,0.000016781969,0.000018033496,0.000017726543,0.000018533712,0.000016934167,0.000018170824,0.000017816028,0.000018548635,0.000017063288,0.000018534594,0.000018246674,0.000018791256,0.000016823826,0.000017941722,0.000017618866,0.000018195447,0.000016784674,0.000018038398,0.000017735623,0.000018555784,0.000016955804,0.000018198345,0.000017849734,0.000018603321,0.000017113758,0.000018591545,0.000018302895,0.000018862283,0.000016877353,0.000018020963,0.000017716724,0.00001832146,0.00001689613,0.000018178313,0.000017880879,0.000018710198,0.000017054665,0.00001826499,0.000017869866,0.000018621693,0.000017121805,0.000018642748,0.000018356193,0.000018857176,0.00001686437,0.000018052011,0.000017812783,0.000018182542,0.000016741064,0.000018153469,0.000017987808,0.000018689956,0.00001698249,0.000017951272,0.000017520862,0.000018488183,0.000017207565,0.000018668741,0.000018488008,0.000019328741,0.000017634482,0.000018975352,0.000018682349,0.000019399544,0.000017797585,0.000019054689,0.00001837283,0.000019079253,0.000017527262,0.000018950723,0.000018634464,0.000020024083,0.00001846806,0.000019873865,0.000019371626,0.000020081146,0.000018504781,0.000019744819,0.000019604418,0.000020505811,0.000018968603,0.000020169527,0.000019649939,0.000020177511,0.000018198918,0.00001940056,0.0000188148,0.000020210078,0.000018594541,0.000019975256,0.000019273504,0.000019953322,0.000018385292,0.000019293144,0.000019160392,0.000020104504,0.000018644545,0.000019049654,0.000018466562,0.000019004528,0.000018398465,0.000019744142,0.000020132746,0.000020920776,0.000020830295,0.00002151119,0.000022001823,0.00002653145,0.000024752204,0.000020636071,0.000014674143,0.000010795547,0.000013413885],[0.000016017664,0.000015204869,0.0000147633755,0.00002099691,0.000031503383,0.00003141332,0.000026893022,0.000023244265,0.000020452047,0.000020293646,0.000019016474,0.000019461786,0.000018363738,0.00001903932,0.000018318264,0.000019266447,0.000019158693,0.000020381154,0.000019147625,0.000019403835,0.00001896504,0.00002010529,0.000018668634,0.00001907314,0.000018047673,0.000018960898,0.000017877639,0.000018098257,0.000017503577,0.00001907314,0.000017915494,0.000018708504,0.000017890685,0.000019544254,0.00001828008,0.000018863811,0.000018094857,0.000019478422,0.000018248136,0.000019033021,0.000018140472,0.000019391238,0.000017886507,0.00001791481,0.000017128566,0.000018621602,0.000017485174,0.00001831297,0.000017517403,0.000019007428,0.000017736993,0.000018158351,0.000017203873,0.000018367697,0.000017232773,0.000017990465,0.000017460514,0.000018789608,0.000017428722,0.000017538883,0.000016772834,0.000018216786,0.000016900063,0.00001767066,0.00001700719,0.000018544655,0.00001748896,0.000018076042,0.000017267928,0.000018413384,0.000017079992,0.00001779448,0.000017363009,0.000018775136,0.00001740927,0.000017540773,0.000016807804,0.000018247021,0.000016882213,0.000017567609,0.00001693039,0.000018460629,0.00001739659,0.000017985303,0.000017211389,0.000018388308,0.000017085058,0.000017790915,0.000017346756,0.000018782532,0.000017420445,0.000017527731,0.000016768228,0.000018204317,0.000016846334,0.000017543149,0.000016918382,0.000018457848,0.000017380338,0.0000179586,0.000017188719,0.000018366663,0.000017069911,0.000017769942,0.000017332122,0.000018774042,0.000017410746,0.00001751513,0.000016754146,0.000018188837,0.000016827002,0.000017522283,0.000016904012,0.000018444738,0.000017363456,0.000017937513,0.000017169667,0.000018348352,0.000017052844,0.000017760607,0.000017332206,0.000018786435,0.000017414832,0.000017503327,0.000016734552,0.000018177843,0.000016820744,0.00001751211,0.000016901915,0.000018447288,0.000017357199,0.00001793317,0.00001716952,0.000018345325,0.000017038556,0.000017736571,0.000017312432,0.000018764575,0.000017395694,0.000017497585,0.000016736898,0.000018176197,0.000016815884,0.000017507435,0.000016893488,0.000018441555,0.000017353592,0.000017930482,0.000017167833,0.000018345867,0.000017042064,0.00001774349,0.000017318276,0.000018768655,0.000017401286,0.000017508484,0.000016749944,0.000018185456,0.000016818307,0.000017518072,0.000016903334,0.000018455912,0.00001737525,0.000017961751,0.000017202052,0.00001839306,0.000017093858,0.000017809622,0.00001737515,0.0000188246,0.000017463793,0.000017571128,0.000016826938,0.000018282415,0.000016948758,0.000017660415,0.000017057399,0.000018614663,0.000017508903,0.000018056022,0.000017276905,0.000018476005,0.000017159517,0.000017883367,0.000017474289,0.000018944145,0.000017455735,0.000017477822,0.000016773409,0.000018231036,0.000016776577,0.000017340059,0.000016934007,0.000018647424,0.000017548318,0.000017978788,0.000017100543,0.00001822363,0.000017114167,0.000017980878,0.000017567576,0.000019200343,0.000017885124,0.000018443367,0.000017661292,0.000019301902,0.000017690487,0.000018571307,0.000017630176,0.000018988387,0.000017706505,0.000018438812,0.000017819459,0.000019363797,0.000018160967,0.000019187511,0.000018429759,0.000019996833,0.000018626772,0.000019142477,0.000018345885,0.000020143636,0.000018511932,0.00001935176,0.000018357821,0.000019766374,0.000018568953,0.00001892024,0.000018092598,0.000019385636,0.00001845952,0.000019259962,0.000018382381,0.000019728408,0.000018461333,0.000018940731,0.000018054041,0.000019540117,0.000018252365,0.00001876724,0.000017915681,0.000018782728,0.000018408557,0.000019542447,0.000019837225,0.000021817536,0.0000210962,0.000022289738,0.00002162518,0.000023921775,0.000025300418,0.00002775734,0.000020327736,0.000015276988,0.000010197492,0.0000138704945],[0.00001647643,0.000014682487,0.000014045334,0.000023532682,0.000029707287,0.000029573135,0.000026407004,0.00002323808,0.000021205686,0.000020823165,0.000020625723,0.00001992043,0.00002016399,0.000019537154,0.000019756235,0.000019427147,0.000020339874,0.000020471385,0.000020622105,0.000019568368,0.00002045987,0.000020557642,0.000020521305,0.000019241419,0.000019718587,0.000019488734,0.000019851192,0.000018690474,0.000019253222,0.000019508556,0.000020030422,0.000019005052,0.000019873714,0.000019968036,0.000020598853,0.000019374213,0.000020060494,0.0000198904,0.000020433565,0.000019311514,0.000020013962,0.000020056554,0.000020195821,0.000018785522,0.000018965275,0.000019219284,0.000019555291,0.000018630111,0.000019485948,0.000019809173,0.000020139947,0.00001899594,0.000019180303,0.00001905925,0.000019274348,0.000018461351,0.000019349434,0.000019594607,0.000019685427,0.000018414194,0.00001898768,0.000019087842,0.000019269735,0.000018339062,0.00001920155,0.000019369189,0.000019832969,0.000019047058,0.00001935713,0.000019151406,0.000019121222,0.00001831346,0.000019230834,0.00001956947,0.000019658317,0.00001840938,0.000019002606,0.000019098166,0.000019292462,0.000018285642,0.00001910622,0.000019270195,0.000019723911,0.0000189425,0.000019298075,0.000019103705,0.000019113746,0.00001830796,0.000019225901,0.000019556206,0.0000196652,0.000018390974,0.000018961984,0.00001905714,0.000019252597,0.000018243978,0.000019099187,0.000019276076,0.000019702911,0.000018915134,0.000019263507,0.000019079216,0.000019079707,0.00001828449,0.00001920558,0.000019543937,0.000019656725,0.000018379962,0.000018951698,0.000019047022,0.000019239273,0.000018229019,0.00001909052,0.000019264278,0.000019689538,0.000018899014,0.000019247127,0.000019063411,0.00001906765,0.000018280985,0.00001921736,0.000019560588,0.000019666417,0.000018375933,0.00001893524,0.000019033203,0.00001923498,0.000018231993,0.000019099407,0.000019272142,0.00001968599,0.000018900655,0.00001924955,0.000019058232,0.00001905069,0.000018259085,0.000019198933,0.000019541458,0.000019650353,0.000018372235,0.000018944886,0.000019034147,0.00001921956,0.000018215413,0.000019086405,0.00001926391,0.000019681635,0.000018896402,0.000019248007,0.00001906014,0.00001905407,0.000018269275,0.000019207064,0.000019545205,0.000019658375,0.000018382172,0.00001895799,0.000019047711,0.000019229936,0.000018229663,0.000019097748,0.000019282548,0.000019703983,0.000018924715,0.000019288489,0.000019116918,0.000019107276,0.000018332015,0.000019252853,0.00001960311,0.000019706351,0.000018445036,0.00001902491,0.00001916286,0.000019391035,0.00001838154,0.00001922515,0.000019422681,0.000019835372,0.00001903264,0.000019358367,0.000019210105,0.000019215417,0.000018463375,0.000019394845,0.000019721523,0.000019675517,0.000018307086,0.000018998746,0.000019156245,0.00001928643,0.000018230985,0.000019172767,0.00001959952,0.000019996107,0.000019171708,0.000019343124,0.000019003965,0.000019127694,0.000018419005,0.000019510213,0.000019761776,0.000020255788,0.000019031713,0.00002002053,0.000019890627,0.000020087122,0.000018809364,0.00001957925,0.000019302935,0.000019736573,0.000019219817,0.000020108646,0.000020074962,0.000020305222,0.000019438043,0.000020369302,0.00002062234,0.000020966774,0.000019686759,0.00002040239,0.00002057906,0.000020578394,0.000019311423,0.000019822739,0.00001999115,0.000020537907,0.000019634954,0.000020081645,0.000019929836,0.000020420572,0.00001943378,0.000020279831,0.00002010111,0.000020873746,0.000019816256,0.000020294323,0.000020247619,0.000019929,0.000019350486,0.000019439676,0.000019843925,0.000020188021,0.000020283178,0.000021490072,0.000022384831,0.000022374863,0.000022493,0.000022568503,0.000023379122,0.000027765334,0.00002561112,0.000020531015,0.000015615422,0.000010654412,0.000013619586],[0.000016202439,0.000013137289,0.000014262255,0.000021579506,0.000029014518,0.000028602346,0.00002396964,0.000022421578,0.00001952732,0.000020445748,0.000019299197,0.000020376141,0.000018814155,0.000019583957,0.000018571716,0.000019483066,0.00001876375,0.000020362251,0.00001906243,0.000019903797,0.000019160594,0.00002065915,0.000019105017,0.00001929572,0.000018282102,0.000019504409,0.000018523162,0.000019031751,0.000018149487,0.000019742673,0.000018470895,0.000019232486,0.00001806801,0.000020079768,0.000018657243,0.000019631678,0.000018334096,0.000019894764,0.000018425522,0.00001917573,0.000018350049,0.00002007232,0.000018674635,0.000018883791,0.000017833485,0.00001927911,0.000017966702,0.000018743756,0.000017835628,0.000019954941,0.000018494515,0.000019445237,0.000018073559,0.000019448595,0.000017872711,0.000018586456,0.000017853581,0.000019480316,0.000018163564,0.000018437564,0.000017824184,0.000019544925,0.000017868588,0.000018584791,0.000017481572,0.000019690908,0.000018416722,0.000019572288,0.00001817046,0.000019693614,0.000017866067,0.000018481996,0.000017698401,0.000019524543,0.000018193505,0.000018494797,0.000017832464,0.000019652094,0.000017915783,0.000018599596,0.00001735897,0.000019569563,0.000018297207,0.000019448407,0.000018076145,0.000019597763,0.00001782954,0.000018461016,0.000017682762,0.00001946533,0.000018141596,0.000018451054,0.000017775636,0.000019587374,0.000017877554,0.000018548015,0.000017327942,0.000019554265,0.000018289687,0.000019406853,0.000018019398,0.000019551077,0.000017784927,0.000018413735,0.000017641747,0.000019442512,0.000018122939,0.00001842981,0.000017759963,0.00001957324,0.000017863918,0.000018528428,0.00001731088,0.000019536801,0.000018276907,0.000019390629,0.0000180014,0.000019535011,0.000017770619,0.000018408644,0.000017653883,0.000019467838,0.000018131444,0.000018419601,0.00001773938,0.000019559806,0.000017860733,0.000018529186,0.000017314711,0.000019544104,0.000018277831,0.000019389981,0.000018000213,0.000019529814,0.000017753748,0.000018382856,0.000017619437,0.0000194353,0.000018111898,0.00001841449,0.00001773285,0.000019553612,0.000017848508,0.000018506935,0.000017297265,0.000019533316,0.000018277813,0.00001938619,0.0000179963,0.000019532068,0.00001776235,0.000018391114,0.000017627219,0.00001943936,0.000018120501,0.000018428422,0.000017750006,0.000019570049,0.000017863305,0.0000185309,0.000017317105,0.000019560384,0.000018304083,0.000019427036,0.000018039085,0.000019593745,0.000017826887,0.00001846806,0.000017696275,0.000019507701,0.000018196039,0.00001852613,0.000017876087,0.000019732246,0.000018019948,0.000018687551,0.000017452605,0.00001973057,0.000018443085,0.000019555178,0.000018135126,0.00001971936,0.000017931594,0.000018568793,0.000017748229,0.000019530728,0.0000180838,0.000018303628,0.000017724093,0.000019694815,0.000018025483,0.000018526925,0.000017394466,0.000019853522,0.000018744668,0.000019720526,0.00001813077,0.000019590047,0.000017845752,0.000018469698,0.000017671282,0.00001971889,0.00001841825,0.000019094889,0.000018371638,0.000020249452,0.00001815025,0.000018764878,0.000017390585,0.000019511608,0.000018314053,0.000019773763,0.000018579316,0.00002042924,0.000018690278,0.000019365089,0.000018614663,0.000020530095,0.00001961912,0.00002023289,0.000019190951,0.00002105799,0.000018973706,0.000019485353,0.000018164414,0.000020199615,0.000019131563,0.000020529586,0.000018891897,0.000020597969,0.00001886831,0.000019458186,0.000018370903,0.000020106958,0.000019365401,0.000020365282,0.000019456924,0.00002085683,0.000019017709,0.000019329995,0.000018647639,0.000019720319,0.000019501711,0.000020391633,0.000020299316,0.00002199129,0.000021692867,0.000022661738,0.00002146359,0.00002315665,0.0000253107,0.000026565805,0.00001937804,0.000015298114,0.000010640125,0.000013942069],[0.000016661508,0.000011682659,0.000013327204,0.000020031111,0.000031355976,0.00003080114,0.00002748815,0.000023171518,0.000021295647,0.000020716561,0.000020900097,0.000019761057,0.000020338788,0.00001930494,0.000019796518,0.000018685929,0.000019823081,0.00001969611,0.000020691801,0.00001909693,0.000020421721,0.000020125875,0.000020465624,0.000018927656,0.000019617379,0.000018937606,0.000019891253,0.000018476869,0.000019606456,0.000019329276,0.00002001175,0.000018504765,0.000019719002,0.000019275709,0.00002041438,0.000018510484,0.000019783703,0.00001933383,0.000019979427,0.000018622812,0.000019775915,0.00001952881,0.000020316922,0.000018454732,0.000019206404,0.000018979117,0.000019514251,0.000018135612,0.000019318128,0.000019395306,0.00002040276,0.000018589632,0.00001942535,0.000019012523,0.000019427183,0.00001814362,0.000019165327,0.00001909254,0.000019833858,0.000018003802,0.000019142311,0.00001933988,0.000019734598,0.000018066923,0.000019318828,0.000019604644,0.00002054684,0.000018949022,0.000019754934,0.000019254783,0.00001943862,0.000017996816,0.000019082183,0.000019141748,0.000019910365,0.00001801507,0.000019182095,0.000019390072,0.00001981913,0.000018092356,0.000019238887,0.000019466705,0.00002041031,0.000018780293,0.000019633193,0.00001917584,0.000019409388,0.00001798424,0.000019056795,0.000019087516,0.000019831305,0.000017955226,0.000019152356,0.000019378278,0.00001977925,0.00001807811,0.000019243145,0.0000194795,0.000020392237,0.000018776604,0.000019607298,0.000019144029,0.000019368043,0.000017943792,0.000019025,0.00001907587,0.000019818412,0.000017939805,0.000019142715,0.000019374287,0.000019767636,0.000018063134,0.00001922977,0.000019469582,0.00002038621,0.000018767616,0.0000195981,0.000019133953,0.000019355155,0.000017939821,0.000019042009,0.000019104762,0.000019831872,0.00001793404,0.000019134135,0.000019371499,0.000019765317,0.00001806546,0.000019243273,0.000019481284,0.000020388445,0.000018773648,0.00001960552,0.00001913189,0.000019341871,0.000017912265,0.000019010127,0.000019071867,0.000019806677,0.000017918706,0.000019125433,0.000019360934,0.000019751242,0.000018050012,0.000019227351,0.000019474855,0.000020389962,0.000018771965,0.00001960197,0.000019132201,0.000019347293,0.000017917579,0.000019013502,0.000019076106,0.000019817146,0.000017930894,0.000019137986,0.000019371997,0.000019775649,0.000018072627,0.000019248137,0.00001949643,0.000020416523,0.000018801078,0.000019633999,0.000019173132,0.00001940045,0.000017978306,0.000019064957,0.000019120984,0.000019896414,0.000018057692,0.000019268633,0.000019474151,0.00001989112,0.000018183237,0.00001937765,0.000019614197,0.000020550586,0.000018909903,0.000019746702,0.000019262534,0.000019492601,0.00001799105,0.00001905756,0.00001904415,0.000019693614,0.000017829761,0.000019177358,0.00001962434,0.000019973351,0.00001828416,0.00001954157,0.0000199026,0.000020882168,0.000019307667,0.000019928695,0.000019174833,0.000019327654,0.000017808045,0.00001906872,0.00001924641,0.000020216303,0.000018328643,0.000019731757,0.00001964471,0.000019927327,0.00001798846,0.000019235878,0.000019391404,0.000020281863,0.000018867662,0.000020028703,0.000019730891,0.000020105232,0.000018667282,0.000019728745,0.000019958767,0.00002135719,0.000019679532,0.000020686297,0.000020388172,0.000020828567,0.000018848581,0.000019932631,0.000020061374,0.00002128929,0.000019773688,0.000020716918,0.000019885203,0.000020358815,0.000018631836,0.000019693107,0.000019679439,0.000021035972,0.000019717498,0.000020870679,0.000020560306,0.000020413989,0.000019060159,0.000019517767,0.000019601466,0.000020163681,0.000019580204,0.000020689098,0.00002051172,0.000021456568,0.000020924886,0.00002092746,0.000021198264,0.000025813119,0.000023990106,0.000020323354,0.000014805376,0.0000113269625,0.000012902228],[0.000017502809,0.000012136944,0.000013996502,0.00002052706,0.0000323072,0.00003122016,0.000025062414,0.000022273376,0.0000194152,0.000019954921,0.000018731962,0.00001958956,0.000018508717,0.000019352534,0.00001825999,0.000019287294,0.000018681583,0.000020335026,0.000018752857,0.000019474335,0.00001902226,0.000020524105,0.000019181309,0.000019720621,0.000018478031,0.000019625331,0.000018279521,0.000018627607,0.00001811658,0.00001946548,0.000018263543,0.000018868437,0.000018110983,0.000019959432,0.000018439057,0.000019079143,0.000018332192,0.000019978934,0.000018483284,0.000019250578,0.000018318875,0.000019958976,0.00001845732,0.000018509954,0.000017781469,0.000018961695,0.00001770031,0.000018306666,0.000017800896,0.000019908675,0.000018218298,0.0000189254,0.000017951425,0.000019507794,0.000018054712,0.000018851188,0.000018114402,0.000019845913,0.000018033203,0.000018137498,0.000017566286,0.000019355784,0.00001779329,0.000018508365,0.000018106268,0.00002071184,0.00001882478,0.00001969521,0.000018440218,0.000020098485,0.000018178329,0.000018877075,0.00001818008,0.000020063499,0.000018121573,0.000018268647,0.000017594855,0.000019470714,0.000017836614,0.000018561002,0.000018070354,0.00002056615,0.000018681707,0.000019480038,0.000018304083,0.000019967885,0.000018134418,0.000018815914,0.000018099621,0.000019943202,0.000018037314,0.000018157398,0.00001754432,0.000019454234,0.000017833298,0.000018555324,0.000018071232,0.000020594412,0.000018689227,0.000019501023,0.00001831124,0.000019968686,0.00001811074,0.000018782155,0.00001808242,0.000019934683,0.000018026394,0.000018139728,0.000017534301,0.000019445404,0.000017828163,0.000018541543,0.000018061739,0.0000205855,0.00001868283,0.000019496301,0.000018306422,0.000019965943,0.00001810663,0.000018779754,0.000018094772,0.000019963829,0.00001804497,0.000018138604,0.00001752875,0.000019444922,0.00001783289,0.000018544,0.000018069888,0.000020596694,0.000018687997,0.00001950346,0.000018309058,0.000019964573,0.000018090837,0.000018757273,0.00001806851,0.000019931165,0.00001801878,0.000018125616,0.000017516986,0.000019436004,0.00001782104,0.000018531768,0.000018058277,0.000020592568,0.000018689727,0.000019498011,0.00001830122,0.000019960002,0.000018095272,0.000018758312,0.00001807149,0.000019931755,0.000018025192,0.000018135439,0.000017523202,0.000019444014,0.000017825205,0.00001854761,0.00001807556,0.000020617032,0.000018711018,0.00001952747,0.000018335111,0.000020009098,0.00001814331,0.000018823828,0.000018121937,0.000020001638,0.000018124321,0.000018271192,0.000017640907,0.000019537507,0.000017924773,0.000018670147,0.000018182074,0.000020729229,0.000018806817,0.000019643887,0.000018447254,0.000020132324,0.000018204802,0.00001877911,0.00001804461,0.000019885829,0.000017921919,0.000018077351,0.000017586784,0.000019724193,0.000018111536,0.000018808127,0.00001843055,0.000021199803,0.000019434021,0.000020209076,0.000018680157,0.000020095802,0.000018079973,0.000018561039,0.000018056797,0.000020057778,0.000018311259,0.00001843897,0.00001765577,0.000019610383,0.000017643566,0.000018322735,0.000017748771,0.000020262607,0.000018573983,0.00001967775,0.000018649826,0.000020511445,0.000018776711,0.000019531268,0.000018656994,0.000020433896,0.000019186613,0.000019638886,0.000018885485,0.000020459187,0.000018681172,0.0000190808,0.000018509654,0.000020681464,0.000019493622,0.000020538595,0.00001953069,0.000020947688,0.00001924509,0.000019766692,0.000018681636,0.000020351554,0.000018940007,0.000019915853,0.000018994,0.000020653852,0.00001920459,0.000019506435,0.00001883798,0.000020034875,0.000019606663,0.000020205298,0.00002005156,0.000020843885,0.000020686928,0.000021725225,0.000020828367,0.00002251734,0.000023465967,0.000025942089,0.000021073036,0.000015908923,0.000010934671,0.000013317154],[0.000016928452,0.000011877908,0.000012228238,0.000020770547,0.000031853542,0.000032831194,0.00002714238,0.000023090584,0.000020791456,0.000020591508,0.000020420981,0.000019774123,0.000020213509,0.000019633419,0.000020152012,0.000019729969,0.000020542511,0.00002034488,0.00002032512,0.000019221538,0.000020447524,0.000020469432,0.000020847981,0.000019895011,0.000020317444,0.000019805866,0.000019678406,0.000018605362,0.00001952501,0.000019610814,0.000020136644,0.000019058667,0.000020117084,0.000019968209,0.0000205759,0.000019089392,0.000020263342,0.000020015128,0.000020680576,0.000019372219,0.00002035501,0.000020008296,0.000020305552,0.000018694842,0.000019317962,0.000019282548,0.000019694025,0.000018471143,0.000019979867,0.000019959127,0.000020493615,0.000018718158,0.000019674353,0.000019404262,0.000020046169,0.000019016928,0.000020143136,0.000019807396,0.000019935997,0.000018192619,0.000019128296,0.000019338846,0.000019876177,0.000018633718,0.000020545744,0.000020780295,0.000021265043,0.000019487637,0.000020314443,0.000019863633,0.000020116528,0.000019053234,0.000020185442,0.000019977962,0.000020041352,0.00001827222,0.000019236355,0.000019418256,0.000019932972,0.000018673049,0.0000204916,0.00002065403,0.000021088756,0.000019323637,0.000020186539,0.000019786232,0.000020096626,0.000018996338,0.000020100975,0.000019864867,0.00001995869,0.00001818889,0.00001916776,0.000019427647,0.000019964325,0.000018704615,0.000020528332,0.000020711623,0.000021117457,0.000019352425,0.000020207417,0.000019807982,0.000020089668,0.00001899304,0.000020097334,0.000019873676,0.000019955738,0.00001818046,0.000019156629,0.000019427629,0.000019958652,0.000018698462,0.000020515201,0.000020704356,0.000021110933,0.000019350764,0.000020208921,0.000019812082,0.000020087178,0.000018993946,0.000020107647,0.000019892032,0.000019967923,0.000018184484,0.000019155716,0.000019431334,0.000019963487,0.000018705274,0.000020528138,0.000020723872,0.000021122754,0.000019359142,0.0000202132,0.000019812931,0.000020078349,0.000018973325,0.000020084843,0.000019870266,0.000019950907,0.00001817136,0.000019151552,0.000019424571,0.000019954046,0.000018697445,0.000020519545,0.000020715357,0.000021116168,0.000019352867,0.000020201252,0.00001980462,0.000020078007,0.000018978826,0.000020087544,0.00001987324,0.000019955967,0.000018176734,0.000019156136,0.000019426518,0.000019959298,0.000018709841,0.000020540494,0.000020735397,0.000021141052,0.000019369872,0.000020233623,0.000019838153,0.000020114343,0.000019024692,0.0000201406,0.000019935691,0.00002003514,0.000018273142,0.000019250836,0.000019494702,0.00002002156,0.000018780544,0.000020618663,0.000020811112,0.000021218735,0.000019460858,0.000020305184,0.000019889128,0.000020086796,0.000018941688,0.000020009213,0.000019829264,0.000019832063,0.000018135612,0.000019263965,0.000019735126,0.00002025886,0.000019070958,0.000020892863,0.0000213825,0.000021912034,0.00001998446,0.00002052017,0.00001982917,0.000020028247,0.000018811787,0.000020099424,0.000019990883,0.000020385567,0.000018445917,0.000019495426,0.000019499053,0.000019966381,0.000018559127,0.000020221645,0.00002028666,0.000020854703,0.000019394753,0.000020486168,0.000020173644,0.000020506672,0.000019576395,0.000020347248,0.000020230575,0.000020398189,0.000019197723,0.000020003106,0.00002033299,0.000020604079,0.00001931074,0.00002062594,0.000020960937,0.000021654092,0.000020393889,0.000021221162,0.000020593097,0.000020984216,0.000019768937,0.000020519605,0.000019971618,0.000020566033,0.000019220126,0.000019963752,0.000020212468,0.000020314945,0.00001951211,0.000019595484,0.000019772708,0.000019459112,0.000019794687,0.000019878205,0.000020656373,0.000021137404,0.000021324402,0.000021311105,0.000021981625,0.000025205389,0.00002390898,0.000021075448,0.000016228294,0.000011348014,0.000012792804],[0.000016422107,0.0000119691385,0.000011819398,0.000017717603,0.000028304303,0.000033574597,0.000026888816,0.000023884528,0.000020308438,0.000020624955,0.000019231293,0.000019778347,0.00001847782,0.000019350062,0.000018599667,0.000020084133,0.000019184858,0.000020549232,0.000018860072,0.000019380626,0.000018819359,0.000020347094,0.000019228322,0.000020232794,0.00001885223,0.000019898443,0.000018438108,0.000018678767,0.000018270634,0.000019552606,0.00001880472,0.000019473222,0.000018433431,0.000019822135,0.000018667639,0.000019105053,0.00001848025,0.000019802996,0.000018957156,0.00001955337,0.000018670042,0.000019749039,0.000018714374,0.000018501536,0.00001816218,0.000018929048,0.000018427947,0.000018654593,0.000018424364,0.00001967197,0.000018580165,0.00001862878,0.00001796009,0.00001905456,0.00001839015,0.000019008152,0.000018458288,0.00001964769,0.000018297626,0.00001803162,0.000017882294,0.00001886149,0.000018150336,0.000018473698,0.00001842424,0.000020133437,0.000018836776,0.000019105199,0.000018114455,0.000019442345,0.000018431218,0.00001898643,0.000018428791,0.000019855906,0.000018394236,0.000018186895,0.000018025808,0.000019069957,0.000018272289,0.000018532739,0.000018422852,0.000020071899,0.000018807033,0.000019038067,0.00001813516,0.00001941872,0.000018432307,0.000018957646,0.00001836775,0.000019718174,0.000018300208,0.000018085559,0.000017952196,0.000018996718,0.000018245333,0.000018536575,0.00001841976,0.000020090245,0.000018781671,0.000019007102,0.000018093322,0.000019404835,0.000018415878,0.000018934265,0.000018353392,0.000019725283,0.000018287072,0.000018071472,0.000017938763,0.00001899679,0.000018238114,0.000018525547,0.00001840947,0.000020087638,0.00001877159,0.000019001174,0.000018092787,0.00001940861,0.000018414052,0.000018934661,0.000018364142,0.000019747495,0.000018301516,0.00001807444,0.000017942884,0.00001899967,0.000018243785,0.000018527102,0.000018419145,0.000020100248,0.000018781402,0.000019004872,0.000018092787,0.000019407702,0.000018404853,0.000018912482,0.000018339972,0.000019717987,0.00001827675,0.000018054438,0.000017928414,0.000018985924,0.000018227995,0.000018515744,0.000018404151,0.000020085858,0.000018771143,0.000018991337,0.000018081644,0.000019398043,0.000018412156,0.000018923956,0.000018352062,0.000019728783,0.000018296509,0.000018072438,0.000017945435,0.00001899871,0.000018250797,0.000018537581,0.000018436718,0.000020111811,0.000018809813,0.000019034274,0.000018126517,0.000019447018,0.000018459767,0.000018994924,0.00001842157,0.000019817087,0.00001838205,0.000018171031,0.000018024108,0.000019076379,0.000018310351,0.000018614395,0.000018509601,0.000020187348,0.000018865396,0.000019089553,0.000018121054,0.00001939183,0.000018374023,0.00001888806,0.000018291188,0.00001967017,0.000018141285,0.000017945162,0.000017863254,0.000019099278,0.000018336981,0.000018651213,0.00001852454,0.000020450623,0.000019153797,0.000019311883,0.000018126015,0.000019339528,0.000018433871,0.000018820525,0.000018430988,0.00001999418,0.00001866641,0.000018565323,0.000018131615,0.000019264426,0.000018170686,0.0000184389,0.000018196612,0.000019777668,0.000018628956,0.000019122352,0.000018128936,0.000019638886,0.000018694913,0.000019579551,0.000018741772,0.000020196976,0.000018800614,0.00001911568,0.000018799503,0.000020247946,0.000019215711,0.000019426923,0.00001905645,0.00002085172,0.000019503274,0.000020175741,0.000018575773,0.000020261874,0.000018900853,0.00001988215,0.000018457004,0.000020217652,0.00001852795,0.000019397583,0.000018531518,0.000020343698,0.000019341871,0.00001998747,0.000018730836,0.000019581174,0.000018786328,0.000019175748,0.000019015115,0.000019991588,0.000020530722,0.000021409107,0.000021062287,0.000022452432,0.000024505778,0.000025411891,0.000020348643,0.000015252154,0.000011121088,0.000013397047],[0.000016395863,0.000011142097,0.000010491173,0.000015442642,0.000027736489,0.000036290614,0.00003166863,0.000025559077,0.00002238801,0.00002132245,0.000021016562,0.000019438377,0.000019863273,0.000019090938,0.000019904803,0.000018912951,0.000020434636,0.000019909814,0.000020497386,0.000018699495,0.000019962668,0.000019526537,0.000020532678,0.000019293419,0.000019951685,0.00001905685,0.000019385654,0.000018193105,0.000019193458,0.00001914529,0.00002001591,0.000018879093,0.000019654139,0.000018945608,0.000019862307,0.000018265528,0.000019629786,0.000019179352,0.000020495097,0.000018917299,0.000019701578,0.000019239016,0.000019887573,0.000018472922,0.000019110028,0.000019036379,0.000019635236,0.000018630164,0.000019344527,0.000018986504,0.000019893094,0.00001819163,0.00001901312,0.000018501165,0.00001967047,0.000018427807,0.000019412331,0.000018963938,0.000019585264,0.000017936572,0.000018753213,0.00001863564,0.000019260071,0.000018210307,0.000019255187,0.000018871782,0.000019985982,0.000018230272,0.000019198384,0.000018461333,0.000019688807,0.000018344188,0.00001942898,0.0000189753,0.000019682255,0.000018013729,0.000018897537,0.000018771643,0.0000194452,0.000018267498,0.000019285399,0.000018847431,0.000019967505,0.000018233559,0.0000192443,0.000018537034,0.000019753992,0.000018364526,0.00001940289,0.000018919842,0.00001959782,0.000017946153,0.000018837009,0.000018707575,0.00001939159,0.000018255689,0.000019313024,0.000018857912,0.00001994556,0.000018190069,0.000019210891,0.000018484481,0.000019712648,0.00001833693,0.00001939514,0.000018918616,0.000019601148,0.000017935734,0.000018832447,0.000018707273,0.000019388113,0.000018246239,0.00001930319,0.000018857338,0.000019942765,0.000018181381,0.000019205012,0.000018488767,0.00001971199,0.00001834265,0.00001940539,0.000018943945,0.000019612384,0.000017940267,0.000018831728,0.00001870902,0.000019385228,0.000018250415,0.000019310832,0.00001886939,0.000019950488,0.000018187,0.0000192086,0.000018485203,0.000019700676,0.000018320603,0.000019378409,0.000018908515,0.000019585863,0.000017919407,0.00001881749,0.00001869083,0.000019370407,0.000018235663,0.000019297266,0.000018851943,0.000019938469,0.000018176266,0.000019195253,0.000018477644,0.00001970962,0.000018338329,0.000019391757,0.000018922892,0.000019607596,0.000017942646,0.000018834278,0.000018709145,0.000019394547,0.000018266226,0.000019325646,0.0000188718,0.00001996341,0.000018221477,0.00001923986,0.00001851864,0.000019755651,0.00001840501,0.000019468134,0.000018992696,0.000019647618,0.000017988647,0.000018871891,0.000018759063,0.000019431354,0.000018310315,0.000019354657,0.00001891378,0.00001996659,0.000018199544,0.000019132456,0.000018394587,0.000019617828,0.000018293194,0.00001935604,0.00001883311,0.000019407054,0.00001774784,0.000018638748,0.000018627074,0.000019324594,0.000018219234,0.00001927025,0.000018872935,0.000020006006,0.00001826121,0.000019139283,0.00001828967,0.000019646117,0.000018317704,0.00001957912,0.000019146657,0.000020228896,0.000018457637,0.000019418367,0.000019042407,0.000019635889,0.00001826403,0.00001937137,0.00001888244,0.000019885014,0.000018111776,0.000019341021,0.000018650964,0.000020367068,0.000018768458,0.000019927766,0.000019451561,0.000020234935,0.000018776424,0.000019712252,0.000019784025,0.000020298814,0.000019024419,0.00002005332,0.000019785874,0.000020344454,0.000018781026,0.000019764339,0.000018833649,0.000020347617,0.0000187739,0.000020003545,0.000019308143,0.000020242365,0.000018765755,0.000019811174,0.000019930976,0.000020637215,0.000019556652,0.000019645275,0.00001899784,0.000019094688,0.000018397868,0.00001943845,0.000019623012,0.00002072913,0.000020438574,0.00002076611,0.000021208074,0.0000256701,0.00002405767,0.00002018292,0.000014476353,0.000011138974,0.000013650754],[0.000017096794,0.000011164583,0.000011068429,0.0000147172395,0.000027968663,0.00003375911,0.00002824528,0.000024180312,0.000021135085,0.000020338945,0.000019130559,0.00001916328,0.000018355493,0.000018747705,0.000018083507,0.000018927693,0.000019015404,0.000020233701,0.000018900131,0.000019186265,0.000018764234,0.000020186884,0.000018880171,0.000019729987,0.000018588637,0.000019610534,0.000018382067,0.000018801096,0.00001837793,0.000019610943,0.00001881909,0.000019226452,0.000018536857,0.000019476882,0.000018674831,0.00001895262,0.000018650217,0.000019797651,0.000019073505,0.000019503925,0.00001889658,0.000019741845,0.000019251313,0.000018899844,0.000018855933,0.000019299474,0.000018930654,0.000018748136,0.000018745919,0.000019218882,0.000019088662,0.000018547113,0.00001846607,0.000018991428,0.0000186592,0.000018961497,0.000018829016,0.000019649415,0.00001904971,0.000018502276,0.000018456985,0.000018877454,0.000018330635,0.000018153418,0.000018347162,0.00001900411,0.00001880872,0.000018357137,0.00001828259,0.000018907596,0.000018406326,0.000018882854,0.000018691526,0.00001972346,0.000019006811,0.000018636758,0.000018549837,0.00001906423,0.000018474771,0.00001834312,0.000018420918,0.000019038867,0.000018841123,0.000018445635,0.00001838987,0.000019026651,0.000018510676,0.00001891683,0.000018700655,0.000019650202,0.000018958694,0.000018517703,0.000018466264,0.000018964607,0.000018399254,0.000018243873,0.000018390308,0.000019029918,0.0000188115,0.000018379087,0.000018331999,0.000018962617,0.000018445706,0.000018873745,0.000018674973,0.000019651101,0.0000189466,0.000018513114,0.000018455963,0.000018964407,0.000018389783,0.000018235593,0.00001837793,0.000019023875,0.00001880325,0.000018373234,0.000018324517,0.00001896598,0.000018445318,0.000018881252,0.000018685609,0.000019682742,0.000018967175,0.000018521008,0.000018456334,0.000018969817,0.000018395043,0.000018231418,0.000018382156,0.000019031586,0.00001881272,0.000018371464,0.000018323015,0.000018951987,0.000018428633,0.000018850433,0.000018660998,0.000019644282,0.000018932802,0.000018489542,0.000018436507,0.000018943041,0.000018373075,0.000018216333,0.0000183729,0.000019019993,0.000018801204,0.00001836155,0.000018317161,0.000018950324,0.000018445213,0.000018875131,0.000018682313,0.000019660773,0.00001896155,0.000018525425,0.00001846415,0.000018970739,0.000018409082,0.000018253932,0.00001840624,0.000019043715,0.000018837476,0.000018416757,0.000018378858,0.000019019848,0.000018522085,0.000018964243,0.000018759456,0.000019716219,0.00001901321,0.000018581246,0.000018526165,0.00001902745,0.000018455348,0.000018299947,0.000018440674,0.00001905945,0.000018797458,0.00001834543,0.000018273491,0.000018878498,0.000018405097,0.000018866223,0.000018639548,0.000019554023,0.00001874363,0.000018297435,0.000018253897,0.000018842416,0.000018322316,0.000018136909,0.000018305811,0.000018915387,0.000018872935,0.000018381419,0.000018324536,0.00001872914,0.00001840559,0.000018774508,0.0000187263,0.000019798805,0.000019261191,0.000018967212,0.000018739376,0.000019251202,0.000018519135,0.000018188317,0.000018268316,0.000018821476,0.000018626559,0.00001829049,0.000018396026,0.000019273595,0.000018826648,0.000019437006,0.000018983172,0.000019970055,0.00001923885,0.000019289097,0.00001904317,0.000020013087,0.000019040337,0.000018848312,0.0000187248,0.000019487898,0.000019009205,0.000018840781,0.000018436316,0.00001951747,0.00001879941,0.000019843528,0.000018778788,0.000020239915,0.000018829825,0.000019670526,0.000019004472,0.000020555444,0.000019621757,0.00001992769,0.00001927786,0.00001954118,0.000019362264,0.00001939281,0.000019853955,0.000020744199,0.00002068255,0.00002144634,0.000020704198,0.00002228026,0.000023901024,0.000026630209,0.000020879896,0.00001551018,0.000010513389,0.000014099255],[0.00001717458,0.000010965874,0.000010304125,0.000014595875,0.000025355563,0.00003519102,0.000028179014,0.000024620862,0.00002152141,0.00002078406,0.000020098658,0.000019653406,0.000019666999,0.000019310226,0.000019297522,0.000019268431,0.000020239142,0.00002021584,0.000020227759,0.000019338164,0.00002038895,0.000020355224,0.000020467909,0.00001949193,0.00002000633,0.000019587544,0.000019689369,0.000018955205,0.00001962958,0.000019810022,0.000019950678,0.000019285362,0.000019670939,0.000019580204,0.000020110258,0.000019405556,0.000020260462,0.000020119636,0.000020488336,0.000019481768,0.000019833084,0.00001989854,0.000020173875,0.000019391553,0.000019490557,0.000019727411,0.000019452193,0.000018947614,0.000019204352,0.000019582314,0.000020005282,0.000019323048,0.000019605484,0.000019635047,0.00001977035,0.000019184565,0.000019664261,0.000019732943,0.000020046991,0.000019044386,0.00001923863,0.00001932924,0.000018936611,0.000018365947,0.000018830273,0.000019192434,0.000019760417,0.000019137182,0.000019593785,0.000019507963,0.000019647203,0.00001907083,0.000019660323,0.000019679776,0.00002008419,0.000019121368,0.000019429666,0.000019474819,0.000019103541,0.000018528215,0.000018938039,0.000019242576,0.000019787214,0.0000192071,0.000019735577,0.000019614423,0.000019765865,0.000019098205,0.000019660174,0.000019653782,0.00002002116,0.000019047038,0.00001933466,0.000019394975,0.000019031677,0.000018444194,0.00001887209,0.000019226763,0.000019784082,0.000019172914,0.000019689838,0.000019565887,0.000019718156,0.00001906752,0.000019648553,0.000019648029,0.000020026584,0.000019039957,0.000019334788,0.000019392088,0.000019029645,0.000018438037,0.000018865216,0.000019218898,0.000019782232,0.000019168527,0.000019686251,0.00001956975,0.000019720977,0.000019076579,0.000019658974,0.000019670751,0.000020038811,0.000019039484,0.000019325404,0.000019390443,0.000019024801,0.000018432413,0.000018865341,0.000019227864,0.000019790119,0.000019167503,0.000019676549,0.00001955089,0.000019697838,0.000019047784,0.000019635965,0.000019642015,0.000020013678,0.000019018524,0.000019313078,0.000019369965,0.000019009856,0.000018422272,0.000018857696,0.000019216974,0.000019779478,0.000019162348,0.000019679776,0.000019559711,0.000019713512,0.000019073377,0.00001965622,0.000019656538,0.000020033021,0.000019056324,0.000019345762,0.000019398987,0.00001903224,0.000018457355,0.000018884277,0.000019244686,0.000019804354,0.000019216792,0.000019744764,0.000019645873,0.000019797764,0.000019142732,0.000019691022,0.0000196935,0.000020067382,0.000019099769,0.000019369041,0.00001941546,0.000019048382,0.000018477554,0.000018863902,0.000019182587,0.000019699773,0.000019122297,0.000019618763,0.000019529927,0.000019700958,0.000019059176,0.00001959199,0.000019563424,0.00001983384,0.000018807445,0.000019092431,0.000019189725,0.00001881898,0.000018312168,0.000018677682,0.000019048655,0.000019673565,0.000019202704,0.000019602587,0.000019337684,0.000019612404,0.000018983426,0.000019789553,0.00001978295,0.000020451735,0.00001943554,0.00001982571,0.000019721372,0.000019309766,0.000018575896,0.000018855646,0.000019135303,0.000019749301,0.000019362484,0.000020179572,0.00002010439,0.000020424195,0.000019715468,0.000020280722,0.000020240339,0.000020657553,0.000019803088,0.000020067535,0.000020243351,0.00001969151,0.000018827634,0.00001930853,0.000019612851,0.000020126448,0.000019572923,0.0000201901,0.000019995134,0.000020757736,0.00001981811,0.000020598362,0.000020183767,0.000020807283,0.00001974177,0.000020628064,0.000020538202,0.000020256502,0.000019858311,0.000019799898,0.000020134263,0.000020138794,0.000020143367,0.000020663405,0.000021565662,0.000021421667,0.000021426184,0.00002112761,0.000021556307,0.000025221236,0.000024536646,0.00002194903,0.000016041635,0.000011146721,0.000013545442],[0.000016617521,0.000010795969,0.00001062599,0.000012936702,0.000023477025,0.000033905813,0.000026941,0.000024098405,0.000020741687,0.000020687541,0.000019643006,0.000020290123,0.000018934426,0.000019249605,0.00001874599,0.000019485613,0.000019164961,0.000020258221,0.00001907618,0.00001979782,0.000019258732,0.000020547448,0.000019188077,0.000019669213,0.00001847255,0.000019659707,0.000018476516,0.000019406816,0.000018709236,0.00002015578,0.000018934175,0.000019548,0.000018418461,0.000019766523,0.000019005814,0.000019940844,0.000019355117,0.000020526473,0.000019435709,0.000019928051,0.000019000776,0.000020305899,0.000019836545,0.000020018582,0.00001941185,0.00001999136,0.000019275782,0.00001937281,0.000018975823,0.000019892675,0.000019827543,0.000019893625,0.000019510177,0.000020086547,0.000019321315,0.00001975908,0.000019140469,0.000020234878,0.000019768031,0.000019795065,0.000019343695,0.00001978995,0.000018813653,0.000018804236,0.000018452076,0.000019371868,0.000019380626,0.000019560102,0.000019380293,0.000020065678,0.000019060068,0.000019643625,0.000018924407,0.000020191486,0.000019602885,0.00001983787,0.000019397285,0.000020000321,0.000018906892,0.00001898232,0.000018520901,0.000019496227,0.000019434947,0.000019671239,0.00001946572,0.000020165045,0.0000191544,0.000019678575,0.000018947721,0.000020169336,0.000019588982,0.000019777912,0.00001933759,0.000019902107,0.00001883234,0.00001888496,0.00001845283,0.000019422941,0.000019394474,0.00001961388,0.00001940539,0.0000201158,0.000019098841,0.00001963503,0.000018911292,0.00002015063,0.000019554975,0.00001974401,0.000019306874,0.00001988251,0.000018806782,0.000018867302,0.000018433186,0.00001940726,0.000019378149,0.000019605372,0.000019397767,0.00002011816,0.00001909427,0.000019644149,0.000018922765,0.000020161393,0.00001954843,0.000019726902,0.000019293273,0.000019869034,0.000018803015,0.000018859999,0.000018436807,0.000019416848,0.00001939268,0.000019605633,0.000019391515,0.000020096972,0.000019084986,0.000019620073,0.000018899575,0.000020136375,0.000019541478,0.000019721465,0.00001928823,0.000019859977,0.000018791543,0.0000188502,0.000018427121,0.00001941098,0.000019382807,0.000019597652,0.00001939366,0.000020113921,0.000019104087,0.000019645275,0.00001892466,0.000020166028,0.000019578578,0.000019780233,0.000019334511,0.000019910156,0.000018835985,0.00001890244,0.000018467708,0.000019455105,0.00001944483,0.000019693369,0.000019496914,0.000020221663,0.000019199519,0.00001972408,0.000018982737,0.000020220275,0.000019630741,0.000019825728,0.000019382253,0.000019942574,0.000018864046,0.000018895698,0.000018417142,0.000019350116,0.000019324116,0.000019594101,0.000019418607,0.00002009812,0.000019101974,0.000019594045,0.000018845165,0.00002001366,0.000019360565,0.000019475228,0.000019064975,0.000019668389,0.000018670895,0.000018710289,0.000018329569,0.000019297413,0.00001937146,0.00001960369,0.000019350764,0.000019995763,0.000019159334,0.000019711877,0.000019073905,0.000020506868,0.000019986537,0.000020262858,0.0000196592,0.000020263826,0.000019076633,0.000018933237,0.000018484236,0.000019289188,0.000019471365,0.00001983193,0.000019726356,0.000020551388,0.000019591167,0.000020155068,0.000019475841,0.000020763597,0.000020529507,0.000021014435,0.000020247811,0.000021038237,0.000019576431,0.000019359697,0.000018901701,0.000019915093,0.000019560886,0.000020078964,0.00001944967,0.000020775104,0.000019288324,0.000020230787,0.000018826091,0.000020515241,0.00001925414,0.000020362504,0.000019560683,0.00002100035,0.0000194855,0.000019922729,0.00001929386,0.00002019684,0.000020423533,0.000020595178,0.000020499536,0.000021254844,0.000021492386,0.000021901253,0.000021014277,0.000021253283,0.000023283912,0.000025108728,0.00002166285,0.000015826648,0.000010940543,0.000013595008],[0.000016878254,0.000010299734,0.000010103815,0.000012330786,0.000023608884,0.00003689054,0.000030672607,0.000024977615,0.000021842352,0.00002113726,0.000020990341,0.000019932859,0.000019865282,0.000019301646,0.000019505747,0.000018890221,0.000019951896,0.00001978257,0.000020462172,0.00001902099,0.000020272639,0.000019955587,0.000020317231,0.000019062449,0.000019679946,0.000018877867,0.000019507497,0.0000184035,0.000019596026,0.00001938826,0.000019926549,0.000018735946,0.000019480354,0.000019022751,0.000020137048,0.000019018144,0.000020476304,0.000020065794,0.000020739353,0.000019341796,0.000020050318,0.000019772518,0.000020744674,0.000019548932,0.000020070655,0.000019684394,0.000019954427,0.000019010273,0.000019503907,0.000019420128,0.00002038718,0.000019451061,0.000020177204,0.000019809153,0.000020267418,0.000019260844,0.000019905068,0.000019701129,0.000020494474,0.000019319305,0.000019806148,0.000019478719,0.000019491114,0.0000183898,0.000018832572,0.000018898114,0.000019922463,0.00001911566,0.000020021142,0.000019815388,0.000020285192,0.000019065175,0.000019790969,0.000019621983,0.000020412881,0.000019246576,0.00001983594,0.000019619381,0.000019655374,0.000018491393,0.000018974159,0.000019034618,0.000020082696,0.00001918976,0.000020126181,0.00001993725,0.000020414634,0.00001914874,0.000019839023,0.000019638532,0.000020400503,0.000019202687,0.000019781666,0.000019547404,0.000019577328,0.000018421868,0.00001889714,0.000018963286,0.000020003145,0.000019126328,0.000020066826,0.000019880747,0.000020371186,0.000019103121,0.000019805733,0.00001961665,0.000020376801,0.000019171835,0.00001975842,0.000019533596,0.000019566036,0.000018405695,0.000018879542,0.000018952638,0.000019996392,0.000019121277,0.000020058924,0.000019879837,0.00002036668,0.000019103978,0.000019796935,0.000019611767,0.000020360098,0.000019162495,0.000019742654,0.000019518196,0.00001955326,0.00001841075,0.000018888204,0.000018966704,0.00002000719,0.00001912733,0.000020051464,0.000019869905,0.0000203647,0.000019097075,0.000019790214,0.000019606176,0.000020363903,0.000019157069,0.00001973823,0.000019518997,0.000019554078,0.000018397746,0.000018878516,0.000018962237,0.00002000507,0.00001911721,0.000020054373,0.000019884841,0.00002038335,0.000019116991,0.00001981777,0.000019638119,0.000020403131,0.000019209005,0.000019792007,0.00001956014,0.000019591336,0.000018435963,0.000018916759,0.000019001338,0.000020059135,0.000019218149,0.000020152647,0.000019960537,0.000020441184,0.000019173534,0.00001985034,0.00001964857,0.000020405038,0.000019234467,0.000019811967,0.000019563537,0.000019545372,0.000018369958,0.000018822768,0.000018874123,0.000019918398,0.000019113453,0.000020043972,0.000019822475,0.000020291052,0.000019047075,0.000019691774,0.000019478553,0.000020143558,0.000018962925,0.00001943254,0.000019249495,0.000019300302,0.000018229854,0.000018678358,0.000018809347,0.000019921019,0.000019112087,0.000019999978,0.00001973872,0.000020525024,0.000019272382,0.00002018908,0.000020155338,0.000021103886,0.000019807414,0.000020386753,0.000019973979,0.000019819017,0.000018572051,0.000019075123,0.00001915221,0.000020262145,0.000019436264,0.000020631293,0.000020452164,0.000021110509,0.000019781231,0.000020543059,0.000020549447,0.0000217861,0.000020728714,0.000021002475,0.0000205073,0.000020138008,0.000018992334,0.00001935859,0.000019445868,0.000020251056,0.000019297082,0.00002026083,0.000019954465,0.000020838082,0.000019134008,0.000020040397,0.000019791894,0.00002060229,0.000019329018,0.000020181746,0.000020041065,0.000019802674,0.000019057505,0.000019324925,0.000019678311,0.000020356756,0.00001997198,0.00002060958,0.00002043257,0.000020947567,0.000020631192,0.000019987565,0.000020165144,0.000023191635,0.00002339413,0.000023470575,0.000015797727,0.000011962121,0.000012366092],[0.000017757693,0.000010980158,0.000010819117,0.000013210534,0.000024803861,0.000034699482,0.000028118106,0.000023474093,0.000020243408,0.000020215262,0.000019282163,0.000019602025,0.000018858937,0.000019201732,0.0000185692,0.000019041972,0.000018941904,0.000020025858,0.000018891393,0.000019097439,0.000018925059,0.000020104753,0.000018991917,0.000019502288,0.000018403114,0.000019507515,0.00001809648,0.000018826879,0.000018272935,0.000019956464,0.00001862949,0.000019452638,0.00001840208,0.000020145288,0.000019004492,0.000020001162,0.00001929355,0.000020930136,0.000019505562,0.00002035606,0.000019232595,0.000020691092,0.000019605597,0.000020066329,0.000019140176,0.000020185307,0.000018956704,0.000019715957,0.000018958746,0.00002045308,0.000019551617,0.000020144846,0.000019346371,0.000020571762,0.000019332098,0.000020211715,0.000019349029,0.000020855141,0.000019483383,0.000019922843,0.000018908155,0.00002009908,0.000018558401,0.000019161105,0.000018449717,0.000020020856,0.000019035399,0.000019726958,0.00001910724,0.000020615755,0.000019195308,0.000020073621,0.000019144758,0.000020861824,0.000019399931,0.00001996404,0.000018877488,0.000020314385,0.000018649933,0.00001934805,0.000018568493,0.000020271364,0.00001925181,0.000019996298,0.000019286557,0.000020851361,0.000019372237,0.00002021802,0.000019225774,0.00002088854,0.00001940922,0.0000199097,0.000018814262,0.000020226678,0.000018572726,0.000019241126,0.000018477327,0.000020168316,0.000019145707,0.000019862706,0.000019187108,0.00002076522,0.000019302584,0.00002015576,0.000019176352,0.000020867732,0.000019374122,0.000019877942,0.000018791383,0.000020221027,0.000018561215,0.000019231293,0.000018465982,0.00002016549,0.00001913689,0.000019857991,0.0000191814,0.000020762725,0.000019284405,0.000020141695,0.000019171835,0.000020882764,0.000019390258,0.000019893321,0.000018797744,0.000020214722,0.000018562969,0.000019243767,0.000018486633,0.000020184787,0.000019152427,0.0000198621,0.000019181984,0.000020756766,0.000019298332,0.000020155587,0.000019174633,0.000020860192,0.000019365016,0.000019867233,0.000018779521,0.000020211195,0.000018553677,0.000019229496,0.000018469802,0.000020183015,0.000019153615,0.000019866418,0.000019187053,0.000020779997,0.000019319841,0.000020183921,0.00001920252,0.000020900077,0.000019406685,0.000019927993,0.000018827814,0.000020259266,0.000018589346,0.00001927275,0.000018514775,0.000020233005,0.000019226673,0.00001996939,0.000019277144,0.000020853888,0.000019384212,0.000020221163,0.000019211147,0.000020878999,0.000019410923,0.000019936318,0.000018809096,0.000020192334,0.000018504412,0.000019165293,0.00001837637,0.000020087697,0.000019077488,0.000019844058,0.000019141144,0.000020682173,0.000019247678,0.000020100842,0.000019132456,0.0000207631,0.000019235164,0.000019667845,0.000018567784,0.000019978075,0.000018421235,0.000019078088,0.000018334202,0.000020158912,0.0000192414,0.000020005911,0.000019202043,0.000020751302,0.000019359031,0.000020458288,0.000019554527,0.000021488739,0.000020072588,0.000020626943,0.00001934995,0.00002061953,0.000018843584,0.00001928641,0.000018629135,0.000020098447,0.000019406518,0.000020076435,0.000019652376,0.000021225575,0.000020060876,0.000020764011,0.00001985191,0.000021297394,0.000020382517,0.000020845635,0.000019848145,0.000020711861,0.000019094927,0.000019173774,0.000018761604,0.000020002095,0.000019064502,0.00001944941,0.00001899565,0.00002042957,0.00001914569,0.000020015566,0.0000189728,0.000020766964,0.000019075851,0.000019848068,0.000018735482,0.000020493711,0.000019032404,0.000019771407,0.000018940838,0.000020420552,0.000020023643,0.00002072247,0.000020397856,0.000021052489,0.000021010268,0.000021962955,0.000021082966,0.000021785621,0.00002258896,0.000025571828,0.000024734414,0.000017271155,0.000011342215,0.000012019273],[0.000016717071,0.000010924738,9.618211e-6,0.000013909545,0.000023862809,0.00003610576,0.000029203085,0.000023866905,0.000020874977,0.00002044251,0.000020030862,0.000019629018,0.000019856987,0.000019634392,0.00001974936,0.000019527952,0.000020199788,0.000020085474,0.000020023834,0.000019152427,0.0000203782,0.000020260095,0.000020703468,0.000019700394,0.000020244162,0.000019738663,0.000019728086,0.000018815572,0.00001989004,0.000019892448,0.000020548741,0.000019597688,0.000020456473,0.00002019817,0.000020920976,0.00001982843,0.000020981877,0.000020677144,0.000021312102,0.000020193085,0.000020979434,0.000020565662,0.00002088167,0.000019800069,0.000020341407,0.000020143672,0.000020513498,0.00001961867,0.000020574487,0.000020377927,0.0000208745,0.000020012474,0.00002075647,0.000020526042,0.000020874977,0.000019832345,0.000020777163,0.000020407666,0.000020542786,0.000019460173,0.000020047719,0.000019856836,0.000020107265,0.000018989636,0.000019958425,0.000019774405,0.000020340767,0.000019460671,0.000020425265,0.000020387648,0.000020823303,0.000019642688,0.000020650601,0.000020314208,0.000020590702,0.000019458352,0.000020115513,0.000019983849,0.000020285828,0.000019162075,0.0000201652,0.000020047355,0.000020674523,0.000019763753,0.000020723577,0.000020642292,0.00002103928,0.000019779874,0.000020750887,0.000020397876,0.000020644655,0.000019462268,0.000020078349,0.00001993362,0.000020216881,0.000019059522,0.000020065754,0.000019945599,0.000020560072,0.00001962636,0.000020615242,0.000020572881,0.000020995087,0.000019727466,0.000020714428,0.000020374178,0.000020625133,0.000019432391,0.000020061774,0.00001993244,0.000020221914,0.000019052217,0.000020062158,0.000019944951,0.00002055768,0.000019611767,0.000020603646,0.000020572526,0.000020977375,0.000019713756,0.000020702933,0.00002039527,0.00002064741,0.000019454028,0.000020062711,0.000019929912,0.00002021397,0.000019062521,0.000020072395,0.000019959489,0.00002056515,0.00001961794,0.000020596928,0.000020568172,0.000020992844,0.000019727071,0.000020708956,0.00002036771,0.000020613925,0.000019416293,0.000020047755,0.00001992368,0.000020214047,0.000019046003,0.000020063573,0.000019960422,0.00002057435,0.000019623012,0.000020616953,0.000020589898,0.00002101526,0.000019749246,0.000020741036,0.000020403655,0.00002065078,0.000019463288,0.000020092371,0.000019964496,0.000020245841,0.000019097146,0.000020111791,0.000019996794,0.000020611034,0.000019702931,0.000020683081,0.000020625035,0.000021001415,0.000019745932,0.000020717509,0.000020370508,0.000020604373,0.00001941161,0.000020000169,0.000019826843,0.000020096588,0.000018947885,0.000019970817,0.000019890987,0.00002047517,0.000019514939,0.000020468475,0.00002044448,0.00002087699,0.000019690271,0.000020624388,0.000020327425,0.000020456493,0.0000192321,0.000019824649,0.000019729987,0.000020040818,0.000018910949,0.000019925163,0.000019968362,0.000020676416,0.000019752466,0.000020697169,0.000020466525,0.000021096883,0.000019952924,0.00002121147,0.000021023176,0.000021435215,0.000020181938,0.00002066845,0.00002038823,0.000020400601,0.00001925315,0.000020122976,0.000019983563,0.00002067888,0.000019855566,0.0000209901,0.000021078986,0.000021553184,0.000020524047,0.000021187634,0.000020974494,0.000020927082,0.000020068874,0.000020398384,0.000020218482,0.000020057643,0.000018966324,0.000020018355,0.00001994944,0.000020323374,0.000019195088,0.000020169182,0.000020024636,0.000020885034,0.000019697463,0.000020781721,0.000020417845,0.000020642883,0.00001933619,0.000020011597,0.000019948548,0.000020106805,0.000019529778,0.0000198231,0.000019678464,0.00001965052,0.00002002794,0.000020222127,0.000020860032,0.000021321923,0.000021642654,0.000021206657,0.00002155904,0.00002348513,0.000024072655,0.000024796931,0.0000175433,0.000011660998,0.000012002733],[0.000015698859,0.000011592762,9.7971515e-6,0.00001336043,0.000024347955,0.00003406196,0.000028368511,0.00002448111,0.000020553995,0.000020579768,0.000019378685,0.00001990127,0.000018849229,0.00001951293,0.00001907496,0.00002007452,0.000019574398,0.000020409709,0.000019280598,0.000019542316,0.000019292609,0.000020267187,0.000019251496,0.000020020358,0.000018792725,0.000019775764,0.000018359922,0.000019044477,0.000018325025,0.000019854562,0.000018864315,0.000020017189,0.000018666391,0.000020198246,0.000019074214,0.000019954236,0.000019141364,0.000020559464,0.000019436562,0.00002035633,0.000019232557,0.000020520289,0.000019414552,0.000019761963,0.00001895316,0.00002016418,0.000019225188,0.000019981886,0.000019062503,0.000020419831,0.00001955391,0.000020276546,0.000019506622,0.000020469315,0.000019366824,0.00001998808,0.00001915992,0.000020403053,0.000019097366,0.000019523186,0.000018722014,0.000019953113,0.000018727318,0.000019335526,0.00001845885,0.00001986153,0.000018879973,0.000019629357,0.00001902168,0.000020260848,0.00001907545,0.000019755387,0.000018902476,0.000020289039,0.000018946223,0.000019495501,0.000018675295,0.000020073621,0.00001879373,0.000019477977,0.000018570176,0.00002009511,0.00001911668,0.000019967028,0.000019317647,0.000020572388,0.000019290163,0.000019933903,0.000019033312,0.000020393132,0.000019087078,0.00001958618,0.000018704257,0.00002002771,0.000018742021,0.000019396046,0.000018490724,0.000019977675,0.000018995901,0.000019829264,0.000019205634,0.000020471423,0.000019211624,0.00001986407,0.000018973687,0.000020352738,0.000019040392,0.000019541496,0.000018661816,0.000020009364,0.00001872062,0.000019376192,0.0000184707,0.000019969866,0.000018973291,0.000019803712,0.000019180156,0.000020467012,0.000019194702,0.000019840745,0.000018936611,0.000020341038,0.000019057741,0.000019544515,0.000018641023,0.000019983487,0.000018705025,0.000019373216,0.000018478559,0.000019982306,0.00001898127,0.00001980407,0.000019178053,0.000020463889,0.000019202906,0.000019856836,0.000018962797,0.00002034424,0.000019023857,0.000019521603,0.000018643175,0.000020000589,0.000018707147,0.000019370407,0.000018470102,0.000019981371,0.000018987028,0.000019808851,0.000019190073,0.000020482086,0.000019225938,0.000019884292,0.000018999453,0.000020390467,0.00001906603,0.000019573185,0.00001868707,0.000020059537,0.00001877218,0.000019446277,0.000018532439,0.00002004313,0.00001905327,0.000019900835,0.00001924421,0.000020504522,0.000019239658,0.000019921437,0.000019029174,0.000020384363,0.000019012758,0.000019488845,0.00001857765,0.000019891368,0.000018593177,0.000019308292,0.000018423449,0.000019917941,0.000018860448,0.00001966023,0.000019007717,0.00002031568,0.00001911526,0.000019834408,0.000018937135,0.000020335045,0.000018957953,0.000019376874,0.00001848711,0.000019873694,0.000018625475,0.000019284571,0.000018405748,0.000020029123,0.000019000921,0.000019882322,0.000018965167,0.000020406982,0.000019114748,0.000020177704,0.00001923997,0.000021185897,0.000019639823,0.000020392703,0.000019132074,0.000020606672,0.00001894212,0.000019627316,0.000018608538,0.000020069258,0.000019190584,0.00002005573,0.000019404797,0.000020826878,0.000019882567,0.000020782494,0.000019829698,0.000021153535,0.000019821171,0.000020208574,0.000019354104,0.000020479174,0.000019215217,0.000019632877,0.000019056177,0.000020248564,0.000019146346,0.000019469322,0.000018846731,0.000019941435,0.000018994471,0.000019927784,0.000019093177,0.000020556603,0.000019029174,0.000019615658,0.000018491217,0.000019833424,0.000018890834,0.000019815861,0.000018577597,0.00001952436,0.000018792673,0.000019695284,0.000019443252,0.000020622772,0.000021111153,0.00002223015,0.000021429432,0.00002232273,0.000023842518,0.00002568462,0.000023978053,0.000016353188,0.000011453039,0.000012992017],[0.00001577916,0.000011586495,9.370772e-6,0.000013261504,0.000025964015,0.00003712509,0.00003270816,0.000025591638,0.000022318687,0.000021123338,0.000020901953,0.000019553632,0.000019817844,0.000019317667,0.000019956178,0.000019227571,0.000020501862,0.000020263478,0.000020661002,0.000019219799,0.000020306403,0.000019953894,0.0000206006,0.000019276022,0.000019909094,0.00001918738,0.000019462119,0.00001855081,0.000019394012,0.000019077179,0.000020146113,0.000018897717,0.000019793328,0.00001907756,0.00002014014,0.0000186481,0.000020156856,0.000019850359,0.000021044398,0.000019284938,0.000020275616,0.0000198036,0.000020426356,0.000019070503,0.000019858217,0.000019762301,0.000020392665,0.000019094397,0.000019746027,0.000019376967,0.000020282752,0.000019240484,0.000020123896,0.000019787534,0.000020508121,0.000018872,0.000019740715,0.000019320392,0.000019946454,0.000018620698,0.000019496114,0.000019379331,0.000019887555,0.000018456105,0.000019177814,0.000018834871,0.000019750696,0.00001856674,0.000019661506,0.000019476825,0.000020301932,0.000018589522,0.00001948578,0.000019108807,0.000019810172,0.000018460365,0.00001944826,0.00001941433,0.00002003155,0.00001850547,0.000019294615,0.000018957338,0.00002000263,0.000018803143,0.00001996145,0.000019750376,0.000020578216,0.000018791847,0.000019655225,0.000019252102,0.000019967008,0.000018616152,0.000019510437,0.00001938351,0.000019992733,0.000018481433,0.000019239218,0.000018874789,0.000019902182,0.00001870895,0.000019868541,0.000019647654,0.000020490077,0.000018718443,0.000019605875,0.000019205323,0.000019930843,0.000018565092,0.00001946639,0.0000193427,0.000019968058,0.000018450755,0.000019214043,0.000018856366,0.000019889716,0.000018678767,0.000019838493,0.000019628887,0.000020453823,0.000018683417,0.000019542931,0.000019175382,0.000019927766,0.000018563855,0.000019434188,0.000019308476,0.000019945903,0.000018441273,0.000019223207,0.000018868093,0.000019888388,0.000018682633,0.000019837207,0.000019632895,0.00002047115,0.000018703418,0.00001958786,0.000019190804,0.00001991196,0.00001854294,0.000019445144,0.000019330235,0.000019957872,0.00001844087,0.000019214758,0.000018868524,0.000019893814,0.000018684075,0.000019838228,0.000019646379,0.000020500613,0.00001873105,0.000019623947,0.000019232211,0.000019949632,0.000018590623,0.000019495761,0.00001938741,0.000020011674,0.000018502911,0.000019272493,0.000018916793,0.000019921077,0.000018713536,0.000019863235,0.000019668745,0.000020514008,0.00001877433,0.00001964046,0.000019199262,0.000019859732,0.000018492556,0.000019357001,0.00001922385,0.000019880728,0.000018414034,0.000019159113,0.000018775458,0.000019768466,0.000018529363,0.000019648009,0.00001946648,0.000020376432,0.000018678447,0.000019572604,0.000019206496,0.000019876708,0.0000185335,0.000019279056,0.00001918978,0.000019810399,0.00001836099,0.000019083895,0.000018807248,0.000019807792,0.000018578447,0.00001971447,0.000019450876,0.000020516354,0.000018809076,0.000020066484,0.000019792496,0.000020678053,0.000019161707,0.00002009927,0.000019935576,0.000020339003,0.000018672961,0.000019466259,0.000019236062,0.000020172049,0.000018974539,0.000020213798,0.000020108186,0.000021298287,0.000019709958,0.000020635147,0.000020194087,0.00002069784,0.000019571056,0.000020161624,0.000019971809,0.000020201733,0.000019147827,0.000019711762,0.000019400875,0.000019913516,0.00001876622,0.000019702837,0.000019180265,0.000020470741,0.0000189019,0.000020246845,0.000019664074,0.000020381913,0.000018869443,0.000019560626,0.000019372124,0.000020026526,0.000019024437,0.000019283782,0.00001872346,0.000019189158,0.000018781062,0.000019826464,0.000020316475,0.000021195638,0.000021167984,0.000020975354,0.000021055359,0.00002456596,0.00002462542,0.000022368164,0.000015284626,0.0000113406895,0.000013907052],[0.00001628794,0.0000121691755,0.000010906364,0.000014558077,0.000029357865,0.000033205517,0.000027740722,0.000023736638,0.000020792526,0.000020289484,0.00001921692,0.000019448242,0.00001858745,0.000019162733,0.00001851502,0.00001930299,0.000019484367,0.00002060624,0.000019476138,0.000019642688,0.000019406445,0.000020290297,0.000018864263,0.000019109899,0.000018325443,0.00001911814,0.000018326353,0.000018649382,0.000018106683,0.000019263636,0.000018105698,0.000018783623,0.000018013952,0.000019402984,0.000018569537,0.000019446368,0.000019164741,0.000020720217,0.00001934768,0.000019725228,0.000019045005,0.000020072817,0.000019319878,0.000019239547,0.000018910085,0.000019936033,0.000018723817,0.00001900683,0.000018416158,0.00001958704,0.000019067922,0.000019686422,0.00001941944,0.000020477613,0.00001899094,0.000019124942,0.000018705043,0.00001960496,0.000018893608,0.000018924535,0.000018689441,0.000019811552,0.0000182334,0.000018508701,0.00001792768,0.000019159992,0.000018501094,0.000019181418,0.00001899525,0.000020291962,0.000018608856,0.000018830273,0.000018374076,0.00001936555,0.00001861901,0.000018770732,0.00001852811,0.000019825897,0.000018269518,0.000018624854,0.000017984119,0.000019333884,0.000018700226,0.000019474763,0.000019244264,0.000020582771,0.0000189072,0.000019106401,0.000018583567,0.000019530375,0.00001880124,0.000018891484,0.000018620023,0.000019810172,0.000018247665,0.00001856952,0.000017945435,0.000019240704,0.000018606905,0.000019350135,0.00001913775,0.00002046303,0.000018781402,0.000018989056,0.000018515973,0.000019487676,0.0000187486,0.000018839864,0.000018561499,0.00001977088,0.000018199265,0.000018529647,0.000017904546,0.000019224179,0.00001857556,0.000019321942,0.000019095436,0.00002044493,0.00001874347,0.000018949402,0.000018469997,0.000019458705,0.000018743398,0.00001884071,0.000018550174,0.000019764037,0.00001819982,0.000018535568,0.000017914623,0.000019243951,0.00001858674,0.000019336541,0.000019109919,0.000020454894,0.000018764234,0.000018977453,0.000018500372,0.000019478497,0.000018726587,0.000018824006,0.000018544213,0.000019762867,0.000018191873,0.000018533092,0.000017913273,0.000019245677,0.00001859197,0.000019343512,0.000019129337,0.00002047107,0.000018795306,0.000019008878,0.00001853145,0.00001951803,0.000018796005,0.000018906188,0.000018612816,0.000019816995,0.000018241315,0.000018580342,0.000017959508,0.000019271023,0.000018621657,0.000019391016,0.000019186888,0.000020534952,0.000018838338,0.000019036923,0.000018517616,0.000019447149,0.000018665216,0.000018750316,0.000018451212,0.000019682142,0.00001812745,0.000018469522,0.000017809249,0.000019119216,0.000018442399,0.000019178675,0.000018960935,0.00002032413,0.00001873348,0.000019024765,0.000018553623,0.000019549623,0.000018736731,0.000018818766,0.000018437651,0.000019583938,0.000018064511,0.000018419285,0.000017809385,0.000019182517,0.000018520637,0.000019435838,0.000018993005,0.000020464338,0.000018701743,0.000019318808,0.000018689208,0.000020261063,0.000019128462,0.000019619381,0.000019061104,0.000020507532,0.000018583356,0.000018886223,0.000018256333,0.000019732133,0.000019009458,0.000019760435,0.000019561148,0.000020997248,0.000019694384,0.000020036596,0.00001944544,0.000020376023,0.000019609766,0.000019597634,0.000019127914,0.000020102472,0.000018790235,0.000019025072,0.000018501923,0.000019332392,0.000018742576,0.000018889248,0.000018733355,0.000019540172,0.000018797547,0.000019023693,0.000018648154,0.000019597372,0.000018963829,0.000018945499,0.000018575045,0.00001956501,0.000018835015,0.00001901546,0.000018374618,0.000018938834,0.000018940893,0.00001946379,0.000020042098,0.00002136322,0.000021462442,0.000022248156,0.000021429227,0.000022363194,0.00002425403,0.000026808728,0.000022618256,0.000015786356,0.000010592541,0.000014236625],[0.000016154534,0.000011984272,0.000010102939,0.000015897958,0.000028075234,0.000032295313,0.000026759864,0.000023376357,0.000021030815,0.000020374859,0.000020249743,0.000019754294,0.000019941737,0.000019506751,0.000019453564,0.000019274403,0.00002021561,0.000020395679,0.000020444442,0.00001977346,0.000020638474,0.000020562562,0.00002008831,0.000019111632,0.00001952542,0.00001948368,0.000019856172,0.000019281795,0.000019846479,0.000019724024,0.000019771218,0.000018776263,0.00001946043,0.000019312289,0.000020485875,0.000019711424,0.000021058633,0.000020789928,0.000020995187,0.000019664543,0.00002043571,0.000020277164,0.00002084498,0.000019879684,0.000020408579,0.000020298039,0.000020012933,0.00001898232,0.000019599465,0.000019613208,0.000020420395,0.00002006323,0.000020969293,0.000020688092,0.000020259537,0.000019189432,0.000019789024,0.000019845553,0.000020421974,0.00001957621,0.00002035767,0.00002007879,0.000019724852,0.000018593513,0.000019191244,0.00001924307,0.000020077832,0.000019546249,0.00002060054,0.000020402818,0.000019991245,0.000018808198,0.000019509207,0.000019611562,0.000020268464,0.00001944112,0.00002029291,0.000020003832,0.000019797331,0.000018687979,0.000019317906,0.000019338291,0.000020283449,0.000019755933,0.00002085488,0.000020630012,0.000020280819,0.00001909294,0.000019727919,0.000019737892,0.000020354117,0.000019531695,0.000020361185,0.000020069754,0.000019814235,0.00001865091,0.00001927308,0.000019298463,0.00002021054,0.000019650202,0.000020755873,0.000020533756,0.000020178435,0.000018966071,0.00001964696,0.000019701596,0.00002033396,0.000019489813,0.00002033301,0.000020032658,0.000019790838,0.000018602628,0.000019240373,0.000019269606,0.000020197822,0.000019610534,0.000020704434,0.000020499907,0.000020130212,0.000018920258,0.00001959072,0.000019700694,0.000020352738,0.000019508334,0.000020333631,0.000020037856,0.000019789044,0.000018595605,0.000019240244,0.00001927536,0.0000202132,0.000019633624,0.00002073769,0.000020526453,0.000020170934,0.000018955114,0.000019634579,0.000019689443,0.000020318143,0.000019469582,0.000020322406,0.00002002326,0.000019783647,0.000018608484,0.00001924865,0.000019281335,0.000020218231,0.000019655356,0.000020759675,0.000020544667,0.000020189984,0.000018992498,0.000019684074,0.000019761039,0.000020419773,0.000019570049,0.000020365515,0.000020055233,0.000019793442,0.000018619845,0.000019250083,0.000019315714,0.000020258396,0.000019706107,0.000020803851,0.0000206006,0.000020200096,0.000018949348,0.000019594774,0.000019638193,0.00002023837,0.000019405908,0.00002025909,0.000019966132,0.00001969352,0.000018515128,0.00001913014,0.000019153087,0.000020070349,0.000019505636,0.000020613257,0.000020442569,0.000020166566,0.00001903313,0.000019707986,0.000019746063,0.000020316747,0.000019437266,0.000020165682,0.000019889414,0.000019639841,0.000018515973,0.000019086387,0.000019225738,0.000020356796,0.000019794046,0.000020844423,0.000020434247,0.00002033142,0.000019095909,0.000020017897,0.000019954941,0.000020801193,0.000019843621,0.000020987198,0.000020497757,0.000020176261,0.00001890089,0.000019674428,0.000019656762,0.000020604393,0.000020168336,0.000021419502,0.00002113704,0.000021022573,0.000019966896,0.000020599127,0.000020577922,0.00002090534,0.000020108091,0.0000204994,0.0000203314,0.00001989444,0.000018956938,0.00001926154,0.000019269533,0.000019820094,0.000019418978,0.000020248255,0.000020037436,0.000020308553,0.000019278319,0.000019989891,0.000020099174,0.000020864372,0.00001994676,0.000020286467,0.00002055125,0.000020153338,0.000019641995,0.00001939022,0.000019875513,0.000020255093,0.00002042581,0.000021173537,0.000022041955,0.000022084183,0.000022410119,0.00002161044,0.000021968484,0.000025259867,0.000025098076,0.000022837296,0.000016485892,0.000011001162,0.0000138526875],[0.000015948572,0.0000114422855,0.000011097167,0.000014742792,0.0000271246,0.000031479147,0.000024476722,0.000022338043,0.000019183852,0.00001998663,0.000019200177,0.000020245494,0.00001871068,0.000019277933,0.000018384995,0.000019192506,0.000018887213,0.000020297846,0.00001941122,0.000020288711,0.000019781139,0.000020673557,0.000019312914,0.000019221447,0.000018664576,0.000019367433,0.000019198786,0.000019741732,0.000019209592,0.000019884179,0.000018723318,0.000018856259,0.000017967748,0.000018981234,0.00001861349,0.00001963795,0.000019388906,0.000020444286,0.000019274587,0.000019427536,0.00001908242,0.000020055748,0.000020114801,0.000020305879,0.000019713174,0.000020216341,0.000018903069,0.00001894371,0.000018253184,0.000019250137,0.000019169183,0.000020137297,0.000019919064,0.000020694013,0.00001915778,0.000019263727,0.000018883342,0.000019781364,0.000019760548,0.000019914352,0.000019634448,0.000020197149,0.000018658828,0.00001874372,0.000017873275,0.000018996554,0.000018659484,0.000019554285,0.000019421015,0.000020377056,0.000018742183,0.000018862283,0.000018510536,0.000019549232,0.00001952771,0.000019762001,0.000019506882,0.000020122803,0.000018575098,0.000018796472,0.000017895856,0.000019098914,0.000018733033,0.000019733094,0.000019601895,0.000020629108,0.000018997769,0.000019136416,0.000018723174,0.000019698366,0.000019624133,0.000019840953,0.000019616706,0.000020223728,0.000018670522,0.000018792618,0.000017880435,0.000019056668,0.00001868732,0.00001964151,0.000019497453,0.000020507512,0.000018881216,0.000019012667,0.000018619525,0.00001961822,0.000019570309,0.000019789743,0.000019562882,0.000020182593,0.00001862345,0.000018750425,0.000017826325,0.000019023984,0.000018634697,0.000019571653,0.000019410758,0.000020438592,0.000018824834,0.000018964172,0.000018597131,0.000019634992,0.000019627092,0.000019834728,0.000019588497,0.000020187443,0.000018620716,0.00001873616,0.00001781482,0.000019015495,0.00001864179,0.00001960139,0.000019463678,0.000020494454,0.00001886948,0.000018997316,0.00001860107,0.000019597408,0.000019546287,0.000019763998,0.000019543435,0.00002016743,0.000018616509,0.000018746901,0.000017827177,0.000019025889,0.000018659166,0.00001962739,0.000019491912,0.000020524458,0.000018913854,0.000019069448,0.000018695002,0.000019710918,0.000019660605,0.000019880785,0.000019615527,0.00002021507,0.000018655537,0.000018787277,0.0000178796,0.000019078343,0.00001872646,0.000019698366,0.000019559711,0.000020536536,0.00001886797,0.00001896079,0.000018564579,0.000019532403,0.000019508483,0.000019741658,0.00001949894,0.000020071746,0.000018522085,0.00001864899,0.000017724735,0.000018898907,0.000018536028,0.000019495576,0.00001938595,0.0000204218,0.000018925763,0.000019100025,0.000018682313,0.000019649638,0.00001957255,0.000019784176,0.000019512334,0.000020130596,0.000018617644,0.000018692435,0.000017771483,0.000019021934,0.000018683115,0.000019674015,0.000019289942,0.00002036402,0.000018660268,0.000018964172,0.000018354986,0.000019581996,0.000019142695,0.000019736422,0.00001941035,0.000020330468,0.000018537477,0.000018720748,0.000017899236,0.00001923907,0.000018958892,0.000020163874,0.000019869887,0.000020976035,0.000019639749,0.00001999136,0.00001950904,0.000020592684,0.000020475447,0.000020889895,0.000020110296,0.00002083232,0.000019307334,0.000019445626,0.000018391835,0.000019227515,0.000018936178,0.00001966578,0.000019396344,0.000020150208,0.000019274697,0.000019600326,0.000019308292,0.000020383974,0.000020657159,0.000021226891,0.000020870979,0.000021476855,0.000020378999,0.000020187656,0.000019449113,0.000019820169,0.000020692532,0.000020816413,0.000021107006,0.00002157105,0.000022045127,0.000022661587,0.000021534526,0.000021710086,0.0000234493,0.00002532975,0.000022437407,0.000016055654,0.000010903649,0.000014053936],[0.000016415404,0.00001053577,0.000010896674,0.000014446715,0.000027939497,0.000034688266,0.00002804192,0.000022891283,0.000020533424,0.00002013891,0.00002040677,0.000019623629,0.000019620653,0.000019041336,0.000019156849,0.000018286479,0.000019563779,0.000019820396,0.0000207552,0.000019516372,0.000020554073,0.00002042883,0.000020316998,0.000019042407,0.000019213383,0.000018960593,0.000019782101,0.000019168107,0.00001996596,0.000019575797,0.000019726036,0.000018482684,0.00001894951,0.00001841586,0.000019561334,0.000018425786,0.00002015257,0.000019877469,0.000020381232,0.000018911473,0.000019736668,0.000019694158,0.000021184464,0.000020085992,0.000020672138,0.00002010995,0.000020044046,0.000018588496,0.000018870289,0.000018761764,0.000019857554,0.00001901069,0.000020346666,0.000020166239,0.00002019399,0.000018709325,0.000019352849,0.000019531733,0.000020498226,0.000019502362,0.000020246962,0.000019980114,0.000019834768,0.000018268385,0.000018609922,0.000018500883,0.000019388555,0.000018446059,0.000019811268,0.000019826804,0.000019875666,0.000018284281,0.000018953866,0.000019302732,0.000020317482,0.000019333369,0.00002009036,0.000019861549,0.000019811798,0.000018222798,0.000018667619,0.00001856766,0.000019550966,0.00001854713,0.00002001198,0.000020048885,0.000020143327,0.000018516184,0.000019167868,0.000019455958,0.000020390875,0.000019407666,0.000020193007,0.000019986213,0.00001987269,0.000018265477,0.000018654966,0.000018548051,0.000019501062,0.00001850367,0.000019941472,0.000019952353,0.00002003306,0.000018426683,0.000019080418,0.000019367268,0.000020306114,0.000019347479,0.0000201509,0.000019947805,0.000019853236,0.000018236844,0.000018631783,0.000018510837,0.000019447425,0.000018409259,0.000019820813,0.000019866684,0.000019976513,0.00001839464,0.000019056886,0.000019409703,0.000020377869,0.000019418181,0.000020178877,0.000019947158,0.000019840536,0.000018221668,0.000018614732,0.00001850009,0.000019451321,0.000018444687,0.000019890173,0.000019923224,0.000020015184,0.000018405326,0.00001905476,0.000019349969,0.000020288091,0.000019326051,0.00002012764,0.000019935882,0.000019848127,0.000018234496,0.000018632476,0.000018523375,0.000019477195,0.00001848004,0.000019937592,0.000019978075,0.00002008831,0.000018488625,0.000019147114,0.00001944127,0.000020386908,0.000019423183,0.000020196687,0.000019969295,0.000019856247,0.000018265284,0.00001865534,0.000018550934,0.000019515497,0.000018520972,0.000019911047,0.00001989224,0.00001995243,0.000018352097,0.000018999834,0.000019314,0.000020274148,0.000019295609,0.000020049476,0.000019822854,0.000019741186,0.00001814959,0.00001853555,0.000018429355,0.000019374602,0.000018404624,0.000019842959,0.000019889621,0.00002006937,0.000018512232,0.000019138533,0.000019404946,0.000020314557,0.000019397821,0.000020030022,0.000019866286,0.000019723591,0.000018233975,0.000018486615,0.000018456527,0.000019335526,0.00001842828,0.000019783005,0.000019597297,0.000019794858,0.000018160412,0.000019079325,0.000019126144,0.000020071593,0.000018819395,0.000019968838,0.000019739115,0.000019743164,0.000017979626,0.000018799823,0.000018735516,0.000019965353,0.0000188711,0.0000203914,0.000020361786,0.000020887146,0.000019467205,0.000020135914,0.000020414067,0.000021605596,0.00002065395,0.000020943173,0.00002049375,0.000020296742,0.00001913098,0.000019033565,0.000018732533,0.000019449133,0.000018866853,0.000020144673,0.00001981159,0.000020514712,0.000019336909,0.00002009239,0.000020357747,0.000021851161,0.00002116542,0.000021704165,0.000021569076,0.00002124828,0.000020108051,0.000019580688,0.000019697689,0.000020507376,0.000020453783,0.000021156842,0.000021046106,0.000021460886,0.000021163563,0.000020247619,0.000020556896,0.000023192299,0.000023581948,0.00002402917,0.000016099888,0.000011520234,0.000012715532],[0.00001728081,0.000011037512,0.000012117873,0.000015433809,0.000029181818,0.00003429013,0.00002582208,0.000022233118,0.000018997805,0.000019526686,0.000018377965,0.000019033601,0.000018194683,0.00001882189,0.00001776884,0.000018519171,0.000018349261,0.00001998261,0.00001896392,0.000019663155,0.00001950411,0.000020697387,0.000019359697,0.000019333165,0.000018473133,0.000019047837,0.000018665483,0.000018811805,0.000018653916,0.000019301959,0.000018274572,0.000018306893,0.000017706152,0.000018602399,0.000018161018,0.0000186865,0.00001892181,0.00002035501,0.00001926099,0.0000193194,0.00001895365,0.000019956786,0.000019748832,0.000019658544,0.00001950041,0.000019730138,0.000018567891,0.000018151806,0.000017935341,0.00001868429,0.000018463446,0.000018783892,0.000019041663,0.00002023837,0.00001902197,0.000018949673,0.000018849103,0.00001979497,0.000019285766,0.000018957156,0.000018965004,0.000019457684,0.000018087992,0.000017711622,0.000017560556,0.000018544672,0.000018017647,0.00001830171,0.000018569022,0.000019975238,0.000018610881,0.000018623274,0.000018497654,0.000019652995,0.00001910642,0.000018794106,0.000018708557,0.000019340652,0.000018028628,0.000017717468,0.000017507098,0.00001863665,0.00001813677,0.000018517776,0.000018746061,0.00002026139,0.000018878227,0.000018877237,0.000018688906,0.000019789912,0.000019231513,0.000018939772,0.000018872233,0.000019473611,0.000018094184,0.000017746113,0.00001755205,0.00001862116,0.000018112916,0.000018459308,0.000018688852,0.000020157278,0.00001876962,0.00001877134,0.000018613917,0.000019702875,0.000019133004,0.000018841842,0.000018813007,0.00001942659,0.000018055263,0.000017716167,0.000017521797,0.000018588886,0.00001805468,0.000018372217,0.000018586634,0.000020069601,0.00001873048,0.000018750496,0.000018618177,0.000019733809,0.000019192727,0.000018869949,0.00001881604,0.00001939895,0.000018040513,0.000017705037,0.000017510873,0.000018584524,0.000018062738,0.00001839678,0.000018628087,0.000020109643,0.000018730014,0.000018743434,0.000018591882,0.000019695755,0.000019130759,0.00001883753,0.000018808145,0.000019427685,0.000018066045,0.000017721473,0.000017535103,0.00001860726,0.000018108081,0.000018453113,0.000018699995,0.000020189676,0.000018811463,0.000018824025,0.000018665572,0.000019771238,0.000019196956,0.000018907018,0.000018859766,0.000019447072,0.000018071783,0.00001773899,0.000017561679,0.000018649576,0.000018111432,0.00001842034,0.000018601564,0.000020066902,0.000018677076,0.000018700564,0.000018568882,0.000019685915,0.0000190806,0.0000187623,0.000018714945,0.000019308181,0.00001796612,0.00001763327,0.000017454004,0.000018535144,0.000018067803,0.000018385503,0.000018655144,0.00002011605,0.00001887335,0.000018907975,0.000018745668,0.000019786024,0.00001919679,0.00001887648,0.000018765038,0.000019296363,0.000018005074,0.000017639746,0.00001740653,0.000018433608,0.000017940729,0.000018257553,0.000018316585,0.000019625051,0.00001828941,0.000018303752,0.000018224137,0.000019480578,0.00001867565,0.00001846253,0.000018365175,0.000019317205,0.000017852968,0.000017508419,0.000017571128,0.00001875933,0.000018440553,0.00001882776,0.00001910899,0.000020576432,0.000019589,0.000019562509,0.000019341205,0.00002033912,0.000019880861,0.000019759475,0.000019334824,0.0000197788,0.000018633968,0.000018453906,0.000017899389,0.000018631692,0.000018202962,0.000018647745,0.000018682545,0.000020062618,0.000019390387,0.000019789346,0.000019258163,0.000020493535,0.000020141119,0.000020633475,0.0000203789,0.00002109081,0.00002047109,0.00002008059,0.000019370686,0.000019567473,0.000020216805,0.000020322077,0.00002091898,0.000020832042,0.000021268348,0.000021956232,0.00002110894,0.000021813354,0.000022696322,0.000025060694,0.000024800429,0.000017265953,0.000010894939,0.000012875788],[0.00001675413,0.000011144276,0.000010669664,0.00001640356,0.0000278228,0.00003539076,0.00002782962,0.000023148548,0.000020737472,0.00002009561,0.00001969938,0.000019176498,0.000019524396,0.00001940415,0.00001988947,0.000019300984,0.000019997748,0.000020195877,0.00002020052,0.000019756855,0.000020824473,0.000021054135,0.000020709036,0.000019706838,0.000019545894,0.000019561969,0.000019481598,0.000018987153,0.00001942144,0.000019610457,0.000019868541,0.000018832123,0.000019248155,0.000019212246,0.000019989815,0.000019232963,0.000020417243,0.00002046223,0.000020812284,0.000019872217,0.000020488083,0.00002031012,0.00002045156,0.000019938714,0.00002020054,0.000020233565,0.000019968018,0.000018929895,0.000019349287,0.000019507124,0.00001979954,0.000019310575,0.00002030584,0.000020399395,0.000020453745,0.000019464625,0.000020180976,0.00002001093,0.000019925923,0.00001931376,0.000019772895,0.0000198002,0.000019578916,0.000018410346,0.000019116116,0.000019247826,0.000019557325,0.000018870991,0.000019928944,0.000020084497,0.000020199037,0.00001908668,0.000019894309,0.000019751109,0.000019765657,0.000019070285,0.00001954843,0.000019573838,0.000019516354,0.000018374636,0.000019153269,0.000019269424,0.000019730043,0.000019044332,0.000020152282,0.00002028786,0.000020439471,0.00001931669,0.000020111562,0.000019888485,0.00001990522,0.000019252744,0.000019743276,0.00001972534,0.000019595895,0.0000184325,0.000019181913,0.000019302419,0.000019736706,0.000019022606,0.000020094172,0.000020221125,0.00002035571,0.000019225792,0.000020033021,0.000019833707,0.000019842675,0.000019174395,0.000019682442,0.000019686458,0.000019575182,0.000018403167,0.000019173262,0.000019293493,0.000019727411,0.000018996408,0.000020039557,0.000020172105,0.000020315507,0.00001920153,0.000019994754,0.000019833973,0.00001984521,0.000019163263,0.00001962681,0.000019643026,0.00001953695,0.000018390974,0.000019145215,0.000019280047,0.000019715355,0.000018986575,0.000020051102,0.000020181918,0.00002032568,0.00001919853,0.00002001347,0.000019824422,0.000019840347,0.000019175235,0.000019680057,0.00001969705,0.000019580333,0.000018415263,0.00001917785,0.000019312933,0.000019759042,0.000019049328,0.00002011484,0.000020237427,0.000020374373,0.000019258143,0.000020065449,0.000019875477,0.000019877221,0.000019202174,0.000019674091,0.000019665405,0.000019544888,0.000018409171,0.000019191153,0.000019285786,0.000019673978,0.000018927656,0.000019986785,0.000020089516,0.000020242791,0.00001916096,0.000019979372,0.000019760642,0.000019727411,0.000019055324,0.000019544665,0.000019555479,0.000019449039,0.000018332716,0.000019109226,0.00001926064,0.000019699286,0.000019015768,0.000020065276,0.000020242598,0.000020426727,0.00001936773,0.000020097392,0.000019912339,0.000019828054,0.000019116607,0.000019468302,0.000019565907,0.000019463641,0.000018310717,0.000018953775,0.00001916573,0.000019596137,0.000018825642,0.00001982671,0.000019926074,0.000020196976,0.000018919607,0.00001995909,0.000019857858,0.000020014479,0.000019058994,0.000019760191,0.000019716239,0.000019610328,0.00001844479,0.000019419958,0.000019586274,0.000020103085,0.000019414052,0.000020525122,0.000020743646,0.000020977595,0.000020164796,0.000020790325,0.000020739117,0.000020521013,0.000019885865,0.000020017362,0.00002020707,0.000019966781,0.000019036324,0.000019417479,0.000019434874,0.000019676849,0.000019080053,0.000020229805,0.000020339408,0.000021060681,0.000020144673,0.000020813794,0.000020447873,0.000020729387,0.000020106172,0.000020357029,0.000020890493,0.000020653417,0.000020205143,0.00001920516,0.000019403798,0.00001914412,0.000020055482,0.00001993417,0.000021102036,0.000021190606,0.000021719343,0.00002125748,0.000021593176,0.000023125975,0.00002365955,0.000024510871,0.0000177862,0.000011182101,0.000012885578],[0.000015923935,0.000011270576,0.000010203571,0.000014007011,0.000025828385,0.000033624583,0.000026541598,0.000023641642,0.000019937954,0.000020059595,0.000018553359,0.000018983714,0.00001804731,0.000019114128,0.000018838608,0.00002005661,0.000019323857,0.000020552308,0.00001907587,0.00001967805,0.000019307057,0.000020717747,0.000019458483,0.000019986746,0.000018809491,0.000019781874,0.000019043915,0.00001916244,0.00001881898,0.000019605839,0.00001907716,0.000019192781,0.000018211662,0.000018962075,0.000018454837,0.00001894763,0.000018581353,0.00001972141,0.000019065048,0.000019785552,0.000019110812,0.000020146921,0.00001933866,0.000019531062,0.00001927422,0.00001987453,0.00001955434,0.000019148501,0.000018718141,0.000019137511,0.000018877994,0.00001896826,0.000018885179,0.00001959655,0.000019104233,0.00001939969,0.000019141982,0.000019797972,0.000019110958,0.000019093488,0.000019125542,0.000019548168,0.00001907265,0.00001858995,0.000018384066,0.000018886007,0.000018528268,0.000018594577,0.000018528055,0.000019340505,0.000018720515,0.000019052997,0.000018808145,0.000019576732,0.000018829896,0.000018882585,0.000018868994,0.000019330178,0.000018814675,0.000018464607,0.00001829152,0.000018913763,0.000018518711,0.000018724104,0.000018631943,0.000019533614,0.000018876373,0.00001922625,0.000018973544,0.00001973281,0.000018982393,0.000019054507,0.000019057286,0.000019512892,0.000018966595,0.000018569377,0.000018384504,0.000018970413,0.000018582168,0.000018738823,0.000018638873,0.000019475543,0.00001881805,0.000019143645,0.00001890857,0.000019664523,0.000018938219,0.000018986848,0.000019002951,0.00001945837,0.000018931412,0.000018531378,0.000018377772,0.000018976943,0.000018595889,0.000018732086,0.0000186049,0.00001943378,0.000018803285,0.000019121968,0.000018895753,0.000019660492,0.000018954246,0.000018989436,0.000018983968,0.000019432317,0.000018912899,0.000018520019,0.000018349332,0.000018939501,0.000018559535,0.000018702653,0.000018603463,0.000019447018,0.000018794663,0.000019114494,0.000018878569,0.000019647186,0.000018925744,0.000018989256,0.000019006104,0.000019476174,0.000018945662,0.000018541738,0.000018378088,0.000018982086,0.000018604456,0.000018768744,0.000018652156,0.000019494162,0.000018836488,0.000019191848,0.000018954572,0.000019726753,0.000018966162,0.000019001374,0.000018981995,0.00001943797,0.00001893849,0.00001855665,0.000018354547,0.00001890172,0.000018479917,0.000018623274,0.000018507924,0.000019354104,0.000018714552,0.000019062558,0.000018804576,0.000019547311,0.000018797744,0.000018835086,0.00001885241,0.000019320576,0.000018843746,0.000018455261,0.000018327279,0.000018936034,0.000018607987,0.000018775618,0.000018681974,0.000019532665,0.00001897356,0.000019331193,0.000019071504,0.000019808094,0.000019010291,0.000018982175,0.000018992841,0.000019475376,0.000019057432,0.000018570618,0.00001840436,0.000018894852,0.000018559393,0.00001846195,0.000018444633,0.00001922726,0.00001868267,0.000018905776,0.00001877954,0.000019652769,0.000018892582,0.000018857372,0.000018876859,0.00001937876,0.000018896797,0.000018573983,0.000018607703,0.000019112396,0.000018844663,0.000018981995,0.000018901539,0.000019758025,0.00001963031,0.000020153224,0.000019826068,0.000020637666,0.000019841407,0.000019943183,0.000019644975,0.000020206706,0.00001990296,0.000019547851,0.000018874465,0.000019349582,0.000018905072,0.00001918226,0.000018751516,0.000019926036,0.000019533483,0.00002054355,0.000019494033,0.000020642903,0.000019489664,0.000020248834,0.00001951963,0.000020953383,0.000020589208,0.000020910265,0.000019215455,0.000019535497,0.000019588346,0.000019838171,0.000019958385,0.00002046828,0.000021604814,0.000022349677,0.000021989068,0.000022272314,0.000023703748,0.000024770012,0.000024088822,0.000016343723,0.000011320688,0.000013169628],[0.000015615138,0.000010770033,9.1605125e-6,0.000012733188,0.000024849152,0.00003657384,0.000031093878,0.000025072288,0.000021942062,0.00002078763,0.00002031109,0.0000188122,0.000019347293,0.000019189725,0.000020424273,0.00001936627,0.00002119863,0.000020493868,0.000021134521,0.000019207411,0.00002056976,0.000020285152,0.000021025662,0.000019531008,0.000020127447,0.000019586945,0.000020048885,0.000019276242,0.000019926452,0.00001976311,0.000020528978,0.00001914527,0.00001976641,0.000019025254,0.000019873543,0.000018499719,0.000019905712,0.000019575013,0.0000208745,0.000019357058,0.000020490193,0.000020180629,0.000020873405,0.000019729046,0.000020225232,0.000020324382,0.000020870937,0.000019597483,0.000019792555,0.000019291874,0.000019898936,0.000018821243,0.00001985021,0.000019583566,0.000020536694,0.000019119325,0.000020138219,0.000019732848,0.00002031452,0.000019243878,0.000019977428,0.00002011415,0.000020428908,0.000019060813,0.000019433335,0.000019032785,0.000019623834,0.000018427965,0.000019546398,0.000019301111,0.00002025374,0.00001877125,0.000019811703,0.000019439916,0.000020023968,0.000018924355,0.000019768937,0.000019848278,0.000020209653,0.000018829502,0.000019381347,0.000018982266,0.000019667676,0.00001843352,0.000019663079,0.000019382253,0.000020413348,0.000018909652,0.000019999292,0.000019629973,0.000020216168,0.000019100771,0.000019951705,0.000020035064,0.000020356698,0.00001895996,0.000019494793,0.000019092138,0.000019727411,0.00001849875,0.000019723779,0.000019414736,0.000020359126,0.000018845543,0.000019932668,0.00001956458,0.000020147554,0.00001906352,0.000019917752,0.00002001347,0.000020335685,0.000018946583,0.000019502326,0.000019125215,0.00001974674,0.000018484798,0.000019683155,0.000019402245,0.000020358873,0.000018855988,0.000019906263,0.000019568946,0.000020179936,0.0000190808,0.000019891804,0.00001999893,0.000020316107,0.000018913528,0.000019443309,0.00001906583,0.000019706877,0.000018466597,0.00001968368,0.000019392124,0.000020347617,0.000018831459,0.000019915036,0.000019552082,0.000020149439,0.000019061776,0.00001992178,0.000020024921,0.000020347694,0.000018943585,0.000019482286,0.000019105235,0.00001974851,0.000018506777,0.00001972299,0.000019420979,0.000020374995,0.000018876462,0.000019966154,0.000019594325,0.000020151245,0.000019035617,0.000019875799,0.000019988232,0.000020304351,0.000018891104,0.000019382585,0.000018985182,0.000019608906,0.000018353252,0.000019588906,0.000019303854,0.000020252948,0.000018718658,0.000019804676,0.000019422238,0.000019970741,0.000018886763,0.000019735897,0.000019872974,0.00002023758,0.000018887304,0.000019414516,0.000019078743,0.000019762321,0.000018566863,0.000019753805,0.000019466686,0.000020496114,0.000019033929,0.000020097239,0.000019676867,0.000020165433,0.000019043951,0.000019798501,0.000020007228,0.000020334697,0.00001906603,0.000019413887,0.000019061994,0.000019592231,0.00001833957,0.000019517136,0.00001929294,0.000020376083,0.000018841267,0.000020008563,0.000019693332,0.00002035963,0.000019038394,0.000019962801,0.000020009746,0.000020525182,0.000019107149,0.00001982157,0.000019549549,0.000020431655,0.000019029047,0.000020111926,0.000019835203,0.000021409536,0.000020046322,0.000020985299,0.000020658126,0.000021365644,0.000020274669,0.000020604746,0.000020716661,0.000021109603,0.000020094902,0.000020086854,0.000019479927,0.000020069736,0.00001906905,0.000020262723,0.00001978278,0.000021299647,0.000020113192,0.000021102416,0.000020457097,0.00002098832,0.000020263613,0.000020688427,0.000021094247,0.000021892838,0.000020974872,0.00002012624,0.000019491541,0.000019760624,0.00001942898,0.000019908106,0.000020580415,0.000021457468,0.00002162487,0.000021081842,0.0000214203,0.000024295188,0.000024099027,0.000023654024,0.000015882682,0.000011116,0.000013297369],[0.000016076383,0.000010849133,9.870205e-6,0.0000121312505,0.000025120968,0.000033697193,0.000027620772,0.000023743316,0.000020675488,0.000019962326,0.00001867875,0.000018551287,0.000018076902,0.000018602594,0.00001822742,0.000018843082,0.00001928435,0.000020225829,0.000019047602,0.000019249697,0.000019043133,0.000020393269,0.000019112817,0.000019623498,0.000018981833,0.000019853369,0.00001923144,0.00001975823,0.000019182955,0.000019978437,0.000018984638,0.00001908808,0.000018841716,0.000019462064,0.00001899572,0.000019341298,0.00001919549,0.000020433059,0.000019473166,0.00001987925,0.000019671463,0.000020957279,0.000020224808,0.000020466816,0.000019871686,0.000020459227,0.000019728142,0.0000191138,0.000019309562,0.000019344821,0.000019388906,0.000019145087,0.000019329313,0.000019868237,0.000019176827,0.00001908231,0.00001939024,0.000020114552,0.000019792837,0.000019681973,0.000019706464,0.000020115263,0.00001938595,0.000018508648,0.000018944018,0.000018934807,0.000018950215,0.000018554474,0.000018940314,0.00001955779,0.000018838176,0.000018761835,0.00001903382,0.00001985087,0.00001939353,0.00001932417,0.000019376246,0.000019938067,0.000019102848,0.000018317547,0.00001872462,0.000018891824,0.00001886072,0.000018581724,0.000018963034,0.000019675366,0.000018934752,0.000018925562,0.000019189394,0.000020040741,0.000019601912,0.000019520821,0.000019539873,0.00002006876,0.000019244926,0.00001843628,0.000018878838,0.0000190139,0.000018981867,0.000018655695,0.000019066121,0.000019747229,0.000018964496,0.00001886777,0.000019127476,0.000019959869,0.000019537452,0.000019470734,0.000019538757,0.000020062751,0.000019257373,0.00001842591,0.00001889215,0.000019025056,0.000019004925,0.000018638411,0.000019039557,0.000019702255,0.000018964878,0.00001884727,0.000019134994,0.00001998587,0.00001962595,0.000019513394,0.000019524807,0.000020019785,0.000019232393,0.00001838822,0.000018835535,0.000018966868,0.000018953704,0.000018606497,0.000019023077,0.000019713305,0.000018955909,0.000018859388,0.000019128114,0.000019964344,0.000019549418,0.000019493029,0.000019548692,0.000020083828,0.000019258126,0.000018433326,0.000018872755,0.000019015042,0.000018989293,0.000018661158,0.000019052906,0.000019743973,0.000018970793,0.000018890527,0.000019139137,0.000019994943,0.000019550798,0.000019484794,0.000019503592,0.000020006673,0.000019155952,0.000018331648,0.000018746741,0.000018881252,0.000018831566,0.000018515568,0.00001891196,0.000019602625,0.000018808989,0.000018727926,0.000018979714,0.00001983751,0.000019367286,0.000019307887,0.000019411424,0.000019987336,0.000019237512,0.000018391991,0.000018872719,0.00001902607,0.000019087734,0.000018745024,0.000019140103,0.000019805828,0.00001915409,0.000019086205,0.000019321573,0.00002010763,0.000019594494,0.000019478402,0.000019491075,0.000020045234,0.000019405483,0.000018519135,0.00001889979,0.000018912518,0.00001895786,0.000018447236,0.000018968713,0.000019628007,0.00001900248,0.000018790952,0.000019248339,0.000020067151,0.000019757535,0.000019419793,0.000019680752,0.000020000569,0.000019455958,0.00001843547,0.000019274772,0.000019314959,0.000019660962,0.000018980203,0.000019401468,0.000019786667,0.000019622263,0.000019580764,0.000019784195,0.000020400366,0.000020174799,0.000019933866,0.000019776404,0.000019959489,0.000019695191,0.000018972169,0.000019212963,0.000018956145,0.000019109662,0.000018891249,0.000019089719,0.00002001053,0.000019643812,0.000020389398,0.000019972074,0.000021010668,0.0000201144,0.000020752293,0.000020031417,0.000021299098,0.00002084478,0.000020942593,0.000020006846,0.000019844889,0.000020527921,0.00002040023,0.000020983276,0.000021449285,0.00002180911,0.00002250152,0.000021738593,0.000022627079,0.000024275574,0.000026418214,0.00002508829,0.000016904367,0.000010744079,0.000013601168],[0.000016100594,0.000010910723,9.616789e-6,0.000012759737,0.000022861897,0.000035957524,0.00002801952,0.000024263052,0.000021305355,0.000020481364,0.000019597408,0.00001905256,0.000019055742,0.000019112105,0.000019174597,0.000018868292,0.000019853389,0.000020052843,0.000020247251,0.000019406816,0.00002065586,0.000020579493,0.000020423822,0.000019600942,0.000020140254,0.000020021009,0.000020572292,0.000020137335,0.000020494885,0.000020238987,0.000019962097,0.000019211277,0.000019784025,0.000020011692,0.00002093277,0.000020258569,0.000021296742,0.000020920477,0.000021198184,0.000019941966,0.000021095857,0.000021137079,0.000022070602,0.000021076976,0.000021325866,0.000020988242,0.000020242058,0.000019352516,0.000019633231,0.000020134761,0.000020565798,0.000020153262,0.000020839076,0.0000205489,0.000020389069,0.000019274128,0.00002026912,0.000020440017,0.000021117132,0.000020297555,0.000020765478,0.000020400717,0.00001968736,0.000018726907,0.000019077252,0.000019501433,0.000019829944,0.000019434336,0.00002032033,0.000020077949,0.000020052747,0.000018945426,0.00001998362,0.000020059977,0.000020709547,0.000019875646,0.000020480993,0.000020151898,0.0000195387,0.000018531944,0.000018929155,0.000019404188,0.000019817542,0.000019387817,0.000020422265,0.000020144558,0.000020199692,0.000019045803,0.000020148938,0.00002023148,0.000020916546,0.000020083673,0.000020659485,0.000020295078,0.000019659612,0.000018665038,0.000019073177,0.000019550815,0.00001992822,0.00001950651,0.000020490077,0.000020239124,0.000020272697,0.000019057432,0.00002011463,0.000020201445,0.000020862084,0.00002004076,0.000020649124,0.000020301408,0.00001966293,0.000018664487,0.000019051291,0.000019544179,0.000019925656,0.000019485557,0.000020423064,0.000020181207,0.000020213642,0.000019018344,0.000020098447,0.000020287724,0.000020984859,0.000020119425,0.000020621594,0.000020259457,0.000019663212,0.000018669756,0.000019035162,0.000019508148,0.000019894345,0.000019467634,0.00002044838,0.000020214664,0.000020256946,0.000019049692,0.000020106632,0.000020205318,0.000020877447,0.000020059555,0.000020658441,0.000020304795,0.000019669833,0.000018661302,0.000019044406,0.000019522106,0.00001991933,0.000019493678,0.000020466035,0.00002020948,0.00002025882,0.000019037032,0.000020115127,0.000020252928,0.000020900177,0.00002002246,0.000020550997,0.000020170663,0.000019550145,0.000018544442,0.000018939952,0.000019411886,0.000019833631,0.000019370056,0.000020361884,0.000020067631,0.000020106192,0.000018917135,0.000019975903,0.000020021524,0.00002069561,0.000019899697,0.000020556621,0.000020273315,0.000019654211,0.000018677378,0.000019059486,0.000019575069,0.000019991188,0.000019586796,0.000020527785,0.000020302125,0.000020403053,0.00001922064,0.000020251944,0.000020316555,0.000020840467,0.000019953797,0.000020398482,0.000020157395,0.000019547013,0.000018681723,0.000018843604,0.000019309213,0.000019652658,0.000019331728,0.000020205413,0.000020107072,0.000020141271,0.000018951752,0.000020052288,0.000020228934,0.000021019767,0.000020176183,0.000020903924,0.000020499887,0.000019944135,0.00001888154,0.000019607542,0.000020204296,0.000020861724,0.000020400581,0.00002105054,0.000020725,0.00002074228,0.000020048521,0.000020774905,0.00002099939,0.000021478863,0.000020680933,0.000020564485,0.000020545216,0.000019689764,0.000019308973,0.000019409905,0.000019916612,0.000020306792,0.000019904535,0.000020820802,0.000020644713,0.000021108757,0.000020337062,0.000021454725,0.000021117294,0.000021967102,0.000021348107,0.00002183304,0.000021683994,0.000021156158,0.00002106277,0.00002017578,0.0000204508,0.000020862679,0.000021645317,0.000021489659,0.000022255796,0.000021617798,0.00002219613,0.000021705056,0.000022054655,0.0000244302,0.00002493537,0.000025669806,0.000017760436,0.000011174372,0.000013557345],[0.000016022293,0.000010682921,0.0000100827065,0.0000118205835,0.000021655063,0.00003374752,0.000026329279,0.000023445029,0.000019939818,0.000020026757,0.000018796598,0.00001925379,0.000018224378,0.000018885845,0.00001821847,0.000018711002,0.000018487832,0.000019805924,0.000018513785,0.000019472403,0.000018974755,0.000020436722,0.000018624907,0.000019121166,0.000018182265,0.000019796009,0.000018891518,0.000020150359,0.000019158693,0.000020240514,0.00001835551,0.000018726942,0.000018018092,0.000019581063,0.00001891719,0.000020011903,0.000019422681,0.000020446723,0.000018876914,0.000019541048,0.000018884908,0.000020881012,0.000020070385,0.000021182079,0.000020112751,0.000021026846,0.000018992696,0.00001916573,0.00001843062,0.000020029907,0.000019278466,0.000020335781,0.000019664018,0.000020648178,0.000018816218,0.000019306837,0.000018685556,0.00002039424,0.000019644525,0.000020533835,0.000019836318,0.000020668076,0.000018719926,0.000018706914,0.000018134055,0.000019450448,0.000018660181,0.000019520485,0.00001917776,0.000020148707,0.000018438248,0.000018963123,0.00001842779,0.000019997575,0.000019164048,0.000020065869,0.000019426425,0.000020353029,0.000018414104,0.00001844282,0.000017864208,0.000019246741,0.00001848903,0.000019394345,0.000019059122,0.00002015136,0.00001848984,0.000019041972,0.000018472956,0.000020124608,0.000019312656,0.00002028279,0.000019619849,0.000020543277,0.000018581884,0.000018626824,0.000018041941,0.0000194202,0.000018619117,0.000019539148,0.000019168947,0.00002025179,0.000018545115,0.00001909975,0.000018478948,0.000020149417,0.000019283394,0.000020249143,0.000019600342,0.000020559191,0.0000185866,0.00001864762,0.000018056951,0.000019438396,0.00001861626,0.000019523186,0.00001916147,0.000020224326,0.000018519277,0.000019044133,0.000018502311,0.000020233583,0.000019403318,0.000020292871,0.000019604757,0.000020518723,0.000018591774,0.000018646162,0.000018057193,0.000019414627,0.000018598745,0.00001950227,0.000019142532,0.000020220681,0.000018523499,0.00001908118,0.000018466562,0.000020142483,0.000019274146,0.000020253701,0.000019590552,0.00002055127,0.000018562278,0.000018626044,0.00001802342,0.000019414127,0.000018592165,0.00001950932,0.00001912901,0.00002021083,0.000018513501,0.000019094927,0.000018482137,0.00002018829,0.000019269992,0.000020169738,0.000019475005,0.000020391108,0.000018450402,0.00001849813,0.000017936314,0.000019309875,0.00001849402,0.000019368063,0.000019006504,0.000020050624,0.000018384557,0.000018938003,0.000018351746,0.000019918283,0.000019106603,0.000020101532,0.00001953505,0.000020519388,0.000018609142,0.000018648492,0.000018099345,0.000019465924,0.000018696233,0.000019619381,0.00001924865,0.00002031109,0.000018665804,0.000019230705,0.000018606142,0.00002029651,0.000019330437,0.000020186539,0.000019467838,0.00002045152,0.000018598834,0.000018636028,0.000018005949,0.000019277364,0.00001845769,0.000019356872,0.000019137986,0.000020184132,0.000018565004,0.000018984583,0.000018423834,0.00002004594,0.000019387207,0.000020297091,0.000019883306,0.0000206108,0.000019034236,0.000018918543,0.000018644989,0.000020003907,0.000019818071,0.000020574627,0.000020135416,0.000020811154,0.000019693069,0.000020230384,0.000019722595,0.000021101874,0.00002085715,0.000021374079,0.000020601467,0.000020966274,0.000019626923,0.00001938301,0.000018856312,0.000019916897,0.000019616125,0.000020316884,0.000019654231,0.00002054065,0.000019393605,0.000020077125,0.00001930621,0.000020850386,0.000020707732,0.000022027687,0.000020961736,0.000021850163,0.000020255942,0.000020377967,0.00001932747,0.000019899544,0.000021093243,0.00002172705,0.000021711452,0.000021916881,0.000021837603,0.000022595768,0.000021749418,0.000022039412,0.000023568773,0.000025538513,0.0000252906,0.000017112829,0.00001117708,0.000013900513],[0.000016527467,0.00001031138,9.865595e-6,0.000011795381,0.000022581873,0.00003706403,0.000029989742,0.000023767081,0.000021216387,0.000020259826,0.000020163701,0.0000188075,0.00001933547,0.000019004436,0.00001925673,0.000018307994,0.000019899127,0.000019724419,0.000020559659,0.000018897934,0.000020542864,0.000019971369,0.000020029278,0.000018622652,0.000019542502,0.000019139738,0.000019905694,0.000019135048,0.000020269643,0.000019443605,0.000019343826,0.000018156481,0.000019118212,0.000018849696,0.000019794687,0.000018941073,0.000020394766,0.00001956169,0.000019949784,0.000018878822,0.000020079307,0.000019929379,0.000021225129,0.000020233643,0.000021332009,0.000020254995,0.000020155281,0.000018932784,0.000019641715,0.000019371535,0.00002036437,0.000019505247,0.000020832262,0.000019943012,0.00002015355,0.00001887441,0.00001993436,0.000019715317,0.0000207632,0.00001987538,0.000020993584,0.000020112922,0.000019895977,0.000018635621,0.000019344305,0.000019040901,0.000019749132,0.000018846677,0.00002032382,0.000019608327,0.000019780062,0.000018606586,0.000019702986,0.000019353845,0.000020303287,0.000019367342,0.000020563111,0.000019718702,0.000019541012,0.000018288398,0.000019036017,0.000018783374,0.000019539837,0.000018658098,0.000020148535,0.00001950145,0.000019807094,0.000018664612,0.000019727298,0.000019388906,0.000020438612,0.000019542967,0.000020782058,0.000019931318,0.000019741676,0.000018494004,0.000019251589,0.000018962255,0.000019680207,0.000018798139,0.000020300111,0.000019655712,0.00001991099,0.000018722352,0.000019806546,0.000019488047,0.000020479663,0.000019560346,0.000020802165,0.000019955949,0.00001977184,0.00001853159,0.000019291267,0.000018986304,0.00001968432,0.000018794213,0.000020278749,0.000019633362,0.000019882833,0.000018657189,0.000019762547,0.000019543564,0.000020543119,0.000019564244,0.00002075249,0.00001990987,0.000019743538,0.000018520725,0.000019274257,0.000018969997,0.000019661467,0.000018769066,0.000020261352,0.000019611934,0.000019870378,0.000018693612,0.000019798312,0.000019477178,0.00002046145,0.00001953844,0.000020776451,0.000019918189,0.000019730684,0.000018484798,0.000019244722,0.00001894252,0.000019646568,0.000018751569,0.00002025287,0.000019622337,0.00001989907,0.000018682813,0.000019760491,0.000019450466,0.00002040753,0.000019454754,0.000020641091,0.000019777894,0.000019611543,0.000018399553,0.000019158182,0.00001883681,0.000019539837,0.000018625102,0.000020111293,0.000019437153,0.00001969893,0.000018584878,0.000019630217,0.000019269937,0.00002028546,0.000019428851,0.000020691545,0.000019927138,0.000019758609,0.000018550598,0.000019289906,0.00001899594,0.000019742296,0.000018889465,0.00002036866,0.000019683643,0.000019986079,0.00001880402,0.000019941148,0.00001962187,0.000020537927,0.000019494144,0.00002067466,0.000019834444,0.000019662835,0.000018477114,0.000019228873,0.000018821387,0.00001952516,0.00001861372,0.00002023978,0.000019620073,0.000019940711,0.000018641078,0.00001965856,0.000019428573,0.000020442101,0.000019682948,0.000020898144,0.0000202926,0.000020220623,0.000019156045,0.000019814444,0.000019870284,0.000020959458,0.000020310645,0.000021601743,0.000020848756,0.000021231242,0.000020409843,0.000020914313,0.000021090105,0.00002209303,0.00002148712,0.000021990472,0.000021161768,0.000020933328,0.000019751618,0.000020049,0.000019974172,0.00002083103,0.000020030271,0.000021113388,0.000020166393,0.000020496485,0.000019538813,0.000020264037,0.000020325817,0.000021646143,0.00002127697,0.000022113265,0.000021412843,0.000020845337,0.000019837831,0.00001936278,0.000019381901,0.000020460571,0.00002066796,0.000021280279,0.00002099677,0.000021059455,0.000021007463,0.000020484822,0.000020785666,0.000023185354,0.000024307634,0.000026255737,0.00001732961,0.000011836489,0.000013167719],[0.000016775297,0.00001107507,0.000010481873,0.000012734148,0.000023836516,0.000034822897,0.000026962152,0.000022357415,0.000019159626,0.000019627614,0.000018256891,0.000018711144,0.0000179137,0.000018603427,0.000017554781,0.000018143171,0.000017990415,0.000019505953,0.000018112727,0.000018762623,0.000018466757,0.000019863692,0.000018282084,0.000018775654,0.00001783493,0.000019184456,0.000017902907,0.000019081073,0.000018328414,0.000019715035,0.00001789253,0.000018788138,0.00001782767,0.000019386856,0.00001809158,0.000019302142,0.000018687942,0.000020240783,0.000018648954,0.000019819583,0.000018906407,0.00002076118,0.000019239493,0.000020359455,0.000019326088,0.00002058438,0.000018656265,0.000019574789,0.000018604724,0.000020257778,0.00001867745,0.000020083598,0.000019151661,0.000020668984,0.000018801797,0.000020053149,0.000019175784,0.000020937921,0.000019254543,0.000020473415,0.000019375617,0.00002068105,0.000018535002,0.000019413126,0.000018513643,0.000020102241,0.000018442504,0.000019701934,0.0000188385,0.000020406904,0.000018521114,0.000019757346,0.000018999943,0.000020672669,0.000018955205,0.000020100822,0.000019016965,0.000020329326,0.000018211367,0.00001908959,0.000018264953,0.000019887857,0.000018273247,0.000019590327,0.00001874515,0.000020354602,0.000018526696,0.000019814652,0.00001900286,0.000020695907,0.000019020446,0.000020232368,0.000019145962,0.000020488336,0.00001835012,0.000019251569,0.000018402361,0.000020034644,0.000018355948,0.000019697953,0.00001884301,0.000020476384,0.00001860169,0.000019907593,0.000019058958,0.000020804862,0.000019069175,0.000020282869,0.000019173114,0.000020538908,0.000018384082,0.000019305495,0.000018445353,0.000020071227,0.000018357821,0.000019689576,0.000018824545,0.000020440777,0.000018566137,0.000019871042,0.000019043644,0.000020824076,0.000019095272,0.000020257508,0.000019128114,0.000020499243,0.000018360535,0.00001927545,0.000018423485,0.000020064988,0.000018359116,0.000019689443,0.000018811894,0.000020434365,0.000018547538,0.000019863577,0.000019028665,0.000020790227,0.000019038103,0.000020254512,0.000019131781,0.0000204959,0.00001831669,0.000019232595,0.000018368975,0.000020003392,0.000018294728,0.000019640367,0.000018772575,0.00002040237,0.00001850113,0.000019791762,0.000018935276,0.00002070868,0.000018951227,0.000020132937,0.000019026362,0.00002039045,0.000018271017,0.000019182698,0.000018323311,0.00001993206,0.000018244169,0.000019559357,0.000018706254,0.000020306714,0.000018446146,0.000019717347,0.000018947578,0.000020618016,0.000018993474,0.000020231191,0.000019185041,0.000020549467,0.000018442768,0.000019331654,0.000018463446,0.000020076704,0.000018440658,0.000019787893,0.00001891867,0.00002052571,0.00001868757,0.000020007687,0.000019136563,0.000020873089,0.000019011415,0.000020098505,0.000018942535,0.000020297264,0.000018131825,0.00001903825,0.000018142808,0.000019834237,0.00001810929,0.000019465257,0.000018659912,0.000020370177,0.000018581797,0.000019882056,0.000019030134,0.000020784377,0.000019266447,0.0000205336,0.000019646623,0.000021051042,0.00001920701,0.000020124417,0.000019286686,0.000020839056,0.000019606588,0.000020956739,0.000020307545,0.000021758338,0.000020206453,0.000021396023,0.00002042741,0.000021718204,0.000020221645,0.000020879697,0.000020120828,0.0000207497,0.000019400597,0.000019619381,0.000018996174,0.000020073221,0.000019174613,0.000020093943,0.000019617135,0.000020712987,0.00001943747,0.000020333437,0.000019464569,0.000020671725,0.000019543453,0.000020559739,0.000019963316,0.00002103892,0.000019632538,0.000019733676,0.000018637611,0.000019709225,0.000019572904,0.00002075924,0.000020630228,0.000021496178,0.000021093343,0.000022223641,0.00002146981,0.000022603914,0.000023154442,0.000026087515,0.000025784997,0.000018413964,0.000011302188,0.000013652447],[0.000015744197,0.000011243222,9.5674195e-6,0.00001400279,0.000023977986,0.000036402118,0.000028357123,0.000022496219,0.000020370488,0.000019871763,0.000019923185,0.00001892623,0.00001958575,0.000019011633,0.000019618015,0.000018788656,0.000020020569,0.000019867062,0.000020163643,0.000019109899,0.000020583419,0.0000203845,0.000020644911,0.000019648067,0.000020326184,0.000019900057,0.000020002362,0.000019317373,0.000020568683,0.000019935007,0.000020465353,0.000019570925,0.000020430974,0.000019790763,0.000020136971,0.000019293346,0.000020757934,0.000020103622,0.000020894078,0.000020245398,0.000021430391,0.000020975092,0.00002093337,0.000019864126,0.000021051444,0.000020285674,0.00002084846,0.00001989336,0.000021128071,0.000020449315,0.000020658441,0.000019695453,0.000021056885,0.00002024223,0.000020927182,0.000020218173,0.000021475833,0.000020844442,0.000020822172,0.000019984898,0.000021140428,0.000020384596,0.000020771933,0.000019803372,0.000021017222,0.000020352854,0.000020540827,0.000019566969,0.000020793655,0.000020046895,0.000020672413,0.000019977066,0.000021248703,0.000020650878,0.000020617248,0.000019748773,0.000020830712,0.00002008193,0.00002044058,0.000019529758,0.000020734133,0.000020115705,0.00002035633,0.000019469731,0.0000207516,0.000020007285,0.000020638374,0.000019990901,0.000021273541,0.000020648731,0.00002064694,0.000019790989,0.000020908848,0.00002014448,0.00002053685,0.00001961274,0.000020878166,0.000020249568,0.000020477106,0.000019569003,0.00002087462,0.000020125875,0.000020756093,0.000020103353,0.00002141074,0.000020774727,0.000020763517,0.000019881998,0.000021007745,0.000020221394,0.000020604706,0.000019670339,0.000020925683,0.000020267767,0.000020473824,0.00001954047,0.000020842535,0.00002007387,0.000020700743,0.000020060186,0.000021359572,0.000020705756,0.000020697998,0.000019826068,0.000020950365,0.00002018188,0.000020572881,0.000019636844,0.000020909765,0.000020271364,0.000020492947,0.000019566614,0.000020859576,0.000020095782,0.00002072249,0.0000200586,0.000021377424,0.000020732848,0.000020727766,0.000019837264,0.000020966336,0.0000201773,0.000020558778,0.000019621008,0.000020894437,0.000020233412,0.000020448613,0.000019496747,0.000020784693,0.000020010966,0.000020624739,0.000019955607,0.000021267355,0.00002063318,0.000020614594,0.00001972581,0.000020848698,0.000020080954,0.000020456357,0.000019500058,0.000020756348,0.000020115876,0.000020328629,0.000019401004,0.000020701867,0.000019962898,0.000020566269,0.00001991437,0.00002120862,0.000020636959,0.000020665573,0.000019874396,0.000021000213,0.000020269488,0.000020666697,0.00001972948,0.000020939657,0.000020313413,0.000020560876,0.000019653855,0.000020949226,0.000020182766,0.00002083824,0.00002018446,0.000021473743,0.000020817843,0.00002070019,0.000019712666,0.000020823521,0.000020066616,0.000020443837,0.000019420737,0.000020718971,0.000020074196,0.000020334348,0.00001934189,0.000020692176,0.00002001337,0.000020763517,0.000020150475,0.000021417152,0.000020795283,0.000020901953,0.000020154588,0.000021342572,0.000020727271,0.000021188202,0.000020566898,0.000021499416,0.000021053773,0.000021180767,0.000020499574,0.000021708118,0.000021262611,0.000021902799,0.000021446605,0.000022165013,0.00002177374,0.00002100624,0.00002047193,0.000021041387,0.000020805279,0.000021014957,0.000020136626,0.000020940697,0.00002069715,0.000020748395,0.000020141291,0.000021168873,0.000020690559,0.000021388272,0.000020849055,0.000021494867,0.000021053973,0.000020559444,0.000020198786,0.000020755835,0.000021164937,0.00002068105,0.000019969466,0.00001951922,0.000019574974,0.0000194761,0.000020113152,0.00002056772,0.000021210762,0.00002131879,0.000021785725,0.00002169057,0.000022258237,0.00002390098,0.000025109759,0.00002607968,0.000019164834,0.000011729133,0.000013774556],[0.000015076347,0.000013162408,0.000010473329,0.000015091553,0.000025972508,0.000034615234,0.000026961226,0.000022727967,0.00001910478,0.000019936033,0.000018919482,0.000019259613,0.000018293578,0.000018863346,0.000018616738,0.000019302714,0.000018778966,0.000019896414,0.000018816523,0.000019127769,0.000018858038,0.000020027654,0.000019198988,0.000019846479,0.000018731658,0.000019706238,0.000018797171,0.000019329571,0.000018648296,0.000019858142,0.00001897604,0.000020094652,0.000018759385,0.00001986697,0.000018764036,0.000019428073,0.000018673709,0.000019912815,0.000019408313,0.000020613847,0.00001952004,0.000020808118,0.000019344656,0.00001968567,0.00001882433,0.000020101936,0.000019426665,0.0000202532,0.000019093633,0.000020422947,0.000019248413,0.000019842466,0.000018770588,0.000020054065,0.000019418181,0.000020555603,0.000019354324,0.00002081546,0.000019420293,0.000020151956,0.000019147059,0.000020530115,0.00001961966,0.000020363319,0.000019166917,0.000020497699,0.000019274845,0.000019883022,0.000018755878,0.00002000225,0.000019302528,0.000020401923,0.000019235293,0.000020684009,0.000019310666,0.000019991854,0.000018964496,0.00002031105,0.000019390702,0.000020132573,0.000018982302,0.00002032163,0.000019130724,0.000019801768,0.00001870267,0.000020012074,0.000019278854,0.000020407666,0.000019251496,0.000020717154,0.000019328982,0.000020024807,0.000018981435,0.000020332272,0.000019405723,0.000020174568,0.000019012195,0.000020385314,0.00001917222,0.000019853975,0.000018741914,0.000020066713,0.000019308512,0.000020456357,0.000019285455,0.000020767695,0.000019351999,0.00002006411,0.000019007844,0.000020376958,0.000019451933,0.000020231579,0.000019049945,0.00002041436,0.00001917273,0.000019830248,0.000018720835,0.000020044718,0.000019298957,0.000020440231,0.00001926404,0.000020715692,0.00001929997,0.000020017304,0.000018973651,0.000020316651,0.000019401967,0.000020158357,0.00001899842,0.00002037408,0.000019154893,0.0000198405,0.000018731407,0.000020052306,0.00001929121,0.00002043152,0.000019257664,0.000020721758,0.000019308034,0.000020012265,0.000018961477,0.000020311652,0.000019391016,0.000020148746,0.000018969327,0.000020312678,0.000019062903,0.000019717536,0.000018624623,0.000019942861,0.000019192012,0.000020323392,0.000019171013,0.00002064812,0.000019242447,0.000019930425,0.000018886458,0.000020214702,0.000019307867,0.000020057434,0.000018910265,0.00002027113,0.000019057794,0.000019701973,0.000018618603,0.000019935747,0.000019205396,0.000020288962,0.000019168216,0.000020671132,0.000019363702,0.000020093923,0.000019088844,0.000020463714,0.000019570814,0.000020309753,0.000019114985,0.000020485426,0.000019286557,0.00001995749,0.000018845687,0.000020165297,0.000019433633,0.000020592941,0.000019390369,0.000020835558,0.000019275654,0.000019859563,0.000018811032,0.000020148726,0.000019178711,0.00001989575,0.00001872355,0.000020156165,0.000018864766,0.000019552886,0.000018445442,0.000019898178,0.00001925203,0.000020431187,0.000019214227,0.000020734786,0.000019526089,0.000020329888,0.000019380921,0.000020976055,0.00002045663,0.000021410782,0.000020070675,0.000021277783,0.000020018793,0.000020795678,0.000019742749,0.000021132264,0.000020750986,0.000021999365,0.000020671821,0.00002179383,0.000020196147,0.000020522128,0.000019587094,0.000020618898,0.000020091336,0.000020709174,0.000019636394,0.000020775895,0.000019752202,0.000020243217,0.000019463734,0.000020551623,0.000020303325,0.000021389189,0.000020177396,0.000021173173,0.000019603802,0.00002007119,0.000019281022,0.000020597163,0.00001975889,0.000020235206,0.00001841644,0.000019238172,0.000018537317,0.00001954761,0.000019427165,0.000020575744,0.000020965274,0.000022163493,0.000021647444,0.000022727163,0.000023933617,0.000026420605,0.000025376074,0.000017747248,0.000011813911,0.0000139434505],[0.00001585585,0.0000144734395,0.000011896944,0.000017073755,0.00003028522,0.0000356224,0.000031090854,0.000023605484,0.000021564758,0.0000203893,0.00002069873,0.000019329773,0.000019807982,0.000019466092,0.000020456006,0.000019295921,0.000020509508,0.000020358251,0.000021214768,0.000019457091,0.000020503367,0.00002055084,0.000021552196,0.000020028667,0.000020623991,0.000020141733,0.000020845635,0.000019684261,0.000020494648,0.000020145191,0.000021340047,0.000019864221,0.000020555817,0.000019810892,0.000020589188,0.000018994906,0.00002029796,0.000019760811,0.000021709528,0.000020027883,0.000021179048,0.000020309482,0.00002112503,0.000019422794,0.000020543825,0.00002019998,0.000021573416,0.00001996305,0.000020781623,0.000020087717,0.00002111651,0.000019253865,0.000020452318,0.00001987108,0.000021655269,0.000019781251,0.000020927282,0.00002014041,0.000021242058,0.00001957535,0.000020926824,0.000020546371,0.000021844704,0.000020004709,0.000020817188,0.000020216072,0.000021139922,0.000019283485,0.000020537555,0.000019973046,0.000021576216,0.000019695717,0.00002079885,0.000020091855,0.00002115644,0.000019486133,0.000020805557,0.000020431286,0.00002170166,0.000019855925,0.000020663858,0.000020121863,0.000020995587,0.000019161691,0.000020409962,0.000019933374,0.000021500526,0.00001966383,0.000020770984,0.000020073525,0.000021121867,0.000019473018,0.000020796968,0.000020394142,0.000021677544,0.000019812649,0.000020653239,0.000020103853,0.000021006723,0.000019161125,0.000020452417,0.000019971692,0.000021567761,0.000019690871,0.000020831407,0.000020109259,0.000021166428,0.000019470435,0.00002080278,0.000020414263,0.000021726593,0.000019854297,0.000020701294,0.000020142406,0.000021057467,0.000019156174,0.000020443174,0.000019932193,0.000021578355,0.000019691697,0.000020823043,0.000020112098,0.000021167602,0.00001946975,0.000020787033,0.000020390215,0.000021684367,0.000019835561,0.000020671034,0.000020114707,0.000021073078,0.00001918784,0.000020480249,0.000019960993,0.000021595277,0.000019700037,0.000020828307,0.000020088424,0.00002116653,0.000019446721,0.000020776211,0.00002037214,0.000021655516,0.000019766523,0.000020595317,0.000020011006,0.000020941534,0.000019059322,0.000020357009,0.000019851514,0.000021484046,0.000019597575,0.000020757894,0.000020026278,0.000021059515,0.000019351428,0.000020681602,0.000020278458,0.000021583686,0.000019707384,0.000020584694,0.000020026451,0.000020892065,0.000019084275,0.000020286563,0.000019864126,0.000021406411,0.000019580222,0.000020710437,0.000020078081,0.000021187332,0.00001955199,0.000020901412,0.000020523381,0.00002184785,0.000019953894,0.000020776073,0.000020216477,0.000021151176,0.000019300578,0.000020570642,0.00002004271,0.00002166942,0.00001982862,0.000020948506,0.000020158375,0.000021157592,0.00001941472,0.000020597281,0.000020224345,0.000021431782,0.000019632856,0.000020415839,0.0000198356,0.000020742915,0.000018871207,0.00002015357,0.000019706951,0.000021401533,0.000019549158,0.000020652493,0.000020114649,0.000021023696,0.00001960468,0.00002088864,0.000020963655,0.000022274417,0.000021076756,0.000021574837,0.000020951804,0.000021458163,0.00002029676,0.000021169903,0.000020975354,0.000022385728,0.00002138978,0.000021906017,0.000021247164,0.00002158035,0.000020560248,0.00002117608,0.000020952702,0.000022033946,0.00002083385,0.000021106564,0.000020629403,0.000021074,0.000019994677,0.00002084164,0.000020603351,0.000021824671,0.000020863714,0.000021522086,0.000020832776,0.000021046284,0.000019903018,0.000020673991,0.00002070949,0.000021560458,0.000020124204,0.00001986104,0.000018873745,0.00001930319,0.00001884425,0.000019902276,0.000020334852,0.000021132948,0.00002103557,0.000021076432,0.000021286103,0.000024352415,0.000025267045,0.000025918767,0.00001718967,0.000011596931,0.000013628888],[0.000016136195,0.000015535197,0.000015115823,0.00002220157,0.00003129047,0.000030498099,0.000025764128,0.000022178885,0.0000195947,0.000019579027,0.000018868706,0.000018993747,0.00001847551,0.000018966559,0.000018650591,0.000018997858,0.000018928504,0.00001996815,0.000019226434,0.000019139829,0.000019039593,0.000019990292,0.000019356652,0.00001940661,0.000018904657,0.000019420533,0.000019269184,0.000019109099,0.000018805365,0.000019554043,0.0000189114,0.000019176956,0.000018565217,0.000019325424,0.00001892753,0.000018941453,0.000018829394,0.00001978257,0.000019355875,0.000019814386,0.00001915188,0.000019932897,0.000019401392,0.00001925682,0.000019058922,0.000019816616,0.000019364923,0.000019375655,0.000018750103,0.000019435913,0.000019102501,0.000018942572,0.000018779736,0.000019664523,0.000019209298,0.00001933842,0.000018818819,0.000019738041,0.000019305622,0.000019284553,0.000019164614,0.000020132651,0.000019477271,0.000019303045,0.000018741217,0.000019492694,0.000019042152,0.00001888399,0.000018770696,0.0000197263,0.000019148794,0.000019176407,0.000018709841,0.00001965515,0.000019210873,0.000019142311,0.000019006793,0.000019975942,0.00001934091,0.000019132238,0.000018632563,0.000019401208,0.000018947812,0.000018774885,0.000018645433,0.000019654794,0.000019104651,0.000019199755,0.000018706434,0.000019649058,0.000019165876,0.000019098732,0.000018954535,0.00001991724,0.000019272951,0.000019092522,0.000018573983,0.000019346464,0.000018881197,0.000018722336,0.000018611343,0.00001967681,0.000019121222,0.000019213017,0.000018712642,0.000019703042,0.00001920523,0.0000191462,0.000018988494,0.000019968551,0.000019295903,0.000019116134,0.000018579422,0.000019376283,0.000018907722,0.000018735715,0.000018600056,0.000019630366,0.000019100244,0.000019186798,0.000018694805,0.000019672045,0.000019200434,0.000019129502,0.00001897881,0.000019935747,0.000019289262,0.000019107112,0.000018585057,0.000019358571,0.000018922676,0.000018761835,0.000018636705,0.000019666042,0.000019126748,0.00001919139,0.00001868732,0.000019649227,0.000019176754,0.000019114384,0.000018969507,0.000019928184,0.000019262845,0.000019061248,0.000018530689,0.000019298057,0.000018852517,0.00001867385,0.000018569219,0.000019591113,0.000019065139,0.00001914569,0.00001866073,0.000019597575,0.000019094343,0.000019011723,0.000018875851,0.000019832836,0.000019190822,0.000019034493,0.000018551093,0.000019326015,0.000018850236,0.000018672747,0.000018553554,0.00001956419,0.000019034618,0.000019143445,0.000018714232,0.000019705487,0.000019289077,0.000019243585,0.000019119561,0.000020115205,0.000019472442,0.000019242687,0.000018707184,0.000019472274,0.000019040483,0.00001888019,0.000018743094,0.000019751524,0.00001923832,0.000019342811,0.000018821243,0.000019774161,0.000019280727,0.000019185278,0.000019006593,0.000019897912,0.000019267143,0.000019010273,0.000018474348,0.000019201972,0.000018764198,0.000018595889,0.000018419427,0.000019537974,0.000019055706,0.000019249863,0.000018728353,0.00001986746,0.000019327157,0.00001937985,0.000019337738,0.000020510428,0.00002015084,0.000020440464,0.000019925048,0.00002041181,0.000019801844,0.000019798785,0.000019642857,0.000020281766,0.000020106114,0.000020403986,0.000020062369,0.000020463714,0.000019955416,0.000019818619,0.000019654888,0.000020120711,0.000019775027,0.000019722764,0.000019216737,0.000019671126,0.000019315474,0.000019295903,0.000019192195,0.00001999563,0.000019698948,0.00002011296,0.000019791874,0.00002038201,0.000019753503,0.000019756855,0.000019508314,0.000020280799,0.000019793517,0.000019439434,0.000018640189,0.000018669274,0.000018886638,0.000019392292,0.000019986137,0.000021158983,0.00002108556,0.000021711287,0.00002137353,0.00002248453,0.000023689216,0.00002739564,0.000026380727,0.000017569133,0.000011078556,0.000013787002],[0.000016704322,0.000015526119,0.00001486559,0.000024618867,0.000029029325,0.000028872424,0.000025265432,0.000021990934,0.00002037243,0.000019830304,0.000020031073,0.00001967274,0.000020026087,0.000019626135,0.00002014642,0.00001964016,0.000020424875,0.000020330855,0.000020863734,0.000020239047,0.000020983376,0.000021235435,0.000021152306,0.00002048951,0.000020454132,0.000020731582,0.000021072214,0.000020655289,0.000020912918,0.000020967136,0.00002101043,0.000020142712,0.000020352272,0.000020232235,0.000020817366,0.000020644162,0.000021279811,0.000021095275,0.000021473292,0.000020586931,0.000020949006,0.00002082517,0.000021334146,0.000020878382,0.000021212603,0.000021157592,0.000021159283,0.00002051753,0.00002049459,0.000020577883,0.000020931115,0.000020774112,0.000021156118,0.000020972993,0.000021131458,0.000020380261,0.000020736643,0.000020833097,0.000021210742,0.000020786894,0.000021357107,0.000021146054,0.00002118319,0.000020355496,0.00002044062,0.000020622892,0.00002087446,0.000020636959,0.000021127527,0.00002093872,0.00002107356,0.000020252619,0.000020586285,0.0000208102,0.000021122189,0.00002071658,0.00002122414,0.000021048994,0.000021073982,0.000020240184,0.000020329888,0.000020555935,0.000020807145,0.000020555955,0.000021045502,0.000020884934,0.00002105028,0.00002024812,0.0000206005,0.0000207612,0.000021026483,0.00002061129,0.000021122009,0.000020945488,0.00002098768,0.00002014886,0.000020257428,0.000020460786,0.000020702775,0.000020459518,0.000020971294,0.000020832023,0.000021033404,0.000020211774,0.000020587226,0.000020778452,0.000021109263,0.000020680813,0.000021206595,0.00002102476,0.000021056885,0.000020197456,0.0000202843,0.000020515221,0.000020773063,0.000020514633,0.00002099809,0.000020830492,0.000021055379,0.000020233816,0.000020583457,0.000020775875,0.000021096483,0.000020678546,0.00002119018,0.000021003036,0.000021026282,0.000020185249,0.000020266085,0.000020471756,0.000020753836,0.00002050026,0.00002099795,0.0000208294,0.000021033946,0.000020205625,0.000020538066,0.000020731582,0.000021056383,0.000020632766,0.000021144135,0.000020969475,0.000020991121,0.00002014256,0.00002022311,0.000020437676,0.000020710339,0.000020440133,0.000020950843,0.000020785052,0.000020996147,0.000020152973,0.000020517373,0.000020696736,0.000020985137,0.000020552563,0.000021071086,0.000020895674,0.00002094569,0.000020095284,0.000020243082,0.00002044495,0.000020664509,0.000020430896,0.00002089151,0.000020802701,0.000020974014,0.000020224441,0.000020616637,0.000020834326,0.000021159347,0.000020791078,0.000021366763,0.000021177211,0.000021198914,0.000020310974,0.000020391322,0.00002061021,0.000020864549,0.000020647392,0.00002112495,0.00002093902,0.000021161666,0.000020395211,0.000020708463,0.000020858262,0.000021163605,0.000020753658,0.00002118327,0.000021016062,0.000020942234,0.000020135416,0.000020122226,0.000020342786,0.000020730415,0.000020441672,0.00002098778,0.000020731602,0.00002118319,0.000020193702,0.000020824791,0.000020809943,0.000021316819,0.000020829262,0.000021588832,0.00002128722,0.000021478842,0.000021071268,0.00002132426,0.000021135487,0.000021106121,0.000021234138,0.000021456342,0.000021419502,0.000021274354,0.000021198792,0.000021500236,0.000021534526,0.000021491362,0.000021353055,0.000021666094,0.000021373815,0.000021086827,0.00002047279,0.000020780195,0.00002071733,0.000020984256,0.000020811729,0.000021369637,0.000021134561,0.000021254034,0.000020913576,0.000021568952,0.000021488,0.000021596472,0.000021258167,0.000021469914,0.00002164825,0.000020671328,0.000020426629,0.000019554302,0.000019854015,0.000020104064,0.00002066644,0.000021211694,0.000022209722,0.000021576689,0.00002181173,0.000021356253,0.000022050071,0.000024451783,0.000025450961,0.000026700902,0.000018644792,0.000011416976,0.000013600506],[0.000016349506,0.000014733992,0.00001567023,0.000023548286,0.000029754125,0.000028660805,0.000023356346,0.00002121398,0.000018396746,0.000019566352,0.000019343383,0.000020378084,0.000019293328,0.000019729743,0.000019490482,0.000019819148,0.000019406241,0.000020305473,0.00002014792,0.000020959636,0.000020634321,0.000021512073,0.00002084146,0.000020817803,0.000020076779,0.000020703921,0.000021155553,0.000021635988,0.000020878166,0.000021295098,0.000020482965,0.000020289233,0.00001937231,0.00001977733,0.000020284358,0.000020958696,0.000020500182,0.000020894595,0.000020309075,0.00002048105,0.000019782628,0.000020339856,0.000020700447,0.000021085802,0.000020552134,0.000020856434,0.000020516434,0.000020476344,0.000019788176,0.000020127065,0.000020614318,0.000021048712,0.000020630503,0.000020751897,0.000020366486,0.000020434325,0.000019825557,0.000020367885,0.000020575784,0.000020971433,0.000020525182,0.000020786558,0.0000203647,0.000020397449,0.000019725247,0.000020198479,0.00002045944,0.000020937681,0.00002050624,0.000020613237,0.000020292311,0.000020321088,0.000019735407,0.000020350779,0.000020545822,0.000020935706,0.000020498675,0.000020729762,0.00002034222,0.00002032229,0.000019666137,0.000020141177,0.000020403713,0.00002084818,0.000020419384,0.000020520483,0.000020220179,0.00002028933,0.000019679588,0.000020273546,0.000020407391,0.0000207865,0.000020338613,0.000020559875,0.000020183401,0.000020165508,0.000019542818,0.00002000986,0.000020269701,0.000020705145,0.000020313395,0.000020429472,0.00002015109,0.000020229996,0.00001962857,0.00002025542,0.000020427331,0.000020840846,0.000020396788,0.000020651014,0.000020260539,0.000020255402,0.000019591187,0.00002007343,0.00002032386,0.000020789967,0.000020371614,0.00002047191,0.000020185249,0.00002025322,0.000019663099,0.000020271691,0.000020442627,0.000020854763,0.000020423513,0.000020655269,0.000020271016,0.000020246825,0.000019594494,0.00002006166,0.000020327154,0.000020775757,0.00002037756,0.000020480895,0.000020194182,0.000020247482,0.000019647036,0.000020264599,0.000020422109,0.000020804368,0.000020373012,0.00002060396,0.000020228414,0.000020198286,0.000019564282,0.000020021218,0.000020292195,0.000020711741,0.000020327774,0.000020400914,0.00002012691,0.000020169009,0.000019585974,0.00002018729,0.000020346219,0.000020715119,0.000020288207,0.000020511505,0.000020134341,0.000020118103,0.000019468374,0.000019955321,0.000020215764,0.0000206547,0.000020256579,0.000020391011,0.000020147036,0.000020228606,0.000019668838,0.000020318877,0.000020527119,0.000020985357,0.000020577452,0.000020813952,0.000020402214,0.000020359554,0.000019704885,0.00002017049,0.000020458485,0.000020922731,0.000020484156,0.00002059025,0.00002034682,0.000020430974,0.000019853995,0.000020422929,0.000020655623,0.000021032181,0.000020663208,0.000020840904,0.000020508238,0.000020286157,0.000019695171,0.000020043379,0.000020494297,0.000020781265,0.000020454389,0.000020475094,0.000020247811,0.000020225578,0.000019551115,0.000020271016,0.000020275616,0.000020846292,0.000020122976,0.000020625352,0.00002027842,0.000020740203,0.000019973675,0.000020637157,0.000020645894,0.000021295951,0.000020351032,0.000020665357,0.000020353107,0.000020701611,0.000020027921,0.00002068103,0.000020965974,0.00002163409,0.000020929856,0.000021002315,0.000020371497,0.000020179494,0.000019445943,0.000020033422,0.000020369827,0.000020983198,0.000020340127,0.000020569878,0.000020158703,0.000020476675,0.000020112482,0.000020918222,0.000021225818,0.000022328097,0.000021755952,0.000022112506,0.00002131816,0.000020496995,0.000019335526,0.00001939344,0.000020666088,0.000021002996,0.000021304484,0.000021628253,0.00002190499,0.000022221926,0.000021504853,0.000021635331,0.00002305764,0.00002516278,0.000025322575,0.000017654573,0.000011257137,0.000013752702],[0.000016810465,0.000013666971,0.00001558623,0.000023712904,0.000032654527,0.000030859886,0.000027178356,0.000022170721,0.000020380105,0.00001987527,0.000020493282,0.000020158395,0.000020368429,0.00001996815,0.00002028842,0.000019683212,0.00002050816,0.000020800897,0.00002181225,0.000021289676,0.00002206572,0.000022241387,0.000022584158,0.00002126689,0.000021192545,0.000021111033,0.000022297498,0.000022039305,0.000022410397,0.00002195598,0.000021795035,0.000020529056,0.000020298154,0.000020028894,0.000021051806,0.000020892645,0.000021836497,0.000021349491,0.000021912745,0.000020594553,0.00002094601,0.000020837328,0.0000219524,0.000021368089,0.000021804804,0.000021480502,0.000021819782,0.000020843667,0.000020679985,0.000020659309,0.000021583748,0.0000212635,0.00002180965,0.000021334083,0.000021783502,0.000020682686,0.00002095612,0.000020968575,0.000021858124,0.000021204089,0.000021660762,0.000021324362,0.00002164573,0.000020712769,0.00002063198,0.000020785568,0.000021444908,0.000021130489,0.000021579137,0.000021204756,0.000021634565,0.000020602192,0.000020826958,0.000020939879,0.000021819013,0.000021190586,0.000021572163,0.000021308364,0.000021563092,0.00002066039,0.000020561876,0.000020711563,0.000021403881,0.000021070826,0.000021528285,0.000021139942,0.00002159431,0.000020551173,0.000020796017,0.000020877407,0.00002170727,0.000021044418,0.000021417336,0.000021120073,0.000021378728,0.000020478315,0.000020359612,0.000020568976,0.000021217702,0.000020895714,0.000021314949,0.00002099929,0.00002145794,0.000020439744,0.000020670994,0.000020800042,0.000021662003,0.00002103543,0.000021440472,0.000021166734,0.00002148175,0.000020548214,0.000020421252,0.00002062106,0.00002125513,0.00002094579,0.00002139886,0.00002103206,0.00002149249,0.000020457586,0.000020685251,0.000020798554,0.000021657375,0.000021040445,0.00002143818,0.000021170588,0.000021465225,0.000020539983,0.000020405892,0.000020621457,0.000021268652,0.000020960197,0.000021401229,0.000021065322,0.000021531712,0.000020478197,0.000020686199,0.000020787926,0.000021652462,0.000021017022,0.000021412026,0.000021135045,0.000021442454,0.000020525866,0.000020411753,0.000020587539,0.000021230839,0.00002090853,0.00002135886,0.000021006823,0.00002146637,0.000020418567,0.000020643827,0.000020745229,0.00002158951,0.000020941237,0.000021340291,0.000021048812,0.000021351101,0.000020432473,0.000020336558,0.000020560838,0.000021194022,0.000020884296,0.000021331276,0.000020999432,0.000021490849,0.000020481442,0.000020736032,0.000020907055,0.000021789941,0.000021223006,0.00002163141,0.00002131993,0.000021585744,0.000020674464,0.000020574116,0.00002074066,0.000021406024,0.00002111935,0.000021553695,0.000021179674,0.000021614851,0.000020652767,0.000020903188,0.000020941276,0.000021853393,0.000021256852,0.000021598757,0.000021384947,0.000021548536,0.000020645777,0.000020443973,0.000020544629,0.000021335549,0.000021021311,0.000021525184,0.000021099258,0.000021673224,0.00002052471,0.000020883203,0.000020921416,0.00002194794,0.000021083832,0.000021575639,0.000021169095,0.000021719528,0.00002098724,0.000020929776,0.000021256506,0.000021867236,0.000021527298,0.000021272303,0.000021446092,0.000021630687,0.000021174385,0.000020926203,0.000021452966,0.000022315495,0.000022087446,0.000022037098,0.000021983911,0.000021846015,0.00002073781,0.000020353535,0.000020519154,0.000021374772,0.000021131678,0.00002138609,0.000020990403,0.000021153695,0.00002067878,0.000020903088,0.0000213632,0.000022533279,0.000022469869,0.000022500017,0.000022712908,0.000022069466,0.000020878722,0.000019628944,0.000019464756,0.000020281013,0.000020764091,0.000021547323,0.000021681884,0.000021701682,0.000021283688,0.000020259537,0.000020460806,0.000022450977,0.000023924857,0.000025686997,0.000017733966,0.000011374288,0.000013119424],[0.000017085758,0.000014870057,0.000017020431,0.00002586018,0.000033249406,0.000031019037,0.000024735853,0.000021834081,0.000018607827,0.000019427665,0.000018749906,0.00002005156,0.000019421774,0.000020167412,0.000019380866,0.000019853824,0.000019446741,0.000020799846,0.000019992236,0.000020978534,0.000020846788,0.0000220519,0.000021163401,0.00002065267,0.00001984048,0.00002011323,0.000020274205,0.000020850228,0.000020885274,0.000021450676,0.00002040171,0.00001991291,0.00001910775,0.000019471663,0.000019790346,0.000020537496,0.000020806827,0.00002146805,0.000020516845,0.00002028488,0.000019873714,0.000020466718,0.00002045628,0.000020763022,0.000020574666,0.000021019288,0.00002034657,0.000020002992,0.000019683266,0.000020036596,0.000020230402,0.000020442785,0.000020539594,0.00002083409,0.000020207495,0.000019867442,0.000019989206,0.000020533991,0.000020519154,0.000020589778,0.00002040383,0.000020682706,0.00001999216,0.000019613246,0.000019575144,0.000020067631,0.000020110792,0.000020259013,0.000020375152,0.000020592312,0.000020044583,0.000019645706,0.000019842504,0.000020426882,0.000020500278,0.000020574527,0.000020424273,0.000020670755,0.000020025609,0.000019587187,0.000019554509,0.000020000874,0.000020101359,0.000020222109,0.000020358135,0.000020545998,0.000020026335,0.000019608084,0.000019798483,0.000020365882,0.000020409552,0.000020458407,0.000020285132,0.000020495156,0.000019835505,0.00001937876,0.000019365569,0.000019805148,0.00001993765,0.000020030307,0.000020155492,0.00002035334,0.000019859466,0.00001944418,0.000019655563,0.000020242114,0.000020333475,0.00002038652,0.00002023343,0.000020482927,0.000019843112,0.000019402132,0.000019404279,0.000019866817,0.000019958708,0.000020069792,0.000020184729,0.000020394376,0.000019901574,0.000019495166,0.000019704077,0.000020279002,0.000020359028,0.000020417572,0.000020255246,0.000020505226,0.00001987021,0.000019432391,0.000019413923,0.00001988947,0.000019995477,0.000020101896,0.00002021644,0.000020429921,0.000019925503,0.000019511273,0.000019696317,0.000020268617,0.000020367808,0.000020433195,0.000020261836,0.000020502821,0.000019900797,0.0000194452,0.000019447278,0.000019882928,0.000019978284,0.000020061489,0.000020205027,0.000020382886,0.00001989662,0.000019468804,0.000019700017,0.000020260153,0.000020331265,0.00002035864,0.000020207264,0.000020441128,0.0000198097,0.000019381661,0.000019412164,0.00001988966,0.000019965619,0.000020074769,0.000020204547,0.000020426862,0.000019961202,0.000019600342,0.000019826162,0.000020442745,0.00002052843,0.000020630916,0.000020432357,0.00002067119,0.000019990845,0.000019564151,0.000019535199,0.000020005185,0.000020101072,0.000020245185,0.000020357049,0.00002055825,0.00002006564,0.000019684638,0.000019879648,0.000020433703,0.000020595082,0.00002067685,0.000020584457,0.000020783425,0.000020215995,0.000019618894,0.000019565681,0.000019803638,0.000020158528,0.000020142137,0.000020406458,0.000020455986,0.000020061832,0.000019498624,0.000019821227,0.000020429183,0.000020560621,0.00002061196,0.000020357998,0.000020692532,0.000020100631,0.000019867366,0.000019920904,0.00002063739,0.000020701966,0.000020995827,0.000020762289,0.000021023696,0.000020499614,0.000020305242,0.000020287454,0.000020959616,0.00002109268,0.000021311553,0.00002109455,0.000021185231,0.000020606889,0.000019837187,0.000019355784,0.000019707366,0.000019859259,0.000020233874,0.000020317637,0.000020599855,0.000019992865,0.000019904632,0.000020097374,0.000020966534,0.00002118113,0.000021952694,0.0000221479,0.000022483286,0.000022297349,0.000020807105,0.000019723553,0.000019177887,0.000020439295,0.000020684305,0.000021583726,0.000021410353,0.000022097835,0.000022204216,0.000021365848,0.000021628583,0.000022712844,0.000025008147,0.000025537978,0.00001787273,0.000010819077,0.000013337885],[0.00001694748,0.00001563682,0.000015315281,0.00002800886,0.00003326466,0.00003139209,0.000027099986,0.000022579678,0.00002039492,0.00002002626,0.000019947349,0.000019701934,0.000020651232,0.000020115416,0.000020909129,0.000020427817,0.000020807443,0.000020571997,0.000020368467,0.000020552583,0.000021445398,0.00002173082,0.00002184133,0.000020874342,0.000020529018,0.00002023233,0.000020214935,0.000020421916,0.000021302125,0.000021573745,0.00002165428,0.000020512227,0.000020108837,0.000020135416,0.00002045628,0.000020773517,0.00002175898,0.000021712447,0.000021498268,0.00002083564,0.000020834923,0.00002088876,0.000021000613,0.000021052607,0.00002153691,0.000021503314,0.000021229078,0.000020732588,0.000020500043,0.000020693618,0.000020665513,0.000020751264,0.000021285168,0.000021141555,0.000020896628,0.000020489762,0.000020617583,0.000021010932,0.000021029753,0.000021007325,0.000021368252,0.000021279142,0.000020849513,0.00002035794,0.000020274167,0.000020754767,0.00002052943,0.000020652353,0.00002113047,0.000021033564,0.0000207424,0.000020317522,0.000020392761,0.00002092794,0.00002100524,0.000021031077,0.000021374997,0.000021283951,0.000020856254,0.000020341367,0.000020236479,0.000020703408,0.000020521189,0.000020661455,0.000021127407,0.000021039903,0.000020747544,0.000020328764,0.00002038899,0.000020927839,0.00002094615,0.000020954541,0.000021254116,0.000021147887,0.000020676947,0.000020130748,0.000019985391,0.000020490916,0.000020301815,0.000020460944,0.00002087862,0.000020812504,0.0000205538,0.000020108013,0.000020157913,0.000020722944,0.000020776331,0.000020803513,0.000021117577,0.000021026364,0.00002061078,0.000020114727,0.000020010757,0.000020559562,0.000020329791,0.00002046024,0.000020899757,0.000020824236,0.000020577256,0.000020151801,0.000020203775,0.000020768626,0.000020814348,0.000020842594,0.00002116564,0.000021071068,0.00002066108,0.000020160182,0.00002002227,0.000020549272,0.000020348256,0.000020466583,0.000020901074,0.00002080637,0.000020557622,0.00002013841,0.00002023233,0.000020786341,0.000020842832,0.000020879896,0.000021196001,0.000021093403,0.000020698672,0.000020213836,0.000020074407,0.000020584988,0.000020359883,0.000020480426,0.000020901352,0.000020816691,0.000020551035,0.000020130212,0.000020212852,0.000020772726,0.000020815103,0.000020831108,0.000021148593,0.000021059555,0.000020643394,0.000020153377,0.000020052861,0.000020615735,0.000020376841,0.000020523654,0.000020981237,0.000020934247,0.000020701671,0.00002030404,0.000020378453,0.000020962696,0.00002101109,0.00002103234,0.000021346072,0.000021243375,0.000020799864,0.000020306617,0.000020200732,0.000020721738,0.000020491932,0.000020649144,0.000021093283,0.00002101233,0.000020706764,0.000020350546,0.000020407177,0.0000208936,0.000021034886,0.000021055419,0.000021391535,0.000021273236,0.000020868529,0.00002025828,0.00002010506,0.000020465508,0.000020462874,0.000020666323,0.000021062851,0.00002095534,0.000020713103,0.000020266763,0.00002046625,0.000021081198,0.000021322267,0.000021204189,0.000021595339,0.000021322125,0.000020949286,0.000020712352,0.000020618367,0.000021297434,0.00002117174,0.000021365684,0.000021525122,0.000021418336,0.000021019006,0.000021065542,0.000020793279,0.00002133557,0.000021234038,0.00002164121,0.000021721393,0.00002174618,0.00002130298,0.000020710102,0.000020299782,0.00002061471,0.000020383448,0.000020486012,0.000021059253,0.000020952162,0.00002052115,0.000020378122,0.000020576608,0.000020925625,0.000021163241,0.000021499458,0.000021697522,0.000022447251,0.000021651571,0.000021083168,0.000019163133,0.000019300302,0.00001901263,0.000020642568,0.000020753063,0.000021720109,0.000021463811,0.000021985505,0.000020984959,0.000021517939,0.000023118213,0.00002388797,0.00002473123,0.00001802973,0.000010710137,0.000013143594],[0.000016015892,0.000016659284,0.000015639043,0.000024661424,0.00003078402,0.000031602078,0.00002589473,0.000023125116,0.00001955559,0.000020285423,0.000018907633,0.000019874225,0.00001885989,0.000020284146,0.000020140506,0.000021043978,0.000019667976,0.00002061009,0.000019351372,0.000020638987,0.000019937515,0.00002160803,0.000020662934,0.000021458145,0.000019870871,0.000020523263,0.000019702593,0.000020906917,0.000020088213,0.000021933442,0.000020747306,0.000021416336,0.000019285233,0.00002024667,0.000019726658,0.000020663621,0.000019901652,0.000021246253,0.00002015134,0.00002110105,0.000019598006,0.000020874142,0.000020067764,0.000021310028,0.000020178724,0.00002147532,0.000020391633,0.00002120429,0.0000196159,0.000020751957,0.000020113403,0.000021093121,0.000019915151,0.000020953481,0.000019951838,0.000020807976,0.000019589635,0.000020842357,0.000020156222,0.000021238493,0.000020183787,0.000021189513,0.000020168374,0.000020867075,0.000019539708,0.000020767497,0.000020086605,0.00002108208,0.000019968951,0.000020917565,0.0000199386,0.000020725573,0.000019494664,0.000020800122,0.0000201627,0.000021276199,0.000020249974,0.000021222133,0.000020205336,0.000020829082,0.00001950945,0.000020707199,0.000020066484,0.000021067452,0.000019983583,0.000020927022,0.000019953723,0.000020734646,0.000019506324,0.0000207979,0.0000201406,0.000021233389,0.0000201788,0.000021109,0.000020065316,0.00002063507,0.000019325682,0.000020488864,0.000019894156,0.000020928697,0.000019819754,0.00002078394,0.000019832818,0.000020587462,0.000019338679,0.000020585656,0.000019998986,0.000021070142,0.000020034244,0.000020977635,0.000020011961,0.000020660273,0.00001939183,0.00002058173,0.00001998238,0.000020979916,0.000019839912,0.000020815658,0.000019874511,0.000020635305,0.000019416922,0.00002065206,0.000020098294,0.000021152164,0.000020096166,0.000021043616,0.0000200603,0.000020696914,0.000019392071,0.000020583771,0.00001996899,0.000020940119,0.000019775838,0.000020750787,0.000019818392,0.000020608677,0.000019414181,0.000020671881,0.000020084019,0.000021170245,0.000020131536,0.0000210777,0.000020098829,0.000020743051,0.000019454605,0.000020629619,0.000019997462,0.000020974396,0.00001982724,0.000020771517,0.000019816465,0.000020571959,0.000019382918,0.000020647076,0.000020063362,0.00002110894,0.00002007077,0.0000210062,0.000020044563,0.000020704472,0.00001945338,0.000020666776,0.000020036441,0.00002103557,0.000019905105,0.000020914591,0.000019949117,0.000020755797,0.000019539464,0.000020832818,0.000020186095,0.000021286287,0.000020178994,0.00002119574,0.000020162892,0.000020840625,0.000019513525,0.000020781146,0.000020098867,0.000021116168,0.000019952067,0.000020941556,0.000019925103,0.000020746871,0.000019463232,0.000020798456,0.000020128735,0.000021323507,0.000020270898,0.000021305415,0.000020241614,0.000020724841,0.000019297266,0.000020429883,0.000019935236,0.000020968475,0.000019907555,0.000020790207,0.000019856816,0.000020611842,0.00001947703,0.000020854564,0.000020298019,0.000021385049,0.000020373574,0.000021268754,0.000020298774,0.000021103746,0.000019785874,0.000021061243,0.000020369944,0.000021517078,0.000020341096,0.000021351425,0.000020489235,0.00002139429,0.000020093541,0.000021182503,0.000020407626,0.00002179726,0.000020842197,0.000021842392,0.000020666816,0.000021296682,0.000019647654,0.000020943653,0.00001999439,0.000021055139,0.00001989264,0.00002098738,0.00001992862,0.00002092341,0.000019687153,0.000020984036,0.000020066425,0.000021504462,0.000020785687,0.000022168608,0.000021487222,0.000021340698,0.000019352497,0.000019307243,0.00001976628,0.000020477379,0.000020800815,0.000021145306,0.000022090586,0.00002225102,0.000021584407,0.000021988208,0.000024141304,0.000024658648,0.000023043947,0.000016214062,0.00001069908,0.000013064476],[0.000016030133,0.000016295275,0.000014110809,0.000021690179,0.000031837964,0.0000346751,0.000031215157,0.00002490222,0.000021846434,0.000020961656,0.000020577962,0.000019206878,0.000020063248,0.000020381447,0.00002138095,0.000020694248,0.00002110574,0.000020901512,0.000021037155,0.000020435222,0.000020882027,0.000021510308,0.000021925014,0.000021290041,0.000021245138,0.000020984317,0.000021080112,0.000020900436,0.000021071812,0.000021792768,0.000022296967,0.000021068776,0.00002065661,0.000020316631,0.000020484878,0.000020135243,0.000020582514,0.000021308098,0.000021648682,0.000020822012,0.000020882246,0.000021220658,0.000021315986,0.00002126413,0.000021277112,0.000022064563,0.000022467488,0.000021402004,0.000021003958,0.00002118016,0.00002121667,0.000020916807,0.000020950385,0.000021588421,0.000021716298,0.00002087235,0.00002076124,0.000021164371,0.000021401165,0.000021211754,0.000021257723,0.000022023927,0.000022411039,0.000021357495,0.000020993564,0.000021230819,0.000021304564,0.000020963756,0.000021028269,0.000021674607,0.000021862814,0.000021004438,0.000020799605,0.000021209064,0.000021421667,0.000021305052,0.0000212776,0.000022115017,0.000022418433,0.000021317672,0.000020933989,0.000021206737,0.000021283384,0.000020966174,0.000021030457,0.000021694686,0.000021895594,0.000021022535,0.000020823702,0.000021229887,0.00002141562,0.00002127342,0.000021235395,0.000022022456,0.000022283723,0.000021150106,0.00002076817,0.000021028913,0.000021111033,0.000020824931,0.000020851083,0.000021552894,0.000021747863,0.000020920535,0.000020639498,0.000021026764,0.000021234686,0.000021111333,0.000021100244,0.000021840935,0.000022221588,0.000021182039,0.000020826481,0.00002110584,0.000021218006,0.000020900974,0.000020903546,0.00002157282,0.000021753815,0.000020950343,0.00002071109,0.000021110489,0.00002131564,0.000021193355,0.000021146516,0.000021878792,0.000022259064,0.000021228976,0.000020804804,0.000021077318,0.000021184786,0.000020836891,0.000020816056,0.000021516975,0.000021725724,0.000020933709,0.000020704198,0.000021137143,0.000021364154,0.000021236105,0.000021172122,0.000021910717,0.000022261209,0.000021233673,0.000020863097,0.000021135467,0.000021211308,0.000020900216,0.000020899837,0.000021554786,0.000021697791,0.000020884696,0.000020646663,0.000021081178,0.000021286978,0.000021148815,0.000021105538,0.000021863045,0.000022242917,0.000021234462,0.000020893858,0.000021176242,0.000021266382,0.000020921076,0.000020937103,0.000021628768,0.000021836247,0.000021043055,0.000020832598,0.000021231708,0.000021424588,0.000021271817,0.00002122521,0.000022017206,0.000022385108,0.000021303284,0.000020973674,0.000021263744,0.000021330197,0.000020991904,0.000021019647,0.00002169082,0.000021861835,0.000020994286,0.000020789828,0.000021185715,0.000021406433,0.000021277194,0.000021262244,0.000022171505,0.000022355624,0.000021208478,0.000020657299,0.000020994486,0.000021157914,0.000020938322,0.000021025482,0.000021655125,0.000021825317,0.00002091545,0.00002079804,0.000021279448,0.00002147663,0.000021297536,0.000021425549,0.000022063216,0.000022362405,0.000021577163,0.000021086425,0.000021573478,0.000021550017,0.000021244792,0.00002123805,0.000022088143,0.00002224122,0.000021740521,0.00002121145,0.0000217461,0.000021460375,0.000021478147,0.000021641292,0.000022591588,0.000022922894,0.000021611842,0.000021078786,0.000021186686,0.000021082826,0.00002068817,0.000020850764,0.000021111375,0.000021166348,0.000020856392,0.000020890791,0.000021055921,0.000020833175,0.000020867892,0.000021012955,0.000022127822,0.00002224385,0.000021073118,0.000019939267,0.000019183339,0.000019381476,0.000019767145,0.000020544001,0.000021346457,0.000021172951,0.000021687178,0.000020407608,0.000021181333,0.000024793999,0.000023790777,0.000021178483,0.000015423817,0.000010275451,0.000012406822],[0.000015876716,0.000014948528,0.000014010885,0.000019577907,0.0000322886,0.000034038643,0.000027806274,0.000023445387,0.000020300324,0.000019583547,0.000018306684,0.000018434679,0.000018338504,0.000019781157,0.000019365421,0.000020350177,0.000019814197,0.000020755537,0.000019422645,0.000020395562,0.000020308882,0.000021662456,0.000020188156,0.000020695157,0.000020266009,0.000020809644,0.000019990348,0.000020485271,0.00001993687,0.000021040605,0.00001960653,0.0000196923,0.000019053306,0.000019613226,0.000019320576,0.000020077987,0.000020055999,0.000021428063,0.000020203215,0.000020632453,0.000020389884,0.000021395064,0.000020673202,0.000021045604,0.000020668884,0.000021875683,0.000020833275,0.000020738384,0.000020353767,0.000020808217,0.000020545353,0.000020849731,0.000020925465,0.00002170462,0.000020716383,0.000020571291,0.000020478237,0.000021020809,0.000020632157,0.000020705542,0.000020671841,0.000021677066,0.000020975855,0.000020559326,0.000020315952,0.00002061601,0.000020456473,0.000020570917,0.000020767142,0.000021535965,0.000020716701,0.000020572683,0.000020477517,0.000020975294,0.000020598321,0.000020641486,0.000020653122,0.000021622478,0.000020960077,0.000020439431,0.00002019736,0.000020524849,0.00002040862,0.000020506672,0.000020738344,0.000021537464,0.00002073441,0.00002058703,0.000020496076,0.00002098778,0.000020614887,0.000020647569,0.000020637626,0.000021590644,0.000020871395,0.000020312544,0.000020095054,0.000020384965,0.000020291458,0.000020405912,0.000020605277,0.000021420034,0.000020646603,0.000020511641,0.000020436311,0.000020869784,0.000020499321,0.000020559464,0.00002051933,0.000021464428,0.000020768388,0.000020343678,0.000020205125,0.000020492245,0.000020424175,0.000020531641,0.000020681959,0.000021457367,0.000020667743,0.000020526297,0.000020475485,0.00002091505,0.000020565169,0.000020589268,0.000020552328,0.000021473497,0.00002078866,0.000020341891,0.000020160393,0.000020450485,0.000020381933,0.000020492382,0.00002062541,0.00002142514,0.000020663347,0.000020547646,0.000020510193,0.000020993484,0.000020625312,0.000020661711,0.000020587187,0.000021533171,0.000020845517,0.00002039891,0.000020216072,0.00002052978,0.000020438867,0.000020549976,0.000020702875,0.0000214855,0.000020657299,0.000020509802,0.00002041991,0.000020880594,0.000020516354,0.000020545116,0.000020513948,0.000021455728,0.000020761714,0.000020332698,0.000020190042,0.000020512734,0.000020437754,0.00002055072,0.000020690815,0.000021527258,0.000020732055,0.000020638257,0.000020538222,0.000021034448,0.000020627533,0.000020685015,0.000020626256,0.000021610955,0.000020897365,0.000020456493,0.00002022909,0.000020607144,0.000020458523,0.00002058648,0.000020762644,0.000021589263,0.000020753678,0.000020632531,0.000020473102,0.000021009146,0.000020581514,0.00002063863,0.000020623933,0.00002168232,0.00002099713,0.00002041395,0.000020011063,0.000020324362,0.000020314266,0.000020533169,0.000020769538,0.00002161621,0.00002080272,0.000020630603,0.000020557269,0.00002108369,0.00002068168,0.00002065464,0.000020767238,0.000021755412,0.00002122347,0.000020930755,0.000020756628,0.000021317835,0.00002088872,0.000020977815,0.000021166874,0.000022318836,0.000021702695,0.000021593958,0.000021215435,0.000021531427,0.00002062779,0.000020639183,0.000020695374,0.000022082182,0.000021176847,0.000020736266,0.00002003751,0.000020595258,0.000019788062,0.00002048107,0.00002035899,0.000021633658,0.000020436119,0.000021352444,0.000020826163,0.000021681988,0.000020308824,0.000020918902,0.000020772864,0.000022150896,0.000021124466,0.000020529018,0.000019613057,0.000019011652,0.00001956654,0.000019791158,0.00002047859,0.000021022473,0.00002114466,0.000021380747,0.000020792288,0.000021763963,0.000024592,0.00002540438,0.000021119027,0.000015867421,9.796207e-6,0.000012504653],[0.00001571276,0.000013677937,0.0000121161165,0.000018846406,0.00003005419,0.000036930593,0.000029338105,0.000024558183,0.000021428246,0.000020041678,0.000019510064,0.000018807392,0.000019965466,0.000019998586,0.00002120793,0.00002090843,0.000021767843,0.0000207135,0.00002063676,0.000020878324,0.000022387796,0.000022015485,0.00002162155,0.000021002115,0.000021848164,0.000021241169,0.000021589038,0.000021243171,0.000021834207,0.00002169624,0.000021274273,0.000020269605,0.000020844007,0.000020276331,0.000021225473,0.000021480872,0.000022449007,0.000022295117,0.000021873597,0.000021300035,0.00002240653,0.000022000688,0.00002230758,0.000022318836,0.000022926239,0.00002269576,0.000022324433,0.000021618418,0.000021967458,0.00002139433,0.000021963227,0.000022231867,0.00002310067,0.000022774917,0.000022523784,0.000021748898,0.000022344944,0.000021900356,0.00002214699,0.000022205424,0.000022964641,0.000022857319,0.000022642773,0.000021543421,0.000021803538,0.00002141601,0.000021791853,0.00002194995,0.000022869375,0.000022674407,0.000022533,0.000021878104,0.00002230956,0.00002199519,0.000022205064,0.000022265198,0.000022926326,0.000022917648,0.0000226402,0.000021467109,0.000021733265,0.000021384825,0.000021748649,0.000021939572,0.000022856535,0.000022660139,0.000022560564,0.000021872407,0.000022309026,0.000021992171,0.000022195725,0.000022254735,0.00002289316,0.000022851738,0.000022563965,0.000021371003,0.000021614356,0.000021271717,0.000021623346,0.000021803184,0.000022697708,0.000022550175,0.000022458793,0.000021847078,0.000022250659,0.000021918198,0.000022108143,0.000022155504,0.000022838232,0.000022731196,0.000022487126,0.000021421258,0.000021671445,0.000021342063,0.000021721435,0.000021906184,0.000022782477,0.000022604067,0.000022459906,0.000021814185,0.000022222222,0.000021925076,0.000022113309,0.000022157701,0.000022805476,0.00002270221,0.000022445154,0.000021362383,0.000021627779,0.00002131753,0.000021718575,0.000021917886,0.00002276695,0.000022600942,0.000022487426,0.000021916027,0.000022343178,0.000022040125,0.000022246777,0.000022295224,0.000022919701,0.000022803215,0.000022528273,0.00002143493,0.00002171665,0.000021410293,0.00002178159,0.0000219741,0.00002285405,0.000022681954,0.000022519487,0.000021881024,0.000022267493,0.000021969721,0.000022145745,0.000022207902,0.000022824926,0.000022733364,0.000022448214,0.00002140292,0.00002168935,0.000021415337,0.000021792104,0.000021989717,0.000022868351,0.000022701777,0.000022588833,0.000021955604,0.00002236953,0.00002206656,0.000022299391,0.000022335124,0.000022965036,0.000022877162,0.000022631999,0.000021479947,0.000021786369,0.000021438895,0.000021821446,0.000022002472,0.000022923725,0.000022715463,0.000022626626,0.0000219393,0.000022385577,0.000022056925,0.000022276561,0.000022309154,0.00002291592,0.000023015067,0.000022669023,0.000021478698,0.000021518861,0.000021261696,0.000021724232,0.0000219398,0.000022879018,0.000022661738,0.000022569495,0.000021779782,0.000022288314,0.000021864109,0.000022042754,0.000022026385,0.000022894776,0.000022921275,0.000022912469,0.000021985756,0.000022547487,0.00002196884,0.000022264754,0.000022224976,0.000023456705,0.000023492454,0.00002383122,0.000023037157,0.000023365948,0.000022644932,0.000022222923,0.000022018572,0.00002259286,0.000022941877,0.000022785911,0.00002160265,0.000021763899,0.000021021913,0.000021476753,0.000021080452,0.000022730655,0.000022162138,0.00002252681,0.000021823924,0.000023089417,0.000022146463,0.00002207616,0.000021744274,0.000022472119,0.00002285152,0.000021915042,0.000021561817,0.00002055821,0.000020360194,0.000019867972,0.000020687658,0.000021062508,0.000022033611,0.000020764803,0.000021371103,0.000020276255,0.000021814705,0.000025417368,0.000024444298,0.00002088378,0.000016720036,0.000010207513,0.000012553797],[0.000015541436,0.000012164813,0.000012293531,0.000016559763,0.000026556612,0.000036913905,0.000028281884,0.000023305505,0.000020063746,0.00001928288,0.000018513025,0.0000185075,0.000018135352,0.000019151496,0.00001945659,0.000020394824,0.000020076626,0.000020487205,0.000019743879,0.000020683141,0.000020682824,0.00002151322,0.000020182188,0.000019732508,0.000019581772,0.000019995763,0.000020311749,0.000020370022,0.000020344687,0.000020875535,0.000019659967,0.000019036961,0.000018871424,0.00001955723,0.000020413348,0.000021109321,0.000021323589,0.00002161885,0.000020190138,0.000019864468,0.000020013144,0.000020644595,0.000021408434,0.00002194792,0.000021992277,0.000021846725,0.000020735517,0.000020122114,0.000019774612,0.000019699099,0.000020576706,0.00002106034,0.000021421543,0.000021559637,0.00002077859,0.00002025741,0.000020517315,0.00002049508,0.000021438385,0.000021873806,0.000022290184,0.000022101629,0.000021037455,0.00002019374,0.000020008029,0.000019787118,0.000020712809,0.000021186483,0.000021666321,0.000021780552,0.000020970312,0.000020471403,0.000020715139,0.000020744852,0.000021657086,0.00002207157,0.00002252116,0.000022225508,0.000021204998,0.000020251462,0.000020094612,0.00001980715,0.000020776371,0.00002123805,0.000021747406,0.000021807364,0.0000209895,0.000020482086,0.000020713065,0.000020712454,0.000021632419,0.000022041408,0.000022473747,0.000022156813,0.000021128315,0.000020164545,0.000019980573,0.000019678426,0.000020619313,0.000021044178,0.000021544674,0.000021616086,0.000020847485,0.000020371866,0.000020609916,0.000020599422,0.00002152461,0.000021937209,0.000022413902,0.000022120099,0.000021094571,0.000020137451,0.000020000112,0.00001974627,0.00002069342,0.000021145246,0.000021628068,0.000021694896,0.00002090833,0.000020403324,0.00002060339,0.000020619842,0.000021517099,0.000021911283,0.000022324519,0.00002202922,0.000021019547,0.000020069965,0.000019936453,0.0000196932,0.000020656333,0.000021115624,0.000021635267,0.00002172328,0.000020973894,0.000020504014,0.000020741172,0.000020768943,0.000021686807,0.00002207816,0.000022479064,0.000022145428,0.000021124566,0.000020179186,0.000020056495,0.000019806188,0.000020786518,0.000021242098,0.00002173169,0.000021803184,0.000021001815,0.000020482788,0.000020697309,0.000020699421,0.000021613718,0.000022010572,0.000022441985,0.000022126049,0.000021123338,0.000020182035,0.000020066846,0.000019827863,0.000020804626,0.000021263197,0.000021732769,0.000021801083,0.000021001853,0.0000205235,0.000020734607,0.000020766527,0.000021688917,0.000022088712,0.000022510232,0.000022195876,0.00002118796,0.000020243871,0.000020103162,0.000019836849,0.000020789254,0.000021245743,0.000021747903,0.000021840726,0.000021046968,0.000020578236,0.00002085711,0.000020895233,0.00002183658,0.000022210423,0.000022681588,0.000022310325,0.000021357066,0.000020283951,0.00002012432,0.000019799672,0.000020851758,0.000021265652,0.000021748589,0.0000217325,0.000020920557,0.000020329751,0.00002052665,0.000020387415,0.000021232498,0.000021620479,0.000022026616,0.000021862483,0.00002095528,0.000020295562,0.000020357515,0.000020095189,0.000020851183,0.000021357371,0.000021810567,0.000022205275,0.000021724398,0.000021488595,0.000021787178,0.000021320438,0.000021832875,0.000021827545,0.000022271444,0.000022036216,0.000021162978,0.000020112098,0.000019737214,0.000019273062,0.000019624638,0.000020073181,0.000020243217,0.000020875557,0.000020189387,0.000020531426,0.00002069705,0.000021124044,0.000020841144,0.000021427673,0.000021834,0.000022385855,0.00002145933,0.000020656962,0.000020543943,0.000019702593,0.000020940319,0.000020842574,0.000021240052,0.000021285272,0.000021273561,0.000021317694,0.000020456437,0.000020961395,0.000024576784,0.000025011484,0.000021174465,0.000015994341,0.000010449386,0.000012731208],[0.000016475817,0.000011101305,0.0000122875645,0.000017209255,0.00002483181,0.000039305723,0.000032576736,0.000024183815,0.000020825846,0.000020020225,0.000019718645,0.000018365334,0.000019264131,0.000019215344,0.000020826263,0.000019517041,0.000021929553,0.000021182483,0.000022319922,0.00002033522,0.000021953761,0.000021820884,0.000022200957,0.000019733525,0.000020525747,0.000020930474,0.00002240873,0.000021127991,0.000021582162,0.000021780468,0.00002169568,0.00001934864,0.000020033232,0.000020700052,0.00002271371,0.000021290956,0.000022560005,0.000022075359,0.00002218104,0.000019412497,0.000020436704,0.00002120609,0.000023079025,0.000022064753,0.00002245179,0.000022171609,0.00002212126,0.000019746476,0.000019943258,0.000020374937,0.000021884802,0.00002092806,0.000021890897,0.000021933127,0.000022034808,0.00001982741,0.00002046182,0.000021240963,0.000022911965,0.00002204061,0.00002248423,0.000022382183,0.000022334487,0.000019998739,0.000020123916,0.000020652551,0.000022201337,0.00002141403,0.000022230468,0.000022295499,0.000022341623,0.00002006811,0.000020691012,0.00002152391,0.00002329875,0.000022415443,0.000022757877,0.000022687707,0.000022556627,0.000020159681,0.000020182419,0.000020686237,0.00002225917,0.000021491915,0.000022285403,0.000022319773,0.000022395783,0.000020089383,0.000020681227,0.000021486687,0.000023252713,0.00002235394,0.000022698378,0.000022588098,0.000022456286,0.000020064703,0.000020108953,0.000020572978,0.000022095854,0.000021323487,0.000022114911,0.000022180597,0.000022257387,0.000019985127,0.000020598558,0.000021440694,0.00002318259,0.000022293565,0.000022661521,0.000022590038,0.000022468346,0.000020084995,0.000020150743,0.000020651743,0.00002220807,0.000021428288,0.000022210867,0.00002227053,0.00002236456,0.000020055233,0.000020637804,0.000021436177,0.00002317786,0.000022264308,0.000022601955,0.000022506754,0.000022381586,0.000020008734,0.00002006782,0.000020579708,0.000022162922,0.00002141315,0.000022218366,0.000022318156,0.000022413837,0.000020122765,0.0000207335,0.000021556369,0.000023328786,0.000022390552,0.000022724564,0.000022613447,0.000022492593,0.000020105213,0.00002017526,0.000020699163,0.000022285849,0.000021514,0.000022297943,0.00002234567,0.00002243518,0.000020129712,0.000020714922,0.000021524591,0.00002330235,0.000022393691,0.00002272363,0.00002263761,0.000022508066,0.000020140946,0.000020195204,0.000020727728,0.000022326052,0.000021548125,0.000022304048,0.000022347418,0.000022439353,0.000020134992,0.000020730931,0.000021538839,0.000023329567,0.000022413687,0.000022759894,0.000022654025,0.0000225471,0.000020143732,0.000020195974,0.000020663249,0.000022230213,0.000021442289,0.000022277285,0.000022308643,0.000022438006,0.000020160374,0.000020780117,0.000021590808,0.00002341895,0.000022540027,0.000022851085,0.00002273074,0.00002255495,0.00002015307,0.000020112308,0.000020500866,0.000022136095,0.00002135385,0.00002224894,0.000022069615,0.00002214171,0.000019811343,0.00002041214,0.000021016882,0.000022572614,0.000021695183,0.000022169768,0.00002200396,0.000021965343,0.00001982461,0.000020324655,0.000020737158,0.000022265773,0.000021233653,0.000022109658,0.00002220157,0.000022499307,0.00002064115,0.000021410782,0.000021935093,0.000023247501,0.000022178081,0.000022348824,0.000022079088,0.000021984119,0.00001979414,0.000019867328,0.000019465051,0.000020528703,0.000019514177,0.000021204452,0.000020644988,0.000021301597,0.000019372957,0.000021540503,0.000020918742,0.000022230022,0.000020879279,0.000022057684,0.000022255052,0.00002185877,0.000020470388,0.00001996722,0.00002033394,0.000021018404,0.000021287606,0.00002121145,0.000021371308,0.000020936564,0.000020810934,0.000019268524,0.000019732564,0.00002440121,0.000024076146,0.000021639353,0.000015671201,0.000010489222,0.000012247927],[0.000016586282,0.000011123602,0.000012521658,0.000015664253,0.000021006163,0.000033501386,0.000032557295,0.000023010656,0.000019645668,0.000019021734,0.0000185179,0.000017869661,0.000018331719,0.000018901557,0.000018825336,0.000018577668,0.00001920785,0.000020405096,0.000019947596,0.00001950664,0.000020161548,0.000021363036,0.000020920437,0.000019630048,0.000019507515,0.000020421994,0.000021106645,0.0000203289,0.000020739828,0.000021468704,0.000021043757,0.000019349323,0.000019474577,0.00002005573,0.000021482774,0.000020430993,0.000021416174,0.000021570391,0.000021107067,0.000019377927,0.000019751882,0.000020873285,0.000022224194,0.000021562577,0.000021673759,0.00002161788,0.000021026824,0.000019256106,0.000019322806,0.000019789912,0.000021306756,0.000020658106,0.000021217054,0.000021210155,0.000020716463,0.000019078798,0.000019679852,0.000020616815,0.000021962138,0.000021231832,0.000021552914,0.000021543256,0.000020963296,0.000019177905,0.00001940256,0.0000199869,0.0000214615,0.000020805519,0.000021389005,0.000021408903,0.000020941356,0.000019225774,0.00001985017,0.000020818437,0.000022242853,0.00002141166,0.000021804182,0.000021709113,0.000021213109,0.000019272493,0.000019485167,0.000019989091,0.000021494478,0.000020779602,0.000021444028,0.000021439815,0.000021025842,0.000019246172,0.000019862384,0.000020774765,0.000022207625,0.00002135992,0.000021749522,0.000021642716,0.000021136497,0.000019202174,0.000019437153,0.000019918967,0.000021356598,0.000020643158,0.000021305803,0.000021302836,0.000020906517,0.000019155223,0.000019787629,0.000020703408,0.000022141541,0.000021308872,0.000021716794,0.000021641601,0.000021180464,0.000019263949,0.000019489757,0.000019990826,0.000021500422,0.00002077776,0.00002142608,0.000021419912,0.000021025682,0.000019254636,0.000019853333,0.000020746871,0.000022157066,0.000021308708,0.000021685484,0.000021590953,0.000021089903,0.000019169202,0.000019399875,0.000019901196,0.000021416132,0.000020719011,0.000021383887,0.00002139278,0.000021032422,0.000019289391,0.000019910934,0.000020826461,0.000022276286,0.000021409576,0.000021791315,0.000021659771,0.000021188282,0.000019261981,0.000019509582,0.000020023052,0.000021546173,0.000020833215,0.00002147792,0.000021462258,0.00002107155,0.000019297651,0.000019916175,0.000020832857,0.000022282235,0.000021428921,0.000021814518,0.000021696198,0.000021230899,0.000019304498,0.000019540359,0.000020044105,0.000021567677,0.000020839116,0.000021484393,0.000021464939,0.000021067288,0.000019297946,0.000019906929,0.000020820544,0.000022273907,0.000021416254,0.000021816246,0.000021701475,0.000021222235,0.000019282897,0.000019484032,0.000019957375,0.000021437158,0.00002072749,0.000021441023,0.000021463751,0.000021103424,0.000019343917,0.000019991283,0.00002091236,0.00002242701,0.000021542024,0.000021982925,0.000021733764,0.000021257458,0.000019244888,0.000019439156,0.000019804827,0.000021330708,0.000020619585,0.000021381502,0.000021143349,0.000020726045,0.000018873296,0.000019540843,0.000020244355,0.000021454296,0.00002074974,0.000021146878,0.000020983858,0.00002024227,0.000018581955,0.000019109371,0.000019857724,0.00002101233,0.000020430096,0.000020951184,0.000020990161,0.000020481382,0.000019111285,0.000019934512,0.000020724248,0.00002177563,0.000021025442,0.000021349004,0.000020715792,0.000019969239,0.000018241262,0.000018697783,0.000018395483,0.000019041463,0.000018564791,0.000019709676,0.000019539446,0.000019248908,0.000018298673,0.00001915579,0.000020016998,0.000020384712,0.000020076914,0.000020914613,0.000021505057,0.000021124508,0.00001996901,0.000020059135,0.00002031262,0.000021527236,0.00002128925,0.000021678452,0.000021008766,0.00002126194,0.000020967374,0.000020381796,0.000020696853,0.000023714283,0.00002520534,0.000022776894,0.000016025793,0.000010267204,0.000012729279],[0.000016344815,0.000010619314,0.000012476779,0.000014391121,0.00001760956,0.000030261835,0.000034767418,0.000024455956,0.000020094976,0.000019514977,0.00001903843,0.000018636936,0.00001947493,0.000019952582,0.000020741074,0.000019898083,0.00002086415,0.000020941516,0.000021357557,0.000020963775,0.000021911072,0.000022585491,0.000022591352,0.00002168232,0.000021325704,0.000021451984,0.000021772246,0.000021724292,0.000021836497,0.000022563125,0.00002214528,0.000021524978,0.000020403751,0.000021219179,0.00002180256,0.000022210781,0.000022248198,0.000022552282,0.000022102196,0.00002099709,0.000020712137,0.000021597809,0.00002252144,0.000022654262,0.00002214452,0.000022297794,0.000021668697,0.000020747939,0.000020204237,0.000020996167,0.000022341623,0.000022457485,0.000022502765,0.00002239177,0.00002161281,0.000020618918,0.000020361922,0.000021302836,0.000022118202,0.000022276074,0.00002205619,0.000022192278,0.000021419808,0.000020584124,0.000020172856,0.000021102438,0.000022226779,0.000022430218,0.000022457401,0.000022552304,0.000021683602,0.000020802581,0.000020369458,0.000021429842,0.000022145405,0.00002240732,0.000022120965,0.00002239181,0.000021566486,0.00002076211,0.000020191237,0.00002112535,0.000022131198,0.000022403772,0.000022414095,0.000022622742,0.000021745022,0.000020875257,0.000020383875,0.000021427797,0.000022128854,0.000022380518,0.000022095346,0.000022344711,0.000021514512,0.000020703565,0.000020164951,0.000021083528,0.000022029513,0.000022280727,0.000022298009,0.0000225356,0.000021638569,0.000020790087,0.000020275636,0.00002136721,0.000022066226,0.000022361659,0.000022055538,0.000022360913,0.000021534343,0.000020754926,0.000020201367,0.000021132766,0.00002213561,0.000022392687,0.00002239775,0.000022607062,0.000021746348,0.000020888203,0.000020379832,0.000021418704,0.000022090606,0.0000223442,0.00002203998,0.000022310089,0.000021473108,0.000020675076,0.000020113077,0.00002107133,0.000022064205,0.000022349934,0.000022335742,0.000022599388,0.000021727235,0.00002089139,0.000020358388,0.000021446196,0.000022153941,0.000022430944,0.000022096128,0.000022363172,0.000021538715,0.000020758567,0.000020206859,0.000021159567,0.00002217459,0.000022444598,0.000022429254,0.000022640828,0.000021762447,0.00002091858,0.000020405427,0.000021480173,0.000022174316,0.000022453267,0.000022132634,0.000022411274,0.000021585867,0.000020799864,0.000020224885,0.000021166954,0.000022175078,0.000022450977,0.000022435352,0.000022646442,0.000021765083,0.000020915928,0.000020389805,0.000021461092,0.00002214963,0.000022459113,0.000022126766,0.000022429425,0.000021585372,0.000020796195,0.000020187828,0.000021101734,0.000022052845,0.00002235492,0.000022391598,0.000022672331,0.000021801105,0.00002098736,0.000020451871,0.00002157029,0.000022221227,0.000022599237,0.000022149037,0.000022468155,0.000021527649,0.000020710318,0.000020059766,0.00002099907,0.000021869384,0.00002220375,0.000022244698,0.00002241619,0.00002143994,0.000020499496,0.000020123782,0.000021117174,0.000021767408,0.000021850934,0.000021675973,0.000021738635,0.00002067117,0.000019919367,0.000019743464,0.000020913694,0.00002192949,0.000021979551,0.000021885804,0.000021948006,0.00002079439,0.000020138583,0.000019900532,0.000021270174,0.000021555197,0.00002200837,0.00002127835,0.000021625263,0.000019954769,0.000019540657,0.000019063085,0.000020001944,0.000020152012,0.000020369458,0.000020791535,0.000021401758,0.000020390467,0.000019498364,0.00001983178,0.000020581749,0.00002090205,0.000020597261,0.000020840926,0.000021948947,0.000020972233,0.000020869824,0.00001969042,0.000020802581,0.000020647469,0.00002214053,0.000021374815,0.00002195707,0.000020437814,0.000021404432,0.000019840574,0.000020990961,0.000023509667,0.000024598545,0.000021172807,0.000017013599,0.000010317489,0.000012613308],[0.000017356257,0.000011150856,0.000010667344,0.000011448978,0.000014043994,0.000024655825,0.00003560148,0.000025154506,0.000019742503,0.0000193594,0.00001858738,0.000018853345,0.000018430796,0.000019905487,0.000020424739,0.000020950505,0.000019762529,0.000020872967,0.000020591782,0.000021725184,0.00002126563,0.000022766646,0.000021838498,0.00002267285,0.000020985939,0.000021763943,0.000021675041,0.000022622959,0.000022323968,0.000023165287,0.000022438839,0.00002235556,0.000021066506,0.000021156842,0.00002185825,0.000021961887,0.000021828939,0.0000217606,0.000020839454,0.00002111516,0.000019955587,0.000020927562,0.00002143679,0.00002218684,0.000021258758,0.00002125612,0.000020467949,0.00002047109,0.000019450912,0.000020378238,0.000021861752,0.0000226208,0.000022380049,0.0000222823,0.000021401045,0.000021432354,0.00002021239,0.000020924128,0.000021518843,0.000022305792,0.000021801105,0.00002176668,0.000021027026,0.00002101143,0.000020178897,0.000020873207,0.00002215916,0.000022845747,0.000022822054,0.000022567494,0.000021759584,0.000021683476,0.000020471658,0.00002110097,0.000021627242,0.0000223954,0.000021989257,0.000021946144,0.000021244126,0.000021162696,0.000020309832,0.00002090175,0.000022147307,0.000022804345,0.00002285141,0.000022599388,0.000021818118,0.000021696198,0.000020483472,0.00002106747,0.000021612748,0.00002235829,0.000021953552,0.000021891523,0.000021198468,0.000021115444,0.000020283796,0.000020873285,0.000022100701,0.000022738654,0.00002280004,0.000022559876,0.00002180778,0.000021641024,0.00002044682,0.00002102494,0.000021620519,0.00002236812,0.000021950265,0.000021895907,0.000021208842,0.000021124082,0.00002028546,0.000020862779,0.00002213884,0.000022796432,0.000022854767,0.000022604972,0.000021866608,0.00002171143,0.000020510799,0.000021056023,0.000021616603,0.000022346181,0.000021934864,0.00002187656,0.000021183696,0.000021086304,0.000020251848,0.000020851025,0.000022130944,0.000022800476,0.00002285394,0.000022611417,0.0000218486,0.000021691294,0.000020470467,0.000021034686,0.00002162908,0.000022355858,0.000021931455,0.000021860793,0.00002119968,0.000021119833,0.00002029893,0.00002089884,0.000022175584,0.000022840453,0.000022875962,0.000022613813,0.00002187099,0.000021718535,0.00002051528,0.000021077178,0.000021654256,0.000022395505,0.000021990978,0.000021930617,0.000021258149,0.00002117711,0.000020331343,0.00002090867,0.000022173703,0.000022838209,0.000022877492,0.000022609758,0.00002186371,0.000021714848,0.00002050239,0.000021066868,0.000021640963,0.000022391747,0.000021978858,0.000021927963,0.000021229362,0.000021148451,0.000020267691,0.000020833413,0.000022076034,0.000022730263,0.000022795799,0.000022598806,0.000021850266,0.000021750951,0.000020526963,0.00002113071,0.000021703523,0.00002242485,0.00002193953,0.000021871781,0.000021140166,0.000020985337,0.000020003927,0.000020542297,0.000021822758,0.000022405975,0.000022465005,0.000022249493,0.000021528407,0.000021323161,0.000020158874,0.000020819609,0.000021460375,0.000022139346,0.000021646536,0.000021528655,0.000020719326,0.000020585656,0.000019803996,0.000020611213,0.000021839789,0.000022608765,0.00002231358,0.000022040253,0.000021029171,0.000020906018,0.000019926207,0.000020915491,0.000021446933,0.000022273462,0.000021659089,0.00002162879,0.000020610407,0.00002003604,0.000019349527,0.000020201656,0.000020765754,0.000020931693,0.000021074664,0.000021191554,0.000020628497,0.000020157184,0.000019169222,0.000020283122,0.000019688861,0.000020450272,0.000020155338,0.000021412843,0.000020958998,0.000021271917,0.000019510864,0.000020545705,0.000021204009,0.000021988899,0.00002217178,0.00002243362,0.000022192044,0.000022240074,0.00002140678,0.000021886262,0.000025341782,0.00002397133,0.00002014477,0.000015800664,0.00001075348,0.000012649519],[0.000016852006,0.000010740924,0.000010554888,0.000010656445,0.000013049796,0.000023135835,0.000037911697,0.000026617563,0.00002107137,0.000019879439,0.000019964344,0.000019040683,0.000019662442,0.00002003388,0.000021748194,0.000021391576,0.000022149547,0.000021462585,0.00002219471,0.000021558095,0.000022640914,0.000022421984,0.000023619197,0.000022514161,0.00002253145,0.000021708202,0.00002255325,0.000022774939,0.000023806484,0.000023444425,0.000023918878,0.000022642751,0.000022783848,0.000022067234,0.000022858889,0.000022299964,0.000022769882,0.000022221036,0.000022305707,0.000021219279,0.000020890511,0.000020874062,0.000021341064,0.000021168407,0.000021206495,0.000020795202,0.00002105785,0.000020339778,0.000020385412,0.000020816036,0.000021778164,0.000022334783,0.000022754944,0.000022559532,0.00002273267,0.000021724542,0.000021282227,0.00002117594,0.000021665142,0.000021784228,0.000021946771,0.00002175618,0.000022032076,0.000021235172,0.00002098734,0.00002117838,0.000022001506,0.000022570872,0.000023082986,0.000022896827,0.000023194687,0.000022073928,0.000021578086,0.00002134485,0.000021859687,0.000021913851,0.000022115564,0.000021907583,0.00002224037,0.000021363952,0.0000211028,0.000021185575,0.000022000982,0.000022544047,0.000023082437,0.000022896173,0.000023206214,0.000022066646,0.00002156807,0.000021328247,0.000021833876,0.00002188549,0.000022071887,0.000021865359,0.000022169115,0.000021332662,0.000021070402,0.000021198246,0.000021961803,0.000022522752,0.000023023124,0.000022877904,0.00002317534,0.0000220367,0.000021518412,0.000021312957,0.0000218269,0.000021887932,0.000022060776,0.000021843245,0.000022142873,0.000021292924,0.000021020149,0.000021170024,0.000021931308,0.000022516822,0.000023017941,0.00002289041,0.000023182945,0.000022077824,0.00002156381,0.000021351549,0.00002181764,0.000021881839,0.000022046643,0.00002185552,0.000022142662,0.000021304179,0.000021022353,0.000021177475,0.000021974018,0.000022550434,0.000023049508,0.000022884953,0.000023187698,0.00002203275,0.000021520034,0.0000212927,0.000021785454,0.000021838643,0.000022016891,0.000021811127,0.000022133836,0.000021307367,0.000021045924,0.00002119396,0.00002197827,0.0000225511,0.000023038587,0.00002288144,0.000023186107,0.000022059556,0.000021551641,0.000021329732,0.000021826796,0.000021886408,0.00002207275,0.000021878875,0.000022207267,0.000021356702,0.000021070546,0.000021199721,0.00002197496,0.000022545488,0.000023043156,0.000022875854,0.000023186769,0.00002204885,0.00002155205,0.000021308708,0.00002182049,0.000021863523,0.000022074813,0.000021838145,0.00002219742,0.00002131249,0.00002106488,0.000021128737,0.000021921876,0.000022450784,0.00002301555,0.00002283061,0.000023206016,0.00002203317,0.000021568912,0.000021291788,0.000021887388,0.000021833708,0.000021999052,0.000021641457,0.000022115817,0.000021049094,0.000020823582,0.000020851221,0.000021609305,0.000022060713,0.00002266217,0.000022528187,0.000022989667,0.000021857375,0.000021420912,0.000021400452,0.000022032624,0.000022002241,0.000022091072,0.000021871574,0.000022287379,0.000021259202,0.000020895553,0.000021241854,0.000022202248,0.00002258323,0.000022791844,0.000022407556,0.000022704744,0.000021569715,0.000021428226,0.000021501897,0.000022272441,0.000022161652,0.00002237162,0.000021906351,0.00002205188,0.000020964933,0.000021093585,0.000020448128,0.00002116649,0.000020710537,0.000021429963,0.000021279548,0.000021875705,0.000020612844,0.000021042491,0.000020114054,0.000020649693,0.000019862895,0.000020714824,0.000021268266,0.000022244294,0.000021103282,0.00002048687,0.000020272833,0.000021048232,0.000021155493,0.000021760745,0.000022482815,0.000021790067,0.000022241813,0.000021211856,0.000021562906,0.000024604034,0.000020263922,0.000019077052,0.000015131125,0.000010140498,0.000012435156],[0.000017036346,0.0000124057215,0.000010839535,0.000010184856,0.000012433507,0.000020714013,0.000035109966,0.000025643456,0.000021306942,0.000020217056,0.00001976907,0.00002014984,0.000020532778,0.00002206128,0.000022781545,0.000024173278,0.000024039298,0.000024196735,0.000022545166,0.000023277162,0.000023654475,0.000025057801,0.0000241498,0.000024562796,0.00002415655,0.000024376137,0.000023959767,0.000024555184,0.00002619946,0.000026970098,0.000025673624,0.000024979758,0.000026276577,0.000025522444,0.000025111769,0.000024378625,0.000024366655,0.000024704383,0.000023387262,0.000023312306,0.000023259388,0.000023688359,0.000022570182,0.000022703618,0.000022977609,0.000023856073,0.000022556927,0.000022833461,0.00002405953,0.000024359104,0.000023997613,0.000024345054,0.00002470325,0.000025398083,0.000023900295,0.00002410369,0.00002400045,0.000024256018,0.000022981378,0.000023740193,0.000023691384,0.00002459662,0.000023077419,0.000023247767,0.00002423269,0.000023996148,0.000023619443,0.000024095096,0.000024424187,0.000025348598,0.000024195604,0.000024471565,0.000024352532,0.000024528246,0.00002317691,0.000023883162,0.000023768645,0.000024644589,0.000023097982,0.000023243356,0.0000242113,0.000023941837,0.000023542649,0.000024056477,0.000024392788,0.00002531193,0.000024195097,0.000024455187,0.000024351208,0.00002449029,0.000023157976,0.000023857756,0.000023739603,0.000024609268,0.000023071587,0.000023221779,0.000024198027,0.000023928575,0.000023497698,0.000024027862,0.00002436963,0.000025301553,0.000024253985,0.000024450663,0.000024330942,0.000024440733,0.00002313716,0.000023831833,0.000023713583,0.000024567318,0.000023043947,0.00002316438,0.000024163117,0.000023888811,0.000023469569,0.000024002351,0.00002436331,0.000025305317,0.000024265897,0.000024486131,0.000024390625,0.000024495754,0.00002316438,0.000023855617,0.000023730028,0.000024608024,0.000023078299,0.00002320316,0.00002417238,0.00002390816,0.000023507291,0.000024052668,0.000024371373,0.000025296822,0.000024259836,0.0000244564,0.000024335606,0.000024428335,0.00002310521,0.000023785877,0.000023676273,0.000024560923,0.00002303918,0.000023193536,0.00002417932,0.00002391936,0.000023497116,0.000024041523,0.000024364728,0.00002530469,0.00002425424,0.000024473944,0.000024351904,0.000024471472,0.00002314016,0.000023841903,0.000023715234,0.000024606265,0.000023076385,0.000023232986,0.000024178005,0.000023906998,0.000023475344,0.000024029192,0.000024357803,0.00002529499,0.000024225943,0.000024459967,0.000024354807,0.000024467621,0.000023130606,0.000023828605,0.000023720708,0.000024577559,0.00002304063,0.000023202498,0.00002417501,0.000023887467,0.000023468272,0.000023981986,0.000024343104,0.000025300324,0.000024187508,0.000024468462,0.000024319854,0.000024492763,0.000023163695,0.000023851888,0.000023601839,0.000024399325,0.000022803171,0.000023050388,0.000023925815,0.000023615505,0.000023127806,0.000023644008,0.000023961207,0.000025051446,0.000024133984,0.000024425353,0.000024040673,0.000024417854,0.000023169108,0.000023931769,0.000023504579,0.000024918823,0.000023369714,0.000023793205,0.000024062098,0.0000241828,0.000023618251,0.000024435045,0.000024351555,0.0000252683,0.000024187853,0.00002460218,0.000024040422,0.000024472429,0.00002331909,0.000024223795,0.000023958486,0.000024448354,0.000023216418,0.000023532795,0.000023338443,0.000023210774,0.000021952108,0.000022536393,0.000022686345,0.000023328652,0.000022340088,0.0000228699,0.00002189737,0.00002209971,0.000020045807,0.00002090163,0.000020823582,0.000022767601,0.000021969594,0.00002269405,0.000021163503,0.000022115142,0.000021453825,0.000023060215,0.000023266532,0.000024447934,0.000023441073,0.000023971217,0.00002283146,0.000024904904,0.00002366499,0.000021594722,0.000019027775,0.000015730886,0.000010205343,0.000013007674],[0.000016081627,0.000015847007,0.000013917134,0.000012385885,0.0000132402365,0.00001845167,0.00002797429,0.000025651087,0.000021834916,0.000021537278,0.00002203151,0.000022672244,0.000025058305,0.000026884994,0.00002869863,0.000028399667,0.00002956369,0.000027519047,0.00002701561,0.000026263624,0.000028970913,0.000028645094,0.000029184182,0.000027803917,0.000028915794,0.000025574438,0.000027132957,0.00002340819,0.000023430746,0.000022675553,0.000022576576,0.000023269284,0.000025066885,0.000024461835,0.000023786104,0.000022001823,0.000022754532,0.000025862102,0.000027285792,0.000027877779,0.00002804291,0.000027568483,0.00002611228,0.00002646928,0.000028517805,0.000026844416,0.000025190251,0.00002565424,0.000027271408,0.000025880954,0.000025229989,0.000024759547,0.000026861113,0.000029142077,0.00002709487,0.00002744645,0.0000282407,0.000027581553,0.000026536914,0.000026474681,0.000028396524,0.000028287384,0.000027184371,0.000027706908,0.000029813316,0.000028327147,0.00002725695,0.000026660751,0.00002828423,0.00003030209,0.000026960068,0.00002738898,0.000028241158,0.000027591812,0.000026519105,0.000026360281,0.000028239003,0.00002828585,0.00002723393,0.000027982109,0.000029629904,0.00002850981,0.00002728738,0.000026890819,0.00002839601,0.000030336616,0.000026922608,0.000027343309,0.000028176408,0.000027572925,0.000026488951,0.00002634965,0.000028208993,0.000028264303,0.000027237696,0.00002803128,0.000029522978,0.000028725079,0.000027259628,0.00002716773,0.000028709059,0.000030235617,0.00002689174,0.00002732678,0.00002809369,0.000027472923,0.000026411637,0.000026318708,0.000028152583,0.000028174203,0.000027281343,0.000028031092,0.000029489887,0.000028759454,0.00002724154,0.000027172939,0.000028712453,0.00003021388,0.000026886022,0.00002734829,0.000028141443,0.000027542783,0.000026456888,0.000026348467,0.000028186594,0.000028225568,0.00002730628,0.000028054226,0.000029442117,0.00002887303,0.000027231099,0.000027325843,0.000028787741,0.000030151477,0.000026860369,0.000027316124,0.000028086079,0.000027447497,0.000026392705,0.000026290038,0.00002814434,0.000028152957,0.00002727528,0.000028028311,0.000029483224,0.00002882087,0.000027242164,0.000027263606,0.000028767106,0.000030160913,0.000026869464,0.000027307633,0.000028096902,0.00002748123,0.0000264231,0.000026304006,0.000028139862,0.000028176111,0.000027293781,0.00002804585,0.00002944675,0.000028822053,0.000027207452,0.000027228501,0.000028721299,0.000030201956,0.000026887175,0.000027333399,0.00002814998,0.000027524218,0.00002644932,0.000026325337,0.000028186485,0.000028224276,0.000027196662,0.000027994174,0.000029591161,0.000028556886,0.000027269949,0.00002696444,0.000028519682,0.000030288513,0.000026909107,0.000027317503,0.000028097895,0.000027470776,0.000026423202,0.00002624885,0.000027975571,0.000027973038,0.000027173899,0.00002815229,0.000029192313,0.000028864715,0.000026817701,0.000027541206,0.000028636789,0.00002932468,0.000026439862,0.000026936787,0.000027352515,0.000026518168,0.000025489315,0.000025474808,0.0000272358,0.000026871438,0.000026179081,0.000027000646,0.000027978427,0.000028145792,0.000026380148,0.000026893229,0.000027733502,0.000027983177,0.000026488597,0.000026900281,0.000027109449,0.000026283444,0.000025375082,0.000025128538,0.000026516855,0.00002613189,0.000025303676,0.000025771376,0.000026656302,0.000026258667,0.000024701743,0.00002485451,0.000026019687,0.000025816344,0.000024969946,0.000024346307,0.000024164545,0.000022770097,0.000021652935,0.000020962674,0.000022730546,0.00002325553,0.00002396171,0.000023765993,0.000023615434,0.000023262182,0.000023031314,0.000023692493,0.000024471636,0.000024846404,0.0000234194,0.00002457765,0.00002461868,0.000023699386,0.000023389846,0.00001958136,0.000019501842,0.000016591866,0.000010231781,0.000013466743],[0.000017052811,0.000016976985,0.000014838212,0.000011911076,0.000012367577,0.000014639509,0.000020540867,0.000025713638,0.00002226055,0.000024150766,0.000026720032,0.000025417516,0.000021970664,0.000022665392,0.00002165758,0.000022042648,0.000019057794,0.000022362106,0.00002264992,0.00002316162,0.000020802225,0.000022334656,0.000020824951,0.000020492362,0.00001666839,0.000018536999,0.00001669846,0.0000156627,0.000013950022,0.0000146993,0.000013977494,0.000016918993,0.0000160069,0.000016690865,0.000014403409,0.000015014321,0.000013997756,0.000015026497,0.000015838727,0.000021300886,0.000022656011,0.000027190592,0.000024749443,0.000022684831,0.000018360044,0.000016495973,0.000014498127,0.000015295722,0.000014762742,0.000014962519,0.000014172712,0.000015086947,0.0000146844195,0.000016523416,0.00001850196,0.000025820455,0.000026267582,0.00003031322,0.000025588733,0.000022824035,0.000018884295,0.000017324322,0.000015644086,0.00001671908,0.000017008877,0.000016835236,0.000015666585,0.00001632103,0.000015921187,0.000017176904,0.000018786992,0.00002543194,0.00002745514,0.000031450072,0.000026326767,0.000023306817,0.00001912671,0.00001751114,0.000015818274,0.000016863114,0.000017106775,0.000016955628,0.000015844618,0.000016491616,0.000016057858,0.00001726931,0.000018847,0.000025428399,0.000027596734,0.00003150107,0.000026401363,0.000023360933,0.000019165145,0.000017545843,0.000015853824,0.000016908412,0.000017211274,0.000017121936,0.000016030577,0.000016647135,0.000016245327,0.000017461696,0.000019187162,0.000025969985,0.000027990543,0.00003177333,0.000026957112,0.000023801626,0.000019395695,0.000017674198,0.000015953712,0.000016954189,0.000017254233,0.000017131313,0.000016028407,0.000016628284,0.000016231437,0.000017431714,0.000019171872,0.000025933876,0.000027954877,0.000031761847,0.000026816602,0.000023682733,0.000019347975,0.000017672497,0.00001598882,0.000017024344,0.000017348677,0.000017265556,0.000016154901,0.000016740585,0.000016338268,0.00001755001,0.000019353125,0.000026248075,0.000028100278,0.000031847194,0.000027093216,0.000023921113,0.00001945824,0.000017716893,0.00001598984,0.000016994933,0.000017295451,0.00001718877,0.000016085492,0.000016700642,0.000016305425,0.000017525641,0.000019294615,0.000026135902,0.000028043098,0.000031766453,0.000026915139,0.000023761664,0.000019381901,0.000017705543,0.000015994721,0.000017030807,0.000017336339,0.000017232689,0.00001610769,0.000016699878,0.000016269374,0.00001745377,0.000019133406,0.00002583378,0.00002779339,0.00003161706,0.00002662414,0.00002351211,0.000019208419,0.000017541124,0.000015818861,0.000016865173,0.000017136737,0.000017007824,0.000015899837,0.000016538552,0.00001612332,0.000017356553,0.000019012974,0.000025757397,0.000027859918,0.00003166404,0.00002686183,0.00002376665,0.000019376708,0.000017766111,0.000016006945,0.0000170825,0.000017418784,0.000017576172,0.000016551474,0.000017252274,0.000017123913,0.000018780614,0.000021378342,0.00002985383,0.000030179124,0.00003279105,0.000029831548,0.000028735683,0.000024324168,0.000022238122,0.000019561932,0.00002120688,0.000022772834,0.000024626333,0.000021926226,0.000023202918,0.00002318246,0.000027361097,0.000028951885,0.00003298739,0.000030088115,0.00003198919,0.000029749246,0.000031410505,0.000028786782,0.000029614397,0.00002679122,0.000030267782,0.000030817184,0.00003572885,0.0000317736,0.00003523602,0.00003164089,0.00003361958,0.000029097675,0.000028669936,0.000023814546,0.000024517933,0.00002210363,0.000022741777,0.000022416383,0.000025450865,0.000024224879,0.000025361243,0.000023176512,0.000025076066,0.000023844268,0.000025854557,0.000024643532,0.000026740372,0.000024959018,0.00002692202,0.000025937807,0.00002499315,0.00002061186,0.000020365243,0.0000185558,0.000016435048,0.000010951859,0.00001404887],[0.000017951204,0.000021327045,0.000018202823,0.000013857113,0.000013349375,0.000013554436,0.00001351561,0.000018589684,0.000022761738,0.00002198022,0.000021763733,0.000016181115,0.000016323831,0.000016183538,0.00001779733,0.00001591727,0.000015144031,0.00001574085,0.000017419401,0.000015559202,0.000015964777,0.00001584687,0.000017022607,0.000015067724,0.00001413291,0.000014359686,0.000015165188,0.000015695461,0.000015166028,0.000015802983,0.000016101993,0.000016190392,0.000015926851,0.000015929752,0.000015661177,0.000015738779,0.000015144205,0.00001543824,0.00001525553,0.000016368305,0.00001576645,0.000016604514,0.00001728884,0.000015855472,0.000015249275,0.000014696258,0.000015111138,0.000015844105,0.000014830685,0.000014622177,0.000014989398,0.000015276886,0.000014758421,0.000014843207,0.000015739919,0.00001736344,0.00001758266,0.000017444752,0.000017981803,0.000016125765,0.000015303805,0.000014732068,0.000015056232,0.000015360112,0.0000147733335,0.000014842331,0.000015103186,0.000015320555,0.000014965073,0.00001543933,0.00001569582,0.00001745452,0.000017902581,0.000017808128,0.000018272829,0.000016240912,0.000015342866,0.000014740233,0.000015079855,0.00001546525,0.00001490224,0.000014909049,0.00001514913,0.000015372407,0.000015024046,0.000015504324,0.000015714273,0.000017424518,0.000017918639,0.000017858145,0.000018275321,0.000016241594,0.000015341242,0.000014743522,0.000015087538,0.000015470088,0.000014922421,0.000014946704,0.0000152002285,0.000015406986,0.000015074536,0.000015483785,0.000015762647,0.000017631975,0.000018073593,0.00001799656,0.000018472076,0.000016326228,0.000015414407,0.000014762868,0.000015083754,0.00001546171,0.0000149079115,0.000014937227,0.000015196374,0.000015399963,0.000015070339,0.000015457465,0.000015739319,0.000017582492,0.000018066323,0.000017986109,0.000018433344,0.000016310807,0.000015393634,0.000014755607,0.000015096935,0.000015452748,0.0000149175685,0.00001495717,0.000015224776,0.000015413276,0.000015095106,0.000015450303,0.000015790962,0.00001774283,0.00001815108,0.00001803726,0.000018541914,0.000016353717,0.000015447871,0.000014768656,0.000015094849,0.000015450994,0.000014911324,0.000014939508,0.000015207217,0.000015403577,0.000015089581,0.000015450243,0.000015785045,0.000017686405,0.00001812567,0.000018006756,0.000018475599,0.000016316142,0.000015406604,0.000014758757,0.000015099815,0.000015455931,0.000014921011,0.000014948299,0.000015211076,0.000015401609,0.000015076649,0.00001546466,0.000015749829,0.000017570406,0.000018016082,0.000017916416,0.000018369694,0.000016287584,0.000015373551,0.000014743734,0.000015084344,0.000015463318,0.000014902852,0.000014918877,0.00001516626,0.000015366442,0.0000150301075,0.000015463229,0.000015751917,0.000017519977,0.000018072766,0.00001798791,0.000018452076,0.00001634095,0.000015343261,0.000014690611,0.000015062034,0.000015477275,0.0000149659445,0.0000149821235,0.000015364492,0.00001545014,0.0000152350885,0.000015331983,0.000016394692,0.000019021354,0.000019783723,0.00001942248,0.00002109948,0.000017661714,0.000016669199,0.000015281754,0.00001504891,0.000015225806,0.000015582486,0.00001632735,0.000016876404,0.000016445098,0.000016467086,0.000017497034,0.000020358173,0.000019974532,0.000020911759,0.000019458223,0.000022045046,0.000018915458,0.00001973155,0.000018224553,0.000018514544,0.000018317809,0.000019394232,0.000019474819,0.000022108963,0.000020635363,0.000021102236,0.000021737847,0.000025077692,0.000023494158,0.0000259292,0.000025881249,0.000027277805,0.000025250763,0.000027255313,0.000026996708,0.00002788424,0.00002678593,0.000028141229,0.00002606961,0.000027293234,0.000025897718,0.000028393926,0.000026302676,0.000027292817,0.000026400256,0.000026058055,0.00001906432,0.000019164834,0.000017113889,0.000018830957,0.000015625299,0.000011367717,0.000013723105],[0.000018428915,0.000018808181,0.00001599094,0.000012491553,0.000012930473,0.000013224513,0.000010238662,0.000013873603,0.000015359718,0.00001730525,0.000015482427,0.000015551355,0.000013727582,0.00001608215,0.00001497731,0.000016575483,0.000013996101,0.000015649084,0.00001393513,0.000015641548,0.000013742239,0.000015633332,0.000013797366,0.000015524756,0.000013082817,0.000015157917,0.000014145707,0.000017669143,0.000015863776,0.000017396955,0.000015843365,0.000017788048,0.000016259446,0.00001682596,0.000015771067,0.000016739117,0.000015446722,0.00001597495,0.000015594975,0.00001588297,0.000012825273,0.0000141681985,0.000012988102,0.000014402104,0.00001437484,0.000015829199,0.000014480896,0.000016517633,0.000015161777,0.0000163971,0.000015502195,0.00001658315,0.00001561496,0.000015911139,0.000014839231,0.000016154965,0.000013827636,0.000015082603,0.000013936338,0.000014965231,0.000014571244,0.00001532849,0.000014308069,0.000016315817,0.000015007019,0.0000157152,0.000015088617,0.00001616492,0.000015460015,0.000015749589,0.000014744198,0.000016313374,0.0000138018395,0.000015085164,0.000013971509,0.000014966016,0.000014578361,0.000015293766,0.000014174173,0.000016292306,0.000015059406,0.000015673533,0.0000150918695,0.000016128917,0.000015475209,0.000015720298,0.000014728402,0.000016238513,0.000013741177,0.000015047877,0.000013951431,0.000014948613,0.000014553232,0.000015280733,0.0000141303635,0.000016280006,0.000015056032,0.00001565613,0.000015086444,0.00001610124,0.000015498765,0.000015661863,0.000014696468,0.00001622794,0.000013758669,0.000015037405,0.000013898246,0.000014895875,0.000014590725,0.00001526991,0.000014124152,0.00001625021,0.000015033864,0.000015653577,0.00001508643,0.000016105001,0.00001550326,0.000015659878,0.000014686955,0.000016239193,0.00001378365,0.000015066257,0.000013954359,0.00001493173,0.000014577609,0.000015264392,0.000014132358,0.000016236578,0.000015026067,0.000015635018,0.000015075845,0.000016081136,0.000015507296,0.000015640759,0.00001467763,0.000016258393,0.000013805157,0.000015074695,0.000013928845,0.000014924825,0.000014616142,0.000015274367,0.000014136443,0.000016242571,0.000015029519,0.000015641324,0.00001508374,0.000016089713,0.0000155145,0.000015645785,0.000014684042,0.000016256454,0.000013791157,0.00001506215,0.00001392644,0.000014904799,0.00001458534,0.000015263431,0.000014129312,0.000016230277,0.000015017557,0.000015632408,0.000015071416,0.000016085678,0.000015504724,0.000015665419,0.000014695432,0.000016267093,0.000013783741,0.00001507898,0.0000139567555,0.000014961877,0.000014592855,0.000015300435,0.000014138397,0.000016303062,0.000015069449,0.000015679034,0.000015102178,0.000016115619,0.000015484524,0.000015696989,0.000014711808,0.000016264317,0.000013782151,0.0000150519545,0.000013905989,0.000014930107,0.000014472253,0.000015199359,0.000013881689,0.000016216474,0.0000150568785,0.00001560908,0.000015108732,0.000015973259,0.000015489293,0.000015392887,0.000014479515,0.000015843441,0.000014185762,0.000015241817,0.000013992125,0.000014741203,0.000013711881,0.00001434998,0.000013237409,0.000015142904,0.000013622767,0.000015205391,0.0000149919715,0.00001598106,0.000013931395,0.000014532554,0.000014077248,0.000015752234,0.00001428485,0.000015580361,0.000014029082,0.000015399963,0.000013480236,0.000015229074,0.000014303771,0.000015911473,0.000014440309,0.000016227414,0.000015966436,0.000016892569,0.000015750895,0.000016451859,0.000016328611,0.000017694858,0.000016167618,0.000018225144,0.000018117737,0.000020531954,0.000019511534,0.000022208877,0.000021014115,0.000023068682,0.000020019155,0.000022788716,0.000021277356,0.00002460258,0.000021780863,0.000026384852,0.000024071851,0.00002578881,0.00001873048,0.00001802177,0.000016246691,0.000019104817,0.00001785852,0.000016009068,0.000011492383,0.000013998437],[0.000017040295,0.000020339778,0.000015840056,0.000014102766,0.000013610055,0.000012372132,8.982365e-6,0.000011132866,0.000013257902,0.000015002369,0.000015356993,0.000014922975,0.000015054279,0.000016483677,0.000016519258,0.000016547923,0.000014963662,0.000015275751,0.0000139608155,0.000015059277,0.000015566386,0.000016396787,0.000015286403,0.000015986747,0.00001505148,0.000016115418,0.000016105249,0.00001849261,0.000017669816,0.000018792403,0.000017554747,0.000018661265,0.000017302133,0.000018302215,0.000016828879,0.00001751585,0.00001704187,0.000017438497,0.000017031163,0.000017785047,0.000015232967,0.00001510768,0.000013473064,0.000015740685,0.000017219598,0.000018134107,0.000017009737,0.000017667895,0.00001704564,0.000018479177,0.000017391016,0.000018280218,0.00001732847,0.000018374705,0.00001744986,0.000018042338,0.00001525323,0.000015573067,0.000014155841,0.0000168836,0.000017524955,0.00001808142,0.000017263515,0.000018117997,0.00001715245,0.000018517547,0.000017250695,0.00001835887,0.00001716893,0.000018140196,0.000017477472,0.000018248518,0.000015557645,0.00001572769,0.000014179162,0.000016898515,0.000017531826,0.000018059638,0.000017304475,0.000018130995,0.000017117332,0.000018558825,0.000017291048,0.000018404256,0.00001716076,0.000018133398,0.000017470691,0.000018209612,0.000015530903,0.000015714093,0.000014176038,0.000016903672,0.000017500104,0.00001800928,0.000017293323,0.000018085559,0.00001710294,0.000018543788,0.00001730332,0.000018430426,0.000017104165,0.000018153158,0.000017399245,0.000018126257,0.000015426613,0.000015628115,0.000014040459,0.000016699925,0.0000175073,0.000018028473,0.000017265458,0.000018092356,0.00001710529,0.000018561748,0.000017315157,0.00001845857,0.000017109582,0.000018193521,0.000017421442,0.000018178918,0.000015497273,0.000015702302,0.000014123977,0.000016804343,0.000017508519,0.00001802612,0.00001726946,0.000018088715,0.000017107819,0.000018560755,0.000017323497,0.000018459925,0.000017099272,0.000018211158,0.000017387916,0.000018128712,0.000015438107,0.00001566739,0.000014057353,0.000016714057,0.000017531609,0.00001805468,0.000017272836,0.000018112882,0.000017110804,0.000018568935,0.000017324423,0.000018471179,0.000017096174,0.000018205481,0.000017398746,0.000018146546,0.000015455105,0.000015665106,0.000014068029,0.000016731967,0.00001751034,0.000018034492,0.000017265014,0.00001809529,0.00001710728,0.000018561712,0.00001732191,0.00001846822,0.000017101376,0.000018215986,0.000017436569,0.000018199873,0.000015524445,0.000015722111,0.000014149026,0.000016868198,0.00001754084,0.000018045022,0.000017324439,0.00001811817,0.000017117316,0.000018571503,0.000017308766,0.000018433204,0.000017159991,0.000018152828,0.000017446515,0.000018191111,0.0000155174,0.000015661624,0.000014073611,0.000016790038,0.000017378698,0.0000178441,0.000017292086,0.000018001554,0.00001706192,0.00001856504,0.000017382095,0.000018557552,0.000017197688,0.000018245892,0.000017172662,0.000017339396,0.000014683062,0.000015293475,0.000013478783,0.000014958397,0.000015794065,0.00001741435,0.000016401822,0.000017702505,0.000016395927,0.00001737883,0.000016570015,0.00001784873,0.000016042322,0.000016004014,0.000014060517,0.000015256011,0.000013696512,0.000014927799,0.000013206768,0.00001405986,0.000013662659,0.000015853522,0.000016764901,0.000017620765,0.000016259866,0.000016781058,0.000016346436,0.000016846365,0.000015926715,0.000015953423,0.000014178769,0.000015133621,0.000013767543,0.0000141254195,0.000013463701,0.000013594787,0.000014300156,0.000015188665,0.000015588774,0.000015549203,0.000015399273,0.000015485482,0.000015358222,0.000015865697,0.00001609008,0.000017220862,0.00001651387,0.000017251468,0.000016294762,0.000016038437,0.00001676898,0.000017835577,0.00001787358,0.000016931632,0.000011930607,0.000013326428],[0.000018227976,0.000018343733,0.000015938444,0.000013329644,0.000013841845,0.000013246325,9.788186e-6,0.000011761761,0.000012322323,0.000016131271,0.000014574635,0.000016891812,0.00001585842,0.00002054596,0.000018308743,0.000021365542,0.00001709112,0.000019896186,0.00001613115,0.000019318606,0.000017548404,0.000020286601,0.000017617655,0.00002033813,0.000017056911,0.000020780988,0.000018150025,0.00002182582,0.00001831662,0.000020090416,0.000018232498,0.000020159625,0.00001847095,0.000020631842,0.000018702207,0.000019486764,0.000017471823,0.00001873995,0.00001834809,0.000019981295,0.000016895034,0.000018348212,0.000015066085,0.000018845076,0.000018163357,0.000020128407,0.000017276723,0.000019844965,0.000017638316,0.000020354215,0.00001865751,0.00001996817,0.00001805232,0.000019636283,0.000018616134,0.00002077011,0.000017346361,0.000018877508,0.000015914417,0.00002043483,0.000017869286,0.000019427815,0.000017393106,0.000019985317,0.000017477272,0.000020131536,0.00001848993,0.000019862668,0.000017489177,0.00001934617,0.000018420496,0.000020257468,0.000017905724,0.000019027324,0.000016022233,0.0000204675,0.00001781844,0.0000194127,0.000017443637,0.000019906929,0.000017360559,0.000020085245,0.000018518977,0.000019875344,0.000017485558,0.000019364239,0.00001839385,0.000020249105,0.000017908438,0.000019018471,0.000016013037,0.000020475074,0.000017785063,0.000019353696,0.00001742068,0.000019854107,0.000017329594,0.000020064646,0.000018523233,0.00001988342,0.000017534887,0.00001940661,0.000018364002,0.000020338362,0.000017698587,0.000018842651,0.000015816764,0.000020223535,0.000017797347,0.000019381698,0.000017391265,0.000019872521,0.000017347898,0.000020081396,0.000018544973,0.00001989793,0.00001755406,0.000019401523,0.000018385048,0.00002030503,0.0000178284,0.000018952474,0.000015930269,0.000020337431,0.000017802355,0.000019376597,0.000017403509,0.000019877354,0.000017387301,0.000020111618,0.000018588087,0.000019939322,0.000017620547,0.00001945518,0.000018377912,0.00002037929,0.000017700799,0.000018871928,0.000015839663,0.000020235091,0.000017821278,0.00001939845,0.000017404273,0.000019885185,0.000017362761,0.00002010412,0.00001856851,0.000019926074,0.000017585342,0.000019435949,0.00001837765,0.000020343346,0.000017744624,0.000018890654,0.00001585892,0.000020259613,0.000017810811,0.000019395566,0.00001740409,0.000019890704,0.000017372386,0.000020115971,0.000018572831,0.000019932308,0.000017567843,0.000019422627,0.000018396271,0.000020295349,0.000017870616,0.000018999472,0.000015980117,0.000020439587,0.000017801947,0.000019353643,0.000017445633,0.000019859977,0.000017306375,0.000020078063,0.000018527297,0.00001988782,0.000017492663,0.000019365089,0.000018385223,0.000020225598,0.00001788086,0.000018936866,0.000015906813,0.00002038452,0.000017691973,0.000019079325,0.000017445367,0.000019551488,0.000017094706,0.000020009975,0.000018583196,0.000020020265,0.000017924876,0.000019684281,0.000018450703,0.000020495625,0.000016609947,0.000017760996,0.000014704781,0.00001787515,0.000017353375,0.000019324116,0.000017674416,0.000020178224,0.000018041426,0.000020851201,0.000018405344,0.000020455283,0.000018415756,0.000019620671,0.000016252116,0.000017246797,0.0000139526555,0.000016335667,0.000013283745,0.000015825577,0.000014685624,0.000019312343,0.000018104058,0.000021314705,0.000018045555,0.000020665455,0.000018386205,0.000019954312,0.000017886063,0.000018506935,0.000015594513,0.000015957257,0.000013635011,0.00001534657,0.000012878219,0.000013670517,0.000012432464,0.000015178864,0.000013981226,0.000015089681,0.000012972616,0.000014999236,0.000013134584,0.000014489169,0.000012706695,0.000015932927,0.000013760192,0.000015774105,0.000013489919,0.000016103711,0.000016363374,0.0000178848,0.00001829117,0.000016715683,0.000012451592,0.000013335188],[0.000017443886,0.000019282144,0.000015668198,0.000013589175,0.000014009309,0.0000140645,0.000011375406,0.000012472461,0.000013957008,0.000016161252,0.000017393637,0.000017671367,0.00001989262,0.000020063591,0.000021193597,0.00002177455,0.000019959738,0.000021283708,0.00002013263,0.000020321882,0.000019661562,0.00002020312,0.00002001929,0.000021309846,0.000018772109,0.000021266524,0.000019873543,0.000020912717,0.000019290715,0.000019427998,0.000018960158,0.000021315273,0.000019052724,0.000020968735,0.000018997189,0.000019532403,0.000017994345,0.000019135961,0.000019064031,0.000021132626,0.000018426472,0.000019753785,0.000017379609,0.000019894705,0.000019261432,0.000019060068,0.000018506616,0.00002036635,0.000018725157,0.000020124417,0.000019145124,0.000019512445,0.000018265826,0.000018750765,0.000019069812,0.000021516504,0.000019029083,0.000020457353,0.000018812181,0.000020240108,0.00001825985,0.000018618905,0.00001844868,0.0000190252,0.00001828552,0.000019133771,0.000018637913,0.000018858218,0.000018254,0.000018276523,0.000018758705,0.000021294143,0.00001952177,0.000020790325,0.000019077652,0.000020320582,0.000018273091,0.000018660927,0.000018517052,0.000018877254,0.000018231282,0.000019052615,0.000018559516,0.000018878156,0.00001825045,0.00001828341,0.000018790091,0.000021363545,0.000019530877,0.000020809706,0.000019084768,0.000020320951,0.000018256595,0.00001864529,0.000018501676,0.000018876086,0.000018218037,0.000019056268,0.000018584667,0.000018913872,0.000018246465,0.000018268716,0.000018825373,0.000021434213,0.000019411942,0.000020644535,0.000018899771,0.000020293684,0.00001821232,0.000018670735,0.000018469891,0.000018912933,0.000018227995,0.000019097237,0.00001860366,0.000018936957,0.000018240984,0.000018276767,0.00001880603,0.000021421913,0.000019488121,0.000020751817,0.000018999199,0.000020318761,0.000018232098,0.00001866244,0.000018473133,0.000018952745,0.00001824396,0.000019170573,0.00001862544,0.000018999199,0.000018249875,0.000018280567,0.000018850002,0.000021467376,0.000019437914,0.000020675649,0.000018931069,0.000020318606,0.000018221928,0.000018679979,0.000018477767,0.000018906892,0.0000182366,0.000019115769,0.000018615176,0.000018960682,0.000018247596,0.000018272794,0.000018813671,0.00002142939,0.000019457517,0.00002069792,0.000018956034,0.00002031512,0.000018226048,0.000018676363,0.000018480147,0.000018917135,0.000018239245,0.000019123208,0.000018614039,0.00001895354,0.000018245595,0.000018283114,0.000018791614,0.000021389822,0.000019534229,0.00002080637,0.000019070994,0.000020319538,0.000018253582,0.000018650235,0.000018518887,0.000018791561,0.00001820784,0.000018995395,0.000018523162,0.000018847826,0.000018236968,0.000018259885,0.000018759545,0.000021323161,0.000019516187,0.000020738285,0.000018956776,0.00002020547,0.000018143326,0.000018553252,0.00001847012,0.00001855127,0.000018107494,0.000018710894,0.00001834041,0.000018966342,0.000018266015,0.000018532863,0.000019164578,0.000021708367,0.000018570086,0.000019586852,0.000017406413,0.000019976304,0.000018614219,0.000018887844,0.00001861269,0.000021043676,0.00001924008,0.000021205282,0.000019418218,0.000021461581,0.000020216668,0.000021923175,0.000018834351,0.000018559269,0.000015542622,0.000017033779,0.000015379152,0.00001723241,0.000018369554,0.000020439256,0.000020411226,0.000022237042,0.000019749114,0.000021305803,0.00001991063,0.000021444375,0.0000196529,0.000020915131,0.000017541191,0.000016494385,0.000014215271,0.000015603557,0.000013745384,0.000013401431,0.000013659896,0.000015464364,0.000015311673,0.000014807212,0.000014065721,0.000014770234,0.000013775279,0.000013466435,0.00001334184,0.000014656355,0.000014212695,0.000014389515,0.000014161675,0.000014510533,0.000017133518,0.00001606613,0.000018046123,0.000016539134,0.000012516535,0.000013350023],[0.000018000797,0.000019387484,0.000017330767,0.000014545725,0.000015694639,0.00001564489,0.000012873051,0.000014283978,0.000013642959,0.000017087339,0.000016073103,0.000018728442,0.00001761065,0.000020292639,0.000018367435,0.000020901673,0.000019528363,0.000020440542,0.000019353107,0.00001988071,0.000018185316,0.000019217947,0.000018344783,0.000020572408,0.000017993572,0.000020033785,0.000019058994,0.000021356516,0.000018999997,0.000020095093,0.000019363797,0.000021177415,0.000018991519,0.000020376277,0.000019264775,0.000021303913,0.000018761479,0.000020172874,0.000019134737,0.000019822248,0.000017688077,0.000018815392,0.000017766282,0.00002087221,0.000018590144,0.000019700317,0.000018016151,0.000020182093,0.000019650575,0.000021055219,0.000019810059,0.000021715201,0.000019332041,0.00002048316,0.000019634841,0.00002145882,0.000019209188,0.000020501686,0.00001957619,0.00002179834,0.000018424274,0.000019596044,0.000018403396,0.00002021829,0.00001968432,0.000020539926,0.000019859543,0.000021143996,0.000019439545,0.000020254165,0.000019881923,0.000021520587,0.000019840083,0.000021080012,0.000020052248,0.000022079255,0.000018590994,0.000019803732,0.000018650804,0.000020341542,0.000019821624,0.000020581945,0.000019908086,0.000021128959,0.000019533727,0.00002028337,0.000020007665,0.000021593445,0.000019876938,0.000021091411,0.000020065181,0.000022063132,0.000018574656,0.000019772726,0.000018632298,0.000020329559,0.00001982342,0.00002060284,0.000019933068,0.000021154787,0.000019529294,0.000020310896,0.000020064357,0.000021636444,0.000019790346,0.000020949805,0.00001998928,0.000022106835,0.000018577082,0.000019789137,0.000018623095,0.00002034164,0.0000198532,0.00002063188,0.000019956406,0.000021169337,0.000019536166,0.000020314248,0.000020062082,0.000021634854,0.00001985763,0.00002103525,0.000020045693,0.000022101733,0.000018586494,0.000019791534,0.00001863235,0.00002034878,0.000019890513,0.000020666184,0.000019959318,0.000021208458,0.000019538626,0.000020341367,0.000020090512,0.000021667436,0.000019824649,0.000020996067,0.000020033995,0.000022145492,0.000018595376,0.0000198128,0.000018640632,0.000020348236,0.000019867006,0.000020638414,0.000019961564,0.000021179272,0.000019542,0.000020327523,0.000020068856,0.000021650912,0.000019846366,0.000021026524,0.000020044774,0.000022134744,0.000018594435,0.000019816125,0.000018641522,0.000020353864,0.000019865889,0.000020641013,0.000019959394,0.000021175878,0.000019539708,0.000020315254,0.000020026735,0.000021613141,0.000019892846,0.000021103766,0.000020085226,0.000022094862,0.000018578925,0.000019784742,0.000018647708,0.00002032727,0.00001980156,0.000020559699,0.000019885752,0.000021108033,0.000019549978,0.000020288247,0.000020024674,0.00002160665,0.000019900246,0.0000210697,0.000020045367,0.000022058357,0.000018569324,0.000019740282,0.000018633576,0.000020263398,0.0000196637,0.000020396728,0.000019695002,0.000021057365,0.00001972126,0.000020613534,0.000020580632,0.000021793934,0.000019590887,0.000020190215,0.000019497305,0.000022196911,0.000019103121,0.000020344434,0.000018580025,0.000020847467,0.00001989759,0.000021340169,0.00002036231,0.000022604843,0.00002144227,0.000021918366,0.000019632764,0.000019990177,0.000016525622,0.000017403709,0.000016433669,0.000019678931,0.000018748404,0.00002147497,0.000019446183,0.000021786887,0.000019892772,0.000021687798,0.00002074244,0.000023339911,0.000021241936,0.0000214685,0.000019324889,0.000018636047,0.000015126378,0.00001564604,0.000014064849,0.00001479132,0.00001433924,0.000016026419,0.000014920997,0.000016045398,0.000014104689,0.000015170034,0.000013742999,0.000015135108,0.00001296585,0.000015090617,0.000013347071,0.000015170108,0.000013082555,0.00001494498,0.000015010742,0.000017550628,0.00001764959,0.000015960484,0.0000129441305,0.000013791775],[0.000018751067,0.000028443657,0.000021679072,0.000016210042,0.000014515087,0.000016145661,0.000013114045,0.000014131562,0.000014416671,0.000016117201,0.00001621397,0.00001696242,0.000017314067,0.000018438319,0.000017180066,0.000018951427,0.00001861919,0.000019122315,0.0000172117,0.000017916844,0.000016833776,0.000018473203,0.00001756895,0.000018244551,0.000017254182,0.000018301098,0.000018827814,0.000018476956,0.00001836141,0.000019240519,0.000018608556,0.000018806153,0.000018101417,0.000018468483,0.000019099023,0.000018613347,0.00001822914,0.000019766487,0.000018179438,0.000017887785,0.000016445254,0.000017727609,0.000018675277,0.000018703598,0.000017697423,0.000018867537,0.000017569837,0.000019467912,0.000019453973,0.000019987832,0.000019043606,0.00002003283,0.000018422852,0.000020316573,0.00001860357,0.000020239162,0.00001880063,0.000020009613,0.000019920279,0.000019161453,0.000017800114,0.000019266356,0.000017843538,0.000019622245,0.00001870879,0.00002005659,0.000018862014,0.000020574842,0.000018421008,0.00002070165,0.000018870182,0.000020892046,0.000019434743,0.000020601505,0.00002000923,0.00001929134,0.000018073059,0.00001951051,0.000018017388,0.000019910194,0.000018946257,0.000020222802,0.000018984747,0.000020718398,0.000018524965,0.000020839116,0.000019006322,0.000020959338,0.000019425812,0.000020612018,0.000020005395,0.00001928231,0.00001804225,0.000019484703,0.000017995957,0.000019900588,0.000018955674,0.000020221509,0.000019020845,0.000020726422,0.00001856642,0.000020862104,0.000019020283,0.000020936244,0.000019344896,0.000020544372,0.000020044983,0.000019318164,0.000018052664,0.000019501953,0.00001800248,0.00001992427,0.000019003766,0.000020265448,0.000019071576,0.000020767735,0.00001858417,0.00002088653,0.00001903656,0.000020966974,0.000019389481,0.00002059298,0.000020036843,0.000019318955,0.000018055987,0.000019504483,0.00001800212,0.00001993666,0.000019035799,0.000020295194,0.000019125799,0.00002078194,0.000018620663,0.000020916268,0.000019057214,0.000020974814,0.00001939551,0.000020585127,0.000020061794,0.00001932839,0.000018079023,0.000019530411,0.000018020326,0.000019947178,0.000019016383,0.00002028432,0.000019086241,0.000020787946,0.00001859839,0.000020903426,0.000019047457,0.000020971993,0.00001941609,0.000020599715,0.000020045596,0.000019316396,0.00001807766,0.000019524452,0.000018022698,0.000019938505,0.000019015932,0.00002028165,0.000019092831,0.000020777263,0.000018588265,0.000020885931,0.000019038993,0.000020983596,0.000019469173,0.000020640304,0.000020025074,0.000019274697,0.000018071387,0.000019511235,0.000018024675,0.000019914238,0.000018950017,0.000020227237,0.000019018235,0.000020748574,0.00001857315,0.000020879139,0.000019047638,0.000020994927,0.000019490853,0.000020634478,0.000020033844,0.000019288103,0.000018052715,0.000019516261,0.000018074472,0.000019977846,0.000018960718,0.00002024984,0.000019182864,0.0000209889,0.000019031697,0.000021347088,0.000019403004,0.00002114353,0.000018792529,0.000020244934,0.000020055597,0.000020051715,0.000018209334,0.000019821096,0.000018286042,0.000020675609,0.000020098543,0.000020862899,0.000019993475,0.000021073762,0.000020837248,0.000021165219,0.000018169161,0.000018659093,0.000015700161,0.000017805327,0.00001870672,0.00001964726,0.000018638624,0.000019954008,0.000018865989,0.000021024802,0.000020340494,0.000021021773,0.000020983476,0.000021961781,0.000020642312,0.000020995747,0.000018942175,0.00001913775,0.000015374782,0.000016113005,0.000014877192,0.000015777294,0.00001658304,0.000017168946,0.000015379152,0.000016228032,0.000014085561,0.000015026382,0.0000136026065,0.000014672325,0.000013252604,0.000014650346,0.000013269273,0.000014428292,0.000013387865,0.000014807947,0.000016962938,0.000017529452,0.000018630752,0.000015847732,0.00001302632,0.00001292734],[0.000018342665,0.000030575942,0.000021822361,0.000016315644,0.000015718424,0.000014796964,0.000013300235,0.000013686183,0.000013485714,0.000014878242,0.000014221481,0.000016533299,0.000015505566,0.00001645327,0.000015792575,0.00001711286,0.000016882568,0.000017546277,0.00001601015,0.000016156644,0.000015752517,0.000016299626,0.000016006976,0.000016844358,0.000016254548,0.00001713757,0.000016546834,0.000017097005,0.000016507996,0.000016603106,0.000016275473,0.000017115064,0.000016296332,0.000016865028,0.000016215903,0.000016841836,0.000016056756,0.000016340544,0.000015591122,0.000016487937,0.000015468258,0.00001710449,0.00001664553,0.00001726424,0.000015603171,0.000016117832,0.0000160525,0.000017005375,0.000017450226,0.000017816315,0.000017308568,0.000017315122,0.000016444721,0.000017303715,0.000016880733,0.000017758895,0.000017348379,0.000018457371,0.000017399841,0.000016266304,0.00001611167,0.000016527623,0.00001677317,0.000016757005,0.000016893891,0.00001779134,0.000017375947,0.000017382576,0.000017080758,0.000017343515,0.000017502376,0.000018014174,0.000017750395,0.000018559766,0.000017339926,0.000016307322,0.000016370039,0.000016778016,0.000016971984,0.000016966562,0.000017076392,0.000017915305,0.00001747939,0.000017515333,0.000017104345,0.000017457765,0.000017528382,0.000018074266,0.000017722046,0.000018570654,0.000017343018,0.000016298709,0.000016350317,0.000016761704,0.000016952006,0.000016938156,0.000017064687,0.000017945127,0.000017461114,0.000017552571,0.000017089491,0.000017498336,0.000017501125,0.000018087905,0.000017664963,0.000018578412,0.000017384913,0.000016329233,0.00001634388,0.000016759275,0.000016952086,0.000016943699,0.000017091153,0.000017973694,0.000017487177,0.000017565297,0.000017096108,0.00001749812,0.000017521848,0.000018096945,0.000017700715,0.000018583869,0.000017367778,0.00001631854,0.000016351612,0.000016763095,0.000016951246,0.000016937494,0.000017101815,0.000017997416,0.000017496768,0.000017594117,0.000017105518,0.000017521263,0.000017528617,0.000018116494,0.00001770274,0.000018590854,0.000017371638,0.000016324671,0.000016357788,0.0000167752,0.00001696996,0.000016959719,0.000017108992,0.000017967302,0.000017508284,0.000017570306,0.000017107639,0.000017501223,0.00001753283,0.000018106613,0.000017718381,0.000018587643,0.000017357861,0.000016317248,0.000016360924,0.000016778082,0.00001696996,0.00001695925,0.000017105127,0.000017967935,0.000017511858,0.000017575334,0.0000171149,0.000017502107,0.000017545106,0.000018111017,0.000017764061,0.000018590074,0.000017330189,0.000016301958,0.000016370162,0.00001679364,0.000016983528,0.000016971628,0.000017091006,0.000017931185,0.00001752661,0.000017569017,0.000017135151,0.000017501958,0.00001757235,0.000018127226,0.000017769942,0.000018591882,0.000017363607,0.000016332302,0.000016380016,0.000016841403,0.000017057057,0.00001703901,0.00001714782,0.000018016925,0.000017710947,0.000017833672,0.000017253575,0.000017860835,0.000017682847,0.00001853608,0.000017476139,0.000018665074,0.000017715964,0.00001732804,0.000016061993,0.000016706295,0.00001683506,0.000017295599,0.000017690285,0.000018263281,0.000018058347,0.000018102523,0.000017728116,0.000018322175,0.000016440472,0.0000174015,0.000015779942,0.000017776178,0.000017620914,0.000017766602,0.000016020475,0.000016672713,0.000016973892,0.000017406264,0.000017715794,0.00001880689,0.000018662278,0.00001883356,0.000017919885,0.0000181325,0.000017546965,0.00001839678,0.00001561925,0.000017528098,0.000015786385,0.000018226465,0.000016185375,0.000018111707,0.000015459971,0.000017760742,0.000014656704,0.00001638722,0.000014476381,0.00001558204,0.000013433958,0.000015539124,0.000013457385,0.000014809345,0.000013279819,0.000015645815,0.000015982188,0.000019203217,0.000018029454,0.00001577612,0.0000123886375,0.000012516799],[0.000017362661,0.000027581076,0.000022173766,0.00001533956,0.000016314478,0.000013363884,0.000012092636,0.000012097747,0.000012719098,0.000012135173,0.000012983098,0.00001362256,0.000014164444,0.000013998745,0.000014142712,0.000014748205,0.000014593104,0.000014530211,0.000013826252,0.000013765507,0.000013823141,0.0000141908495,0.000014176404,0.000014787258,0.000014829257,0.000013976468,0.0000136212875,0.000013837345,0.000013906878,0.000014630673,0.000014650373,0.000015290923,0.00001487061,0.000013487952,0.000013200762,0.000013479669,0.000013838414,0.00001434117,0.000014645318,0.000015201693,0.000015204449,0.000014035225,0.000013835604,0.000013662841,0.000013774871,0.000013635233,0.000014399221,0.000015042655,0.00001535339,0.000015085955,0.000014617703,0.000014370892,0.000014672562,0.000014668226,0.000014997407,0.00001571252,0.000015543037,0.0000151552285,0.000014262321,0.000013705907,0.000014341525,0.00001471623,0.0000145737595,0.000014989484,0.000015000538,0.000014630924,0.000015029376,0.000014873318,0.000015228145,0.00001536244,0.00001530817,0.000016046837,0.00001559777,0.000015378888,0.0000142446925,0.000014044584,0.000014559645,0.000015024619,0.000014790785,0.000015209378,0.000015091524,0.000014746602,0.000015087495,0.000014949612,0.000015274687,0.000015401021,0.00001535235,0.000016112928,0.000015604332,0.000015352189,0.000014242342,0.000014020334,0.000014550374,0.000014985683,0.000014755353,0.000015214978,0.000015115794,0.000014739656,0.000015100075,0.000014927601,0.000015266518,0.000015377436,0.0000153613,0.000016134394,0.000015630394,0.000015346774,0.000014258664,0.000014016444,0.000014545587,0.000014982152,0.000014760827,0.000015227142,0.000015130274,0.000014758575,0.00001511379,0.000014939379,0.000015272648,0.000015394045,0.000015369813,0.000016143815,0.000015629576,0.000015358559,0.000014250181,0.000014024306,0.000014550443,0.000014985753,0.000014756098,0.000015237834,0.000015146241,0.00001476974,0.000015131428,0.00001494468,0.000015280079,0.000015403224,0.000015385034,0.00001615598,0.000015636686,0.00001536291,0.0000142447325,0.000014040392,0.000014555397,0.000015015022,0.000014786032,0.000015228289,0.000015123349,0.000014777152,0.000015120769,0.000014963347,0.000015288138,0.0000154157,0.000015378244,0.000016148771,0.000015625776,0.000015362895,0.000014241662,0.000014040512,0.000014558562,0.000015015524,0.000014784411,0.000015228581,0.000015125296,0.000014778476,0.000015124374,0.000014964361,0.0000152897,0.000015421509,0.000015379108,0.000016136011,0.0000156163,0.000015375252,0.000014230748,0.000014048776,0.000014570383,0.000015041163,0.000014808992,0.000015216922,0.000015100002,0.000014790573,0.000015134473,0.000015007936,0.000015318656,0.000015464617,0.000015395999,0.00001614149,0.000015620144,0.000015405134,0.000014269941,0.000014068055,0.000014599577,0.00001509518,0.000014908238,0.000015274774,0.000015153508,0.000014947189,0.000015364405,0.00001523025,0.000015583957,0.000015604837,0.000015652457,0.000016459438,0.00001598786,0.000015545824,0.000014781858,0.000014189794,0.000014462195,0.000014624493,0.000014963161,0.000015620366,0.00001566666,0.000015620635,0.00001547828,0.000015392401,0.000015287482,0.000016064,0.000015876443,0.000015961474,0.000015818152,0.00001507639,0.000014788246,0.000013734601,0.000014366903,0.000014660913,0.000015163816,0.000015238487,0.000015832098,0.000015805577,0.000015831238,0.00001598626,0.000015753209,0.00001616933,0.000015464231,0.000016288175,0.000015964837,0.000015722382,0.000015841491,0.000015186537,0.000015523425,0.00001548513,0.000015987738,0.000017101653,0.000017091528,0.000016555197,0.000016076185,0.00001530398,0.000014769656,0.000014832271,0.000014930733,0.000014460112,0.000013534518,0.000014265914,0.000016595697,0.000016835493,0.000016141874,0.000013520675,0.000011380875,0.000011561727],[0.00001797817,0.00002098858,0.000015147251,0.000012711301,0.000014051242,0.000012757827,0.000011634473,0.000011206718,0.000010881108,0.000011350319,0.000010682339,0.000012599748,0.00001227041,0.000013770787,0.000012916153,0.000013593581,0.000012814417,0.000013279931,0.000012262421,0.000013095137,0.000012647214,0.0000132406285,0.000013115383,0.000013197074,0.000013042268,0.000012396958,0.000011309261,0.000012218015,0.000012194083,0.000013249886,0.000013536222,0.00001375581,0.000013173145,0.0000120045515,0.000010851657,0.000012056571,0.000011951698,0.000012700334,0.000012842334,0.0000133581625,0.000013255486,0.0000123897125,0.000010992731,0.000012116381,0.000011962679,0.000012906585,0.000012455961,0.0000129396385,0.000012522829,0.00001319272,0.000012383157,0.000013475647,0.000013252187,0.000013891728,0.000013043387,0.00001317562,0.000012890606,0.000013258382,0.000012089651,0.000013169566,0.0000129549735,0.000013859996,0.000013211304,0.000013180434,0.000012826129,0.0000135312275,0.000012976749,0.000013424353,0.000014134002,0.000014412161,0.000013512233,0.000013538946,0.000012930658,0.000013329861,0.000012211703,0.000013169716,0.000013249661,0.000013998878,0.00001341725,0.000013351068,0.000012924666,0.00001357437,0.000013023711,0.000013470828,0.000014134055,0.000014434156,0.000013521526,0.000013524905,0.000012929117,0.000013317255,0.000012195363,0.000013180873,0.000013207246,0.000013990671,0.000013376353,0.0000133208,0.00001290106,0.000013575561,0.000013015331,0.000013475582,0.000014080511,0.000014428843,0.000013511048,0.000013517272,0.000012941871,0.000013329949,0.000012193932,0.000013193349,0.000013195086,0.000013992778,0.000013377514,0.000013327394,0.000012906338,0.000013578177,0.000013016845,0.000013475376,0.0000141030205,0.000014434114,0.000013522893,0.000013529911,0.000012944575,0.000013331182,0.000012199748,0.000013189223,0.000013208393,0.000013997303,0.000013372654,0.000013328118,0.000012907422,0.000013589355,0.000013016349,0.000013483257,0.000014095477,0.000014443574,0.00001352853,0.000013545391,0.0000129470445,0.000013338483,0.0000122043675,0.00001317567,0.000013235403,0.000014000199,0.000013407566,0.000013351909,0.000012930053,0.00001358074,0.000013026146,0.000013482716,0.000014128046,0.000014444469,0.000013533086,0.000013545352,0.000012944266,0.000013335392,0.000012204635,0.000013174426,0.000013237484,0.000014001441,0.000013405048,0.0000133513995,0.000012930005,0.000013584743,0.000013027166,0.000013483733,0.000014130243,0.000014447569,0.000013533706,0.000013549447,0.000012938083,0.00001333206,0.00001220737,0.000013161856,0.0000132584455,0.000014010324,0.000013431767,0.000013372093,0.00001295202,0.000013585325,0.000013041558,0.000013489495,0.000014179473,0.000014465588,0.0000135547325,0.000013569244,0.000012945736,0.0000133453395,0.000012222736,0.000013193488,0.000013271942,0.000014055449,0.000013480441,0.00001345605,0.000013041696,0.000013645899,0.000013174891,0.0000136450535,0.000014191376,0.000014573788,0.0000136775325,0.000013634777,0.000013133695,0.000013510828,0.000012274798,0.000013324434,0.000013075894,0.00001395247,0.000013102095,0.000013351845,0.00001289074,0.000013615197,0.000012804327,0.00001368082,0.000013528544,0.000013759011,0.000013090043,0.000013144509,0.000013302773,0.000013202071,0.000011793739,0.000013119374,0.0000128687425,0.000014050371,0.000013561108,0.000013914731,0.000013530737,0.000013472833,0.000013670622,0.000013848539,0.000014838751,0.000014725494,0.000013732164,0.000013614728,0.000013213382,0.00001395907,0.000012491495,0.000013841463,0.000012852357,0.00001456295,0.000013444838,0.000015157757,0.00001513521,0.000015725156,0.000014230232,0.000014419242,0.000013797998,0.000014182637,0.000013176211,0.0000139201475,0.000013572299,0.000014358207,0.000015008566,0.000016556478,0.00001483128,0.000013121113,0.000010764797,0.0000108953545],[0.000015876005,0.000019989606,0.000014851831,0.000013292373,0.000013433266,0.00001158052,0.000012338374,9.946508e-6,0.000011307772,9.867091e-6,0.000011098987,0.00001090075,0.000012919478,0.00001220737,0.000013299969,0.000011866281,0.000013110031,0.0000115582325,0.000012648324,0.000011393449,0.000012358205,0.0000112952275,0.000012897603,0.000011184554,0.000012195293,0.000010064032,0.000010869203,0.000010309688,0.000011634638,0.000011156909,0.000012977058,0.000011658897,0.000012137476,9.835992e-6,0.000010404311,0.000010142548,0.000011317202,0.000010526269,0.000012117156,0.000011051141,0.000011984581,0.000010015193,0.00001068131,0.000010369779,0.000011652216,0.000011175043,0.000012371801,0.0000108115155,0.000012376781,0.000011338299,0.000012742711,0.00001215688,0.00001362178,0.000012220276,0.0000131741135,0.000011185343,0.000012345872,0.00001094119,0.000012098186,0.0000115462335,0.000013059817,0.00001203361,0.00001314941,0.000011679595,0.000013271309,0.000012116832,0.000013058471,0.000012505393,0.0000138267005,0.0000125936085,0.000013608497,0.000011573586,0.000012672157,0.000011272564,0.000012401487,0.000011739216,0.000013190644,0.000012111045,0.0000132523255,0.00001180193,0.000013345785,0.0000121684325,0.000013088894,0.00001252622,0.000013820214,0.000012591747,0.000013586557,0.000011542678,0.000012618939,0.000011229635,0.000012351655,0.000011703032,0.000013164254,0.000012089258,0.000013228751,0.000011772511,0.000013318285,0.000012150332,0.00001307047,0.000012494855,0.000013813678,0.000012576121,0.0000135805585,0.000011524331,0.000012600288,0.000011214118,0.00001233901,0.000011696772,0.000013165232,0.000012094228,0.000013232259,0.0000117793525,0.000013327877,0.0000121585035,0.000013080159,0.000012513111,0.000013819252,0.000012593284,0.000013590924,0.0000115428975,0.000012618313,0.000011231733,0.00001235242,0.000011707497,0.000013169792,0.000012097724,0.000013237864,0.000011781532,0.000013336104,0.000012161426,0.000013082641,0.000012513146,0.000013827373,0.000012601633,0.000013605383,0.0000115554985,0.000012636015,0.00001125072,0.000012368829,0.00001172296,0.000013180194,0.000012109658,0.000013252136,0.000011807018,0.0000133569265,0.000012170986,0.0000130934,0.000012536593,0.000013827492,0.000012610398,0.000013607615,0.000011561749,0.000012640993,0.000011253305,0.00001237081,0.00001172249,0.00001317944,0.000012108147,0.000013249988,0.000011805375,0.000013354659,0.000012171972,0.000013093076,0.000012535112,0.000013828243,0.000012611672,0.00001360585,0.000011566667,0.000012647299,0.000011263291,0.000012381173,0.00001173184,0.0000131895995,0.000012119536,0.000013265515,0.000011831703,0.000013387853,0.000012179184,0.000013117785,0.000012580488,0.000013842096,0.000012640449,0.000013623391,0.00001158896,0.000012669825,0.000011280619,0.000012394653,0.000011741869,0.0000132135965,0.000012157947,0.000013310666,0.000011921497,0.000013506615,0.000012246993,0.000013237257,0.000012705858,0.000013951618,0.00001274451,0.000013766624,0.000011645051,0.000012714525,0.000011269609,0.000012308793,0.000011672825,0.000013127634,0.000012086906,0.000013069435,0.000011589788,0.000013043175,0.000012008217,0.000013127834,0.000012351831,0.000013644637,0.0000122735455,0.000012969252,0.0000108479735,0.000012207149,0.000010695357,0.000011613897,0.000011337099,0.000013093887,0.000012469107,0.000013659962,0.000012402149,0.000013920983,0.000012562708,0.000013416264,0.000013170181,0.0000144027645,0.000012848533,0.000013789698,0.00001181363,0.000013130813,0.000011578288,0.000012914402,0.000012023525,0.000014090895,0.000013029077,0.000014421512,0.000012697779,0.000014941231,0.000012874647,0.000013878116,0.000012045711,0.000013266375,0.0000116405545,0.000013161731,0.000012091011,0.000012913602,0.000011696003,0.000013282833,0.0000139801205,0.000014373784,0.000010635844,0.000010028869,0.000010602769],[0.000015920821,0.00001881645,0.00002015576,0.000014449332,0.000014282807,0.000015503008,0.000013824486,0.000013693965,0.0000119776105,0.000013029289,0.000012656155,0.000014193476,0.000012912051,0.000014467754,0.000014177687,0.000014969755,0.000013277753,0.000014150591,0.000013944142,0.000014946262,0.000013180495,0.000013603866,0.000013266856,0.000013381152,0.000012730262,0.000012934098,0.000012681019,0.00001315661,0.000012189153,0.00001298035,0.000013024145,0.000013406262,0.0000125461265,0.000012566291,0.00001237841,0.000013372629,0.000012343705,0.00001280164,0.000012745094,0.000012977603,0.000012396994,0.000012777979,0.000012472199,0.00001354362,0.000012739006,0.000013711124,0.000013416738,0.000014055865,0.000012497083,0.00001370081,0.000013540754,0.0000151813965,0.000013687632,0.000014693314,0.0000140896445,0.000014505276,0.000012651678,0.00001355997,0.000013273018,0.000014751159,0.000013297039,0.0000145797085,0.000014093421,0.000014918877,0.0000130943,0.000014209511,0.000013978307,0.000015386708,0.000013893795,0.000014945506,0.000014498997,0.000014881236,0.000012869516,0.00001377742,0.000013497319,0.000014947445,0.000013445147,0.000014672228,0.000014202141,0.000014961634,0.000013141225,0.000014217278,0.000013999732,0.00001535607,0.000013874569,0.000014913515,0.000014474724,0.0000148269955,0.000012832381,0.000013729389,0.00001346026,0.00001490288,0.000013412235,0.000014637874,0.000014172416,0.0000149299085,0.00001311592,0.00001419269,0.000013987828,0.00001534973,0.000013870891,0.000014900038,0.0000144536325,0.000014807311,0.000012818365,0.00001371447,0.000013447711,0.000014892537,0.000013405878,0.0000146365755,0.000014172119,0.000014933097,0.00001312095,0.000014197509,0.000013989189,0.000015346275,0.00001387273,0.000014905367,0.000014468417,0.000014822909,0.000012830778,0.000013728407,0.000013459772,0.000014904742,0.000013413898,0.000014642371,0.000014178783,0.000014937668,0.000013122928,0.000014200976,0.00001399019,0.000015351223,0.000013874715,0.000014913414,0.000014476256,0.000014839613,0.000012840228,0.000013744965,0.000013473951,0.000014922377,0.000013430244,0.000014659486,0.000014197361,0.000014956899,0.000013140221,0.000014214606,0.000013990137,0.000015347856,0.000013875098,0.0000149173975,0.000014488313,0.000014848036,0.000012846316,0.000013749435,0.000013476354,0.000014924896,0.00001343023,0.00001465975,0.000014196318,0.000014956171,0.000013139707,0.000014215162,0.000013993204,0.000015348749,0.000013875694,0.000014917611,0.000014489031,0.000014850105,0.000012851855,0.0000137548,0.000013484504,0.000014934663,0.000013442647,0.0000146750535,0.000014211895,0.0000149820235,0.000013155908,0.000014234439,0.0000139874555,0.000015354328,0.000013880604,0.000014935275,0.0000145146305,0.000014876696,0.000012872118,0.0000137750685,0.000013490125,0.000014940575,0.000013448199,0.000014695585,0.0000142352,0.0000150361575,0.000013211403,0.000014294471,0.0000139835865,0.000015352629,0.000013907157,0.000014990528,0.000014591963,0.000014930549,0.000012893888,0.00001375703,0.000013431472,0.000014783395,0.000013275031,0.000014412891,0.000014013557,0.000014638125,0.000013021626,0.000014002976,0.000013855475,0.0000151271715,0.000013652799,0.000014453716,0.000013915051,0.000013852067,0.000012532076,0.00001323688,0.000012896705,0.000014392,0.000013296241,0.000014703897,0.000014371097,0.000015401036,0.000013601777,0.0000146033235,0.000014129595,0.000015326605,0.000013885555,0.000015045108,0.000014693958,0.000015217112,0.000013186896,0.000014240155,0.000013604462,0.000015365182,0.000013797852,0.000015774316,0.000014814119,0.00001593972,0.000014767896,0.000016465357,0.000014728808,0.000016044021,0.000013911866,0.000015012932,0.000013892906,0.000013486626,0.000012527558,0.000012958322,0.000014185844,0.000015506748,0.000014671808,0.000013477292,0.000010718198,0.000012912235],[0.000010848802,0.000014494989,0.00001730073,0.000017205923,0.00001658527,0.000016904865,0.000016725857,0.000015989994,0.000016049546,0.000016613621,0.00001655635,0.000016886208,0.00001594769,0.000016680602,0.00001675405,0.000017239774,0.00001659804,0.000017096369,0.00001731088,0.000017084489,0.000016156737,0.00001641226,0.000015030367,0.000015625492,0.000014599897,0.00001565098,0.000015588595,0.000016055914,0.000014709957,0.000015448946,0.000014280914,0.00001514676,0.000014165281,0.000015286725,0.000015478958,0.000016176778,0.000015092588,0.000015774796,0.000014617843,0.000015310696,0.00001426447,0.000015381118,0.000015474337,0.000016394051,0.000015691854,0.000016640593,0.000015893545,0.00001640298,0.000016249976,0.000017076165,0.000016919625,0.00001733399,0.000016451058,0.000017277844,0.000017094868,0.000016688891,0.00001634924,0.000016754162,0.000016934604,0.000017223967,0.00001680431,0.000017588278,0.000016966142,0.00001711043,0.000016856635,0.000016976468,0.000016831062,0.00001730705,0.000016516342,0.000017305052,0.000017285327,0.000016997528,0.000016641674,0.000016990009,0.000017091837,0.000017359915,0.00001683164,0.000017696073,0.000017085042,0.000017161841,0.000016860396,0.000016974687,0.000016837163,0.000017299211,0.000016523196,0.000017316263,0.000017298618,0.000016946964,0.000016594828,0.000016950115,0.00001704808,0.00001730804,0.000016836488,0.00001765651,0.000017053038,0.0000171361,0.000016857084,0.000016983124,0.00001683779,0.000017298782,0.000016518248,0.0000173089,0.00001729705,0.000016930453,0.000016579972,0.00001693512,0.000017034818,0.000017298486,0.000016837628,0.000017655195,0.000017052436,0.00001714002,0.000016856056,0.00001697323,0.00001682838,0.00001729164,0.000016515743,0.000017306093,0.000017294658,0.000016944603,0.000016594446,0.000016948903,0.000017044504,0.000017307397,0.000016836007,0.000017661847,0.000017060212,0.000017144075,0.000016853646,0.000016970074,0.000016827034,0.000017291526,0.00001651428,0.000017304046,0.000017292483,0.000016962082,0.00001661093,0.00001696551,0.000017056813,0.0000173232,0.000016834128,0.000017679711,0.000017079275,0.000017162267,0.00001685371,0.000016957634,0.000016819027,0.000017282013,0.00001651338,0.000017304623,0.000017292565,0.000016965672,0.000016615033,0.000016968423,0.000017058861,0.000017325083,0.000016834627,0.000017679997,0.000017078362,0.000017160417,0.000016856378,0.000016962436,0.000016823007,0.000017287635,0.000016515649,0.000017307511,0.000017293636,0.000016967113,0.000016617569,0.000016973489,0.00001706568,0.000017339016,0.000016838127,0.000017697608,0.00001709526,0.000017183163,0.000016861057,0.000016946931,0.000016817072,0.000017280085,0.000016523212,0.000017314562,0.000017297893,0.000016984597,0.000016637008,0.000016981796,0.00001706192,0.00001733338,0.000016859865,0.000017713346,0.00001711451,0.000017229799,0.000016886948,0.000016910542,0.000016791832,0.000017258824,0.000016540254,0.000017337677,0.000017308568,0.000017050308,0.000016706408,0.000016981778,0.000016967388,0.000017047332,0.000016780818,0.00001740663,0.00001682551,0.000016850978,0.0000167689,0.000017005439,0.00001690327,0.00001729245,0.000016470933,0.000017321168,0.0000167234,0.00001632064,0.000015705553,0.000016302254,0.00001640029,0.000016836086,0.000016754735,0.000017639091,0.000017233051,0.000017695465,0.000016913526,0.0000166102,0.000016556556,0.000016878947,0.000016459328,0.000017235254,0.000017257556,0.000017291328,0.00001693953,0.000017318838,0.000017224507,0.00001760788,0.000017442522,0.000017964903,0.000017424982,0.000018527579,0.000017830016,0.000018064737,0.00001773872,0.00001816909,0.000017016551,0.000017592238,0.000016607586,0.000015946624,0.000013940884,0.000014080028,0.000014718236,0.000016303964,0.000014678847,0.00001638894,0.000013874185,0.000010469515]]]},"check_failures":[],"metadata":{"last_model":"{\"model_name\":\"pt-unet\",\"model_sha\":\"dfcd4b092e05564c36d28f1dfa7293f4233a384d81fe345c568b6bb68cafb0c8\"}","pipeline_version":"","elapsed":[76678829,125625950],"dropped":[],"partition":"5299bd913d0c"}}]
!curl -X POST HOSTNAME:8080/pipelines/pt-unet \
    -H "Content-Type:application/vnd.apache.arrow.file" \
    --data-binary @./data/inferencefile.arrow
[{"time":1709827739399,"in":{"input":[-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.8025668,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80285674,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8025668,-0.80285674,-0.80247015,-0.80247015,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80247015,-0.8025668,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.80285674,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80285674,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.80247015,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8025668,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80247015,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.80285674,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80247015,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80247015,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80247015,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80247015,-0.8025668,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80247015,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8023735,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80247015,-0.8025668,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8025668,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.80247015,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.80247015,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8025668,-0.80247015,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8025668,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80285674,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80247015,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80247015,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.8025668,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80247015,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80247015,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80247015,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8025668,-0.8025668,-0.80285674,-0.8025668,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80247015,-0.80266345,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8025668,-0.8023735,-0.8025668,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80266345,-0.80227685,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80247015,-0.80208355,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80247015,-0.80227685,-0.80266345,-0.8025668,-0.8025668,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8025668,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80247015,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8025668,-0.8027601,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8025668,-0.80266345,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80266345,-0.8023735,-0.8025668,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80247015,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8025668,-0.80227685,-0.8023735,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.80285674,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80247015,-0.80266345,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8023735,-0.80218023,-0.80208355,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8025668,-0.80266345,-0.8025668,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80247015,-0.80247015,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.80189025,-0.80227685,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.80247015,-0.8025668,-0.8025668,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8019869,-0.80131036,-0.8009237,-0.8006338,-0.8006338,-0.8008271,-0.80131036,-0.80208355,-0.8025668,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80247015,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80227685,-0.8025668,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80208355,-0.8017936,-0.80169696,-0.80227685,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8023735,-0.801407,-0.8001505,-0.7995705,-0.7993772,-0.7992805,-0.7992805,-0.7993772,-0.7994738,-0.7995705,-0.7999572,-0.8005371,-0.8008271,-0.801407,-0.80227685,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80247015,-0.8023735,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80218023,-0.80227685,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.801117,-0.8008271,-0.80024713,-0.80208355,-0.8023735,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8025668,-0.8025668,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80227685,-0.8012137,-0.79986054,-0.7993772,-0.7995705,-0.7991839,-0.7991839,-0.7997638,-0.7997638,-0.7995705,-0.7996672,-0.7996672,-0.7997638,-0.7995705,-0.7995705,-0.80024713,-0.801117,-0.80169696,-0.8023735,-0.8027601,-0.8027601,-0.80285674,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8019869,-0.80189025,-0.80150366,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8016003,-0.8008271,-0.801117,-0.80208355,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80247015,-0.8025668,-0.80285674,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80247015,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80247015,-0.80247015,-0.8025668,-0.8025668,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.80247015,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80218023,-0.80150366,-0.8006338,-0.7995705,-0.7994738,-0.7997638,-0.7991839,-0.79841065,-0.79792744,-0.7969609,-0.796091,-0.796381,-0.7973475,-0.7975408,-0.7977341,-0.79821736,-0.79812074,-0.79831403,-0.7994738,-0.8004405,-0.8012137,-0.80208355,-0.80247015,-0.80247015,-0.8023735,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80247015,-0.8025668,-0.8017936,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.801117,-0.7999572,-0.8007304,-0.80131036,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80247015,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80247015,-0.80247015,-0.80247015,-0.8023735,-0.8023735,-0.80247015,-0.80247015,-0.80247015,-0.80247015,-0.80247015,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.8023735,-0.80247015,-0.8023735,-0.80169696,-0.8008271,-0.7997638,-0.7992805,-0.7989906,-0.79792744,-0.7964776,-0.79541445,-0.7947379,-0.7929014,-0.79116166,-0.79096836,-0.7906784,-0.7904851,-0.79164493,-0.7931914,-0.7943513,-0.79522115,-0.7959944,-0.79763746,-0.7990872,-0.7997638,-0.8006338,-0.80169696,-0.80247015,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8025668,-0.8025668,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.80227685,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80150366,-0.8005371,-0.8017936,-0.801117,-0.8023735,-0.8023735,-0.8019869,-0.80227685,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80247015,-0.8025668,-0.80266345,-0.8027601,-0.80247015,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.80285674,-0.80247015,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80247015,-0.8025668,-0.80247015,-0.80266345,-0.80266345,-0.80247015,-0.8023735,-0.80208355,-0.8019869,-0.80189025,-0.801407,-0.801407,-0.80169696,-0.80169696,-0.80169696,-0.80189025,-0.80208355,-0.8023735,-0.8025668,-0.80247015,-0.8023735,-0.80247015,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.8025668,-0.80247015,-0.80227685,-0.80189025,-0.801117,-0.8001505,-0.7992805,-0.79860395,-0.79783076,-0.7959944,-0.79348135,-0.7921282,-0.7918382,-0.79125834,-0.79154825,-0.794158,-0.7966709,-0.79541445,-0.7922248,-0.79096836,-0.79106504,-0.7922248,-0.7947379,-0.7958977,-0.79522115,-0.796381,-0.79821736,-0.7990872,-0.8001505,-0.801117,-0.80189025,-0.8025668,-0.8025668,-0.8023735,-0.8025668,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80247015,-0.80247015,-0.8025668,-0.8025668,-0.8025668,-0.80247015,-0.8025668,-0.8025668,-0.80218023,-0.80208355,-0.80247015,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.80247015,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.80247015,-0.80227685,-0.8017936,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80150366,-0.79812074,-0.7991839,-0.7997638,-0.80189025,-0.80227685,-0.8027601,-0.8025668,-0.8023735,-0.8023735,-0.80247015,-0.8025668,-0.80266345,-0.8027601,-0.80247015,-0.80247015,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80247015,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.80285674,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80247015,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8025668,-0.80247015,-0.8025668,-0.80227685,-0.80208355,-0.80218023,-0.80189025,-0.8017936,-0.80169696,-0.80131036,-0.8009237,-0.8006338,-0.8005371,-0.8005371,-0.8005371,-0.8005371,-0.8008271,-0.8010204,-0.801117,-0.801407,-0.80169696,-0.8019869,-0.80208355,-0.80189025,-0.80169696,-0.80189025,-0.80208355,-0.80208355,-0.80218023,-0.80227685,-0.80227685,-0.8023735,-0.80247015,-0.80218023,-0.80169696,-0.80131036,-0.8007304,-0.7993772,-0.79792744,-0.79705757,-0.7958977,-0.79357797,-0.7920315,-0.7924181,-0.793288,-0.7940613,-0.796381,-0.7997638,-0.8012137,-0.801407,-0.80189025,-0.80150366,-0.7992805,-0.7955111,-0.7930947,-0.7945446,-0.79580104,-0.79425466,-0.794158,-0.7958977,-0.7971542,-0.79821736,-0.7993772,-0.8001505,-0.8008271,-0.80150366,-0.80208355,-0.8023735,-0.80247015,-0.80247015,-0.8023735,-0.8025668,-0.8025668,-0.8025668,-0.80247015,-0.80247015,-0.8025668,-0.8025668,-0.80247015,-0.8023735,-0.80227685,-0.8019869,-0.80189025,-0.80189025,-0.80189025,-0.80189025,-0.8019869,-0.80208355,-0.80218023,-0.80218023,-0.80208355,-0.8019869,-0.80227685,-0.80247015,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80247015,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.80247015,-0.80247015,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80247015,-0.8025668,-0.80266345,-0.8025668,-0.80247015,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.8025668,-0.80247015,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.801407,-0.8019869,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8001505,-0.79725087,-0.7988939,-0.8008271,-0.801407,-0.8017936,-0.8019869,-0.80218023,-0.8023735,-0.8027601,-0.8025668,-0.80227685,-0.8023735,-0.8025668,-0.8025668,-0.8023735,-0.8023735,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80247015,-0.80247015,-0.8025668,-0.8025668,-0.80247015,-0.8025668,-0.80247015,-0.80247015,-0.8025668,-0.80247015,-0.8025668,-0.8025668,-0.8025668,-0.8025668,-0.80247015,-0.8023735,-0.8023735,-0.80227685,-0.80218023,-0.8023735,-0.8023735,-0.80208355,-0.80189025,-0.801407,-0.8008271,-0.80024713,-0.79986054,-0.7997638,-0.7995705,-0.7995705,-0.7995705,-0.7992805,-0.7992805,-0.7994738,-0.7994738,-0.7997638,-0.80024713,-0.8003438,-0.80024713,-0.80024713,-0.8003438,-0.8004405,-0.8003438,-0.8005371,-0.8006338,-0.8005371,-0.8006338,-0.8008271,-0.8010204,-0.8008271,-0.80024713,-0.7993772,-0.79812074,-0.7971542,-0.7966709,-0.7945446,-0.79077506,-0.7893253,-0.79106504,-0.793868,-0.7968642,-0.79986054,-0.8019869,-0.80218023,-0.8010204,-0.80005383,-0.8003438,-0.8016003,-0.80247015,-0.80169696,-0.7987973,-0.79522115,-0.7936747,-0.7939647,-0.7931914,-0.7929014,-0.79483455,-0.7966709,-0.7975408,-0.7987973,-0.7996672,-0.8001505,-0.8010204,-0.8016003,-0.80189025,-0.8019869,-0.80208355,-0.80218023,-0.80227685,-0.8023735,-0.8023735,-0.80247015,-0.80247015,-0.80218023,-0.8019869,-0.8017936,-0.80169696,-0.8016003,-0.801407,-0.8012137,-0.801117,-0.801117,-0.801117,-0.8012137,-0.801407,-0.80169696,-0.8017936,-0.8017936,-0.80169696,-0.8017936,-0.80218023,-0.80247015,-0.80247015,-0.8025668,-0.8025668,-0.8025668,-0.80266345,-0.80247015,-0.80247015,-0.80266345,-0.8025668,-0.80247015,-0.80247015,-0.8023735,-0.8025668,-0.80266345,-0.80247015,-0.80227685,-0.8025668,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.80247015,-0.8025668,-0.8023735,-0.8023735,-0.80247015,-0.80247015,-0.8025668,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.80247015,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.80266345,-0.80247015,-0.80247015,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80247015,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.80247015,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8025668,-0.80285674,-0.8023735,-0.8023735,-0.80266345,-0.80218023,-0.8016003,-0.80169696,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80131036,-0.8008271,-0.80227685,-0.8025668,-0.8025668,-0.8027601,-0.8023735,-0.80227685,-0.80227685,-0.8023735,-0.8025668,-0.8023735,-0.80218023,-0.80247015,-0.80266345,-0.8025668,-0.8023735,-0.8025668,-0.80285674,-0.80285674,-0.8025668,-0.80247015,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.80247015,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.80247015,-0.8025668,-0.80266345,-0.8025668,-0.8023735,-0.80189025,-0.8010204,-0.80005383,-0.7993772,-0.79870063,-0.79812074,-0.79792744,-0.79802406,-0.79792744,-0.79802406,-0.79812074,-0.79812074,-0.79802406,-0.79792744,-0.79792744,-0.79812074,-0.79812074,-0.79821736,-0.79850733,-0.79841065,-0.79841065,-0.79850733,-0.79850733,-0.79850733,-0.79850733,-0.79812074,-0.79802406,-0.79860395,-0.7990872,-0.7988939,-0.79850733,-0.79783076,-0.7966709,-0.7953178,-0.793868,-0.79145163,-0.7889387,-0.789132,-0.7924181,-0.7965743,-0.80005383,-0.80150366,-0.8012137,-0.80131036,-0.80169696,-0.80169696,-0.80150366,-0.80169696,-0.8017936,-0.8017936,-0.80189025,-0.79986054,-0.7957044,-0.7929014,-0.7918382,-0.7917416,-0.7928048,-0.7939647,-0.79502785,-0.7968642,-0.79841065,-0.7995705,-0.8005371,-0.8005371,-0.79986054,-0.7997638,-0.80005383,-0.80005383,-0.7999572,-0.80005383,-0.8001505,-0.8003438,-0.8005371,-0.8003438,-0.7999572,-0.7997638,-0.7995705,-0.7993772,-0.7989906,-0.7987973,-0.79870063,-0.7988939,-0.7991839,-0.7993772,-0.7991839,-0.7993772,-0.7999572,-0.8003438,-0.8006338,-0.8010204,-0.8012137,-0.801407,-0.80169696,-0.80189025,-0.8019869,-0.80208355,-0.80218023,-0.80227685,-0.80227685,-0.8023735,-0.8023735,-0.80218023,-0.80218023,-0.80227685,-0.80218023,-0.80227685,-0.80227685,-0.80218023,-0.80227685,-0.80218023,-0.80208355,-0.80227685,-0.80247015,-0.80247015,-0.8023735,-0.8023735,-0.80218023,-0.80218023,-0.8023735,-0.80247015,-0.8023735,-0.8023735,-0.80247015,-0.8025668,-0.80247015,-0.8025668,-0.80266345,-0.80266345,-0.80247015,-0.8025668,-0.8023735,-0.8023735,-0.8027601,-0.8027601,-0.80247015,-0.8023735,-0.8027601,-0.8025668,-0.8025668,-0.8025668,-0.80247015,-0.80266345,-0.8027601,-0.8023735,-0.80247015,-0.80266345,-0.80247015,-0.8025668,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80247015,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8025668,-0.80247015,-0.80266345,-0.8017936,-0.801117,-0.80208355,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80218023,-0.8019869,-0.80189025,-0.8023735,-0.80189025,-0.8025668,-0.8025668,-0.8025668,-0.80247015,-0.80266345,-0.8023735,-0.80266345,-0.8027601,-0.80247015,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80247015,-0.8025668,-0.80266345,-0.80247015,-0.80266345,-0.8027601,-0.80266345,-0.80247015,-0.80247015,-0.80266345,-0.8025668,-0.8023735,-0.80247015,-0.80247015,-0.8023735,-0.8023735,-0.8023735,-0.80247015,-0.80266345,-0.80266345,-0.80247015,-0.8025668,-0.8027601,-0.8027601,-0.8025668,-0.80247015,-0.8025668,-0.80247015,-0.80247015,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80247015,-0.8025668,-0.8025668,-0.8025668,-0.8025668,-0.8025668,-0.80247015,-0.8025668,-0.8025668,-0.80247015,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.80247015,-0.80218023,-0.80169696,-0.8006338,-0.7990872,-0.79821736,-0.79802406,-0.79792744,-0.79792744,-0.79792744,-0.79783076,-0.7977341,-0.79802406,-0.79812074,-0.79792744,-0.79792744,-0.79812074,-0.79802406,-0.79802406,-0.79831403,-0.79841065,-0.79831403,-0.79841065,-0.79841065,-0.79841065,-0.79850733,-0.7987973,-0.7987973,-0.79850733,-0.79850733,-0.79870063,-0.79870063,-0.79831403,-0.79812074,-0.79831403,-0.79812074,-0.7966709,-0.7957044,-0.79502785,-0.7927081,-0.7904851,-0.7920315,-0.7964776,-0.7997638,-0.8005371,-0.8008271,-0.80131036,-0.801117,-0.8012137,-0.80169696,-0.80169696,-0.80150366,-0.8017936,-0.8016003,-0.8007304,-0.8004405,-0.7988939,-0.79444796,-0.79135495,-0.7920315,-0.7930947,-0.7933847,-0.79425466,-0.7957044,-0.7973475,-0.79850733,-0.7987973,-0.79870063,-0.79831403,-0.79792744,-0.79812074,-0.79841065,-0.79870063,-0.79860395,-0.79841065,-0.79850733,-0.79850733,-0.79831403,-0.79802406,-0.7975408,-0.7971542,-0.79705757,-0.7971542,-0.79725087,-0.79725087,-0.79744416,-0.7977341,-0.79783076,-0.79763746,-0.7975408,-0.79783076,-0.79850733,-0.7991839,-0.80005383,-0.8007304,-0.801117,-0.80131036,-0.80150366,-0.80169696,-0.8019869,-0.8019869,-0.80189025,-0.8019869,-0.80208355,-0.80218023,-0.80227685,-0.80218023,-0.8019869,-0.80208355,-0.80208355,-0.80208355,-0.80208355,-0.80189025,-0.8019869,-0.8019869,-0.80208355,-0.80227685,-0.80218023,-0.80208355,-0.80218023,-0.80227685,-0.80227685,-0.80227685,-0.80218023,-0.80218023,-0.80218023,-0.80218023,-0.80218023,-0.80227685,-0.8023735,-0.8025668,-0.80247015,-0.80227685,-0.8023735,-0.8025668,-0.8023735,-0.80227685,-0.80227685,-0.80218023,-0.80218023,-0.8023735,-0.80247015,-0.8023735,-0.80247015,-0.8027601,-0.8025668,-0.80247015,-0.80247015,-0.80227685,-0.80227685,-0.8023735,-0.80227685,-0.8023735,-0.8025668,-0.8025668,-0.8027601,-0.80247015,-0.8023735,-0.8023735,-0.8023735,-0.8023735,-0.8023735,-0.80247015,-0.8023735,-0.80247015,-0.8025668,-0.80247015,-0.8025668,-0.80247015,-0.80208355,-0.80218023,-0.8023735,-0.8017936,-0.8009237,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80169696,-0.80169696,-0.8023735,-0.8023735,-0.8025668,-0.8027601,-0.80266345,-0.8025668,-0.80247015,-0.8023735,-0.80247015,-0.80247015,-0.80218023,-0.80227685,-0.8023735,-0.8023735,-0.8025668,-0.8025668,-0.8023735,-0.8023735,-0.8023735,-0.8023735,-0.8023735,-0.80227685,-0.80218023,-0.80218023,-0.80208355,-0.80227685,-0.8025668,-0.8025668,-0.80247015,-0.80247015,-0.8023735,-0.80227685,-0.80227685,-0.80218023,-0.8019869,-0.80208355,-0.8023735,-0.80247015,-0.80247015,-0.8025668,-0.8023735,-0.80218023,-0.80227685,-0.80247015,-0.80247015,-0.80247015,-0.8023735,-0.8023735,-0.80227685,-0.80218023,-0.80227685,-0.8023735,-0.80227685,-0.80208355,-0.80227685,-0.8023735,-0.80227685,-0.80227685,-0.8023735,-0.8023735,-0.8023735,-0.8023735,-0.8023735,-0.8023735,-0.8023735,-0.8023735,-0.8023735,-0.8023735,-0.80247015,-0.8023735,-0.80189025,-0.80131036,-0.8007304,-0.7993772,-0.79802406,-0.79763746,-0.79792744,-0.79812074,-0.79812074,-0.79792744,-0.79783076,-0.79783076,-0.7977341,-0.79763746,-0.79783076,-0.79792744,-0.7977341,-0.7977341,-0.7977341,-0.79783076,-0.79821736,-0.79850733,-0.79850733,-0.79860395,-0.7987973,-0.7988939,-0.7987973,-0.7990872,-0.7995705,-0.7995705,-0.7996672,-0.7997638,-0.7995705,-0.7992805,-0.7988939,-0.79821736,-0.79783076,-0.7975408,-0.7971542,-0.79580104,-0.7929014,-0.7924181,-0.7966709,-0.8003438,-0.8009237,-0.8007304,-0.8009237,-0.8005371,-0.79986054,-0.7997638,-0.8005371,-0.801117,-0.8007304,-0.8004405,-0.8010204,-0.801407,-0.8005371,-0.7995705,-0.7975408,-0.79444796,-0.7940613,-0.7958977,-0.7959944,-0.7953178,-0.7962843,-0.79705757,-0.7971542,-0.79802406,-0.7987973,-0.7991839,-0.7989906,-0.79870063,-0.7988939,-0.7989906,-0.7987973,-0.79870063,-0.79831403,-0.79792744,-0.79783076,-0.79783076,-0.7977341,-0.79783076,-0.79783076,-0.79783076,-0.79812074,-0.79821736,-0.79792744,-0.79763746,-0.7977341,-0.79792744,-0.79802406,-0.79783076,-0.7977341,-0.79783076,-0.79860395,-0.7995705,-0.8003438,-0.8010204,-0.80169696,-0.80150366,-0.8017936,-0.80208355,-0.8017936,-0.80189025,-0.8019869,-0.80208355,-0.80218023,-0.80218023,-0.8019869,-0.8019869,-0.80208355,-0.80208355,-0.8019869,-0.8019869,-0.80208355,-0.8019869,-0.80189025,-0.80208355,-0.80227685,-0.80218023,-0.80208355,-0.80208355,-0.80218023,-0.80218023,-0.80218023,-0.80218023,-0.80208355,-0.8019869,-0.80218023,-0.80218023,-0.80218023,-0.80208355,-0.80218023,-0.80227685,-0.80227685,-0.8023735,-0.8023735,-0.80218023,-0.80208355,-0.80218023,-0.80227685,-0.80227685,-0.80208355,-0.80189025,-0.80218023,-0.80218023,-0.80218023,-0.8023735,-0.80218023,-0.80208355,-0.80218023,-0.80227685,-0.8023735,-0.80247015,-0.80227685,-0.80227685,-0.8023735,-0.80218023,-0.80189025,-0.8019869,-0.80208355,-0.80218023,-0.80218023,-0.80208355,-0.80227685,-0.8023735,-0.80227685,-0.80227685,-0.8023735,-0.80227685,-0.8019869,-0.8019869,-0.8017936,-0.801117,-0.8012137,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80227685,-0.801407,-0.8019869,-0.80247015,-0.80227685,-0.80169696,-0.8019869,-0.80218023,-0.80218023,-0.80227685,-0.80208355,-0.80208355,-0.80218023,-0.80218023,-0.80208355,-0.80218023,-0.8025668,-0.80266345,-0.80247015,-0.8023735,-0.80247015,-0.8025668,-0.8025668,-0.80247015,-0.80227685,-0.80218023,-0.80227685,-0.80227685,-0.8025668,-0.8027601,-0.80247015,-0.8023735,-0.80247015,-0.8023735,-0.80227685,-0.80227685,-0.80218023,-0.80227685,-0.80247015,-0.80247015,-0.80218023,-0.80227685,-0.8023735,-0.80227685,-0.80218023,-0.80247015,-0.80266345,-0.80266345,-0.8025668,-0.8023735,-0.8023735,-0.8023735,-0.80227685,-0.80218023,-0.80227685,-0.80247015,-0.8025668,-0.80247015,-0.80227685,-0.8023735,-0.8025668,-0.80247015,-0.80227685,-0.80227685,-0.8023735,-0.80247015,-0.80227685,-0.80227685,-0.8025668,-0.8025668,-0.80189025,-0.80131036,-0.801117,-0.80005383,-0.79850733,-0.79802406,-0.79792744,-0.79802406,-0.79821736,-0.79821736,-0.79802406,-0.79812074,-0.79802406,-0.79792744,-0.79792744,-0.79792744,-0.7977341,-0.79783076,-0.79812074,-0.79802406,-0.79792744,-0.79783076,-0.79783076,-0.7977341,-0.7977341,-0.7973475,-0.7965743,-0.796381,-0.7964776,-0.7964776,-0.7968642,-0.79763746,-0.79802406,-0.79841065,-0.7990872,-0.7996672,-0.7994738,-0.79850733,-0.79792744,-0.79860395,-0.79841065,-0.7953178,-0.7933847,-0.7964776,-0.8004405,-0.8010204,-0.8006338,-0.8010204,-0.8008271,-0.7999572,-0.7994738,-0.79986054,-0.8005371,-0.8004405,-0.80024713,-0.8004405,-0.8008271,-0.80131036,-0.8008271,-0.8003438,-0.79986054,-0.79802406,-0.7967676,-0.7973475,-0.79812074,-0.7988939,-0.79850733,-0.79705757,-0.79744416,-0.79860395,-0.7989906,-0.7993772,-0.7996672,-0.79986054,-0.7996672,-0.7991839,-0.7990872,-0.7990872,-0.79870063,-0.79812074,-0.79792744,-0.7977341,-0.79744416,-0.79725087,-0.7973475,-0.79744416,-0.7975408,-0.7977341,-0.79812074,-0.79802406,-0.79802406,-0.79821736,-0.79812074,-0.79792744,-0.79763746,-0.79763746,-0.7977341,-0.79744416,-0.79802406,-0.7992805,-0.8005371,-0.80150366,-0.80189025,-0.8016003,-0.80218023,-0.8023735,-0.80218023,-0.8019869,-0.8019869,-0.8019869,-0.80208355,-0.80227685,-0.80227685,-0.80218023,-0.80218023,-0.80208355,-0.80189025,-0.8017936,-0.80189025,-0.80218023,-0.8023735,-0.8023735,-0.80208355,-0.80208355,-0.80218023,-0.80218023,-0.80218023,-0.80218023,-0.80208355,-0.8019869,-0.8019869,-0.80208355,-0.8019869,-0.80189025,-0.80218023,-0.8023735,-0.80218023,-0.80227685,-0.80247015,-0.8023735,-0.80218023,-0.80218023,-0.8023735,-0.80247015,-0.8023735,-0.80227685,-0.80208355,-0.80227685,-0.80227685,-0.80218023,-0.80208355,-0.80208355,-0.80208355,-0.80208355,-0.8019869,-0.8019869,-0.80208355,-0.80218023,-0.80227685,-0.80247015,-0.8023735,-0.80218023,-0.80208355,-0.80218023,-0.80227685,-0.80227685,-0.80247015,-0.80227685,-0.8023735,-0.8025668,-0.80247015,-0.80227685,-0.80218023,-0.8023735,-0.8027601,-0.80247015,-0.8023735,-0.8006338,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.80189025,-0.80247015,-0.8023735,-0.8019869,-0.80247015,-0.80247015,-0.8025668,-0.80266345,-0.8025668,-0.8023735,-0.80218023,-0.80227685,-0.8023735,-0.80227685,-0.80227685,-0.8025668,-0.8025668,-0.8025668,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.80266345,-0.80247015,-0.80247015,-0.8023735,-0.80227685,-0.8025668,-0.80266345,-0.80247015,-0.8025668,-0.80266345,-0.80247015,-0.8025668,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.8025668,-0.80247015,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.80247015,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80247015,-0.80247015,-0.8025668,-0.8027601,-0.80247015,-0.80247015,-0.8019869,-0.8010204,-0.80024713,-0.7991839,-0.79812074,-0.79831403,-0.7987973,-0.79870063,-0.79841065,-0.79812074,-0.79792744,-0.79812074,-0.79812074,-0.79783076,-0.79763746,-0.7977341,-0.79792744,-0.79792744,-0.79792744,-0.79812074,-0.79802406,-0.7975408,-0.7968642,-0.7959944,-0.79502785,-0.7940613,-0.7929014,-0.7920315,-0.7921282,-0.7925148,-0.7924181,-0.7921282,-0.7924181,-0.7929014,-0.79348135,-0.79502785,-0.79763746,-0.7992805,-0.7987973,-0.79821736,-0.79860395,-0.79812074,-0.79705757,-0.79802406,-0.8004405,-0.80150366,-0.8009237,-0.8006338,-0.8010204,-0.80131036,-0.8007304,-0.7990872,-0.7992805,-0.8007304,-0.8001505,-0.7992805,-0.8003438,-0.8012137,-0.8003438,-0.79850733,-0.79841065,-0.80005383,-0.80005383,-0.79841065,-0.79725087,-0.7977341,-0.79870063,-0.79792744,-0.7971542,-0.79850733,-0.7993772,-0.7990872,-0.7991839,-0.7990872,-0.79850733,-0.7975408,-0.7967676,-0.7965743,-0.79705757,-0.7973475,-0.7973475,-0.79763746,-0.79812074,-0.79812074,-0.79812074,-0.79821736,-0.79802406,-0.79783076,-0.79783076,-0.79802406,-0.79802406,-0.79812074,-0.79821736,-0.79821736,-0.79831403,-0.79850733,-0.79841065,-0.79792744,-0.7975408,-0.79744416,-0.79744416,-0.79802406,-0.7997638,-0.80131036,-0.80189025,-0.80218023,-0.80247015,-0.80247015,-0.8023735,-0.80227685,-0.80208355,-0.8019869,-0.80208355,-0.80208355,-0.80208355,-0.80208355,-0.80208355,-0.80218023,-0.80208355,-0.80208355,-0.80218023,-0.80227685,-0.80227685,-0.80208355,-0.80189025,-0.80218023,-0.8023735,-0.8023735,-0.80218023,-0.80218023,-0.80227685,-0.80227685,-0.80227685,-0.80218023,-0.80208355,-0.80218023,-0.80227685,-0.80208355,-0.80208355,-0.80227685,-0.8023735,-0.8023735,-0.80218023,-0.80227685,-0.80247015,-0.8023735,-0.80227685,-0.80227685,-0.8023735,-0.8023735,-0.80227685,-0.80227685,-0.8023735,-0.80227685,-0.80218023,-0.80227685,-0.80208355,-0.80189025,-0.80218023,-0.80218023,-0.80218023,-0.80218023,-0.8019869,-0.80218023,-0.80227685,-0.80227685,-0.80227685,-0.80227685,-0.8023735,-0.80227685,-0.80227685,-0.8023735,-0.80227685,-0.80247015,-0.8027601,-0.8025668,-0.8017936,-0.80218023,-0.80024713,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8006338,-0.80005383,-0.8025668,-0.8025668,-0.80208355,-0.8023735,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.80247015,-0.8025668,-0.80266345,-0.8025668,-0.80247015,-0.8023735,-0.80247015,-0.80247015,-0.80227685,-0.80247015,-0.8025668,-0.80247015,-0.8023735,-0.8025668,-0.80247015,-0.80227685,-0.8023735,-0.80247015,-0.8023735,-0.80247015,-0.80247015,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.80247015,-0.80247015,-0.80247015,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80247015,-0.80227685,-0.80218023,-0.80227685,-0.8023735,-0.80247015,-0.8025668,-0.8025668,-0.8027601,-0.8025668,-0.80247015,-0.8025668,-0.8025668,-0.80247015,-0.80247015,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.80266345,-0.8025668,-0.80227685,-0.801407,-0.80024713,-0.7995705,-0.7987973,-0.79841065,-0.7988939,-0.7989906,-0.79792744,-0.79705757,-0.796091,-0.79541445,-0.7958977,-0.7965743,-0.79705757,-0.79725087,-0.7975408,-0.79802406,-0.79860395,-0.79850733,-0.79821736,-0.79802406,-0.79763746,-0.7971542,-0.7965743,-0.79522115,-0.7931914,-0.79154825,-0.79087174,-0.79096836,-0.79125834,-0.79145163,-0.79154825,-0.79145163,-0.79135495,-0.79106504,-0.79038846,-0.79077506,-0.79425466,-0.79821736,-0.79850733,-0.7969609,-0.7969609,-0.7969609,-0.7975408,-0.80005383,-0.801117,-0.8006338,-0.8007304,-0.8004405,-0.79986054,-0.80005383,-0.7997638,-0.79860395,-0.7988939,-0.79986054,-0.7997638,-0.79986054,-0.80024713,-0.7997638,-0.79841065,-0.7965743,-0.7961877,-0.79831403,-0.8004405,-0.8005371,-0.79860395,-0.796381,-0.7947379,-0.79444796,-0.7965743,-0.7990872,-0.7994738,-0.7977341,-0.79522115,-0.7937714,-0.7926115,-0.79135495,-0.79087174,-0.79106504,-0.79125834,-0.7918382,-0.7922248,-0.7929014,-0.79464126,-0.7958977,-0.7967676,-0.79783076,-0.79821736,-0.79821736,-0.79821736,-0.79802406,-0.79812074,-0.79812074,-0.79783076,-0.79792744,-0.79812074,-0.79821736,-0.79841065,-0.79831403,-0.79831403,-0.79831403,-0.79821736,-0.79802406,-0.7977341,-0.79850733,-0.8004405,-0.8017936,-0.80227685,-0.80218023,-0.80227685,-0.80247015,-0.80227685,-0.8019869,-0.8019869,-0.80208355,-0.80218023,-0.80208355,-0.8019869,-0.8019869,-0.80208355,-0.80208355,-0.80208355,-0.80189025,-0.80208355,-0.8023735,-0.80218023,-0.8019869,-0.80218023,-0.80227685,-0.80218023,-0.80208355,-0.80227685,-0.80218023,-0.80218023,-0.80227685,-0.80218023,-0.80208355,-0.80218023,-0.80218023,-0.80208355,-0.80227685,-0.80247015,-0.80247015,-0.80227685,-0.80208355,-0.80218023,-0.8023735,-0.80218023,-0.80208355,-0.80218023,-0.80227685,-0.80227685,-0.80227685,-0.80247015,-0.8025668,-0.8023735,-0.80227685,-0.80227685,-0.80218023,-0.80227685,-0.80247015,-0.80227685,-0.80208355,-0.80227685,-0.80247015,-0.8023735,-0.80247015,-0.80266345,-0.80247015,-0.80227685,-0.80247015,-0.8023735,-0.80218023,-0.8025668,-0.8023735,-0.80266345,-0.80247015,-0.8016003,-0.8017936,-0.8016003,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80189025,-0.801117,-0.80247015,-0.80247015,-0.8023735,-0.80227685,-0.80227685,-0.8025668,-0.8025668,-0.80227685,-0.80218023,-0.80247015,-0.8025668,-0.80247015,-0.80227685,-0.8023735,-0.80247015,-0.80227685,-0.80227685,-0.80227685,-0.80227685,-0.80208355,-0.80218023,-0.80247015,-0.80227685,-0.80218023,-0.8023735,-0.80247015,-0.80227685,-0.8023735,-0.80247015,-0.8025668,-0.8025668,-0.80227685,-0.80218023,-0.8023735,-0.8023735,-0.8023735,-0.8023735,-0.80247015,-0.8025668,-0.8025668,-0.80247015,-0.8023735,-0.80227685,-0.80218023,-0.80208355,-0.80208355,-0.8023735,-0.8025668,-0.8025668,-0.8025668,-0.80247015,-0.8025668,-0.80247015,-0.80227685,-0.8023735,-0.8023735,-0.80247015,-0.8025668,-0.80247015,-0.80247015,-0.80247015,-0.8023735,-0.80247015,-0.8023735,-0.80227685,-0.80150366,-0.80005383,-0.7991839,-0.79850733,-0.79850733,-0.7992805,-0.79821736,-0.7958977,-0.79464126,-0.79425466,-0.7943513,-0.79541445,-0.7967676,-0.79763746,-0.79802406,-0.79812074,-0.79870063,-0.7991839,-0.7992805,-0.7991839,-0.7989906,-0.79860395,-0.79831403,-0.79831403,-0.7977341,-0.796381,-0.7949312,-0.7937714,-0.7929981,-0.7924181,-0.79164493,-0.79106504,-0.79145163,-0.7923215,-0.7928048,-0.7926115,-0.7924181,-0.79145163,-0.79087174,-0.7943513,-0.79821736,-0.7969609,-0.79502785,-0.79705757,-0.7993772,-0.80005383,-0.80005383,-0.80024713,-0.8007304,-0.8004405,-0.7993772,-0.79792744,-0.79541445,-0.7943513,-0.79541445,-0.79580104,-0.7965743,-0.79821736,-0.79792744,-0.79744416,-0.79860395,-0.79870063,-0.7975408,-0.79705757,-0.7988939,-0.801407,-0.8007304,-0.7964776,-0.7924181,-0.7928048,-0.7964776,-0.79792744,-0.7966709,-0.79522115,-0.79357797,-0.79154825,-0.79058176,-0.7902918,-0.7902918,-0.7899052,-0.7892286,-0.7890353,-0.7895186,-0.79038846,-0.7918382,-0.7933847,-0.7947379,-0.7959944,-0.79705757,-0.79783076,-0.79821736,-0.79841065,-0.79831403,-0.79802406,-0.79763746,-0.7973475,-0.7973475,-0.7973475,-0.7973475,-0.7975408,-0.79763746,-0.79792744,-0.79850733,-0.79870063,-0.79802406,-0.79744416,-0.79812074,-0.7999572,-0.80131036,-0.80189025,-0.8023735,-0.8025668,-0.80227685,-0.80227685,-0.80227685,-0.80227685,-0.80227685,-0.80218023,-0.80218023,-0.80227685,-0.80227685,-0.80227685,-0.80208355,-0.80208355,-0.80218023,-0.80218023,-0.80208355,-0.80208355,-0.80208355,-0.80227685,-0.8023735,-0.80218023,-0.80218023,-0.8023735,-0.80208355,-0.80208355,-0.80227685,-0.80208355,-0.80218023,-0.80227685,-0.80218023,-0.80227685,-0.80227685,-0.80227685,-0.80227685,-0.80218023,-0.80208355,-0.8023735,-0.8023735,-0.8023735,-0.8023735,-0.80227685,-0.80218023,-0.80218023,-0.8019869,-0.80218023,-0.8023735,-0.80218023,-0.80208355,-0.80227685,-0.8019869,-0.8019869,-0.8023735,-0.80227685,-0.80208355,-0.80208355,-0.80227685,-0.8023735,-0.80247015,-0.8023735,-0.80218023,-0.80227685,-0.80227685,-0.80227685,-0.80218023,-0.80208355,-0.80208355,-0.80169696,-0.8016003,-0.80131036,-0.8008271,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80227685,-0.80227685,-0.8010204,-0.80227685,-0.80266345,-0.80208355,-0.8023735,-0.80227685,-0.8019869,-0.8019869,-0.8023735,-0.80227685,-0.80218023,-0.80218023,-0.80208355,-0.80218023,-0.80227685,-0.80218023,-0.80218023,-0.80227685,-0.80218023,-0.80208355,-0.80208355,-0.80218023,-0.80208355,-0.80227685,-0.8023735,-0.80218023,-0.80218023,-0.80227685,-0.80227685,-0.80218023,-0.8023735,-0.80247015,-0.80227685,-0.80218023,-0.80208355,-0.80208355,-0.80218023,-0.80218023,-0.80218023,-0.80208355,-0.80218023,-0.80247015,-0.8023735,-0.80227685,-0.80227685,-0.80227685,-0.80227685,-0.80218023,-0.80218023,-0.80227685,-0.80227685,-0.80227685,-0.80218023,-0.80218023,-0.80218023,-0.8023735,-0.80247015,-0.8023735,-0.80227685,-0.80247015,-0.8025668,-0.80218023,-0.80218023,-0.80208355,-0.801407,-0.79986054,-0.7987973,-0.79850733,-0.79850733,-0.79831403,-0.7966709,-0.7940613,-0.7933847,-0.79444796,-0.79541445,-0.796381,-0.7973475,-0.79812074,-0.79860395,-0.79860395,-0.79860395,-0.7990872,-0.7993772,-0.7992805,-0.7990872,-0.7991839,-0.7993772,-0.7990872,-0.7987973,-0.79841065,-0.7975408,-0.7966709,-0.7961877,-0.79580104,-0.79502785,-0.79348135,-0.7919349,-0.7919349,-0.7930947,-0.793868,-0.7937714,-0.7931914,-0.79154825,-0.7896152,-0.7920315,-0.7968642,-0.79725087,-0.7958977,-0.79821736,-0.8003438,-0.7999572,-0.7995705,-0.7997638,-0.7996672,-0.7996672,-0.7994738,-0.79831403,-0.79580104,-0.793868,-0.793868,-0.79425466,-0.79512453,-0.7964776,-0.79705757,-0.79821736,-0.8001505,-0.8007304,-0.8003438,-0.79860395,-0.7971542,-0.7992805,-0.801117,-0.79783076,-0.7933847,-0.79357797,-0.7967676,-0.7967676,-0.7940613,-0.794158,-0.7949312,-0.794158,-0.793288,-0.7927081,-0.7920315,-0.7918382,-0.79125834,-0.79087174,-0.7917416,-0.7933847,-0.79464126,-0.7955111,-0.7964776,-0.7973475,-0.79783076,-0.79821736,-0.79831403,-0.79841065,-0.79860395,-0.79870063,-0.79850733,-0.79812074,-0.79763746,-0.7971542,-0.7967676,-0.7959944,-0.79522115,-0.7953178,-0.7961877,-0.7971542,-0.79792744,-0.79802406,-0.79763746,-0.79831403,-0.7996672,-0.8009237,-0.8019869,-0.8025668,-0.80247015,-0.8023735,-0.80227685,-0.80218023,-0.8023735,-0.8023735,-0.80227685,-0.80218023,-0.80218023,-0.80227685,-0.8023735,-0.80227685,-0.80218023,-0.80218023,-0.80208355,-0.8017936,-0.8019869,-0.80208355,-0.80218023,-0.8023735,-0.8023735,-0.80218023,-0.80208355,-0.80218023,-0.80227685,-0.80218023,-0.8019869,-0.8019869,-0.8019869,-0.80208355,-0.80218023,-0.80208355,-0.80218023,-0.8023735,-0.80227685,-0.80227685,-0.80227685,-0.80218023,-0.80208355,-0.8019869,-0.80218023,-0.80208355,-0.80189025,-0.80208355,-0.80218023,-0.80208355,-0.80208355,-0.80208355,-0.80208355,-0.80208355,-0.80218023,-0.80247015,-0.8023735,-0.80218023,-0.80218023,-0.80208355,-0.80218023,-0.8019869,-0.80208355,-0.80227685,-0.80218023,-0.80208355,-0.80208355,-0.8017936,-0.801407,-0.801117,-0.8019869,-0.801407,-0.80169696,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8007304,-0.801117,-0.8025668,-0.80218023,-0.8025668,-0.80189025,-0.80189025,-0.80208355,-0.80227685,-0.8023735,-0.8019869,-0.80189025,-0.80218023,-0.80208355,-0.8017936,-0.8019869,-0.80218023,-0.80218023,-0.80218023,-0.80227685,-0.80218023,-0.80208355,-0.80208355,-0.80208355,-0.80218023,-0.80218023,-0.80218023,-0.80218023,-0.8019869,-0.80218023,-0.80227685,-0.80208355,-0.80227685,-0.8023735,-0.80227685,-0.80227685,-0.80227685,-0.80189025,-0.80189025,-0.8019869,-0.80227685,-0.80227685,-0.80208355,-0.80218023,-0.80208355,-0.80208355,-0.80208355,-0.80227685,-0.80247015,-0.8023735,-0.80227685,-0.80247015,-0.80227685,-0.80208355,-0.80218023,-0.80227685,-0.80227685,-0.80227685,-0.80227685,-0.80218023,-0.80218023,-0.8023735,-0.8025668,-0.80247015,-0.80227685,-0.801117,-0.7996672,-0.79860395,-0.79850733,-0.79812074,-0.7966709,-0.7943513,-0.7923215,-0.7922248,-0.79444796,-0.796381,-0.7971542,-0.79763746,-0.79812074,-0.79850733,-0.7988939,-0.7990872,-0.7991839,-0.7993772,-0.7995705,-0.7994738,-0.7992805,-0.7992805,-0.7996672,-0.7997638,-0.7995705,-0.7992805,-0.7988939,-0.79850733,-0.79821736,-0.79792744,-0.7971542,-0.7955111,-0.7943513,-0.7939647,-0.793288,-0.7931914,-0.7936747,-0.7929981,-0.79145163,-0.79125834,-0.7926115,-0.7945446,-0.7964776,-0.79831403,-0.7997638,-0.80005383,-0.7994738,-0.7991839,-0.7993772,-0.7994738,-0.7995705,-0.7993772,-0.7991839,-0.79850733,-0.7973475,-0.7971542,-0.7977341,-0.7977341,-0.79802406,-0.7987973,-0.79986054,-0.8009237,-0.801407,-0.801117,-0.8001505,-0.79841065,-0.79831403,-0.7997638,-0.7993772,-0.7964776,-0.79425466,-0.794158,-0.7939647,-0.7926115,-0.7923215,-0.79357797,-0.7936747,-0.7933847,-0.79348135,-0.7933847,-0.7931914,-0.79357797,-0.7945446,-0.7955111,-0.7961877,-0.7968642,-0.7975408,-0.79831403,-0.7987973,-0.7988939,-0.7987973,-0.79870063,-0.79850733,-0.79860395,-0.79870063,-0.79860395,-0.79860395,-0.79841065,-0.79783076,-0.7975408,-0.7968642,-0.79560775,-0.79483455,-0.7940613,-0.7937714,-0.79502785,-0.79705757,-0.79812074,-0.79792744,-0.79792744,-0.7990872,-0.8006338,-0.8017936,-0.80227685,-0.80218023,-0.80227685,-0.80247015,-0.80247015,-0.8023735,-0.80247015,-0.80247015,-0.8023735,-0.80247015,-0.80247015,-0.8023735,-0.8023735,-0.80247015,-0.8023735,-0.80208355,-0.80208355,-0.80218023,-0.80218023,-0.80227685,-0.80218023,-0.80218023,-0.80227685,-0.80227685,-0.80247015,-0.8023735,-0.80218023,-0.80227685,-0.80218023,-0.80208355,-0.80218023,-0.80189025,-0.8017936,-0.80218023,-0.80227685,-0.80227685,-0.8023735,-0.8023735,-0.80208355,-0.8019869,-0.80218023,-0.80227685,-0.80208355,-0.80208355,-0.8019869,-0.80189025,-0.8019869,-0.80189025,-0.80208355,-0.80218023,-0.80189025,-0.8019869,-0.80218023,-0.80218023,-0.80208355,-0.80189025,-0.8019869,-0.80189025,-0.8017936,-0.80189025,-0.8016003,-0.8016003,-0.8019869,-0.8016003,-0.801117,-0.80131036,-0.8016003,-0.80150366,-0.8012137,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8007304,-0.801117,-0.8016003,-0.8025668,-0.80227685,-0.8019869,-0.80247015,-0.80247015,-0.80218023,-0.80208355,-0.8019869,-0.80218023,-0.80247015,-0.80247015,-0.80218023,-0.80218023,-0.80247015,-0.8023735,-0.80208355,-0.8019869,-0.80208355,-0.80218023,-0.80227685,-0.80227685,-0.80218023,-0.80208355,-0.80218023,-0.80227685,-0.80218023,-0.80208355,-0.80218023,-0.8023735,-0.8023735,-0.80208355,-0.80208355,-0.8023735,-0.8023735,-0.80227685,-0.8023735,-0.80227685,-0.80227685,-0.8023735,-0.80227685,-0.80218023,-0.80227685,-0.80218023,-0.80227685,-0.8023735,-0.8023735,-0.8023735,-0.8023735,-0.8023735,-0.80227685,-0.8023735,-0.80247015,-0.8023735,-0.80247015,-0.80247015,-0.8023735,-0.8023735,-0.8023735,-0.80227685,-0.80247015,-0.80227685,-0.80131036,-0.7996672,-0.79850733,-0.79831403,-0.7975408,-0.79502785,-0.7923215,-0.79145163,-0.7924181,-0.79425466,-0.7959944,-0.7971542,-0.79783076,-0.79870063,-0.7993772,-0.7993772,-0.7995705,-0.7999572,-0.7995705,-0.7993772,-0.7995705,-0.7996672,-0.7997638,-0.79986054,-0.79986054,-0.79986054,-0.79986054,-0.7995705,-0.7992805,-0.7991839,-0.7989906,-0.79841065,-0.7971542,-0.7959944,-0.79560775,-0.794158,-0.7918382,-0.7926115,-0.79502785,-0.79541445,-0.79483455,-0.79541445,-0.79541445,-0.7955111,-0.79802406,-0.8008271,-0.8006338,-0.7989906,-0.79841065,-0.7987973,-0.7994738,-0.8001505,-0.8003438,-0.8001505,-0.7995705,-0.7989906,-0.7988939,-0.7990872,-0.7993772,-0.7992805,-0.7988939,-0.7991839,-0.8006338,-0.80169696,-0.8016003,-0.801117,-0.8005371,-0.8001505,-0.7992805,-0.7977341,-0.7973475,-0.79850733,-0.79812074,-0.7957044,-0.79425466,-0.7936747,-0.7926115,-0.7924181,-0.7933847,-0.7937714,-0.7929981,-0.7920315,-0.7919349,-0.7931914,-0.7953178,-0.79725087,-0.79783076,-0.79802406,-0.7988939,-0.7994738,-0.7995705,-0.7995705,-0.7994738,-0.7994738,-0.7993772,-0.7990872,-0.7989906,-0.7989906,-0.7987973,-0.79860395,-0.79812074,-0.7977341,-0.79744416,-0.7968642,-0.7962843,-0.79541445,-0.7943513,-0.79348135,-0.7936747,-0.7958977,-0.79792744,-0.7975408,-0.79725087,-0.7988939,-0.8006338,-0.8016003,-0.8019869,-0.8019869,-0.80218023,-0.80227685,-0.80218023,-0.8023735,-0.80227685,-0.80227685,-0.8025668,-0.8023735,-0.80208355,-0.80227685,-0.8023735,-0.80208355,-0.8019869,-0.80208355,-0.80218023,-0.80218023,-0.80218023,-0.80227685,-0.80247015,-0.8023735,-0.80227685,-0.8023735,-0.8023735,-0.8023735,-0.8023735,-0.80227685,-0.80218023,-0.80218023,-0.80218023,-0.80218023,-0.80227685,-0.80227685,-0.80227685,-0.80227685,-0.80227685,-0.80227685,-0.8023735,-0.80218023,-0.8017936,-0.8019869,-0.80208355,-0.8019869,-0.80227685,-0.80218023,-0.80189025,-0.80227685,-0.80227685,-0.80189025,-0.80218023,-0.80227685,-0.80208355,-0.8019869,-0.8019869,-0.80208355,-0.80218023,-0.8019869,-0.80208355,-0.8019869,-0.8017936,-0.80218023,-0.80208355,-0.80218023,-0.80189025,-0.801407,-0.80189025,-0.7994738,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80218023,-0.801117,-0.80131036,-0.80169696,-0.80150366,-0.8017936,-0.80208355,-0.8017936,-0.8019869,-0.8019869,-0.80189025,-0.80208355,-0.80227685,-0.80208355,-0.80208355,-0.8023735,-0.80218023,-0.80189025,-0.80189025,-0.80208355,-0.80208355,-0.8019869,-0.80218023,-0.80208355,-0.80208355,-0.80227685,-0.80218023,-0.80218023,-0.80218023,-0.80208355,-0.8023735,-0.8023735,-0.80208355,-0.80218023,-0.80208355,-0.80189025,-0.80208355,-0.80218023,-0.80227685,-0.80247015,-0.80227685,-0.80218023,-0.80218023,-0.80218023,-0.80227685,-0.8023735,-0.80227685,-0.80227685,-0.80227685,-0.80218023,-0.8023735,-0.80247015,-0.80227685,-0.80227685,-0.80247015,-0.8023735,-0.80227685,-0.80227685,-0.8023735,-0.80247015,-0.8023735,-0.80227685,-0.80227685,-0.80150366,-0.79986054,-0.79860395,-0.79831403,-0.79705757,-0.7943513,-0.7922248,-0.7917416,-0.7928048,-0.79425466,-0.79560775,-0.7969609,-0.7977341,-0.79831403,-0.7990872,-0.7994738,-0.7995705,-0.7997638,-0.7997638,-0.7997638,-0.7996672,-0.7997638,-0.80005383,-0.8001505,-0.80005383,-0.7997638,-0.7995705,-0.7993772,-0.7991839,-0.7988939,-0.7987973,-0.79841065,-0.79744416,-0.7966709,-0.7958977,-0.7945446,-0.7930947,-0.7929014,-0.7943513,-0.7959944,-0.7959944,-0.7958977,-0.79792744,-0.7988939,-0.7971542,-0.79792744,-0.8008271,-0.79986054,-0.79783076,-0.79870063,-0.7995705,-0.7995705,-0.7999572,-0.8005371,-0.8009237,-0.8006338,-0.80005383,-0.7995705,-0.7993772,-0.7997638,-0.8005371,-0.8007304,-0.8005371,-0.8007304,-0.8009237,-0.8009237,-0.8010204,-0.8010204,-0.8005371,-0.7995705,-0.7977341,-0.7968642,-0.79860395,-0.7996672,-0.79802406,-0.79725087,-0.79812074,-0.7967676,-0.7943513,-0.79502785,-0.7962843,-0.7947379,-0.7922248,-0.79135495,-0.7922248,-0.794158,-0.7969609,-0.7987973,-0.7991839,-0.7993772,-0.79986054,-0.7999572,-0.7999572,-0.7999572,-0.7999572,-0.7999572,-0.79986054,-0.7996672,-0.7994738,-0.7992805,-0.7993772,-0.7992805,-0.79831403,-0.7977341,-0.79725087,-0.796381,-0.7953178,-0.79483455,-0.7953178,-0.79444796,-0.7928048,-0.7949312,-0.79831403,-0.79802406,-0.79705757,-0.79850733,-0.8004405,-0.80169696,-0.80218023,-0.80227685,-0.8023735,-0.80227685,-0.80208355,-0.80208355,-0.80218023,-0.80227685,-0.80227685,-0.80227685,-0.80218023,-0.80227685,-0.80227685,-0.80218023,-0.80227685,-0.80218023,-0.80208355,-0.80227685,-0.80247015,-0.80247015,-0.8023735,-0.80227685,-0.8023735,-0.8023735,-0.8023735,-0.80227685,-0.80218023,-0.8023735,-0.80227685,-0.80247015,-0.8025668,-0.8023735,-0.80227685,-0.80218023,-0.80208355,-0.80208355,-0.80208355,-0.80208355,-0.80208355,-0.8019869,-0.80218023,-0.80227685,-0.80218023,-0.80218023,-0.80218023,-0.80218023,-0.80227685,-0.80227685,-0.80227685,-0.80227685,-0.8019869,-0.80189025,-0.8019869,-0.8023735,-0.8023735,-0.80208355,-0.80247015,-0.80266345,-0.80227685,-0.80227685,-0.8019869,-0.8023735,-0.8025668,-0.8023735,-0.8025668,-0.8016003,-0.7995705,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.801407,-0.8012137,-0.80247015,-0.80247015,-0.80218023,-0.80227685,-0.80218023,-0.80218023,-0.80218023,-0.80218023,-0.80218023,-0.80218023,-0.80208355,-0.80218023,-0.80247015,-0.8025668,-0.8023735,-0.80208355,-0.80208355,-0.80227685,-0.80218023,-0.80208355,-0.80208355,-0.80227685,-0.80247015,-0.8023735,-0.8023735,-0.8025668,-0.80247015,-0.80227685,-0.80247015,-0.80247015,-0.80227685,-0.80227685,-0.80227685,-0.80218023,-0.80227685,-0.80227685,-0.8023735,-0.80247015,-0.80247015,-0.80247015,-0.8023735,-0.80227685,-0.8023735,-0.80247015,-0.80247015,-0.80247015,-0.80247015,-0.8023735,-0.80247015,-0.80266345,-0.8025668,-0.80247015,-0.80266345,-0.8025668,-0.80247015,-0.80247015,-0.80247015,-0.8023735,-0.80247015,-0.80247015,-0.80169696,-0.79986054,-0.79860395,-0.79841065,-0.7967676,-0.794158,-0.7933847,-0.79357797,-0.7943513,-0.79483455,-0.79512453,-0.7966709,-0.79783076,-0.79802406,-0.79870063,-0.7991839,-0.7993772,-0.7993772,-0.7993772,-0.7995705,-0.7997638,-0.79986054,-0.79986054,-0.8001505,-0.80005383,-0.7997638,-0.7997638,-0.7994738,-0.7989906,-0.79870063,-0.79841065,-0.79821736,-0.7973475,-0.7962843,-0.7955111,-0.79444796,-0.793288,-0.7933847,-0.7945446,-0.79483455,-0.79348135,-0.7922248,-0.7930947,-0.796091,-0.79744416,-0.7958977,-0.79725087,-0.8005371,-0.7996672,-0.79831403,-0.7994738,-0.7999572,-0.79986054,-0.79986054,-0.79986054,-0.7997638,-0.7995705,-0.8001505,-0.8010204,-0.8008271,-0.8006338,-0.8010204,-0.801117,-0.8006338,-0.7997638,-0.7995705,-0.79986054,-0.80024713,-0.8006338,-0.8005371,-0.80024713,-0.7993772,-0.79821736,-0.7990872,-0.7997638,-0.79792744,-0.79783076,-0.7994738,-0.79821736,-0.79502785,-0.7940613,-0.79512453,-0.79502785,-0.7937714,-0.7929014,-0.7928048,-0.79425466,-0.7967676,-0.79870063,-0.7991839,-0.7993772,-0.7996672,-0.7997638,-0.7997638,-0.80005383,-0.7999572,-0.79986054,-0.80005383,-0.80005383,-0.79986054,-0.7996672,-0.7994738,-0.7994738,-0.7990872,-0.79841065,-0.79783076,-0.7968642,-0.79580104,-0.79444796,-0.794158,-0.79560775,-0.7943513,-0.79145163,-0.7939647,-0.79821736,-0.7975408,-0.796381,-0.79841065,-0.8005371,-0.80150366,-0.80189025,-0.80208355,-0.80208355,-0.80189025,-0.8019869,-0.80218023,-0.80218023,-0.80218023,-0.80227685,-0.80218023,-0.8019869,-0.80189025,-0.80208355,-0.80227685,-0.80218023,-0.8019869,-0.80208355,-0.80227685,-0.80247015,-0.80218023,-0.8019869,-0.8019869,-0.8019869,-0.80208355,-0.80227685,-0.80227685,-0.80208355,-0.80218023,-0.80247015,-0.8025668,-0.8023735,-0.80208355,-0.80208355,-0.80227685,-0.80227685,-0.8019869,-0.8019869,-0.80218023,-0.8023735,-0.8023735,-0.80247015,-0.80247015,-0.8023735,-0.80227685,-0.8023735,-0.80227685,-0.80218023,-0.80218023,-0.80208355,-0.80227685,-0.80247015,-0.8023735,-0.80247015,-0.8025668,-0.80218023,-0.80208355,-0.8023735,-0.80266345,-0.80247015,-0.80227685,-0.8025668,-0.80266345,-0.8023735,-0.80208355,-0.80189025,-0.8007304,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.801117,-0.80131036,-0.8023735,-0.80247015,-0.8025668,-0.8025668,-0.8023735,-0.8023735,-0.80227685,-0.8023735,-0.8025668,-0.80227685,-0.80208355,-0.80227685,-0.80247015,-0.8023735,-0.80218023,-0.80208355,-0.80227685,-0.80247015,-0.80218023,-0.80218023,-0.80208355,-0.80208355,-0.80227685,-0.8023735,-0.8023735,-0.8023735,-0.80218023,-0.8023735,-0.8023735,-0.8023735,-0.80247015,-0.80227685,-0.80218023,-0.80266345,-0.80285674,-0.80247015,-0.80227685,-0.80227685,-0.80227685,-0.8023735,-0.8023735,-0.80227685,-0.8023735,-0.80247015,-0.80227685,-0.80227685,-0.80247015,-0.8023735,-0.80227685,-0.80247015,-0.8025668,-0.80247015,-0.8023735,-0.80247015,-0.8025668,-0.80247015,-0.80227685,-0.80247015,-0.8025668,-0.8019869,-0.80005383,-0.79850733,-0.79860395,-0.79705757,-0.7939647,-0.793868,-0.7955111,-0.79560775,-0.79560775,-0.7962843,-0.79744416,-0.79792744,-0.7977341,-0.79792744,-0.79860395,-0.7992805,-0.7991839,-0.79870063,-0.7989906,-0.7995705,-0.79986054,-0.7999572,-0.80005383,-0.8001505,-0.80005383,-0.7997638,-0.7995705,-0.7992805,-0.7988939,-0.79850733,-0.79831403,-0.79802406,-0.7973475,-0.796381,-0.79483455,-0.79348135,-0.7936747,-0.79464126,-0.7953178,-0.79464126,-0.79164493,-0.7893253,-0.7906784,-0.7933847,-0.79348135,-0.7936747,-0.7977341,-0.8005371,-0.7996672,-0.7994738,-0.80005383,-0.7995705,-0.7991839,-0.7992805,-0.7993772,-0.79860395,-0.79831403,-0.7989906,-0.7989906,-0.7994738,-0.801117,-0.8009237,-0.7992805,-0.7987973,-0.7988939,-0.79870063,-0.79870063,-0.7989906,-0.7994738,-0.7996672,-0.8001505,-0.8001505,-0.7988939,-0.7992805,-0.8001505,-0.7977341,-0.79541445,-0.7957044,-0.7945446,-0.7922248,-0.79164493,-0.7925148,-0.794158,-0.79522115,-0.79483455,-0.79425466,-0.79522115,-0.7969609,-0.79841065,-0.7989906,-0.7992805,-0.7993772,-0.7994738,-0.7995705,-0.7996672,-0.7996672,-0.7996672,-0.79986054,-0.80005383,-0.8001505,-0.8001505,-0.7995705,-0.7992805,-0.7994738,-0.7993772,-0.79870063,-0.79763746,-0.79705757,-0.7967676,-0.79502785,-0.7939647,-0.79522115,-0.79348135,-0.79077506,-0.7936747,-0.7975408,-0.79705757,-0.7967676,-0.79870063,-0.8004405,-0.801407,-0.8019869,-0.80218023,-0.80218023,-0.80218023,-0.80218023,-0.80218023,-0.80208355,-0.80208355,-0.8019869,-0.80189025,-0.80189025,-0.80208355,-0.8019869,-0.80208355,-0.80227685,-0.80218023,-0.80208355,-0.80218023,-0.80218023,-0.80208355,-0.8019869,-0.80208355,-0.80218023,-0.80218023,-0.80189025,-0.80189025,-0.80218023,-0.80218023,-0.8019869,-0.8019869,-0.80208355,-0.80218023,-0.80208355,-0.80208355,-0.80227685,-0.80218023,-0.80218023,-0.80227685,-0.80218023,-0.80208355,-0.8023735,-0.8025668,-0.80247015,-0.80227685,-0.8023735,-0.80227685,-0.8019869,-0.80189025,-0.80218023,-0.80247015,-0.8023735,-0.8019869,-0.80189025,-0.80218023,-0.80218023,-0.80218023,-0.80218023,-0.80189025,-0.80189025,-0.80218023,-0.80208355,-0.8017936,-0.80150366,-0.8010204,-0.80150366,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.7997638,-0.801117,-0.80227685,-0.80208355,-0.80227685,-0.80227685,-0.80218023,-0.80227685,-0.8023735,-0.8025668,-0.80247015,-0.80208355,-0.80218023,-0.80247015,-0.8023735,-0.80218023,-0.80208355,-0.80227685,-0.80247015,-0.80247015,-0.80218023,-0.80218023,-0.80227685,-0.80218023,-0.80218023,-0.80227685,-0.80227685,-0.80218023,-0.8023735,-0.8023735,-0.8023735,-0.80247015,-0.8025668,-0.80247015,-0.80227685,-0.80247015,-0.80266345,-0.8023735,-0.80227685,-0.8023735,-0.8023735,-0.80218023,-0.8023735,-0.8025668,-0.8023735,-0.8023735,-0.80247015,-0.80227685,-0.8023735,-0.80247015,-0.8027601,-0.8025668,-0.8023735,-0.80247015,-0.80247015,-0.8023735,-0.80247015,-0.8025668,-0.8025668,-0.80266345,-0.80227685,-0.8005371,-0.79860395,-0.79860395,-0.7977341,-0.7943513,-0.794158,-0.79725087,-0.79802406,-0.79705757,-0.7969609,-0.7977341,-0.79812074,-0.79792744,-0.79783076,-0.79812074,-0.79860395,-0.7991839,-0.7988939,-0.79850733,-0.7990872,-0.7997638,-0.80005383,-0.8001505,-0.80005383,-0.79986054,-0.7997638,-0.7996672,-0.7994738,-0.7992805,-0.7991839,-0.7989906,-0.79870063,-0.79850733,-0.79821736,-0.7971542,-0.79522115,-0.793868,-0.79464126,-0.79580104,-0.79502785,-0.7929981,-0.79058176,-0.7883587,-0.7893253,-0.7920315,-0.7923215,-0.7937714,-0.79850733,-0.80024713,-0.7992805,-0.7994738,-0.7993772,-0.79870063,-0.79850733,-0.79841065,-0.79831403,-0.79812074,-0.79821736,-0.79831403,-0.79783076,-0.7990872,-0.80131036,-0.80131036,-0.7991839,-0.79812074,-0.79831403,-0.79812074,-0.79812074,-0.79841065,-0.79841065,-0.79860395,-0.7995705,-0.8004405,-0.79986054,-0.7995705,-0.8003438,-0.79812074,-0.794158,-0.7930947,-0.79154825,-0.7889387,-0.7894219,-0.79154825,-0.7936747,-0.7958977,-0.7959944,-0.79502785,-0.7958977,-0.7977341,-0.79860395,-0.7990872,-0.7994738,-0.7992805,-0.7991839,-0.7994738,-0.7996672,-0.7996672,-0.7997638,-0.7997638,-0.7999572,-0.8001505,-0.8001505,-0.7997638,-0.7993772,-0.7991839,-0.7991839,-0.7989906,-0.79812074,-0.7973475,-0.79744416,-0.7971542,-0.79541445,-0.79483455,-0.7955111,-0.7936747,-0.79145163,-0.793868,-0.79725087,-0.7967676,-0.7966709,-0.7989906,-0.8008271,-0.80169696,-0.8019869,-0.80208355,-0.8023735,-0.80227685,-0.80218023,-0.80208355,-0.8019869,-0.80218023,-0.80227685,-0.80218023,-0.80218023,-0.80218023,-0.80208355,-0.80227685,-0.80208355,-0.80189025,-0.80218023,-0.80247015,-0.8023735,-0.80208355,-0.80208355,-0.80218023,-0.80227685,-0.80208355,-0.8019869,-0.80218023,-0.80227685,-0.80218023,-0.8023735,-0.80247015,-0.8023735,-0.80218023,-0.80218023,-0.80227685,-0.80227685,-0.80227685,-0.80227685,-0.80227685,-0.80227685,-0.80227685,-0.80227685,-0.80227685,-0.80227685,-0.80227685,-0.8023735,-0.80227685,-0.80208355,-0.80218023,-0.8023735,-0.8023735,-0.80218023,-0.8019869,-0.80208355,-0.80227685,-0.80218023,-0.8017936,-0.8019869,-0.80247015,-0.8023735,-0.80227685,-0.8019869,-0.80169696,-0.80169696,-0.801407,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.801407,-0.8023735,-0.80247015,-0.80247015,-0.8025668,-0.8025668,-0.8025668,-0.8025668,-0.8023735,-0.8023735,-0.8025668,-0.80266345,-0.8023735,-0.8023735,-0.8025668,-0.80247015,-0.80247015,-0.80247015,-0.80247015,-0.80247015,-0.80247015,-0.80247015,-0.80247015,-0.8023735,-0.8023735,-0.8023735,-0.8023735,-0.8023735,-0.80247015,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80247015,-0.80227685,-0.80266345,-0.8027601,-0.8023735,-0.80218023,-0.8023735,-0.80227685,-0.80218023,-0.8023735,-0.8025668,-0.8023735,-0.80247015,-0.80266345,-0.80247015,-0.8023735,-0.80247015,-0.80266345,-0.8025668,-0.80247015,-0.8025668,-0.80266345,-0.8025668,-0.80247015,-0.8025668,-0.80266345,-0.80247015,-0.801117,-0.7988939,-0.79850733,-0.79821736,-0.79512453,-0.79444796,-0.79802406,-0.7996672,-0.7988939,-0.79841065,-0.79821736,-0.79792744,-0.7975408,-0.7975408,-0.7977341,-0.79792744,-0.79841065,-0.79850733,-0.79821736,-0.79870063,-0.7993772,-0.7996672,-0.7999572,-0.80005383,-0.7999572,-0.7997638,-0.7995705,-0.7995705,-0.7993772,-0.7990872,-0.7989906,-0.7989906,-0.7987973,-0.7987973,-0.79860395,-0.7977341,-0.7959944,-0.7943513,-0.7943513,-0.79464126,-0.7922248,-0.7896152,-0.78855205,-0.7878755,-0.7895186,-0.7921282,-0.7928048,-0.79512453,-0.7992805,-0.7999572,-0.7990872,-0.7991839,-0.79870063,-0.79792744,-0.79792744,-0.79792744,-0.79783076,-0.79763746,-0.7975408,-0.79792744,-0.79850733,-0.7997638,-0.8010204,-0.8005371,-0.79860395,-0.7977341,-0.79763746,-0.79744416,-0.79763746,-0.79802406,-0.79792744,-0.79812074,-0.79870063,-0.7996672,-0.80005383,-0.7999572,-0.8006338,-0.7988939,-0.7945446,-0.7930947,-0.79164493,-0.78864866,-0.788842,-0.79087174,-0.7924181,-0.79464126,-0.7955111,-0.79502785,-0.7961877,-0.79831403,-0.7992805,-0.7995705,-0.79986054,-0.7997638,-0.7993772,-0.7993772,-0.7996672,-0.7999572,-0.7999572,-0.7997638,-0.80005383,-0.8003438,-0.80024713,-0.7999572,-0.7993772,-0.7987973,-0.7989906,-0.7989906,-0.79831403,-0.79792744,-0.7975408,-0.79725087,-0.7971542,-0.7961877,-0.79541445,-0.79580104,-0.79444796,-0.7924181,-0.7939647,-0.796381,-0.796381,-0.79725087,-0.7994738,-0.8008271,-0.8016003,-0.80208355,-0.80227685,-0.80218023,-0.80218023,-0.80218023,-0.8019869,-0.80208355,-0.80227685,-0.80218023,-0.80208355,-0.80208355,-0.80208355,-0.8019869,-0.80189025,-0.8019869,-0.80227685,-0.80218023,-0.80208355,-0.8019869,-0.8019869,-0.80227685,-0.80227685,-0.80208355,-0.80208355,-0.80208355,-0.80208355,-0.80227685,-0.8023735,-0.8023735,-0.80218023,-0.80208355,-0.80227685,-0.80208355,-0.8017936,-0.8019869,-0.80218023,-0.80218023,-0.80227685,-0.80208355,-0.80208355,-0.80227685,-0.80208355,-0.80218023,-0.8023735,-0.8023735,-0.80218023,-0.80218023,-0.80227685,-0.80227685,-0.80218023,-0.80208355,-0.80208355,-0.80227685,-0.80247015,-0.8023735,-0.8023735,-0.80247015,-0.8023735,-0.80227685,-0.80227685,-0.8019869,-0.80169696,-0.80218023,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80189025,-0.8023735,-0.80247015,-0.80247015,-0.8027601,-0.80266345,-0.80247015,-0.80247015,-0.8023735,-0.8023735,-0.8023735,-0.80247015,-0.80227685,-0.80227685,-0.8025668,-0.80266345,-0.80247015,-0.80247015,-0.8023735,-0.80247015,-0.8025668,-0.80247015,-0.80227685,-0.80218023,-0.80227685,-0.80227685,-0.80227685,-0.80247015,-0.80247015,-0.8023735,-0.80247015,-0.80247015,-0.80247015,-0.8023735,-0.80227685,-0.80247015,-0.8025668,-0.8023735,-0.80247015,-0.80247015,-0.8023735,-0.8023735,-0.8023735,-0.80247015,-0.8025668,-0.8023735,-0.8023735,-0.80266345,-0.80266345,-0.80247015,-0.8025668,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80189025,-0.7994738,-0.79821736,-0.79831403,-0.796091,-0.79464126,-0.79812074,-0.8007304,-0.7995705,-0.7987973,-0.79870063,-0.79783076,-0.7975408,-0.7977341,-0.79744416,-0.79744416,-0.79802406,-0.79802406,-0.7973475,-0.79763746,-0.79850733,-0.7989906,-0.7992805,-0.7996672,-0.7996672,-0.7997638,-0.7995705,-0.7993772,-0.7994738,-0.7994738,-0.7990872,-0.7989906,-0.7987973,-0.79870063,-0.7987973,-0.79841065,-0.7977341,-0.796381,-0.7943513,-0.7930947,-0.7920315,-0.7897119,-0.7879721,-0.7872955,-0.7874888,-0.7904851,-0.7933847,-0.7937714,-0.796091,-0.7995705,-0.80005383,-0.7992805,-0.7988939,-0.79812074,-0.79763746,-0.79744416,-0.7973475,-0.79744416,-0.7973475,-0.79763746,-0.79783076,-0.79744416,-0.79860395,-0.8007304,-0.8003438,-0.79802406,-0.79744416,-0.79763746,-0.79725087,-0.79725087,-0.7975408,-0.7975408,-0.7975408,-0.79783076,-0.7988939,-0.7996672,-0.79986054,-0.8006338,-0.7990872,-0.79502785,-0.793288,-0.7923215,-0.7898086,-0.78855205,-0.7889387,-0.7904851,-0.7928048,-0.7936747,-0.7943513,-0.796091,-0.79792744,-0.7992805,-0.7997638,-0.7995705,-0.7995705,-0.7995705,-0.7994738,-0.7997638,-0.80005383,-0.8001505,-0.80005383,-0.7999572,-0.8001505,-0.80024713,-0.7999572,-0.7991839,-0.7987973,-0.7989906,-0.7987973,-0.79821736,-0.79802406,-0.7977341,-0.79744416,-0.79763746,-0.7973475,-0.7965743,-0.7966709,-0.79725087,-0.79560775,-0.7931914,-0.7939647,-0.796091,-0.7965743,-0.7975408,-0.7996672,-0.801117,-0.8019869,-0.80218023,-0.8019869,-0.8019869,-0.80218023,-0.80208355,-0.8019869,-0.80218023,-0.8019869,-0.8017936,-0.80189025,-0.80208355,-0.80208355,-0.8019869,-0.80218023,-0.80227685,-0.80208355,-0.80208355,-0.80227685,-0.80218023,-0.8019869,-0.80218023,-0.80218023,-0.80208355,-0.80208355,-0.80208355,-0.80208355,-0.80227685,-0.80218023,-0.80208355,-0.80208355,-0.80218023,-0.80218023,-0.8019869,-0.8019869,-0.80218023,-0.80218023,-0.80227685,-0.80227685,-0.80208355,-0.80227685,-0.8023735,-0.80227685,-0.80227685,-0.80208355,-0.8019869,-0.80218023,-0.80208355,-0.8019869,-0.8019869,-0.8019869,-0.80218023,-0.8023735,-0.80227685,-0.80208355,-0.80208355,-0.80227685,-0.8023735,-0.80227685,-0.80218023,-0.80189025,-0.801407,-0.8010204,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8010204,-0.8025668,-0.80218023,-0.80227685,-0.80247015,-0.80227685,-0.80227685,-0.8023735,-0.8023735,-0.80227685,-0.80218023,-0.80227685,-0.80208355,-0.80227685,-0.8023735,-0.80227685,-0.80247015,-0.8025668,-0.8025668,-0.8023735,-0.8023735,-0.80247015,-0.80218023,-0.80218023,-0.8023735,-0.80227685,-0.80227685,-0.8023735,-0.80247015,-0.8025668,-0.8025668,-0.80247015,-0.80266345,-0.80247015,-0.80227685,-0.80247015,-0.80247015,-0.80227685,-0.80247015,-0.8025668,-0.8025668,-0.8025668,-0.8025668,-0.80247015,-0.80247015,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8023735,-0.8005371,-0.79831403,-0.79802406,-0.7968642,-0.7949312,-0.79783076,-0.80150366,-0.8006338,-0.7989906,-0.7992805,-0.7989906,-0.7977341,-0.79725087,-0.7971542,-0.7968642,-0.7973475,-0.79802406,-0.79783076,-0.7975408,-0.7977341,-0.79812074,-0.79870063,-0.7990872,-0.7992805,-0.7993772,-0.7994738,-0.7993772,-0.7993772,-0.7994738,-0.7994738,-0.7992805,-0.7988939,-0.7987973,-0.7987973,-0.79831403,-0.7977341,-0.7969609,-0.79502785,-0.793288,-0.7919349,-0.7902918,-0.7893253,-0.78826207,-0.7865223,-0.7874888,-0.7919349,-0.79425466,-0.7943513,-0.7969609,-0.7999572,-0.80005383,-0.7990872,-0.79802406,-0.79744416,-0.7973475,-0.79705757,-0.7971542,-0.79725087,-0.7969609,-0.7971542,-0.79763746,-0.79744416,-0.7987973,-0.8006338,-0.7997638,-0.7977341,-0.79744416,-0.7973475,-0.7966709,-0.7965743,-0.7968642,-0.79705757,-0.7971542,-0.7973475,-0.79850733,-0.7995705,-0.7995705,-0.80005383,-0.7991839,-0.7959944,-0.7940613,-0.7929014,-0.79019517,-0.7881654,-0.7883587,-0.7899052,-0.79164493,-0.7923215,-0.79357797,-0.7958977,-0.79783076,-0.7988939,-0.7993772,-0.7993772,-0.7993772,-0.7993772,-0.7995705,-0.79986054,-0.8001505,-0.80024713,-0.80005383,-0.79986054,-0.80005383,-0.80005383,-0.7997638,-0.7992805,-0.7988939,-0.79870063,-0.79850733,-0.79821736,-0.79763746,-0.79725087,-0.7975408,-0.79792744,-0.7975408,-0.7975408,-0.79821736,-0.7987973,-0.7987973,-0.7966709,-0.7939647,-0.79444796,-0.796091,-0.7964776,-0.79802406,-0.8001505,-0.801407,-0.80189025,-0.80169696,-0.80189025,-0.8019869,-0.8019869,-0.80189025,-0.80189025,-0.80189025,-0.80189025,-0.80189025,-0.8019869,-0.80218023,-0.80218023,-0.80208355,-0.8019869,-0.80208355,-0.8019869,-0.80189025,-0.80189025,-0.80189025,-0.80208355,-0.80218023,-0.80208355,-0.80208355,-0.80218023,-0.80218023,-0.80218023,-0.80218023,-0.80208355,-0.80218023,-0.80218023,-0.80218023,-0.80218023,-0.80218023,-0.80218023,-0.80218023,-0.80227685,-0.80247015,-0.8023735,-0.80218023,-0.80227685,-0.80227685,-0.80218023,-0.80208355,-0.80208355,-0.8019869,-0.8019869,-0.80218023,-0.80227685,-0.80227685,-0.80218023,-0.80208355,-0.80218023,-0.80227685,-0.80247015,-0.80247015,-0.80218023,-0.80227685,-0.80247015,-0.80266345,-0.80227685,-0.7999572,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8016003,-0.8023735,-0.80218023,-0.80247015,-0.8023735,-0.80208355,-0.80227685,-0.8023735,-0.80227685,-0.8023735,-0.8023735,-0.80227685,-0.80227685,-0.80227685,-0.80247015,-0.80247015,-0.80247015,-0.80266345,-0.80247015,-0.8023735,-0.8025668,-0.8025668,-0.8023735,-0.8023735,-0.8025668,-0.8025668,-0.80247015,-0.80247015,-0.8025668,-0.8025668,-0.8025668,-0.80247015,-0.80247015,-0.8023735,-0.80247015,-0.8023735,-0.80218023,-0.8023735,-0.8025668,-0.8025668,-0.8025668,-0.80247015,-0.8023735,-0.80247015,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80247015,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80131036,-0.79870063,-0.79763746,-0.7971542,-0.79502785,-0.7964776,-0.80150366,-0.80218023,-0.7996672,-0.7989906,-0.7997638,-0.7996672,-0.79831403,-0.7971542,-0.7966709,-0.7966709,-0.7973475,-0.79792744,-0.79812074,-0.79821736,-0.79812074,-0.79831403,-0.79860395,-0.7988939,-0.7991839,-0.7993772,-0.7993772,-0.7992805,-0.7990872,-0.7988939,-0.7989906,-0.7990872,-0.79870063,-0.79850733,-0.79841065,-0.7977341,-0.7971542,-0.79541445,-0.7929981,-0.7923215,-0.7917416,-0.7902918,-0.7895186,-0.7881654,-0.78661895,-0.789132,-0.79348135,-0.7945446,-0.79512453,-0.79812074,-0.80005383,-0.7996672,-0.79821736,-0.7971542,-0.79725087,-0.79725087,-0.7965743,-0.7965743,-0.7967676,-0.7964776,-0.7969609,-0.79744416,-0.7969609,-0.79870063,-0.801117,-0.79986054,-0.79744416,-0.7973475,-0.7971542,-0.7962843,-0.7961877,-0.7962843,-0.7965743,-0.7967676,-0.7969609,-0.79850733,-0.7999572,-0.7996672,-0.7997638,-0.7995705,-0.7968642,-0.7947379,-0.7937714,-0.79058176,-0.7873922,-0.7876822,-0.7894219,-0.79087174,-0.7924181,-0.7939647,-0.79580104,-0.79763746,-0.79850733,-0.79870063,-0.7989906,-0.7991839,-0.7992805,-0.7992805,-0.7994738,-0.79986054,-0.7999572,-0.79986054,-0.7996672,-0.7997638,-0.79986054,-0.7997638,-0.7993772,-0.7988939,-0.79831403,-0.79821736,-0.79812074,-0.79725087,-0.7964776,-0.7968642,-0.7973475,-0.79705757,-0.7971542,-0.79812074,-0.7991839,-0.80005383,-0.8001505,-0.7975408,-0.79444796,-0.79483455,-0.796381,-0.7969609,-0.79850733,-0.8006338,-0.8016003,-0.80189025,-0.80189025,-0.80189025,-0.80189025,-0.8017936,-0.8017936,-0.8019869,-0.80189025,-0.8017936,-0.8019869,-0.80208355,-0.80218023,-0.80218023,-0.8019869,-0.8019869,-0.8019869,-0.8019869,-0.8019869,-0.80218023,-0.80218023,-0.80218023,-0.80227685,-0.8023735,-0.80227685,-0.80227685,-0.80227685,-0.80218023,-0.80208355,-0.80208355,-0.80208355,-0.80218023,-0.8019869,-0.80208355,-0.80208355,-0.80189025,-0.80218023,-0.8023735,-0.80218023,-0.80208355,-0.80218023,-0.80227685,-0.80218023,-0.80218023,-0.80218023,-0.80189025,-0.80189025,-0.8023735,-0.8023735,-0.80208355,-0.80208355,-0.80218023,-0.80227685,-0.80218023,-0.80218023,-0.80227685,-0.80247015,-0.8025668,-0.8025668,-0.80227685,-0.801407,-0.80169696,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80131036,-0.80150366,-0.8019869,-0.8023735,-0.80208355,-0.80218023,-0.80227685,-0.80218023,-0.80227685,-0.8023735,-0.80247015,-0.80247015,-0.8023735,-0.80227685,-0.80247015,-0.8025668,-0.8023735,-0.8023735,-0.80247015,-0.80218023,-0.80218023,-0.8023735,-0.80247015,-0.80227685,-0.80227685,-0.80227685,-0.80227685,-0.80247015,-0.80266345,-0.8025668,-0.8023735,-0.8023735,-0.8023735,-0.8023735,-0.8023735,-0.8023735,-0.80227685,-0.8023735,-0.8023735,-0.8023735,-0.8023735,-0.80247015,-0.80247015,-0.8023735,-0.80247015,-0.80247015,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8019869,-0.7997638,-0.7967676,-0.7965743,-0.7962843,-0.79522115,-0.7991839,-0.8025668,-0.801117,-0.7993772,-0.7987973,-0.7993772,-0.80024713,-0.79870063,-0.7968642,-0.7967676,-0.79725087,-0.79744416,-0.7975408,-0.79792744,-0.79812074,-0.79783076,-0.79802406,-0.79812074,-0.79812074,-0.79850733,-0.7991839,-0.7993772,-0.7991839,-0.7988939,-0.7987973,-0.7989906,-0.7987973,-0.79850733,-0.79821736,-0.7977341,-0.79705757,-0.7959944,-0.7939647,-0.7921282,-0.7917416,-0.79164493,-0.79116166,-0.7897119,-0.7872955,-0.7875855,-0.79164493,-0.7947379,-0.79502785,-0.7967676,-0.7994738,-0.7997638,-0.79860395,-0.79763746,-0.79725087,-0.79725087,-0.7967676,-0.7961877,-0.7962843,-0.796381,-0.7962843,-0.7969609,-0.7973475,-0.79725087,-0.7995705,-0.8016003,-0.7995705,-0.7971542,-0.79725087,-0.7969609,-0.7961877,-0.7959944,-0.796091,-0.7964776,-0.7966709,-0.7967676,-0.79841065,-0.8005371,-0.80005383,-0.79850733,-0.79841065,-0.79783076,-0.7958977,-0.79425466,-0.79106504,-0.7871022,-0.78642565,-0.78864866,-0.79077506,-0.7918382,-0.7929981,-0.79483455,-0.7966709,-0.79821736,-0.7987973,-0.79860395,-0.7987973,-0.7992805,-0.7992805,-0.7993772,-0.7996672,-0.7997638,-0.7996672,-0.7995705,-0.7994738,-0.7994738,-0.7994738,-0.7991839,-0.79850733,-0.79821736,-0.79783076,-0.7968642,-0.7965743,-0.7965743,-0.7961877,-0.7961877,-0.7965743,-0.7968642,-0.7975408,-0.79821736,-0.7988939,-0.80024713,-0.8005371,-0.7971542,-0.794158,-0.79522115,-0.7964776,-0.7969609,-0.7988939,-0.8008271,-0.80150366,-0.8017936,-0.8017936,-0.80169696,-0.8016003,-0.8017936,-0.80189025,-0.80169696,-0.8017936,-0.8017936,-0.8017936,-0.80189025,-0.80189025,-0.80189025,-0.8019869,-0.8019869,-0.80218023,-0.80218023,-0.80189025,-0.8019869,-0.80218023,-0.8019869,-0.80208355,-0.80218023,-0.8019869,-0.80189025,-0.8019869,-0.8019869,-0.8017936,-0.8019869,-0.80218023,-0.80208355,-0.80208355,-0.80208355,-0.8019869,-0.80218023,-0.80218023,-0.80208355,-0.80218023,-0.80227685,-0.80227685,-0.80227685,-0.8019869,-0.8019869,-0.80208355,-0.80218023,-0.80227685,-0.80227685,-0.80227685,-0.80227685,-0.8023735,-0.80227685,-0.8023735,-0.80227685,-0.8023735,-0.80266345,-0.80266345,-0.8025668,-0.80189025,-0.8023735,-0.8019869,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8025668,-0.80266345,-0.80189025,-0.8017936,-0.8019869,-0.80218023,-0.80227685,-0.80218023,-0.80227685,-0.80218023,-0.80218023,-0.80227685,-0.80227685,-0.80208355,-0.80218023,-0.80218023,-0.80218023,-0.80227685,-0.80218023,-0.80208355,-0.8019869,-0.80208355,-0.80218023,-0.8023735,-0.80227685,-0.80208355,-0.80218023,-0.80247015,-0.8023735,-0.80218023,-0.80218023,-0.80218023,-0.80227685,-0.80218023,-0.80208355,-0.8023735,-0.80247015,-0.80218023,-0.80218023,-0.80227685,-0.80247015,-0.8025668,-0.8025668,-0.80247015,-0.80247015,-0.80247015,-0.8025668,-0.8027601,-0.80266345,-0.8023735,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.80208355,-0.8010204,-0.79783076,-0.79502785,-0.7957044,-0.7955111,-0.7965743,-0.8010204,-0.8019869,-0.8003438,-0.7993772,-0.79792744,-0.79870063,-0.8006338,-0.7994738,-0.7971542,-0.7966709,-0.7968642,-0.7967676,-0.7967676,-0.7975408,-0.79802406,-0.7977341,-0.7973475,-0.79725087,-0.79725087,-0.7977341,-0.79821736,-0.79860395,-0.7987973,-0.7987973,-0.7988939,-0.7988939,-0.79841065,-0.79802406,-0.79783076,-0.7971542,-0.7962843,-0.79512453,-0.7930947,-0.79135495,-0.7920315,-0.7933847,-0.7931914,-0.79019517,-0.78661895,-0.7878755,-0.793288,-0.7958977,-0.7961877,-0.79831403,-0.80005383,-0.7989906,-0.7975408,-0.7971542,-0.7971542,-0.7968642,-0.7961877,-0.7961877,-0.7965743,-0.7964776,-0.796381,-0.7969609,-0.7973475,-0.79792744,-0.8004405,-0.8016003,-0.7988939,-0.79705757,-0.7973475,-0.7968642,-0.7964776,-0.796381,-0.7958977,-0.7959944,-0.7964776,-0.7964776,-0.7968642,-0.79870063,-0.8001505,-0.7996672,-0.7990872,-0.7989906,-0.79744416,-0.79483455,-0.7917416,-0.7879721,-0.78642565,-0.788842,-0.79164493,-0.79135495,-0.79135495,-0.79348135,-0.7958977,-0.7973475,-0.79812074,-0.79812074,-0.79821736,-0.79870063,-0.7989906,-0.7992805,-0.7994738,-0.7992805,-0.7992805,-0.7993772,-0.7991839,-0.7990872,-0.7990872,-0.7991839,-0.7989906,-0.79812074,-0.7968642,-0.796091,-0.796381,-0.7966709,-0.7961877,-0.7961877,-0.7966709,-0.7968642,-0.79763746,-0.79812074,-0.7975408,-0.79812074,-0.8006338,-0.8004405,-0.7961877,-0.79425466,-0.7957044,-0.7962843,-0.79744416,-0.7996672,-0.8010204,-0.80169696,-0.8017936,-0.8016003,-0.80169696,-0.8017936,-0.8017936,-0.80169696,-0.8017936,-0.80189025,-0.8019869,-0.8019869,-0.8019869,-0.80189025,-0.8017936,-0.80189025,-0.8019869,-0.80189025,-0.80189025,-0.80189025,-0.8019869,-0.8019869,-0.8019869,-0.8019869,-0.8019869,-0.8019869,-0.8019869,-0.8019869,-0.80208355,-0.80208355,-0.8019869,-0.8019869,-0.80189025,-0.80189025,-0.80208355,-0.80218023,-0.80208355,-0.80227685,-0.80227685,-0.80208355,-0.80218023,-0.80218023,-0.80208355,-0.80227685,-0.8023735,-0.80227685,-0.80227685,-0.80218023,-0.80218023,-0.80227685,-0.8023735,-0.80218023,-0.80227685,-0.80227685,-0.80218023,-0.8023735,-0.80208355,-0.80208355,-0.80227685,-0.8025668,-0.8025668,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8009237,-0.801407,-0.80208355,-0.8012137,-0.8019869,-0.8017936,-0.8017936,-0.80208355,-0.8019869,-0.8019869,-0.80208355,-0.80227685,-0.80227685,-0.80227685,-0.80218023,-0.80227685,-0.8023735,-0.80218023,-0.80218023,-0.80218023,-0.80218023,-0.80218023,-0.8023735,-0.8023735,-0.80247015,-0.80247015,-0.80247015,-0.80208355,-0.80218023,-0.8023735,-0.80218023,-0.80218023,-0.80227685,-0.80227685,-0.80227685,-0.80247015,-0.80247015,-0.8023735,-0.80227685,-0.80227685,-0.8023735,-0.8023735,-0.8025668,-0.80247015,-0.80227685,-0.80247015,-0.8025668,-0.8025668,-0.80247015,-0.8023735,-0.80247015,-0.80247015,-0.80247015,-0.80247015,-0.80247015,-0.80247015,-0.8025668,-0.8016003,-0.7997638,-0.7961877,-0.79502785,-0.7953178,-0.79483455,-0.79831403,-0.8016003,-0.8005371,-0.7997638,-0.7990872,-0.79763746,-0.7991839,-0.80150366,-0.8003438,-0.7975408,-0.7965743,-0.7968642,-0.7967676,-0.7967676,-0.7971542,-0.7971542,-0.7969609,-0.7965743,-0.7965743,-0.7971542,-0.79763746,-0.79792744,-0.79841065,-0.79860395,-0.79802406,-0.79792744,-0.79831403,-0.79821736,-0.7977341,-0.7971542,-0.796381,-0.79560775,-0.7940613,-0.7919349,-0.7918382,-0.7940613,-0.79512453,-0.7940613,-0.7898086,-0.78632903,-0.78845537,-0.7940613,-0.796381,-0.7971542,-0.7994738,-0.7995705,-0.79763746,-0.7969609,-0.79705757,-0.7967676,-0.7962843,-0.796091,-0.7964776,-0.7966709,-0.7962843,-0.7964776,-0.7971542,-0.79705757,-0.7975408,-0.8003438,-0.80131036,-0.79850733,-0.7969609,-0.7971542,-0.7966709,-0.796381,-0.796381,-0.7958977,-0.79580104,-0.7961877,-0.796381,-0.7961877,-0.7966709,-0.79821736,-0.8004405,-0.80150366,-0.8001505,-0.79812074,-0.796381,-0.7931914,-0.78874534,-0.78661895,-0.789132,-0.7929014,-0.7919349,-0.79000187,-0.7922248,-0.7949312,-0.7962843,-0.7973475,-0.79783076,-0.7977341,-0.79812074,-0.79870063,-0.7987973,-0.7987973,-0.7988939,-0.7989906,-0.7988939,-0.79860395,-0.79850733,-0.79860395,-0.79870063,-0.79860395,-0.79783076,-0.7968642,-0.7968642,-0.7969609,-0.7967676,-0.7968642,-0.7966709,-0.796381,-0.79705757,-0.79841065,-0.7987973,-0.79763746,-0.7973475,-0.7994738,-0.8016003,-0.7992805,-0.79560775,-0.79560775,-0.7959944,-0.796091,-0.79831403,-0.8004405,-0.80131036,-0.8017936,-0.80169696,-0.80169696,-0.80189025,-0.80189025,-0.8017936,-0.8017936,-0.80189025,-0.8019869,-0.8019869,-0.80208355,-0.80208355,-0.80189025,-0.8017936,-0.80189025,-0.8017936,-0.8016003,-0.80189025,-0.80208355,-0.8019869,-0.8019869,-0.8019869,-0.80218023,-0.80247015,-0.80218023,-0.8019869,-0.80227685,-0.80218023,-0.80208355,-0.80218023,-0.8019869,-0.80189025,-0.80208355,-0.80227685,-0.80227685,-0.80218023,-0.80227685,-0.8023735,-0.80218023,-0.8019869,-0.80218023,-0.8023735,-0.80218023,-0.80208355,-0.80227685,-0.80227685,-0.80208355,-0.80208355,-0.80218023,-0.80227685,-0.8023735,-0.80218023,-0.8019869,-0.80247015,-0.8025668,-0.8023735,-0.80227685,-0.80169696,-0.801407,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80131036,-0.80189025,-0.8016003,-0.8019869,-0.80227685,-0.8019869,-0.80208355,-0.8019869,-0.80218023,-0.80227685,-0.80227685,-0.8023735,-0.8023735,-0.80227685,-0.8019869,-0.80208355,-0.80208355,-0.80208355,-0.80208355,-0.80208355,-0.80218023,-0.80227685,-0.80227685,-0.80227685,-0.80208355,-0.8017936,-0.80208355,-0.8023735,-0.80227685,-0.80227685,-0.80227685,-0.80218023,-0.8023735,-0.8023735,-0.80227685,-0.80247015,-0.80247015,-0.80247015,-0.8025668,-0.8025668,-0.8023735,-0.8023735,-0.8023735,-0.80247015,-0.80227685,-0.80227685,-0.80247015,-0.8025668,-0.8023735,-0.80247015,-0.8023735,-0.8023735,-0.8023735,-0.80227685,-0.8023735,-0.80247015,-0.80189025,-0.8005371,-0.79802406,-0.7949312,-0.79502785,-0.79541445,-0.7959944,-0.7991839,-0.8005371,-0.7999572,-0.8001505,-0.7991839,-0.79821736,-0.7994738,-0.801407,-0.8012137,-0.79870063,-0.7966709,-0.7965743,-0.7966709,-0.7966709,-0.7964776,-0.7962843,-0.796381,-0.7962843,-0.7958977,-0.7957044,-0.7961877,-0.79705757,-0.79821736,-0.79841065,-0.79744416,-0.79725087,-0.79802406,-0.79783076,-0.79705757,-0.7964776,-0.7958977,-0.7945446,-0.7929981,-0.793288,-0.7945446,-0.7947379,-0.79357797,-0.7904851,-0.7871022,-0.7859424,-0.7889387,-0.7940613,-0.7969609,-0.79821736,-0.7994738,-0.79850733,-0.7967676,-0.7966709,-0.7967676,-0.7962843,-0.796091,-0.7961877,-0.7962843,-0.7966709,-0.7967676,-0.796381,-0.7967676,-0.79705757,-0.79725087,-0.7992805,-0.80024713,-0.79812074,-0.79705757,-0.79705757,-0.7965743,-0.7964776,-0.7966709,-0.7962843,-0.79580104,-0.7958977,-0.796381,-0.7964776,-0.7965743,-0.7971542,-0.79850733,-0.8005371,-0.8007304,-0.7989906,-0.79744416,-0.7943513,-0.7892286,-0.7867156,-0.78874534,-0.7926115,-0.79357797,-0.79096836,-0.79116166,-0.7939647,-0.7957044,-0.7967676,-0.79792744,-0.79802406,-0.7977341,-0.79812074,-0.79860395,-0.79850733,-0.79831403,-0.79812074,-0.79812074,-0.79792744,-0.79725087,-0.7971542,-0.79763746,-0.79763746,-0.7975408,-0.79744416,-0.7969609,-0.7967676,-0.7966709,-0.796381,-0.7959944,-0.7959944,-0.79705757,-0.7991839,-0.7995705,-0.79792744,-0.7975408,-0.7988939,-0.80131036,-0.80131036,-0.79744416,-0.7958977,-0.796381,-0.79512453,-0.7961877,-0.7992805,-0.8006338,-0.8016003,-0.80189025,-0.8016003,-0.8017936,-0.8017936,-0.8017936,-0.8017936,-0.80169696,-0.80169696,-0.80169696,-0.8017936,-0.80208355,-0.80189025,-0.8017936,-0.80189025,-0.80189025,-0.80189025,-0.8019869,-0.80189025,-0.8017936,-0.80189025,-0.80189025,-0.80189025,-0.80189025,-0.80218023,-0.80218023,-0.80189025,-0.80169696,-0.8017936,-0.80208355,-0.80189025,-0.80189025,-0.80208355,-0.80208355,-0.8019869,-0.80208355,-0.8023735,-0.80227685,-0.8019869,-0.80208355,-0.80208355,-0.80208355,-0.80218023,-0.80218023,-0.8019869,-0.80208355,-0.80227685,-0.80218023,-0.80208355,-0.80227685,-0.80218023,-0.80218023,-0.8019869,-0.80227685,-0.80227685,-0.80247015,-0.80208355,-0.80218023,-0.80024713,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8017936,-0.8017936,-0.80189025,-0.80208355,-0.8023735,-0.80208355,-0.80189025,-0.8019869,-0.80218023,-0.8023735,-0.80227685,-0.80227685,-0.80218023,-0.80208355,-0.80227685,-0.80227685,-0.80208355,-0.80208355,-0.8019869,-0.8019869,-0.80227685,-0.8023735,-0.80227685,-0.80227685,-0.80227685,-0.80218023,-0.80218023,-0.8023735,-0.80218023,-0.80208355,-0.80218023,-0.80218023,-0.80218023,-0.80218023,-0.80218023,-0.80227685,-0.8023735,-0.80227685,-0.80247015,-0.8025668,-0.80247015,-0.8023735,-0.8023735,-0.80227685,-0.80227685,-0.80227685,-0.8023735,-0.80247015,-0.8023735,-0.8023735,-0.80227685,-0.80218023,-0.8023735,-0.80218023,-0.80227685,-0.80227685,-0.80131036,-0.7994738,-0.7957044,-0.7936747,-0.7947379,-0.79502785,-0.7959944,-0.79792744,-0.79870063,-0.7995705,-0.79986054,-0.7996672,-0.7999572,-0.7999572,-0.8008271,-0.8019869,-0.80024713,-0.79744416,-0.7964776,-0.7964776,-0.7966709,-0.7973475,-0.79744416,-0.79705757,-0.7962843,-0.79512453,-0.79444796,-0.7947379,-0.7957044,-0.79725087,-0.79783076,-0.7973475,-0.79744416,-0.79763746,-0.7969609,-0.7966709,-0.7965743,-0.79502785,-0.79357797,-0.79483455,-0.79560775,-0.79444796,-0.7923215,-0.789132,-0.7869089,-0.78603905,-0.78632903,-0.7893253,-0.79444796,-0.79763746,-0.7989906,-0.7991839,-0.79783076,-0.7967676,-0.7966709,-0.796381,-0.796091,-0.7959944,-0.7961877,-0.7964776,-0.7966709,-0.7966709,-0.796381,-0.7964776,-0.7971542,-0.7975408,-0.79821736,-0.7987973,-0.79802406,-0.7971542,-0.7968642,-0.7964776,-0.7965743,-0.7967676,-0.7965743,-0.7961877,-0.7957044,-0.79560775,-0.7961877,-0.7968642,-0.7975408,-0.79812074,-0.7996672,-0.8010204,-0.80024713,-0.79860395,-0.79560775,-0.7897119,-0.7858457,-0.7873922,-0.79164493,-0.79464126,-0.793868,-0.7919349,-0.7931914,-0.79502785,-0.7958977,-0.7968642,-0.79783076,-0.7975408,-0.7973475,-0.79792744,-0.79821736,-0.79802406,-0.79783076,-0.79744416,-0.7966709,-0.7959944,-0.7957044,-0.7961877,-0.7967676,-0.79725087,-0.7973475,-0.7967676,-0.7965743,-0.7962843,-0.79580104,-0.7959944,-0.7958977,-0.79725087,-0.8003438,-0.7995705,-0.7962843,-0.7973475,-0.7997638,-0.8008271,-0.8016003,-0.79860395,-0.79522115,-0.796091,-0.7955111,-0.7945446,-0.79763746,-0.79986054,-0.8008271,-0.80189025,-0.80169696,-0.8016003,-0.8017936,-0.80169696,-0.80169696,-0.80189025,-0.80189025,-0.8017936,-0.80169696,-0.8017936,-0.8019869,-0.80218023,-0.80208355,-0.8019869,-0.80218023,-0.80218023,-0.8017936,-0.80169696,-0.80189025,-0.80189025,-0.8017936,-0.8019869,-0.80208355,-0.80218023,-0.80218023,-0.80218023,-0.80208355,-0.8019869,-0.80208355,-0.80227685,-0.80208355,-0.80169696,-0.8019869,-0.80218023,-0.8019869,-0.80208355,-0.80218023,-0.80208355,-0.80218023,-0.8019869,-0.8019869,-0.80208355,-0.80189025,-0.80208355,-0.80218023,-0.8019869,-0.80208355,-0.80218023,-0.80218023,-0.80208355,-0.80208355,-0.80218023,-0.80189025,-0.80169696,-0.801407,-0.80189025,-0.80208355,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8016003,-0.8017936,-0.8023735,-0.80227685,-0.80208355,-0.80218023,-0.80208355,-0.8019869,-0.80218023,-0.8023735,-0.80227685,-0.80218023,-0.80208355,-0.8019869,-0.80218023,-0.80218023,-0.8019869,-0.80208355,-0.80227685,-0.8023735,-0.80247015,-0.8023735,-0.80208355,-0.80208355,-0.8023735,-0.80247015,-0.80227685,-0.80227685,-0.80227685,-0.80227685,-0.80227685,-0.80218023,-0.80227685,-0.80227685,-0.80218023,-0.80227685,-0.80227685,-0.80227685,-0.8023735,-0.80247015,-0.80227685,-0.8023735,-0.8023735,-0.8023735,-0.80247015,-0.8023735,-0.80247015,-0.8023735,-0.80227685,-0.80218023,-0.80218023,-0.80227685,-0.80247015,-0.80247015,-0.8023735,-0.80169696,-0.8007304,-0.79821736,-0.7937714,-0.7939647,-0.79560775,-0.7945446,-0.79464126,-0.7955111,-0.7968642,-0.79850733,-0.79812074,-0.79792744,-0.7987973,-0.7992805,-0.8005371,-0.8019869,-0.80131036,-0.79831403,-0.7959944,-0.7959944,-0.7966709,-0.7977341,-0.79850733,-0.7975408,-0.7959944,-0.7949312,-0.79425466,-0.794158,-0.79502785,-0.7961877,-0.7967676,-0.7968642,-0.7964776,-0.79560775,-0.79560775,-0.7966709,-0.796091,-0.7936747,-0.7936747,-0.79541445,-0.79560775,-0.7928048,-0.7883587,-0.7858457,-0.7858457,-0.78661895,-0.7876822,-0.79087174,-0.7953178,-0.79831403,-0.7994738,-0.7990872,-0.7977341,-0.7969609,-0.7966709,-0.7961877,-0.7958977,-0.7958977,-0.7964776,-0.7969609,-0.7966709,-0.7965743,-0.7965743,-0.796381,-0.7968642,-0.7975408,-0.7977341,-0.79783076,-0.7975408,-0.7969609,-0.7966709,-0.7965743,-0.7965743,-0.7966709,-0.7966709,-0.796381,-0.7958977,-0.7957044,-0.796091,-0.7966709,-0.79725087,-0.79763746,-0.79870063,-0.8004405,-0.8006338,-0.7994738,-0.79705757,-0.79135495,-0.7859424,-0.78642565,-0.7904851,-0.7931914,-0.79348135,-0.7933847,-0.793868,-0.79483455,-0.79541445,-0.7962843,-0.79744416,-0.79792744,-0.7975408,-0.7975408,-0.7977341,-0.79744416,-0.7971542,-0.7965743,-0.7958977,-0.79502785,-0.79425466,-0.79444796,-0.79560775,-0.7966709,-0.7969609,-0.7969609,-0.7968642,-0.7962843,-0.7959944,-0.7959944,-0.7958977,-0.79802406,-0.8010204,-0.7996672,-0.7962843,-0.7973475,-0.80005383,-0.80005383,-0.8005371,-0.7992805,-0.79444796,-0.7945446,-0.7965743,-0.79444796,-0.79522115,-0.79850733,-0.79986054,-0.80131036,-0.80189025,-0.8016003,-0.80189025,-0.8019869,-0.80208355,-0.80208355,-0.80189025,-0.8019869,-0.8019869,-0.8019869,-0.8019869,-0.80189025,-0.80189025,-0.80189025,-0.80208355,-0.80218023,-0.8019869,-0.80189025,-0.80189025,-0.80189025,-0.80189025,-0.80189025,-0.80208355,-0.80208355,-0.8019869,-0.8017936,-0.80189025,-0.80208355,-0.80218023,-0.80208355,-0.80189025,-0.80189025,-0.8019869,-0.8019869,-0.8019869,-0.80208355,-0.80218023,-0.80208355,-0.80218023,-0.80208355,-0.8019869,-0.80208355,-0.80208355,-0.80218023,-0.80208355,-0.8019869,-0.80227685,-0.8023735,-0.8023735,-0.80227685,-0.80208355,-0.8019869,-0.8019869,-0.80218023,-0.80189025,-0.80169696,-0.80131036,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8009237,-0.8012137,-0.8023735,-0.8023735,-0.80218023,-0.80218023,-0.80218023,-0.80218023,-0.80227685,-0.80227685,-0.80227685,-0.80218023,-0.8017936,-0.80189025,-0.80218023,-0.8019869,-0.80189025,-0.80208355,-0.80208355,-0.80218023,-0.80218023,-0.8019869,-0.8019869,-0.80208355,-0.80218023,-0.80218023,-0.80218023,-0.80227685,-0.80218023,-0.80208355,-0.80208355,-0.80208355,-0.80218023,-0.80227685,-0.8023735,-0.80218023,-0.80208355,-0.8019869,-0.80218023,-0.8023735,-0.8023735,-0.8023735,-0.80218023,-0.80227685,-0.8025668,-0.80247015,-0.8023735,-0.80247015,-0.80227685,-0.80208355,-0.80227685,-0.8023735,-0.80218023,-0.8025668,-0.8023735,-0.8010204,-0.80024713,-0.7965743,-0.793288,-0.79541445,-0.796091,-0.7940613,-0.7928048,-0.7928048,-0.79560775,-0.79783076,-0.79725087,-0.79725087,-0.7975408,-0.7977341,-0.7988939,-0.8010204,-0.8023735,-0.7999572,-0.7966709,-0.7964776,-0.7969609,-0.79705757,-0.79763746,-0.79744416,-0.796091,-0.79464126,-0.79357797,-0.7931914,-0.79357797,-0.7939647,-0.79483455,-0.79580104,-0.79483455,-0.7933847,-0.794158,-0.79522115,-0.7939647,-0.7930947,-0.7943513,-0.79560775,-0.79425466,-0.7892286,-0.7859424,-0.7852658,-0.7852658,-0.78603905,-0.789132,-0.7931914,-0.796381,-0.79860395,-0.7995705,-0.79870063,-0.79744416,-0.7969609,-0.7967676,-0.7962843,-0.79580104,-0.7958977,-0.7964776,-0.7969609,-0.7969609,-0.7967676,-0.7965743,-0.796381,-0.7967676,-0.79725087,-0.79744416,-0.7975408,-0.7975408,-0.7971542,-0.7965743,-0.796381,-0.7966709,-0.7968642,-0.7966709,-0.796381,-0.79580104,-0.79560775,-0.7959944,-0.7964776,-0.7969609,-0.7973475,-0.79802406,-0.7994738,-0.8003438,-0.7996672,-0.7977341,-0.79348135,-0.7879721,-0.7859424,-0.7878755,-0.7904851,-0.79125834,-0.7927081,-0.7945446,-0.7945446,-0.7937714,-0.7949312,-0.7962843,-0.7967676,-0.7969609,-0.7969609,-0.79705757,-0.7967676,-0.7961877,-0.7957044,-0.79444796,-0.7929981,-0.7928048,-0.793868,-0.79483455,-0.79580104,-0.796381,-0.7965743,-0.796381,-0.7962843,-0.7961877,-0.7961877,-0.79705757,-0.7997638,-0.801117,-0.7995705,-0.79812074,-0.79841065,-0.7990872,-0.79860395,-0.79831403,-0.79841065,-0.7959944,-0.79512453,-0.7969609,-0.7947379,-0.7931914,-0.7969609,-0.7990872,-0.80005383,-0.8016003,-0.80169696,-0.80169696,-0.80208355,-0.8019869,-0.8019869,-0.80189025,-0.80189025,-0.80208355,-0.80208355,-0.80189025,-0.8017936,-0.8017936,-0.80189025,-0.8019869,-0.80208355,-0.8019869,-0.80208355,-0.80208355,-0.8019869,-0.80189025,-0.80189025,-0.8019869,-0.8019869,-0.8017936,-0.80189025,-0.8019869,-0.8019869,-0.80218023,-0.80208355,-0.80189025,-0.8019869,-0.8019869,-0.8019869,-0.80208355,-0.8019869,-0.80208355,-0.80227685,-0.80227685,-0.80208355,-0.80208355,-0.8019869,-0.80208355,-0.80208355,-0.80208355,-0.80227685,-0.8023735,-0.8023735,-0.80227685,-0.80218023,-0.80218023,-0.8019869,-0.80208355,-0.80227685,-0.80189025,-0.80247015,-0.80150366,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8023735,-0.80208355,-0.8023735,-0.80227685,-0.8017936,-0.80189025,-0.80208355,-0.80189025,-0.80189025,-0.80208355,-0.80218023,-0.80208355,-0.8019869,-0.8017936,-0.8019869,-0.80208355,-0.8019869,-0.80218023,-0.8023735,-0.80227685,-0.80218023,-0.80189025,-0.80208355,-0.80227685,-0.80208355,-0.8019869,-0.80227685,-0.80218023,-0.80218023,-0.80218023,-0.80227685,-0.80227685,-0.80227685,-0.80227685,-0.80227685,-0.80218023,-0.80218023,-0.80227685,-0.80247015,-0.8025668,-0.80218023,-0.8019869,-0.80227685,-0.8023735,-0.8023735,-0.8023735,-0.80247015,-0.8023735,-0.80227685,-0.80247015,-0.80247015,-0.80247015,-0.8023735,-0.8016003,-0.80024713,-0.79850733,-0.7937714,-0.793288,-0.796381,-0.7958977,-0.7929981,-0.79000187,-0.79116166,-0.7961877,-0.7977341,-0.79725087,-0.79763746,-0.79725087,-0.7973475,-0.7977341,-0.7990872,-0.8017936,-0.801407,-0.79812074,-0.7964776,-0.7961877,-0.796381,-0.7968642,-0.7965743,-0.79560775,-0.79464126,-0.79348135,-0.7923215,-0.79145163,-0.79164493,-0.7930947,-0.7937714,-0.7929014,-0.7927081,-0.7929981,-0.7922248,-0.7925148,-0.794158,-0.79502785,-0.79560775,-0.7920315,-0.7871989,-0.7857491,-0.7856524,-0.7849758,-0.7859424,-0.7894219,-0.794158,-0.79744416,-0.79850733,-0.7988939,-0.79831403,-0.7973475,-0.79705757,-0.7965743,-0.7959944,-0.7958977,-0.7961877,-0.7964776,-0.7966709,-0.7968642,-0.7969609,-0.7966709,-0.7964776,-0.7968642,-0.79725087,-0.79725087,-0.7975408,-0.7975408,-0.79705757,-0.7965743,-0.7964776,-0.7965743,-0.7967676,-0.7967676,-0.7967676,-0.7962843,-0.7955111,-0.79560775,-0.796091,-0.7965743,-0.79725087,-0.79802406,-0.7988939,-0.7996672,-0.79986054,-0.79841065,-0.7945446,-0.7897119,-0.7871989,-0.7872955,-0.7881654,-0.789132,-0.79145163,-0.79444796,-0.7947379,-0.79348135,-0.7933847,-0.79444796,-0.7947379,-0.79483455,-0.7955111,-0.79560775,-0.7955111,-0.7953178,-0.794158,-0.7925148,-0.7917416,-0.7918382,-0.7926115,-0.7943513,-0.79580104,-0.7962843,-0.796381,-0.7964776,-0.7962843,-0.79580104,-0.7959944,-0.79860395,-0.8012137,-0.8006338,-0.79860395,-0.79812074,-0.79841065,-0.79831403,-0.79821736,-0.7971542,-0.796091,-0.7961877,-0.7961877,-0.7969609,-0.79580104,-0.7929014,-0.79483455,-0.79850733,-0.7989906,-0.8004405,-0.80189025,-0.8017936,-0.8017936,-0.8017936,-0.80189025,-0.80189025,-0.8016003,-0.80169696,-0.8019869,-0.8019869,-0.80189025,-0.80189025,-0.80189025,-0.8017936,-0.8017936,-0.8019869,-0.80189025,-0.8017936,-0.8019869,-0.80208355,-0.80189025,-0.80189025,-0.80189025,-0.80189025,-0.80208355,-0.80208355,-0.80208355,-0.80218023,-0.80227685,-0.80218023,-0.8019869,-0.80189025,-0.8019869,-0.8019869,-0.80208355,-0.80227685,-0.80227685,-0.80218023,-0.80218023,-0.80208355,-0.80189025,-0.8019869,-0.80208355,-0.80189025,-0.80208355,-0.80227685,-0.80227685,-0.80247015,-0.8023735,-0.8023735,-0.80247015,-0.80208355,-0.8017936,-0.8023735,-0.8023735,-0.80266345,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8007304,-0.801407,-0.80247015,-0.80247015,-0.8023735,-0.80218023,-0.8023735,-0.80227685,-0.80227685,-0.80218023,-0.80189025,-0.80189025,-0.80208355,-0.8019869,-0.80189025,-0.80189025,-0.8017936,-0.80189025,-0.80208355,-0.80227685,-0.80227685,-0.80218023,-0.80189025,-0.80218023,-0.80227685,-0.80227685,-0.80227685,-0.80208355,-0.80218023,-0.8023735,-0.80208355,-0.80227685,-0.8023735,-0.80218023,-0.80218023,-0.80208355,-0.80218023,-0.80247015,-0.80247015,-0.8023735,-0.80227685,-0.80208355,-0.80208355,-0.80227685,-0.80227685,-0.80218023,-0.80227685,-0.80247015,-0.80266345,-0.80247015,-0.8023735,-0.80227685,-0.8025668,-0.80218023,-0.8005371,-0.80005383,-0.7957044,-0.79106504,-0.7943513,-0.7967676,-0.79425466,-0.7904851,-0.7872955,-0.79087174,-0.7967676,-0.79725087,-0.7968642,-0.79725087,-0.7965743,-0.7967676,-0.79763746,-0.79831403,-0.7999572,-0.8012137,-0.80005383,-0.79763746,-0.7968642,-0.7973475,-0.7973475,-0.7967676,-0.79502785,-0.7930947,-0.7918382,-0.79096836,-0.7902918,-0.79058176,-0.7919349,-0.7925148,-0.7924181,-0.7926115,-0.7917416,-0.79135495,-0.7945446,-0.796381,-0.79541445,-0.79444796,-0.79000187,-0.7865223,-0.7856524,-0.7854591,-0.7853624,-0.7865223,-0.79019517,-0.7955111,-0.79841065,-0.7989906,-0.7989906,-0.79792744,-0.79705757,-0.7968642,-0.7961877,-0.7958977,-0.7958977,-0.7961877,-0.7967676,-0.7967676,-0.7967676,-0.7969609,-0.7965743,-0.7962843,-0.7964776,-0.7969609,-0.7973475,-0.79763746,-0.7973475,-0.7969609,-0.7966709,-0.7962843,-0.796381,-0.7965743,-0.7966709,-0.7967676,-0.796381,-0.7959944,-0.7957044,-0.79560775,-0.7959944,-0.7967676,-0.7975408,-0.79850733,-0.7990872,-0.7995705,-0.7991839,-0.79541445,-0.7900985,-0.7878755,-0.7876822,-0.7867156,-0.7867156,-0.7898086,-0.7930947,-0.79425466,-0.7949312,-0.79464126,-0.7933847,-0.7927081,-0.7926115,-0.7933847,-0.7939647,-0.7933847,-0.7926115,-0.79145163,-0.7900985,-0.7904851,-0.79164493,-0.7927081,-0.79464126,-0.796381,-0.7962843,-0.796091,-0.7969609,-0.7968642,-0.79522115,-0.7961877,-0.8003438,-0.8017936,-0.7997638,-0.79841065,-0.79812074,-0.7971542,-0.7964776,-0.7973475,-0.7967676,-0.79357797,-0.79348135,-0.7949312,-0.79541445,-0.796381,-0.7936747,-0.79087174,-0.7947379,-0.79821736,-0.7990872,-0.8012137,-0.8019869,-0.80169696,-0.80189025,-0.80189025,-0.80189025,-0.8017936,-0.80169696,-0.8017936,-0.80189025,-0.8017936,-0.8017936,-0.8017936,-0.80169696,-0.80189025,-0.8019869,-0.80189025,-0.80189025,-0.80189025,-0.8017936,-0.8017936,-0.8019869,-0.8019869,-0.80208355,-0.80208355,-0.8019869,-0.8019869,-0.8019869,-0.80208355,-0.8019869,-0.8017936,-0.8017936,-0.8017936,-0.8017936,-0.80189025,-0.80218023,-0.80227685,-0.80208355,-0.8019869,-0.80208355,-0.8017936,-0.80189025,-0.80208355,-0.80189025,-0.80189025,-0.80208355,-0.80218023,-0.80227685,-0.80218023,-0.80218023,-0.80218023,-0.80218023,-0.80218023,-0.8016003,-0.8007304,-0.80024713,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8010204,-0.801117,-0.8019869,-0.80189025,-0.80218023,-0.80247015,-0.80208355,-0.80218023,-0.8019869,-0.80218023,-0.80227685,-0.80218023,-0.80208355,-0.80189025,-0.80189025,-0.8019869,-0.80208355,-0.80218023,-0.80208355,-0.80189025,-0.80208355,-0.80208355,-0.80208355,-0.80227685,-0.80218023,-0.80227685,-0.8023735,-0.80208355,-0.80227685,-0.80247015,-0.80208355,-0.80208355,-0.80218023,-0.80208355,-0.80227685,-0.80218023,-0.80218023,-0.80247015,-0.8023735,-0.8023735,-0.8023735,-0.80218023,-0.80218023,-0.80227685,-0.80227685,-0.8023735,-0.8023735,-0.8023735,-0.8023735,-0.8023735,-0.80227685,-0.8023735,-0.8023735,-0.8009237,-0.80005383,-0.7991839,-0.7929981,-0.7917416,-0.7962843,-0.79580104,-0.7924181,-0.7883587,-0.7865223,-0.79145163,-0.7957044,-0.79541445,-0.79560775,-0.7967676,-0.7966709,-0.7958977,-0.7968642,-0.79802406,-0.79802406,-0.7994738,-0.8004405,-0.7987973,-0.79812074,-0.79821736,-0.7971542,-0.7959944,-0.7943513,-0.7919349,-0.7904851,-0.7899052,-0.7897119,-0.7900985,-0.79087174,-0.7921282,-0.7931914,-0.7924181,-0.79106504,-0.7926115,-0.7967676,-0.7975408,-0.79580104,-0.7927081,-0.788842,-0.78642565,-0.7852658,-0.7857491,-0.78642565,-0.7870056,-0.79087174,-0.7965743,-0.7991839,-0.7993772,-0.7988939,-0.7975408,-0.7967676,-0.7965743,-0.796091,-0.7958977,-0.79580104,-0.7961877,-0.7968642,-0.7968642,-0.7968642,-0.79705757,-0.7966709,-0.7964776,-0.7966709,-0.7969609,-0.79763746,-0.79792744,-0.79744416,-0.7971542,-0.7968642,-0.7962843,-0.796381,-0.7966709,-0.7967676,-0.7968642,-0.7965743,-0.7962843,-0.7959944,-0.79560775,-0.79580104,-0.7961877,-0.7965743,-0.79792744,-0.7988939,-0.7992805,-0.7993772,-0.7958977,-0.79000187,-0.7877788,-0.7875855,-0.7853624,-0.7849758,-0.78855205,-0.7918382,-0.793868,-0.796091,-0.7959944,-0.793288,-0.7917416,-0.79164493,-0.7917416,-0.7921282,-0.7922248,-0.79145163,-0.79019517,-0.7893253,-0.7892286,-0.7906784,-0.79348135,-0.79580104,-0.7967676,-0.7965743,-0.796091,-0.7971542,-0.79841065,-0.79831403,-0.7991839,-0.801117,-0.8001505,-0.79841065,-0.79821736,-0.79725087,-0.7959944,-0.7958977,-0.7962843,-0.7962843,-0.7929014,-0.79106504,-0.7936747,-0.7943513,-0.7953178,-0.79541445,-0.79058176,-0.7919349,-0.79783076,-0.79850733,-0.7996672,-0.80189025,-0.8017936,-0.8017936,-0.80189025,-0.80189025,-0.80208355,-0.80189025,-0.80189025,-0.8019869,-0.8019869,-0.8019869,-0.8019869,-0.80189025,-0.8017936,-0.80189025,-0.80189025,-0.8019869,-0.80208355,-0.80189025,-0.80189025,-0.80208355,-0.80208355,-0.8019869,-0.80189025,-0.8019869,-0.80208355,-0.80189025,-0.8017936,-0.80218023,-0.80218023,-0.80189025,-0.8019869,-0.80208355,-0.80189025,-0.80208355,-0.80227685,-0.80218023,-0.80189025,-0.80189025,-0.80189025,-0.80189025,-0.80208355,-0.80208355,-0.80208355,-0.80227685,-0.80218023,-0.80218023,-0.80218023,-0.80218023,-0.80208355,-0.8019869,-0.8023735,-0.8027601,-0.80169696,-0.80024713,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80247015,-0.80169696,-0.80150366,-0.8017936,-0.8019869,-0.8019869,-0.80208355,-0.8019869,-0.80208355,-0.8019869,-0.80189025,-0.80208355,-0.8019869,-0.80189025,-0.8019869,-0.80218023,-0.80218023,-0.8019869,-0.80208355,-0.80227685,-0.80218023,-0.80208355,-0.80208355,-0.80208355,-0.80208355,-0.80218023,-0.80218023,-0.80227685,-0.80247015,-0.80247015,-0.80227685,-0.80208355,-0.80208355,-0.80227685,-0.80227685,-0.80227685,-0.80247015,-0.80227685,-0.80208355,-0.80218023,-0.8023735,-0.8023735,-0.80227685,-0.80227685,-0.8023735,-0.8023735,-0.80227685,-0.8023735,-0.80247015,-0.80247015,-0.80227685,-0.80189025,-0.80189025,-0.7996672,-0.8001505,-0.7962843,-0.79125834,-0.79483455,-0.7971542,-0.7945446,-0.7919349,-0.7871989,-0.7872955,-0.7928048,-0.7945446,-0.7937714,-0.7943513,-0.7958977,-0.79705757,-0.796091,-0.7966709,-0.79802406,-0.7969609,-0.7975408,-0.7994738,-0.79850733,-0.79792744,-0.79860395,-0.7965743,-0.79357797,-0.7921282,-0.79164493,-0.79077506,-0.7898086,-0.7895186,-0.7897119,-0.7900985,-0.7917416,-0.7930947,-0.7923215,-0.7922248,-0.793868,-0.79560775,-0.7971542,-0.796381,-0.7920315,-0.7879721,-0.7857491,-0.7846859,-0.78613573,-0.7870056,-0.7872955,-0.79135495,-0.7971542,-0.80024713,-0.80024713,-0.79841065,-0.7969609,-0.7967676,-0.796381,-0.7958977,-0.7957044,-0.79580104,-0.7964776,-0.7968642,-0.7967676,-0.7968642,-0.7967676,-0.7964776,-0.7966709,-0.7969609,-0.7971542,-0.7977341,-0.79802406,-0.7975408,-0.7971542,-0.7968642,-0.796381,-0.7964776,-0.7967676,-0.7967676,-0.7967676,-0.7966709,-0.7964776,-0.796091,-0.7955111,-0.79560775,-0.7959944,-0.7962843,-0.7973475,-0.79841065,-0.7987973,-0.7992805,-0.7966709,-0.79096836,-0.7883587,-0.7877788,-0.7850725,-0.7846859,-0.7877788,-0.79019517,-0.79348135,-0.79725087,-0.7971542,-0.79425466,-0.7923215,-0.7918382,-0.7917416,-0.79125834,-0.79106504,-0.79058176,-0.7890353,-0.7881654,-0.78855205,-0.7895186,-0.7920315,-0.7953178,-0.7967676,-0.7968642,-0.79744416,-0.79812074,-0.79792744,-0.7990872,-0.8012137,-0.8005371,-0.79860395,-0.79850733,-0.79763746,-0.79541445,-0.79512453,-0.7955111,-0.79512453,-0.7961877,-0.794158,-0.7894219,-0.79145163,-0.7945446,-0.7940613,-0.7959944,-0.7939647,-0.79135495,-0.7966709,-0.7992805,-0.79802406,-0.8004405,-0.80208355,-0.8017936,-0.80189025,-0.80189025,-0.8019869,-0.80189025,-0.8017936,-0.8019869,-0.80208355,-0.8019869,-0.8019869,-0.8019869,-0.80189025,-0.8017936,-0.8019869,-0.80208355,-0.80218023,-0.80208355,-0.80208355,-0.8019869,-0.8019869,-0.8019869,-0.80208355,-0.80218023,-0.8019869,-0.80208355,-0.80218023,-0.80218023,-0.80218023,-0.80208355,-0.8019869,-0.80208355,-0.80218023,-0.80227685,-0.80218023,-0.80208355,-0.80227685,-0.8023735,-0.80208355,-0.80208355,-0.80208355,-0.80208355,-0.80208355,-0.80227685,-0.80247015,-0.80227685,-0.80227685,-0.80227685,-0.80218023,-0.80208355,-0.80218023,-0.80169696,-0.8016003,-0.80208355,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80189025,-0.8019869,-0.8025668,-0.8019869,-0.8023735,-0.80247015,-0.80227685,-0.80247015,-0.80247015,-0.80208355,-0.80189025,-0.80208355,-0.8019869,-0.80189025,-0.80208355,-0.8019869,-0.80189025,-0.80227685,-0.80247015,-0.80208355,-0.80208355,-0.8023735,-0.80227685,-0.80208355,-0.8023735,-0.80227685,-0.80208355,-0.8023735,-0.80227685,-0.80218023,-0.8023735,-0.80218023,-0.80218023,-0.8023735,-0.80208355,-0.80218023,-0.80247015,-0.80218023,-0.80208355,-0.80218023,-0.80227685,-0.80227685,-0.80227685,-0.8023735,-0.8023735,-0.80227685,-0.80218023,-0.8023735,-0.80218023,-0.80227685,-0.8023735,-0.80227685,-0.7999572,-0.7997638,-0.7991839,-0.7925148,-0.7918382,-0.7969609,-0.7962843,-0.793868,-0.7900985,-0.7854591,-0.7890353,-0.79483455,-0.7949312,-0.7945446,-0.79541445,-0.7958977,-0.7967676,-0.7969609,-0.7964776,-0.79744416,-0.79812074,-0.79821736,-0.8001505,-0.7999572,-0.7969609,-0.7958977,-0.7953178,-0.7919349,-0.7895186,-0.79000187,-0.79000187,-0.789132,-0.7889387,-0.788842,-0.7895186,-0.7917416,-0.7929981,-0.7928048,-0.793288,-0.7930947,-0.7933847,-0.796381,-0.7968642,-0.7925148,-0.7883587,-0.7857491,-0.78449255,-0.7858457,-0.78632903,-0.7876822,-0.79348135,-0.79860395,-0.80024713,-0.7993772,-0.7971542,-0.7961877,-0.7964776,-0.796091,-0.79560775,-0.79560775,-0.7958977,-0.7965743,-0.7966709,-0.7966709,-0.7967676,-0.7966709,-0.7965743,-0.7965743,-0.7966709,-0.7968642,-0.79763746,-0.79831403,-0.7977341,-0.79705757,-0.7968642,-0.7965743,-0.796381,-0.7962843,-0.7962843,-0.7965743,-0.7967676,-0.796381,-0.796091,-0.79560775,-0.7953178,-0.79541445,-0.7959944,-0.7968642,-0.79763746,-0.79831403,-0.7989906,-0.79763746,-0.7931914,-0.7895186,-0.7875855,-0.7852658,-0.7850725,-0.7874888,-0.7897119,-0.7931914,-0.7968642,-0.7971542,-0.79512453,-0.793288,-0.7919349,-0.7917416,-0.79164493,-0.7906784,-0.7894219,-0.7880688,-0.7871022,-0.7872955,-0.78845537,-0.79106504,-0.7943513,-0.7961877,-0.7969609,-0.79725087,-0.7962843,-0.7961877,-0.7988939,-0.8007304,-0.7990872,-0.79812074,-0.79870063,-0.7961877,-0.79357797,-0.79425466,-0.7943513,-0.7936747,-0.7958977,-0.79522115,-0.788842,-0.78864866,-0.79357797,-0.79357797,-0.79512453,-0.7966709,-0.7922248,-0.7933847,-0.7987973,-0.79812074,-0.79821736,-0.8012137,-0.80208355,-0.8017936,-0.8019869,-0.80208355,-0.8019869,-0.8017936,-0.8017936,-0.8019869,-0.80208355,-0.80208355,-0.80208355,-0.8019869,-0.8017936,-0.8017936,-0.8019869,-0.80189025,-0.80189025,-0.80208355,-0.80208355,-0.80189025,-0.80208355,-0.80227685,-0.80218023,-0.80208355,-0.8019869,-0.80227685,-0.80208355,-0.8019869,-0.80208355,-0.8019869,-0.80189025,-0.80218023,-0.80227685,-0.8019869,-0.8019869,-0.8023735,-0.80247015,-0.8019869,-0.80189025,-0.80208355,-0.8019869,-0.80208355,-0.80208355,-0.80208355,-0.80218023,-0.80218023,-0.80208355,-0.80218023,-0.80208355,-0.80247015,-0.80218023,-0.8009237,-0.79986054,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80208355,-0.80208355,-0.80208355,-0.8019869,-0.80227685,-0.80247015,-0.80208355,-0.80208355,-0.8023735,-0.80208355,-0.80218023,-0.80218023,-0.80208355,-0.80208355,-0.80189025,-0.8019869,-0.80218023,-0.8023735,-0.80247015,-0.80227685,-0.80227685,-0.8025668,-0.80227685,-0.80218023,-0.8023735,-0.80218023,-0.80208355,-0.8023735,-0.80218023,-0.80218023,-0.8023735,-0.80227685,-0.80227685,-0.80247015,-0.80227685,-0.8023735,-0.8023735,-0.8023735,-0.8023735,-0.80227685,-0.8023735,-0.80247015,-0.80218023,-0.80227685,-0.80247015,-0.8023735,-0.80227685,-0.80227685,-0.80227685,-0.8025668,-0.8023735,-0.801117,-0.7991839,-0.79986054,-0.79522115,-0.7896152,-0.7936747,-0.79725087,-0.79502785,-0.7920315,-0.7868123,-0.7857491,-0.7923215,-0.7964776,-0.7957044,-0.796381,-0.7977341,-0.7971542,-0.79705757,-0.79725087,-0.7953178,-0.7953178,-0.79850733,-0.80005383,-0.8006338,-0.801117,-0.79870063,-0.7957044,-0.79357797,-0.7900985,-0.7879721,-0.7883587,-0.7878755,-0.7880688,-0.78864866,-0.7881654,-0.789132,-0.79145163,-0.7929014,-0.7937714,-0.7940613,-0.7929014,-0.7933847,-0.79560775,-0.7958977,-0.7929014,-0.7898086,-0.7865223,-0.7847825,-0.7859424,-0.7869089,-0.7898086,-0.79580104,-0.7990872,-0.7987973,-0.79744416,-0.7959944,-0.7957044,-0.79580104,-0.79541445,-0.79522115,-0.7953178,-0.7957044,-0.7964776,-0.7965743,-0.7964776,-0.7964776,-0.7966709,-0.7965743,-0.796381,-0.7964776,-0.7968642,-0.7975408,-0.79812074,-0.7977341,-0.79705757,-0.79705757,-0.7966709,-0.796381,-0.7964776,-0.7961877,-0.7961877,-0.7966709,-0.7966709,-0.7961877,-0.79560775,-0.79502785,-0.79502785,-0.79560775,-0.7961877,-0.79705757,-0.79821736,-0.7992805,-0.79831403,-0.79502785,-0.79164493,-0.789132,-0.7871989,-0.7870056,-0.78855205,-0.79106504,-0.7940613,-0.796091,-0.7964776,-0.79580104,-0.794158,-0.7924181,-0.7918382,-0.79135495,-0.7898086,-0.78855205,-0.7876822,-0.7869089,-0.78642565,-0.7870056,-0.7898086,-0.7929981,-0.7945446,-0.796381,-0.796381,-0.7943513,-0.796091,-0.7995705,-0.79841065,-0.7958977,-0.7969609,-0.79792744,-0.7947379,-0.7927081,-0.79444796,-0.79502785,-0.7937714,-0.79502785,-0.7957044,-0.7902918,-0.7871022,-0.79164493,-0.79348135,-0.793868,-0.79783076,-0.7945446,-0.79000187,-0.79580104,-0.80005383,-0.79860395,-0.7994738,-0.80150366,-0.80189025,-0.8019869,-0.80218023,-0.80218023,-0.8019869,-0.80189025,-0.8019869,-0.80218023,-0.80227685,-0.80218023,-0.8019869,-0.80208355,-0.80208355,-0.8019869,-0.8019869,-0.8019869,-0.80189025,-0.8019869,-0.8019869,-0.8019869,-0.80208355,-0.80208355,-0.80218023,-0.80208355,-0.80208355,-0.8019869,-0.8019869,-0.80208355,-0.80208355,-0.80208355,-0.80208355,-0.80189025,-0.8017936,-0.80227685,-0.80227685,-0.80218023,-0.8023735,-0.80218023,-0.80189025,-0.80208355,-0.80227685,-0.80227685,-0.8019869,-0.8019869,-0.80218023,-0.80208355,-0.80218023,-0.8019869,-0.80227685,-0.80266345,-0.8017936,-0.80150366,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80005383,-0.7999572,-0.80189025,-0.80247015,-0.80227685,-0.80266345,-0.80247015,-0.8023735,-0.8023735,-0.8023735,-0.8023735,-0.80218023,-0.80227685,-0.80227685,-0.80227685,-0.80227685,-0.8023735,-0.8023735,-0.8023735,-0.80218023,-0.8023735,-0.80227685,-0.80208355,-0.80227685,-0.80247015,-0.8023735,-0.80247015,-0.8023735,-0.80218023,-0.80218023,-0.80227685,-0.80227685,-0.80247015,-0.8023735,-0.80227685,-0.80247015,-0.8023735,-0.80247015,-0.8023735,-0.8023735,-0.80247015,-0.8023735,-0.80208355,-0.80247015,-0.8025668,-0.8025668,-0.8025668,-0.80227685,-0.8023735,-0.80247015,-0.80227685,-0.7995705,-0.7995705,-0.79783076,-0.7902918,-0.7897119,-0.796091,-0.7968642,-0.7940613,-0.79000187,-0.7853624,-0.7879721,-0.794158,-0.796381,-0.7968642,-0.79792744,-0.79812074,-0.79792744,-0.79821736,-0.7975408,-0.79541445,-0.79512453,-0.7977341,-0.7994738,-0.7993772,-0.7996672,-0.7999572,-0.79821736,-0.7947379,-0.79154825,-0.79096836,-0.79087174,-0.7893253,-0.7890353,-0.7892286,-0.78845537,-0.7892286,-0.79125834,-0.7930947,-0.79444796,-0.7945446,-0.79357797,-0.794158,-0.79560775,-0.7953178,-0.7931914,-0.79087174,-0.7878755,-0.78623235,-0.7869089,-0.7883587,-0.7922248,-0.79725087,-0.7987973,-0.79802406,-0.7968642,-0.79560775,-0.7953178,-0.7955111,-0.79512453,-0.7949312,-0.79522115,-0.7957044,-0.796091,-0.7961877,-0.7962843,-0.7964776,-0.7966709,-0.7965743,-0.7964776,-0.7967676,-0.7969609,-0.79744416,-0.79812074,-0.7977341,-0.7969609,-0.7968642,-0.7966709,-0.796381,-0.7962843,-0.7959944,-0.796091,-0.7965743,-0.7966709,-0.7962843,-0.79580104,-0.79502785,-0.79483455,-0.79522115,-0.79580104,-0.7968642,-0.79812074,-0.7990872,-0.79870063,-0.7965743,-0.793868,-0.79145163,-0.789132,-0.78845537,-0.7897119,-0.7921282,-0.7947379,-0.7958977,-0.7961877,-0.7961877,-0.79512453,-0.7931914,-0.7924181,-0.79135495,-0.7892286,-0.7880688,-0.7876822,-0.78661895,-0.7858457,-0.7859424,-0.7883587,-0.7919349,-0.7929981,-0.79348135,-0.79357797,-0.79522115,-0.79831403,-0.79860395,-0.7959944,-0.7955111,-0.7965743,-0.7965743,-0.7945446,-0.7929014,-0.7947379,-0.7966709,-0.79522115,-0.79483455,-0.7964776,-0.7930947,-0.7871989,-0.7893253,-0.7929014,-0.7921282,-0.7959944,-0.79705757,-0.7900985,-0.7900985,-0.7958977,-0.7973475,-0.79812074,-0.8006338,-0.8019869,-0.80208355,-0.80189025,-0.80208355,-0.8019869,-0.8019869,-0.80218023,-0.8019869,-0.8019869,-0.80208355,-0.8019869,-0.8019869,-0.80227685,-0.8023735,-0.80218023,-0.80189025,-0.8017936,-0.80218023,-0.80227685,-0.80208355,-0.80208355,-0.80218023,-0.80208355,-0.80218023,-0.80218023,-0.8019869,-0.80189025,-0.8019869,-0.80189025,-0.80208355,-0.80208355,-0.80189025,-0.80189025,-0.80218023,-0.80227685,-0.80189025,-0.80218023,-0.80247015,-0.8019869,-0.80189025,-0.80218023,-0.80218023,-0.80218023,-0.80218023,-0.80208355,-0.80227685,-0.80227685,-0.80218023,-0.8019869,-0.80131036,-0.80208355,-0.8010204,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.7997638,-0.8005371,-0.8027601,-0.80285674,-0.80266345,-0.80247015,-0.80218023,-0.80247015,-0.80227685,-0.80218023,-0.80247015,-0.80247015,-0.80227685,-0.80218023,-0.80218023,-0.80218023,-0.8023735,-0.8025668,-0.8023735,-0.80208355,-0.80227685,-0.8019869,-0.8017936,-0.80218023,-0.80227685,-0.80227685,-0.80247015,-0.8023735,-0.80227685,-0.8023735,-0.80218023,-0.80247015,-0.80247015,-0.80208355,-0.80208355,-0.8023735,-0.8023735,-0.8023735,-0.8023735,-0.8025668,-0.80266345,-0.8023735,-0.80227685,-0.80247015,-0.80247015,-0.80247015,-0.80266345,-0.80227685,-0.8023735,-0.80247015,-0.8012137,-0.7991839,-0.7991839,-0.79425466,-0.78826207,-0.7927081,-0.79763746,-0.79522115,-0.7920315,-0.7876822,-0.7853624,-0.7898086,-0.7943513,-0.7959944,-0.7975408,-0.79763746,-0.7973475,-0.79802406,-0.79792744,-0.7958977,-0.7945446,-0.796091,-0.79792744,-0.79812074,-0.79870063,-0.7994738,-0.7992805,-0.7994738,-0.7988939,-0.7967676,-0.7945446,-0.79348135,-0.7925148,-0.79087174,-0.7894219,-0.78874534,-0.7890353,-0.79058176,-0.7930947,-0.7947379,-0.7947379,-0.7939647,-0.793868,-0.79512453,-0.79541445,-0.7939647,-0.7918382,-0.7899052,-0.7889387,-0.789132,-0.79077506,-0.7947379,-0.79831403,-0.79870063,-0.79783076,-0.7967676,-0.79560775,-0.79512453,-0.79502785,-0.79502785,-0.79522115,-0.7955111,-0.79580104,-0.796091,-0.7959944,-0.796091,-0.7961877,-0.7964776,-0.7965743,-0.7967676,-0.79705757,-0.7971542,-0.7975408,-0.79802406,-0.79763746,-0.7968642,-0.7967676,-0.7966709,-0.7961877,-0.7959944,-0.7958977,-0.7959944,-0.796381,-0.7965743,-0.7962843,-0.7958977,-0.79522115,-0.79483455,-0.79512453,-0.7957044,-0.7964776,-0.7975408,-0.79841065,-0.7987973,-0.79792744,-0.79580104,-0.7929014,-0.79058176,-0.7904851,-0.7917416,-0.793288,-0.79541445,-0.796091,-0.7959944,-0.7968642,-0.7959944,-0.7940613,-0.79357797,-0.7917416,-0.788842,-0.7880688,-0.7879721,-0.7871989,-0.7865223,-0.78632903,-0.78826207,-0.7931914,-0.79522115,-0.7930947,-0.794158,-0.7988939,-0.8005371,-0.79831403,-0.796091,-0.7957044,-0.7959944,-0.7959944,-0.79541445,-0.794158,-0.79502785,-0.79705757,-0.7965743,-0.79541445,-0.7965743,-0.7953178,-0.789132,-0.7874888,-0.79145163,-0.7921282,-0.7940613,-0.7977341,-0.7928048,-0.7853624,-0.78642565,-0.7929014,-0.7975408,-0.7996672,-0.8016003,-0.80227685,-0.8019869,-0.80218023,-0.80227685,-0.80218023,-0.80218023,-0.80208355,-0.80218023,-0.80218023,-0.8019869,-0.80208355,-0.80227685,-0.8023735,-0.80218023,-0.80227685,-0.80247015,-0.8023735,-0.80227685,-0.80208355,-0.80208355,-0.80208355,-0.80227685,-0.8023735,-0.80227685,-0.80227685,-0.80208355,-0.80208355,-0.80208355,-0.8019869,-0.80218023,-0.80227685,-0.80218023,-0.80218023,-0.80227685,-0.80218023,-0.80227685,-0.8023735,-0.80227685,-0.80227685,-0.80227685,-0.80218023,-0.8023735,-0.80247015,-0.80227685,-0.80227685,-0.80218023,-0.80208355,-0.80169696,-0.8016003,-0.8019869,-0.8003438,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8012137,-0.80227685,-0.8016003,-0.80218023,-0.80266345,-0.80169696,-0.8019869,-0.80218023,-0.80189025,-0.80189025,-0.80218023,-0.8023735,-0.80218023,-0.80218023,-0.80227685,-0.8023735,-0.8025668,-0.80247015,-0.80218023,-0.80227685,-0.80247015,-0.80218023,-0.80218023,-0.80218023,-0.80218023,-0.80247015,-0.80247015,-0.8023735,-0.80266345,-0.80266345,-0.80247015,-0.80247015,-0.80247015,-0.80227685,-0.8025668,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8025668,-0.80247015,-0.8023735,-0.8025668,-0.8025668,-0.8025668,-0.8025668,-0.8025668,-0.80247015,-0.80247015,-0.80227685,-0.79986054,-0.7993772,-0.79783076,-0.79116166,-0.79000187,-0.7964776,-0.79725087,-0.7927081,-0.789132,-0.7853624,-0.7858457,-0.7922248,-0.7962843,-0.79560775,-0.7957044,-0.79763746,-0.79792744,-0.79725087,-0.796091,-0.793288,-0.7929014,-0.796381,-0.79831403,-0.7987973,-0.7994738,-0.7993772,-0.7997638,-0.8006338,-0.8007304,-0.7993772,-0.7957044,-0.7929981,-0.7936747,-0.7927081,-0.7896152,-0.78845537,-0.7889387,-0.7900985,-0.7928048,-0.79512453,-0.79560775,-0.7943513,-0.7931914,-0.79425466,-0.7957044,-0.7943513,-0.7918382,-0.79087174,-0.79077506,-0.79096836,-0.7930947,-0.7966709,-0.7988939,-0.79860395,-0.79763746,-0.7966709,-0.7957044,-0.79502785,-0.7949312,-0.79502785,-0.7953178,-0.79560775,-0.796091,-0.7965743,-0.7964776,-0.796091,-0.7959944,-0.7962843,-0.7964776,-0.7965743,-0.7967676,-0.7969609,-0.7975408,-0.79802406,-0.7975408,-0.7968642,-0.7967676,-0.7966709,-0.7961877,-0.7958977,-0.79580104,-0.7959944,-0.796381,-0.7966709,-0.7964776,-0.7958977,-0.79522115,-0.79483455,-0.79502785,-0.7953178,-0.7959944,-0.79705757,-0.79783076,-0.79831403,-0.79821736,-0.7967676,-0.79425466,-0.7926115,-0.7931914,-0.7940613,-0.7947379,-0.7961877,-0.7965743,-0.796091,-0.7968642,-0.7966709,-0.79502785,-0.7940613,-0.7917416,-0.78864866,-0.7878755,-0.7881654,-0.7874888,-0.7873922,-0.7880688,-0.7898086,-0.79348135,-0.7958977,-0.7959944,-0.7989906,-0.80169696,-0.7994738,-0.7971542,-0.79725087,-0.7966709,-0.796381,-0.796381,-0.79502785,-0.7943513,-0.796091,-0.79763746,-0.7973475,-0.796091,-0.79580104,-0.7958977,-0.7919349,-0.7873922,-0.7894219,-0.7924181,-0.794158,-0.7967676,-0.79425466,-0.78864866,-0.7893253,-0.79425466,-0.79744416,-0.7989906,-0.8010204,-0.8023735,-0.80227685,-0.80218023,-0.80208355,-0.8019869,-0.80218023,-0.80218023,-0.80227685,-0.8023735,-0.8023735,-0.8023735,-0.80227685,-0.80208355,-0.8019869,-0.80227685,-0.8025668,-0.80227685,-0.80208355,-0.80208355,-0.80208355,-0.80218023,-0.80227685,-0.80247015,-0.80227685,-0.80218023,-0.80218023,-0.80227685,-0.80227685,-0.80227685,-0.80227685,-0.80247015,-0.80247015,-0.8023735,-0.8023735,-0.80247015,-0.80266345,-0.80266345,-0.8023735,-0.8023735,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8025668,-0.80227685,-0.80266345,-0.80266345,-0.80266345,-0.80227685,-0.80131036,-0.8016003,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8007304,-0.8016003,-0.80218023,-0.8025668,-0.80266345,-0.8025668,-0.80266345,-0.80247015,-0.80208355,-0.80247015,-0.80266345,-0.80266345,-0.8025668,-0.8023735,-0.80247015,-0.80266345,-0.8025668,-0.80247015,-0.80247015,-0.80285674,-0.80266345,-0.8023735,-0.8025668,-0.8025668,-0.8023735,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.8025668,-0.80247015,-0.80247015,-0.80247015,-0.8025668,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.80247015,-0.80247015,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80247015,-0.8007304,-0.7993772,-0.7992805,-0.79483455,-0.7897119,-0.79348135,-0.79821736,-0.7953178,-0.79096836,-0.7873922,-0.7847825,-0.7870056,-0.7926115,-0.7968642,-0.79725087,-0.7968642,-0.79802406,-0.79812074,-0.7971542,-0.7959944,-0.7940613,-0.7945446,-0.7971542,-0.79870063,-0.7991839,-0.79860395,-0.79792744,-0.7995705,-0.8005371,-0.80005383,-0.7994738,-0.7967676,-0.7940613,-0.7943513,-0.794158,-0.79106504,-0.788842,-0.789132,-0.79096836,-0.79348135,-0.79541445,-0.7961877,-0.7949312,-0.7930947,-0.794158,-0.7959944,-0.79483455,-0.7923215,-0.79125834,-0.79135495,-0.7922248,-0.79464126,-0.79802406,-0.7993772,-0.79821736,-0.79705757,-0.796381,-0.7955111,-0.79512453,-0.79512453,-0.79502785,-0.79522115,-0.79580104,-0.7962843,-0.7964776,-0.796381,-0.7962843,-0.7962843,-0.7961877,-0.7961877,-0.7965743,-0.7967676,-0.7969609,-0.79763746,-0.79792744,-0.7973475,-0.7968642,-0.7968642,-0.7967676,-0.7962843,-0.79580104,-0.79580104,-0.7959944,-0.796381,-0.7965743,-0.796381,-0.7958977,-0.7953178,-0.79483455,-0.79483455,-0.79522115,-0.7958977,-0.7968642,-0.79744416,-0.79783076,-0.79821736,-0.79725087,-0.79512453,-0.7943513,-0.79512453,-0.79560775,-0.7958977,-0.7968642,-0.7967676,-0.796091,-0.7968642,-0.79725087,-0.796091,-0.79483455,-0.7921282,-0.788842,-0.78826207,-0.78874534,-0.7879721,-0.7878755,-0.7895186,-0.79135495,-0.7931914,-0.7957044,-0.7987973,-0.8009237,-0.8007304,-0.79860395,-0.79744416,-0.79763746,-0.79763746,-0.79725087,-0.7966709,-0.79560775,-0.7949312,-0.7965743,-0.79802406,-0.79744416,-0.7965743,-0.7957044,-0.79512453,-0.7931914,-0.78864866,-0.7881654,-0.79125834,-0.79357797,-0.79580104,-0.79464126,-0.79348135,-0.7969609,-0.79792744,-0.7969609,-0.79860395,-0.8007304,-0.80208355,-0.80218023,-0.80189025,-0.80218023,-0.80218023,-0.80218023,-0.80218023,-0.80218023,-0.80247015,-0.80247015,-0.8023735,-0.80218023,-0.80218023,-0.80218023,-0.8019869,-0.80218023,-0.8025668,-0.80227685,-0.80227685,-0.80247015,-0.8023735,-0.80227685,-0.80266345,-0.8025668,-0.80227685,-0.8023735,-0.8023735,-0.8023735,-0.8023735,-0.80227685,-0.8025668,-0.8025668,-0.8023735,-0.8023735,-0.80247015,-0.8023735,-0.8025668,-0.80247015,-0.80227685,-0.8023735,-0.8023735,-0.80247015,-0.8023735,-0.80218023,-0.8023735,-0.80247015,-0.8025668,-0.80247015,-0.8023735,-0.80227685,-0.8008271,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80208355,-0.8023735,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.8023735,-0.8023735,-0.8025668,-0.8025668,-0.8025668,-0.80247015,-0.80227685,-0.8023735,-0.80266345,-0.80247015,-0.8023735,-0.80266345,-0.8025668,-0.80247015,-0.8023735,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80247015,-0.8025668,-0.8027601,-0.8027601,-0.8023735,-0.80247015,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80247015,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.8019869,-0.7997638,-0.7995705,-0.79812074,-0.7924181,-0.79135495,-0.7965743,-0.7968642,-0.793288,-0.79019517,-0.7857491,-0.7855558,-0.7895186,-0.7923215,-0.79580104,-0.79831403,-0.79802406,-0.79763746,-0.79744416,-0.79744416,-0.7969609,-0.7957044,-0.79580104,-0.7968642,-0.79792744,-0.7989906,-0.79831403,-0.79763746,-0.80005383,-0.8016003,-0.8009237,-0.79986054,-0.79831403,-0.796091,-0.79541445,-0.7955111,-0.79348135,-0.79038846,-0.7898086,-0.7918382,-0.7945446,-0.7961877,-0.7965743,-0.79560775,-0.79425466,-0.79483455,-0.7958977,-0.7949312,-0.7930947,-0.7923215,-0.7927081,-0.794158,-0.7965743,-0.7989906,-0.7995705,-0.79821736,-0.79725087,-0.7966709,-0.79560775,-0.79512453,-0.79512453,-0.7949312,-0.79512453,-0.7959944,-0.796381,-0.796381,-0.7961877,-0.796091,-0.7962843,-0.7962843,-0.796381,-0.7967676,-0.7968642,-0.79705757,-0.7977341,-0.79763746,-0.7969609,-0.7967676,-0.7967676,-0.7965743,-0.7962843,-0.7957044,-0.7957044,-0.796091,-0.7962843,-0.7964776,-0.7962843,-0.7959944,-0.79541445,-0.7949312,-0.7949312,-0.79541445,-0.7958977,-0.7966709,-0.79744416,-0.79802406,-0.79860395,-0.7977341,-0.7958977,-0.79560775,-0.7966709,-0.7966709,-0.796381,-0.79705757,-0.79705757,-0.7964776,-0.79725087,-0.7977341,-0.7969609,-0.79560775,-0.7926115,-0.789132,-0.789132,-0.79000187,-0.789132,-0.7897119,-0.7917416,-0.7929014,-0.79483455,-0.79841065,-0.8007304,-0.8010204,-0.8004405,-0.7992805,-0.79821736,-0.79812074,-0.79821736,-0.79802406,-0.79763746,-0.79705757,-0.796381,-0.7966709,-0.79744416,-0.79744416,-0.79725087,-0.796381,-0.7949312,-0.7937714,-0.79019517,-0.7876822,-0.7897119,-0.7924181,-0.79502785,-0.79522115,-0.7940613,-0.79580104,-0.7962843,-0.7958977,-0.79831403,-0.8004405,-0.80189025,-0.80247015,-0.80208355,-0.8023735,-0.8023735,-0.80208355,-0.80227685,-0.80247015,-0.8025668,-0.8023735,-0.80247015,-0.8025668,-0.80247015,-0.80247015,-0.8023735,-0.80227685,-0.8025668,-0.8023735,-0.80227685,-0.80266345,-0.8025668,-0.80227685,-0.8025668,-0.80266345,-0.80247015,-0.80247015,-0.80247015,-0.80247015,-0.8023735,-0.8023735,-0.8027601,-0.80266345,-0.80247015,-0.80266345,-0.8025668,-0.80247015,-0.8025668,-0.8027601,-0.80266345,-0.8025668,-0.80247015,-0.80266345,-0.80266345,-0.80247015,-0.80247015,-0.8025668,-0.80285674,-0.80247015,-0.8023735,-0.80266345,-0.8019869,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80266345,-0.80227685,-0.8025668,-0.8027601,-0.8027601,-0.80247015,-0.8025668,-0.8025668,-0.8023735,-0.80266345,-0.8027601,-0.80247015,-0.80247015,-0.80247015,-0.8025668,-0.80266345,-0.8025668,-0.8025668,-0.80247015,-0.8025668,-0.80247015,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80247015,-0.80247015,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8009237,-0.7994738,-0.7992805,-0.79560775,-0.79106504,-0.7939647,-0.79705757,-0.793868,-0.7917416,-0.7883587,-0.78410596,-0.7873922,-0.7922248,-0.7940613,-0.7968642,-0.79821736,-0.7975408,-0.796091,-0.79425466,-0.79541445,-0.7967676,-0.79522115,-0.79522115,-0.79725087,-0.79860395,-0.79860395,-0.79705757,-0.7966709,-0.7994738,-0.8009237,-0.80024713,-0.8001505,-0.7999572,-0.79812074,-0.7968642,-0.79705757,-0.79541445,-0.7924181,-0.79125834,-0.7928048,-0.79541445,-0.7971542,-0.79705757,-0.7959944,-0.7953178,-0.79580104,-0.796091,-0.79502785,-0.793868,-0.79357797,-0.7939647,-0.7955111,-0.79783076,-0.7995705,-0.7994738,-0.79812074,-0.7973475,-0.7967676,-0.79580104,-0.79522115,-0.79512453,-0.79502785,-0.79541445,-0.7961877,-0.7964776,-0.7964776,-0.7962843,-0.7959944,-0.796091,-0.796381,-0.7964776,-0.7967676,-0.7967676,-0.79705757,-0.7977341,-0.7977341,-0.79725087,-0.7968642,-0.7966709,-0.7965743,-0.7961877,-0.79560775,-0.7957044,-0.7961877,-0.7962843,-0.7964776,-0.7965743,-0.7961877,-0.79560775,-0.79512453,-0.79522115,-0.79580104,-0.7962843,-0.79705757,-0.79783076,-0.79821736,-0.79850733,-0.79821736,-0.7969609,-0.7962843,-0.7969609,-0.79725087,-0.7966709,-0.7968642,-0.79725087,-0.7969609,-0.7973475,-0.79792744,-0.79802406,-0.7967676,-0.79348135,-0.7906784,-0.79116166,-0.7917416,-0.7917416,-0.7928048,-0.7933847,-0.79444796,-0.79792744,-0.8006338,-0.8005371,-0.80005383,-0.8001505,-0.7994738,-0.79831403,-0.79802406,-0.79841065,-0.79821736,-0.7977341,-0.79763746,-0.7973475,-0.7964776,-0.7966709,-0.79821736,-0.7987973,-0.79725087,-0.796091,-0.7965743,-0.79348135,-0.7875855,-0.7880688,-0.7920315,-0.794158,-0.79560775,-0.79464126,-0.7923215,-0.7925148,-0.7955111,-0.79831403,-0.7996672,-0.80131036,-0.8025668,-0.80218023,-0.80208355,-0.80227685,-0.80218023,-0.8023735,-0.80247015,-0.8025668,-0.80247015,-0.80247015,-0.8025668,-0.8025668,-0.8025668,-0.8025668,-0.80247015,-0.80247015,-0.80247015,-0.80247015,-0.80247015,-0.8023735,-0.8023735,-0.8023735,-0.8023735,-0.80227685,-0.8023735,-0.80247015,-0.8023735,-0.80247015,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8025668,-0.80247015,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80247015,-0.80218023,-0.80266345,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8016003,-0.80169696,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80247015,-0.80247015,-0.80266345,-0.80266345,-0.80247015,-0.8025668,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8023735,-0.80227685,-0.80247015,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8019869,-0.79986054,-0.7993772,-0.79821736,-0.7925148,-0.7900985,-0.79425466,-0.7949312,-0.7924181,-0.7904851,-0.7856524,-0.7846859,-0.7904851,-0.794158,-0.7958977,-0.79841065,-0.7987973,-0.7969609,-0.7957044,-0.7957044,-0.796381,-0.7967676,-0.796091,-0.7961877,-0.79802406,-0.7988939,-0.79802406,-0.7968642,-0.7968642,-0.7990872,-0.8005371,-0.8003438,-0.80024713,-0.8001505,-0.7991839,-0.79860395,-0.7988939,-0.7977341,-0.7953178,-0.793868,-0.793868,-0.79580104,-0.79792744,-0.7977341,-0.7961877,-0.7958977,-0.7964776,-0.796381,-0.7955111,-0.7949312,-0.7949312,-0.7955111,-0.7965743,-0.79841065,-0.79986054,-0.7994738,-0.79792744,-0.79705757,-0.7967676,-0.796091,-0.79541445,-0.79512453,-0.7953178,-0.79580104,-0.7962843,-0.796381,-0.7961877,-0.7959944,-0.7959944,-0.796091,-0.7961877,-0.7962843,-0.7964776,-0.7966709,-0.79705757,-0.79763746,-0.7975408,-0.7971542,-0.7967676,-0.7966709,-0.7964776,-0.7958977,-0.79541445,-0.7957044,-0.796091,-0.7961877,-0.796381,-0.7965743,-0.796091,-0.7955111,-0.7953178,-0.79541445,-0.79580104,-0.796381,-0.79725087,-0.79802406,-0.79850733,-0.7987973,-0.79860395,-0.7977341,-0.7969609,-0.79725087,-0.7973475,-0.7968642,-0.7971542,-0.79763746,-0.79744416,-0.7975408,-0.7977341,-0.79841065,-0.79783076,-0.79444796,-0.7926115,-0.7937714,-0.7940613,-0.794158,-0.7949312,-0.79522115,-0.79744416,-0.8004405,-0.8008271,-0.7996672,-0.7993772,-0.7997638,-0.7997638,-0.7989906,-0.79812074,-0.79792744,-0.79812074,-0.79792744,-0.7977341,-0.79744416,-0.7961877,-0.79580104,-0.7973475,-0.79831403,-0.7975408,-0.7967676,-0.79783076,-0.7961877,-0.789132,-0.78613573,-0.79019517,-0.7931914,-0.79512453,-0.796091,-0.7924181,-0.79019517,-0.79425466,-0.79821736,-0.7989906,-0.8006338,-0.8025668,-0.8023735,-0.8019869,-0.80227685,-0.80247015,-0.8025668,-0.80247015,-0.80247015,-0.80247015,-0.8025668,-0.80266345,-0.8025668,-0.80247015,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.80285674,-0.80247015,-0.80247015,-0.8025668,-0.8023735,-0.8023735,-0.8025668,-0.80247015,-0.80247015,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80247015,-0.80247015,-0.80247015,-0.8025668,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.80247015,-0.80247015,-0.8025668,-0.8016003,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8007304,-0.8007304,-0.80218023,-0.80227685,-0.80266345,-0.80247015,-0.8027601,-0.80266345,-0.8023735,-0.80227685,-0.8025668,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80247015,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.80247015,-0.80266345,-0.8027601,-0.80247015,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80247015,-0.80266345,-0.8010204,-0.7995705,-0.7991839,-0.7953178,-0.79058176,-0.7918382,-0.7936747,-0.7924181,-0.79164493,-0.7883587,-0.7846859,-0.7881654,-0.7930947,-0.7947379,-0.79725087,-0.7990872,-0.79802406,-0.79705757,-0.7977341,-0.7975408,-0.7964776,-0.7971542,-0.79744416,-0.7967676,-0.79744416,-0.79783076,-0.79725087,-0.7975408,-0.79821736,-0.7991839,-0.8001505,-0.8004405,-0.80005383,-0.7997638,-0.7990872,-0.7993772,-0.80024713,-0.7990872,-0.79705757,-0.796381,-0.79560775,-0.79580104,-0.79831403,-0.79831403,-0.7965743,-0.7967676,-0.79763746,-0.79705757,-0.7958977,-0.79560775,-0.7959944,-0.7965743,-0.79763746,-0.7988939,-0.7995705,-0.7990872,-0.7977341,-0.79705757,-0.7968642,-0.7961877,-0.7955111,-0.79522115,-0.79541445,-0.7958977,-0.7961877,-0.796381,-0.796381,-0.7961877,-0.796091,-0.796091,-0.796091,-0.7961877,-0.7964776,-0.7966709,-0.7971542,-0.7975408,-0.79725087,-0.7967676,-0.7965743,-0.7964776,-0.7961877,-0.79560775,-0.79541445,-0.79580104,-0.796091,-0.7961877,-0.796381,-0.7964776,-0.7962843,-0.7955111,-0.79512453,-0.7955111,-0.7958977,-0.796381,-0.7971542,-0.7977341,-0.79850733,-0.7989906,-0.79850733,-0.79763746,-0.7973475,-0.79763746,-0.79725087,-0.7969609,-0.7977341,-0.79812074,-0.79792744,-0.7975408,-0.7973475,-0.79802406,-0.79725087,-0.79464126,-0.7943513,-0.7958977,-0.7961877,-0.7959944,-0.7969609,-0.7989906,-0.8006338,-0.8004405,-0.8001505,-0.80005383,-0.7995705,-0.7997638,-0.7999572,-0.7994738,-0.7987973,-0.79850733,-0.79841065,-0.79802406,-0.7971542,-0.7965743,-0.7964776,-0.7966709,-0.7969609,-0.79744416,-0.79812074,-0.7971542,-0.796091,-0.7967676,-0.7927081,-0.78623235,-0.7870056,-0.79116166,-0.793868,-0.79580104,-0.7927081,-0.788842,-0.7924181,-0.79763746,-0.7987973,-0.79986054,-0.80208355,-0.80266345,-0.80227685,-0.8023735,-0.8025668,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.80247015,-0.80247015,-0.80247015,-0.80247015,-0.8025668,-0.8027601,-0.8027601,-0.80247015,-0.80247015,-0.80285674,-0.80285674,-0.80266345,-0.8025668,-0.80266345,-0.8025668,-0.80247015,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80247015,-0.8025668,-0.80266345,-0.8025668,-0.8025668,-0.80247015,-0.8023735,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80247015,-0.8025668,-0.80266345,-0.8025668,-0.8027601,-0.8023735,-0.8019869,-0.80189025,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8008271,-0.8017936,-0.80227685,-0.8025668,-0.8027601,-0.80247015,-0.80266345,-0.8025668,-0.8023735,-0.80247015,-0.8025668,-0.80247015,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80285674,-0.8027601,-0.80285674,-0.8025668,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.80247015,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8023735,-0.8023735,-0.7997638,-0.7995705,-0.79841065,-0.79116166,-0.7880688,-0.7921282,-0.7928048,-0.79164493,-0.7904851,-0.78603905,-0.7859424,-0.7917416,-0.794158,-0.7949312,-0.79783076,-0.7992805,-0.79812074,-0.7973475,-0.79705757,-0.7961877,-0.796091,-0.7971542,-0.7971542,-0.7966709,-0.7971542,-0.7968642,-0.7957044,-0.7966709,-0.79831403,-0.7990872,-0.7993772,-0.7995705,-0.7993772,-0.7993772,-0.7992805,-0.7996672,-0.8006338,-0.7999572,-0.79763746,-0.7969609,-0.7971542,-0.79705757,-0.79812074,-0.7988939,-0.79744416,-0.79725087,-0.79841065,-0.79802406,-0.7967676,-0.7964776,-0.7967676,-0.7973475,-0.79841065,-0.7990872,-0.7989906,-0.79860395,-0.79763746,-0.7968642,-0.7966709,-0.796091,-0.79560775,-0.7955111,-0.7955111,-0.7959944,-0.796381,-0.7965743,-0.7965743,-0.7962843,-0.7959944,-0.7959944,-0.7959944,-0.796091,-0.7962843,-0.7965743,-0.7973475,-0.7977341,-0.79705757,-0.7966709,-0.7966709,-0.7964776,-0.7959944,-0.79541445,-0.7953178,-0.7957044,-0.7959944,-0.7961877,-0.796381,-0.7962843,-0.796091,-0.79541445,-0.79502785,-0.79560775,-0.7958977,-0.796091,-0.7966709,-0.7971542,-0.79763746,-0.79792744,-0.7977341,-0.79744416,-0.7975408,-0.7977341,-0.7973475,-0.7973475,-0.79802406,-0.79821736,-0.79792744,-0.7973475,-0.7971542,-0.79763746,-0.7965743,-0.7949312,-0.7958977,-0.79705757,-0.79725087,-0.79792744,-0.7988939,-0.8003438,-0.8008271,-0.80005383,-0.7999572,-0.80024713,-0.80005383,-0.7996672,-0.7994738,-0.7992805,-0.7991839,-0.7989906,-0.79870063,-0.79812074,-0.7977341,-0.7973475,-0.79705757,-0.79725087,-0.7973475,-0.7968642,-0.7977341,-0.79821736,-0.7959944,-0.7965743,-0.796091,-0.788842,-0.7855558,-0.7894219,-0.7923215,-0.794158,-0.7924181,-0.78826207,-0.79077506,-0.7965743,-0.79841065,-0.7991839,-0.8016003,-0.8027601,-0.8023735,-0.8023735,-0.8025668,-0.80266345,-0.8025668,-0.80247015,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.8025668,-0.8025668,-0.80266345,-0.8025668,-0.80247015,-0.8025668,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.8025668,-0.8027601,-0.8025668,-0.80247015,-0.8027601,-0.80266345,-0.8027601,-0.80247015,-0.80247015,-0.8025668,-0.8027601,-0.80247015,-0.80247015,-0.80208355,-0.80227685,-0.8012137,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8016003,-0.80218023,-0.8023735,-0.8025668,-0.80266345,-0.80247015,-0.80266345,-0.80266345,-0.8025668,-0.80247015,-0.80247015,-0.80247015,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80131036,-0.7994738,-0.7999572,-0.7962843,-0.78874534,-0.7879721,-0.7919349,-0.7926115,-0.79135495,-0.78826207,-0.7851691,-0.7876822,-0.79357797,-0.796091,-0.796381,-0.79831403,-0.7993772,-0.7971542,-0.7959944,-0.7969609,-0.7973475,-0.79725087,-0.7968642,-0.7959944,-0.7961877,-0.7968642,-0.79580104,-0.79502785,-0.7967676,-0.79841065,-0.7990872,-0.7990872,-0.7991839,-0.7991839,-0.7991839,-0.7993772,-0.7996672,-0.79986054,-0.8004405,-0.7996672,-0.79812074,-0.79821736,-0.79850733,-0.79831403,-0.7988939,-0.79812074,-0.7975408,-0.79850733,-0.79860395,-0.79783076,-0.79763746,-0.7975408,-0.7977341,-0.79841065,-0.79841065,-0.79821736,-0.79831403,-0.79792744,-0.7971542,-0.7966709,-0.7961877,-0.79580104,-0.7955111,-0.7957044,-0.7962843,-0.7965743,-0.7965743,-0.796381,-0.7961877,-0.7959944,-0.7959944,-0.7959944,-0.7961877,-0.796381,-0.7965743,-0.79725087,-0.79763746,-0.79705757,-0.7967676,-0.7968642,-0.7964776,-0.79580104,-0.7953178,-0.79522115,-0.7955111,-0.79580104,-0.796091,-0.796381,-0.7962843,-0.79580104,-0.7953178,-0.79512453,-0.79541445,-0.7958977,-0.7959944,-0.7961877,-0.7964776,-0.7966709,-0.7968642,-0.79705757,-0.79705757,-0.7973475,-0.79763746,-0.7975408,-0.79792744,-0.79821736,-0.79792744,-0.7977341,-0.79725087,-0.79725087,-0.7975408,-0.7965743,-0.7961877,-0.7973475,-0.79783076,-0.79821736,-0.7990872,-0.7992805,-0.7992805,-0.7997638,-0.79986054,-0.7996672,-0.7995705,-0.79986054,-0.7996672,-0.7987973,-0.7987973,-0.7993772,-0.7991839,-0.79841065,-0.79792744,-0.7977341,-0.7975408,-0.79725087,-0.7971542,-0.79725087,-0.7969609,-0.7967676,-0.7975408,-0.7965743,-0.79541445,-0.796091,-0.7918382,-0.78613573,-0.7878755,-0.79125834,-0.7923215,-0.7919349,-0.78826207,-0.788842,-0.79512453,-0.79831403,-0.7988939,-0.8009237,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8025668,-0.8025668,-0.80247015,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8025668,-0.80247015,-0.8025668,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8025668,-0.80247015,-0.80189025,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80169696,-0.80218023,-0.80247015,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.8023735,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.8023735,-0.8023735,-0.8001505,-0.7997638,-0.7988939,-0.7930947,-0.7881654,-0.7893253,-0.79154825,-0.7918382,-0.7898086,-0.7867156,-0.78642565,-0.7898086,-0.7943513,-0.79744416,-0.79783076,-0.79792744,-0.7975408,-0.796381,-0.79725087,-0.79831403,-0.79763746,-0.7975408,-0.79763746,-0.79705757,-0.7971542,-0.79725087,-0.7965743,-0.7967676,-0.79783076,-0.79850733,-0.7989906,-0.7991839,-0.7992805,-0.7992805,-0.7992805,-0.7993772,-0.7994738,-0.7992805,-0.7996672,-0.8001505,-0.7992805,-0.79850733,-0.79850733,-0.79870063,-0.7988939,-0.79870063,-0.79831403,-0.79870063,-0.7987973,-0.79831403,-0.79821736,-0.79802406,-0.79792744,-0.79821736,-0.79812074,-0.79783076,-0.79802406,-0.79802406,-0.79744416,-0.7968642,-0.7964776,-0.7959944,-0.79541445,-0.7955111,-0.7961877,-0.7967676,-0.7966709,-0.796381,-0.7961877,-0.7959944,-0.796091,-0.796091,-0.7961877,-0.7965743,-0.7966709,-0.7968642,-0.79744416,-0.79725087,-0.7965743,-0.7965743,-0.7962843,-0.79560775,-0.7953178,-0.79522115,-0.7955111,-0.79580104,-0.7958977,-0.7962843,-0.796381,-0.79580104,-0.79541445,-0.79522115,-0.79512453,-0.79560775,-0.7959944,-0.796091,-0.7961877,-0.7962843,-0.7964776,-0.7967676,-0.7968642,-0.7971542,-0.7975408,-0.7977341,-0.79821736,-0.79821736,-0.79763746,-0.79744416,-0.79725087,-0.79725087,-0.7973475,-0.79705757,-0.7973475,-0.79831403,-0.79870063,-0.7987973,-0.7988939,-0.7988939,-0.7990872,-0.7991839,-0.7988939,-0.7987973,-0.7988939,-0.7990872,-0.7990872,-0.7988939,-0.7991839,-0.7997638,-0.7991839,-0.79783076,-0.7975408,-0.7975408,-0.7971542,-0.7975408,-0.79783076,-0.79705757,-0.7968642,-0.7971542,-0.7973475,-0.7965743,-0.79483455,-0.79522115,-0.7937714,-0.7874888,-0.78623235,-0.7900985,-0.79135495,-0.79116166,-0.78864866,-0.7875855,-0.79348135,-0.79831403,-0.79860395,-0.80024713,-0.80227685,-0.8025668,-0.80247015,-0.80247015,-0.8025668,-0.8025668,-0.80247015,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.80189025,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80189025,-0.80208355,-0.8023735,-0.8025668,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.80247015,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.8023735,-0.80169696,-0.7996672,-0.7993772,-0.7969609,-0.79077506,-0.7872955,-0.7879721,-0.7894219,-0.79058176,-0.7892286,-0.78661895,-0.7872955,-0.79116166,-0.79541445,-0.79812074,-0.79792744,-0.7967676,-0.7966709,-0.79763746,-0.79831403,-0.7975408,-0.7968642,-0.79744416,-0.79792744,-0.7975408,-0.7973475,-0.7973475,-0.7977341,-0.79802406,-0.79783076,-0.79783076,-0.79850733,-0.7989906,-0.7993772,-0.7993772,-0.7992805,-0.7993772,-0.7994738,-0.7991839,-0.7990872,-0.7993772,-0.7994738,-0.79870063,-0.79841065,-0.79870063,-0.7988939,-0.7989906,-0.79870063,-0.79870063,-0.7988939,-0.79850733,-0.79821736,-0.79831403,-0.79821736,-0.79802406,-0.79792744,-0.7975408,-0.7973475,-0.79763746,-0.7973475,-0.7968642,-0.7965743,-0.7961877,-0.79560775,-0.79560775,-0.7962843,-0.7968642,-0.7967676,-0.7964776,-0.7962843,-0.7958977,-0.7958977,-0.7959944,-0.796091,-0.7964776,-0.7966709,-0.7968642,-0.79744416,-0.79744416,-0.7965743,-0.796381,-0.796381,-0.7957044,-0.79522115,-0.7953178,-0.7955111,-0.7957044,-0.7959944,-0.796091,-0.7961877,-0.7959944,-0.79560775,-0.7953178,-0.79522115,-0.79541445,-0.7957044,-0.7959944,-0.7962843,-0.796381,-0.796381,-0.7965743,-0.7969609,-0.79725087,-0.79744416,-0.79783076,-0.79821736,-0.7977341,-0.7973475,-0.79744416,-0.7975408,-0.79744416,-0.79725087,-0.79744416,-0.79802406,-0.79841065,-0.79850733,-0.79841065,-0.79831403,-0.79841065,-0.79860395,-0.7987973,-0.79870063,-0.79860395,-0.79870063,-0.7987973,-0.7987973,-0.7987973,-0.7992805,-0.79986054,-0.7993772,-0.7977341,-0.7971542,-0.7975408,-0.79763746,-0.79763746,-0.79783076,-0.7973475,-0.7966709,-0.7966709,-0.79744416,-0.7977341,-0.7962843,-0.7958977,-0.796091,-0.7904851,-0.7858457,-0.7894219,-0.7919349,-0.79058176,-0.78855205,-0.7869089,-0.79106504,-0.79744416,-0.7987973,-0.7994738,-0.80189025,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80247015,-0.8025668,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8025668,-0.80266345,-0.8025668,-0.80208355,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80227685,-0.8025668,-0.8023735,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8023735,-0.8008271,-0.7996672,-0.7993772,-0.7947379,-0.78864866,-0.7874888,-0.788842,-0.79000187,-0.79019517,-0.7878755,-0.7865223,-0.7883587,-0.7919349,-0.7961877,-0.79850733,-0.79783076,-0.7971542,-0.7975408,-0.79831403,-0.79812074,-0.7966709,-0.7959944,-0.7969609,-0.7975408,-0.7965743,-0.796381,-0.79783076,-0.79850733,-0.7977341,-0.7975408,-0.79841065,-0.79870063,-0.7988939,-0.7994738,-0.7996672,-0.7995705,-0.7992805,-0.7988939,-0.79860395,-0.79860395,-0.7988939,-0.7993772,-0.7992805,-0.7988939,-0.7988939,-0.7989906,-0.7989906,-0.7987973,-0.79841065,-0.79860395,-0.79860395,-0.79821736,-0.79812074,-0.79812074,-0.79763746,-0.7975408,-0.79725087,-0.7969609,-0.79705757,-0.7969609,-0.7967676,-0.7965743,-0.796091,-0.79560775,-0.7957044,-0.796381,-0.7968642,-0.7967676,-0.7964776,-0.7962843,-0.7958977,-0.79580104,-0.79580104,-0.7958977,-0.796381,-0.7965743,-0.7966709,-0.79744416,-0.7975408,-0.7966709,-0.796381,-0.796381,-0.7957044,-0.79522115,-0.7953178,-0.79560775,-0.79580104,-0.7959944,-0.7961877,-0.7962843,-0.796091,-0.79560775,-0.79512453,-0.79512453,-0.79541445,-0.79560775,-0.7957044,-0.7959944,-0.7962843,-0.7964776,-0.7966709,-0.7969609,-0.7971542,-0.7975408,-0.79792744,-0.7977341,-0.7973475,-0.7971542,-0.79725087,-0.7975408,-0.79763746,-0.7975408,-0.7977341,-0.79812074,-0.79831403,-0.79821736,-0.79802406,-0.79802406,-0.79831403,-0.79860395,-0.79860395,-0.79850733,-0.79850733,-0.79850733,-0.79860395,-0.7988939,-0.7989906,-0.7993772,-0.80005383,-0.7993772,-0.7975408,-0.7968642,-0.7971542,-0.79744416,-0.7975408,-0.7973475,-0.79763746,-0.79783076,-0.7961877,-0.79580104,-0.79821736,-0.79783076,-0.7959944,-0.7977341,-0.79425466,-0.7857491,-0.7871022,-0.7926115,-0.79106504,-0.7879721,-0.7872955,-0.79019517,-0.796091,-0.79850733,-0.7988939,-0.801407,-0.80266345,-0.80266345,-0.80247015,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80247015,-0.80266345,-0.80247015,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.8023735,-0.8025668,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80266345,-0.8025668,-0.80189025,-0.8025668,-0.8027601,-0.80285674,-0.80266345,-0.8023735,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80247015,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80218023,-0.80005383,-0.7996672,-0.79841065,-0.7925148,-0.7881654,-0.7893253,-0.7923215,-0.7929981,-0.7890353,-0.78613573,-0.7880688,-0.7900985,-0.7926115,-0.7969609,-0.79841065,-0.7973475,-0.7973475,-0.79802406,-0.79831403,-0.79792744,-0.7973475,-0.79725087,-0.7973475,-0.7969609,-0.7966709,-0.79725087,-0.79841065,-0.79821736,-0.7969609,-0.7973475,-0.7987973,-0.7992805,-0.7993772,-0.7996672,-0.79986054,-0.79986054,-0.7992805,-0.79870063,-0.79850733,-0.79860395,-0.7987973,-0.7992805,-0.7996672,-0.7991839,-0.79870063,-0.7988939,-0.7989906,-0.7987973,-0.79860395,-0.79860395,-0.79841065,-0.79802406,-0.79783076,-0.7977341,-0.7973475,-0.7971542,-0.79705757,-0.7969609,-0.79705757,-0.7968642,-0.7967676,-0.7965743,-0.7958977,-0.79560775,-0.7959944,-0.796381,-0.7967676,-0.7969609,-0.7964776,-0.7959944,-0.79580104,-0.7957044,-0.79580104,-0.7958977,-0.7962843,-0.7965743,-0.7964776,-0.7971542,-0.79763746,-0.7967676,-0.7961877,-0.7962843,-0.79560775,-0.7949312,-0.79512453,-0.79541445,-0.7957044,-0.796091,-0.7962843,-0.796381,-0.796091,-0.7955111,-0.79502785,-0.79502785,-0.79541445,-0.7955111,-0.7955111,-0.79580104,-0.7962843,-0.7965743,-0.7968642,-0.7969609,-0.7971542,-0.7977341,-0.7977341,-0.7971542,-0.79705757,-0.79725087,-0.79725087,-0.7973475,-0.7975408,-0.7977341,-0.79792744,-0.79802406,-0.79802406,-0.79792744,-0.79792744,-0.79802406,-0.79841065,-0.79850733,-0.79831403,-0.79802406,-0.79821736,-0.79841065,-0.79850733,-0.7989906,-0.7993772,-0.7995705,-0.8001505,-0.7996672,-0.79783076,-0.79705757,-0.79705757,-0.7968642,-0.79744416,-0.79783076,-0.7975408,-0.79792744,-0.79763746,-0.7962843,-0.79744416,-0.79841065,-0.7959944,-0.7965743,-0.796381,-0.7881654,-0.7849758,-0.79154825,-0.7930947,-0.7889387,-0.7865223,-0.78864866,-0.79464126,-0.79812074,-0.79860395,-0.8009237,-0.80266345,-0.8025668,-0.80247015,-0.8025668,-0.80266345,-0.80266345,-0.80247015,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8023735,-0.8025668,-0.8027601,-0.8025668,-0.80247015,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.80285674,-0.80266345,-0.8025668,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80247015,-0.8025668,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80189025,-0.801117,-0.80169696,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80247015,-0.80247015,-0.80247015,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80285674,-0.80266345,-0.8025668,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.80247015,-0.8027601,-0.8027601,-0.8023735,-0.80169696,-0.7997638,-0.7993772,-0.7962843,-0.7904851,-0.7876822,-0.7899052,-0.79348135,-0.7917416,-0.7865223,-0.78613573,-0.7889387,-0.79154825,-0.7955111,-0.79841065,-0.79802406,-0.7973475,-0.79792744,-0.79802406,-0.7975408,-0.7975408,-0.79792744,-0.79783076,-0.79744416,-0.7971542,-0.79744416,-0.79850733,-0.7988939,-0.7973475,-0.7962843,-0.7971542,-0.79821736,-0.79870063,-0.7994738,-0.7999572,-0.8001505,-0.7999572,-0.7994738,-0.7989906,-0.79870063,-0.7987973,-0.7991839,-0.7994738,-0.7995705,-0.7990872,-0.79850733,-0.79860395,-0.7988939,-0.7987973,-0.79850733,-0.79831403,-0.79821736,-0.79802406,-0.7977341,-0.7975408,-0.79744416,-0.79705757,-0.7968642,-0.7967676,-0.7968642,-0.7966709,-0.7965743,-0.796381,-0.7958977,-0.7957044,-0.796091,-0.7965743,-0.7967676,-0.7966709,-0.796381,-0.7959944,-0.79560775,-0.7955111,-0.7958977,-0.796091,-0.796091,-0.796381,-0.796381,-0.7969609,-0.7977341,-0.79705757,-0.7961877,-0.7961877,-0.79560775,-0.79483455,-0.79502785,-0.7953178,-0.7955111,-0.796091,-0.796381,-0.7962843,-0.7961877,-0.7957044,-0.79512453,-0.7949312,-0.79512453,-0.7955111,-0.79560775,-0.7958977,-0.7965743,-0.7968642,-0.7967676,-0.7968642,-0.79725087,-0.7975408,-0.7973475,-0.7969609,-0.79705757,-0.79725087,-0.79725087,-0.79725087,-0.79744416,-0.79763746,-0.79783076,-0.79802406,-0.79792744,-0.7977341,-0.79783076,-0.79821736,-0.79821736,-0.79821736,-0.79812074,-0.79812074,-0.79831403,-0.79870063,-0.7988939,-0.7991839,-0.7994738,-0.7995705,-0.80005383,-0.80005383,-0.7988939,-0.79812074,-0.7977341,-0.7971542,-0.7973475,-0.79792744,-0.79763746,-0.79763746,-0.79821736,-0.7975408,-0.79705757,-0.79841065,-0.79705757,-0.79502785,-0.7965743,-0.7925148,-0.7858457,-0.7890353,-0.7931914,-0.7898086,-0.7859424,-0.7870056,-0.7930947,-0.79792744,-0.79860395,-0.8003438,-0.8025668,-0.80266345,-0.80247015,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.8025668,-0.80266345,-0.8025668,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8019869,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80169696,-0.80218023,-0.8016003,-0.8023735,-0.8027601,-0.80247015,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.80247015,-0.8023735,-0.8027601,-0.80266345,-0.80227685,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80247015,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80247015,-0.8025668,-0.8009237,-0.7993772,-0.79860395,-0.79444796,-0.78855205,-0.78642565,-0.7894219,-0.7923215,-0.7890353,-0.7854591,-0.7868123,-0.7899052,-0.7943513,-0.79783076,-0.79763746,-0.79725087,-0.79783076,-0.79802406,-0.79763746,-0.7969609,-0.7971542,-0.79783076,-0.7975408,-0.7969609,-0.79783076,-0.7990872,-0.7987973,-0.79725087,-0.79580104,-0.79541445,-0.7961877,-0.7969609,-0.79802406,-0.7991839,-0.7999572,-0.80024713,-0.80005383,-0.7997638,-0.7993772,-0.7989906,-0.7991839,-0.7997638,-0.7997638,-0.7994738,-0.7992805,-0.7987973,-0.79821736,-0.79831403,-0.79841065,-0.79802406,-0.7977341,-0.79792744,-0.79783076,-0.7975408,-0.7973475,-0.79725087,-0.7969609,-0.7967676,-0.7965743,-0.7964776,-0.7962843,-0.7961877,-0.796091,-0.7958977,-0.7957044,-0.7959944,-0.7965743,-0.7967676,-0.7965743,-0.7962843,-0.7958977,-0.79541445,-0.7953178,-0.79560775,-0.796091,-0.796381,-0.7962843,-0.796091,-0.7969609,-0.79783076,-0.79705757,-0.796091,-0.796091,-0.7957044,-0.79483455,-0.79483455,-0.7953178,-0.79560775,-0.7958977,-0.7961877,-0.7962843,-0.7961877,-0.79580104,-0.79522115,-0.79502785,-0.79522115,-0.7957044,-0.7958977,-0.796091,-0.7966709,-0.7968642,-0.7967676,-0.7969609,-0.79725087,-0.79725087,-0.7968642,-0.7967676,-0.7967676,-0.7969609,-0.7971542,-0.79725087,-0.7973475,-0.79763746,-0.79783076,-0.79821736,-0.79821736,-0.7977341,-0.7977341,-0.79812074,-0.79821736,-0.79831403,-0.79850733,-0.79850733,-0.79870063,-0.7988939,-0.7990872,-0.7994738,-0.7997638,-0.7996672,-0.7997638,-0.8001505,-0.7996672,-0.79870063,-0.79812074,-0.79763746,-0.79744416,-0.79763746,-0.79763746,-0.7975408,-0.79783076,-0.79821736,-0.79763746,-0.79783076,-0.79860395,-0.7964776,-0.7958977,-0.79502785,-0.78864866,-0.7879721,-0.7930947,-0.79087174,-0.78613573,-0.7867156,-0.79164493,-0.7971542,-0.7988939,-0.80005383,-0.80247015,-0.8027601,-0.80247015,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80247015,-0.8025668,-0.80266345,-0.80285674,-0.80247015,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8012137,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8017936,-0.80227685,-0.80189025,-0.8023735,-0.80266345,-0.80247015,-0.8025668,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.80247015,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80247015,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.80247015,-0.8027601,-0.80247015,-0.80247015,-0.8027601,-0.8025668,-0.80227685,-0.7999572,-0.7993772,-0.79783076,-0.7918382,-0.78661895,-0.78623235,-0.7890353,-0.79038846,-0.7877788,-0.78603905,-0.7879721,-0.7920315,-0.7955111,-0.7961877,-0.7961877,-0.7971542,-0.79783076,-0.7977341,-0.79705757,-0.7968642,-0.7975408,-0.79802406,-0.7975408,-0.7973475,-0.7991839,-0.80024713,-0.79763746,-0.7943513,-0.79357797,-0.79464126,-0.7957044,-0.7968642,-0.79831403,-0.7992805,-0.7997638,-0.8004405,-0.8003438,-0.7997638,-0.7994738,-0.7992805,-0.7994738,-0.80005383,-0.7999572,-0.7994738,-0.7991839,-0.79850733,-0.79783076,-0.79783076,-0.79792744,-0.79783076,-0.79783076,-0.7977341,-0.79744416,-0.79725087,-0.79705757,-0.7969609,-0.7967676,-0.7965743,-0.7964776,-0.796381,-0.7961877,-0.7961877,-0.7959944,-0.7957044,-0.79580104,-0.7961877,-0.7966709,-0.7968642,-0.7965743,-0.7958977,-0.7955111,-0.7953178,-0.79522115,-0.7955111,-0.796091,-0.796381,-0.796091,-0.7962843,-0.79725087,-0.7975408,-0.7966709,-0.7961877,-0.796091,-0.7955111,-0.7947379,-0.7947379,-0.79541445,-0.7957044,-0.7957044,-0.7959944,-0.7961877,-0.7959944,-0.7957044,-0.7953178,-0.79522115,-0.79541445,-0.7955111,-0.79580104,-0.7964776,-0.7966709,-0.7966709,-0.7968642,-0.7971542,-0.7971542,-0.7969609,-0.7967676,-0.7966709,-0.7964776,-0.7966709,-0.7968642,-0.7969609,-0.79725087,-0.79763746,-0.79783076,-0.79831403,-0.79841065,-0.79792744,-0.79763746,-0.7977341,-0.79792744,-0.79831403,-0.7987973,-0.7988939,-0.7987973,-0.7988939,-0.7992805,-0.7996672,-0.79986054,-0.7997638,-0.7999572,-0.8005371,-0.80024713,-0.7988939,-0.79802406,-0.79783076,-0.79783076,-0.7977341,-0.7975408,-0.79744416,-0.79744416,-0.79783076,-0.7977341,-0.7975408,-0.7987973,-0.79841065,-0.7961877,-0.79483455,-0.7898086,-0.7869089,-0.7921282,-0.7919349,-0.7854591,-0.7854591,-0.79096836,-0.796091,-0.79850733,-0.7997638,-0.80218023,-0.80266345,-0.8023735,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.80227685,-0.80227685,-0.8025668,-0.8027601,-0.8027601,-0.8025668,-0.80247015,-0.80266345,-0.80285674,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80247015,-0.8027601,-0.80266345,-0.80189025,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8001505,-0.80131036,-0.80150366,-0.80247015,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.80247015,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80247015,-0.8027601,-0.80247015,-0.80150366,-0.7992805,-0.7994738,-0.7964776,-0.7892286,-0.7854591,-0.7865223,-0.7893253,-0.79000187,-0.7872955,-0.7867156,-0.79058176,-0.79348135,-0.7937714,-0.7949312,-0.796381,-0.79705757,-0.79802406,-0.79821736,-0.79725087,-0.7973475,-0.79812074,-0.79783076,-0.79725087,-0.79841065,-0.80024713,-0.79850733,-0.7936747,-0.79116166,-0.7922248,-0.7943513,-0.796381,-0.79812074,-0.7987973,-0.79870063,-0.7991839,-0.80005383,-0.79986054,-0.7991839,-0.7991839,-0.7993772,-0.7991839,-0.7992805,-0.7991839,-0.7988939,-0.79870063,-0.79802406,-0.79744416,-0.79744416,-0.79744416,-0.7975408,-0.7977341,-0.7975408,-0.7973475,-0.7971542,-0.7971542,-0.79705757,-0.7966709,-0.7965743,-0.7965743,-0.7962843,-0.796091,-0.7962843,-0.796091,-0.79541445,-0.79560775,-0.7961877,-0.7966709,-0.7968642,-0.7966709,-0.7959944,-0.7953178,-0.7949312,-0.79512453,-0.7957044,-0.796091,-0.7962843,-0.7959944,-0.7962843,-0.79725087,-0.7973475,-0.796381,-0.7958977,-0.79580104,-0.79541445,-0.7947379,-0.79464126,-0.79512453,-0.79560775,-0.7959944,-0.796091,-0.7959944,-0.7959944,-0.79580104,-0.79522115,-0.79483455,-0.79512453,-0.7955111,-0.7958977,-0.7964776,-0.7968642,-0.7969609,-0.79705757,-0.79725087,-0.79705757,-0.7969609,-0.7967676,-0.7964776,-0.7964776,-0.7966709,-0.7966709,-0.7967676,-0.79705757,-0.79744416,-0.79783076,-0.79841065,-0.79841065,-0.79812074,-0.79792744,-0.79783076,-0.79783076,-0.79831403,-0.7987973,-0.7990872,-0.7992805,-0.7991839,-0.7991839,-0.7997638,-0.7999572,-0.7994738,-0.7997638,-0.8004405,-0.8001505,-0.7991839,-0.79821736,-0.7977341,-0.79783076,-0.79783076,-0.7977341,-0.79783076,-0.79783076,-0.7977341,-0.79802406,-0.79783076,-0.79783076,-0.79841065,-0.7973475,-0.7949312,-0.7899052,-0.78632903,-0.7906784,-0.7925148,-0.78642565,-0.78458923,-0.7894219,-0.79502785,-0.79831403,-0.7995705,-0.8016003,-0.80266345,-0.80227685,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.80247015,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80247015,-0.80266345,-0.80266345,-0.8023735,-0.80266345,-0.8027601,-0.80247015,-0.8027601,-0.8027601,-0.80227685,-0.801407,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.7977341,-0.80005383,-0.8006338,-0.8025668,-0.80266345,-0.80227685,-0.80266345,-0.80266345,-0.8025668,-0.8023735,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8025668,-0.8027601,-0.8025668,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8006338,-0.7993772,-0.7991839,-0.7945446,-0.7881654,-0.78603905,-0.7874888,-0.7900985,-0.7896152,-0.78661895,-0.7879721,-0.7929981,-0.7953178,-0.79560775,-0.7961877,-0.7958977,-0.7965743,-0.79812074,-0.79783076,-0.79744416,-0.79831403,-0.79821736,-0.79725087,-0.79744416,-0.7995705,-0.7997638,-0.79522115,-0.79000187,-0.7897119,-0.7930947,-0.79580104,-0.7969609,-0.79744416,-0.79744416,-0.79763746,-0.79812074,-0.79850733,-0.79821736,-0.79783076,-0.79792744,-0.79812074,-0.79812074,-0.79841065,-0.79850733,-0.79841065,-0.79831403,-0.79783076,-0.79725087,-0.7971542,-0.7971542,-0.79725087,-0.79725087,-0.7973475,-0.7973475,-0.79705757,-0.79705757,-0.79705757,-0.7966709,-0.796381,-0.7964776,-0.7962843,-0.796091,-0.7961877,-0.7959944,-0.7955111,-0.79560775,-0.796091,-0.7964776,-0.7965743,-0.7964776,-0.7962843,-0.79560775,-0.79483455,-0.7949312,-0.79560775,-0.7958977,-0.7959944,-0.79580104,-0.7964776,-0.79792744,-0.7977341,-0.7962843,-0.7958977,-0.79580104,-0.79522115,-0.7947379,-0.79464126,-0.79502785,-0.79541445,-0.79580104,-0.796091,-0.7961877,-0.7959944,-0.7958977,-0.7955111,-0.79512453,-0.7953178,-0.79580104,-0.7959944,-0.796381,-0.7966709,-0.7968642,-0.7971542,-0.7971542,-0.7968642,-0.7967676,-0.796381,-0.7962843,-0.7964776,-0.7964776,-0.7964776,-0.7967676,-0.7969609,-0.79725087,-0.79792744,-0.79841065,-0.79821736,-0.79792744,-0.79802406,-0.79812074,-0.79821736,-0.79841065,-0.79860395,-0.7988939,-0.7992805,-0.7993772,-0.7994738,-0.7997638,-0.79986054,-0.7991839,-0.79870063,-0.7990872,-0.8001505,-0.80024713,-0.7990872,-0.79783076,-0.79744416,-0.7975408,-0.7977341,-0.79802406,-0.79821736,-0.7975408,-0.7973475,-0.7977341,-0.79783076,-0.79792744,-0.7973475,-0.79705757,-0.7929981,-0.78623235,-0.78845537,-0.793288,-0.7889387,-0.7851691,-0.78864866,-0.79425466,-0.79792744,-0.7990872,-0.801117,-0.80266345,-0.8023735,-0.80247015,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8025668,-0.80227685,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80247015,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8025668,-0.8023735,-0.80247015,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80189025,-0.8023735,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8010204,-0.8010204,-0.8007304,-0.80247015,-0.8025668,-0.8023735,-0.80247015,-0.8025668,-0.8027601,-0.80227685,-0.8025668,-0.8027601,-0.8023735,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80247015,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8025668,-0.8025668,-0.8027601,-0.8023735,-0.8025668,-0.80005383,-0.7997638,-0.79812074,-0.7925148,-0.7877788,-0.78661895,-0.7889387,-0.79106504,-0.7878755,-0.7859424,-0.7897119,-0.7937714,-0.7959944,-0.7975408,-0.7971542,-0.7962843,-0.7968642,-0.79744416,-0.79725087,-0.7977341,-0.79802406,-0.7973475,-0.79705757,-0.79850733,-0.8001505,-0.7977341,-0.7918382,-0.7900985,-0.7933847,-0.79580104,-0.796091,-0.79560775,-0.7953178,-0.796091,-0.79705757,-0.79705757,-0.7964776,-0.7961877,-0.7962843,-0.7968642,-0.7973475,-0.79783076,-0.79860395,-0.7987973,-0.79850733,-0.79821736,-0.7977341,-0.7971542,-0.7971542,-0.7971542,-0.79705757,-0.7971542,-0.79725087,-0.7971542,-0.79705757,-0.7969609,-0.7968642,-0.7966709,-0.796381,-0.7962843,-0.7961877,-0.796091,-0.796091,-0.7959944,-0.7957044,-0.79560775,-0.7958977,-0.796381,-0.7964776,-0.7961877,-0.796091,-0.79580104,-0.79512453,-0.79502785,-0.7957044,-0.7959944,-0.79580104,-0.796091,-0.7971542,-0.79783076,-0.79705757,-0.796091,-0.7958977,-0.7957044,-0.79512453,-0.79483455,-0.79483455,-0.7949312,-0.79522115,-0.79580104,-0.7962843,-0.7961877,-0.7958977,-0.79580104,-0.7955111,-0.7953178,-0.79541445,-0.7955111,-0.79580104,-0.7962843,-0.7965743,-0.7967676,-0.79705757,-0.79705757,-0.7966709,-0.796381,-0.796091,-0.7962843,-0.7964776,-0.7961877,-0.7961877,-0.7966709,-0.7969609,-0.79725087,-0.79792744,-0.79850733,-0.79831403,-0.79783076,-0.79792744,-0.79802406,-0.79792744,-0.79802406,-0.79831403,-0.79850733,-0.7989906,-0.7993772,-0.7997638,-0.79986054,-0.79986054,-0.7996672,-0.79870063,-0.79821736,-0.7993772,-0.8004405,-0.7997638,-0.79850733,-0.7977341,-0.79763746,-0.79763746,-0.79812074,-0.79850733,-0.79705757,-0.7958977,-0.7967676,-0.79812074,-0.79870063,-0.79763746,-0.79812074,-0.7971542,-0.7897119,-0.7878755,-0.7926115,-0.7899052,-0.7867156,-0.79058176,-0.79464126,-0.7971542,-0.7991839,-0.8010204,-0.80266345,-0.80247015,-0.80227685,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80247015,-0.8025668,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8023735,-0.80266345,-0.8027601,-0.80247015,-0.80247015,-0.8027601,-0.80131036,-0.80131036,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8003438,-0.8012137,-0.80189025,-0.8025668,-0.80266345,-0.80247015,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.8023735,-0.8016003,-0.7996672,-0.7997638,-0.7971542,-0.79154825,-0.7871989,-0.7865223,-0.79019517,-0.79096836,-0.7869089,-0.7870056,-0.7902918,-0.7918382,-0.79522115,-0.79831403,-0.79763746,-0.7969609,-0.79705757,-0.7967676,-0.7975408,-0.79802406,-0.79725087,-0.7971542,-0.79841065,-0.8001505,-0.7995705,-0.7943513,-0.7906784,-0.7929981,-0.7955111,-0.7949312,-0.79425466,-0.79502785,-0.79560775,-0.79541445,-0.79522115,-0.79522115,-0.79560775,-0.796381,-0.7975408,-0.79831403,-0.79860395,-0.79850733,-0.79870063,-0.7987973,-0.79850733,-0.79812074,-0.79763746,-0.79705757,-0.7969609,-0.79705757,-0.7968642,-0.7969609,-0.7971542,-0.7969609,-0.7969609,-0.7971542,-0.7968642,-0.7966709,-0.7965743,-0.796381,-0.7961877,-0.7959944,-0.7959944,-0.7958977,-0.7955111,-0.79541445,-0.79580104,-0.7961877,-0.7962843,-0.7961877,-0.7959944,-0.7957044,-0.79502785,-0.7947379,-0.7955111,-0.7959944,-0.7959944,-0.7967676,-0.7975408,-0.79783076,-0.7971542,-0.7961877,-0.79560775,-0.7955111,-0.79512453,-0.7945446,-0.7947379,-0.79502785,-0.7955111,-0.796091,-0.7962843,-0.796091,-0.7959944,-0.79560775,-0.79541445,-0.79541445,-0.7953178,-0.79541445,-0.7959944,-0.796381,-0.7964776,-0.7966709,-0.7969609,-0.7968642,-0.7964776,-0.796091,-0.79580104,-0.7959944,-0.7962843,-0.7962843,-0.796381,-0.7965743,-0.7968642,-0.79725087,-0.79783076,-0.79841065,-0.79821736,-0.7977341,-0.79783076,-0.79783076,-0.79744416,-0.7973475,-0.7975408,-0.79802406,-0.79870063,-0.7992805,-0.7997638,-0.79986054,-0.7996672,-0.80005383,-0.7997638,-0.79792744,-0.79783076,-0.7995705,-0.80005383,-0.7994738,-0.79870063,-0.79802406,-0.79783076,-0.79812074,-0.79821736,-0.7973475,-0.7965743,-0.7969609,-0.7973475,-0.79870063,-0.7987973,-0.7971542,-0.79744416,-0.7945446,-0.79019517,-0.7926115,-0.79154825,-0.7859424,-0.7881654,-0.7940613,-0.7969609,-0.7989906,-0.8009237,-0.8023735,-0.80247015,-0.80227685,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.80247015,-0.80266345,-0.80266345,-0.80266345,-0.8023735,-0.8019869,-0.8019869,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8012137,-0.80208355,-0.80218023,-0.80247015,-0.8027601,-0.80247015,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.8025668,-0.80247015,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8025668,-0.80247015,-0.8025668,-0.8007304,-0.7994738,-0.7992805,-0.7957044,-0.79019517,-0.78603905,-0.7869089,-0.79125834,-0.79038846,-0.7871022,-0.78826207,-0.79000187,-0.7925148,-0.79725087,-0.7987973,-0.79763746,-0.79725087,-0.7971542,-0.79744416,-0.79812074,-0.7975408,-0.7973475,-0.7988939,-0.8007304,-0.80024713,-0.79580104,-0.79154825,-0.7919349,-0.7927081,-0.79135495,-0.7917416,-0.79444796,-0.7958977,-0.79502785,-0.7943513,-0.7947379,-0.7958977,-0.7971542,-0.79812074,-0.79850733,-0.7987973,-0.7991839,-0.7990872,-0.79870063,-0.79831403,-0.79812074,-0.79802406,-0.7977341,-0.7971542,-0.7969609,-0.7968642,-0.7965743,-0.7965743,-0.7967676,-0.7967676,-0.7968642,-0.79705757,-0.7969609,-0.7967676,-0.7966709,-0.7964776,-0.7962843,-0.796091,-0.7959944,-0.7958977,-0.7957044,-0.79560775,-0.7957044,-0.7959944,-0.796091,-0.7959944,-0.7958977,-0.7957044,-0.79512453,-0.79464126,-0.7953178,-0.7958977,-0.79580104,-0.79725087,-0.7988939,-0.7989906,-0.79744416,-0.7961877,-0.79560775,-0.79541445,-0.7949312,-0.79444796,-0.79464126,-0.79512453,-0.79580104,-0.7962843,-0.7961877,-0.796091,-0.7959944,-0.7957044,-0.7955111,-0.79541445,-0.79541445,-0.7957044,-0.796091,-0.7964776,-0.7964776,-0.7964776,-0.7966709,-0.7966709,-0.796381,-0.7959944,-0.7957044,-0.7958977,-0.796381,-0.7967676,-0.7966709,-0.7964776,-0.7967676,-0.79725087,-0.79783076,-0.79831403,-0.79831403,-0.79821736,-0.79831403,-0.79831403,-0.79783076,-0.79744416,-0.79725087,-0.7969609,-0.79725087,-0.79821736,-0.7992805,-0.7994738,-0.7990872,-0.7996672,-0.80024713,-0.79831403,-0.796381,-0.7975408,-0.7994738,-0.8001505,-0.7991839,-0.7977341,-0.7977341,-0.79783076,-0.79763746,-0.79792744,-0.79763746,-0.79744416,-0.79725087,-0.79792744,-0.7990872,-0.7977341,-0.796381,-0.794158,-0.79058176,-0.7923215,-0.7926115,-0.78613573,-0.78603905,-0.7930947,-0.7973475,-0.7987973,-0.8008271,-0.80247015,-0.80247015,-0.80227685,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80247015,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80247015,-0.80169696,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.7971542,-0.7992805,-0.8003438,-0.8027601,-0.8025668,-0.8019869,-0.80247015,-0.80247015,-0.80247015,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8025668,-0.80247015,-0.80266345,-0.80247015,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80285674,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80227685,-0.80218023,-0.80247015,-0.8027601,-0.80227685,-0.80247015,-0.8006338,-0.7997638,-0.79831403,-0.793868,-0.7880688,-0.7849758,-0.7883587,-0.7923215,-0.79038846,-0.7892286,-0.79077506,-0.7929014,-0.7971542,-0.7995705,-0.79821736,-0.79763746,-0.79783076,-0.79792744,-0.79821736,-0.79792744,-0.79725087,-0.79821736,-0.8006338,-0.8016003,-0.7975408,-0.79164493,-0.7906784,-0.7922248,-0.79058176,-0.79000187,-0.793288,-0.79560775,-0.79483455,-0.7945446,-0.79580104,-0.7969609,-0.79763746,-0.79802406,-0.79821736,-0.79802406,-0.79802406,-0.7987973,-0.7992805,-0.7988939,-0.79821736,-0.79802406,-0.7977341,-0.7973475,-0.7969609,-0.7966709,-0.7965743,-0.7964776,-0.7964776,-0.7965743,-0.7965743,-0.7966709,-0.7968642,-0.7968642,-0.7966709,-0.7964776,-0.796381,-0.7962843,-0.7959944,-0.7957044,-0.79560775,-0.79560775,-0.7955111,-0.79560775,-0.796091,-0.796381,-0.7961877,-0.7959944,-0.7958977,-0.7953178,-0.79502785,-0.7955111,-0.79580104,-0.7958977,-0.7969609,-0.79831403,-0.79850733,-0.7975408,-0.7962843,-0.7955111,-0.79541445,-0.7949312,-0.79444796,-0.79464126,-0.7953178,-0.7959944,-0.7962843,-0.796091,-0.7959944,-0.7959944,-0.7957044,-0.7953178,-0.79522115,-0.79541445,-0.79560775,-0.7959944,-0.796381,-0.7965743,-0.7965743,-0.7965743,-0.7964776,-0.796091,-0.7958977,-0.7959944,-0.7962843,-0.7964776,-0.7967676,-0.7969609,-0.7969609,-0.79744416,-0.79821736,-0.7987973,-0.7990872,-0.7987973,-0.79841065,-0.79860395,-0.7988939,-0.7987973,-0.7987973,-0.79870063,-0.79802406,-0.7973475,-0.79725087,-0.79783076,-0.7989906,-0.7997638,-0.79986054,-0.7997638,-0.7992805,-0.79725087,-0.7958977,-0.79744416,-0.7999572,-0.7999572,-0.79812074,-0.79744416,-0.79763746,-0.7973475,-0.7973475,-0.79744416,-0.7975408,-0.7975408,-0.7975408,-0.79841065,-0.79850733,-0.79744416,-0.7943513,-0.79019517,-0.79106504,-0.7923215,-0.7870056,-0.7853624,-0.7923215,-0.79725087,-0.79850733,-0.8004405,-0.8023735,-0.80266345,-0.80247015,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.8025668,-0.8019869,-0.80218023,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80247015,-0.8025668,-0.8023735,-0.8025668,-0.8025668,-0.80218023,-0.8023735,-0.80189025,-0.8008271,-0.80169696,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80005383,-0.80005383,-0.8010204,-0.8025668,-0.8027601,-0.8025668,-0.80266345,-0.80247015,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80247015,-0.80266345,-0.80247015,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.8025668,-0.80285674,-0.80285674,-0.8023735,-0.80218023,-0.8003438,-0.7995705,-0.79744416,-0.7923215,-0.78632903,-0.7855558,-0.79106504,-0.7922248,-0.7894219,-0.79116166,-0.7943513,-0.7971542,-0.7997638,-0.7989906,-0.7969609,-0.7973475,-0.79821736,-0.79812074,-0.79763746,-0.79744416,-0.79821736,-0.79986054,-0.8012137,-0.80005383,-0.7958977,-0.7922248,-0.7920315,-0.7926115,-0.7920315,-0.7931914,-0.79580104,-0.796091,-0.79522115,-0.7961877,-0.79725087,-0.7973475,-0.7971542,-0.79744416,-0.79850733,-0.7991839,-0.7995705,-0.7992805,-0.7987973,-0.79850733,-0.79812074,-0.79763746,-0.7973475,-0.79705757,-0.7967676,-0.7965743,-0.796381,-0.7965743,-0.7967676,-0.7966709,-0.7965743,-0.7965743,-0.7964776,-0.7965743,-0.7966709,-0.7965743,-0.796381,-0.7962843,-0.7958977,-0.79560775,-0.7953178,-0.79512453,-0.79541445,-0.7959944,-0.7962843,-0.7964776,-0.796381,-0.7959944,-0.79580104,-0.7953178,-0.79502785,-0.7955111,-0.79580104,-0.7958977,-0.796381,-0.7969609,-0.7977341,-0.79792744,-0.7965743,-0.7955111,-0.79560775,-0.79502785,-0.79425466,-0.7947379,-0.79541445,-0.7959944,-0.7962843,-0.796381,-0.796091,-0.7958977,-0.79560775,-0.79522115,-0.79522115,-0.7953178,-0.79560775,-0.796091,-0.796381,-0.7964776,-0.7965743,-0.7965743,-0.7962843,-0.7958977,-0.7957044,-0.796381,-0.7967676,-0.7966709,-0.7968642,-0.7969609,-0.7971542,-0.79802406,-0.7987973,-0.7990872,-0.7994738,-0.7994738,-0.7991839,-0.7988939,-0.7987973,-0.79870063,-0.7988939,-0.7989906,-0.7988939,-0.79850733,-0.79783076,-0.7973475,-0.7973475,-0.79850733,-0.7997638,-0.80005383,-0.8001505,-0.7992805,-0.7966709,-0.7953178,-0.7975408,-0.7999572,-0.7997638,-0.79802406,-0.79744416,-0.79763746,-0.7969609,-0.7968642,-0.79744416,-0.7971542,-0.7975408,-0.79860395,-0.79763746,-0.7966709,-0.7961877,-0.7926115,-0.79106504,-0.7924181,-0.7878755,-0.78410596,-0.7902918,-0.7965743,-0.79802406,-0.80005383,-0.8023735,-0.8027601,-0.80247015,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80247015,-0.8023735,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80247015,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8025668,-0.80266345,-0.8027601,-0.80247015,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8023735,-0.8025668,-0.8025668,-0.8025668,-0.80247015,-0.80227685,-0.8023735,-0.80218023,-0.8025668,-0.8025668,-0.80247015,-0.80131036,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8009237,-0.8016003,-0.8023735,-0.8025668,-0.8025668,-0.80227685,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.80247015,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8023735,-0.80247015,-0.8027601,-0.8025668,-0.80247015,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8025668,-0.80285674,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.80247015,-0.8023735,-0.80285674,-0.8025668,-0.80247015,-0.80169696,-0.79986054,-0.7987973,-0.7966709,-0.7917416,-0.7856524,-0.7871022,-0.7930947,-0.79116166,-0.7877788,-0.79164493,-0.7958977,-0.7977341,-0.79821736,-0.79705757,-0.7964776,-0.79744416,-0.79802406,-0.7977341,-0.7971542,-0.7975408,-0.7996672,-0.801407,-0.8003438,-0.79783076,-0.7955111,-0.7936747,-0.793288,-0.7940613,-0.7947379,-0.7958977,-0.7967676,-0.7966709,-0.7966709,-0.7969609,-0.7971542,-0.79725087,-0.79705757,-0.79744416,-0.7990872,-0.7999572,-0.7999572,-0.7997638,-0.7988939,-0.79812074,-0.79792744,-0.79744416,-0.7968642,-0.7966709,-0.7965743,-0.7967676,-0.7965743,-0.7964776,-0.7966709,-0.7966709,-0.7964776,-0.796381,-0.7964776,-0.7966709,-0.7968642,-0.7967676,-0.7962843,-0.796091,-0.7958977,-0.79580104,-0.7955111,-0.79541445,-0.79580104,-0.796381,-0.7964776,-0.796381,-0.7964776,-0.7962843,-0.7958977,-0.7955111,-0.7953178,-0.79560775,-0.79580104,-0.7957044,-0.7961877,-0.79705757,-0.79744416,-0.7969609,-0.796091,-0.79580104,-0.79560775,-0.7949312,-0.7945446,-0.79502785,-0.7955111,-0.7959944,-0.7964776,-0.7965743,-0.7961877,-0.7958977,-0.7955111,-0.79522115,-0.7953178,-0.79541445,-0.7957044,-0.7961877,-0.7964776,-0.7964776,-0.7964776,-0.796381,-0.796091,-0.79580104,-0.7961877,-0.7967676,-0.7968642,-0.7966709,-0.7965743,-0.7969609,-0.79783076,-0.79870063,-0.7992805,-0.7997638,-0.80005383,-0.7997638,-0.7988939,-0.79802406,-0.7975408,-0.7975408,-0.79802406,-0.79821736,-0.7977341,-0.79763746,-0.79792744,-0.79783076,-0.7969609,-0.7958977,-0.79725087,-0.7997638,-0.8005371,-0.7994738,-0.79763746,-0.79522115,-0.794158,-0.7966709,-0.7999572,-0.7995705,-0.7977341,-0.7977341,-0.7975408,-0.79725087,-0.7977341,-0.7971542,-0.7968642,-0.79860395,-0.79802406,-0.7957044,-0.7957044,-0.793868,-0.79145163,-0.7924181,-0.7896152,-0.7847825,-0.7889387,-0.7962843,-0.79831403,-0.7996672,-0.80208355,-0.8027601,-0.80247015,-0.80247015,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80247015,-0.80247015,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80247015,-0.8025668,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.8023735,-0.8019869,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.79802406,-0.7997638,-0.8006338,-0.8023735,-0.8025668,-0.80189025,-0.80247015,-0.80247015,-0.8023735,-0.80247015,-0.8025668,-0.8025668,-0.8023735,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.80247015,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8025668,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.8025668,-0.80266345,-0.80285674,-0.80227685,-0.8023735,-0.8025668,-0.80227685,-0.8023735,-0.801117,-0.7995705,-0.79850733,-0.79541445,-0.7894219,-0.7846859,-0.78845537,-0.7933847,-0.79000187,-0.7881654,-0.7928048,-0.79541445,-0.7957044,-0.7965743,-0.79725087,-0.7977341,-0.79812074,-0.7975408,-0.7969609,-0.7973475,-0.79870063,-0.8007304,-0.801407,-0.79986054,-0.7975408,-0.7955111,-0.79444796,-0.79483455,-0.79560775,-0.796381,-0.79705757,-0.79725087,-0.7968642,-0.7967676,-0.7969609,-0.79725087,-0.7973475,-0.7971542,-0.7973475,-0.79850733,-0.7991839,-0.7995705,-0.7997638,-0.7990872,-0.79821736,-0.79802406,-0.79744416,-0.7968642,-0.7965743,-0.7965743,-0.7966709,-0.7965743,-0.7964776,-0.796381,-0.796381,-0.7962843,-0.7962843,-0.7964776,-0.7967676,-0.7968642,-0.7965743,-0.7962843,-0.7959944,-0.79580104,-0.7955111,-0.7955111,-0.79580104,-0.7959944,-0.7961877,-0.7962843,-0.7964776,-0.7965743,-0.796381,-0.796091,-0.79560775,-0.7953178,-0.7957044,-0.7959944,-0.7958977,-0.796091,-0.7968642,-0.79725087,-0.7966709,-0.796091,-0.7959944,-0.79560775,-0.79502785,-0.7949312,-0.7953178,-0.79580104,-0.7962843,-0.7964776,-0.796381,-0.7962843,-0.7961877,-0.7957044,-0.7953178,-0.7953178,-0.7955111,-0.7957044,-0.7961877,-0.7964776,-0.7964776,-0.796381,-0.796091,-0.7958977,-0.796091,-0.7965743,-0.7967676,-0.7965743,-0.7967676,-0.7969609,-0.79725087,-0.79812074,-0.7992805,-0.7999572,-0.7997638,-0.7989906,-0.79841065,-0.79792744,-0.7977341,-0.79783076,-0.79763746,-0.79725087,-0.7967676,-0.796381,-0.7965743,-0.79705757,-0.7973475,-0.7975408,-0.7967676,-0.79502785,-0.7964776,-0.7994738,-0.7997638,-0.79821736,-0.79705757,-0.7945446,-0.793288,-0.7969609,-0.7997638,-0.79841065,-0.7975408,-0.79783076,-0.7977341,-0.79783076,-0.79725087,-0.796381,-0.79783076,-0.7987973,-0.7966709,-0.79541445,-0.7937714,-0.79145163,-0.7925148,-0.79087174,-0.7852658,-0.7879721,-0.7959944,-0.79831403,-0.7988939,-0.8016003,-0.8027601,-0.8023735,-0.80227685,-0.80266345,-0.80266345,-0.8027601,-0.80247015,-0.8027601,-0.8027601,-0.80247015,-0.80227685,-0.80266345,-0.80247015,-0.8025668,-0.8025668,-0.8025668,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8025668,-0.8023735,-0.8025668,-0.80247015,-0.8023735,-0.80266345,-0.80247015,-0.80266345,-0.80218023,-0.8012137,-0.80169696,-0.7997638,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8008271,-0.80189025,-0.80150366,-0.8025668,-0.8027601,-0.80266345,-0.80285674,-0.8023735,-0.80247015,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80247015,-0.8023735,-0.8027601,-0.80227685,-0.8027601,-0.8009237,-0.7993772,-0.79812074,-0.79357797,-0.78603905,-0.78420264,-0.79058176,-0.7930947,-0.7892286,-0.7895186,-0.7926115,-0.793288,-0.79502785,-0.7977341,-0.79783076,-0.79705757,-0.79725087,-0.79725087,-0.79725087,-0.79831403,-0.79986054,-0.8007304,-0.8010204,-0.80005383,-0.7971542,-0.79522115,-0.7957044,-0.7965743,-0.7967676,-0.7968642,-0.79705757,-0.7969609,-0.7964776,-0.7965743,-0.7969609,-0.79705757,-0.7971542,-0.79744416,-0.7973475,-0.7975408,-0.79850733,-0.7995705,-0.7999572,-0.7989906,-0.79783076,-0.7973475,-0.79705757,-0.7967676,-0.7967676,-0.7966709,-0.7965743,-0.7965743,-0.7966709,-0.7965743,-0.7964776,-0.7964776,-0.796381,-0.7961877,-0.7964776,-0.7966709,-0.7965743,-0.7961877,-0.7959944,-0.79580104,-0.79560775,-0.7955111,-0.79580104,-0.7962843,-0.796381,-0.7962843,-0.7966709,-0.7967676,-0.796381,-0.796091,-0.7957044,-0.79541445,-0.7957044,-0.7961877,-0.796091,-0.7958977,-0.7966709,-0.79725087,-0.7966709,-0.7961877,-0.7959944,-0.7955111,-0.79512453,-0.7953178,-0.7955111,-0.7958977,-0.7962843,-0.7964776,-0.796381,-0.796381,-0.7962843,-0.7958977,-0.79541445,-0.7953178,-0.79541445,-0.79560775,-0.796091,-0.796381,-0.796381,-0.7961877,-0.7958977,-0.7959944,-0.7962843,-0.796381,-0.7965743,-0.7965743,-0.7969609,-0.7966709,-0.7964776,-0.7975408,-0.79841065,-0.7991839,-0.79850733,-0.79821736,-0.79860395,-0.7989906,-0.7994738,-0.7992805,-0.79831403,-0.7971542,-0.7967676,-0.7968642,-0.7969609,-0.7969609,-0.79705757,-0.79763746,-0.79783076,-0.796091,-0.7945446,-0.7967676,-0.7994738,-0.7994738,-0.7989906,-0.79744416,-0.79348135,-0.7933847,-0.79802406,-0.7996672,-0.79792744,-0.79763746,-0.79792744,-0.79744416,-0.79725087,-0.7969609,-0.7977341,-0.79870063,-0.79744416,-0.7966709,-0.79522115,-0.79154825,-0.7919349,-0.7917416,-0.7856524,-0.78613573,-0.79464126,-0.79831403,-0.79841065,-0.8008271,-0.8027601,-0.80266345,-0.8023735,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80247015,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.80247015,-0.801117,-0.80150366,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80024713,-0.80150366,-0.80169696,-0.80247015,-0.80266345,-0.8025668,-0.80266345,-0.80218023,-0.8025668,-0.8023735,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.80285674,-0.8025668,-0.80266345,-0.80266345,-0.8023735,-0.8025668,-0.8001505,-0.7987973,-0.79744416,-0.7919349,-0.7846859,-0.7854591,-0.7926115,-0.7931914,-0.7894219,-0.79019517,-0.7920315,-0.79348135,-0.7962843,-0.7975408,-0.7967676,-0.79580104,-0.7959944,-0.79705757,-0.7977341,-0.7990872,-0.8006338,-0.8012137,-0.8012137,-0.7987973,-0.7955111,-0.79541445,-0.7966709,-0.79705757,-0.79705757,-0.7969609,-0.7967676,-0.7967676,-0.7967676,-0.7968642,-0.7969609,-0.7967676,-0.7968642,-0.7973475,-0.79725087,-0.79725087,-0.79812074,-0.7989906,-0.7990872,-0.79821736,-0.7971542,-0.7968642,-0.7971542,-0.7969609,-0.7967676,-0.7965743,-0.7966709,-0.7969609,-0.7968642,-0.7966709,-0.7967676,-0.7964776,-0.7962843,-0.796381,-0.7964776,-0.7964776,-0.796381,-0.7961877,-0.7958977,-0.7957044,-0.7957044,-0.7957044,-0.7959944,-0.796381,-0.796381,-0.7962843,-0.7965743,-0.7966709,-0.796381,-0.796091,-0.7958977,-0.79560775,-0.79580104,-0.7962843,-0.796091,-0.796091,-0.7971542,-0.79744416,-0.7966709,-0.7962843,-0.7961877,-0.7957044,-0.79522115,-0.79541445,-0.79580104,-0.7958977,-0.7964776,-0.79725087,-0.7969609,-0.7962843,-0.796381,-0.796381,-0.7957044,-0.79522115,-0.79541445,-0.79580104,-0.7961877,-0.7962843,-0.7961877,-0.7959944,-0.7958977,-0.796091,-0.796381,-0.796381,-0.796381,-0.7965743,-0.7968642,-0.79725087,-0.79763746,-0.7977341,-0.79763746,-0.79812074,-0.79850733,-0.7991839,-0.7999572,-0.8001505,-0.7995705,-0.7989906,-0.79841065,-0.79783076,-0.7975408,-0.7973475,-0.79725087,-0.79725087,-0.79725087,-0.79744416,-0.79783076,-0.7973475,-0.7959944,-0.7964776,-0.79831403,-0.7990872,-0.7995705,-0.7989906,-0.7947379,-0.7918382,-0.7953178,-0.7995705,-0.7990872,-0.79763746,-0.79783076,-0.79763746,-0.7973475,-0.79744416,-0.79763746,-0.79831403,-0.7975408,-0.7965743,-0.79512453,-0.7917416,-0.7919349,-0.7929014,-0.7868123,-0.78420264,-0.7921282,-0.79812074,-0.79841065,-0.7999572,-0.80247015,-0.80266345,-0.8023735,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.8025668,-0.80227685,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.80247015,-0.8025668,-0.80227685,-0.8025668,-0.80218023,-0.8025668,-0.8023735,-0.80247015,-0.8025668,-0.8023735,-0.80247015,-0.8025668,-0.80247015,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8023735,-0.80227685,-0.80266345,-0.8025668,-0.80247015,-0.80150366,-0.8010204,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8017936,-0.8023735,-0.80169696,-0.8025668,-0.80247015,-0.8025668,-0.8019869,-0.80227685,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80247015,-0.8019869,-0.7997638,-0.79850733,-0.7959944,-0.7897119,-0.78371936,-0.7870056,-0.7940613,-0.7929981,-0.79019517,-0.7917416,-0.7933847,-0.79522115,-0.7965743,-0.796091,-0.7962843,-0.7967676,-0.7968642,-0.7975408,-0.79870063,-0.8004405,-0.80150366,-0.8005371,-0.79850733,-0.7964776,-0.79580104,-0.7965743,-0.79705757,-0.7969609,-0.7968642,-0.7966709,-0.7965743,-0.7967676,-0.7969609,-0.7968642,-0.7969609,-0.7969609,-0.79705757,-0.79725087,-0.79705757,-0.7967676,-0.7975408,-0.7988939,-0.7993772,-0.79821736,-0.7968642,-0.7968642,-0.7971542,-0.7968642,-0.7968642,-0.7968642,-0.7966709,-0.7968642,-0.79705757,-0.7968642,-0.7964776,-0.7962843,-0.7964776,-0.7965743,-0.7964776,-0.7964776,-0.7964776,-0.7961877,-0.79580104,-0.7957044,-0.7957044,-0.7958977,-0.7961877,-0.7964776,-0.7964776,-0.7962843,-0.7962843,-0.7962843,-0.7961877,-0.7959944,-0.79580104,-0.79560775,-0.7958977,-0.7964776,-0.7962843,-0.7961877,-0.7968642,-0.79705757,-0.7965743,-0.7962843,-0.796091,-0.7957044,-0.7953178,-0.79541445,-0.7958977,-0.796091,-0.7965743,-0.7973475,-0.7973475,-0.7965743,-0.7962843,-0.7962843,-0.7959944,-0.7955111,-0.79560775,-0.7958977,-0.7959944,-0.7959944,-0.7959944,-0.796091,-0.7961877,-0.7961877,-0.796381,-0.7965743,-0.7964776,-0.7965743,-0.79705757,-0.7971542,-0.79705757,-0.7969609,-0.7969609,-0.7971542,-0.7975408,-0.79850733,-0.80005383,-0.8005371,-0.7994738,-0.7987973,-0.79860395,-0.79792744,-0.79725087,-0.79705757,-0.79725087,-0.79705757,-0.7968642,-0.7971542,-0.79763746,-0.7975408,-0.79705757,-0.79744416,-0.79841065,-0.79802406,-0.79860395,-0.7995705,-0.796381,-0.7926115,-0.79444796,-0.7991839,-0.8007304,-0.7990872,-0.79792744,-0.7977341,-0.79783076,-0.7975408,-0.7969609,-0.7977341,-0.79812074,-0.796381,-0.7940613,-0.79135495,-0.7917416,-0.793868,-0.78864866,-0.78362274,-0.7900985,-0.7975408,-0.79860395,-0.7995705,-0.80218023,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80247015,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80247015,-0.80227685,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8023735,-0.80247015,-0.80266345,-0.80266345,-0.80266345,-0.80218023,-0.80218023,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8025668,-0.80285674,-0.80247015,-0.80266345,-0.80247015,-0.80266345,-0.8023735,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.80247015,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80247015,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8023735,-0.80169696,-0.7996672,-0.79841065,-0.7947379,-0.7874888,-0.78391266,-0.7894219,-0.7949312,-0.7931914,-0.79154825,-0.7931914,-0.7949312,-0.7959944,-0.7962843,-0.7967676,-0.79763746,-0.79792744,-0.7977341,-0.79841065,-0.8001505,-0.8017936,-0.8017936,-0.7991839,-0.796091,-0.7958977,-0.79705757,-0.7971542,-0.79705757,-0.79705757,-0.7967676,-0.7965743,-0.7965743,-0.7965743,-0.7964776,-0.7964776,-0.7967676,-0.7968642,-0.7967676,-0.7969609,-0.79725087,-0.7969609,-0.7969609,-0.7987973,-0.8004405,-0.7994738,-0.7977341,-0.7973475,-0.79725087,-0.7968642,-0.7965743,-0.7965743,-0.7965743,-0.7965743,-0.7965743,-0.7965743,-0.7964776,-0.7961877,-0.796091,-0.7962843,-0.796381,-0.796381,-0.7962843,-0.7961877,-0.7958977,-0.7957044,-0.7958977,-0.7959944,-0.7961877,-0.796381,-0.796381,-0.7962843,-0.7962843,-0.7962843,-0.7961877,-0.7961877,-0.79580104,-0.7955111,-0.7958977,-0.7964776,-0.7964776,-0.7964776,-0.7969609,-0.79705757,-0.7962843,-0.796091,-0.7962843,-0.7958977,-0.79560775,-0.79580104,-0.796091,-0.7962843,-0.796381,-0.796381,-0.7966709,-0.7968642,-0.7964776,-0.7961877,-0.796091,-0.79560775,-0.79541445,-0.7957044,-0.79560775,-0.7957044,-0.7959944,-0.7959944,-0.7957044,-0.796091,-0.7965743,-0.7965743,-0.7964776,-0.7968642,-0.7969609,-0.7967676,-0.7967676,-0.7967676,-0.7967676,-0.7968642,-0.79705757,-0.7975408,-0.79841065,-0.7991839,-0.7994738,-0.7991839,-0.79870063,-0.79812074,-0.79763746,-0.79744416,-0.7973475,-0.79705757,-0.7968642,-0.7969609,-0.79725087,-0.7973475,-0.7971542,-0.7973475,-0.79792744,-0.79802406,-0.79812074,-0.7990872,-0.7989906,-0.7969609,-0.79580104,-0.79812074,-0.8010204,-0.8008271,-0.79870063,-0.79763746,-0.79802406,-0.79783076,-0.7969609,-0.79783076,-0.79860395,-0.7965743,-0.79444796,-0.79164493,-0.79058176,-0.79357797,-0.7904851,-0.78391266,-0.7881654,-0.7964776,-0.79831403,-0.7989906,-0.8017936,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.8025668,-0.8025668,-0.8023735,-0.80247015,-0.80266345,-0.8023735,-0.80266345,-0.8027601,-0.8025668,-0.80247015,-0.80218023,-0.80247015,-0.8027601,-0.8027601,-0.80266345,-0.80247015,-0.80247015,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8012137,-0.8017936,-0.80208355,-0.8027601,-0.80247015,-0.8023735,-0.80285674,-0.8025668,-0.8023735,-0.8025668,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80285674,-0.80266345,-0.80285674,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80227685,-0.80247015,-0.80247015,-0.8010204,-0.7989906,-0.79850733,-0.7943513,-0.78632903,-0.78429925,-0.79116166,-0.79580104,-0.79357797,-0.7922248,-0.79483455,-0.7968642,-0.7965743,-0.7969609,-0.79802406,-0.79792744,-0.79763746,-0.79821736,-0.7996672,-0.801117,-0.80169696,-0.80131036,-0.7991839,-0.79705757,-0.79705757,-0.7973475,-0.79705757,-0.79705757,-0.7968642,-0.7965743,-0.7965743,-0.7964776,-0.7962843,-0.7961877,-0.7962843,-0.7965743,-0.7968642,-0.7967676,-0.7966709,-0.7969609,-0.7968642,-0.79705757,-0.79870063,-0.7996672,-0.79870063,-0.7975408,-0.7971542,-0.7969609,-0.7969609,-0.7967676,-0.7965743,-0.796381,-0.796381,-0.796381,-0.796381,-0.7965743,-0.7962843,-0.7958977,-0.7959944,-0.7962843,-0.7961877,-0.7961877,-0.7961877,-0.7958977,-0.7957044,-0.7958977,-0.796091,-0.7962843,-0.7962843,-0.7961877,-0.7961877,-0.7962843,-0.7961877,-0.796091,-0.796091,-0.79580104,-0.7955111,-0.7957044,-0.7962843,-0.7966709,-0.7966709,-0.7968642,-0.79725087,-0.7969609,-0.7965743,-0.7965743,-0.7961877,-0.7957044,-0.79580104,-0.7959944,-0.7962843,-0.796381,-0.7961877,-0.7962843,-0.7964776,-0.7964776,-0.7965743,-0.796381,-0.79560775,-0.79522115,-0.7955111,-0.79580104,-0.7957044,-0.7957044,-0.7958977,-0.79580104,-0.7958977,-0.7964776,-0.7964776,-0.7962843,-0.7966709,-0.7968642,-0.7965743,-0.7965743,-0.7966709,-0.7965743,-0.7966709,-0.79705757,-0.7975408,-0.79783076,-0.79812074,-0.7987973,-0.7993772,-0.7989906,-0.79831403,-0.79792744,-0.7977341,-0.7975408,-0.79725087,-0.79705757,-0.7968642,-0.7968642,-0.7971542,-0.79725087,-0.7971542,-0.7975408,-0.79792744,-0.79812074,-0.79821736,-0.7989906,-0.7995705,-0.79812074,-0.79763746,-0.7997638,-0.8009237,-0.7997638,-0.79821736,-0.79783076,-0.79812074,-0.79744416,-0.79812074,-0.7990872,-0.7962843,-0.7940613,-0.7927081,-0.79106504,-0.7929981,-0.79116166,-0.78458923,-0.78661895,-0.79483455,-0.79812074,-0.7990872,-0.801407,-0.8027601,-0.80266345,-0.80266345,-0.80247015,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80247015,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.80247015,-0.8025668,-0.8023735,-0.80266345,-0.80247015,-0.8025668,-0.80247015,-0.80247015,-0.8027601,-0.80266345,-0.80247015,-0.8025668,-0.8025668,-0.80247015,-0.8023735,-0.8023735,-0.80189025,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.801407,-0.80189025,-0.80227685,-0.8025668,-0.8027601,-0.8023735,-0.8025668,-0.8027601,-0.80266345,-0.8025668,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.80285674,-0.80247015,-0.80227685,-0.80266345,-0.8023735,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8025668,-0.7997638,-0.79783076,-0.7971542,-0.7925148,-0.7849758,-0.78420264,-0.7923215,-0.79705757,-0.7940613,-0.79357797,-0.79705757,-0.79744416,-0.7966709,-0.7977341,-0.79802406,-0.79744416,-0.79783076,-0.7989906,-0.80024713,-0.8010204,-0.80131036,-0.8008271,-0.7990872,-0.7977341,-0.79725087,-0.7971542,-0.79705757,-0.7969609,-0.7967676,-0.7966709,-0.7966709,-0.7965743,-0.796381,-0.796381,-0.796381,-0.7964776,-0.7967676,-0.7968642,-0.7967676,-0.7969609,-0.7968642,-0.7973475,-0.7987973,-0.7993772,-0.79812074,-0.7973475,-0.7975408,-0.79725087,-0.7968642,-0.7968642,-0.7969609,-0.7966709,-0.796381,-0.7962843,-0.796091,-0.796091,-0.7962843,-0.796091,-0.7958977,-0.7959944,-0.7961877,-0.7961877,-0.796091,-0.7959944,-0.7958977,-0.796091,-0.7962843,-0.7961877,-0.796091,-0.7961877,-0.796091,-0.7959944,-0.7961877,-0.7961877,-0.7959944,-0.7957044,-0.7957044,-0.7959944,-0.7965743,-0.796381,-0.7968642,-0.79986054,-0.801117,-0.79850733,-0.7967676,-0.7967676,-0.7962843,-0.79580104,-0.7957044,-0.7958977,-0.7962843,-0.7962843,-0.796091,-0.7959944,-0.796091,-0.7962843,-0.7964776,-0.7962843,-0.7958977,-0.7953178,-0.7953178,-0.7957044,-0.79580104,-0.79560775,-0.79580104,-0.7961877,-0.796091,-0.7961877,-0.7965743,-0.7965743,-0.7965743,-0.7966709,-0.7964776,-0.7965743,-0.7967676,-0.7966709,-0.7966709,-0.7969609,-0.79725087,-0.79783076,-0.79841065,-0.79870063,-0.7990872,-0.7990872,-0.7987973,-0.79870063,-0.79870063,-0.79802406,-0.79725087,-0.7971542,-0.7969609,-0.7966709,-0.7968642,-0.79725087,-0.7973475,-0.79763746,-0.7975408,-0.7975408,-0.7977341,-0.79763746,-0.79850733,-0.7996672,-0.7993772,-0.79986054,-0.8008271,-0.8004405,-0.7991839,-0.79831403,-0.79841065,-0.79802406,-0.7977341,-0.7989906,-0.79744416,-0.79357797,-0.7919349,-0.7919349,-0.7933847,-0.7921282,-0.78613573,-0.7856524,-0.7927081,-0.79744416,-0.7990872,-0.80131036,-0.80266345,-0.8027601,-0.80266345,-0.80247015,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80247015,-0.80247015,-0.8023735,-0.8027601,-0.80247015,-0.80247015,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.80247015,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80247015,-0.8023735,-0.80266345,-0.80266345,-0.8025668,-0.80218023,-0.8023735,-0.8027601,-0.80266345,-0.80247015,-0.80247015,-0.80266345,-0.8025668,-0.80266345,-0.80227685,-0.80189025,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80150366,-0.80218023,-0.80208355,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.80247015,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.8023735,-0.8025668,-0.8025668,-0.8023735,-0.8025668,-0.80247015,-0.8027601,-0.8025668,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8023735,-0.80208355,-0.7994738,-0.7977341,-0.79512453,-0.7894219,-0.78439593,-0.78632903,-0.7940613,-0.7966709,-0.79425466,-0.79580104,-0.7975408,-0.7959944,-0.7964776,-0.79792744,-0.79763746,-0.79763746,-0.79831403,-0.7994738,-0.8003438,-0.8009237,-0.80169696,-0.8010204,-0.7987973,-0.79744416,-0.7971542,-0.7971542,-0.7971542,-0.7969609,-0.7967676,-0.7968642,-0.7969609,-0.7968642,-0.7965743,-0.7964776,-0.7964776,-0.7964776,-0.7966709,-0.7967676,-0.7966709,-0.7967676,-0.7969609,-0.79744416,-0.79860395,-0.7991839,-0.79821736,-0.7971542,-0.7969609,-0.79705757,-0.7969609,-0.7967676,-0.7967676,-0.7965743,-0.796381,-0.796091,-0.7958977,-0.7959944,-0.796091,-0.7958977,-0.7958977,-0.7959944,-0.7959944,-0.7959944,-0.7959944,-0.7959944,-0.7958977,-0.7959944,-0.7962843,-0.796091,-0.7958977,-0.7958977,-0.7959944,-0.7961877,-0.7962843,-0.7961877,-0.7959944,-0.796091,-0.79580104,-0.7957044,-0.7964776,-0.7961877,-0.7965743,-0.80024713,-0.8007304,-0.7994738,-0.7962843,-0.7966709,-0.7965743,-0.7959944,-0.7959944,-0.796091,-0.796091,-0.7959944,-0.7958977,-0.7958977,-0.7959944,-0.7962843,-0.7962843,-0.7961877,-0.79580104,-0.7953178,-0.7953178,-0.7955111,-0.7957044,-0.7957044,-0.79580104,-0.7959944,-0.7959944,-0.7959944,-0.7961877,-0.7962843,-0.796381,-0.7964776,-0.796381,-0.796381,-0.7966709,-0.7968642,-0.7968642,-0.79705757,-0.79705757,-0.7966709,-0.79744416,-0.7987973,-0.7989906,-0.79870063,-0.7988939,-0.7994738,-0.7990872,-0.7977341,-0.7971542,-0.79725087,-0.79705757,-0.7967676,-0.7965743,-0.7967676,-0.79725087,-0.7973475,-0.7973475,-0.7973475,-0.7975408,-0.7975408,-0.79763746,-0.7992805,-0.8005371,-0.8008271,-0.8010204,-0.8010204,-0.80005383,-0.79860395,-0.79812074,-0.79841065,-0.79744416,-0.79744416,-0.79850733,-0.7958977,-0.79154825,-0.79096836,-0.793288,-0.7928048,-0.7871022,-0.7847825,-0.79087174,-0.7967676,-0.79850733,-0.8006338,-0.80266345,-0.80266345,-0.8023735,-0.8025668,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.8023735,-0.80227685,-0.8025668,-0.8027601,-0.80247015,-0.8025668,-0.80266345,-0.80247015,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.8027601,-0.8023735,-0.8023735,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8019869,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8009237,-0.80189025,-0.8016003,-0.80266345,-0.80227685,-0.80247015,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80247015,-0.8023735,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.80227685,-0.80169696,-0.7995705,-0.79812074,-0.79444796,-0.78845537,-0.7847825,-0.7892286,-0.796381,-0.79580104,-0.7940613,-0.7966709,-0.7962843,-0.79522115,-0.7969609,-0.79763746,-0.7975408,-0.79802406,-0.7989906,-0.8005371,-0.8008271,-0.8007304,-0.801407,-0.80024713,-0.79821736,-0.7973475,-0.7971542,-0.7971542,-0.7971542,-0.7968642,-0.7968642,-0.79705757,-0.79705757,-0.7968642,-0.7966709,-0.7964776,-0.7964776,-0.7965743,-0.7968642,-0.7969609,-0.7968642,-0.7968642,-0.7969609,-0.7973475,-0.7987973,-0.7992805,-0.79763746,-0.796381,-0.796381,-0.7964776,-0.7965743,-0.7965743,-0.796381,-0.7962843,-0.7962843,-0.7961877,-0.796091,-0.796091,-0.7959944,-0.7958977,-0.796091,-0.7961877,-0.7961877,-0.7961877,-0.7961877,-0.7959944,-0.7958977,-0.7961877,-0.7965743,-0.7959944,-0.79560775,-0.79580104,-0.796091,-0.7961877,-0.7962843,-0.7961877,-0.7962843,-0.796381,-0.7961877,-0.7958977,-0.7961877,-0.7965743,-0.7965743,-0.79802406,-0.7993772,-0.79812074,-0.796381,-0.7966709,-0.7965743,-0.79580104,-0.7957044,-0.7958977,-0.7959944,-0.7958977,-0.7958977,-0.7958977,-0.7958977,-0.7959944,-0.796091,-0.7961877,-0.7959944,-0.7955111,-0.79522115,-0.79541445,-0.7957044,-0.79580104,-0.7958977,-0.7959944,-0.796091,-0.7959944,-0.7958977,-0.7959944,-0.7961877,-0.7962843,-0.7961877,-0.7961877,-0.7964776,-0.7969609,-0.7969609,-0.7968642,-0.7968642,-0.7961877,-0.796381,-0.79792744,-0.7990872,-0.79870063,-0.79860395,-0.7988939,-0.79870063,-0.79812074,-0.7975408,-0.79725087,-0.79705757,-0.7967676,-0.7962843,-0.7962843,-0.7964776,-0.7966709,-0.7971542,-0.7973475,-0.7973475,-0.79744416,-0.7973475,-0.79802406,-0.7990872,-0.80005383,-0.8010204,-0.8016003,-0.801117,-0.7992805,-0.79802406,-0.79831403,-0.79802406,-0.7965743,-0.7973475,-0.79850733,-0.7945446,-0.7902918,-0.7921282,-0.7931914,-0.7875855,-0.78458923,-0.79000187,-0.7959944,-0.79821736,-0.80024713,-0.80247015,-0.80266345,-0.8023735,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80247015,-0.8023735,-0.80247015,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8023735,-0.80247015,-0.8023735,-0.8023735,-0.80266345,-0.80266345,-0.80266345,-0.80247015,-0.80266345,-0.80266345,-0.8023735,-0.8019869,-0.80169696,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.801407,-0.8025668,-0.8023735,-0.80247015,-0.80266345,-0.8023735,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80247015,-0.80266345,-0.80247015,-0.8012137,-0.7993772,-0.7977341,-0.7931914,-0.7870056,-0.7848792,-0.79106504,-0.7971542,-0.7953178,-0.79444796,-0.796381,-0.79541445,-0.79580104,-0.7975408,-0.79744416,-0.7973475,-0.79821736,-0.80024713,-0.80169696,-0.8006338,-0.80005383,-0.8001505,-0.79870063,-0.7975408,-0.7973475,-0.7971542,-0.7971542,-0.7971542,-0.79705757,-0.79705757,-0.79705757,-0.7968642,-0.7966709,-0.7965743,-0.7964776,-0.7965743,-0.7966709,-0.7969609,-0.79705757,-0.79705757,-0.7971542,-0.7971542,-0.79783076,-0.7992805,-0.79870063,-0.7969609,-0.79705757,-0.7975408,-0.7968642,-0.7965743,-0.796381,-0.7961877,-0.7961877,-0.7961877,-0.796091,-0.7961877,-0.7961877,-0.7961877,-0.7962843,-0.7962843,-0.796381,-0.796381,-0.796091,-0.7961877,-0.7962843,-0.796091,-0.796091,-0.7962843,-0.79580104,-0.79560775,-0.7958977,-0.7959944,-0.7959944,-0.7961877,-0.796381,-0.7962843,-0.7962843,-0.7962843,-0.7961877,-0.7961877,-0.7964776,-0.7966709,-0.7971542,-0.7975408,-0.7969609,-0.796381,-0.7966709,-0.7965743,-0.7958977,-0.7957044,-0.7959944,-0.796091,-0.7958977,-0.79580104,-0.7958977,-0.7958977,-0.796091,-0.796091,-0.7958977,-0.79580104,-0.79560775,-0.79541445,-0.7955111,-0.79580104,-0.79580104,-0.79580104,-0.7958977,-0.7958977,-0.7959944,-0.7958977,-0.79580104,-0.7959944,-0.7959944,-0.7958977,-0.796091,-0.796381,-0.7964776,-0.7967676,-0.7969609,-0.7971542,-0.79744416,-0.7975408,-0.79812074,-0.7990872,-0.7992805,-0.7989906,-0.7991839,-0.7991839,-0.7987973,-0.79812074,-0.79744416,-0.7971542,-0.7968642,-0.796381,-0.7962843,-0.796381,-0.796381,-0.7965743,-0.7969609,-0.7971542,-0.79725087,-0.7971542,-0.79744416,-0.79870063,-0.8001505,-0.8009237,-0.80131036,-0.80169696,-0.8005371,-0.79850733,-0.79802406,-0.79841065,-0.7969609,-0.79560775,-0.7977341,-0.79802406,-0.7927081,-0.79164493,-0.7940613,-0.7895186,-0.7847825,-0.7890353,-0.7953178,-0.79821736,-0.8005371,-0.8025668,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.80247015,-0.80247015,-0.80247015,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80247015,-0.80218023,-0.80169696,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8012137,-0.8023735,-0.80218023,-0.8025668,-0.80247015,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80285674,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80247015,-0.80266345,-0.8027601,-0.8006338,-0.7993772,-0.79705757,-0.7906784,-0.78458923,-0.7852658,-0.7924181,-0.7958977,-0.7940613,-0.7947379,-0.7961877,-0.7959944,-0.7971542,-0.79783076,-0.7973475,-0.7975408,-0.7992805,-0.801407,-0.8012137,-0.8001505,-0.79986054,-0.7987973,-0.79763746,-0.7975408,-0.79744416,-0.79725087,-0.7971542,-0.7971542,-0.79705757,-0.7967676,-0.7967676,-0.7968642,-0.7967676,-0.7965743,-0.7965743,-0.796381,-0.7964776,-0.7971542,-0.7973475,-0.79725087,-0.7971542,-0.79744416,-0.79850733,-0.7993772,-0.79860395,-0.7975408,-0.7973475,-0.79705757,-0.7965743,-0.796381,-0.7961877,-0.796091,-0.7959944,-0.796091,-0.7959944,-0.7959944,-0.7962843,-0.7964776,-0.7964776,-0.7964776,-0.7962843,-0.7961877,-0.7962843,-0.7964776,-0.7964776,-0.7961877,-0.796091,-0.796091,-0.7958977,-0.7957044,-0.7959944,-0.7959944,-0.796091,-0.796381,-0.796381,-0.796091,-0.796091,-0.7961877,-0.7959944,-0.796091,-0.796381,-0.7964776,-0.7966709,-0.7971542,-0.7969609,-0.7965743,-0.7964776,-0.7962843,-0.7959944,-0.7959944,-0.796091,-0.7962843,-0.7959944,-0.7958977,-0.7959944,-0.7958977,-0.7958977,-0.7959944,-0.7958977,-0.7957044,-0.7955111,-0.7953178,-0.7955111,-0.79560775,-0.7955111,-0.79580104,-0.7959944,-0.79580104,-0.79580104,-0.7958977,-0.7958977,-0.79580104,-0.7958977,-0.79580104,-0.7959944,-0.7964776,-0.796381,-0.7962843,-0.7965743,-0.7967676,-0.7975408,-0.79841065,-0.79860395,-0.7990872,-0.7997638,-0.7993772,-0.7989906,-0.7991839,-0.7994738,-0.7988939,-0.7975408,-0.7967676,-0.7966709,-0.7964776,-0.7962843,-0.796091,-0.796091,-0.796381,-0.7964776,-0.7967676,-0.7969609,-0.79705757,-0.7977341,-0.7989906,-0.80024713,-0.8008271,-0.801117,-0.8017936,-0.80131036,-0.7993772,-0.79812074,-0.79831403,-0.79792744,-0.7957044,-0.7957044,-0.79821736,-0.7964776,-0.7936747,-0.79425466,-0.7902918,-0.7852658,-0.78855205,-0.79464126,-0.79792744,-0.8004405,-0.8023735,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80247015,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80247015,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.8027601,-0.8025668,-0.8025668,-0.8019869,-0.80150366,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.801407,-0.8023735,-0.8019869,-0.80285674,-0.8023735,-0.80227685,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8025668,-0.8025668,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80285674,-0.80266345,-0.80285674,-0.8027601,-0.8023735,-0.8023735,-0.8003438,-0.7987973,-0.79522115,-0.7892286,-0.78449255,-0.78613573,-0.7928048,-0.79464126,-0.7929981,-0.7945446,-0.7965743,-0.7973475,-0.79792744,-0.7977341,-0.79744416,-0.79821736,-0.8005371,-0.8017936,-0.8010204,-0.8003438,-0.7992805,-0.79783076,-0.7975408,-0.79763746,-0.79725087,-0.7971542,-0.79705757,-0.7969609,-0.7969609,-0.7968642,-0.7966709,-0.7966709,-0.7967676,-0.7967676,-0.7965743,-0.7962843,-0.7965743,-0.7971542,-0.79763746,-0.7977341,-0.7975408,-0.79792744,-0.7990872,-0.7994738,-0.79860395,-0.7977341,-0.7969609,-0.7966709,-0.7965743,-0.7961877,-0.7958977,-0.796091,-0.7959944,-0.7958977,-0.7961877,-0.7961877,-0.796091,-0.7962843,-0.7964776,-0.796381,-0.796381,-0.7962843,-0.7961877,-0.7965743,-0.7966709,-0.7961877,-0.7961877,-0.7962843,-0.7959944,-0.7957044,-0.7959944,-0.7961877,-0.7962843,-0.7962843,-0.796091,-0.7961877,-0.7962843,-0.7961877,-0.7961877,-0.7962843,-0.796381,-0.7964776,-0.7967676,-0.7969609,-0.7968642,-0.7967676,-0.7965743,-0.796091,-0.7959944,-0.7961877,-0.7961877,-0.7961877,-0.796091,-0.796091,-0.7961877,-0.7961877,-0.7958977,-0.79580104,-0.79580104,-0.7958977,-0.7958977,-0.7957044,-0.7957044,-0.7958977,-0.79580104,-0.7958977,-0.796091,-0.7959944,-0.7958977,-0.7959944,-0.7959944,-0.7959944,-0.7958977,-0.79580104,-0.796091,-0.796381,-0.796381,-0.796381,-0.796381,-0.7962843,-0.796381,-0.7967676,-0.79725087,-0.79831403,-0.7993772,-0.7993772,-0.79831403,-0.79744416,-0.79831403,-0.79860395,-0.79744416,-0.7968642,-0.7969609,-0.796381,-0.7958977,-0.796091,-0.7962843,-0.7962843,-0.796381,-0.7968642,-0.7971542,-0.79725087,-0.79783076,-0.79860395,-0.7997638,-0.8012137,-0.8017936,-0.80169696,-0.80131036,-0.8001505,-0.7987973,-0.79802406,-0.79821736,-0.7973475,-0.7957044,-0.7966709,-0.79763746,-0.796091,-0.79444796,-0.79019517,-0.7856524,-0.7878755,-0.7936747,-0.79744416,-0.7999572,-0.80208355,-0.80285674,-0.8025668,-0.80247015,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8023735,-0.80266345,-0.8027601,-0.80285674,-0.80247015,-0.80266345,-0.80285674,-0.8027601,-0.8025668,-0.8023735,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80208355,-0.80189025,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8023735,-0.8027601,-0.80218023,-0.80218023,-0.80227685,-0.80227685,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80247015,-0.80266345,-0.80266345,-0.80247015,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.80247015,-0.80169696,-0.79986054,-0.79802406,-0.7930947,-0.7872955,-0.78429925,-0.7874888,-0.79357797,-0.793868,-0.7917416,-0.794158,-0.7971542,-0.79783076,-0.79792744,-0.79792744,-0.79792744,-0.7992805,-0.8012137,-0.80189025,-0.8012137,-0.7997638,-0.79792744,-0.79725087,-0.7975408,-0.7973475,-0.7971542,-0.79725087,-0.79705757,-0.7968642,-0.7969609,-0.7968642,-0.7965743,-0.7965743,-0.7965743,-0.7965743,-0.7966709,-0.7965743,-0.7968642,-0.79744416,-0.79763746,-0.79792744,-0.79860395,-0.7992805,-0.7993772,-0.7989906,-0.79841065,-0.79792744,-0.79725087,-0.7965743,-0.7964776,-0.7961877,-0.79580104,-0.79580104,-0.7958977,-0.7959944,-0.7962843,-0.7964776,-0.796381,-0.796381,-0.7964776,-0.796381,-0.7961877,-0.7965743,-0.7967676,-0.7966709,-0.7965743,-0.7962843,-0.7961877,-0.796381,-0.796091,-0.79560775,-0.7957044,-0.796091,-0.796381,-0.796381,-0.796091,-0.7959944,-0.796381,-0.7964776,-0.7962843,-0.796381,-0.7962843,-0.7962843,-0.7967676,-0.79705757,-0.7967676,-0.7966709,-0.7968642,-0.7964776,-0.796091,-0.7959944,-0.7961877,-0.796091,-0.7959944,-0.796091,-0.796091,-0.7959944,-0.7958977,-0.79580104,-0.7959944,-0.7958977,-0.79560775,-0.7957044,-0.7959944,-0.7958977,-0.79580104,-0.7959944,-0.7959944,-0.7958977,-0.7959944,-0.7959944,-0.7959944,-0.796091,-0.7958977,-0.7958977,-0.796091,-0.7962843,-0.7962843,-0.796381,-0.796381,-0.7964776,-0.7967676,-0.7967676,-0.7962843,-0.7969609,-0.79841065,-0.7991839,-0.7991839,-0.79831403,-0.7975408,-0.79783076,-0.79744416,-0.7967676,-0.7966709,-0.7962843,-0.796091,-0.7961877,-0.7961877,-0.796381,-0.7966709,-0.7968642,-0.79725087,-0.79744416,-0.79802406,-0.7989906,-0.7992805,-0.8003438,-0.80150366,-0.80150366,-0.80131036,-0.8009237,-0.7994738,-0.79792744,-0.79783076,-0.79783076,-0.7965743,-0.7962843,-0.79705757,-0.7968642,-0.7957044,-0.79125834,-0.7865223,-0.7883587,-0.793288,-0.7966709,-0.7993772,-0.8016003,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.80247015,-0.8025668,-0.80266345,-0.80285674,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8023735,-0.8023735,-0.80227685,-0.8025668,-0.80285674,-0.8025668,-0.80266345,-0.80247015,-0.80247015,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8012137,-0.80227685,-0.80247015,-0.80208355,-0.80218023,-0.80247015,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80285674,-0.8025668,-0.80247015,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.80266345,-0.8025668,-0.8025668,-0.8012137,-0.7994738,-0.7975408,-0.7919349,-0.7857491,-0.78458923,-0.79019517,-0.79522115,-0.7929981,-0.79154825,-0.79522115,-0.7971542,-0.79725087,-0.79812074,-0.79821736,-0.79850733,-0.80024713,-0.8017936,-0.80169696,-0.8001505,-0.79831403,-0.79744416,-0.79725087,-0.7973475,-0.79744416,-0.7973475,-0.7971542,-0.79705757,-0.79705757,-0.7969609,-0.7966709,-0.7964776,-0.7965743,-0.796381,-0.796381,-0.7967676,-0.7969609,-0.79725087,-0.7975408,-0.79812074,-0.7990872,-0.7994738,-0.7990872,-0.79860395,-0.79821736,-0.7977341,-0.79744416,-0.7971542,-0.7967676,-0.796381,-0.7961877,-0.7959944,-0.7958977,-0.7959944,-0.7961877,-0.7962843,-0.796381,-0.796381,-0.7964776,-0.796381,-0.796381,-0.796381,-0.7961877,-0.79580104,-0.7958977,-0.796381,-0.7964776,-0.7961877,-0.7961877,-0.7961877,-0.79580104,-0.7955111,-0.7957044,-0.7958977,-0.7959944,-0.7961877,-0.7959944,-0.7958977,-0.7962843,-0.7962843,-0.7962843,-0.7964776,-0.7966709,-0.7969609,-0.7971542,-0.7969609,-0.7966709,-0.7965743,-0.7962843,-0.7959944,-0.7959944,-0.796091,-0.7959944,-0.7959944,-0.7961877,-0.796091,-0.79580104,-0.79580104,-0.79580104,-0.79580104,-0.7959944,-0.79580104,-0.7957044,-0.79580104,-0.7959944,-0.796091,-0.7958977,-0.79580104,-0.7958977,-0.79580104,-0.7958977,-0.796091,-0.796091,-0.7958977,-0.7958977,-0.7958977,-0.7959944,-0.7961877,-0.796091,-0.7958977,-0.7958977,-0.7965743,-0.7977341,-0.79744416,-0.796381,-0.7971542,-0.7987973,-0.7993772,-0.7991839,-0.7988939,-0.79831403,-0.7973475,-0.7965743,-0.796381,-0.7961877,-0.7958977,-0.796091,-0.7966709,-0.7969609,-0.7968642,-0.7968642,-0.7973475,-0.79792744,-0.79841065,-0.7987973,-0.79870063,-0.7988939,-0.80024713,-0.8016003,-0.8017936,-0.801407,-0.8001505,-0.79850733,-0.79792744,-0.79812074,-0.79744416,-0.7965743,-0.7964776,-0.79763746,-0.79792744,-0.7926115,-0.7867156,-0.7880688,-0.7921282,-0.7953178,-0.7987973,-0.801117,-0.8023735,-0.8027601,-0.8025668,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8023735,-0.80227685,-0.80247015,-0.80247015,-0.80227685,-0.80247015,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80247015,-0.8025668,-0.8023735,-0.8019869,-0.80247015,-0.8023735,-0.8025668,-0.80247015,-0.80208355,-0.80227685,-0.8017936,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8019869,-0.80266345,-0.80208355,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8023735,-0.80227685,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8025668,-0.80131036,-0.7990872,-0.7958977,-0.7906784,-0.78661895,-0.7897119,-0.7966709,-0.7965743,-0.7924181,-0.7939647,-0.7964776,-0.7962843,-0.79744416,-0.79841065,-0.79821736,-0.7992805,-0.801117,-0.80208355,-0.8007304,-0.79860395,-0.79763746,-0.79744416,-0.79725087,-0.7973475,-0.7977341,-0.79744416,-0.7971542,-0.7971542,-0.7969609,-0.7965743,-0.7965743,-0.7964776,-0.796381,-0.7964776,-0.796381,-0.7966709,-0.7973475,-0.79763746,-0.79802406,-0.7988939,-0.7991839,-0.7987973,-0.79831403,-0.79763746,-0.79725087,-0.7971542,-0.7971542,-0.79725087,-0.7971542,-0.7966709,-0.7961877,-0.796091,-0.7959944,-0.7959944,-0.796091,-0.7964776,-0.7965743,-0.7962843,-0.7962843,-0.796381,-0.7962843,-0.7964776,-0.796381,-0.7955111,-0.7955111,-0.7962843,-0.796381,-0.796091,-0.7962843,-0.7962843,-0.79580104,-0.7957044,-0.7958977,-0.7957044,-0.79580104,-0.7959944,-0.79580104,-0.7957044,-0.79580104,-0.7958977,-0.7959944,-0.796091,-0.796091,-0.7965743,-0.7971542,-0.79705757,-0.7965743,-0.7961877,-0.7958977,-0.7957044,-0.79580104,-0.7958977,-0.79580104,-0.79580104,-0.79580104,-0.7958977,-0.7958977,-0.7958977,-0.79580104,-0.7955111,-0.79541445,-0.7955111,-0.7957044,-0.7959944,-0.796091,-0.79580104,-0.79580104,-0.7961877,-0.79580104,-0.79522115,-0.7957044,-0.796091,-0.7958977,-0.7958977,-0.7959944,-0.79580104,-0.7957044,-0.7958977,-0.7958977,-0.7959944,-0.7959944,-0.7962843,-0.7969609,-0.79763746,-0.7973475,-0.7967676,-0.79792744,-0.7992805,-0.7992805,-0.7990872,-0.7988939,-0.7977341,-0.7969609,-0.7968642,-0.7964776,-0.7961877,-0.7962843,-0.7965743,-0.7968642,-0.7973475,-0.7975408,-0.79763746,-0.79783076,-0.79763746,-0.79763746,-0.79821736,-0.79841065,-0.7992805,-0.8010204,-0.8017936,-0.8016003,-0.8012137,-0.7995705,-0.79802406,-0.79812074,-0.79802406,-0.7965743,-0.7957044,-0.7975408,-0.7989906,-0.79357797,-0.78632903,-0.7869089,-0.79096836,-0.79425466,-0.79831403,-0.8012137,-0.80227685,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8025668,-0.80227685,-0.8025668,-0.8027601,-0.8025668,-0.80247015,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80247015,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8025668,-0.80218023,-0.80227685,-0.8025668,-0.8019869,-0.8025668,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80208355,-0.8023735,-0.80227685,-0.8025668,-0.8025668,-0.80247015,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80247015,-0.8025668,-0.80247015,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.80227685,-0.8023735,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80247015,-0.80266345,-0.8012137,-0.79850733,-0.7947379,-0.7894219,-0.7875855,-0.79560775,-0.80189025,-0.7964776,-0.7927081,-0.796091,-0.7967676,-0.7964776,-0.79812074,-0.79821736,-0.79821736,-0.8003438,-0.80227685,-0.8016003,-0.7988939,-0.79744416,-0.7973475,-0.79725087,-0.79705757,-0.7971542,-0.7977341,-0.79783076,-0.79705757,-0.7967676,-0.7968642,-0.7966709,-0.7965743,-0.7964776,-0.7965743,-0.7966709,-0.7966709,-0.7969609,-0.7977341,-0.79841065,-0.7987973,-0.79860395,-0.79792744,-0.79783076,-0.7977341,-0.7973475,-0.7971542,-0.79744416,-0.79763746,-0.79744416,-0.7973475,-0.7969609,-0.7964776,-0.796091,-0.7959944,-0.796091,-0.7961877,-0.7964776,-0.7966709,-0.7964776,-0.7961877,-0.796091,-0.796381,-0.796381,-0.79560775,-0.79483455,-0.79502785,-0.7957044,-0.796091,-0.7961877,-0.796381,-0.796091,-0.79560775,-0.79580104,-0.796091,-0.7959944,-0.796091,-0.7959944,-0.79580104,-0.79580104,-0.7957044,-0.7957044,-0.7957044,-0.79560775,-0.7959944,-0.7965743,-0.7967676,-0.7965743,-0.7965743,-0.796381,-0.7958977,-0.7957044,-0.79580104,-0.79580104,-0.7957044,-0.79560775,-0.7957044,-0.79580104,-0.79580104,-0.79580104,-0.79580104,-0.7957044,-0.7955111,-0.7953178,-0.79512453,-0.7955111,-0.7959944,-0.7961877,-0.7958977,-0.7953178,-0.7953178,-0.7958977,-0.796091,-0.79580104,-0.79580104,-0.796091,-0.7959944,-0.79580104,-0.79580104,-0.7955111,-0.79541445,-0.79580104,-0.796091,-0.7962843,-0.7969609,-0.79744416,-0.79763746,-0.79763746,-0.79744416,-0.79802406,-0.7988939,-0.7993772,-0.7990872,-0.79802406,-0.7967676,-0.796381,-0.7961877,-0.7961877,-0.796381,-0.7965743,-0.79705757,-0.79763746,-0.79763746,-0.79744416,-0.79725087,-0.7971542,-0.79705757,-0.79763746,-0.79831403,-0.79850733,-0.7995705,-0.801407,-0.80208355,-0.8019869,-0.8009237,-0.79870063,-0.79783076,-0.79802406,-0.79705757,-0.79580104,-0.7964776,-0.79802406,-0.7947379,-0.7878755,-0.78613573,-0.7899052,-0.7939647,-0.7977341,-0.8008271,-0.8023735,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8023735,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80247015,-0.8023735,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8023735,-0.80227685,-0.8025668,-0.80247015,-0.80218023,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80227685,-0.8023735,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80247015,-0.8023735,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80247015,-0.8025668,-0.80285674,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8023735,-0.80208355,-0.80247015,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80227685,-0.80266345,-0.801117,-0.79812074,-0.7929014,-0.78632903,-0.78613573,-0.79512453,-0.7999572,-0.7955111,-0.7936747,-0.7962843,-0.79725087,-0.79763746,-0.79812074,-0.79792744,-0.7991839,-0.8016003,-0.80227685,-0.79986054,-0.7975408,-0.7973475,-0.79744416,-0.7971542,-0.79705757,-0.79725087,-0.7977341,-0.7977341,-0.7969609,-0.7965743,-0.7965743,-0.7965743,-0.7966709,-0.7966709,-0.7964776,-0.7964776,-0.7966709,-0.79725087,-0.79831403,-0.7988939,-0.79841065,-0.7977341,-0.7973475,-0.79725087,-0.79744416,-0.7977341,-0.79783076,-0.7977341,-0.7977341,-0.7975408,-0.7973475,-0.79705757,-0.7965743,-0.7961877,-0.796091,-0.7961877,-0.7962843,-0.7964776,-0.7964776,-0.796381,-0.796091,-0.796091,-0.7964776,-0.796381,-0.7957044,-0.79502785,-0.79512453,-0.79580104,-0.796091,-0.79560775,-0.79541445,-0.7955111,-0.7958977,-0.7962843,-0.7967676,-0.7967676,-0.7961877,-0.7957044,-0.79560775,-0.79560775,-0.79560775,-0.7955111,-0.7957044,-0.796091,-0.796091,-0.7966709,-0.79763746,-0.79705757,-0.796091,-0.7961877,-0.796091,-0.79580104,-0.7957044,-0.7957044,-0.7957044,-0.79560775,-0.79560775,-0.79560775,-0.7957044,-0.79560775,-0.79560775,-0.79560775,-0.7955111,-0.79580104,-0.7959944,-0.79541445,-0.79512453,-0.79512453,-0.79464126,-0.79464126,-0.79560775,-0.7959944,-0.7959944,-0.79580104,-0.79580104,-0.7959944,-0.7961877,-0.79580104,-0.79541445,-0.7955111,-0.79541445,-0.7955111,-0.79580104,-0.7958977,-0.7965743,-0.7977341,-0.79802406,-0.79792744,-0.79821736,-0.79802406,-0.79783076,-0.79860395,-0.7989906,-0.79802406,-0.7967676,-0.796381,-0.796091,-0.7959944,-0.796381,-0.7968642,-0.7971542,-0.7973475,-0.79744416,-0.7971542,-0.79705757,-0.79725087,-0.7971542,-0.79725087,-0.7977341,-0.7977341,-0.79841065,-0.8005371,-0.8019869,-0.80208355,-0.80189025,-0.7999572,-0.79792744,-0.79792744,-0.79763746,-0.7959944,-0.79541445,-0.7971542,-0.7971542,-0.79154825,-0.78632903,-0.7876822,-0.7926115,-0.7973475,-0.8006338,-0.80208355,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8025668,-0.80247015,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.80227685,-0.8023735,-0.8025668,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8023735,-0.8027601,-0.80247015,-0.80266345,-0.80247015,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80227685,-0.80266345,-0.8027601,-0.8023735,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80247015,-0.8023735,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.80247015,-0.8027601,-0.8025668,-0.80227685,-0.8025668,-0.8027601,-0.80285674,-0.8025668,-0.8025668,-0.8025668,-0.80227685,-0.80218023,-0.8025668,-0.80247015,-0.80247015,-0.8025668,-0.80285674,-0.8027601,-0.80247015,-0.80247015,-0.80285674,-0.8010204,-0.79802406,-0.7923215,-0.7856524,-0.7857491,-0.7921282,-0.79541445,-0.7949312,-0.79522115,-0.7962843,-0.79763746,-0.79850733,-0.79821736,-0.79821736,-0.80024713,-0.80247015,-0.80150366,-0.79841065,-0.7971542,-0.7973475,-0.79725087,-0.7973475,-0.7971542,-0.7971542,-0.79763746,-0.79763746,-0.79725087,-0.7969609,-0.7968642,-0.7968642,-0.7967676,-0.796381,-0.796381,-0.796381,-0.7968642,-0.79802406,-0.79821736,-0.7977341,-0.7977341,-0.7977341,-0.79744416,-0.7973475,-0.79763746,-0.79783076,-0.7977341,-0.7977341,-0.7977341,-0.79763746,-0.79744416,-0.79705757,-0.7966709,-0.7962843,-0.796091,-0.796381,-0.796381,-0.796091,-0.7961877,-0.7962843,-0.7959944,-0.7959944,-0.7958977,-0.79580104,-0.796091,-0.7962843,-0.796381,-0.7964776,-0.796091,-0.7959944,-0.796381,-0.7967676,-0.79725087,-0.79744416,-0.79705757,-0.7966709,-0.796091,-0.7957044,-0.79560775,-0.7955111,-0.7958977,-0.796091,-0.7958977,-0.7959944,-0.796091,-0.7965743,-0.79792744,-0.7975408,-0.7958977,-0.79580104,-0.7959944,-0.79560775,-0.79541445,-0.79541445,-0.79541445,-0.79541445,-0.7955111,-0.79560775,-0.7957044,-0.79560775,-0.79541445,-0.7953178,-0.7953178,-0.79580104,-0.7962843,-0.79560775,-0.79444796,-0.79444796,-0.79522115,-0.7957044,-0.79580104,-0.7958977,-0.7959944,-0.7958977,-0.7957044,-0.7958977,-0.7959944,-0.7955111,-0.79522115,-0.7953178,-0.79522115,-0.7953178,-0.79560775,-0.7958977,-0.7964776,-0.7975408,-0.79783076,-0.7975408,-0.79783076,-0.79831403,-0.79812074,-0.79841065,-0.7990872,-0.79841065,-0.79705757,-0.7965743,-0.796381,-0.7961877,-0.7962843,-0.7966709,-0.7968642,-0.7969609,-0.79705757,-0.79705757,-0.7969609,-0.79705757,-0.79705757,-0.7969609,-0.7973475,-0.7977341,-0.79763746,-0.7988939,-0.8009237,-0.80169696,-0.8019869,-0.8009237,-0.79860395,-0.79792744,-0.79812074,-0.7965743,-0.79502785,-0.7969609,-0.7988939,-0.7943513,-0.7880688,-0.7877788,-0.79154825,-0.7961877,-0.8003438,-0.80218023,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80247015,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80247015,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.8025668,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80247015,-0.80227685,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80189025,-0.80266345,-0.80227685,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80247015,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80227685,-0.80227685,-0.8025668,-0.80247015,-0.8023735,-0.80247015,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80247015,-0.8023735,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.80266345,-0.8006338,-0.7977341,-0.79541445,-0.7902918,-0.7879721,-0.7926115,-0.7959944,-0.7957044,-0.7955111,-0.796381,-0.79802406,-0.79850733,-0.7977341,-0.79870063,-0.80131036,-0.80218023,-0.79986054,-0.7975408,-0.7975408,-0.7975408,-0.7971542,-0.79725087,-0.7971542,-0.79705757,-0.7975408,-0.7977341,-0.7973475,-0.79705757,-0.7969609,-0.7968642,-0.7966709,-0.7964776,-0.796381,-0.7965743,-0.79725087,-0.7977341,-0.7973475,-0.7969609,-0.79744416,-0.7977341,-0.7977341,-0.79792744,-0.79792744,-0.79783076,-0.79783076,-0.79792744,-0.79792744,-0.79783076,-0.79763746,-0.79725087,-0.7967676,-0.7962843,-0.796091,-0.7961877,-0.7962843,-0.796091,-0.7959944,-0.7961877,-0.7961877,-0.796091,-0.79580104,-0.79580104,-0.79560775,-0.7955111,-0.7958977,-0.7959944,-0.7964776,-0.79763746,-0.79802406,-0.79802406,-0.79802406,-0.7973475,-0.796381,-0.7958977,-0.79580104,-0.79580104,-0.7957044,-0.79560775,-0.79580104,-0.7959944,-0.796091,-0.7961877,-0.7959944,-0.7967676,-0.79792744,-0.79705757,-0.7957044,-0.79580104,-0.7958977,-0.7955111,-0.7955111,-0.7957044,-0.7957044,-0.79560775,-0.7955111,-0.79541445,-0.79541445,-0.79541445,-0.7955111,-0.7957044,-0.796091,-0.796091,-0.79580104,-0.7955111,-0.79522115,-0.7953178,-0.7957044,-0.79560775,-0.7955111,-0.7958977,-0.7958977,-0.79560775,-0.79541445,-0.79560775,-0.7957044,-0.79580104,-0.7955111,-0.7953178,-0.79541445,-0.7955111,-0.7955111,-0.7957044,-0.796091,-0.7968642,-0.79763746,-0.7973475,-0.7971542,-0.79744416,-0.7977341,-0.79802406,-0.7987973,-0.79870063,-0.79763746,-0.7968642,-0.7965743,-0.796381,-0.7961877,-0.7962843,-0.7966709,-0.7967676,-0.7966709,-0.7968642,-0.7968642,-0.7968642,-0.79705757,-0.79705757,-0.7971542,-0.79744416,-0.79705757,-0.7973475,-0.7997638,-0.8016003,-0.8017936,-0.80169696,-0.7999572,-0.79792744,-0.79812074,-0.79744416,-0.7957044,-0.7969609,-0.7977341,-0.79348135,-0.7881654,-0.7868123,-0.7895186,-0.79483455,-0.79986054,-0.80227685,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80247015,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80247015,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80247015,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.80247015,-0.8025668,-0.8027601,-0.80247015,-0.80247015,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80247015,-0.8023735,-0.80266345,-0.80247015,-0.8023735,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8009237,-0.80218023,-0.8017936,-0.8027601,-0.80247015,-0.8025668,-0.8025668,-0.8023735,-0.8025668,-0.8025668,-0.8023735,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80247015,-0.8027601,-0.80266345,-0.8025668,-0.80247015,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80247015,-0.80247015,-0.8025668,-0.8023735,-0.8004405,-0.7967676,-0.79502785,-0.79077506,-0.78845537,-0.794158,-0.79860395,-0.7959944,-0.793868,-0.79580104,-0.79812074,-0.79812074,-0.79763746,-0.7995705,-0.8019869,-0.8010204,-0.79812074,-0.7973475,-0.79783076,-0.79744416,-0.7968642,-0.7967676,-0.7971542,-0.7973475,-0.7973475,-0.79763746,-0.7975408,-0.7969609,-0.7966709,-0.7966709,-0.7965743,-0.7964776,-0.7964776,-0.7967676,-0.79705757,-0.79705757,-0.7969609,-0.7971542,-0.7973475,-0.79744416,-0.7975408,-0.79763746,-0.79792744,-0.79783076,-0.7977341,-0.79783076,-0.7977341,-0.7975408,-0.79725087,-0.7969609,-0.7967676,-0.7964776,-0.7961877,-0.796091,-0.7961877,-0.796091,-0.796091,-0.7962843,-0.7962843,-0.7958977,-0.79560775,-0.79580104,-0.7958977,-0.7958977,-0.7958977,-0.7959944,-0.7968642,-0.79792744,-0.7977341,-0.79705757,-0.7967676,-0.7962843,-0.7957044,-0.79560775,-0.7957044,-0.79560775,-0.79560775,-0.79560775,-0.7957044,-0.7957044,-0.796091,-0.7962843,-0.7958977,-0.7966709,-0.79821736,-0.79725087,-0.79560775,-0.7957044,-0.7959944,-0.79560775,-0.79541445,-0.7957044,-0.7961877,-0.7962843,-0.7959944,-0.7957044,-0.79541445,-0.7953178,-0.79580104,-0.796381,-0.796381,-0.7959944,-0.79560775,-0.79541445,-0.79541445,-0.79522115,-0.79512453,-0.79522115,-0.79541445,-0.79560775,-0.7958977,-0.7957044,-0.79541445,-0.7955111,-0.79560775,-0.79580104,-0.79580104,-0.7955111,-0.79541445,-0.7953178,-0.7955111,-0.79580104,-0.7959944,-0.7965743,-0.7973475,-0.79744416,-0.7968642,-0.7964776,-0.796381,-0.7968642,-0.79802406,-0.79841065,-0.79744416,-0.7965743,-0.7966709,-0.7966709,-0.796091,-0.7958977,-0.7965743,-0.7969609,-0.7966709,-0.7964776,-0.7965743,-0.7966709,-0.7969609,-0.7971542,-0.79725087,-0.79725087,-0.7969609,-0.7968642,-0.79870063,-0.8010204,-0.8017936,-0.80189025,-0.8005371,-0.79841065,-0.79812074,-0.79744416,-0.7959944,-0.7969609,-0.79744416,-0.79357797,-0.7881654,-0.78603905,-0.78845537,-0.794158,-0.7995705,-0.80208355,-0.8025668,-0.80266345,-0.80247015,-0.80247015,-0.8025668,-0.8025668,-0.8025668,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8025668,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8023735,-0.80266345,-0.8025668,-0.80227685,-0.80266345,-0.8027601,-0.8027601,-0.80247015,-0.8019869,-0.801407,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.801407,-0.8025668,-0.80247015,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.80247015,-0.80247015,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.8025668,-0.80247015,-0.8025668,-0.80266345,-0.8025668,-0.8025668,-0.80024713,-0.7961877,-0.7924181,-0.7879721,-0.7881654,-0.79464126,-0.79812074,-0.7957044,-0.793868,-0.7957044,-0.79802406,-0.79812074,-0.79821736,-0.8006338,-0.8019869,-0.7995705,-0.7971542,-0.7973475,-0.7975408,-0.79705757,-0.7969609,-0.7969609,-0.7971542,-0.79725087,-0.79725087,-0.7975408,-0.79744416,-0.7969609,-0.7969609,-0.7969609,-0.7965743,-0.7962843,-0.7964776,-0.7966709,-0.7966709,-0.7968642,-0.79705757,-0.79705757,-0.79725087,-0.7973475,-0.7973475,-0.7975408,-0.7977341,-0.7977341,-0.79783076,-0.7977341,-0.79763746,-0.7975408,-0.79725087,-0.7967676,-0.7964776,-0.7964776,-0.796381,-0.796381,-0.796381,-0.796091,-0.796091,-0.796381,-0.7962843,-0.79580104,-0.79560775,-0.79560775,-0.79560775,-0.7957044,-0.79580104,-0.7958977,-0.7962843,-0.796381,-0.796381,-0.796381,-0.7962843,-0.79580104,-0.79560775,-0.7957044,-0.7955111,-0.7955111,-0.79560775,-0.79560775,-0.79580104,-0.7958977,-0.7957044,-0.7958977,-0.79580104,-0.796381,-0.79783076,-0.79744416,-0.79580104,-0.79560775,-0.7958977,-0.7957044,-0.7955111,-0.79560775,-0.7958977,-0.796381,-0.7966709,-0.7964776,-0.7958977,-0.7957044,-0.7958977,-0.7958977,-0.7957044,-0.79541445,-0.7953178,-0.7953178,-0.7953178,-0.79541445,-0.7953178,-0.79522115,-0.7953178,-0.7955111,-0.79580104,-0.796091,-0.7959944,-0.7957044,-0.7955111,-0.7955111,-0.7955111,-0.79541445,-0.7953178,-0.79522115,-0.79522115,-0.79560775,-0.7959944,-0.7962843,-0.7965743,-0.7968642,-0.7969609,-0.7967676,-0.7962843,-0.796381,-0.7968642,-0.79705757,-0.7968642,-0.7966709,-0.796381,-0.7962843,-0.7962843,-0.796381,-0.7962843,-0.796091,-0.7961877,-0.7964776,-0.7965743,-0.7965743,-0.7966709,-0.7969609,-0.7971542,-0.79725087,-0.79725087,-0.79705757,-0.79792744,-0.80024713,-0.80189025,-0.8023735,-0.801117,-0.7990872,-0.79831403,-0.79763746,-0.7958977,-0.7967676,-0.7991839,-0.7967676,-0.7902918,-0.7871989,-0.789132,-0.79357797,-0.7989906,-0.80208355,-0.8023735,-0.8025668,-0.80247015,-0.8025668,-0.8025668,-0.8025668,-0.80247015,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.80247015,-0.8025668,-0.80266345,-0.80247015,-0.8025668,-0.8027601,-0.80247015,-0.8023735,-0.8023735,-0.8023735,-0.80247015,-0.80247015,-0.8023735,-0.8019869,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8017936,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8025668,-0.80247015,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.80024713,-0.7959944,-0.79058176,-0.78603905,-0.7878755,-0.79425466,-0.79725087,-0.7967676,-0.79580104,-0.7958977,-0.79763746,-0.79831403,-0.7990872,-0.8017936,-0.80169696,-0.79841065,-0.7969609,-0.7973475,-0.79725087,-0.7969609,-0.7969609,-0.79705757,-0.7971542,-0.7973475,-0.7973475,-0.7973475,-0.79744416,-0.7973475,-0.7969609,-0.7967676,-0.7966709,-0.7965743,-0.7964776,-0.796381,-0.7966709,-0.79705757,-0.79705757,-0.79705757,-0.79725087,-0.7973475,-0.7973475,-0.7975408,-0.79792744,-0.79812074,-0.79812074,-0.79812074,-0.79783076,-0.79763746,-0.79744416,-0.7969609,-0.7965743,-0.7964776,-0.796381,-0.796381,-0.796381,-0.796381,-0.796381,-0.7961877,-0.7958977,-0.7958977,-0.7957044,-0.79560775,-0.79580104,-0.7958977,-0.79580104,-0.79580104,-0.7959944,-0.7961877,-0.796091,-0.7959944,-0.7958977,-0.7957044,-0.7955111,-0.7955111,-0.7955111,-0.7955111,-0.7955111,-0.79560775,-0.7957044,-0.7955111,-0.79560775,-0.7958977,-0.79560775,-0.7962843,-0.7977341,-0.79744416,-0.7959944,-0.7957044,-0.7958977,-0.79580104,-0.79541445,-0.7953178,-0.7957044,-0.7961877,-0.7962843,-0.7961877,-0.7957044,-0.79541445,-0.79541445,-0.7953178,-0.79522115,-0.79522115,-0.7953178,-0.79541445,-0.7953178,-0.7953178,-0.79541445,-0.7953178,-0.79522115,-0.79512453,-0.79522115,-0.79580104,-0.796091,-0.7959944,-0.79580104,-0.7955111,-0.7953178,-0.7955111,-0.79560775,-0.7953178,-0.79512453,-0.79522115,-0.7957044,-0.796091,-0.7965743,-0.7967676,-0.7968642,-0.79705757,-0.7971542,-0.7971542,-0.79705757,-0.7968642,-0.7967676,-0.7966709,-0.7964776,-0.7962843,-0.796381,-0.7962843,-0.7961877,-0.796091,-0.796091,-0.7962843,-0.796381,-0.796381,-0.7965743,-0.7967676,-0.79705757,-0.79725087,-0.79744416,-0.7973475,-0.79763746,-0.7993772,-0.801407,-0.80247015,-0.80189025,-0.79986054,-0.79841065,-0.79792744,-0.7964776,-0.796381,-0.7993772,-0.79841065,-0.7918382,-0.7872955,-0.78826207,-0.7926115,-0.79821736,-0.80189025,-0.8023735,-0.80247015,-0.8025668,-0.8025668,-0.80247015,-0.80247015,-0.8025668,-0.8025668,-0.80247015,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80227685,-0.80208355,-0.80247015,-0.80247015,-0.8019869,-0.80208355,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80169696,-0.8019869,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.80024713,-0.79560775,-0.7894219,-0.7853624,-0.7879721,-0.794158,-0.7971542,-0.7966709,-0.79560775,-0.7959944,-0.7975408,-0.79860395,-0.8003438,-0.80218023,-0.8003438,-0.79744416,-0.7971542,-0.79744416,-0.79705757,-0.7967676,-0.7968642,-0.79705757,-0.79705757,-0.7971542,-0.79725087,-0.79705757,-0.79705757,-0.79705757,-0.7969609,-0.7967676,-0.7965743,-0.7966709,-0.7966709,-0.7965743,-0.7967676,-0.7969609,-0.79705757,-0.7973475,-0.79744416,-0.79744416,-0.79763746,-0.79792744,-0.79792744,-0.79802406,-0.79821736,-0.79802406,-0.79792744,-0.79763746,-0.79725087,-0.79705757,-0.7968642,-0.7965743,-0.7962843,-0.796381,-0.7964776,-0.7961877,-0.7961877,-0.7962843,-0.796091,-0.7957044,-0.79560775,-0.79580104,-0.7957044,-0.79580104,-0.7959944,-0.7959944,-0.7958977,-0.7959944,-0.796091,-0.796091,-0.7958977,-0.79580104,-0.79560775,-0.7955111,-0.7953178,-0.7953178,-0.7955111,-0.79560775,-0.7955111,-0.7955111,-0.7955111,-0.7955111,-0.79522115,-0.796091,-0.79783076,-0.7975408,-0.796091,-0.79580104,-0.7958977,-0.79560775,-0.7955111,-0.7953178,-0.79512453,-0.7953178,-0.7955111,-0.79560775,-0.7955111,-0.7953178,-0.7953178,-0.7953178,-0.79522115,-0.79522115,-0.7955111,-0.79560775,-0.79560775,-0.79541445,-0.7953178,-0.79541445,-0.79541445,-0.79512453,-0.7949312,-0.79512453,-0.7957044,-0.7961877,-0.7961877,-0.7957044,-0.7953178,-0.7953178,-0.79541445,-0.7953178,-0.7953178,-0.7953178,-0.79560775,-0.796091,-0.7965743,-0.7966709,-0.7967676,-0.79705757,-0.79705757,-0.79705757,-0.7973475,-0.79725087,-0.7966709,-0.7962843,-0.796091,-0.7959944,-0.796091,-0.796381,-0.7961877,-0.7958977,-0.7959944,-0.7961877,-0.7961877,-0.7964776,-0.7967676,-0.7969609,-0.79705757,-0.79705757,-0.79725087,-0.7975408,-0.7975408,-0.79860395,-0.8007304,-0.8019869,-0.8019869,-0.8009237,-0.7989906,-0.79812074,-0.7969609,-0.796381,-0.7993772,-0.7994738,-0.7928048,-0.78603905,-0.7851691,-0.7904851,-0.79821736,-0.80208355,-0.80227685,-0.80247015,-0.80266345,-0.8025668,-0.80247015,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.8025668,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.8023735,-0.801407,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.801117,-0.8007304,-0.80266345,-0.8023735,-0.8025668,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.8025668,-0.8025668,-0.80266345,-0.80247015,-0.8025668,-0.80247015,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80005383,-0.79541445,-0.79000187,-0.7865223,-0.78855205,-0.7936747,-0.7958977,-0.7947379,-0.79444796,-0.7966709,-0.79821736,-0.7991839,-0.801407,-0.8017936,-0.7990872,-0.79725087,-0.7971542,-0.7971542,-0.7968642,-0.7967676,-0.79705757,-0.7971542,-0.79705757,-0.79705757,-0.7969609,-0.79705757,-0.79705757,-0.7967676,-0.7967676,-0.7967676,-0.7966709,-0.7965743,-0.7965743,-0.796381,-0.7966709,-0.79705757,-0.79725087,-0.79725087,-0.7973475,-0.7975408,-0.79783076,-0.79792744,-0.79802406,-0.79812074,-0.79831403,-0.79821736,-0.79792744,-0.7977341,-0.79744416,-0.79725087,-0.79705757,-0.7967676,-0.7964776,-0.7965743,-0.7965743,-0.7962843,-0.7959944,-0.7959944,-0.79580104,-0.79580104,-0.7958977,-0.7957044,-0.79560775,-0.79580104,-0.7958977,-0.79580104,-0.7958977,-0.7959944,-0.7959944,-0.796091,-0.796091,-0.7958977,-0.79560775,-0.79541445,-0.7953178,-0.79560775,-0.79580104,-0.7957044,-0.7955111,-0.7955111,-0.7955111,-0.79560775,-0.79541445,-0.796091,-0.79763746,-0.7973475,-0.7957044,-0.7953178,-0.7955111,-0.7955111,-0.79560775,-0.7955111,-0.79522115,-0.79522115,-0.79512453,-0.79512453,-0.7953178,-0.7953178,-0.79541445,-0.79560775,-0.79560775,-0.7955111,-0.79541445,-0.79541445,-0.79541445,-0.79522115,-0.79512453,-0.7953178,-0.79541445,-0.79512453,-0.79502785,-0.79522115,-0.79541445,-0.7957044,-0.7959944,-0.7958977,-0.7953178,-0.79522115,-0.7953178,-0.79522115,-0.7953178,-0.7955111,-0.79580104,-0.7962843,-0.7964776,-0.7964776,-0.7968642,-0.7971542,-0.79705757,-0.79705757,-0.79705757,-0.7967676,-0.7966709,-0.7964776,-0.7962843,-0.7959944,-0.7959944,-0.796091,-0.7959944,-0.79580104,-0.7959944,-0.796381,-0.7966709,-0.7968642,-0.79705757,-0.79705757,-0.7971542,-0.7973475,-0.7973475,-0.79744416,-0.7973475,-0.79802406,-0.8001505,-0.8017936,-0.80218023,-0.80169696,-0.79986054,-0.79850733,-0.7973475,-0.7966709,-0.7997638,-0.8005371,-0.7927081,-0.78400934,-0.78381604,-0.79087174,-0.79841065,-0.8016003,-0.80218023,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80247015,-0.8027601,-0.80247015,-0.80227685,-0.80227685,-0.801407,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8016003,-0.80169696,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.7997638,-0.79464126,-0.7899052,-0.7869089,-0.7871022,-0.7919349,-0.79580104,-0.79502785,-0.79522115,-0.79763746,-0.79841065,-0.80005383,-0.8023735,-0.8012137,-0.79831403,-0.7973475,-0.79725087,-0.7968642,-0.7966709,-0.7967676,-0.7969609,-0.7969609,-0.7968642,-0.79705757,-0.7969609,-0.7969609,-0.7969609,-0.7967676,-0.7965743,-0.7966709,-0.7964776,-0.7962843,-0.7964776,-0.7965743,-0.7967676,-0.7971542,-0.79725087,-0.7971542,-0.79744416,-0.79783076,-0.79792744,-0.79802406,-0.79831403,-0.79841065,-0.79821736,-0.79821736,-0.79821736,-0.7977341,-0.79744416,-0.7973475,-0.79705757,-0.7968642,-0.7967676,-0.7966709,-0.7964776,-0.7962843,-0.7959944,-0.7959944,-0.7958977,-0.7957044,-0.79560775,-0.79560775,-0.7957044,-0.7958977,-0.796091,-0.796091,-0.7959944,-0.7961877,-0.7962843,-0.796091,-0.7958977,-0.7957044,-0.79560775,-0.7957044,-0.79560775,-0.79541445,-0.79560775,-0.7957044,-0.7957044,-0.79560775,-0.7955111,-0.7957044,-0.7957044,-0.7961877,-0.7975408,-0.7975408,-0.7958977,-0.79512453,-0.79541445,-0.7957044,-0.7957044,-0.79560775,-0.7955111,-0.7953178,-0.79541445,-0.79541445,-0.7953178,-0.79541445,-0.79560775,-0.7955111,-0.7955111,-0.7955111,-0.7955111,-0.7955111,-0.7953178,-0.79512453,-0.79522115,-0.79512453,-0.79502785,-0.79502785,-0.79522115,-0.79512453,-0.79512453,-0.7955111,-0.7957044,-0.79560775,-0.79541445,-0.7953178,-0.7955111,-0.7955111,-0.79541445,-0.79541445,-0.79560775,-0.7961877,-0.7966709,-0.7966709,-0.7969609,-0.79744416,-0.7973475,-0.79705757,-0.79705757,-0.7967676,-0.796381,-0.7962843,-0.7962843,-0.7961877,-0.796091,-0.7959944,-0.7958977,-0.796091,-0.796381,-0.7966709,-0.7969609,-0.79705757,-0.79705757,-0.79705757,-0.7971542,-0.7973475,-0.7973475,-0.7973475,-0.7973475,-0.7977341,-0.7994738,-0.801407,-0.80208355,-0.80218023,-0.8009237,-0.7990872,-0.79783076,-0.7973475,-0.7994738,-0.7990872,-0.79116166,-0.78661895,-0.79154825,-0.79580104,-0.79792744,-0.8010204,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80247015,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80247015,-0.801407,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8023735,-0.80247015,-0.80247015,-0.8025668,-0.80285674,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8023735,-0.7997638,-0.7936747,-0.789132,-0.7865223,-0.7859424,-0.79087174,-0.7958977,-0.79580104,-0.7962843,-0.79802406,-0.7987973,-0.8012137,-0.8025668,-0.7999572,-0.79763746,-0.79744416,-0.79725087,-0.7968642,-0.7967676,-0.7969609,-0.79705757,-0.7968642,-0.7969609,-0.79705757,-0.7969609,-0.7969609,-0.79705757,-0.7968642,-0.7966709,-0.7964776,-0.796381,-0.796381,-0.7964776,-0.7966709,-0.7968642,-0.79705757,-0.79705757,-0.79725087,-0.79744416,-0.79763746,-0.79783076,-0.79802406,-0.79812074,-0.79821736,-0.79821736,-0.79812074,-0.79792744,-0.79763746,-0.7975408,-0.79744416,-0.79705757,-0.7968642,-0.7967676,-0.7965743,-0.796381,-0.7961877,-0.7959944,-0.7958977,-0.79580104,-0.7957044,-0.79580104,-0.7958977,-0.7959944,-0.7958977,-0.7959944,-0.7961877,-0.7962843,-0.796091,-0.796091,-0.796381,-0.796091,-0.79560775,-0.7955111,-0.7955111,-0.7955111,-0.7955111,-0.79560775,-0.79560775,-0.7955111,-0.7955111,-0.7955111,-0.7957044,-0.7957044,-0.796091,-0.7973475,-0.7973475,-0.7959944,-0.7955111,-0.7957044,-0.79560775,-0.79560775,-0.79560775,-0.7953178,-0.79512453,-0.79522115,-0.79522115,-0.79522115,-0.79541445,-0.7955111,-0.7955111,-0.79541445,-0.79560775,-0.79560775,-0.79560775,-0.79560775,-0.7955111,-0.7953178,-0.79522115,-0.79512453,-0.79502785,-0.79502785,-0.79502785,-0.7949312,-0.79522115,-0.79560775,-0.79560775,-0.79541445,-0.79541445,-0.7955111,-0.7953178,-0.7953178,-0.79541445,-0.7955111,-0.7959944,-0.7965743,-0.7966709,-0.7971542,-0.7977341,-0.79744416,-0.7971542,-0.79705757,-0.7968642,-0.7965743,-0.796381,-0.7961877,-0.7961877,-0.7961877,-0.7958977,-0.79580104,-0.7961877,-0.7966709,-0.7971542,-0.7971542,-0.7968642,-0.7969609,-0.7973475,-0.7975408,-0.79763746,-0.7973475,-0.7973475,-0.7975408,-0.79763746,-0.7987973,-0.8008271,-0.8019869,-0.8023735,-0.80169696,-0.7997638,-0.79812074,-0.79763746,-0.7990872,-0.7975408,-0.7904851,-0.7893253,-0.79541445,-0.7971542,-0.7975408,-0.8010204,-0.80266345,-0.8025668,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80285674,-0.80266345,-0.80247015,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.80247015,-0.80266345,-0.80266345,-0.80266345,-0.80218023,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80247015,-0.80227685,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80227685,-0.79986054,-0.7949312,-0.79019517,-0.7870056,-0.7855558,-0.789132,-0.7947379,-0.7968642,-0.7973475,-0.79821736,-0.7995705,-0.80218023,-0.80227685,-0.7990872,-0.79744416,-0.79744416,-0.7971542,-0.7969609,-0.7968642,-0.7969609,-0.7971542,-0.7971542,-0.7971542,-0.7971542,-0.7969609,-0.7968642,-0.7968642,-0.7968642,-0.7967676,-0.7964776,-0.7962843,-0.796381,-0.7965743,-0.7965743,-0.7967676,-0.79705757,-0.79705757,-0.79725087,-0.79763746,-0.79763746,-0.79783076,-0.79821736,-0.79841065,-0.79841065,-0.79821736,-0.79812074,-0.79812074,-0.79792744,-0.7977341,-0.7975408,-0.79725087,-0.79705757,-0.7968642,-0.7964776,-0.796381,-0.7961877,-0.7959944,-0.79580104,-0.79560775,-0.7957044,-0.7959944,-0.7958977,-0.79580104,-0.7959944,-0.796381,-0.7964776,-0.7961877,-0.796091,-0.796091,-0.796091,-0.79580104,-0.7957044,-0.79560775,-0.7955111,-0.79560775,-0.79580104,-0.7957044,-0.7955111,-0.7955111,-0.79560775,-0.7955111,-0.7957044,-0.7957044,-0.7959944,-0.7971542,-0.79725087,-0.7958977,-0.79541445,-0.7957044,-0.79560775,-0.7953178,-0.7953178,-0.7953178,-0.79502785,-0.79522115,-0.79541445,-0.79512453,-0.79502785,-0.7955111,-0.79560775,-0.79560775,-0.7957044,-0.7957044,-0.7957044,-0.7957044,-0.7958977,-0.7959944,-0.79560775,-0.79522115,-0.7953178,-0.79522115,-0.79512453,-0.79502785,-0.79502785,-0.79522115,-0.79522115,-0.79522115,-0.79541445,-0.7955111,-0.7953178,-0.7953178,-0.7955111,-0.79560775,-0.796091,-0.796381,-0.7964776,-0.7973475,-0.79831403,-0.79792744,-0.7973475,-0.7971542,-0.7967676,-0.7965743,-0.7967676,-0.7965743,-0.7962843,-0.7959944,-0.7958977,-0.7961877,-0.7965743,-0.7968642,-0.79705757,-0.7971542,-0.7971542,-0.7971542,-0.7975408,-0.79802406,-0.79802406,-0.7977341,-0.7975408,-0.7975408,-0.7975408,-0.79821736,-0.80024713,-0.80169696,-0.80227685,-0.8019869,-0.8004405,-0.79821736,-0.7977341,-0.7992805,-0.7971542,-0.7899052,-0.7874888,-0.79116166,-0.793868,-0.7967676,-0.8005371,-0.80218023,-0.80247015,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80227685,-0.80266345,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8025668,-0.80247015,-0.8027601,-0.80218023,-0.79986054,-0.79502785,-0.7899052,-0.7867156,-0.7853624,-0.7881654,-0.7940613,-0.79763746,-0.79792744,-0.79802406,-0.80005383,-0.80247015,-0.8016003,-0.79850733,-0.7971542,-0.79725087,-0.7971542,-0.7969609,-0.7969609,-0.79705757,-0.79725087,-0.7971542,-0.7971542,-0.7971542,-0.79705757,-0.7969609,-0.7967676,-0.7966709,-0.7965743,-0.796381,-0.796091,-0.796091,-0.796381,-0.7965743,-0.7968642,-0.79705757,-0.7971542,-0.7973475,-0.79744416,-0.79744416,-0.79763746,-0.79783076,-0.79802406,-0.79831403,-0.79821736,-0.79802406,-0.79783076,-0.79783076,-0.7977341,-0.7975408,-0.79725087,-0.7969609,-0.7966709,-0.7964776,-0.7961877,-0.7958977,-0.79580104,-0.79580104,-0.7957044,-0.7957044,-0.7957044,-0.7957044,-0.7959944,-0.796381,-0.7967676,-0.7967676,-0.7962843,-0.796091,-0.7961877,-0.7961877,-0.7958977,-0.7955111,-0.7957044,-0.79580104,-0.7955111,-0.7955111,-0.7957044,-0.79560775,-0.7955111,-0.7955111,-0.7955111,-0.7957044,-0.79560775,-0.7958977,-0.79705757,-0.7971542,-0.79580104,-0.79541445,-0.7957044,-0.79541445,-0.7953178,-0.79541445,-0.79522115,-0.79512453,-0.79522115,-0.79541445,-0.7953178,-0.79512453,-0.7953178,-0.79560775,-0.7955111,-0.79541445,-0.79560775,-0.79560775,-0.79560775,-0.7957044,-0.7957044,-0.79560775,-0.79541445,-0.79512453,-0.79502785,-0.79512453,-0.79502785,-0.7949312,-0.79502785,-0.79522115,-0.79512453,-0.79502785,-0.79541445,-0.79560775,-0.7955111,-0.7955111,-0.79560775,-0.7958977,-0.796381,-0.7965743,-0.7973475,-0.79841065,-0.79812074,-0.79744416,-0.79744416,-0.79725087,-0.79705757,-0.79705757,-0.7965743,-0.796091,-0.7959944,-0.796091,-0.7964776,-0.7966709,-0.7967676,-0.7973475,-0.79792744,-0.79812074,-0.79841065,-0.79850733,-0.79802406,-0.79763746,-0.79763746,-0.79744416,-0.79763746,-0.79763746,-0.79802406,-0.7996672,-0.80131036,-0.80189025,-0.80208355,-0.8010204,-0.79860395,-0.79802406,-0.7993772,-0.7964776,-0.7892286,-0.78603905,-0.7883587,-0.7920315,-0.7962843,-0.7999572,-0.8016003,-0.80247015,-0.80266345,-0.80247015,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8017936,-0.8019869,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.80285674,-0.80227685,-0.7996672,-0.7945446,-0.7898086,-0.7867156,-0.7859424,-0.7898086,-0.7955111,-0.79812074,-0.79792744,-0.79831403,-0.8006338,-0.80266345,-0.801117,-0.79831403,-0.7973475,-0.79725087,-0.7967676,-0.7965743,-0.7967676,-0.7969609,-0.79705757,-0.79725087,-0.7973475,-0.7971542,-0.79705757,-0.7971542,-0.7971542,-0.7967676,-0.7962843,-0.7961877,-0.7961877,-0.7961877,-0.7961877,-0.7964776,-0.7969609,-0.7971542,-0.7971542,-0.7971542,-0.7971542,-0.79744416,-0.79763746,-0.7977341,-0.79792744,-0.79802406,-0.79792744,-0.79783076,-0.7977341,-0.79783076,-0.79763746,-0.79705757,-0.7969609,-0.7969609,-0.7965743,-0.796381,-0.796381,-0.796091,-0.7958977,-0.7958977,-0.7958977,-0.7957044,-0.7957044,-0.796091,-0.7964776,-0.796381,-0.7965743,-0.7966709,-0.796381,-0.7961877,-0.7961877,-0.7958977,-0.7955111,-0.7955111,-0.79560775,-0.79560775,-0.79541445,-0.79541445,-0.7957044,-0.7957044,-0.79541445,-0.7955111,-0.79541445,-0.79541445,-0.7955111,-0.7957044,-0.7964776,-0.7966709,-0.79580104,-0.79560775,-0.79580104,-0.79541445,-0.7953178,-0.7953178,-0.7953178,-0.7953178,-0.7953178,-0.79522115,-0.79522115,-0.79502785,-0.79502785,-0.79522115,-0.79522115,-0.7953178,-0.7955111,-0.7957044,-0.79580104,-0.79560775,-0.79541445,-0.7957044,-0.7957044,-0.79541445,-0.79512453,-0.79522115,-0.79522115,-0.79502785,-0.79512453,-0.79522115,-0.79522115,-0.79522115,-0.79512453,-0.79522115,-0.79541445,-0.79560775,-0.79580104,-0.7959944,-0.7962843,-0.7964776,-0.7969609,-0.7977341,-0.79725087,-0.7965743,-0.7967676,-0.79744416,-0.79725087,-0.7966709,-0.7961877,-0.7959944,-0.796091,-0.7961877,-0.7964776,-0.7967676,-0.7969609,-0.7975408,-0.79802406,-0.79792744,-0.79783076,-0.79783076,-0.79763746,-0.79763746,-0.7975408,-0.7973475,-0.7975408,-0.79783076,-0.79792744,-0.7991839,-0.801117,-0.8017936,-0.8019869,-0.80189025,-0.7993772,-0.7977341,-0.7990872,-0.7958977,-0.7883587,-0.7858457,-0.7883587,-0.7917416,-0.796091,-0.7995705,-0.80131036,-0.8023735,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.80247015,-0.8025668,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80247015,-0.8025668,-0.8025668,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8025668,-0.8025668,-0.8025668,-0.80169696,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8025668,-0.8025668,-0.80247015,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.7999572,-0.7953178,-0.79087174,-0.7868123,-0.7873922,-0.7939647,-0.79841065,-0.79831403,-0.79812074,-0.7990872,-0.80131036,-0.80247015,-0.8003438,-0.79763746,-0.79725087,-0.79725087,-0.7966709,-0.7964776,-0.7967676,-0.7968642,-0.7969609,-0.7971542,-0.7971542,-0.79705757,-0.79705757,-0.79705757,-0.7968642,-0.7967676,-0.7965743,-0.7964776,-0.796381,-0.7961877,-0.7961877,-0.7965743,-0.7968642,-0.7969609,-0.79705757,-0.7971542,-0.79725087,-0.7973475,-0.7977341,-0.79802406,-0.79812074,-0.79802406,-0.79792744,-0.79783076,-0.79783076,-0.7977341,-0.79763746,-0.79725087,-0.7969609,-0.7969609,-0.7969609,-0.7965743,-0.7962843,-0.7961877,-0.7958977,-0.7957044,-0.7961877,-0.7962843,-0.796091,-0.7962843,-0.796381,-0.7962843,-0.7964776,-0.7964776,-0.7962843,-0.7959944,-0.7958977,-0.79560775,-0.7955111,-0.79560775,-0.79560775,-0.7957044,-0.7957044,-0.7955111,-0.79541445,-0.7955111,-0.7955111,-0.79541445,-0.7953178,-0.79541445,-0.7955111,-0.7957044,-0.796381,-0.7964776,-0.79580104,-0.7957044,-0.7957044,-0.79541445,-0.79541445,-0.7955111,-0.79541445,-0.7953178,-0.79541445,-0.7955111,-0.7953178,-0.79522115,-0.79512453,-0.79502785,-0.79512453,-0.79512453,-0.79512453,-0.7958977,-0.796381,-0.7958977,-0.79560775,-0.7958977,-0.796091,-0.7959944,-0.7957044,-0.7955111,-0.79541445,-0.7953178,-0.79522115,-0.79512453,-0.79512453,-0.79512453,-0.79512453,-0.79522115,-0.7955111,-0.7955111,-0.7955111,-0.7959944,-0.7962843,-0.7962843,-0.7966709,-0.79725087,-0.7966709,-0.7958977,-0.7962843,-0.7968642,-0.7964776,-0.7959944,-0.7959944,-0.7961877,-0.7962843,-0.7964776,-0.7967676,-0.7969609,-0.79705757,-0.7973475,-0.7977341,-0.7975408,-0.79705757,-0.79705757,-0.79725087,-0.79744416,-0.79744416,-0.79744416,-0.79763746,-0.79783076,-0.79792744,-0.7990872,-0.8010204,-0.80189025,-0.80189025,-0.80208355,-0.7999572,-0.79763746,-0.79860395,-0.7959944,-0.7881654,-0.7856524,-0.7883587,-0.79058176,-0.79425466,-0.79860395,-0.8010204,-0.80218023,-0.80266345,-0.80266345,-0.80266345,-0.80247015,-0.8025668,-0.8025668,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.80285674,-0.8025668,-0.8025668,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8023735,-0.8023735,-0.80266345,-0.80266345,-0.80227685,-0.80208355,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80189025,-0.80169696,-0.8027601,-0.8025668,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8025668,-0.8025668,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80024713,-0.7955111,-0.789132,-0.7855558,-0.7904851,-0.79802406,-0.7994738,-0.79821736,-0.79831403,-0.7994738,-0.80189025,-0.8025668,-0.7999572,-0.7975408,-0.7971542,-0.7971542,-0.7968642,-0.7967676,-0.7965743,-0.7966709,-0.7968642,-0.79705757,-0.7971542,-0.79705757,-0.79705757,-0.7971542,-0.7969609,-0.7967676,-0.7967676,-0.7965743,-0.7962843,-0.7961877,-0.7962843,-0.7964776,-0.7966709,-0.7968642,-0.7969609,-0.7971542,-0.7973475,-0.79744416,-0.7975408,-0.7977341,-0.79792744,-0.79783076,-0.79783076,-0.79792744,-0.79783076,-0.79763746,-0.79744416,-0.79744416,-0.7971542,-0.7967676,-0.7966709,-0.7964776,-0.7962843,-0.7962843,-0.796091,-0.7958977,-0.7962843,-0.7964776,-0.7962843,-0.7961877,-0.7961877,-0.7962843,-0.7964776,-0.7962843,-0.7959944,-0.7958977,-0.7959944,-0.7958977,-0.79580104,-0.79560775,-0.79560775,-0.7957044,-0.79560775,-0.7955111,-0.7955111,-0.79560775,-0.79560775,-0.7955111,-0.79560775,-0.7957044,-0.7957044,-0.7957044,-0.7961877,-0.7961877,-0.79560775,-0.79541445,-0.79541445,-0.7953178,-0.79541445,-0.79541445,-0.7955111,-0.7955111,-0.7953178,-0.7953178,-0.79541445,-0.7953178,-0.7953178,-0.79522115,-0.7953178,-0.79541445,-0.79522115,-0.7953178,-0.79580104,-0.7959944,-0.796091,-0.796091,-0.7959944,-0.7958977,-0.79580104,-0.79560775,-0.79541445,-0.7953178,-0.7953178,-0.79512453,-0.7949312,-0.79502785,-0.79512453,-0.7953178,-0.79541445,-0.7953178,-0.7955111,-0.7959944,-0.7962843,-0.796381,-0.7965743,-0.7965743,-0.7965743,-0.7964776,-0.7964776,-0.7964776,-0.7962843,-0.796091,-0.7961877,-0.7962843,-0.796381,-0.7967676,-0.7969609,-0.7969609,-0.7971542,-0.79725087,-0.79725087,-0.79744416,-0.7975408,-0.79744416,-0.7973475,-0.7973475,-0.79725087,-0.7971542,-0.7973475,-0.79783076,-0.79812074,-0.7989906,-0.8006338,-0.8016003,-0.80169696,-0.8017936,-0.8006338,-0.79831403,-0.79802406,-0.79802406,-0.7937714,-0.7883587,-0.7869089,-0.7883587,-0.79145163,-0.796381,-0.8003438,-0.80189025,-0.80247015,-0.80285674,-0.8027601,-0.8025668,-0.8025668,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.80247015,-0.8025668,-0.8025668,-0.8025668,-0.80266345,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80150366,-0.80150366,-0.80266345,-0.8025668,-0.80285674,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8005371,-0.79560775,-0.78826207,-0.7858457,-0.7926115,-0.7991839,-0.7992805,-0.79783076,-0.79831403,-0.80005383,-0.80227685,-0.80247015,-0.7997638,-0.7973475,-0.7971542,-0.79725087,-0.7967676,-0.7964776,-0.7964776,-0.7966709,-0.7967676,-0.7968642,-0.7969609,-0.79705757,-0.7971542,-0.7971542,-0.79705757,-0.7969609,-0.7967676,-0.7964776,-0.7964776,-0.7964776,-0.7962843,-0.796381,-0.7966709,-0.7968642,-0.79705757,-0.79705757,-0.7971542,-0.7973475,-0.79744416,-0.7975408,-0.79792744,-0.79821736,-0.79792744,-0.7977341,-0.7977341,-0.79763746,-0.79744416,-0.7973475,-0.79705757,-0.7966709,-0.7965743,-0.7964776,-0.7962843,-0.7961877,-0.7959944,-0.7959944,-0.7961877,-0.7962843,-0.796091,-0.796091,-0.796091,-0.7961877,-0.7962843,-0.7961877,-0.7959944,-0.7959944,-0.7959944,-0.7959944,-0.7958977,-0.79580104,-0.7957044,-0.7957044,-0.7957044,-0.7955111,-0.79541445,-0.7955111,-0.7955111,-0.7955111,-0.7955111,-0.79560775,-0.79560775,-0.7955111,-0.79580104,-0.796091,-0.79580104,-0.7955111,-0.79560775,-0.79541445,-0.79502785,-0.7949312,-0.79522115,-0.79541445,-0.7953178,-0.7953178,-0.79541445,-0.7953178,-0.79541445,-0.7955111,-0.79541445,-0.79541445,-0.7953178,-0.79512453,-0.79512453,-0.79560775,-0.796091,-0.796091,-0.79580104,-0.79580104,-0.7957044,-0.7953178,-0.79541445,-0.7957044,-0.7957044,-0.79541445,-0.79502785,-0.7949312,-0.79512453,-0.79522115,-0.79522115,-0.79522115,-0.7955111,-0.7959944,-0.796381,-0.796381,-0.796381,-0.796381,-0.7964776,-0.796381,-0.7961877,-0.796091,-0.796091,-0.7961877,-0.7962843,-0.7962843,-0.796381,-0.7968642,-0.79705757,-0.7969609,-0.7969609,-0.7971542,-0.79705757,-0.7971542,-0.7973475,-0.7971542,-0.79705757,-0.79725087,-0.79725087,-0.79725087,-0.7973475,-0.7975408,-0.79792744,-0.79870063,-0.8001505,-0.801407,-0.8016003,-0.80169696,-0.8009237,-0.7989906,-0.79763746,-0.7992805,-0.7997638,-0.79348135,-0.7871022,-0.7876822,-0.79135495,-0.79541445,-0.7996672,-0.8017936,-0.8023735,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.80247015,-0.8025668,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80285674,-0.80247015,-0.8025668,-0.80218023,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8019869,-0.8017936,-0.8025668,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8009237,-0.7953178,-0.7883587,-0.7878755,-0.7939647,-0.79860395,-0.79870063,-0.79783076,-0.79841065,-0.8004405,-0.80247015,-0.80208355,-0.7992805,-0.79725087,-0.79725087,-0.7973475,-0.79705757,-0.7967676,-0.7966709,-0.7966709,-0.7965743,-0.7965743,-0.7967676,-0.7968642,-0.7969609,-0.7968642,-0.7969609,-0.79705757,-0.7969609,-0.7967676,-0.7966709,-0.7964776,-0.7962843,-0.7962843,-0.7964776,-0.7967676,-0.7968642,-0.7969609,-0.7971542,-0.79744416,-0.79763746,-0.7977341,-0.7977341,-0.79783076,-0.79792744,-0.79783076,-0.79763746,-0.79763746,-0.79744416,-0.79705757,-0.7968642,-0.7968642,-0.7967676,-0.796381,-0.796091,-0.796091,-0.7958977,-0.79580104,-0.7959944,-0.7959944,-0.7959944,-0.7961877,-0.796091,-0.7961877,-0.7962843,-0.7962843,-0.7961877,-0.7961877,-0.796091,-0.796091,-0.79580104,-0.79560775,-0.79560775,-0.7957044,-0.79560775,-0.7955111,-0.7955111,-0.79541445,-0.79541445,-0.79541445,-0.7955111,-0.7957044,-0.79560775,-0.7955111,-0.79580104,-0.796091,-0.79580104,-0.7955111,-0.7955111,-0.7955111,-0.7953178,-0.79522115,-0.79522115,-0.79522115,-0.7953178,-0.7953178,-0.7955111,-0.79560775,-0.7955111,-0.79541445,-0.7955111,-0.79541445,-0.79522115,-0.79522115,-0.79522115,-0.7955111,-0.7958977,-0.7959944,-0.7958977,-0.7957044,-0.7955111,-0.7953178,-0.7953178,-0.79560775,-0.79580104,-0.7955111,-0.79522115,-0.79512453,-0.79522115,-0.7953178,-0.7953178,-0.79541445,-0.7955111,-0.7958977,-0.7961877,-0.7962843,-0.7962843,-0.796381,-0.796381,-0.7962843,-0.7961877,-0.796091,-0.7961877,-0.7961877,-0.7961877,-0.796381,-0.7967676,-0.7968642,-0.7968642,-0.7968642,-0.7968642,-0.79705757,-0.7971542,-0.7971542,-0.7971542,-0.7971542,-0.7971542,-0.79725087,-0.79725087,-0.7975408,-0.79763746,-0.7975408,-0.79792744,-0.7988939,-0.8004405,-0.80150366,-0.80150366,-0.80169696,-0.80150366,-0.7994738,-0.79802406,-0.7990872,-0.79821736,-0.7923215,-0.7871989,-0.7873922,-0.79019517,-0.7940613,-0.79841065,-0.8012137,-0.8023735,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8023735,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80247015,-0.8023735,-0.8027601,-0.80208355,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80169696,-0.80150366,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80285674,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8009237,-0.79512453,-0.7889387,-0.78874534,-0.793288,-0.79725087,-0.79841065,-0.79792744,-0.79870063,-0.8009237,-0.80227685,-0.80189025,-0.7996672,-0.79744416,-0.79705757,-0.79725087,-0.79705757,-0.79705757,-0.79705757,-0.7967676,-0.7964776,-0.7964776,-0.7967676,-0.7967676,-0.7966709,-0.7966709,-0.7967676,-0.7968642,-0.7969609,-0.7969609,-0.7966709,-0.796381,-0.7962843,-0.7962843,-0.7962843,-0.7966709,-0.7967676,-0.7967676,-0.7969609,-0.79744416,-0.79744416,-0.7975408,-0.7977341,-0.7977341,-0.7977341,-0.7977341,-0.79763746,-0.79744416,-0.79725087,-0.79705757,-0.7969609,-0.7968642,-0.7964776,-0.7962843,-0.796381,-0.7962843,-0.79580104,-0.7958977,-0.7959944,-0.79580104,-0.7957044,-0.79580104,-0.7961877,-0.796381,-0.7961877,-0.7959944,-0.7958977,-0.7958977,-0.7959944,-0.796091,-0.7958977,-0.79580104,-0.7957044,-0.7957044,-0.79560775,-0.79541445,-0.7955111,-0.79560775,-0.79560775,-0.7955111,-0.7955111,-0.79560775,-0.79560775,-0.79580104,-0.7961877,-0.7959944,-0.79560775,-0.79541445,-0.79522115,-0.79522115,-0.79541445,-0.7953178,-0.7953178,-0.7953178,-0.79522115,-0.7953178,-0.7953178,-0.79541445,-0.7955111,-0.7953178,-0.79541445,-0.79560775,-0.79560775,-0.79560775,-0.79560775,-0.79541445,-0.79541445,-0.79560775,-0.7959944,-0.7961877,-0.7955111,-0.79512453,-0.7953178,-0.79541445,-0.7955111,-0.7955111,-0.79522115,-0.79512453,-0.79512453,-0.79522115,-0.79541445,-0.79560775,-0.79560775,-0.7958977,-0.796091,-0.7961877,-0.7962843,-0.7962843,-0.7962843,-0.796091,-0.7958977,-0.7959944,-0.7961877,-0.7962843,-0.796381,-0.7964776,-0.7967676,-0.7968642,-0.7967676,-0.7969609,-0.79705757,-0.7969609,-0.79705757,-0.7971542,-0.7971542,-0.7971542,-0.79725087,-0.7971542,-0.7971542,-0.7971542,-0.79744416,-0.7977341,-0.7977341,-0.79841065,-0.80024713,-0.80150366,-0.801407,-0.8019869,-0.80208355,-0.7996672,-0.79860395,-0.7990872,-0.7949312,-0.7880688,-0.78613573,-0.7877788,-0.7893253,-0.7924181,-0.7971542,-0.8006338,-0.80218023,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80247015,-0.8025668,-0.8027601,-0.80266345,-0.80208355,-0.80189025,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8023735,-0.80247015,-0.80285674,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80285674,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80247015,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8005371,-0.79512453,-0.7894219,-0.7874888,-0.7900985,-0.7953178,-0.79831403,-0.79831403,-0.7988939,-0.801117,-0.8025668,-0.8005371,-0.7957044,-0.79541445,-0.79763746,-0.7975408,-0.79705757,-0.79725087,-0.7969609,-0.7967676,-0.7965743,-0.7964776,-0.7964776,-0.7964776,-0.7966709,-0.7966709,-0.7967676,-0.7968642,-0.7967676,-0.7967676,-0.7966709,-0.7964776,-0.796381,-0.7962843,-0.7961877,-0.7965743,-0.7968642,-0.7965743,-0.7967676,-0.7971542,-0.7973475,-0.7973475,-0.7975408,-0.7977341,-0.79763746,-0.79744416,-0.7975408,-0.79744416,-0.79725087,-0.79705757,-0.7968642,-0.7965743,-0.7962843,-0.7961877,-0.7961877,-0.7961877,-0.7958977,-0.79580104,-0.7957044,-0.7957044,-0.79580104,-0.79580104,-0.7957044,-0.7958977,-0.796091,-0.796091,-0.7958977,-0.7961877,-0.7964776,-0.7962843,-0.7958977,-0.79580104,-0.7958977,-0.7958977,-0.7957044,-0.7955111,-0.7955111,-0.7957044,-0.7957044,-0.79541445,-0.79541445,-0.79560775,-0.79560775,-0.79580104,-0.796091,-0.796091,-0.79580104,-0.7955111,-0.7955111,-0.7955111,-0.79541445,-0.7953178,-0.79541445,-0.7953178,-0.79522115,-0.7953178,-0.7953178,-0.79541445,-0.7955111,-0.79560775,-0.7955111,-0.7955111,-0.79560775,-0.79580104,-0.7957044,-0.79541445,-0.7953178,-0.79522115,-0.79541445,-0.79580104,-0.79560775,-0.79522115,-0.7953178,-0.79541445,-0.7955111,-0.7955111,-0.79522115,-0.7949312,-0.79502785,-0.79522115,-0.79541445,-0.7953178,-0.7953178,-0.7957044,-0.7958977,-0.7958977,-0.7959944,-0.796091,-0.7959944,-0.79580104,-0.79580104,-0.7958977,-0.7961877,-0.7962843,-0.796381,-0.7965743,-0.7968642,-0.7969609,-0.7969609,-0.7969609,-0.7968642,-0.7969609,-0.7971542,-0.7971542,-0.79705757,-0.7973475,-0.7973475,-0.7971542,-0.7971542,-0.7971542,-0.79744416,-0.7977341,-0.79783076,-0.79831403,-0.8001505,-0.80150366,-0.80131036,-0.80189025,-0.8023735,-0.7999572,-0.79870063,-0.7991839,-0.7943513,-0.7871989,-0.78623235,-0.7880688,-0.789132,-0.7921282,-0.7965743,-0.7999572,-0.80189025,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80247015,-0.80218023,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80218023,-0.80208355,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80024713,-0.79541445,-0.79038846,-0.78642565,-0.7869089,-0.793288,-0.79850733,-0.79870063,-0.7989906,-0.8016003,-0.80247015,-0.7999572,-0.7962843,-0.7968642,-0.79821736,-0.7977341,-0.7975408,-0.79763746,-0.7971542,-0.7968642,-0.7965743,-0.796381,-0.7964776,-0.7965743,-0.7967676,-0.7967676,-0.7968642,-0.7968642,-0.7966709,-0.7966709,-0.7967676,-0.7966709,-0.7964776,-0.796381,-0.7961877,-0.7962843,-0.7964776,-0.7966709,-0.7968642,-0.7969609,-0.7971542,-0.79725087,-0.79725087,-0.7973475,-0.79744416,-0.79744416,-0.79744416,-0.7973475,-0.7971542,-0.7969609,-0.7967676,-0.7965743,-0.7962843,-0.796091,-0.7959944,-0.79580104,-0.7957044,-0.7957044,-0.7957044,-0.7957044,-0.79580104,-0.7957044,-0.79560775,-0.79580104,-0.7959944,-0.7959944,-0.7961877,-0.796381,-0.7962843,-0.7961877,-0.7959944,-0.7957044,-0.7957044,-0.7957044,-0.7955111,-0.7953178,-0.7955111,-0.7957044,-0.79560775,-0.7955111,-0.79541445,-0.7955111,-0.7955111,-0.79560775,-0.7958977,-0.7959944,-0.7957044,-0.79560775,-0.7957044,-0.79560775,-0.79560775,-0.79560775,-0.7955111,-0.79522115,-0.79512453,-0.7953178,-0.7953178,-0.7953178,-0.7955111,-0.7955111,-0.7955111,-0.79580104,-0.79580104,-0.7957044,-0.79580104,-0.7957044,-0.79541445,-0.7953178,-0.79541445,-0.7953178,-0.79522115,-0.79512453,-0.79512453,-0.79512453,-0.7953178,-0.7955111,-0.7953178,-0.7949312,-0.79502785,-0.79512453,-0.7953178,-0.79541445,-0.7955111,-0.7957044,-0.79580104,-0.7958977,-0.7959944,-0.796091,-0.7959944,-0.7957044,-0.79560775,-0.7958977,-0.796381,-0.7965743,-0.7964776,-0.7965743,-0.7968642,-0.7969609,-0.7969609,-0.7969609,-0.7969609,-0.7969609,-0.79705757,-0.7971542,-0.7971542,-0.79725087,-0.7973475,-0.7973475,-0.7971542,-0.79725087,-0.7975408,-0.79763746,-0.7975408,-0.79783076,-0.7996672,-0.80169696,-0.8016003,-0.80131036,-0.80208355,-0.8005371,-0.7988939,-0.7994738,-0.7955111,-0.78826207,-0.78603905,-0.7870056,-0.7880688,-0.79125834,-0.7955111,-0.7990872,-0.80169696,-0.8025668,-0.80266345,-0.80247015,-0.8025668,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80247015,-0.8025668,-0.80285674,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8023735,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8016003,-0.80150366,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8025668,-0.8025668,-0.80285674,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.8004405,-0.7961877,-0.79125834,-0.78661895,-0.78603905,-0.7927081,-0.79870063,-0.7987973,-0.7992805,-0.80208355,-0.8025668,-0.80024713,-0.79812074,-0.79744416,-0.7973475,-0.79725087,-0.7973475,-0.79744416,-0.79744416,-0.79725087,-0.7967676,-0.7964776,-0.7964776,-0.7964776,-0.7966709,-0.7967676,-0.7967676,-0.7968642,-0.7967676,-0.7967676,-0.7969609,-0.7967676,-0.7964776,-0.796091,-0.7961877,-0.796381,-0.7965743,-0.7965743,-0.7967676,-0.7969609,-0.7969609,-0.7971542,-0.7973475,-0.79744416,-0.7975408,-0.79763746,-0.7975408,-0.79725087,-0.7971542,-0.79705757,-0.7966709,-0.796381,-0.7964776,-0.796381,-0.796091,-0.79580104,-0.7958977,-0.796091,-0.7959944,-0.7958977,-0.7958977,-0.79580104,-0.79580104,-0.796091,-0.7959944,-0.79560775,-0.7958977,-0.796381,-0.7962843,-0.796091,-0.7961877,-0.796091,-0.79580104,-0.79580104,-0.79560775,-0.79560775,-0.79560775,-0.79560775,-0.79560775,-0.79560775,-0.7955111,-0.79541445,-0.7955111,-0.7957044,-0.79580104,-0.79580104,-0.7957044,-0.7955111,-0.7955111,-0.79541445,-0.7953178,-0.7953178,-0.79560775,-0.7955111,-0.79512453,-0.79522115,-0.79541445,-0.7953178,-0.7953178,-0.7955111,-0.7957044,-0.7958977,-0.796091,-0.7958977,-0.79580104,-0.7957044,-0.7953178,-0.79522115,-0.79522115,-0.79522115,-0.7953178,-0.79522115,-0.79502785,-0.79502785,-0.7953178,-0.7955111,-0.7955111,-0.7953178,-0.79512453,-0.79512453,-0.7953178,-0.7955111,-0.79560775,-0.7957044,-0.7957044,-0.7957044,-0.7959944,-0.7961877,-0.7958977,-0.79560775,-0.79560775,-0.7959944,-0.7964776,-0.7966709,-0.7966709,-0.7965743,-0.7966709,-0.7968642,-0.7969609,-0.79705757,-0.79705757,-0.79705757,-0.7971542,-0.7973475,-0.79744416,-0.7973475,-0.79725087,-0.79705757,-0.79705757,-0.7971542,-0.7971542,-0.7975408,-0.7975408,-0.7967676,-0.79841065,-0.80131036,-0.8016003,-0.8012137,-0.80208355,-0.8009237,-0.7989906,-0.7993772,-0.7965743,-0.7895186,-0.78613573,-0.7867156,-0.7879721,-0.7906784,-0.79444796,-0.79841065,-0.801407,-0.80247015,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80247015,-0.8025668,-0.80218023,-0.80169696,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80131036,-0.801117,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8005371,-0.7961877,-0.79164493,-0.7872955,-0.78661895,-0.7929981,-0.79870063,-0.7989906,-0.7999572,-0.8025668,-0.80247015,-0.7997638,-0.79725087,-0.7969609,-0.79725087,-0.7971542,-0.79725087,-0.79744416,-0.79725087,-0.7968642,-0.7965743,-0.7965743,-0.7964776,-0.796381,-0.7964776,-0.7965743,-0.7967676,-0.7968642,-0.7968642,-0.7968642,-0.7969609,-0.7967676,-0.7964776,-0.7962843,-0.7961877,-0.7961877,-0.796381,-0.7966709,-0.7967676,-0.7967676,-0.7969609,-0.79725087,-0.79725087,-0.7973475,-0.79744416,-0.79744416,-0.79725087,-0.7969609,-0.7969609,-0.7969609,-0.7967676,-0.7966709,-0.796381,-0.7961877,-0.7961877,-0.796091,-0.7959944,-0.7959944,-0.7959944,-0.79580104,-0.7959944,-0.796091,-0.7958977,-0.7957044,-0.79580104,-0.79580104,-0.7958977,-0.7961877,-0.796381,-0.796381,-0.7962843,-0.796091,-0.79580104,-0.7957044,-0.7957044,-0.79560775,-0.7955111,-0.79541445,-0.7955111,-0.79560775,-0.7955111,-0.7955111,-0.7955111,-0.79560775,-0.79580104,-0.7959944,-0.79580104,-0.79541445,-0.7955111,-0.79560775,-0.79541445,-0.7955111,-0.79541445,-0.79522115,-0.7953178,-0.79541445,-0.79541445,-0.7953178,-0.79522115,-0.7955111,-0.7959944,-0.796091,-0.7958977,-0.7958977,-0.7958977,-0.7957044,-0.7955111,-0.7953178,-0.79512453,-0.79502785,-0.79502785,-0.7953178,-0.79512453,-0.7949312,-0.79522115,-0.7955111,-0.79560775,-0.79541445,-0.79522115,-0.79522115,-0.7953178,-0.7953178,-0.7955111,-0.79560775,-0.7957044,-0.7957044,-0.79580104,-0.7958977,-0.7957044,-0.7953178,-0.79560775,-0.796091,-0.7961877,-0.7964776,-0.7967676,-0.7967676,-0.7967676,-0.7968642,-0.7968642,-0.7968642,-0.7971542,-0.7973475,-0.7971542,-0.7971542,-0.7975408,-0.79744416,-0.7971542,-0.79705757,-0.79705757,-0.79725087,-0.79725087,-0.79763746,-0.79802406,-0.7965743,-0.79705757,-0.8005371,-0.801407,-0.8009237,-0.80218023,-0.80150366,-0.7992805,-0.7994738,-0.79705757,-0.7899052,-0.78632903,-0.7869089,-0.7875855,-0.7894219,-0.793288,-0.79763746,-0.8009237,-0.80218023,-0.8025668,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80247015,-0.80227685,-0.801407,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80247015,-0.80247015,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80247015,-0.8025668,-0.80266345,-0.8025668,-0.80024713,-0.79580104,-0.79154825,-0.7874888,-0.7870056,-0.7931914,-0.79870063,-0.7989906,-0.8001505,-0.80247015,-0.80189025,-0.7990872,-0.7973475,-0.7973475,-0.7973475,-0.7971542,-0.79725087,-0.79725087,-0.7969609,-0.7967676,-0.7966709,-0.7964776,-0.7965743,-0.7966709,-0.7966709,-0.7965743,-0.7966709,-0.7967676,-0.7968642,-0.7968642,-0.7967676,-0.7966709,-0.7964776,-0.7962843,-0.7958977,-0.796091,-0.796381,-0.7965743,-0.7966709,-0.7967676,-0.7969609,-0.79705757,-0.7971542,-0.7973475,-0.79744416,-0.79744416,-0.79725087,-0.7969609,-0.7967676,-0.7967676,-0.7967676,-0.7965743,-0.7962843,-0.7959944,-0.7959944,-0.7959944,-0.7958977,-0.7958977,-0.79580104,-0.79580104,-0.7958977,-0.7958977,-0.79580104,-0.79580104,-0.79580104,-0.7957044,-0.7958977,-0.796091,-0.7962843,-0.7962843,-0.796381,-0.7961877,-0.79580104,-0.79560775,-0.79560775,-0.79560775,-0.79560775,-0.79560775,-0.79560775,-0.79560775,-0.79560775,-0.7957044,-0.79560775,-0.79560775,-0.79580104,-0.7958977,-0.7957044,-0.79560775,-0.7955111,-0.79560775,-0.79560775,-0.7955111,-0.79541445,-0.7953178,-0.7953178,-0.7955111,-0.79541445,-0.7953178,-0.79541445,-0.79560775,-0.7958977,-0.796091,-0.7959944,-0.79580104,-0.7957044,-0.79541445,-0.7953178,-0.79522115,-0.79522115,-0.79522115,-0.79502785,-0.79512453,-0.79522115,-0.79512453,-0.79522115,-0.79541445,-0.7955111,-0.7953178,-0.79512453,-0.79512453,-0.7953178,-0.79541445,-0.7957044,-0.7957044,-0.79560775,-0.7957044,-0.7957044,-0.7957044,-0.79560775,-0.79541445,-0.7955111,-0.7958977,-0.7962843,-0.7964776,-0.7965743,-0.7966709,-0.7968642,-0.79705757,-0.79705757,-0.79705757,-0.7971542,-0.7971542,-0.79725087,-0.79744416,-0.79744416,-0.79725087,-0.7969609,-0.7969609,-0.79705757,-0.79725087,-0.7973475,-0.7975408,-0.79783076,-0.79705757,-0.79744416,-0.80024713,-0.8012137,-0.8009237,-0.80218023,-0.80150366,-0.7991839,-0.7994738,-0.79725087,-0.7899052,-0.7859424,-0.7865223,-0.78632903,-0.7878755,-0.7928048,-0.7973475,-0.80024713,-0.8019869,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.80247015,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.80247015,-0.8023735,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80208355,-0.8019869,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.8025668,-0.80247015,-0.80266345,-0.8025668,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8023735,-0.79986054,-0.79522115,-0.7902918,-0.78661895,-0.7871022,-0.7937714,-0.7989906,-0.7990872,-0.8003438,-0.8025668,-0.80169696,-0.79860395,-0.79725087,-0.79725087,-0.7971542,-0.7968642,-0.7969609,-0.7969609,-0.7967676,-0.7967676,-0.7967676,-0.7966709,-0.796381,-0.7965743,-0.7967676,-0.7965743,-0.7966709,-0.7967676,-0.7966709,-0.7967676,-0.7967676,-0.7965743,-0.796381,-0.796091,-0.7958977,-0.7959944,-0.796381,-0.7964776,-0.7965743,-0.7967676,-0.7969609,-0.7969609,-0.7969609,-0.7971542,-0.79725087,-0.79725087,-0.79705757,-0.7969609,-0.7967676,-0.7966709,-0.7965743,-0.796381,-0.796091,-0.7959944,-0.7959944,-0.7959944,-0.7959944,-0.7958977,-0.7958977,-0.7958977,-0.7958977,-0.7959944,-0.796091,-0.7958977,-0.7955111,-0.7957044,-0.7958977,-0.796091,-0.7961877,-0.7961877,-0.7961877,-0.796091,-0.7958977,-0.79580104,-0.7957044,-0.79560775,-0.7955111,-0.7955111,-0.7957044,-0.7957044,-0.79560775,-0.7955111,-0.79541445,-0.79541445,-0.7957044,-0.79580104,-0.7957044,-0.79541445,-0.7955111,-0.7957044,-0.79560775,-0.79541445,-0.79560775,-0.7957044,-0.7955111,-0.79541445,-0.79541445,-0.79541445,-0.79541445,-0.7957044,-0.796091,-0.796091,-0.79580104,-0.79560775,-0.7955111,-0.79522115,-0.79512453,-0.79512453,-0.79512453,-0.79522115,-0.79522115,-0.79502785,-0.79502785,-0.79512453,-0.79522115,-0.7953178,-0.79541445,-0.7953178,-0.7953178,-0.79512453,-0.79502785,-0.79541445,-0.7957044,-0.7957044,-0.79560775,-0.79560775,-0.79560775,-0.79560775,-0.7955111,-0.79541445,-0.7955111,-0.7958977,-0.7961877,-0.7962843,-0.7962843,-0.7964776,-0.7967676,-0.7968642,-0.7967676,-0.79705757,-0.79725087,-0.7971542,-0.7973475,-0.7975408,-0.79744416,-0.79705757,-0.7969609,-0.7971542,-0.7971542,-0.7971542,-0.7971542,-0.79725087,-0.7977341,-0.79763746,-0.79812074,-0.80024713,-0.8009237,-0.8007304,-0.8019869,-0.8016003,-0.7992805,-0.7994738,-0.79783076,-0.7904851,-0.7856524,-0.78613573,-0.78661895,-0.78855205,-0.7928048,-0.7962843,-0.7993772,-0.80189025,-0.80266345,-0.8025668,-0.80247015,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8025668,-0.80218023,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.801117,-0.8009237,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8019869,-0.7995705,-0.7953178,-0.79038846,-0.78613573,-0.7872955,-0.7945446,-0.7989906,-0.7989906,-0.80131036,-0.80218023,-0.8012137,-0.79802406,-0.79725087,-0.79744416,-0.79705757,-0.7968642,-0.7967676,-0.7966709,-0.7967676,-0.7966709,-0.7965743,-0.7965743,-0.796381,-0.7964776,-0.7966709,-0.7968642,-0.7968642,-0.7966709,-0.7967676,-0.7968642,-0.7967676,-0.7966709,-0.796381,-0.796091,-0.7959944,-0.7959944,-0.796091,-0.7964776,-0.7967676,-0.7968642,-0.7968642,-0.7969609,-0.7971542,-0.79725087,-0.79725087,-0.79725087,-0.79705757,-0.7969609,-0.7968642,-0.7967676,-0.7967676,-0.7964776,-0.7959944,-0.7959944,-0.7961877,-0.796091,-0.7959944,-0.7959944,-0.7959944,-0.796091,-0.7958977,-0.7958977,-0.7959944,-0.79580104,-0.79560775,-0.79580104,-0.79580104,-0.7957044,-0.79580104,-0.796091,-0.7961877,-0.7959944,-0.7957044,-0.79580104,-0.7958977,-0.79580104,-0.79560775,-0.79541445,-0.7955111,-0.79560775,-0.79560775,-0.79560775,-0.79541445,-0.7953178,-0.79560775,-0.79580104,-0.79560775,-0.7955111,-0.79560775,-0.7957044,-0.79560775,-0.7955111,-0.7955111,-0.7955111,-0.7955111,-0.7955111,-0.7955111,-0.79541445,-0.7955111,-0.79560775,-0.79580104,-0.7958977,-0.7957044,-0.79541445,-0.7955111,-0.79541445,-0.7953178,-0.7953178,-0.79512453,-0.79502785,-0.79512453,-0.79502785,-0.79502785,-0.7949312,-0.79502785,-0.79522115,-0.7953178,-0.7953178,-0.7953178,-0.79522115,-0.79522115,-0.79541445,-0.7955111,-0.79560775,-0.79560775,-0.7955111,-0.79541445,-0.7953178,-0.79541445,-0.7955111,-0.7955111,-0.79580104,-0.7961877,-0.7961877,-0.7961877,-0.7965743,-0.7967676,-0.7968642,-0.7968642,-0.79705757,-0.79705757,-0.79705757,-0.79705757,-0.7971542,-0.7971542,-0.79705757,-0.7969609,-0.7969609,-0.7968642,-0.79725087,-0.79725087,-0.79705757,-0.7977341,-0.79821736,-0.79860395,-0.8004405,-0.801117,-0.8003438,-0.8016003,-0.80189025,-0.7994738,-0.7993772,-0.79860395,-0.79164493,-0.78603905,-0.78623235,-0.7871989,-0.7890353,-0.7924181,-0.79560775,-0.7988939,-0.80150366,-0.8025668,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.80285674,-0.80285674,-0.8025668,-0.80247015,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80247015,-0.8025668,-0.8025668,-0.80266345,-0.8025668,-0.80208355,-0.80131036,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80208355,-0.80189025,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.8019869,-0.7991839,-0.79444796,-0.7894219,-0.7857491,-0.7874888,-0.7947379,-0.7988939,-0.7993772,-0.80189025,-0.80266345,-0.8003438,-0.7975408,-0.7971542,-0.79744416,-0.7971542,-0.7967676,-0.7967676,-0.7965743,-0.7965743,-0.7965743,-0.7965743,-0.7964776,-0.796381,-0.796381,-0.796381,-0.7965743,-0.7967676,-0.7966709,-0.7967676,-0.7969609,-0.7968642,-0.7967676,-0.7965743,-0.796091,-0.796091,-0.7961877,-0.7961877,-0.7962843,-0.7965743,-0.7966709,-0.7966709,-0.7969609,-0.79705757,-0.7971542,-0.7973475,-0.79725087,-0.79705757,-0.7969609,-0.7966709,-0.7966709,-0.7966709,-0.7965743,-0.796381,-0.7962843,-0.796091,-0.796091,-0.796091,-0.7958977,-0.7958977,-0.796091,-0.7958977,-0.796091,-0.796381,-0.796091,-0.79560775,-0.79560775,-0.7957044,-0.7957044,-0.79580104,-0.7958977,-0.7959944,-0.7958977,-0.79580104,-0.79580104,-0.79580104,-0.79580104,-0.79580104,-0.7955111,-0.7955111,-0.7955111,-0.7955111,-0.79560775,-0.7957044,-0.79560775,-0.7958977,-0.7959944,-0.7957044,-0.79560775,-0.79560775,-0.79560775,-0.79560775,-0.7955111,-0.79560775,-0.79560775,-0.7955111,-0.7955111,-0.7955111,-0.79541445,-0.7955111,-0.7955111,-0.7953178,-0.79541445,-0.7955111,-0.79541445,-0.79522115,-0.7953178,-0.79541445,-0.7955111,-0.79522115,-0.79512453,-0.79512453,-0.79512453,-0.79522115,-0.79522115,-0.79522115,-0.79522115,-0.7953178,-0.7953178,-0.79541445,-0.79541445,-0.79541445,-0.7955111,-0.7955111,-0.79560775,-0.79560775,-0.79541445,-0.79541445,-0.79541445,-0.7955111,-0.7953178,-0.79541445,-0.7958977,-0.7962843,-0.7964776,-0.7966709,-0.7969609,-0.7969609,-0.7968642,-0.7969609,-0.79705757,-0.79705757,-0.7969609,-0.79705757,-0.79705757,-0.79705757,-0.7969609,-0.7968642,-0.7967676,-0.7968642,-0.79705757,-0.7971542,-0.7975408,-0.79792744,-0.79783076,-0.79821736,-0.8001505,-0.8012137,-0.8008271,-0.8017936,-0.8019869,-0.7997638,-0.7992805,-0.79870063,-0.7924181,-0.7865223,-0.78613573,-0.7868123,-0.7878755,-0.79087174,-0.7945446,-0.79850733,-0.80150366,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80218023,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80227685,-0.8023735,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80247015,-0.8025668,-0.80266345,-0.80285674,-0.80285674,-0.8025668,-0.80266345,-0.80285674,-0.80266345,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80247015,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80218023,-0.7987973,-0.7937714,-0.7894219,-0.78603905,-0.7877788,-0.79502785,-0.7990872,-0.79986054,-0.80218023,-0.8025668,-0.7997638,-0.79763746,-0.79744416,-0.79744416,-0.79705757,-0.7968642,-0.7968642,-0.7966709,-0.7964776,-0.796381,-0.7964776,-0.7964776,-0.7962843,-0.7962843,-0.796381,-0.7965743,-0.7966709,-0.7966709,-0.7968642,-0.7968642,-0.7968642,-0.7967676,-0.7966709,-0.7962843,-0.7958977,-0.7958977,-0.7958977,-0.7959944,-0.796381,-0.7965743,-0.7966709,-0.7968642,-0.7969609,-0.7969609,-0.79705757,-0.79705757,-0.7968642,-0.7967676,-0.7966709,-0.7965743,-0.7965743,-0.7964776,-0.7962843,-0.7961877,-0.7959944,-0.7959944,-0.7959944,-0.7959944,-0.796091,-0.79580104,-0.79560775,-0.7967676,-0.7973475,-0.796381,-0.79560775,-0.79560775,-0.7957044,-0.79580104,-0.79580104,-0.7957044,-0.7957044,-0.7957044,-0.7957044,-0.7957044,-0.79560775,-0.79560775,-0.79560775,-0.79560775,-0.79560775,-0.79560775,-0.7955111,-0.7957044,-0.7957044,-0.7957044,-0.79580104,-0.796091,-0.7958977,-0.79560775,-0.79560775,-0.7957044,-0.79580104,-0.79560775,-0.7955111,-0.79560775,-0.7957044,-0.79560775,-0.7955111,-0.7955111,-0.79560775,-0.79541445,-0.79541445,-0.7955111,-0.7953178,-0.79522115,-0.7953178,-0.79522115,-0.79512453,-0.7953178,-0.7953178,-0.79522115,-0.79522115,-0.79512453,-0.79502785,-0.79502785,-0.79512453,-0.79522115,-0.7953178,-0.7953178,-0.79522115,-0.7953178,-0.79541445,-0.79560775,-0.79560775,-0.7955111,-0.7955111,-0.79541445,-0.7953178,-0.79541445,-0.7955111,-0.7955111,-0.7955111,-0.7958977,-0.7962843,-0.7965743,-0.7967676,-0.7967676,-0.7967676,-0.7968642,-0.79705757,-0.79705757,-0.79705757,-0.79705757,-0.7968642,-0.7969609,-0.79705757,-0.7969609,-0.7969609,-0.7969609,-0.7969609,-0.79705757,-0.7973475,-0.79763746,-0.79763746,-0.7973475,-0.7973475,-0.7988939,-0.8007304,-0.801117,-0.80189025,-0.80218023,-0.79986054,-0.7991839,-0.7989906,-0.7929014,-0.78661895,-0.78613573,-0.7870056,-0.7873922,-0.7895186,-0.7933847,-0.79802406,-0.80131036,-0.80247015,-0.8025668,-0.80247015,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.80266345,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.80247015,-0.8027601,-0.8023735,-0.80227685,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80247015,-0.80227685,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80247015,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80189025,-0.79860395,-0.793868,-0.7895186,-0.78623235,-0.7881654,-0.79512453,-0.7990872,-0.80005383,-0.8023735,-0.80227685,-0.7993772,-0.79763746,-0.7973475,-0.79725087,-0.79725087,-0.7971542,-0.79705757,-0.7968642,-0.7967676,-0.7965743,-0.796381,-0.7962843,-0.7962843,-0.7962843,-0.796381,-0.7965743,-0.7965743,-0.7965743,-0.7966709,-0.7969609,-0.79705757,-0.7968642,-0.7967676,-0.7964776,-0.7959944,-0.79580104,-0.7958977,-0.7959944,-0.7962843,-0.7965743,-0.7967676,-0.7967676,-0.7967676,-0.7969609,-0.7969609,-0.7968642,-0.7968642,-0.7966709,-0.7965743,-0.7964776,-0.7964776,-0.796381,-0.7962843,-0.7962843,-0.796091,-0.7958977,-0.7959944,-0.796091,-0.7961877,-0.79560775,-0.79560775,-0.7975408,-0.79850733,-0.7968642,-0.79580104,-0.79580104,-0.79560775,-0.7957044,-0.79580104,-0.7957044,-0.7957044,-0.7957044,-0.79560775,-0.79560775,-0.7957044,-0.7959944,-0.7959944,-0.79580104,-0.7957044,-0.79560775,-0.79580104,-0.7958977,-0.7955111,-0.7955111,-0.7959944,-0.796091,-0.7958977,-0.7957044,-0.7957044,-0.7957044,-0.79560775,-0.79560775,-0.79580104,-0.7957044,-0.7955111,-0.7957044,-0.79580104,-0.7957044,-0.79560775,-0.79541445,-0.7953178,-0.7953178,-0.79522115,-0.7953178,-0.79541445,-0.79512453,-0.79502785,-0.79541445,-0.79541445,-0.7953178,-0.7955111,-0.7955111,-0.79512453,-0.79512453,-0.7953178,-0.7953178,-0.79512453,-0.7953178,-0.7955111,-0.79541445,-0.79541445,-0.79560775,-0.79560775,-0.7955111,-0.7955111,-0.79541445,-0.7953178,-0.79541445,-0.7955111,-0.7955111,-0.79580104,-0.7962843,-0.7966709,-0.7967676,-0.7967676,-0.7968642,-0.7969609,-0.7971542,-0.7971542,-0.7971542,-0.7971542,-0.7971542,-0.79705757,-0.7969609,-0.7969609,-0.7969609,-0.7968642,-0.7968642,-0.79705757,-0.7973475,-0.7975408,-0.79744416,-0.79744416,-0.7975408,-0.79744416,-0.79831403,-0.80024713,-0.8010204,-0.8017936,-0.80218023,-0.7997638,-0.7990872,-0.7989906,-0.7930947,-0.7871022,-0.78661895,-0.7870056,-0.7876822,-0.79038846,-0.79357797,-0.79744416,-0.801117,-0.8025668,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8025668,-0.80218023,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.80247015,-0.80247015,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.801407,-0.79783076,-0.7926115,-0.7874888,-0.7848792,-0.78845537,-0.7957044,-0.7991839,-0.8001505,-0.80247015,-0.80227685,-0.7992805,-0.7977341,-0.7975408,-0.79744416,-0.79744416,-0.7973475,-0.79725087,-0.7971542,-0.7971542,-0.7969609,-0.7968642,-0.7968642,-0.7964776,-0.7961877,-0.796091,-0.796091,-0.796381,-0.7964776,-0.7965743,-0.7966709,-0.7967676,-0.7966709,-0.7966709,-0.7965743,-0.7962843,-0.7958977,-0.79580104,-0.7958977,-0.7958977,-0.7959944,-0.796381,-0.7965743,-0.7967676,-0.7968642,-0.7968642,-0.7968642,-0.7967676,-0.7965743,-0.7965743,-0.7964776,-0.7962843,-0.7961877,-0.7961877,-0.7961877,-0.796091,-0.7959944,-0.7958977,-0.7958977,-0.796091,-0.79580104,-0.7955111,-0.7973475,-0.7992805,-0.79841065,-0.796381,-0.79580104,-0.7957044,-0.79560775,-0.79560775,-0.79560775,-0.79560775,-0.7957044,-0.7957044,-0.79580104,-0.7959944,-0.7959944,-0.7958977,-0.7958977,-0.7959944,-0.7959944,-0.79580104,-0.79560775,-0.79560775,-0.79560775,-0.7959944,-0.7962843,-0.7959944,-0.79560775,-0.79560775,-0.79560775,-0.7957044,-0.79580104,-0.79580104,-0.7957044,-0.79560775,-0.7957044,-0.7957044,-0.79560775,-0.79560775,-0.7957044,-0.7955111,-0.7953178,-0.79522115,-0.79522115,-0.7953178,-0.7953178,-0.79541445,-0.7955111,-0.79541445,-0.79541445,-0.79560775,-0.7955111,-0.79522115,-0.79522115,-0.79541445,-0.7953178,-0.79512453,-0.7953178,-0.79560775,-0.79560775,-0.7953178,-0.7953178,-0.79541445,-0.7955111,-0.79560775,-0.7955111,-0.79541445,-0.79541445,-0.79541445,-0.7953178,-0.7957044,-0.7964776,-0.7967676,-0.7966709,-0.7967676,-0.7971542,-0.7973475,-0.7971542,-0.7968642,-0.7967676,-0.7969609,-0.7971542,-0.7968642,-0.7967676,-0.7967676,-0.7968642,-0.7967676,-0.7967676,-0.7971542,-0.7971542,-0.7971542,-0.7973475,-0.79744416,-0.7975408,-0.79744416,-0.79802406,-0.79986054,-0.8010204,-0.8019869,-0.8019869,-0.7995705,-0.7991839,-0.79870063,-0.7919349,-0.78632903,-0.78632903,-0.7865223,-0.7878755,-0.79106504,-0.79357797,-0.79705757,-0.8009237,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8019869,-0.8019869,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.8023735,-0.80247015,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.80131036,-0.79744416,-0.7926115,-0.7878755,-0.7850725,-0.78864866,-0.796091,-0.7993772,-0.8005371,-0.80266345,-0.80227685,-0.7994738,-0.79763746,-0.79725087,-0.79744416,-0.7973475,-0.7971542,-0.79725087,-0.79725087,-0.7971542,-0.7969609,-0.79705757,-0.7971542,-0.7967676,-0.7964776,-0.7962843,-0.7961877,-0.7961877,-0.7962843,-0.7964776,-0.7965743,-0.7965743,-0.7964776,-0.7966709,-0.7967676,-0.7964776,-0.7959944,-0.7958977,-0.7958977,-0.7958977,-0.7959944,-0.7961877,-0.7964776,-0.7966709,-0.7966709,-0.7966709,-0.7967676,-0.7965743,-0.7964776,-0.7964776,-0.7964776,-0.7964776,-0.7962843,-0.7959944,-0.796091,-0.796091,-0.7958977,-0.7959944,-0.796091,-0.796091,-0.7959944,-0.79560775,-0.7964776,-0.79821736,-0.79870063,-0.79783076,-0.7967676,-0.7959944,-0.79580104,-0.79560775,-0.7953178,-0.79541445,-0.79560775,-0.79580104,-0.796091,-0.7959944,-0.79580104,-0.7958977,-0.7959944,-0.796091,-0.7959944,-0.7957044,-0.7955111,-0.79560775,-0.79560775,-0.7959944,-0.7964776,-0.7959944,-0.7955111,-0.79560775,-0.7957044,-0.79580104,-0.7957044,-0.7957044,-0.7958977,-0.79580104,-0.79560775,-0.79560775,-0.7957044,-0.79560775,-0.7953178,-0.79522115,-0.7953178,-0.7953178,-0.79541445,-0.79560775,-0.79580104,-0.7955111,-0.7953178,-0.7953178,-0.7953178,-0.7955111,-0.7955111,-0.7953178,-0.79512453,-0.79512453,-0.7953178,-0.7955111,-0.7955111,-0.7953178,-0.79541445,-0.7955111,-0.79541445,-0.7955111,-0.7955111,-0.79541445,-0.79541445,-0.7955111,-0.7953178,-0.7955111,-0.7957044,-0.79580104,-0.7961877,-0.7967676,-0.7969609,-0.7969609,-0.7968642,-0.7968642,-0.7969609,-0.7968642,-0.7966709,-0.7966709,-0.7967676,-0.7968642,-0.7967676,-0.7966709,-0.7966709,-0.7966709,-0.7966709,-0.7967676,-0.7968642,-0.7969609,-0.7971542,-0.7971542,-0.79744416,-0.7975408,-0.79783076,-0.7996672,-0.8012137,-0.8023735,-0.80218023,-0.7996672,-0.7994738,-0.79860395,-0.79116166,-0.7858457,-0.78632903,-0.78661895,-0.7875855,-0.7904851,-0.7939647,-0.79763746,-0.8008271,-0.8025668,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80247015,-0.80266345,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80247015,-0.80247015,-0.80266345,-0.80266345,-0.8025668,-0.80189025,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8019869,-0.80189025,-0.80266345,-0.8027601,-0.8023735,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80247015,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8009237,-0.7975408,-0.7929981,-0.7881654,-0.7850725,-0.788842,-0.7964776,-0.7996672,-0.8007304,-0.80266345,-0.80208355,-0.7997638,-0.79841065,-0.7977341,-0.7975408,-0.79744416,-0.79744416,-0.79763746,-0.7975408,-0.79725087,-0.79725087,-0.79725087,-0.79705757,-0.7969609,-0.7966709,-0.7961877,-0.7961877,-0.7961877,-0.796091,-0.7961877,-0.7964776,-0.7965743,-0.7965743,-0.7965743,-0.7966709,-0.7964776,-0.7961877,-0.7959944,-0.7957044,-0.79580104,-0.7961877,-0.7961877,-0.7962843,-0.7964776,-0.7965743,-0.7965743,-0.7965743,-0.7964776,-0.7962843,-0.7961877,-0.7962843,-0.796381,-0.7962843,-0.7962843,-0.7962843,-0.7961877,-0.796091,-0.796091,-0.7958977,-0.79580104,-0.79580104,-0.7957044,-0.7958977,-0.7966709,-0.79725087,-0.79783076,-0.79821736,-0.79705757,-0.7958977,-0.7957044,-0.7955111,-0.7953178,-0.79560775,-0.7958977,-0.7959944,-0.7959944,-0.7959944,-0.796091,-0.7958977,-0.79580104,-0.7957044,-0.7955111,-0.79541445,-0.79541445,-0.79560775,-0.7964776,-0.79705757,-0.796381,-0.79560775,-0.7955111,-0.7957044,-0.7957044,-0.7957044,-0.7957044,-0.79580104,-0.7959944,-0.7958977,-0.79580104,-0.79560775,-0.79541445,-0.79522115,-0.79522115,-0.79512453,-0.79541445,-0.796091,-0.7964776,-0.7958977,-0.7953178,-0.79522115,-0.79541445,-0.79560775,-0.7955111,-0.79541445,-0.7953178,-0.7953178,-0.79522115,-0.79541445,-0.7955111,-0.79560775,-0.79560775,-0.7957044,-0.79560775,-0.79541445,-0.7955111,-0.7955111,-0.7953178,-0.79541445,-0.79560775,-0.79560775,-0.79541445,-0.7955111,-0.79580104,-0.796091,-0.7964776,-0.7967676,-0.7966709,-0.7965743,-0.7967676,-0.7966709,-0.7965743,-0.7964776,-0.7965743,-0.7966709,-0.7967676,-0.7967676,-0.7965743,-0.7964776,-0.7966709,-0.7966709,-0.7965743,-0.7966709,-0.7968642,-0.7968642,-0.7969609,-0.7973475,-0.79744416,-0.79783076,-0.7996672,-0.80131036,-0.8023735,-0.80208355,-0.7995705,-0.7990872,-0.7990872,-0.793288,-0.7874888,-0.78661895,-0.78642565,-0.7870056,-0.79019517,-0.7940613,-0.79783076,-0.801117,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8023735,-0.8023735,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8023735,-0.8027601,-0.8019869,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8023735,-0.8023735,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80247015,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80227685,-0.8003438,-0.7971542,-0.7925148,-0.7875855,-0.7850725,-0.789132,-0.7968642,-0.80005383,-0.801117,-0.80285674,-0.80189025,-0.7995705,-0.79850733,-0.79812074,-0.79783076,-0.7977341,-0.79763746,-0.7975408,-0.79744416,-0.79725087,-0.7971542,-0.7971542,-0.7971542,-0.7971542,-0.7968642,-0.7964776,-0.7965743,-0.7965743,-0.7961877,-0.796091,-0.7961877,-0.7961877,-0.7962843,-0.7964776,-0.7964776,-0.796381,-0.7962843,-0.796091,-0.7958977,-0.79580104,-0.7959944,-0.796091,-0.7961877,-0.7962843,-0.796381,-0.7964776,-0.7964776,-0.796381,-0.7961877,-0.7962843,-0.796381,-0.7962843,-0.7961877,-0.7961877,-0.796091,-0.7959944,-0.7961877,-0.7959944,-0.7957044,-0.7957044,-0.7958977,-0.7958977,-0.79580104,-0.7958977,-0.7959944,-0.7964776,-0.79792744,-0.79841065,-0.7965743,-0.7953178,-0.7957044,-0.7957044,-0.7955111,-0.7957044,-0.79580104,-0.7958977,-0.79580104,-0.79580104,-0.79580104,-0.79560775,-0.79560775,-0.79560775,-0.79560775,-0.7955111,-0.79560775,-0.796381,-0.7968642,-0.796381,-0.7957044,-0.7955111,-0.79560775,-0.79560775,-0.79560775,-0.7957044,-0.79580104,-0.7958977,-0.7958977,-0.79580104,-0.79560775,-0.79560775,-0.79560775,-0.7953178,-0.79522115,-0.7962843,-0.79725087,-0.7965743,-0.7953178,-0.79522115,-0.79541445,-0.7953178,-0.7953178,-0.7955111,-0.79541445,-0.7953178,-0.79541445,-0.79541445,-0.7953178,-0.7953178,-0.79541445,-0.7955111,-0.79560775,-0.7955111,-0.79541445,-0.7955111,-0.7955111,-0.79541445,-0.79541445,-0.7955111,-0.7955111,-0.79541445,-0.7955111,-0.79560775,-0.7958977,-0.7962843,-0.7964776,-0.796381,-0.7962843,-0.796381,-0.796381,-0.7964776,-0.7961877,-0.7961877,-0.7965743,-0.7966709,-0.796381,-0.796381,-0.7965743,-0.7967676,-0.7969609,-0.7968642,-0.7966709,-0.7968642,-0.7971542,-0.79725087,-0.79744416,-0.79744416,-0.79792744,-0.7997638,-0.801407,-0.8023735,-0.80208355,-0.7993772,-0.7987973,-0.7995705,-0.7943513,-0.7879721,-0.7867156,-0.7867156,-0.7876822,-0.79058176,-0.7936747,-0.79744416,-0.80131036,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80247015,-0.80208355,-0.80227685,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80227685,-0.80218023,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80247015,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.8023735,-0.8001505,-0.7962843,-0.7917416,-0.7871989,-0.7849758,-0.7892286,-0.7966709,-0.80005383,-0.801407,-0.80285674,-0.8017936,-0.7992805,-0.79792744,-0.79763746,-0.7977341,-0.79763746,-0.79763746,-0.79744416,-0.7973475,-0.79744416,-0.79744416,-0.7973475,-0.7971542,-0.7969609,-0.7968642,-0.7968642,-0.7968642,-0.7967676,-0.796381,-0.796091,-0.7959944,-0.7962843,-0.7962843,-0.7962843,-0.796381,-0.796381,-0.796381,-0.796381,-0.796091,-0.7958977,-0.7958977,-0.7959944,-0.7961877,-0.7962843,-0.796381,-0.7964776,-0.796381,-0.7962843,-0.7961877,-0.7962843,-0.7962843,-0.7961877,-0.7961877,-0.7962843,-0.7961877,-0.7961877,-0.7962843,-0.7958977,-0.7957044,-0.7959944,-0.796091,-0.7959944,-0.796091,-0.7958977,-0.7955111,-0.7955111,-0.796381,-0.79783076,-0.79763746,-0.7959944,-0.7955111,-0.79580104,-0.79580104,-0.79580104,-0.7957044,-0.79560775,-0.79580104,-0.7958977,-0.7958977,-0.7957044,-0.7955111,-0.7955111,-0.7957044,-0.7957044,-0.79580104,-0.7961877,-0.7961877,-0.79580104,-0.79560775,-0.79560775,-0.7957044,-0.7957044,-0.79560775,-0.7955111,-0.79580104,-0.79580104,-0.7957044,-0.79560775,-0.79580104,-0.7957044,-0.7953178,-0.7955111,-0.7965743,-0.79744416,-0.79705757,-0.7959944,-0.7953178,-0.79522115,-0.7953178,-0.7953178,-0.7953178,-0.7955111,-0.7955111,-0.79541445,-0.79541445,-0.7953178,-0.79541445,-0.7955111,-0.7955111,-0.7957044,-0.79560775,-0.7953178,-0.7953178,-0.7955111,-0.79541445,-0.7953178,-0.7953178,-0.7955111,-0.79560775,-0.7955111,-0.7955111,-0.7957044,-0.7958977,-0.7959944,-0.7959944,-0.796091,-0.796091,-0.796091,-0.7962843,-0.7962843,-0.7962843,-0.796381,-0.7964776,-0.7966709,-0.7968642,-0.7969609,-0.79705757,-0.79725087,-0.79725087,-0.79705757,-0.79705757,-0.7971542,-0.79725087,-0.7973475,-0.7975408,-0.79763746,-0.79812074,-0.7997638,-0.80131036,-0.80247015,-0.80218023,-0.7994738,-0.7988939,-0.7990872,-0.7929014,-0.7867156,-0.7865223,-0.78661895,-0.7870056,-0.79019517,-0.7939647,-0.79812074,-0.80189025,-0.80266345,-0.80247015,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80247015,-0.80285674,-0.8023735,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8017936,-0.8017936,-0.8025668,-0.8025668,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.80285674,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.8025668,-0.7999572,-0.79512453,-0.79038846,-0.7865223,-0.7847825,-0.7896152,-0.7973475,-0.8003438,-0.80150366,-0.80266345,-0.8016003,-0.7989906,-0.79783076,-0.7975408,-0.7975408,-0.7973475,-0.7973475,-0.7977341,-0.79763746,-0.79744416,-0.7975408,-0.79763746,-0.7973475,-0.79725087,-0.79725087,-0.7969609,-0.7967676,-0.7968642,-0.7966709,-0.796381,-0.796381,-0.796381,-0.7961877,-0.7961877,-0.7962843,-0.7962843,-0.7962843,-0.7961877,-0.7959944,-0.79580104,-0.79580104,-0.79580104,-0.7958977,-0.796091,-0.7962843,-0.7961877,-0.7961877,-0.7961877,-0.796091,-0.796091,-0.796381,-0.7962843,-0.796091,-0.7961877,-0.796091,-0.7961877,-0.7964776,-0.7961877,-0.7957044,-0.79560775,-0.79580104,-0.7959944,-0.796091,-0.79580104,-0.79580104,-0.7958977,-0.7953178,-0.79560775,-0.79705757,-0.7971542,-0.7959944,-0.7957044,-0.7958977,-0.7958977,-0.7958977,-0.79580104,-0.7958977,-0.796091,-0.7958977,-0.79580104,-0.79580104,-0.79560775,-0.7957044,-0.7957044,-0.7959944,-0.7965743,-0.7966709,-0.796091,-0.7958977,-0.7958977,-0.79580104,-0.7957044,-0.79560775,-0.79580104,-0.7959944,-0.7958977,-0.7958977,-0.7958977,-0.79580104,-0.79560775,-0.79580104,-0.7966709,-0.79725087,-0.7966709,-0.7957044,-0.79541445,-0.7955111,-0.79541445,-0.7953178,-0.7953178,-0.79541445,-0.79541445,-0.7953178,-0.79522115,-0.79522115,-0.79522115,-0.79541445,-0.7957044,-0.79580104,-0.7957044,-0.79560775,-0.7955111,-0.7955111,-0.79541445,-0.79541445,-0.7955111,-0.7955111,-0.7955111,-0.79560775,-0.79560775,-0.79560775,-0.7958977,-0.796091,-0.796091,-0.7962843,-0.796381,-0.7962843,-0.7962843,-0.796381,-0.7964776,-0.7966709,-0.7968642,-0.7967676,-0.7968642,-0.79705757,-0.79725087,-0.79725087,-0.7973475,-0.79744416,-0.7973475,-0.79725087,-0.7971542,-0.79744416,-0.7977341,-0.7977341,-0.7977341,-0.79841065,-0.7999572,-0.80150366,-0.80266345,-0.80208355,-0.7992805,-0.7988939,-0.79870063,-0.7923215,-0.78661895,-0.78642565,-0.78661895,-0.7876822,-0.79154825,-0.79502785,-0.79870063,-0.80208355,-0.8025668,-0.80247015,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8025668,-0.80227685,-0.8025668,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80247015,-0.8027601,-0.8027601,-0.80218023,-0.80189025,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80218023,-0.80227685,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80227685,-0.7995705,-0.79512453,-0.7906784,-0.7867156,-0.7851691,-0.7902918,-0.79763746,-0.80005383,-0.80150366,-0.8025668,-0.80131036,-0.79850733,-0.79783076,-0.7977341,-0.7975408,-0.7973475,-0.7973475,-0.79725087,-0.7973475,-0.7977341,-0.7975408,-0.7973475,-0.79744416,-0.79744416,-0.79725087,-0.79705757,-0.7968642,-0.7969609,-0.7967676,-0.7965743,-0.7965743,-0.796381,-0.7964776,-0.7965743,-0.7962843,-0.7961877,-0.7962843,-0.7961877,-0.7959944,-0.7959944,-0.7958977,-0.79580104,-0.79580104,-0.7958977,-0.7958977,-0.7958977,-0.796091,-0.796091,-0.7959944,-0.796091,-0.796381,-0.796381,-0.7961877,-0.796091,-0.796091,-0.7961877,-0.796381,-0.7961877,-0.79580104,-0.79580104,-0.7959944,-0.7958977,-0.7958977,-0.7959944,-0.79580104,-0.7957044,-0.79560775,-0.7955111,-0.796091,-0.7968642,-0.7964776,-0.79580104,-0.7959944,-0.796091,-0.79580104,-0.7957044,-0.7958977,-0.7958977,-0.79580104,-0.7957044,-0.79580104,-0.79580104,-0.79560775,-0.7957044,-0.7962843,-0.7966709,-0.7964776,-0.7961877,-0.7959944,-0.7958977,-0.79580104,-0.79560775,-0.7957044,-0.7958977,-0.79580104,-0.79580104,-0.7958977,-0.79580104,-0.7957044,-0.7961877,-0.7968642,-0.7966709,-0.79580104,-0.79541445,-0.79541445,-0.79541445,-0.79541445,-0.7953178,-0.79522115,-0.79512453,-0.79512453,-0.79522115,-0.7953178,-0.7953178,-0.7955111,-0.7953178,-0.7953178,-0.79560775,-0.79580104,-0.79560775,-0.7955111,-0.79541445,-0.79541445,-0.7955111,-0.7955111,-0.7955111,-0.79541445,-0.7955111,-0.7955111,-0.7955111,-0.7957044,-0.796091,-0.7961877,-0.7964776,-0.7967676,-0.7968642,-0.7967676,-0.7966709,-0.7967676,-0.7968642,-0.7969609,-0.7969609,-0.79705757,-0.7971542,-0.79705757,-0.79725087,-0.79744416,-0.79744416,-0.79744416,-0.79763746,-0.7975408,-0.7973475,-0.7973475,-0.79763746,-0.79821736,-0.79841065,-0.7989906,-0.8007304,-0.80189025,-0.8025668,-0.80218023,-0.7994738,-0.79870063,-0.79860395,-0.7931914,-0.7872955,-0.78603905,-0.7867156,-0.7893253,-0.7928048,-0.79541445,-0.7988939,-0.80189025,-0.8025668,-0.80247015,-0.8025668,-0.8025668,-0.80266345,-0.8025668,-0.80247015,-0.8025668,-0.80266345,-0.8025668,-0.80247015,-0.8025668,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80208355,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80169696,-0.80150366,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.80247015,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80208355,-0.7994738,-0.7953178,-0.79125834,-0.7872955,-0.7853624,-0.79038846,-0.7973475,-0.79986054,-0.80169696,-0.80266345,-0.801117,-0.79870063,-0.7977341,-0.7975408,-0.7975408,-0.79744416,-0.7973475,-0.79725087,-0.79725087,-0.79744416,-0.79744416,-0.7975408,-0.7975408,-0.7973475,-0.79705757,-0.7967676,-0.7968642,-0.79705757,-0.7969609,-0.7968642,-0.7966709,-0.7965743,-0.7964776,-0.7964776,-0.7962843,-0.7961877,-0.7961877,-0.796381,-0.796381,-0.7961877,-0.7958977,-0.79580104,-0.79580104,-0.7958977,-0.796091,-0.7961877,-0.7962843,-0.796381,-0.796091,-0.7958977,-0.7961877,-0.7961877,-0.796091,-0.7962843,-0.7961877,-0.7961877,-0.796381,-0.7961877,-0.7958977,-0.7959944,-0.796091,-0.7959944,-0.7959944,-0.7959944,-0.79580104,-0.7957044,-0.796091,-0.796091,-0.7958977,-0.796381,-0.7965743,-0.796091,-0.7961877,-0.7966709,-0.796381,-0.79580104,-0.7957044,-0.79560775,-0.79560775,-0.7955111,-0.7957044,-0.79580104,-0.79580104,-0.7959944,-0.796381,-0.7964776,-0.7962843,-0.7959944,-0.7959944,-0.7958977,-0.7957044,-0.7957044,-0.7958977,-0.7958977,-0.7957044,-0.79580104,-0.7958977,-0.7959944,-0.796381,-0.7967676,-0.7962843,-0.79541445,-0.79502785,-0.7953178,-0.7955111,-0.7955111,-0.7953178,-0.79541445,-0.7953178,-0.79522115,-0.7955111,-0.7955111,-0.79522115,-0.7953178,-0.79541445,-0.79541445,-0.79560775,-0.79580104,-0.7957044,-0.79560775,-0.79560775,-0.79541445,-0.7953178,-0.7953178,-0.7955111,-0.7957044,-0.7957044,-0.79560775,-0.79541445,-0.79541445,-0.7958977,-0.796381,-0.7964776,-0.7966709,-0.7967676,-0.7967676,-0.7967676,-0.7968642,-0.79705757,-0.7971542,-0.79705757,-0.7969609,-0.7969609,-0.7971542,-0.7973475,-0.79763746,-0.7977341,-0.79783076,-0.79792744,-0.79792744,-0.7977341,-0.7975408,-0.79792744,-0.79850733,-0.7990872,-0.7991839,-0.7996672,-0.8008271,-0.80169696,-0.8023735,-0.80227685,-0.7995705,-0.79841065,-0.79841065,-0.7930947,-0.7871022,-0.78613573,-0.7873922,-0.79019517,-0.79348135,-0.79580104,-0.7992805,-0.80218023,-0.8023735,-0.80227685,-0.8025668,-0.80247015,-0.8025668,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80247015,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.80208355,-0.8019869,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8019869,-0.80169696,-0.80266345,-0.80227685,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8019869,-0.7993772,-0.79541445,-0.79096836,-0.7870056,-0.7855558,-0.79058176,-0.79744416,-0.7999572,-0.80169696,-0.8025668,-0.801117,-0.79850733,-0.7977341,-0.7975408,-0.7973475,-0.7973475,-0.79744416,-0.79744416,-0.7973475,-0.7971542,-0.79725087,-0.7973475,-0.7973475,-0.7975408,-0.7973475,-0.79705757,-0.79705757,-0.7971542,-0.7969609,-0.7968642,-0.7969609,-0.7967676,-0.7965743,-0.796381,-0.7962843,-0.7964776,-0.7964776,-0.7962843,-0.7962843,-0.7961877,-0.796091,-0.7959944,-0.7958977,-0.7958977,-0.7961877,-0.7961877,-0.7958977,-0.796091,-0.796091,-0.7957044,-0.7958977,-0.7964776,-0.7964776,-0.796381,-0.796091,-0.7959944,-0.7964776,-0.7965743,-0.796091,-0.7959944,-0.7959944,-0.7958977,-0.79580104,-0.7958977,-0.7958977,-0.79580104,-0.7957044,-0.7958977,-0.79580104,-0.7959944,-0.7967676,-0.7969609,-0.7966709,-0.7964776,-0.7965743,-0.7965743,-0.7962843,-0.79580104,-0.79560775,-0.7957044,-0.79560775,-0.79580104,-0.7959944,-0.796091,-0.7962843,-0.7965743,-0.796381,-0.7961877,-0.796091,-0.796091,-0.79580104,-0.7957044,-0.79580104,-0.7958977,-0.7959944,-0.7959944,-0.7961877,-0.7966709,-0.7968642,-0.796091,-0.79522115,-0.7953178,-0.79541445,-0.79541445,-0.7955111,-0.7953178,-0.7953178,-0.79541445,-0.7953178,-0.7953178,-0.79541445,-0.79541445,-0.7953178,-0.7953178,-0.7955111,-0.7955111,-0.79580104,-0.796091,-0.79560775,-0.79522115,-0.7953178,-0.79541445,-0.7955111,-0.79541445,-0.79541445,-0.7957044,-0.7958977,-0.79580104,-0.7955111,-0.7955111,-0.796091,-0.7964776,-0.7967676,-0.7971542,-0.7971542,-0.79705757,-0.79705757,-0.79725087,-0.79705757,-0.7971542,-0.7973475,-0.7975408,-0.7975408,-0.79744416,-0.79744416,-0.79763746,-0.79763746,-0.79763746,-0.79763746,-0.79763746,-0.79783076,-0.79831403,-0.79860395,-0.7987973,-0.7991839,-0.7991839,-0.7993772,-0.8006338,-0.80150366,-0.80227685,-0.80227685,-0.7991839,-0.79802406,-0.79831403,-0.7929014,-0.7868123,-0.78661895,-0.7877788,-0.7893253,-0.7929014,-0.7962843,-0.7993772,-0.8017936,-0.80227685,-0.80227685,-0.80247015,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.8025668,-0.80247015,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.80247015,-0.80227685,-0.80247015,-0.80227685,-0.80218023,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80169696,-0.80131036,-0.80285674,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80247015,-0.8027601,-0.8023735,-0.80247015,-0.8025668,-0.80247015,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80227685,-0.7994738,-0.7953178,-0.79077506,-0.7867156,-0.7856524,-0.79125834,-0.79812074,-0.8001505,-0.80150366,-0.80266345,-0.8010204,-0.79841065,-0.7975408,-0.7975408,-0.79744416,-0.79725087,-0.7973475,-0.79744416,-0.7973475,-0.7975408,-0.7973475,-0.79705757,-0.79705757,-0.79705757,-0.7971542,-0.7973475,-0.79744416,-0.79725087,-0.7971542,-0.79705757,-0.7969609,-0.7969609,-0.7967676,-0.7964776,-0.796381,-0.7966709,-0.7967676,-0.7964776,-0.796091,-0.7959944,-0.7958977,-0.7958977,-0.7959944,-0.7958977,-0.7959944,-0.796091,-0.7958977,-0.79580104,-0.796091,-0.7961877,-0.796091,-0.796381,-0.7964776,-0.796381,-0.7962843,-0.7965743,-0.7968642,-0.7965743,-0.796091,-0.7959944,-0.796091,-0.7959944,-0.7958977,-0.796091,-0.7961877,-0.7959944,-0.7958977,-0.7958977,-0.79580104,-0.79560775,-0.7959944,-0.7966709,-0.79705757,-0.7967676,-0.7964776,-0.7967676,-0.79725087,-0.7966709,-0.7958977,-0.79580104,-0.7958977,-0.7958977,-0.796091,-0.796381,-0.7962843,-0.796091,-0.796091,-0.7961877,-0.796091,-0.7958977,-0.7958977,-0.7958977,-0.79580104,-0.796381,-0.7968642,-0.7968642,-0.7969609,-0.7968642,-0.7958977,-0.79502785,-0.79541445,-0.7957044,-0.7955111,-0.79560775,-0.79560775,-0.7955111,-0.7955111,-0.7955111,-0.79541445,-0.7955111,-0.79541445,-0.79541445,-0.7955111,-0.79560775,-0.79560775,-0.7958977,-0.79580104,-0.7955111,-0.79541445,-0.7957044,-0.79560775,-0.79541445,-0.79541445,-0.79560775,-0.7957044,-0.7957044,-0.79560775,-0.79560775,-0.7955111,-0.7955111,-0.7959944,-0.796381,-0.7966709,-0.7968642,-0.79705757,-0.79725087,-0.7973475,-0.7971542,-0.79705757,-0.7971542,-0.7973475,-0.79744416,-0.79744416,-0.7973475,-0.7973475,-0.7973475,-0.7973475,-0.79744416,-0.79763746,-0.79792744,-0.79831403,-0.79831403,-0.79812074,-0.79821736,-0.79870063,-0.79841065,-0.79870063,-0.8004405,-0.8016003,-0.8023735,-0.80208355,-0.7992805,-0.79831403,-0.79802406,-0.7921282,-0.7872955,-0.7874888,-0.7873922,-0.78855205,-0.7929014,-0.7965743,-0.7992805,-0.80169696,-0.80227685,-0.80218023,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80247015,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.8025668,-0.8023735,-0.8027601,-0.8019869,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8025668,-0.8023735,-0.8023735,-0.8025668,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.8025668,-0.80247015,-0.7999572,-0.796091,-0.79145163,-0.78632903,-0.7847825,-0.79096836,-0.79831403,-0.8005371,-0.8017936,-0.8025668,-0.8012137,-0.79860395,-0.79763746,-0.79763746,-0.7975408,-0.79744416,-0.79744416,-0.79744416,-0.7973475,-0.79725087,-0.7971542,-0.7971542,-0.79705757,-0.79705757,-0.79725087,-0.7971542,-0.79705757,-0.79705757,-0.7971542,-0.7971542,-0.79725087,-0.79705757,-0.7968642,-0.7968642,-0.7966709,-0.7966709,-0.7967676,-0.7964776,-0.7961877,-0.7959944,-0.7959944,-0.7959944,-0.7958977,-0.7958977,-0.796091,-0.7959944,-0.7959944,-0.7959944,-0.796091,-0.7962843,-0.7962843,-0.7962843,-0.796381,-0.7964776,-0.7964776,-0.7967676,-0.7969609,-0.7966709,-0.796091,-0.7958977,-0.7961877,-0.7962843,-0.7961877,-0.7962843,-0.796381,-0.7961877,-0.796091,-0.7959944,-0.7958977,-0.7957044,-0.7957044,-0.79580104,-0.796091,-0.7966709,-0.7971542,-0.79725087,-0.79725087,-0.79705757,-0.796381,-0.7959944,-0.796091,-0.796091,-0.7962843,-0.7961877,-0.7959944,-0.7961877,-0.7962843,-0.796091,-0.796091,-0.7959944,-0.7959944,-0.7959944,-0.7965743,-0.79763746,-0.79812074,-0.7977341,-0.7968642,-0.79580104,-0.79522115,-0.79541445,-0.79580104,-0.79580104,-0.7957044,-0.79560775,-0.7955111,-0.7955111,-0.7955111,-0.7957044,-0.79580104,-0.7957044,-0.7957044,-0.79560775,-0.7957044,-0.7957044,-0.7957044,-0.7959944,-0.7961877,-0.796091,-0.7958977,-0.79560775,-0.79541445,-0.79541445,-0.7955111,-0.79541445,-0.7955111,-0.7957044,-0.7957044,-0.7957044,-0.79560775,-0.79560775,-0.7959944,-0.7964776,-0.7966709,-0.7966709,-0.7968642,-0.7969609,-0.7967676,-0.7967676,-0.7969609,-0.79705757,-0.79705757,-0.79725087,-0.7971542,-0.79725087,-0.7973475,-0.79725087,-0.79725087,-0.7975408,-0.79783076,-0.79802406,-0.79812074,-0.79821736,-0.79841065,-0.79860395,-0.79841065,-0.79783076,-0.79841065,-0.8001505,-0.80150366,-0.8025668,-0.8019869,-0.7992805,-0.7988939,-0.79783076,-0.7917416,-0.7871989,-0.7870056,-0.7874888,-0.7896152,-0.7936747,-0.7967676,-0.7995705,-0.8019869,-0.8023735,-0.80227685,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.80285674,-0.80266345,-0.80247015,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.80266345,-0.80285674,-0.8025668,-0.80266345,-0.80227685,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80189025,-0.8016003,-0.8025668,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80227685,-0.80218023,-0.8023735,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80247015,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8006338,-0.7964776,-0.79125834,-0.7865223,-0.7853624,-0.79106504,-0.79841065,-0.8006338,-0.8017936,-0.8023735,-0.801407,-0.79870063,-0.79812074,-0.7977341,-0.79744416,-0.79744416,-0.79763746,-0.79744416,-0.79725087,-0.7971542,-0.79705757,-0.79705757,-0.79705757,-0.79705757,-0.7969609,-0.7967676,-0.7968642,-0.79705757,-0.7969609,-0.79705757,-0.7971542,-0.7971542,-0.79705757,-0.7967676,-0.796381,-0.7964776,-0.7967676,-0.7965743,-0.7962843,-0.796381,-0.7961877,-0.7959944,-0.796091,-0.7961877,-0.7959944,-0.7959944,-0.796091,-0.796091,-0.7958977,-0.7959944,-0.7961877,-0.7962843,-0.7962843,-0.796381,-0.796381,-0.7964776,-0.7968642,-0.7968642,-0.796381,-0.7961877,-0.796381,-0.7961877,-0.7962843,-0.7964776,-0.7962843,-0.796091,-0.7959944,-0.7959944,-0.7959944,-0.7958977,-0.7958977,-0.7959944,-0.7959944,-0.7959944,-0.796381,-0.7968642,-0.79705757,-0.7969609,-0.7968642,-0.7966709,-0.7966709,-0.7964776,-0.796381,-0.7967676,-0.7966709,-0.7961877,-0.7959944,-0.796091,-0.796091,-0.7961877,-0.7961877,-0.7965743,-0.7977341,-0.79850733,-0.79821736,-0.7967676,-0.79560775,-0.7953178,-0.79560775,-0.79580104,-0.79580104,-0.7958977,-0.79580104,-0.7955111,-0.7955111,-0.7957044,-0.7958977,-0.7959944,-0.796091,-0.796091,-0.7958977,-0.79580104,-0.79580104,-0.796091,-0.7961877,-0.7961877,-0.796091,-0.7958977,-0.7957044,-0.7955111,-0.79541445,-0.79541445,-0.79541445,-0.7955111,-0.7957044,-0.7957044,-0.79560775,-0.7957044,-0.79580104,-0.79580104,-0.796091,-0.7965743,-0.7968642,-0.7967676,-0.7966709,-0.7967676,-0.7968642,-0.7968642,-0.7967676,-0.7966709,-0.7968642,-0.7971542,-0.7971542,-0.7971542,-0.7973475,-0.79744416,-0.79763746,-0.79792744,-0.79812074,-0.79831403,-0.79821736,-0.79802406,-0.79783076,-0.79792744,-0.79821736,-0.79763746,-0.79783076,-0.7999572,-0.8017936,-0.80266345,-0.8017936,-0.7991839,-0.7991839,-0.79831403,-0.79116166,-0.78603905,-0.78623235,-0.7871022,-0.7897119,-0.7939647,-0.7967676,-0.7992805,-0.80169696,-0.80227685,-0.80218023,-0.80247015,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8025668,-0.80266345,-0.8025668,-0.80247015,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80247015,-0.80247015,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.80218023,-0.80227685,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80247015,-0.80247015,-0.8023735,-0.8023735,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8025668,-0.80247015,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80131036,-0.7971542,-0.7922248,-0.7876822,-0.7854591,-0.7904851,-0.79812074,-0.8007304,-0.80169696,-0.8025668,-0.80150366,-0.7990872,-0.79831403,-0.79802406,-0.79763746,-0.79744416,-0.7973475,-0.79725087,-0.79725087,-0.79725087,-0.7969609,-0.7967676,-0.7969609,-0.79705757,-0.7968642,-0.7967676,-0.7968642,-0.7969609,-0.79705757,-0.79705757,-0.7969609,-0.7968642,-0.7968642,-0.7968642,-0.7967676,-0.7965743,-0.7965743,-0.7964776,-0.7962843,-0.7961877,-0.7959944,-0.7959944,-0.7959944,-0.7959944,-0.7959944,-0.7961877,-0.7961877,-0.7959944,-0.796091,-0.7962843,-0.7961877,-0.7961877,-0.796381,-0.796381,-0.7962843,-0.796381,-0.7967676,-0.7967676,-0.796381,-0.7962843,-0.7964776,-0.7964776,-0.7964776,-0.7965743,-0.7964776,-0.7962843,-0.7962843,-0.7961877,-0.7959944,-0.7959944,-0.7959944,-0.796091,-0.7961877,-0.7962843,-0.7962843,-0.7962843,-0.7964776,-0.7969609,-0.7973475,-0.79744416,-0.79725087,-0.7968642,-0.7965743,-0.7965743,-0.796381,-0.7959944,-0.7959944,-0.7962843,-0.7961877,-0.796091,-0.7968642,-0.79802406,-0.7988939,-0.79860395,-0.7971542,-0.796091,-0.796091,-0.7961877,-0.796091,-0.7958977,-0.79580104,-0.7957044,-0.7957044,-0.7958977,-0.7959944,-0.7959944,-0.7959944,-0.796091,-0.7961877,-0.7961877,-0.7959944,-0.7958977,-0.796091,-0.796091,-0.796091,-0.796381,-0.7962843,-0.7958977,-0.79580104,-0.79580104,-0.79560775,-0.79541445,-0.7955111,-0.7957044,-0.7957044,-0.79560775,-0.7957044,-0.7957044,-0.79560775,-0.79580104,-0.7962843,-0.7964776,-0.796381,-0.7964776,-0.7966709,-0.7966709,-0.7965743,-0.7966709,-0.7967676,-0.7966709,-0.7965743,-0.7968642,-0.79725087,-0.7973475,-0.7975408,-0.79783076,-0.79802406,-0.79821736,-0.79802406,-0.7977341,-0.7975408,-0.79744416,-0.7975408,-0.79792744,-0.79831403,-0.7975408,-0.79792744,-0.8004405,-0.8019869,-0.80266345,-0.80150366,-0.7989906,-0.7994738,-0.79744416,-0.7895186,-0.7854591,-0.7865223,-0.7872955,-0.7897119,-0.7936747,-0.7964776,-0.7993772,-0.80208355,-0.8025668,-0.80218023,-0.8023735,-0.8025668,-0.80247015,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80247015,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80208355,-0.8019869,-0.8025668,-0.80247015,-0.8025668,-0.80285674,-0.80266345,-0.80285674,-0.80285674,-0.8025668,-0.8023735,-0.80247015,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8025668,-0.8027601,-0.80218023,-0.79850733,-0.7933847,-0.78845537,-0.7858457,-0.7902918,-0.79792744,-0.8007304,-0.8016003,-0.80218023,-0.80218023,-0.7993772,-0.79841065,-0.79831403,-0.7977341,-0.79725087,-0.79744416,-0.7973475,-0.79725087,-0.7971542,-0.7968642,-0.7968642,-0.7969609,-0.7968642,-0.7967676,-0.7965743,-0.7964776,-0.7965743,-0.7966709,-0.7967676,-0.7968642,-0.7966709,-0.7966709,-0.7967676,-0.7965743,-0.7964776,-0.7964776,-0.796381,-0.7962843,-0.7959944,-0.7958977,-0.7959944,-0.7959944,-0.7959944,-0.796091,-0.796091,-0.7959944,-0.7959944,-0.7962843,-0.7962843,-0.7961877,-0.796381,-0.7962843,-0.7961877,-0.796381,-0.7965743,-0.7964776,-0.7967676,-0.7966709,-0.7962843,-0.796381,-0.7965743,-0.7964776,-0.796381,-0.7961877,-0.796091,-0.7961877,-0.7961877,-0.7961877,-0.796091,-0.7961877,-0.796091,-0.7958977,-0.7959944,-0.7961877,-0.796381,-0.7962843,-0.7962843,-0.79705757,-0.79783076,-0.7975408,-0.79705757,-0.7968642,-0.7965743,-0.796381,-0.7964776,-0.7965743,-0.7966709,-0.7968642,-0.7975408,-0.7987973,-0.7992805,-0.79860395,-0.79744416,-0.7964776,-0.796381,-0.7962843,-0.796091,-0.7959944,-0.7958977,-0.7958977,-0.796091,-0.7959944,-0.796091,-0.7962843,-0.796381,-0.796381,-0.796381,-0.796381,-0.7961877,-0.7959944,-0.7961877,-0.7962843,-0.7962843,-0.796381,-0.7964776,-0.7962843,-0.796091,-0.7959944,-0.79580104,-0.79560775,-0.7955111,-0.79560775,-0.79560775,-0.79560775,-0.7957044,-0.7957044,-0.7957044,-0.79580104,-0.7959944,-0.796091,-0.796381,-0.7964776,-0.7967676,-0.79705757,-0.79705757,-0.7969609,-0.7968642,-0.7969609,-0.7969609,-0.7968642,-0.79705757,-0.7973475,-0.79744416,-0.7977341,-0.79812074,-0.79812074,-0.7977341,-0.7973475,-0.7971542,-0.79744416,-0.79763746,-0.7973475,-0.7975408,-0.79802406,-0.79744416,-0.79821736,-0.8009237,-0.8019869,-0.8023735,-0.8016003,-0.7989906,-0.7988939,-0.7968642,-0.7893253,-0.7857491,-0.7870056,-0.7873922,-0.7894219,-0.7936747,-0.7967676,-0.7997638,-0.80247015,-0.8025668,-0.80208355,-0.80227685,-0.80247015,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.80247015,-0.8025668,-0.80266345,-0.8025668,-0.80266345,-0.80285674,-0.80266345,-0.8023735,-0.80218023,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80189025,-0.80131036,-0.80266345,-0.80247015,-0.80266345,-0.8023735,-0.8025668,-0.8027601,-0.80266345,-0.80247015,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8025668,-0.80247015,-0.8025668,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.80247015,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80227685,-0.7991839,-0.7945446,-0.7894219,-0.7857491,-0.7897119,-0.79763746,-0.8007304,-0.80150366,-0.8025668,-0.80227685,-0.79986054,-0.79850733,-0.79812074,-0.79763746,-0.79725087,-0.7973475,-0.79725087,-0.7971542,-0.7971542,-0.7969609,-0.79705757,-0.79705757,-0.7968642,-0.7966709,-0.7964776,-0.796381,-0.7965743,-0.7965743,-0.7964776,-0.7965743,-0.7964776,-0.7964776,-0.7964776,-0.796381,-0.796381,-0.7964776,-0.7962843,-0.7961877,-0.796091,-0.796091,-0.796091,-0.796091,-0.7959944,-0.7959944,-0.7958977,-0.796091,-0.7961877,-0.7961877,-0.7961877,-0.7962843,-0.7962843,-0.7962843,-0.7962843,-0.7964776,-0.7965743,-0.7965743,-0.7966709,-0.7966709,-0.7965743,-0.7965743,-0.7965743,-0.796381,-0.796381,-0.796381,-0.796381,-0.7962843,-0.7959944,-0.7959944,-0.7959944,-0.79580104,-0.7958977,-0.796091,-0.7959944,-0.7958977,-0.7959944,-0.7962843,-0.7962843,-0.7961877,-0.7969609,-0.79802406,-0.79802406,-0.79763746,-0.7977341,-0.7975408,-0.7971542,-0.7971542,-0.7975408,-0.79802406,-0.7988939,-0.7991839,-0.79860395,-0.79792744,-0.79763746,-0.7973475,-0.7964776,-0.7959944,-0.796091,-0.7959944,-0.79580104,-0.7958977,-0.7962843,-0.7962843,-0.7961877,-0.7961877,-0.796381,-0.7965743,-0.7966709,-0.7964776,-0.796381,-0.796381,-0.7962843,-0.796381,-0.796381,-0.7962843,-0.7962843,-0.7961877,-0.796091,-0.7962843,-0.796091,-0.79580104,-0.7957044,-0.79560775,-0.79560775,-0.79580104,-0.79580104,-0.7955111,-0.79560775,-0.7958977,-0.7961877,-0.7961877,-0.7964776,-0.7967676,-0.7967676,-0.7965743,-0.7968642,-0.7969609,-0.7968642,-0.7971542,-0.79744416,-0.7973475,-0.7973475,-0.79763746,-0.79792744,-0.79792744,-0.79783076,-0.79763746,-0.7975408,-0.79763746,-0.79744416,-0.7973475,-0.7973475,-0.7971542,-0.79763746,-0.79792744,-0.7964776,-0.7975408,-0.8012137,-0.80218023,-0.80218023,-0.80189025,-0.7991839,-0.79860395,-0.7968642,-0.7900985,-0.7865223,-0.7871989,-0.7874888,-0.7897119,-0.79357797,-0.7966709,-0.7999572,-0.80227685,-0.8023735,-0.8019869,-0.80218023,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.80247015,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80247015,-0.80247015,-0.8023735,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80150366,-0.801117,-0.8023735,-0.8023735,-0.8025668,-0.8027601,-0.80247015,-0.8023735,-0.80247015,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.8023735,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80247015,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.8023735,-0.8023735,-0.8006338,-0.7969609,-0.79164493,-0.78613573,-0.7881654,-0.7965743,-0.8007304,-0.801117,-0.8025668,-0.8025668,-0.80024713,-0.79860395,-0.79812074,-0.79783076,-0.79763746,-0.7975408,-0.79725087,-0.79725087,-0.79744416,-0.7973475,-0.79705757,-0.7969609,-0.7969609,-0.7967676,-0.7965743,-0.7966709,-0.7967676,-0.7966709,-0.7965743,-0.7964776,-0.7962843,-0.7962843,-0.7962843,-0.7962843,-0.796381,-0.7962843,-0.7959944,-0.7958977,-0.7959944,-0.796091,-0.7958977,-0.7958977,-0.7959944,-0.796091,-0.796091,-0.7959944,-0.7958977,-0.7959944,-0.7961877,-0.796381,-0.796381,-0.7964776,-0.7965743,-0.7964776,-0.7962843,-0.7964776,-0.796381,-0.7962843,-0.7964776,-0.7965743,-0.7965743,-0.7964776,-0.7965743,-0.7965743,-0.7964776,-0.7962843,-0.796091,-0.7959944,-0.79580104,-0.79580104,-0.796091,-0.7961877,-0.7959944,-0.7959944,-0.7959944,-0.7961877,-0.7962843,-0.7958977,-0.7961877,-0.79763746,-0.79831403,-0.79841065,-0.79831403,-0.79802406,-0.7977341,-0.79725087,-0.79802406,-0.7987973,-0.79831403,-0.79783076,-0.7977341,-0.79792744,-0.79763746,-0.7969609,-0.7964776,-0.796091,-0.7959944,-0.7959944,-0.796091,-0.7961877,-0.7962843,-0.7961877,-0.7961877,-0.7961877,-0.7962843,-0.796381,-0.7965743,-0.7967676,-0.7967676,-0.7965743,-0.7965743,-0.7965743,-0.7962843,-0.7961877,-0.796381,-0.7965743,-0.7966709,-0.7964776,-0.7959944,-0.7957044,-0.7957044,-0.7957044,-0.7957044,-0.7957044,-0.7957044,-0.7957044,-0.7957044,-0.79580104,-0.7961877,-0.796381,-0.796381,-0.7966709,-0.7968642,-0.7969609,-0.7973475,-0.79744416,-0.79744416,-0.79763746,-0.7977341,-0.79744416,-0.79744416,-0.7977341,-0.7977341,-0.7975408,-0.79744416,-0.7975408,-0.7975408,-0.7975408,-0.79744416,-0.7973475,-0.7975408,-0.7973475,-0.79763746,-0.79821736,-0.7969609,-0.7973475,-0.8008271,-0.8019869,-0.80218023,-0.80131036,-0.7987973,-0.7987973,-0.7965743,-0.7897119,-0.7865223,-0.7871022,-0.7874888,-0.79000187,-0.7936747,-0.7968642,-0.80005383,-0.80208355,-0.8023735,-0.80218023,-0.80227685,-0.80247015,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80227685,-0.8023735,-0.80189025,-0.8017936,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80189025,-0.8017936,-0.8027601,-0.8027601,-0.8025668,-0.80227685,-0.8023735,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80247015,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80247015,-0.8025668,-0.8017936,-0.79841065,-0.79357797,-0.7876822,-0.7873922,-0.79522115,-0.8006338,-0.8009237,-0.8023735,-0.8025668,-0.8007304,-0.7987973,-0.79831403,-0.79812074,-0.7977341,-0.79763746,-0.7977341,-0.7975408,-0.7973475,-0.79725087,-0.7971542,-0.79705757,-0.7969609,-0.7967676,-0.7966709,-0.7965743,-0.7966709,-0.7968642,-0.7969609,-0.7966709,-0.7965743,-0.7964776,-0.7962843,-0.7959944,-0.7959944,-0.7961877,-0.796091,-0.79580104,-0.7959944,-0.796381,-0.7961877,-0.7958977,-0.7959944,-0.7961877,-0.7958977,-0.79560775,-0.79560775,-0.79580104,-0.7958977,-0.7961877,-0.7962843,-0.796091,-0.7962843,-0.7964776,-0.796091,-0.796091,-0.796381,-0.796381,-0.7962843,-0.796381,-0.7964776,-0.7965743,-0.7964776,-0.7962843,-0.796091,-0.7959944,-0.7959944,-0.79580104,-0.7957044,-0.7957044,-0.7957044,-0.79560775,-0.7955111,-0.79560775,-0.7958977,-0.7959944,-0.7959944,-0.7958977,-0.796091,-0.7968642,-0.79783076,-0.7987973,-0.7987973,-0.79783076,-0.79725087,-0.7968642,-0.79850733,-0.79841065,-0.7977341,-0.7967676,-0.79705757,-0.79744416,-0.7967676,-0.7962843,-0.7961877,-0.7958977,-0.7958977,-0.7958977,-0.79580104,-0.7959944,-0.796091,-0.7961877,-0.796091,-0.7961877,-0.7962843,-0.796381,-0.796381,-0.7965743,-0.7967676,-0.7967676,-0.796381,-0.7962843,-0.7964776,-0.7964776,-0.7966709,-0.7968642,-0.7966709,-0.796381,-0.7959944,-0.79580104,-0.7957044,-0.7955111,-0.7955111,-0.7958977,-0.7958977,-0.79560775,-0.7955111,-0.79580104,-0.7961877,-0.7966709,-0.79705757,-0.79705757,-0.7971542,-0.79744416,-0.7971542,-0.7967676,-0.7967676,-0.7969609,-0.7971542,-0.7973475,-0.7975408,-0.79744416,-0.7973475,-0.79744416,-0.7975408,-0.7973475,-0.7973475,-0.79744416,-0.7975408,-0.7975408,-0.79744416,-0.79744416,-0.7977341,-0.79821736,-0.79802406,-0.7992805,-0.801407,-0.80208355,-0.8023735,-0.8010204,-0.7989906,-0.7995705,-0.7959944,-0.78845537,-0.7865223,-0.7871989,-0.7872955,-0.7902918,-0.79425466,-0.7968642,-0.7997638,-0.80208355,-0.80227685,-0.80218023,-0.80227685,-0.80227685,-0.80247015,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80247015,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80247015,-0.8023735,-0.80247015,-0.80189025,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8019869,-0.8019869,-0.8023735,-0.80247015,-0.80247015,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80247015,-0.80285674,-0.80247015,-0.8025668,-0.80247015,-0.8025668,-0.80227685,-0.79986054,-0.7953178,-0.7892286,-0.7871989,-0.79357797,-0.80024713,-0.80131036,-0.8017936,-0.80266345,-0.801407,-0.7990872,-0.79792744,-0.7977341,-0.79744416,-0.7973475,-0.7977341,-0.7977341,-0.7973475,-0.79725087,-0.79725087,-0.79725087,-0.79725087,-0.79705757,-0.79705757,-0.7969609,-0.7968642,-0.7968642,-0.7968642,-0.7968642,-0.7967676,-0.7965743,-0.7964776,-0.796381,-0.796381,-0.796381,-0.7961877,-0.7958977,-0.79580104,-0.796091,-0.796091,-0.7959944,-0.7959944,-0.796091,-0.7959944,-0.7958977,-0.7958977,-0.79580104,-0.79580104,-0.7959944,-0.7962843,-0.7962843,-0.7961877,-0.7964776,-0.7966709,-0.7964776,-0.796381,-0.796381,-0.796381,-0.796381,-0.7964776,-0.7964776,-0.7959944,-0.7958977,-0.796091,-0.7958977,-0.79580104,-0.79580104,-0.7957044,-0.7957044,-0.79560775,-0.79560775,-0.7955111,-0.7955111,-0.79560775,-0.79580104,-0.796091,-0.796091,-0.7962843,-0.7967676,-0.79744416,-0.7988939,-0.7989906,-0.7975408,-0.79725087,-0.7971542,-0.79841065,-0.79763746,-0.7966709,-0.7945446,-0.7955111,-0.7966709,-0.7962843,-0.7961877,-0.7961877,-0.7959944,-0.7959944,-0.7959944,-0.7958977,-0.79580104,-0.7958977,-0.7961877,-0.7961877,-0.796091,-0.796091,-0.796091,-0.7961877,-0.796381,-0.7964776,-0.796381,-0.7964776,-0.7965743,-0.796381,-0.7968642,-0.79763746,-0.7973475,-0.7967676,-0.7966709,-0.7962843,-0.7957044,-0.7955111,-0.7955111,-0.79560775,-0.7957044,-0.79580104,-0.79580104,-0.79560775,-0.79580104,-0.7962843,-0.7966709,-0.7969609,-0.7968642,-0.7964776,-0.7961877,-0.7962843,-0.7965743,-0.7967676,-0.7969609,-0.7971542,-0.79725087,-0.7971542,-0.79744416,-0.7975408,-0.7973475,-0.7971542,-0.7973475,-0.79725087,-0.79705757,-0.79725087,-0.7973475,-0.79744416,-0.79763746,-0.79783076,-0.7977341,-0.79812074,-0.8003438,-0.80208355,-0.8019869,-0.80227685,-0.8008271,-0.7992805,-0.80005383,-0.7955111,-0.7875855,-0.78603905,-0.7868123,-0.7869089,-0.7900985,-0.7940613,-0.79705757,-0.80024713,-0.80208355,-0.80227685,-0.80227685,-0.8023735,-0.80247015,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80247015,-0.8027601,-0.8025668,-0.80285674,-0.80285674,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.80247015,-0.80189025,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80227685,-0.80208355,-0.80247015,-0.80247015,-0.8025668,-0.80266345,-0.80247015,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80247015,-0.80227685,-0.8023735,-0.8023735,-0.8005371,-0.7971542,-0.7918382,-0.7874888,-0.79145163,-0.7991839,-0.8016003,-0.801407,-0.8023735,-0.80208355,-0.7996672,-0.79763746,-0.7975408,-0.7977341,-0.7973475,-0.7973475,-0.79763746,-0.7975408,-0.7973475,-0.7973475,-0.79725087,-0.79705757,-0.79705757,-0.7971542,-0.7971542,-0.79705757,-0.7969609,-0.7967676,-0.7966709,-0.7967676,-0.7967676,-0.7966709,-0.7965743,-0.7967676,-0.7966709,-0.7962843,-0.7958977,-0.7958977,-0.7962843,-0.7961877,-0.7959944,-0.796091,-0.7959944,-0.7958977,-0.7958977,-0.79580104,-0.7957044,-0.79580104,-0.796091,-0.7962843,-0.7965743,-0.7965743,-0.7967676,-0.7968642,-0.7966709,-0.7962843,-0.7961877,-0.7961877,-0.796381,-0.7964776,-0.7961877,-0.7959944,-0.7958977,-0.79580104,-0.79580104,-0.7957044,-0.79560775,-0.7955111,-0.7957044,-0.79580104,-0.79560775,-0.79541445,-0.7955111,-0.79541445,-0.7955111,-0.796091,-0.7961877,-0.7961877,-0.7965743,-0.7971542,-0.79870063,-0.79860395,-0.79744416,-0.79744416,-0.7973475,-0.79850733,-0.7973475,-0.7955111,-0.7945446,-0.796381,-0.7965743,-0.79580104,-0.7961877,-0.7964776,-0.796091,-0.7958977,-0.7958977,-0.796091,-0.796091,-0.7958977,-0.7958977,-0.79580104,-0.7959944,-0.7961877,-0.7961877,-0.7961877,-0.7962843,-0.7962843,-0.796381,-0.7964776,-0.796381,-0.7969609,-0.7977341,-0.79763746,-0.79725087,-0.79705757,-0.7967676,-0.7961877,-0.7957044,-0.7957044,-0.79580104,-0.7957044,-0.79580104,-0.7958977,-0.79580104,-0.79580104,-0.7959944,-0.796091,-0.796381,-0.7967676,-0.7967676,-0.7966709,-0.7968642,-0.7971542,-0.7971542,-0.7973475,-0.79763746,-0.79744416,-0.7971542,-0.7971542,-0.7971542,-0.7971542,-0.7973475,-0.7971542,-0.7971542,-0.7973475,-0.79744416,-0.7975408,-0.79744416,-0.79744416,-0.79763746,-0.79783076,-0.7975408,-0.79812074,-0.8003438,-0.80189025,-0.80227685,-0.80247015,-0.8004405,-0.7992805,-0.7996672,-0.79425466,-0.7873922,-0.78661895,-0.7869089,-0.7874888,-0.79077506,-0.794158,-0.79744416,-0.8007304,-0.80218023,-0.80218023,-0.80218023,-0.80227685,-0.8023735,-0.80247015,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80247015,-0.80247015,-0.8025668,-0.8025668,-0.80247015,-0.80227685,-0.80227685,-0.80247015,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8023735,-0.8023735,-0.8025668,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80247015,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80208355,-0.8017936,-0.80218023,-0.80266345,-0.8008271,-0.7975408,-0.7926115,-0.7871022,-0.7890353,-0.7975408,-0.80150366,-0.80131036,-0.80227685,-0.8023735,-0.80024713,-0.79783076,-0.7975408,-0.7977341,-0.7973475,-0.79725087,-0.7973475,-0.7973475,-0.7973475,-0.7973475,-0.7971542,-0.7969609,-0.7971542,-0.7971542,-0.7967676,-0.7968642,-0.7971542,-0.7969609,-0.7967676,-0.7968642,-0.7968642,-0.7965743,-0.7965743,-0.7966709,-0.796381,-0.7962843,-0.796381,-0.796091,-0.7958977,-0.796091,-0.7962843,-0.7961877,-0.7959944,-0.7959944,-0.7959944,-0.7958977,-0.7958977,-0.796091,-0.7961877,-0.7962843,-0.7965743,-0.7965743,-0.7966709,-0.7966709,-0.7967676,-0.7967676,-0.7964776,-0.796381,-0.7964776,-0.7962843,-0.7958977,-0.79580104,-0.79580104,-0.79580104,-0.79580104,-0.79580104,-0.79560775,-0.7957044,-0.7958977,-0.79580104,-0.7955111,-0.79560775,-0.79580104,-0.7955111,-0.7955111,-0.7958977,-0.7958977,-0.7962843,-0.7967676,-0.7973475,-0.7987973,-0.79821736,-0.7967676,-0.7965743,-0.7971542,-0.79841065,-0.7966709,-0.79541445,-0.7962843,-0.79725087,-0.7964776,-0.79580104,-0.7959944,-0.7959944,-0.7959944,-0.7959944,-0.79580104,-0.79580104,-0.796091,-0.7961877,-0.7958977,-0.79560775,-0.79560775,-0.7957044,-0.7959944,-0.7961877,-0.796091,-0.796091,-0.7961877,-0.796091,-0.7968642,-0.79792744,-0.7977341,-0.7971542,-0.79725087,-0.7971542,-0.7966709,-0.7962843,-0.7958977,-0.7957044,-0.79560775,-0.7957044,-0.7959944,-0.7958977,-0.7957044,-0.79580104,-0.7958977,-0.7959944,-0.7964776,-0.7968642,-0.7967676,-0.7969609,-0.79725087,-0.79705757,-0.7967676,-0.7968642,-0.7971542,-0.79705757,-0.7969609,-0.79705757,-0.7969609,-0.7969609,-0.7971542,-0.79705757,-0.79705757,-0.79725087,-0.79744416,-0.7973475,-0.7973475,-0.7975408,-0.7977341,-0.79783076,-0.7975408,-0.79792744,-0.8003438,-0.80208355,-0.8023735,-0.80218023,-0.80024713,-0.79986054,-0.7990872,-0.7926115,-0.7875855,-0.7878755,-0.7877788,-0.78855205,-0.79135495,-0.7940613,-0.7973475,-0.8005371,-0.8019869,-0.80218023,-0.80208355,-0.80227685,-0.8023735,-0.8023735,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8025668,-0.80247015,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.8023735,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80169696,-0.8016003,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80247015,-0.8025668,-0.8027601,-0.8023735,-0.80208355,-0.80169696,-0.8019869,-0.80247015,-0.80131036,-0.79841065,-0.79348135,-0.7872955,-0.78845537,-0.7968642,-0.801407,-0.8012137,-0.8019869,-0.80247015,-0.8006338,-0.79821736,-0.79744416,-0.79744416,-0.7971542,-0.79705757,-0.7971542,-0.79705757,-0.7971542,-0.79725087,-0.79725087,-0.79725087,-0.79705757,-0.7968642,-0.7968642,-0.7968642,-0.7969609,-0.7969609,-0.7967676,-0.7967676,-0.7967676,-0.7964776,-0.796381,-0.7965743,-0.7964776,-0.7964776,-0.7962843,-0.796091,-0.796091,-0.7959944,-0.7959944,-0.7961877,-0.7962843,-0.796091,-0.7958977,-0.7959944,-0.796091,-0.796091,-0.796091,-0.7964776,-0.7968642,-0.7969609,-0.7968642,-0.7967676,-0.7966709,-0.7965743,-0.7966709,-0.7967676,-0.7964776,-0.7961877,-0.7959944,-0.7959944,-0.796091,-0.7959944,-0.7958977,-0.7958977,-0.796091,-0.7961877,-0.796091,-0.7959944,-0.7958977,-0.7958977,-0.7959944,-0.79580104,-0.79580104,-0.7959944,-0.7957044,-0.7959944,-0.7969609,-0.79802406,-0.79812074,-0.796381,-0.7958977,-0.7959944,-0.79705757,-0.7977341,-0.796091,-0.7955111,-0.7967676,-0.7965743,-0.7959944,-0.7959944,-0.7961877,-0.7959944,-0.7959944,-0.79580104,-0.7955111,-0.7955111,-0.7957044,-0.7958977,-0.79560775,-0.7953178,-0.79541445,-0.7955111,-0.7955111,-0.79560775,-0.79580104,-0.7958977,-0.796381,-0.7973475,-0.79802406,-0.7977341,-0.79744416,-0.7975408,-0.79744416,-0.79705757,-0.7966709,-0.796381,-0.7958977,-0.7957044,-0.79580104,-0.7958977,-0.796091,-0.796091,-0.79580104,-0.79560775,-0.7958977,-0.7962843,-0.7962843,-0.796381,-0.7964776,-0.7964776,-0.796381,-0.7967676,-0.7969609,-0.7966709,-0.7964776,-0.7967676,-0.7969609,-0.7968642,-0.7967676,-0.79705757,-0.7971542,-0.79705757,-0.79725087,-0.7973475,-0.79725087,-0.79744416,-0.7975408,-0.7975408,-0.79763746,-0.79783076,-0.7975408,-0.79812074,-0.8004405,-0.8019869,-0.80218023,-0.8017936,-0.80024713,-0.7999572,-0.79870063,-0.7919349,-0.7871989,-0.7875855,-0.7874888,-0.7879721,-0.79116166,-0.7943513,-0.7973475,-0.8005371,-0.80227685,-0.80218023,-0.8019869,-0.80227685,-0.80247015,-0.80247015,-0.8025668,-0.80247015,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8025668,-0.8025668,-0.80285674,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80247015,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.8023735,-0.8023735,-0.80266345,-0.80189025,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8012137,-0.8007304,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8023735,-0.80247015,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80218023,-0.8017936,-0.8019869,-0.80247015,-0.8012137,-0.79850733,-0.79425466,-0.7875855,-0.7865223,-0.7947379,-0.8010204,-0.80131036,-0.8017936,-0.80266345,-0.80150366,-0.79850733,-0.7973475,-0.79744416,-0.79725087,-0.79705757,-0.7969609,-0.7969609,-0.79705757,-0.7969609,-0.7968642,-0.7967676,-0.7967676,-0.7966709,-0.7966709,-0.7966709,-0.7967676,-0.7967676,-0.7966709,-0.7966709,-0.7966709,-0.7964776,-0.7964776,-0.7964776,-0.796381,-0.796381,-0.7961877,-0.796091,-0.7961877,-0.7962843,-0.7961877,-0.796381,-0.7964776,-0.796091,-0.7958977,-0.7959944,-0.796091,-0.7961877,-0.7961877,-0.7962843,-0.7967676,-0.7971542,-0.79725087,-0.7969609,-0.796381,-0.7962843,-0.7964776,-0.7965743,-0.7962843,-0.796091,-0.796091,-0.7961877,-0.796091,-0.796091,-0.7961877,-0.796091,-0.796091,-0.796091,-0.796091,-0.796091,-0.7959944,-0.7958977,-0.7958977,-0.7958977,-0.796091,-0.7961877,-0.7958977,-0.7959944,-0.7968642,-0.79783076,-0.7965743,-0.7940613,-0.79512453,-0.79560775,-0.7967676,-0.7965743,-0.7953178,-0.7959944,-0.79725087,-0.7965743,-0.796091,-0.7964776,-0.7964776,-0.7959944,-0.79580104,-0.7957044,-0.79560775,-0.79560775,-0.79560775,-0.79560775,-0.79541445,-0.79541445,-0.7955111,-0.79541445,-0.79541445,-0.7957044,-0.796381,-0.79705757,-0.7977341,-0.7977341,-0.79725087,-0.79725087,-0.7973475,-0.7973475,-0.7973475,-0.7969609,-0.7965743,-0.7962843,-0.7958977,-0.7955111,-0.79560775,-0.7958977,-0.7961877,-0.7959944,-0.7957044,-0.7957044,-0.7958977,-0.796091,-0.7962843,-0.7964776,-0.7964776,-0.7965743,-0.796381,-0.7962843,-0.7965743,-0.7967676,-0.7964776,-0.7965743,-0.7968642,-0.7969609,-0.79705757,-0.7971542,-0.79725087,-0.79744416,-0.7975408,-0.7973475,-0.79744416,-0.7975408,-0.79744416,-0.79744416,-0.7975408,-0.79783076,-0.79744416,-0.79812074,-0.8008271,-0.80247015,-0.8023735,-0.80169696,-0.8001505,-0.8001505,-0.79812074,-0.79096836,-0.7870056,-0.7874888,-0.78661895,-0.7877788,-0.7921282,-0.79522115,-0.79783076,-0.8009237,-0.8023735,-0.80218023,-0.8019869,-0.80218023,-0.80247015,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8023735,-0.80227685,-0.80227685,-0.80169696,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80218023,-0.80189025,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80247015,-0.80247015,-0.8027601,-0.80285674,-0.80266345,-0.80285674,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8025668,-0.80247015,-0.80266345,-0.8027601,-0.8023735,-0.80189025,-0.80227685,-0.80266345,-0.801117,-0.79812074,-0.79444796,-0.7881654,-0.7852658,-0.7923215,-0.80024713,-0.8012137,-0.801407,-0.80266345,-0.80189025,-0.7989906,-0.7975408,-0.79763746,-0.79744416,-0.7971542,-0.79725087,-0.79705757,-0.7968642,-0.7967676,-0.7966709,-0.7966709,-0.7965743,-0.7964776,-0.796381,-0.796381,-0.7964776,-0.796381,-0.7962843,-0.7961877,-0.7962843,-0.796381,-0.7962843,-0.796381,-0.796381,-0.7961877,-0.7961877,-0.7959944,-0.7958977,-0.796091,-0.7961877,-0.7961877,-0.7961877,-0.7959944,-0.7959944,-0.7959944,-0.7958977,-0.796091,-0.7962843,-0.7962843,-0.7965743,-0.7968642,-0.7968642,-0.7969609,-0.7968642,-0.796381,-0.7961877,-0.7962843,-0.7959944,-0.7959944,-0.796091,-0.796091,-0.796091,-0.7962843,-0.796381,-0.796091,-0.79580104,-0.796091,-0.7962843,-0.7962843,-0.7961877,-0.7959944,-0.796091,-0.7961877,-0.7962843,-0.7964776,-0.796091,-0.7958977,-0.7966709,-0.7977341,-0.796381,-0.7939647,-0.7949312,-0.7953178,-0.796091,-0.79580104,-0.7957044,-0.7966709,-0.7968642,-0.7966709,-0.7962843,-0.7962843,-0.7961877,-0.79580104,-0.79580104,-0.7958977,-0.79580104,-0.79560775,-0.7957044,-0.79580104,-0.7957044,-0.7955111,-0.79541445,-0.7953178,-0.79541445,-0.7959944,-0.7966709,-0.79725087,-0.79744416,-0.79725087,-0.7971542,-0.7971542,-0.7973475,-0.79744416,-0.79725087,-0.7968642,-0.7965743,-0.7961877,-0.79580104,-0.79560775,-0.79560775,-0.79580104,-0.7959944,-0.7958977,-0.79580104,-0.79580104,-0.7957044,-0.79580104,-0.7961877,-0.796381,-0.7962843,-0.7962843,-0.7961877,-0.7959944,-0.7962843,-0.7966709,-0.7968642,-0.79705757,-0.7971542,-0.79705757,-0.7969609,-0.7971542,-0.7973475,-0.7975408,-0.79744416,-0.7973475,-0.79744416,-0.79763746,-0.79763746,-0.7975408,-0.7975408,-0.7977341,-0.7977341,-0.79860395,-0.8010204,-0.8023735,-0.8023735,-0.8012137,-0.79986054,-0.80024713,-0.7971542,-0.7895186,-0.78642565,-0.7871022,-0.7869089,-0.78874534,-0.7921282,-0.79483455,-0.79812074,-0.8009237,-0.80218023,-0.80227685,-0.80189025,-0.8019869,-0.80247015,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80247015,-0.8025668,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8023735,-0.80247015,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80208355,-0.80208355,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8025668,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80247015,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80208355,-0.80218023,-0.8023735,-0.801407,-0.79831403,-0.7945446,-0.7898086,-0.78642565,-0.79125834,-0.7993772,-0.80150366,-0.8012137,-0.80266345,-0.8025668,-0.80005383,-0.79802406,-0.7975408,-0.7975408,-0.7971542,-0.79705757,-0.79705757,-0.7969609,-0.7967676,-0.7966709,-0.7966709,-0.7966709,-0.7964776,-0.7964776,-0.7964776,-0.796381,-0.796381,-0.7962843,-0.796091,-0.796091,-0.796381,-0.7962843,-0.7961877,-0.796381,-0.7961877,-0.79580104,-0.7959944,-0.7964776,-0.7964776,-0.7962843,-0.7962843,-0.7962843,-0.7959944,-0.7959944,-0.7959944,-0.7958977,-0.7959944,-0.796091,-0.7962843,-0.7967676,-0.7969609,-0.7967676,-0.7968642,-0.7967676,-0.796381,-0.7961877,-0.796091,-0.796091,-0.7961877,-0.7962843,-0.7962843,-0.7962843,-0.7964776,-0.7965743,-0.7962843,-0.7959944,-0.796091,-0.7962843,-0.7961877,-0.7961877,-0.7964776,-0.7965743,-0.7962843,-0.7961877,-0.7964776,-0.7961877,-0.7953178,-0.7965743,-0.79792744,-0.7953178,-0.7933847,-0.79512453,-0.79502785,-0.79541445,-0.7953178,-0.7959944,-0.79705757,-0.7969609,-0.79705757,-0.7967676,-0.796381,-0.7962843,-0.7961877,-0.796091,-0.7958977,-0.7957044,-0.79580104,-0.7958977,-0.79580104,-0.79560775,-0.7957044,-0.7955111,-0.79541445,-0.79560775,-0.7958977,-0.7962843,-0.7967676,-0.7971542,-0.79744416,-0.79744416,-0.79725087,-0.79744416,-0.79744416,-0.7973475,-0.7973475,-0.7968642,-0.7959944,-0.7957044,-0.7958977,-0.7958977,-0.7958977,-0.7959944,-0.796091,-0.7959944,-0.79580104,-0.7958977,-0.7961877,-0.7962843,-0.7962843,-0.796381,-0.7964776,-0.7964776,-0.7962843,-0.7961877,-0.7966709,-0.79725087,-0.79725087,-0.79705757,-0.79725087,-0.7973475,-0.79744416,-0.7975408,-0.7973475,-0.7973475,-0.7975408,-0.79763746,-0.7975408,-0.7975408,-0.79763746,-0.79763746,-0.79763746,-0.7975408,-0.7989906,-0.80131036,-0.80227685,-0.80227685,-0.8012137,-0.7999572,-0.80005383,-0.7958977,-0.7883587,-0.78623235,-0.7871989,-0.7874888,-0.789132,-0.7919349,-0.79512453,-0.79841065,-0.8010204,-0.80227685,-0.8023735,-0.80208355,-0.80218023,-0.8023735,-0.80247015,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8023735,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8025668,-0.80247015,-0.80247015,-0.8027601,-0.80266345,-0.80208355,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8019869,-0.8016003,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80247015,-0.8023735,-0.80150366,-0.79860395,-0.7943513,-0.7895186,-0.7856524,-0.78874534,-0.7969609,-0.8010204,-0.8010204,-0.80218023,-0.8025668,-0.80150366,-0.79870063,-0.7973475,-0.7975408,-0.79744416,-0.7971542,-0.79705757,-0.79705757,-0.79705757,-0.7969609,-0.7966709,-0.7966709,-0.7966709,-0.7965743,-0.7964776,-0.7964776,-0.796381,-0.7964776,-0.796381,-0.7961877,-0.7962843,-0.7962843,-0.7962843,-0.7962843,-0.796091,-0.7958977,-0.7959944,-0.796091,-0.7959944,-0.7959944,-0.7962843,-0.796381,-0.7961877,-0.796091,-0.796091,-0.796091,-0.7961877,-0.796091,-0.7962843,-0.7967676,-0.7969609,-0.7969609,-0.7968642,-0.7968642,-0.7965743,-0.7962843,-0.7962843,-0.7961877,-0.796091,-0.7962843,-0.7962843,-0.7964776,-0.7966709,-0.7964776,-0.7961877,-0.796091,-0.7961877,-0.796381,-0.7962843,-0.796381,-0.7967676,-0.7967676,-0.7966709,-0.7964776,-0.7964776,-0.7967676,-0.7959944,-0.7955111,-0.7961877,-0.79483455,-0.793868,-0.79512453,-0.79502785,-0.79502785,-0.79483455,-0.796091,-0.7977341,-0.79783076,-0.79744416,-0.79705757,-0.7965743,-0.7962843,-0.7961877,-0.796091,-0.796091,-0.796091,-0.7961877,-0.796091,-0.7958977,-0.7958977,-0.7958977,-0.79560775,-0.79560775,-0.7958977,-0.7961877,-0.796381,-0.7967676,-0.7971542,-0.79705757,-0.7969609,-0.7971542,-0.79725087,-0.7971542,-0.79744416,-0.79763746,-0.7967676,-0.7958977,-0.79580104,-0.7958977,-0.7958977,-0.7959944,-0.796091,-0.7959944,-0.7958977,-0.7958977,-0.7959944,-0.7962843,-0.796381,-0.7962843,-0.7962843,-0.7965743,-0.7964776,-0.7962843,-0.7966709,-0.7969609,-0.79705757,-0.79725087,-0.79744416,-0.79744416,-0.7973475,-0.79744416,-0.79744416,-0.79744416,-0.7975408,-0.7975408,-0.79763746,-0.79763746,-0.7975408,-0.79744416,-0.79763746,-0.79783076,-0.79763746,-0.7991839,-0.80169696,-0.80227685,-0.80189025,-0.8008271,-0.80005383,-0.8001505,-0.79541445,-0.78826207,-0.7865223,-0.7873922,-0.7874888,-0.7889387,-0.7919349,-0.7955111,-0.7989906,-0.80150366,-0.80227685,-0.80218023,-0.80227685,-0.8023735,-0.80247015,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80247015,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80247015,-0.80218023,-0.80227685,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8017936,-0.80150366,-0.80266345,-0.8025668,-0.8027601,-0.80285674,-0.8025668,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80247015,-0.80227685,-0.80227685,-0.80131036,-0.7987973,-0.79502785,-0.7902918,-0.7857491,-0.78661895,-0.79425466,-0.80005383,-0.8009237,-0.80150366,-0.80266345,-0.8023735,-0.79986054,-0.7977341,-0.79763746,-0.7977341,-0.79744416,-0.7973475,-0.7973475,-0.7971542,-0.7971542,-0.79705757,-0.7969609,-0.7966709,-0.7964776,-0.7965743,-0.7965743,-0.7964776,-0.7964776,-0.7964776,-0.7964776,-0.796381,-0.7961877,-0.7964776,-0.7965743,-0.796091,-0.7959944,-0.7961877,-0.7961877,-0.796091,-0.796091,-0.7961877,-0.7962843,-0.796381,-0.796091,-0.7959944,-0.7959944,-0.7959944,-0.796091,-0.7962843,-0.7965743,-0.7968642,-0.7969609,-0.7968642,-0.7968642,-0.7966709,-0.7964776,-0.7962843,-0.7961877,-0.7962843,-0.796381,-0.796381,-0.7966709,-0.7968642,-0.7964776,-0.7961877,-0.7961877,-0.7962843,-0.7962843,-0.7961877,-0.7966709,-0.7971542,-0.7973475,-0.7977341,-0.79744416,-0.79705757,-0.7977341,-0.7969609,-0.7958977,-0.7964776,-0.796091,-0.7953178,-0.7955111,-0.7949312,-0.79483455,-0.79512453,-0.796381,-0.7975408,-0.79763746,-0.79725087,-0.7971542,-0.7969609,-0.7964776,-0.796091,-0.7959944,-0.7959944,-0.7959944,-0.796091,-0.7961877,-0.796091,-0.7958977,-0.79580104,-0.79580104,-0.79580104,-0.79580104,-0.796091,-0.7964776,-0.7965743,-0.7968642,-0.7969609,-0.7968642,-0.79705757,-0.79744416,-0.7975408,-0.7977341,-0.79763746,-0.7967676,-0.7959944,-0.79580104,-0.79580104,-0.7958977,-0.796091,-0.796091,-0.796091,-0.7959944,-0.79580104,-0.7958977,-0.7961877,-0.7964776,-0.7965743,-0.796381,-0.796381,-0.796381,-0.7964776,-0.7966709,-0.7969609,-0.79725087,-0.7977341,-0.79812074,-0.79831403,-0.79812074,-0.79792744,-0.7977341,-0.7977341,-0.79763746,-0.79744416,-0.79763746,-0.79763746,-0.79744416,-0.7975408,-0.79802406,-0.79812074,-0.79802406,-0.7995705,-0.8016003,-0.80208355,-0.8016003,-0.80005383,-0.79986054,-0.7999572,-0.7945446,-0.7878755,-0.7871022,-0.7873922,-0.7872955,-0.7898086,-0.7928048,-0.79541445,-0.7989906,-0.8017936,-0.8025668,-0.8023735,-0.8023735,-0.80227685,-0.8023735,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8023735,-0.8027601,-0.80208355,-0.8019869,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8017936,-0.80169696,-0.80266345,-0.8025668,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8025668,-0.80247015,-0.80218023,-0.8008271,-0.79850733,-0.79560775,-0.79164493,-0.7868123,-0.7857491,-0.7919349,-0.7989906,-0.8008271,-0.801117,-0.80247015,-0.80266345,-0.801407,-0.7988939,-0.7977341,-0.79763746,-0.79744416,-0.7973475,-0.79744416,-0.7973475,-0.7973475,-0.7971542,-0.7973475,-0.7973475,-0.7971542,-0.7969609,-0.7967676,-0.7965743,-0.7964776,-0.7965743,-0.7964776,-0.796381,-0.7961877,-0.796381,-0.7965743,-0.796381,-0.796091,-0.7961877,-0.7962843,-0.796091,-0.7959944,-0.7959944,-0.7962843,-0.7965743,-0.796381,-0.7959944,-0.7959944,-0.7961877,-0.7961877,-0.796381,-0.7966709,-0.7969609,-0.79705757,-0.7968642,-0.7967676,-0.7966709,-0.7964776,-0.7962843,-0.796091,-0.796091,-0.796381,-0.7965743,-0.7971542,-0.7973475,-0.7969609,-0.7964776,-0.796381,-0.7964776,-0.7962843,-0.7964776,-0.7971542,-0.7973475,-0.79744416,-0.79783076,-0.7977341,-0.79792744,-0.79831403,-0.79802406,-0.79792744,-0.79744416,-0.7961877,-0.7959944,-0.796381,-0.79560775,-0.79483455,-0.79522115,-0.7969609,-0.79792744,-0.79763746,-0.79792744,-0.79812074,-0.7975408,-0.7967676,-0.796381,-0.796091,-0.7958977,-0.7959944,-0.796091,-0.7962843,-0.7962843,-0.796091,-0.7959944,-0.796091,-0.79580104,-0.7957044,-0.7959944,-0.7964776,-0.7966709,-0.7969609,-0.79705757,-0.79705757,-0.79744416,-0.7977341,-0.79783076,-0.79792744,-0.7975408,-0.7964776,-0.79580104,-0.79580104,-0.79580104,-0.79580104,-0.7959944,-0.7959944,-0.7959944,-0.7959944,-0.7957044,-0.7958977,-0.7961877,-0.796381,-0.7966709,-0.7968642,-0.7965743,-0.7966709,-0.7968642,-0.7969609,-0.7969609,-0.79705757,-0.7975408,-0.79812074,-0.79812074,-0.79792744,-0.7977341,-0.79783076,-0.79821736,-0.79831403,-0.79792744,-0.7977341,-0.7975408,-0.79763746,-0.79792744,-0.79821736,-0.79831403,-0.79850733,-0.8001505,-0.8019869,-0.8025668,-0.80150366,-0.7999572,-0.8007304,-0.7987973,-0.79106504,-0.78661895,-0.7873922,-0.7870056,-0.7871022,-0.79038846,-0.7936747,-0.796091,-0.7990872,-0.8017936,-0.8025668,-0.80247015,-0.80247015,-0.80247015,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.80247015,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.80247015,-0.8025668,-0.80266345,-0.80247015,-0.80247015,-0.80247015,-0.80189025,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8019869,-0.8016003,-0.8025668,-0.8025668,-0.8025668,-0.8027601,-0.8025668,-0.8027601,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80247015,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80285674,-0.80266345,-0.8025668,-0.8027601,-0.80208355,-0.80024713,-0.79860395,-0.79541445,-0.79058176,-0.7868123,-0.7853624,-0.7895186,-0.7973475,-0.8009237,-0.8009237,-0.8017936,-0.8027601,-0.8025668,-0.8003438,-0.79802406,-0.79763746,-0.79763746,-0.79725087,-0.7971542,-0.79744416,-0.79763746,-0.7975408,-0.79744416,-0.7975408,-0.7975408,-0.79744416,-0.7971542,-0.7967676,-0.7966709,-0.7965743,-0.796381,-0.7964776,-0.796381,-0.796381,-0.7964776,-0.7961877,-0.7959944,-0.7962843,-0.796381,-0.7962843,-0.796091,-0.7958977,-0.796091,-0.7964776,-0.796381,-0.796091,-0.796091,-0.7962843,-0.796381,-0.796381,-0.7965743,-0.7967676,-0.7967676,-0.7967676,-0.7967676,-0.7966709,-0.7965743,-0.796381,-0.7961877,-0.796091,-0.7964776,-0.7966709,-0.7971542,-0.7975408,-0.7969609,-0.7962843,-0.7962843,-0.7964776,-0.7964776,-0.79705757,-0.79744416,-0.7971542,-0.7971542,-0.79763746,-0.79783076,-0.79821736,-0.7987973,-0.7987973,-0.79841065,-0.79792744,-0.7977341,-0.79783076,-0.7977341,-0.7968642,-0.796091,-0.7968642,-0.79841065,-0.79850733,-0.7977341,-0.79812074,-0.79860395,-0.79783076,-0.7967676,-0.796381,-0.7962843,-0.796091,-0.7959944,-0.7958977,-0.7959944,-0.7962843,-0.7961877,-0.7961877,-0.7961877,-0.7961877,-0.7959944,-0.796091,-0.796381,-0.7967676,-0.7968642,-0.7971542,-0.79725087,-0.7975408,-0.7977341,-0.79792744,-0.79812074,-0.7975408,-0.7961877,-0.7957044,-0.7958977,-0.796091,-0.796091,-0.796091,-0.7961877,-0.7959944,-0.7958977,-0.7958977,-0.7959944,-0.796091,-0.7962843,-0.7966709,-0.7967676,-0.7965743,-0.7965743,-0.7967676,-0.7967676,-0.79705757,-0.7973475,-0.79744416,-0.7975408,-0.79744416,-0.79725087,-0.79744416,-0.7977341,-0.79812074,-0.79831403,-0.79841065,-0.79812074,-0.79792744,-0.79802406,-0.79812074,-0.79831403,-0.79831403,-0.7989906,-0.8007304,-0.80227685,-0.80247015,-0.8009237,-0.8001505,-0.8010204,-0.7967676,-0.78864866,-0.78632903,-0.7871989,-0.7865223,-0.7873922,-0.79058176,-0.7939647,-0.7966709,-0.7993772,-0.80169696,-0.8023735,-0.8023735,-0.80247015,-0.80247015,-0.80247015,-0.80247015,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8025668,-0.8025668,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80285674,-0.8025668,-0.80247015,-0.8023735,-0.8023735,-0.80247015,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80247015,-0.80227685,-0.80266345,-0.80247015,-0.8027601,-0.8025668,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80247015,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.80247015,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80247015,-0.8025668,-0.8016003,-0.80005383,-0.79850733,-0.79502785,-0.79038846,-0.7874888,-0.7855558,-0.7876822,-0.79560775,-0.8005371,-0.8006338,-0.8012137,-0.80227685,-0.80247015,-0.8012137,-0.7988939,-0.79763746,-0.79763746,-0.79763746,-0.7975408,-0.79744416,-0.79744416,-0.79744416,-0.7975408,-0.7975408,-0.79744416,-0.79744416,-0.79744416,-0.79705757,-0.7965743,-0.7965743,-0.7967676,-0.7965743,-0.7964776,-0.7965743,-0.7965743,-0.7965743,-0.7964776,-0.7964776,-0.796381,-0.796381,-0.7961877,-0.7959944,-0.796091,-0.7962843,-0.7961877,-0.796091,-0.7962843,-0.7961877,-0.796091,-0.796381,-0.7967676,-0.7967676,-0.7966709,-0.7966709,-0.7966709,-0.7964776,-0.796381,-0.796381,-0.796381,-0.796381,-0.7965743,-0.7967676,-0.79705757,-0.79725087,-0.7968642,-0.796381,-0.7965743,-0.7964776,-0.7965743,-0.79725087,-0.7973475,-0.7971542,-0.79725087,-0.79744416,-0.79802406,-0.79821736,-0.79821736,-0.79870063,-0.7988939,-0.79841065,-0.79850733,-0.7989906,-0.79860395,-0.79783076,-0.7977341,-0.79841065,-0.7987973,-0.79831403,-0.79783076,-0.79783076,-0.79802406,-0.79783076,-0.79705757,-0.7962843,-0.796091,-0.7959944,-0.7959944,-0.7959944,-0.796091,-0.7962843,-0.7964776,-0.796381,-0.7961877,-0.796091,-0.796091,-0.796091,-0.796381,-0.7966709,-0.7968642,-0.7971542,-0.79744416,-0.7975408,-0.79783076,-0.79821736,-0.79821736,-0.79705757,-0.7958977,-0.7957044,-0.7958977,-0.7959944,-0.796091,-0.7961877,-0.7959944,-0.7958977,-0.796091,-0.7961877,-0.7959944,-0.7959944,-0.7962843,-0.7964776,-0.7965743,-0.7965743,-0.7965743,-0.7966709,-0.7967676,-0.7967676,-0.7968642,-0.7971542,-0.79725087,-0.79725087,-0.79744416,-0.7975408,-0.7975408,-0.79763746,-0.7977341,-0.7977341,-0.79763746,-0.79763746,-0.79792744,-0.79812074,-0.79841065,-0.7988939,-0.7995705,-0.8008271,-0.80218023,-0.80227685,-0.8006338,-0.8005371,-0.7996672,-0.7930947,-0.7872955,-0.7871989,-0.7875855,-0.7869089,-0.78826207,-0.7918382,-0.79483455,-0.7968642,-0.7995705,-0.80189025,-0.80227685,-0.80227685,-0.8023735,-0.8023735,-0.8023735,-0.80247015,-0.8027601,-0.8025668,-0.80285674,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8025668,-0.8027601,-0.80285674,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.80285674,-0.8025668,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8023735,-0.8025668,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.801117,-0.8007304,-0.8025668,-0.80218023,-0.80266345,-0.80247015,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8023735,-0.801407,-0.79986054,-0.79850733,-0.7955111,-0.7904851,-0.7879721,-0.7871022,-0.7868123,-0.7922248,-0.7991839,-0.8007304,-0.8007304,-0.80189025,-0.80227685,-0.801407,-0.7990872,-0.79725087,-0.79725087,-0.7977341,-0.79763746,-0.7975408,-0.79763746,-0.7975408,-0.7975408,-0.79783076,-0.79763746,-0.79744416,-0.79744416,-0.7971542,-0.7967676,-0.7964776,-0.7965743,-0.7964776,-0.796381,-0.7965743,-0.7967676,-0.7966709,-0.7965743,-0.7965743,-0.7965743,-0.796381,-0.796091,-0.7959944,-0.796091,-0.7964776,-0.7964776,-0.7964776,-0.7962843,-0.7959944,-0.796091,-0.7964776,-0.7968642,-0.7969609,-0.7967676,-0.7964776,-0.7964776,-0.7965743,-0.7964776,-0.796381,-0.7962843,-0.7961877,-0.7966709,-0.7969609,-0.7966709,-0.7969609,-0.79725087,-0.7968642,-0.7965743,-0.7966709,-0.7971542,-0.7973475,-0.79705757,-0.7969609,-0.79725087,-0.79744416,-0.79792744,-0.79821736,-0.79783076,-0.79802406,-0.79841065,-0.79821736,-0.79831403,-0.79841065,-0.7975408,-0.7969609,-0.7977341,-0.7987973,-0.7988939,-0.79831403,-0.79783076,-0.7977341,-0.79783076,-0.7975408,-0.7968642,-0.796381,-0.7961877,-0.7961877,-0.796091,-0.7959944,-0.796091,-0.796381,-0.7968642,-0.7967676,-0.796381,-0.7962843,-0.7962843,-0.7961877,-0.7964776,-0.7967676,-0.7969609,-0.79725087,-0.79763746,-0.79792744,-0.79812074,-0.79821736,-0.79802406,-0.7968642,-0.7959944,-0.79580104,-0.79580104,-0.79580104,-0.796091,-0.7961877,-0.796091,-0.7959944,-0.7958977,-0.7959944,-0.7959944,-0.7959944,-0.796091,-0.7962843,-0.7964776,-0.7965743,-0.7965743,-0.7965743,-0.7966709,-0.7966709,-0.7968642,-0.7968642,-0.79705757,-0.79725087,-0.79705757,-0.7971542,-0.79763746,-0.79763746,-0.7975408,-0.7975408,-0.79744416,-0.79763746,-0.79783076,-0.7977341,-0.79792744,-0.79860395,-0.7996672,-0.8010204,-0.80247015,-0.8019869,-0.8006338,-0.801117,-0.79821736,-0.7900985,-0.78632903,-0.7875855,-0.7874888,-0.7873922,-0.7894219,-0.7927081,-0.7953178,-0.79725087,-0.7999572,-0.80189025,-0.80218023,-0.8023735,-0.80227685,-0.80218023,-0.8023735,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80247015,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.80247015,-0.80247015,-0.80218023,-0.801407,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8012137,-0.8008271,-0.8025668,-0.8025668,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80247015,-0.80150366,-0.80005383,-0.79821736,-0.79541445,-0.79087174,-0.7876822,-0.7869089,-0.7854591,-0.7878755,-0.79580104,-0.8005371,-0.8005371,-0.80131036,-0.80218023,-0.8019869,-0.8005371,-0.79841065,-0.79744416,-0.79763746,-0.7977341,-0.79763746,-0.79783076,-0.79783076,-0.7977341,-0.79783076,-0.79763746,-0.7973475,-0.7973475,-0.79705757,-0.7966709,-0.7964776,-0.7965743,-0.7965743,-0.7964776,-0.7965743,-0.7967676,-0.7969609,-0.7968642,-0.7968642,-0.7966709,-0.796381,-0.796381,-0.796381,-0.7962843,-0.7962843,-0.7962843,-0.796381,-0.7964776,-0.7962843,-0.7961877,-0.7961877,-0.7962843,-0.7965743,-0.7966709,-0.7964776,-0.7965743,-0.7966709,-0.7966709,-0.7965743,-0.7964776,-0.7964776,-0.7967676,-0.7967676,-0.7964776,-0.7967676,-0.7971542,-0.7968642,-0.7966709,-0.7971542,-0.7975408,-0.79705757,-0.7964776,-0.7966709,-0.7971542,-0.79744416,-0.79783076,-0.79812074,-0.7977341,-0.7973475,-0.7975408,-0.7977341,-0.79763746,-0.79705757,-0.7968642,-0.7971542,-0.79792744,-0.7987973,-0.79870063,-0.79802406,-0.7977341,-0.7975408,-0.7975408,-0.79744416,-0.7969609,-0.7964776,-0.796381,-0.7962843,-0.796091,-0.7959944,-0.7961877,-0.7962843,-0.7965743,-0.7969609,-0.7967676,-0.7964776,-0.796381,-0.7962843,-0.796381,-0.7966709,-0.7969609,-0.7971542,-0.7975408,-0.79783076,-0.79792744,-0.79812074,-0.79802406,-0.7967676,-0.7957044,-0.79580104,-0.7958977,-0.79580104,-0.7961877,-0.7961877,-0.7959944,-0.7958977,-0.7958977,-0.7959944,-0.796091,-0.7958977,-0.7959944,-0.7961877,-0.7962843,-0.7964776,-0.7967676,-0.79705757,-0.7968642,-0.7967676,-0.7967676,-0.7967676,-0.7968642,-0.7969609,-0.7968642,-0.7969609,-0.7973475,-0.7973475,-0.79744416,-0.7975408,-0.7973475,-0.79763746,-0.79783076,-0.79783076,-0.79783076,-0.79841065,-0.80005383,-0.80189025,-0.8023735,-0.8012137,-0.8007304,-0.8008271,-0.79580104,-0.78855205,-0.7867156,-0.7875855,-0.7871022,-0.7874888,-0.7898086,-0.7929981,-0.79522115,-0.7973475,-0.80024713,-0.80208355,-0.80227685,-0.80247015,-0.8025668,-0.8023735,-0.80247015,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80247015,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8025668,-0.80247015,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.8019869,-0.8016003,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80131036,-0.8007304,-0.8025668,-0.80266345,-0.8025668,-0.8025668,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80285674,-0.8023735,-0.80150366,-0.8004405,-0.79821736,-0.79512453,-0.7919349,-0.78874534,-0.7871989,-0.78632903,-0.7871022,-0.793288,-0.7994738,-0.8004405,-0.8005371,-0.80169696,-0.80227685,-0.80169696,-0.8001505,-0.79812074,-0.79744416,-0.79783076,-0.79802406,-0.79763746,-0.79763746,-0.79783076,-0.79763746,-0.79725087,-0.79725087,-0.7973475,-0.79705757,-0.7965743,-0.796381,-0.7966709,-0.7966709,-0.7966709,-0.7966709,-0.7966709,-0.7968642,-0.7968642,-0.7966709,-0.7964776,-0.796381,-0.796381,-0.796381,-0.7962843,-0.7961877,-0.796091,-0.796381,-0.7965743,-0.7962843,-0.7959944,-0.796091,-0.7962843,-0.7964776,-0.7964776,-0.7964776,-0.7964776,-0.7965743,-0.7964776,-0.796381,-0.7965743,-0.7965743,-0.7965743,-0.7966709,-0.7965743,-0.7966709,-0.7971542,-0.7971542,-0.79705757,-0.7973475,-0.79725087,-0.7966709,-0.796381,-0.7964776,-0.7968642,-0.7973475,-0.7977341,-0.79783076,-0.79812074,-0.79821736,-0.79802406,-0.7977341,-0.79763746,-0.79792744,-0.79802406,-0.79744416,-0.7975408,-0.79860395,-0.79860395,-0.79821736,-0.79812074,-0.7975408,-0.79725087,-0.79725087,-0.7969609,-0.7965743,-0.7964776,-0.796381,-0.7961877,-0.796091,-0.796091,-0.796381,-0.7964776,-0.7967676,-0.7969609,-0.7966709,-0.7962843,-0.7962843,-0.7962843,-0.7966709,-0.79725087,-0.79744416,-0.79763746,-0.7977341,-0.79802406,-0.79831403,-0.7975408,-0.7962843,-0.7958977,-0.7958977,-0.7959944,-0.796091,-0.7962843,-0.7961877,-0.7959944,-0.7958977,-0.7959944,-0.7961877,-0.7961877,-0.7959944,-0.7959944,-0.7961877,-0.7962843,-0.796381,-0.7966709,-0.7966709,-0.7966709,-0.7966709,-0.7965743,-0.7965743,-0.7966709,-0.7968642,-0.7968642,-0.7967676,-0.7968642,-0.7969609,-0.7971542,-0.79725087,-0.7971542,-0.79725087,-0.79763746,-0.79783076,-0.79763746,-0.79860395,-0.801117,-0.80266345,-0.80208355,-0.8009237,-0.8009237,-0.7992805,-0.7923215,-0.7867156,-0.7868123,-0.7873922,-0.7871022,-0.7877788,-0.7895186,-0.7927081,-0.79541445,-0.79744416,-0.80024713,-0.80218023,-0.80247015,-0.8025668,-0.80266345,-0.8023735,-0.80247015,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80247015,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.80247015,-0.8027601,-0.80247015,-0.80218023,-0.8023735,-0.8017936,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80227685,-0.80218023,-0.8025668,-0.80247015,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.80169696,-0.8001505,-0.7977341,-0.79464126,-0.79154825,-0.789132,-0.7883587,-0.7878755,-0.7873922,-0.79164493,-0.79812074,-0.8001505,-0.8001505,-0.801407,-0.80218023,-0.8023735,-0.8017936,-0.7995705,-0.79744416,-0.79744416,-0.79783076,-0.7975408,-0.7975408,-0.79783076,-0.79763746,-0.79744416,-0.79744416,-0.7971542,-0.7969609,-0.7967676,-0.7966709,-0.7965743,-0.7966709,-0.7967676,-0.7968642,-0.7968642,-0.7968642,-0.7968642,-0.7967676,-0.7965743,-0.796381,-0.7964776,-0.796381,-0.796381,-0.796381,-0.7962843,-0.7962843,-0.796381,-0.7962843,-0.7961877,-0.7962843,-0.7961877,-0.796381,-0.7967676,-0.7966709,-0.7962843,-0.796381,-0.7967676,-0.7966709,-0.7965743,-0.7967676,-0.7966709,-0.7964776,-0.796381,-0.7965743,-0.7969609,-0.79744416,-0.7975408,-0.79705757,-0.7965743,-0.7965743,-0.7967676,-0.7965743,-0.7966709,-0.7973475,-0.7975408,-0.7971542,-0.79744416,-0.79783076,-0.79802406,-0.79831403,-0.79860395,-0.79831403,-0.79725087,-0.7965743,-0.79763746,-0.7989906,-0.7989906,-0.79850733,-0.79812074,-0.7975408,-0.79725087,-0.79705757,-0.7968642,-0.7967676,-0.7965743,-0.796381,-0.7961877,-0.796091,-0.7961877,-0.7962843,-0.796381,-0.7966709,-0.79705757,-0.7969609,-0.7964776,-0.796381,-0.7965743,-0.7969609,-0.79725087,-0.7975408,-0.79783076,-0.79821736,-0.79850733,-0.79841065,-0.7973475,-0.7961877,-0.7959944,-0.7959944,-0.7958977,-0.796091,-0.7961877,-0.7961877,-0.796091,-0.7959944,-0.796091,-0.7959944,-0.7958977,-0.7959944,-0.796091,-0.796091,-0.796091,-0.7962843,-0.796381,-0.796381,-0.7964776,-0.7966709,-0.7966709,-0.7966709,-0.7966709,-0.7967676,-0.7967676,-0.7966709,-0.7966709,-0.7967676,-0.7967676,-0.7968642,-0.7971542,-0.79725087,-0.7975408,-0.7975408,-0.79744416,-0.7989906,-0.8016003,-0.8025668,-0.80169696,-0.8007304,-0.8009237,-0.7977341,-0.7902918,-0.7865223,-0.7871989,-0.7870056,-0.7871022,-0.7878755,-0.7893253,-0.7923215,-0.79522115,-0.79763746,-0.8005371,-0.8023735,-0.80266345,-0.8025668,-0.80247015,-0.80247015,-0.80247015,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8025668,-0.8025668,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8023735,-0.80218023,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80247015,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8016003,-0.8001505,-0.79744416,-0.793868,-0.79125834,-0.7890353,-0.7874888,-0.78661895,-0.7852658,-0.7877788,-0.7955111,-0.7997638,-0.7996672,-0.8008271,-0.80169696,-0.80208355,-0.8025668,-0.80169696,-0.79850733,-0.79705757,-0.7975408,-0.7977341,-0.79763746,-0.79763746,-0.7975408,-0.7975408,-0.7975408,-0.7973475,-0.79705757,-0.7966709,-0.7966709,-0.7967676,-0.7967676,-0.79705757,-0.79705757,-0.79705757,-0.7971542,-0.7969609,-0.7965743,-0.796381,-0.796381,-0.796381,-0.796381,-0.796381,-0.796381,-0.7961877,-0.7962843,-0.7966709,-0.7965743,-0.7962843,-0.7961877,-0.7962843,-0.796381,-0.7968642,-0.7968642,-0.7964776,-0.7962843,-0.796381,-0.7966709,-0.7966709,-0.7966709,-0.7965743,-0.796381,-0.7964776,-0.7964776,-0.7965743,-0.79763746,-0.79812074,-0.7971542,-0.796381,-0.7964776,-0.7965743,-0.7965743,-0.7965743,-0.7968642,-0.79744416,-0.7975408,-0.7973475,-0.7969609,-0.7968642,-0.79705757,-0.7971542,-0.7968642,-0.7965743,-0.79725087,-0.79841065,-0.7988939,-0.7988939,-0.7987973,-0.79821736,-0.7973475,-0.7971542,-0.79725087,-0.79705757,-0.7966709,-0.7965743,-0.7967676,-0.796381,-0.796091,-0.7961877,-0.7962843,-0.7962843,-0.7965743,-0.79725087,-0.7973475,-0.7965743,-0.7962843,-0.7964776,-0.7968642,-0.79725087,-0.7975408,-0.79802406,-0.79841065,-0.79860395,-0.79841065,-0.7971542,-0.7959944,-0.7958977,-0.7958977,-0.7958977,-0.796091,-0.7961877,-0.796091,-0.7959944,-0.796091,-0.7961877,-0.796091,-0.796091,-0.7961877,-0.7962843,-0.7962843,-0.796381,-0.7964776,-0.796381,-0.7965743,-0.7966709,-0.7964776,-0.7966709,-0.7968642,-0.7968642,-0.7965743,-0.7967676,-0.79705757,-0.7967676,-0.7966709,-0.7967676,-0.7969609,-0.79725087,-0.79744416,-0.79763746,-0.7975408,-0.79783076,-0.80005383,-0.80218023,-0.80227685,-0.80131036,-0.8007304,-0.8003438,-0.7961877,-0.79019517,-0.78845537,-0.789132,-0.78855205,-0.7874888,-0.7871989,-0.7893253,-0.7928048,-0.7953178,-0.7977341,-0.8008271,-0.80247015,-0.80247015,-0.80247015,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80247015,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80247015,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80247015,-0.80247015,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80218023,-0.8012137,-0.7996672,-0.79763746,-0.7947379,-0.79145163,-0.7892286,-0.7877788,-0.7870056,-0.7853624,-0.7855558,-0.7920315,-0.7987973,-0.7997638,-0.8001505,-0.8016003,-0.8017936,-0.80247015,-0.8027601,-0.8008271,-0.79850733,-0.79802406,-0.79802406,-0.7975408,-0.79744416,-0.7975408,-0.7975408,-0.79763746,-0.79763746,-0.7971542,-0.7966709,-0.7965743,-0.7966709,-0.7968642,-0.79705757,-0.79705757,-0.79705757,-0.7971542,-0.7969609,-0.7964776,-0.7962843,-0.7962843,-0.796381,-0.7961877,-0.7961877,-0.7962843,-0.7962843,-0.796381,-0.7966709,-0.7964776,-0.7961877,-0.796091,-0.796381,-0.7964776,-0.7965743,-0.7965743,-0.7965743,-0.796381,-0.796091,-0.7961877,-0.7966709,-0.7966709,-0.796381,-0.796381,-0.7965743,-0.7964776,-0.7967676,-0.7977341,-0.79792744,-0.79705757,-0.7964776,-0.796381,-0.7964776,-0.7965743,-0.7964776,-0.7965743,-0.79725087,-0.7977341,-0.7975408,-0.79744416,-0.7973475,-0.79705757,-0.7969609,-0.79705757,-0.79744416,-0.79821736,-0.79870063,-0.79870063,-0.7988939,-0.7988939,-0.79802406,-0.79705757,-0.7968642,-0.79725087,-0.7971542,-0.7968642,-0.7969609,-0.7969609,-0.7964776,-0.7961877,-0.7961877,-0.796381,-0.7964776,-0.7962843,-0.7968642,-0.79744416,-0.7968642,-0.7961877,-0.7964776,-0.79705757,-0.79744416,-0.7977341,-0.79812074,-0.79850733,-0.7987973,-0.79821736,-0.7969609,-0.796091,-0.7959944,-0.79580104,-0.79580104,-0.796091,-0.7961877,-0.7961877,-0.796091,-0.7961877,-0.7961877,-0.796091,-0.796091,-0.7962843,-0.7961877,-0.796381,-0.7965743,-0.7964776,-0.7964776,-0.7966709,-0.7966709,-0.7966709,-0.7968642,-0.7969609,-0.7969609,-0.79705757,-0.79725087,-0.7973475,-0.7971542,-0.79705757,-0.79705757,-0.7971542,-0.7973475,-0.7975408,-0.7975408,-0.79725087,-0.79841065,-0.8012137,-0.8025668,-0.80169696,-0.8007304,-0.8007304,-0.79850733,-0.7923215,-0.7879721,-0.7883587,-0.7892286,-0.789132,-0.7880688,-0.7874888,-0.79000187,-0.793288,-0.7955111,-0.79812074,-0.8009237,-0.80227685,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8025668,-0.8023735,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80247015,-0.80218023,-0.80227685,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80208355,-0.80189025,-0.8027601,-0.8023735,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80218023,-0.8009237,-0.7990872,-0.79725087,-0.79512453,-0.7917416,-0.788842,-0.7875855,-0.7874888,-0.7869089,-0.7858457,-0.7893253,-0.7968642,-0.7999572,-0.7996672,-0.8009237,-0.8017936,-0.8017936,-0.80266345,-0.8025668,-0.80024713,-0.79812074,-0.79783076,-0.79783076,-0.79744416,-0.7975408,-0.79763746,-0.79744416,-0.7973475,-0.7969609,-0.7965743,-0.7965743,-0.7967676,-0.7967676,-0.7967676,-0.79705757,-0.79725087,-0.7971542,-0.7969609,-0.7966709,-0.796381,-0.796381,-0.796381,-0.7962843,-0.796381,-0.796381,-0.7962843,-0.7961877,-0.796381,-0.7965743,-0.7964776,-0.7961877,-0.796381,-0.7964776,-0.7965743,-0.7967676,-0.7966709,-0.7964776,-0.796381,-0.796381,-0.7967676,-0.7968642,-0.7964776,-0.7962843,-0.7964776,-0.7965743,-0.7967676,-0.7973475,-0.7975408,-0.79705757,-0.7965743,-0.7964776,-0.7964776,-0.7965743,-0.7964776,-0.7964776,-0.7968642,-0.7969609,-0.7967676,-0.79725087,-0.79763746,-0.79744416,-0.79744416,-0.79783076,-0.79821736,-0.79860395,-0.79850733,-0.79850733,-0.7989906,-0.79860395,-0.7975408,-0.7968642,-0.7965743,-0.79705757,-0.7973475,-0.7969609,-0.7967676,-0.7968642,-0.7966709,-0.7964776,-0.796381,-0.796381,-0.796381,-0.7964776,-0.7968642,-0.79725087,-0.7971542,-0.7967676,-0.7965743,-0.7967676,-0.7975408,-0.79792744,-0.79821736,-0.79860395,-0.79860395,-0.79783076,-0.7965743,-0.7958977,-0.7959944,-0.796091,-0.796091,-0.7961877,-0.7961877,-0.7959944,-0.7959944,-0.7959944,-0.796091,-0.7961877,-0.7961877,-0.7961877,-0.7961877,-0.7962843,-0.7962843,-0.796381,-0.7965743,-0.7968642,-0.7968642,-0.7967676,-0.7968642,-0.7971542,-0.7973475,-0.79744416,-0.7975408,-0.7975408,-0.7975408,-0.79744416,-0.79744416,-0.7975408,-0.7975408,-0.7977341,-0.7977341,-0.79783076,-0.79986054,-0.80218023,-0.80247015,-0.8012137,-0.8006338,-0.8005371,-0.7959944,-0.78874534,-0.78613573,-0.7871989,-0.7873922,-0.7875855,-0.7878755,-0.78826207,-0.7906784,-0.79357797,-0.79560775,-0.79821736,-0.8012137,-0.8025668,-0.8025668,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.80247015,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80247015,-0.8025668,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80247015,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80247015,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8017936,-0.80150366,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8007304,-0.80024713,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.80189025,-0.8005371,-0.7990872,-0.79725087,-0.7949312,-0.7917416,-0.78864866,-0.7871022,-0.7867156,-0.7871989,-0.78661895,-0.7871022,-0.7931914,-0.7991839,-0.7997638,-0.7995705,-0.8006338,-0.80131036,-0.80208355,-0.80266345,-0.80218023,-0.7995705,-0.79783076,-0.79792744,-0.7977341,-0.79744416,-0.7975408,-0.79744416,-0.79744416,-0.79705757,-0.7965743,-0.7965743,-0.7967676,-0.7968642,-0.7969609,-0.79725087,-0.7973475,-0.7971542,-0.79705757,-0.7969609,-0.7968642,-0.7966709,-0.7965743,-0.7964776,-0.796381,-0.7964776,-0.796381,-0.7962843,-0.796381,-0.7966709,-0.7966709,-0.796381,-0.7962843,-0.7962843,-0.7964776,-0.7967676,-0.7967676,-0.7964776,-0.7964776,-0.7966709,-0.7967676,-0.7967676,-0.7965743,-0.7964776,-0.796381,-0.796381,-0.7968642,-0.7973475,-0.7971542,-0.7966709,-0.7966709,-0.7965743,-0.7965743,-0.7965743,-0.796381,-0.7964776,-0.7967676,-0.7967676,-0.7969609,-0.7977341,-0.79831403,-0.79831403,-0.79821736,-0.79802406,-0.79783076,-0.79792744,-0.79792744,-0.79841065,-0.7990872,-0.79860395,-0.79725087,-0.7965743,-0.7966709,-0.7969609,-0.7969609,-0.7967676,-0.7965743,-0.7966709,-0.7967676,-0.7968642,-0.7965743,-0.796381,-0.7964776,-0.7966709,-0.7969609,-0.7969609,-0.7967676,-0.7967676,-0.7965743,-0.7966709,-0.79763746,-0.79841065,-0.79860395,-0.7987973,-0.79860395,-0.7973475,-0.796091,-0.7958977,-0.796091,-0.7961877,-0.796381,-0.796381,-0.7961877,-0.796091,-0.796091,-0.796091,-0.796091,-0.7961877,-0.7962843,-0.7962843,-0.796381,-0.7965743,-0.7966709,-0.7967676,-0.7969609,-0.79705757,-0.7971542,-0.7971542,-0.79705757,-0.79725087,-0.7973475,-0.7977341,-0.79812074,-0.79792744,-0.79763746,-0.7975408,-0.79763746,-0.79763746,-0.79763746,-0.79763746,-0.7975408,-0.79860395,-0.8012137,-0.8025668,-0.8019869,-0.8008271,-0.8010204,-0.79986054,-0.79348135,-0.7875855,-0.7871989,-0.7875855,-0.7871989,-0.7874888,-0.7876822,-0.78864866,-0.79087174,-0.7933847,-0.7958977,-0.7987973,-0.801407,-0.80247015,-0.8025668,-0.80266345,-0.80285674,-0.8025668,-0.8025668,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8023735,-0.80227685,-0.80189025,-0.8012137,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.801117,-0.8005371,-0.8027601,-0.80218023,-0.80266345,-0.80247015,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8019869,-0.8001505,-0.79841065,-0.7961877,-0.7936747,-0.79106504,-0.78864866,-0.7871022,-0.7865223,-0.7870056,-0.78661895,-0.7856524,-0.7896152,-0.7965743,-0.7990872,-0.7992805,-0.8004405,-0.8012137,-0.8012137,-0.8019869,-0.8027601,-0.80150366,-0.79870063,-0.7975408,-0.79763746,-0.79763746,-0.79763746,-0.7975408,-0.79725087,-0.79705757,-0.7968642,-0.7967676,-0.7967676,-0.7968642,-0.79705757,-0.79725087,-0.7973475,-0.7973475,-0.7973475,-0.79725087,-0.7969609,-0.7968642,-0.7968642,-0.7968642,-0.7967676,-0.7965743,-0.7962843,-0.7962843,-0.796381,-0.7965743,-0.796381,-0.7962843,-0.796381,-0.7962843,-0.7962843,-0.7964776,-0.7964776,-0.7964776,-0.7965743,-0.7965743,-0.7967676,-0.7967676,-0.7964776,-0.796381,-0.7964776,-0.7964776,-0.7966709,-0.79705757,-0.7969609,-0.7965743,-0.796381,-0.7964776,-0.7965743,-0.7965743,-0.796381,-0.7964776,-0.7964776,-0.796381,-0.7967676,-0.79763746,-0.79831403,-0.79841065,-0.79821736,-0.79812074,-0.79821736,-0.79812074,-0.79792744,-0.79860395,-0.7992805,-0.79860395,-0.79725087,-0.7966709,-0.7966709,-0.7966709,-0.7971542,-0.7973475,-0.79705757,-0.7967676,-0.7966709,-0.7967676,-0.7966709,-0.7964776,-0.796381,-0.7966709,-0.7969609,-0.7968642,-0.7967676,-0.79705757,-0.7968642,-0.7966709,-0.7973475,-0.79831403,-0.7988939,-0.7988939,-0.79802406,-0.7965743,-0.7959944,-0.7958977,-0.7959944,-0.7961877,-0.7962843,-0.7959944,-0.7958977,-0.7958977,-0.796091,-0.7961877,-0.7962843,-0.7962843,-0.796091,-0.7962843,-0.7966709,-0.7969609,-0.79705757,-0.79705757,-0.7968642,-0.7969609,-0.7971542,-0.7971542,-0.79705757,-0.79725087,-0.7973475,-0.79763746,-0.79812074,-0.79831403,-0.79792744,-0.79763746,-0.79763746,-0.79763746,-0.7977341,-0.7975408,-0.7975408,-0.7996672,-0.80227685,-0.8025668,-0.80150366,-0.8009237,-0.801407,-0.79802406,-0.7900985,-0.78661895,-0.7876822,-0.7875855,-0.7875855,-0.7878755,-0.7875855,-0.78874534,-0.79125834,-0.79357797,-0.7958977,-0.7988939,-0.8016003,-0.80247015,-0.8025668,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8025668,-0.80247015,-0.80266345,-0.8025668,-0.8027601,-0.8025668,-0.80266345,-0.80247015,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8025668,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80247015,-0.80189025,-0.80169696,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8025668,-0.8023735,-0.8027601,-0.80247015,-0.80266345,-0.80247015,-0.8025668,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80208355,-0.80024713,-0.79792744,-0.79483455,-0.7920315,-0.79019517,-0.78826207,-0.7869089,-0.78642565,-0.78661895,-0.7867156,-0.7857491,-0.7877788,-0.79464126,-0.7989906,-0.7992805,-0.8003438,-0.80150366,-0.8008271,-0.8003438,-0.8019869,-0.80266345,-0.8004405,-0.79802406,-0.7977341,-0.79783076,-0.79763746,-0.7975408,-0.7973475,-0.79705757,-0.7969609,-0.7969609,-0.7968642,-0.7969609,-0.7971542,-0.79705757,-0.79705757,-0.7973475,-0.7975408,-0.79725087,-0.7969609,-0.7969609,-0.7968642,-0.7968642,-0.7968642,-0.7966709,-0.7964776,-0.7964776,-0.796381,-0.796381,-0.7964776,-0.7965743,-0.7964776,-0.7962843,-0.7961877,-0.7964776,-0.7966709,-0.7964776,-0.7964776,-0.7967676,-0.7968642,-0.7967676,-0.7964776,-0.7964776,-0.7966709,-0.7965743,-0.7965743,-0.7969609,-0.7968642,-0.7964776,-0.796381,-0.7964776,-0.796381,-0.7964776,-0.7964776,-0.796381,-0.7964776,-0.7964776,-0.7966709,-0.79744416,-0.79812074,-0.79792744,-0.79792744,-0.79870063,-0.7989906,-0.79841065,-0.79821736,-0.79850733,-0.7988939,-0.79841065,-0.7973475,-0.7965743,-0.7964776,-0.7967676,-0.79725087,-0.7973475,-0.7969609,-0.7969609,-0.7968642,-0.7965743,-0.7966709,-0.7965743,-0.796381,-0.7965743,-0.7969609,-0.7968642,-0.7966709,-0.7968642,-0.7967676,-0.7964776,-0.7969609,-0.79821736,-0.7990872,-0.79850733,-0.7971542,-0.796381,-0.7961877,-0.7959944,-0.7961877,-0.7964776,-0.796381,-0.7961877,-0.796091,-0.796091,-0.796091,-0.7962843,-0.7964776,-0.7966709,-0.7967676,-0.7969609,-0.7971542,-0.79725087,-0.79725087,-0.79725087,-0.79725087,-0.79705757,-0.7968642,-0.7969609,-0.79705757,-0.79705757,-0.79725087,-0.7975408,-0.79783076,-0.79841065,-0.79841065,-0.79792744,-0.79763746,-0.79763746,-0.79792744,-0.79792744,-0.79860395,-0.8009237,-0.8023735,-0.80208355,-0.801117,-0.8012137,-0.8012137,-0.7955111,-0.7878755,-0.78642565,-0.7874888,-0.7873922,-0.7874888,-0.7872955,-0.7871022,-0.7883587,-0.79096836,-0.793868,-0.796091,-0.7987973,-0.8016003,-0.80247015,-0.8023735,-0.8025668,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80247015,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8023735,-0.80227685,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8017936,-0.7999572,-0.79783076,-0.7947379,-0.79135495,-0.7892286,-0.7877788,-0.7869089,-0.7868123,-0.7870056,-0.7874888,-0.78642565,-0.7876822,-0.7949312,-0.7997638,-0.7991839,-0.7994738,-0.801117,-0.801407,-0.7993772,-0.79841065,-0.801117,-0.80218023,-0.7994738,-0.79783076,-0.79783076,-0.79763746,-0.79744416,-0.79725087,-0.7971542,-0.7969609,-0.7967676,-0.7967676,-0.7969609,-0.7971542,-0.7971542,-0.7971542,-0.79725087,-0.7971542,-0.79705757,-0.79705757,-0.7968642,-0.7966709,-0.7965743,-0.7968642,-0.7971542,-0.79705757,-0.7965743,-0.796381,-0.796381,-0.7965743,-0.7966709,-0.7964776,-0.7961877,-0.796091,-0.7962843,-0.7964776,-0.7964776,-0.7964776,-0.7965743,-0.7966709,-0.7968642,-0.7967676,-0.7964776,-0.7964776,-0.7965743,-0.7966709,-0.7968642,-0.7966709,-0.796381,-0.7962843,-0.7964776,-0.7966709,-0.7965743,-0.7965743,-0.7966709,-0.7965743,-0.7964776,-0.7966709,-0.7971542,-0.79792744,-0.79802406,-0.79821736,-0.7996672,-0.8001505,-0.7987973,-0.79783076,-0.79792744,-0.79831403,-0.79802406,-0.79705757,-0.7965743,-0.7967676,-0.7967676,-0.7969609,-0.7973475,-0.7973475,-0.79705757,-0.7967676,-0.7967676,-0.7968642,-0.7966709,-0.796381,-0.7964776,-0.7968642,-0.7967676,-0.796381,-0.7967676,-0.79705757,-0.7965743,-0.7966709,-0.79821736,-0.7989906,-0.7977341,-0.7964776,-0.7962843,-0.7962843,-0.796091,-0.796091,-0.7962843,-0.7962843,-0.7961877,-0.796091,-0.7961877,-0.796381,-0.7967676,-0.79705757,-0.79705757,-0.79705757,-0.79725087,-0.79744416,-0.79744416,-0.79744416,-0.79744416,-0.79725087,-0.7971542,-0.79725087,-0.7971542,-0.79705757,-0.79705757,-0.7973475,-0.7975408,-0.79744416,-0.7977341,-0.79831403,-0.79831403,-0.79812074,-0.79831403,-0.79812074,-0.79831403,-0.80024713,-0.80208355,-0.80218023,-0.80150366,-0.8008271,-0.801407,-0.7994738,-0.7920315,-0.7869089,-0.7873922,-0.7874888,-0.7870056,-0.7873922,-0.7871989,-0.7870056,-0.7879721,-0.7906784,-0.793868,-0.7961877,-0.7988939,-0.801407,-0.80247015,-0.80247015,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80247015,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80247015,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80208355,-0.80169696,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8016003,-0.7997638,-0.79792744,-0.7957044,-0.7919349,-0.7883587,-0.7870056,-0.7869089,-0.7867156,-0.7868123,-0.7872955,-0.7867156,-0.7880688,-0.79483455,-0.7993772,-0.79870063,-0.7989906,-0.8009237,-0.8017936,-0.7988939,-0.79464126,-0.7973475,-0.8027601,-0.80150366,-0.79831403,-0.79783076,-0.79792744,-0.7975408,-0.79725087,-0.7971542,-0.7971542,-0.7969609,-0.7968642,-0.7968642,-0.79705757,-0.7971542,-0.79705757,-0.79705757,-0.7969609,-0.7969609,-0.79705757,-0.79705757,-0.7968642,-0.79705757,-0.79725087,-0.7973475,-0.7973475,-0.7969609,-0.7965743,-0.796381,-0.796381,-0.7966709,-0.7967676,-0.7965743,-0.796381,-0.796381,-0.796381,-0.7965743,-0.7965743,-0.7964776,-0.7965743,-0.7966709,-0.7966709,-0.7965743,-0.7964776,-0.7964776,-0.7964776,-0.7964776,-0.7966709,-0.7965743,-0.796381,-0.796381,-0.7964776,-0.796381,-0.7964776,-0.7966709,-0.7966709,-0.7966709,-0.7967676,-0.79705757,-0.7975408,-0.7975408,-0.79831403,-0.8008271,-0.80150366,-0.7992805,-0.79792744,-0.79792744,-0.79763746,-0.7975408,-0.79725087,-0.7967676,-0.7965743,-0.7966709,-0.7969609,-0.79744416,-0.79763746,-0.7973475,-0.7969609,-0.7967676,-0.7966709,-0.796381,-0.7961877,-0.7964776,-0.7969609,-0.7967676,-0.796381,-0.7968642,-0.7971542,-0.7964776,-0.7964776,-0.79783076,-0.79831403,-0.79705757,-0.7961877,-0.7961877,-0.7961877,-0.7961877,-0.7962843,-0.7961877,-0.7961877,-0.796091,-0.796091,-0.7962843,-0.7966709,-0.79705757,-0.7971542,-0.79725087,-0.79744416,-0.7975408,-0.7977341,-0.79783076,-0.79783076,-0.7975408,-0.7973475,-0.7973475,-0.79744416,-0.79744416,-0.7973475,-0.7971542,-0.7971542,-0.79725087,-0.7973475,-0.7975408,-0.79783076,-0.79812074,-0.79821736,-0.79821736,-0.79821736,-0.7997638,-0.80189025,-0.8023735,-0.80189025,-0.801117,-0.8010204,-0.80131036,-0.796381,-0.78845537,-0.7867156,-0.7880688,-0.7875855,-0.7872955,-0.7873922,-0.7873922,-0.7874888,-0.78855205,-0.7919349,-0.79483455,-0.7965743,-0.7988939,-0.8012137,-0.80247015,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.80247015,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80247015,-0.80266345,-0.80247015,-0.8023735,-0.8023735,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80227685,-0.80218023,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80150366,-0.7995705,-0.7977341,-0.7958977,-0.7926115,-0.788842,-0.7870056,-0.78661895,-0.78642565,-0.78613573,-0.78632903,-0.78613573,-0.7870056,-0.7925148,-0.79821736,-0.79870063,-0.79841065,-0.80005383,-0.80150366,-0.8005371,-0.7961877,-0.7953178,-0.8007304,-0.8025668,-0.7996672,-0.79763746,-0.79792744,-0.79792744,-0.79763746,-0.7975408,-0.7975408,-0.79725087,-0.7968642,-0.7968642,-0.7969609,-0.7969609,-0.7969609,-0.7968642,-0.7967676,-0.7968642,-0.79705757,-0.79705757,-0.7969609,-0.7973475,-0.7977341,-0.79763746,-0.79744416,-0.7971542,-0.7967676,-0.7964776,-0.7964776,-0.7966709,-0.7966709,-0.7962843,-0.7961877,-0.7962843,-0.7965743,-0.7966709,-0.7964776,-0.7965743,-0.7966709,-0.7965743,-0.7966709,-0.7968642,-0.7967676,-0.7965743,-0.7965743,-0.7965743,-0.7965743,-0.7965743,-0.7966709,-0.7966709,-0.7964776,-0.7964776,-0.7964776,-0.7965743,-0.7968642,-0.7968642,-0.7966709,-0.7969609,-0.7975408,-0.7975408,-0.79870063,-0.80189025,-0.80247015,-0.7993772,-0.79783076,-0.79763746,-0.79705757,-0.7971542,-0.79744416,-0.79744416,-0.7973475,-0.7968642,-0.7967676,-0.79744416,-0.79792744,-0.79783076,-0.7973475,-0.7968642,-0.7966709,-0.7964776,-0.7961877,-0.7966709,-0.79705757,-0.7967676,-0.7962843,-0.7966709,-0.79705757,-0.7964776,-0.7962843,-0.7969609,-0.79705757,-0.7966709,-0.796381,-0.7961877,-0.7961877,-0.7964776,-0.796381,-0.7958977,-0.7958977,-0.796381,-0.796381,-0.7964776,-0.7969609,-0.7971542,-0.7971542,-0.79725087,-0.7973475,-0.79744416,-0.7975408,-0.79763746,-0.7977341,-0.79792744,-0.79792744,-0.7977341,-0.7975408,-0.7973475,-0.7973475,-0.79725087,-0.7973475,-0.79744416,-0.79744416,-0.79744416,-0.79763746,-0.79783076,-0.79792744,-0.79812074,-0.7993772,-0.8016003,-0.8023735,-0.8019869,-0.8016003,-0.8008271,-0.8012137,-0.80024713,-0.793288,-0.7869089,-0.7869089,-0.7875855,-0.7872955,-0.7875855,-0.7875855,-0.7872955,-0.7874888,-0.789132,-0.7924181,-0.79512453,-0.7966709,-0.7987973,-0.80131036,-0.80247015,-0.8025668,-0.8027601,-0.8025668,-0.80247015,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8025668,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8025668,-0.80227685,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80285674,-0.801407,-0.7992805,-0.79725087,-0.79502785,-0.7917416,-0.788842,-0.7871989,-0.78642565,-0.78632903,-0.78613573,-0.78632903,-0.78613573,-0.78613573,-0.79087174,-0.7975408,-0.7993772,-0.79841065,-0.7994738,-0.80131036,-0.8016003,-0.7989906,-0.7969609,-0.7999572,-0.8023735,-0.80169696,-0.7987973,-0.79802406,-0.79802406,-0.7977341,-0.79763746,-0.7977341,-0.7975408,-0.79705757,-0.79705757,-0.7971542,-0.7968642,-0.7967676,-0.7968642,-0.7969609,-0.7968642,-0.7968642,-0.7971542,-0.7973475,-0.79744416,-0.79763746,-0.7977341,-0.7975408,-0.7971542,-0.7968642,-0.7967676,-0.7965743,-0.7966709,-0.7969609,-0.7966709,-0.7962843,-0.7962843,-0.796381,-0.7964776,-0.7964776,-0.7964776,-0.7965743,-0.7967676,-0.7967676,-0.7966709,-0.7966709,-0.7966709,-0.7966709,-0.7967676,-0.7966709,-0.7965743,-0.7966709,-0.7966709,-0.7965743,-0.7966709,-0.7965743,-0.7965743,-0.7969609,-0.79705757,-0.7967676,-0.7967676,-0.7968642,-0.79705757,-0.7988939,-0.80227685,-0.80218023,-0.7997638,-0.7977341,-0.7973475,-0.7969609,-0.7969609,-0.79763746,-0.79783076,-0.79725087,-0.7968642,-0.7969609,-0.7973475,-0.79792744,-0.79812074,-0.79763746,-0.7969609,-0.7966709,-0.7965743,-0.7965743,-0.7966709,-0.7967676,-0.7966709,-0.7965743,-0.7968642,-0.7971542,-0.7968642,-0.7964776,-0.7965743,-0.7965743,-0.796381,-0.7961877,-0.7961877,-0.7962843,-0.796381,-0.7962843,-0.7959944,-0.796091,-0.796381,-0.796381,-0.7964776,-0.7967676,-0.7969609,-0.7968642,-0.7968642,-0.7969609,-0.79705757,-0.7971542,-0.79725087,-0.79725087,-0.7975408,-0.79783076,-0.79802406,-0.79802406,-0.7977341,-0.79744416,-0.7975408,-0.7977341,-0.79763746,-0.7975408,-0.79744416,-0.79763746,-0.79802406,-0.79831403,-0.7990872,-0.8009237,-0.80218023,-0.80218023,-0.80189025,-0.801407,-0.8008271,-0.801117,-0.79831403,-0.79145163,-0.7873922,-0.7871989,-0.7871022,-0.7870056,-0.7873922,-0.7872955,-0.78642565,-0.78661895,-0.7893253,-0.7922248,-0.7939647,-0.7958977,-0.79850733,-0.801117,-0.80218023,-0.80227685,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80247015,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8023735,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8009237,-0.80266345,-0.8023735,-0.80247015,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80247015,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80247015,-0.8025668,-0.8025668,-0.80285674,-0.8012137,-0.7987973,-0.79705757,-0.79464126,-0.79106504,-0.78845537,-0.7869089,-0.78632903,-0.78661895,-0.7867156,-0.7868123,-0.7865223,-0.78642565,-0.79087174,-0.7975408,-0.7995705,-0.79850733,-0.7991839,-0.8007304,-0.80150366,-0.8012137,-0.8009237,-0.80169696,-0.80266345,-0.8027601,-0.8005371,-0.79841065,-0.79783076,-0.79802406,-0.79792744,-0.79783076,-0.79763746,-0.7971542,-0.79705757,-0.7971542,-0.79705757,-0.79705757,-0.7973475,-0.7973475,-0.7971542,-0.7971542,-0.7973475,-0.7973475,-0.79763746,-0.79763746,-0.79744416,-0.79725087,-0.79705757,-0.7967676,-0.7966709,-0.7964776,-0.7965743,-0.7968642,-0.7968642,-0.7964776,-0.796381,-0.7965743,-0.7965743,-0.7965743,-0.7965743,-0.7966709,-0.7968642,-0.7968642,-0.7968642,-0.7966709,-0.7966709,-0.7967676,-0.7966709,-0.7965743,-0.7965743,-0.7965743,-0.7966709,-0.7967676,-0.7966709,-0.7964776,-0.7965743,-0.7968642,-0.7969609,-0.7969609,-0.7969609,-0.7966709,-0.7968642,-0.7989906,-0.8017936,-0.80189025,-0.7997638,-0.79783076,-0.7971542,-0.79705757,-0.79705757,-0.7973475,-0.79763746,-0.7971542,-0.7969609,-0.79705757,-0.79744416,-0.79783076,-0.79744416,-0.7967676,-0.7968642,-0.7969609,-0.7966709,-0.7965743,-0.7967676,-0.7968642,-0.7966709,-0.7966709,-0.7969609,-0.7969609,-0.7966709,-0.7965743,-0.796381,-0.7961877,-0.7961877,-0.7961877,-0.7961877,-0.7962843,-0.796381,-0.7962843,-0.7962843,-0.7961877,-0.7962843,-0.796381,-0.7964776,-0.7966709,-0.7967676,-0.7966709,-0.7968642,-0.79705757,-0.79705757,-0.79705757,-0.7971542,-0.7971542,-0.7971542,-0.79744416,-0.7977341,-0.79802406,-0.79812074,-0.7977341,-0.79744416,-0.79744416,-0.79763746,-0.79763746,-0.7975408,-0.7977341,-0.79802406,-0.79850733,-0.8001505,-0.80218023,-0.80266345,-0.80169696,-0.8012137,-0.8008271,-0.801117,-0.8006338,-0.79502785,-0.7883587,-0.7871989,-0.7875855,-0.7871989,-0.7874888,-0.7878755,-0.7873922,-0.7870056,-0.7880688,-0.7900985,-0.7917416,-0.793868,-0.7962843,-0.79821736,-0.8006338,-0.80218023,-0.80247015,-0.80266345,-0.8027601,-0.8025668,-0.80247015,-0.8025668,-0.8025668,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80247015,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80247015,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80247015,-0.80247015,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8023735,-0.8023735,-0.8016003,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8017936,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.80247015,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.801117,-0.79850733,-0.7964776,-0.7945446,-0.79154825,-0.78874534,-0.7873922,-0.7868123,-0.7868123,-0.7868123,-0.7867156,-0.7867156,-0.7870056,-0.79038846,-0.796091,-0.79850733,-0.79812074,-0.79860395,-0.79986054,-0.8012137,-0.80208355,-0.8017936,-0.80150366,-0.8017936,-0.8025668,-0.8019869,-0.7997638,-0.79831403,-0.79831403,-0.79812074,-0.79763746,-0.7973475,-0.79705757,-0.79705757,-0.79725087,-0.79744416,-0.79744416,-0.79744416,-0.7973475,-0.79725087,-0.79744416,-0.7975408,-0.7975408,-0.79763746,-0.7977341,-0.7977341,-0.79763746,-0.7973475,-0.7967676,-0.7965743,-0.7965743,-0.7965743,-0.7966709,-0.7966709,-0.7965743,-0.7964776,-0.7964776,-0.7965743,-0.7966709,-0.7966709,-0.7964776,-0.7964776,-0.7967676,-0.7969609,-0.7969609,-0.7969609,-0.7969609,-0.7967676,-0.7964776,-0.7965743,-0.7967676,-0.7967676,-0.7968642,-0.7967676,-0.7967676,-0.7967676,-0.7968642,-0.7969609,-0.7969609,-0.7969609,-0.7965743,-0.7966709,-0.7990872,-0.80218023,-0.80218023,-0.7993772,-0.79763746,-0.79705757,-0.7971542,-0.79705757,-0.7969609,-0.79705757,-0.79705757,-0.7969609,-0.7969609,-0.7971542,-0.79802406,-0.79870063,-0.79783076,-0.7967676,-0.7968642,-0.7969609,-0.7966709,-0.7967676,-0.7969609,-0.7966709,-0.7966709,-0.7971542,-0.7969609,-0.796381,-0.7962843,-0.796381,-0.7961877,-0.796091,-0.7962843,-0.7965743,-0.7964776,-0.796381,-0.796381,-0.7961877,-0.7962843,-0.7964776,-0.7964776,-0.7965743,-0.7968642,-0.7968642,-0.7967676,-0.7967676,-0.7967676,-0.7966709,-0.7968642,-0.79705757,-0.79725087,-0.79725087,-0.7973475,-0.7975408,-0.7977341,-0.79792744,-0.79792744,-0.7975408,-0.79744416,-0.79763746,-0.79763746,-0.7977341,-0.79783076,-0.7977341,-0.7987973,-0.801407,-0.80266345,-0.8012137,-0.8003438,-0.8008271,-0.8006338,-0.8010204,-0.7997638,-0.7928048,-0.7868123,-0.78661895,-0.7870056,-0.7867156,-0.7873922,-0.7876822,-0.7876822,-0.7883587,-0.7896152,-0.79038846,-0.79154825,-0.7940613,-0.7961877,-0.79792744,-0.8005371,-0.8023735,-0.80247015,-0.80247015,-0.8027601,-0.8025668,-0.80247015,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8025668,-0.80266345,-0.80247015,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80247015,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8025668,-0.80208355,-0.80227685,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80150366,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8012137,-0.79812074,-0.7961877,-0.7945446,-0.79116166,-0.7880688,-0.78661895,-0.78603905,-0.78623235,-0.7868123,-0.7872955,-0.7875855,-0.7873922,-0.7889387,-0.7923215,-0.79464126,-0.796381,-0.79850733,-0.7996672,-0.8004405,-0.801407,-0.80150366,-0.801117,-0.80131036,-0.80227685,-0.8027601,-0.8016003,-0.7992805,-0.79831403,-0.79812074,-0.7977341,-0.79725087,-0.79725087,-0.7973475,-0.79744416,-0.79744416,-0.7975408,-0.79744416,-0.79744416,-0.7977341,-0.79763746,-0.79744416,-0.79763746,-0.79792744,-0.7977341,-0.79744416,-0.7973475,-0.7971542,-0.7969609,-0.7968642,-0.7965743,-0.7964776,-0.7966709,-0.7966709,-0.7966709,-0.7965743,-0.7965743,-0.7966709,-0.7967676,-0.7966709,-0.7965743,-0.7965743,-0.7966709,-0.7968642,-0.7967676,-0.7966709,-0.7966709,-0.7968642,-0.7968642,-0.7967676,-0.7968642,-0.7968642,-0.7968642,-0.7968642,-0.7968642,-0.7968642,-0.7968642,-0.7968642,-0.7965743,-0.7965743,-0.7967676,-0.7966709,-0.79870063,-0.8025668,-0.8025668,-0.7988939,-0.7969609,-0.79705757,-0.7969609,-0.7967676,-0.7968642,-0.7967676,-0.7966709,-0.7968642,-0.7969609,-0.7968642,-0.7973475,-0.79850733,-0.79841065,-0.7971542,-0.7966709,-0.7968642,-0.7966709,-0.7965743,-0.7966709,-0.7966709,-0.7967676,-0.79705757,-0.7968642,-0.7964776,-0.7964776,-0.7964776,-0.7962843,-0.7961877,-0.7962843,-0.796381,-0.796381,-0.796381,-0.7964776,-0.7962843,-0.7961877,-0.7964776,-0.7967676,-0.7968642,-0.7968642,-0.7967676,-0.7966709,-0.7965743,-0.7966709,-0.7967676,-0.7966709,-0.7967676,-0.7971542,-0.79744416,-0.79744416,-0.7973475,-0.79763746,-0.79783076,-0.79792744,-0.79783076,-0.79763746,-0.7975408,-0.79744416,-0.7975408,-0.7977341,-0.79821736,-0.8003438,-0.8025668,-0.80218023,-0.7999572,-0.80024713,-0.8010204,-0.8008271,-0.8010204,-0.7973475,-0.7897119,-0.78632903,-0.7871022,-0.7869089,-0.7867156,-0.7870056,-0.7869089,-0.7871989,-0.7877788,-0.7879721,-0.7892286,-0.7921282,-0.794158,-0.7953178,-0.79792744,-0.8009237,-0.80227685,-0.8023735,-0.80247015,-0.8025668,-0.80247015,-0.8023735,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80247015,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8025668,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.80247015,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.80247015,-0.8023735,-0.8023735,-0.8019869,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80150366,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80247015,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.8010204,-0.79763746,-0.7964776,-0.79502785,-0.7906784,-0.7874888,-0.7869089,-0.7870056,-0.7876822,-0.7879721,-0.7874888,-0.7871989,-0.7867156,-0.7867156,-0.7878755,-0.79000187,-0.79357797,-0.79763746,-0.7994738,-0.7997638,-0.8006338,-0.8012137,-0.8010204,-0.8010204,-0.80169696,-0.80266345,-0.8027601,-0.8007304,-0.79841065,-0.7977341,-0.79763746,-0.79725087,-0.79725087,-0.7973475,-0.7973475,-0.7973475,-0.7975408,-0.79783076,-0.79763746,-0.7975408,-0.7977341,-0.7977341,-0.7975408,-0.79763746,-0.79763746,-0.79744416,-0.79705757,-0.7968642,-0.7967676,-0.7966709,-0.7966709,-0.7965743,-0.7965743,-0.7968642,-0.7968642,-0.7966709,-0.7965743,-0.7965743,-0.7964776,-0.7966709,-0.7968642,-0.7968642,-0.7968642,-0.7968642,-0.7967676,-0.7967676,-0.7967676,-0.7966709,-0.7965743,-0.7964776,-0.7966709,-0.7968642,-0.7967676,-0.7966709,-0.7967676,-0.7969609,-0.7968642,-0.7967676,-0.7966709,-0.7965743,-0.7968642,-0.7966709,-0.79850733,-0.80189025,-0.80208355,-0.79802406,-0.7962843,-0.79705757,-0.7968642,-0.7967676,-0.7969609,-0.7969609,-0.7971542,-0.79705757,-0.7969609,-0.7969609,-0.79705757,-0.7973475,-0.79725087,-0.79705757,-0.7969609,-0.7967676,-0.7965743,-0.7966709,-0.7967676,-0.7967676,-0.79705757,-0.79705757,-0.7966709,-0.7965743,-0.7966709,-0.7962843,-0.7962843,-0.796381,-0.7961877,-0.7961877,-0.796381,-0.7962843,-0.7961877,-0.7961877,-0.7962843,-0.7964776,-0.7967676,-0.7968642,-0.7968642,-0.7968642,-0.7967676,-0.7966709,-0.7967676,-0.7967676,-0.7967676,-0.7967676,-0.7969609,-0.7973475,-0.7973475,-0.79744416,-0.79763746,-0.79763746,-0.7977341,-0.7977341,-0.7977341,-0.79763746,-0.79763746,-0.7975408,-0.79802406,-0.8004405,-0.80208355,-0.8008271,-0.80005383,-0.8010204,-0.8016003,-0.8008271,-0.8006338,-0.801117,-0.796381,-0.78864866,-0.78623235,-0.7870056,-0.7869089,-0.7870056,-0.7871022,-0.7870056,-0.7870056,-0.7871022,-0.7869089,-0.7881654,-0.7926115,-0.79541445,-0.7957044,-0.79812074,-0.80131036,-0.80247015,-0.80247015,-0.80247015,-0.8025668,-0.8025668,-0.80247015,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.8025668,-0.80218023,-0.80189025,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8007304,-0.8025668,-0.80247015,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80227685,-0.8016003,-0.79802406,-0.7966709,-0.7958977,-0.7922248,-0.7880688,-0.7868123,-0.7880688,-0.78845537,-0.7871989,-0.78632903,-0.78642565,-0.78632903,-0.78632903,-0.7869089,-0.7875855,-0.7902918,-0.7957044,-0.7993772,-0.7995705,-0.80005383,-0.8012137,-0.8012137,-0.8007304,-0.8009237,-0.8019869,-0.80266345,-0.80218023,-0.7994738,-0.79783076,-0.79783076,-0.7977341,-0.79763746,-0.79763746,-0.79763746,-0.79763746,-0.79783076,-0.79792744,-0.79783076,-0.7975408,-0.79763746,-0.79783076,-0.7975408,-0.7975408,-0.7977341,-0.79744416,-0.79705757,-0.7968642,-0.7966709,-0.7966709,-0.7967676,-0.7967676,-0.7967676,-0.7968642,-0.7969609,-0.7968642,-0.7964776,-0.7961877,-0.7965743,-0.7966709,-0.7964776,-0.7964776,-0.7967676,-0.7968642,-0.7967676,-0.7966709,-0.7966709,-0.7965743,-0.7962843,-0.7965743,-0.7968642,-0.7966709,-0.7965743,-0.7965743,-0.7965743,-0.7966709,-0.7967676,-0.7967676,-0.7967676,-0.7968642,-0.79705757,-0.7968642,-0.79870063,-0.80150366,-0.8010204,-0.7973475,-0.7965743,-0.79705757,-0.7966709,-0.7968642,-0.7971542,-0.79705757,-0.7969609,-0.7969609,-0.7968642,-0.7966709,-0.7967676,-0.79705757,-0.7969609,-0.7967676,-0.7967676,-0.7966709,-0.7965743,-0.7965743,-0.7967676,-0.7968642,-0.7971542,-0.7969609,-0.7965743,-0.7966709,-0.7966709,-0.7962843,-0.7961877,-0.7962843,-0.796381,-0.7964776,-0.796381,-0.7961877,-0.7961877,-0.796381,-0.7965743,-0.7965743,-0.7967676,-0.7968642,-0.7968642,-0.7968642,-0.7968642,-0.7968642,-0.7966709,-0.7965743,-0.7967676,-0.79705757,-0.79725087,-0.79725087,-0.79725087,-0.79744416,-0.79763746,-0.79763746,-0.7977341,-0.79783076,-0.79783076,-0.79792744,-0.79792744,-0.79812074,-0.7997638,-0.8025668,-0.80189025,-0.79792744,-0.79763746,-0.8006338,-0.80150366,-0.80024713,-0.8003438,-0.8004405,-0.7957044,-0.7890353,-0.7867156,-0.7868123,-0.78661895,-0.7867156,-0.7868123,-0.7870056,-0.7871989,-0.7871989,-0.7867156,-0.78826207,-0.7929981,-0.7957044,-0.79580104,-0.79821736,-0.80150366,-0.8025668,-0.8025668,-0.80266345,-0.8025668,-0.8025668,-0.80247015,-0.80247015,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80285674,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8017936,-0.801407,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80169696,-0.80247015,-0.80247015,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80247015,-0.80218023,-0.79870063,-0.7962843,-0.7961877,-0.794158,-0.7895186,-0.7872955,-0.7880688,-0.7878755,-0.78661895,-0.7865223,-0.7867156,-0.7865223,-0.7865223,-0.7868123,-0.7871022,-0.78826207,-0.79164493,-0.796381,-0.7993772,-0.80005383,-0.8007304,-0.80169696,-0.8012137,-0.8003438,-0.8010204,-0.8023735,-0.80266345,-0.80131036,-0.7988939,-0.79792744,-0.79802406,-0.79783076,-0.79763746,-0.79763746,-0.79783076,-0.79783076,-0.7977341,-0.7977341,-0.7977341,-0.79763746,-0.7975408,-0.79763746,-0.79783076,-0.79763746,-0.79725087,-0.7969609,-0.7967676,-0.7968642,-0.7968642,-0.7967676,-0.7966709,-0.7967676,-0.7967676,-0.7967676,-0.7967676,-0.7966709,-0.7966709,-0.7967676,-0.7967676,-0.7966709,-0.7965743,-0.7967676,-0.7968642,-0.7967676,-0.7966709,-0.7966709,-0.7965743,-0.796381,-0.7965743,-0.7967676,-0.7965743,-0.7964776,-0.7964776,-0.7965743,-0.7965743,-0.7964776,-0.7968642,-0.7968642,-0.7968642,-0.7969609,-0.7965743,-0.79783076,-0.80005383,-0.7992805,-0.7968642,-0.7967676,-0.79705757,-0.7967676,-0.7969609,-0.7971542,-0.7971542,-0.7971542,-0.7968642,-0.7967676,-0.7968642,-0.7966709,-0.7966709,-0.7967676,-0.7965743,-0.7964776,-0.7966709,-0.7966709,-0.7965743,-0.7968642,-0.7971542,-0.79725087,-0.7969609,-0.7966709,-0.7965743,-0.7964776,-0.7962843,-0.7961877,-0.796381,-0.7965743,-0.7964776,-0.7961877,-0.7962843,-0.7965743,-0.7965743,-0.7965743,-0.7967676,-0.79705757,-0.7969609,-0.7968642,-0.7969609,-0.7969609,-0.7967676,-0.7967676,-0.7967676,-0.7968642,-0.7971542,-0.7973475,-0.7973475,-0.7975408,-0.7977341,-0.79763746,-0.79763746,-0.7977341,-0.7977341,-0.79792744,-0.79802406,-0.79792744,-0.7990872,-0.80150366,-0.8025668,-0.80169696,-0.8005371,-0.80005383,-0.8006338,-0.8004405,-0.8001505,-0.8010204,-0.79763746,-0.7898086,-0.7865223,-0.7871022,-0.7868123,-0.7867156,-0.7868123,-0.7867156,-0.7871022,-0.7874888,-0.7872955,-0.7868123,-0.78874534,-0.7930947,-0.79541445,-0.7959944,-0.79850733,-0.8016003,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.80247015,-0.8025668,-0.8025668,-0.8023735,-0.8023735,-0.80218023,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80208355,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80285674,-0.8025668,-0.8025668,-0.7992805,-0.796381,-0.7961877,-0.7943513,-0.79106504,-0.7894219,-0.7880688,-0.7869089,-0.7869089,-0.7868123,-0.78661895,-0.7865223,-0.7865223,-0.7868123,-0.7871989,-0.7872955,-0.7873922,-0.79116166,-0.79783076,-0.8003438,-0.7997638,-0.8012137,-0.80208355,-0.8009237,-0.8007304,-0.8016003,-0.8025668,-0.80266345,-0.8009237,-0.79850733,-0.79783076,-0.79792744,-0.79783076,-0.79783076,-0.79783076,-0.79783076,-0.79792744,-0.79802406,-0.79783076,-0.7977341,-0.7977341,-0.79783076,-0.79763746,-0.7975408,-0.7973475,-0.7971542,-0.7969609,-0.7968642,-0.7968642,-0.7967676,-0.7967676,-0.7967676,-0.7968642,-0.7968642,-0.7969609,-0.7968642,-0.7965743,-0.7965743,-0.7967676,-0.7967676,-0.7967676,-0.7968642,-0.7967676,-0.7967676,-0.7967676,-0.7967676,-0.7966709,-0.7965743,-0.7966709,-0.7966709,-0.7965743,-0.7964776,-0.7964776,-0.7965743,-0.7967676,-0.7968642,-0.7971542,-0.79705757,-0.7968642,-0.7969609,-0.7965743,-0.7971542,-0.79860395,-0.79821736,-0.7968642,-0.7969609,-0.79705757,-0.7968642,-0.79705757,-0.7973475,-0.7975408,-0.7973475,-0.79705757,-0.7971542,-0.7969609,-0.7967676,-0.7967676,-0.7967676,-0.7966709,-0.7966709,-0.7967676,-0.7967676,-0.7967676,-0.79705757,-0.7971542,-0.7969609,-0.7967676,-0.7965743,-0.7964776,-0.796381,-0.796381,-0.796381,-0.796381,-0.796381,-0.796381,-0.796381,-0.796381,-0.7965743,-0.7966709,-0.7966709,-0.7967676,-0.7968642,-0.7969609,-0.7968642,-0.7967676,-0.7967676,-0.7969609,-0.7969609,-0.7969609,-0.79725087,-0.7975408,-0.7975408,-0.7975408,-0.7977341,-0.79763746,-0.7975408,-0.79783076,-0.79792744,-0.7977341,-0.7977341,-0.79802406,-0.7987973,-0.8010204,-0.80266345,-0.80218023,-0.801407,-0.8009237,-0.8005371,-0.8005371,-0.7997638,-0.8003438,-0.8005371,-0.79425466,-0.7870056,-0.78613573,-0.7870056,-0.7868123,-0.7869089,-0.7868123,-0.7868123,-0.7871022,-0.7875855,-0.7873922,-0.7868123,-0.788842,-0.7929981,-0.79522115,-0.7962843,-0.7991839,-0.80218023,-0.8027601,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80247015,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80247015,-0.8025668,-0.80266345,-0.80247015,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80208355,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8019869,-0.80266345,-0.8025668,-0.80285674,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8005371,-0.7973475,-0.7958977,-0.79425466,-0.7917416,-0.7893253,-0.7871989,-0.78642565,-0.7868123,-0.7868123,-0.7870056,-0.7871022,-0.7871989,-0.7871989,-0.7869089,-0.7868123,-0.78661895,-0.7873922,-0.7927081,-0.79870063,-0.80005383,-0.8004405,-0.80189025,-0.8017936,-0.801117,-0.80131036,-0.8017936,-0.8027601,-0.8027601,-0.8008271,-0.79860395,-0.79802406,-0.79821736,-0.79802406,-0.79792744,-0.79802406,-0.79802406,-0.79792744,-0.79802406,-0.79802406,-0.79763746,-0.7975408,-0.79763746,-0.79763746,-0.7973475,-0.7969609,-0.7969609,-0.7969609,-0.7968642,-0.7968642,-0.7969609,-0.7968642,-0.7966709,-0.7966709,-0.7969609,-0.7969609,-0.7966709,-0.7966709,-0.7965743,-0.7966709,-0.7969609,-0.7969609,-0.7967676,-0.7967676,-0.7967676,-0.7966709,-0.7966709,-0.7968642,-0.7968642,-0.7969609,-0.7968642,-0.7966709,-0.7966709,-0.7966709,-0.7967676,-0.7969609,-0.79705757,-0.7968642,-0.7968642,-0.79705757,-0.7968642,-0.7971542,-0.79792744,-0.7977341,-0.7968642,-0.7968642,-0.79705757,-0.79705757,-0.79725087,-0.79744416,-0.79763746,-0.79763746,-0.7973475,-0.79705757,-0.7968642,-0.7968642,-0.7967676,-0.7967676,-0.7969609,-0.7968642,-0.7967676,-0.7969609,-0.79705757,-0.79705757,-0.7969609,-0.7966709,-0.7964776,-0.7965743,-0.7965743,-0.7965743,-0.7964776,-0.796381,-0.796381,-0.7964776,-0.796381,-0.7962843,-0.796381,-0.7965743,-0.7966709,-0.7966709,-0.7966709,-0.7967676,-0.7968642,-0.7967676,-0.7966709,-0.7967676,-0.7968642,-0.79705757,-0.79725087,-0.79744416,-0.79763746,-0.79783076,-0.79783076,-0.7977341,-0.7977341,-0.79792744,-0.79792744,-0.79783076,-0.79783076,-0.79783076,-0.79841065,-0.8004405,-0.80247015,-0.80266345,-0.80208355,-0.801407,-0.8009237,-0.8008271,-0.80005383,-0.7997638,-0.8008271,-0.79763746,-0.7902918,-0.7867156,-0.7867156,-0.7865223,-0.7869089,-0.7871022,-0.7868123,-0.7867156,-0.78661895,-0.7871989,-0.7871989,-0.7868123,-0.7894219,-0.793868,-0.79541445,-0.796381,-0.7997638,-0.8023735,-0.80247015,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.80247015,-0.80247015,-0.80266345,-0.8027601,-0.80247015,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8023735,-0.80218023,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.801407,-0.8025668,-0.8023735,-0.8025668,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80247015,-0.80189025,-0.79860395,-0.796091,-0.79502785,-0.7930947,-0.79019517,-0.7878755,-0.7871022,-0.7872955,-0.7874888,-0.7874888,-0.7873922,-0.7871022,-0.7869089,-0.7869089,-0.7872955,-0.7874888,-0.78623235,-0.7880688,-0.79541445,-0.8003438,-0.8001505,-0.8007304,-0.80218023,-0.80189025,-0.801407,-0.80169696,-0.80208355,-0.8027601,-0.8027601,-0.8009237,-0.7988939,-0.79850733,-0.79860395,-0.79821736,-0.79802406,-0.79812074,-0.79802406,-0.79792744,-0.79783076,-0.79783076,-0.79763746,-0.79744416,-0.7973475,-0.79725087,-0.79705757,-0.7969609,-0.79705757,-0.7969609,-0.7967676,-0.7967676,-0.7967676,-0.7967676,-0.7967676,-0.7968642,-0.7968642,-0.7968642,-0.7967676,-0.7965743,-0.7967676,-0.7971542,-0.7971542,-0.7968642,-0.7966709,-0.7966709,-0.7967676,-0.7968642,-0.7969609,-0.79705757,-0.7971542,-0.7971542,-0.7968642,-0.7966709,-0.7966709,-0.7966709,-0.7968642,-0.79705757,-0.7969609,-0.79705757,-0.7969609,-0.7967676,-0.79792744,-0.7988939,-0.7977341,-0.7966709,-0.7969609,-0.7969609,-0.7969609,-0.7971542,-0.79725087,-0.79763746,-0.79792744,-0.7977341,-0.79744416,-0.79725087,-0.79725087,-0.7971542,-0.79705757,-0.79705757,-0.79725087,-0.7973475,-0.7973475,-0.7971542,-0.7968642,-0.7966709,-0.7968642,-0.7967676,-0.7965743,-0.7965743,-0.7964776,-0.796381,-0.7964776,-0.7964776,-0.796381,-0.7962843,-0.796381,-0.796381,-0.796381,-0.7965743,-0.7967676,-0.7966709,-0.7967676,-0.7968642,-0.7967676,-0.7968642,-0.7968642,-0.7969609,-0.79725087,-0.79725087,-0.7973475,-0.79763746,-0.79783076,-0.79783076,-0.79792744,-0.79802406,-0.79792744,-0.7977341,-0.79783076,-0.7977341,-0.79792744,-0.7995705,-0.80189025,-0.8025668,-0.80218023,-0.8017936,-0.8012137,-0.80131036,-0.8012137,-0.80005383,-0.8006338,-0.79986054,-0.793288,-0.7873922,-0.7868123,-0.7868123,-0.78632903,-0.78661895,-0.7868123,-0.7870056,-0.7871022,-0.78661895,-0.7865223,-0.7865223,-0.7868123,-0.79019517,-0.7945446,-0.79560775,-0.7968642,-0.8005371,-0.8025668,-0.8025668,-0.8025668,-0.8025668,-0.8025668,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8025668,-0.80247015,-0.8025668,-0.80169696,-0.80169696,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80218023,-0.8025668,-0.80247015,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80247015,-0.80266345,-0.8003438,-0.7971542,-0.79560775,-0.7945446,-0.7923215,-0.7899052,-0.7883587,-0.7876822,-0.7875855,-0.7872955,-0.7870056,-0.7871022,-0.7874888,-0.7874888,-0.7871022,-0.7874888,-0.7872955,-0.7870056,-0.79135495,-0.79831403,-0.8004405,-0.7996672,-0.8010204,-0.80227685,-0.80169696,-0.801407,-0.8017936,-0.80227685,-0.8027601,-0.80266345,-0.8009237,-0.7992805,-0.79860395,-0.79821736,-0.79792744,-0.79792744,-0.79792744,-0.79783076,-0.79783076,-0.79792744,-0.79783076,-0.7977341,-0.79763746,-0.7973475,-0.7971542,-0.79705757,-0.79705757,-0.79705757,-0.7969609,-0.7969609,-0.7968642,-0.7967676,-0.7967676,-0.7968642,-0.7968642,-0.7969609,-0.7968642,-0.7965743,-0.7965743,-0.7969609,-0.7971542,-0.79705757,-0.7967676,-0.7966709,-0.7967676,-0.7969609,-0.7969609,-0.79705757,-0.79744416,-0.79744416,-0.7969609,-0.7966709,-0.7966709,-0.7967676,-0.79705757,-0.7971542,-0.7969609,-0.7969609,-0.7968642,-0.79705757,-0.79841065,-0.79870063,-0.7971542,-0.7967676,-0.79725087,-0.7969609,-0.7969609,-0.7971542,-0.7973475,-0.79763746,-0.79763746,-0.79763746,-0.7975408,-0.7973475,-0.7973475,-0.7973475,-0.7973475,-0.7975408,-0.79763746,-0.7973475,-0.7968642,-0.7967676,-0.7968642,-0.7968642,-0.7968642,-0.7966709,-0.7965743,-0.7965743,-0.7966709,-0.7965743,-0.7964776,-0.7964776,-0.796381,-0.7964776,-0.7964776,-0.7964776,-0.7964776,-0.7965743,-0.7967676,-0.7967676,-0.7966709,-0.7966709,-0.7967676,-0.7967676,-0.7967676,-0.7968642,-0.79705757,-0.79725087,-0.79744416,-0.79763746,-0.7977341,-0.79783076,-0.79783076,-0.79783076,-0.79763746,-0.7977341,-0.79812074,-0.79792744,-0.7987973,-0.8012137,-0.8027601,-0.80227685,-0.8016003,-0.801117,-0.801117,-0.80131036,-0.80005383,-0.80024713,-0.8009237,-0.79522115,-0.7875855,-0.78632903,-0.7874888,-0.7869089,-0.78642565,-0.78642565,-0.78661895,-0.7868123,-0.78642565,-0.7865223,-0.7871022,-0.7869089,-0.7872955,-0.7906784,-0.7943513,-0.7955111,-0.79783076,-0.801407,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.80227685,-0.80266345,-0.80266345,-0.80227685,-0.8023735,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80218023,-0.8027601,-0.80247015,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80247015,-0.8025668,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8023735,-0.80208355,-0.7990872,-0.7967676,-0.79580104,-0.7947379,-0.7925148,-0.79019517,-0.78874534,-0.7876822,-0.7871989,-0.7873922,-0.7875855,-0.7876822,-0.7874888,-0.7871989,-0.7872955,-0.7876822,-0.7872955,-0.7871989,-0.79135495,-0.7975408,-0.7997638,-0.7997638,-0.8012137,-0.8017936,-0.8010204,-0.8012137,-0.80208355,-0.8023735,-0.8027601,-0.8023735,-0.8003438,-0.79860395,-0.79812074,-0.79792744,-0.79792744,-0.79792744,-0.7977341,-0.79763746,-0.79763746,-0.79783076,-0.79792744,-0.7977341,-0.79744416,-0.79725087,-0.79705757,-0.7969609,-0.79705757,-0.7971542,-0.79725087,-0.7971542,-0.7969609,-0.7968642,-0.7967676,-0.7969609,-0.79705757,-0.7971542,-0.7969609,-0.7966709,-0.7967676,-0.79705757,-0.79705757,-0.7969609,-0.7968642,-0.7969609,-0.79725087,-0.7973475,-0.7973475,-0.79725087,-0.7973475,-0.79725087,-0.7969609,-0.7969609,-0.79705757,-0.7971542,-0.7969609,-0.7969609,-0.79705757,-0.7967676,-0.7971542,-0.79850733,-0.79850733,-0.79725087,-0.79705757,-0.79725087,-0.79725087,-0.79725087,-0.79725087,-0.7971542,-0.79725087,-0.7973475,-0.79725087,-0.7971542,-0.7971542,-0.7971542,-0.79725087,-0.79725087,-0.7973475,-0.79725087,-0.7971542,-0.7969609,-0.7969609,-0.7969609,-0.7968642,-0.7967676,-0.7967676,-0.7965743,-0.7964776,-0.7965743,-0.7965743,-0.7965743,-0.7965743,-0.7964776,-0.7964776,-0.796381,-0.7964776,-0.7965743,-0.7965743,-0.7966709,-0.7967676,-0.7967676,-0.7967676,-0.7966709,-0.7966709,-0.7968642,-0.7968642,-0.7969609,-0.7971542,-0.79725087,-0.79744416,-0.79744416,-0.79744416,-0.79763746,-0.7977341,-0.7975408,-0.7977341,-0.79783076,-0.79812074,-0.8001505,-0.8023735,-0.80218023,-0.80131036,-0.8010204,-0.8007304,-0.801407,-0.8010204,-0.7999572,-0.8009237,-0.79841065,-0.7902918,-0.78603905,-0.7865223,-0.78642565,-0.78632903,-0.7868123,-0.7869089,-0.7870056,-0.78632903,-0.7855558,-0.7867156,-0.7878755,-0.7868123,-0.7877788,-0.7924181,-0.79512453,-0.79560775,-0.7987973,-0.80208355,-0.80247015,-0.8023735,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.80227685,-0.8019869,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8016003,-0.80208355,-0.80247015,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.8023735,-0.8025668,-0.8027601,-0.8027601,-0.80131036,-0.79870063,-0.7973475,-0.7968642,-0.7949312,-0.7927081,-0.79096836,-0.788842,-0.7874888,-0.7875855,-0.7873922,-0.7871989,-0.7873922,-0.7874888,-0.7872955,-0.7874888,-0.7877788,-0.7865223,-0.7868123,-0.7931914,-0.7996672,-0.80005383,-0.7996672,-0.801117,-0.8010204,-0.8004405,-0.8012137,-0.80208355,-0.8023735,-0.8027601,-0.80189025,-0.7996672,-0.79821736,-0.79792744,-0.79783076,-0.7977341,-0.79763746,-0.7975408,-0.7975408,-0.7975408,-0.7975408,-0.79725087,-0.7971542,-0.7971542,-0.79705757,-0.7969609,-0.7971542,-0.79725087,-0.79744416,-0.79763746,-0.7973475,-0.7968642,-0.7968642,-0.79705757,-0.7969609,-0.7969609,-0.7971542,-0.7969609,-0.7966709,-0.7969609,-0.7971542,-0.7969609,-0.7967676,-0.7969609,-0.79725087,-0.79763746,-0.7977341,-0.7973475,-0.79725087,-0.79725087,-0.79725087,-0.7971542,-0.7971542,-0.7971542,-0.79705757,-0.7969609,-0.7971542,-0.7968642,-0.79725087,-0.7988939,-0.7989906,-0.79744416,-0.79705757,-0.79725087,-0.7967676,-0.7967676,-0.79725087,-0.7971542,-0.79705757,-0.7971542,-0.79725087,-0.7971542,-0.79705757,-0.79705757,-0.79705757,-0.7971542,-0.7973475,-0.79725087,-0.79705757,-0.79705757,-0.7969609,-0.7967676,-0.7967676,-0.7965743,-0.7964776,-0.7966709,-0.7966709,-0.7965743,-0.7965743,-0.7964776,-0.796381,-0.7964776,-0.7965743,-0.7965743,-0.7964776,-0.7965743,-0.7965743,-0.7966709,-0.7968642,-0.7967676,-0.7966709,-0.7969609,-0.79705757,-0.7969609,-0.79705757,-0.79705757,-0.79705757,-0.79725087,-0.7973475,-0.79725087,-0.79725087,-0.79744416,-0.7973475,-0.7975408,-0.79792744,-0.79802406,-0.7992805,-0.8017936,-0.8025668,-0.80189025,-0.801407,-0.8008271,-0.8009237,-0.8009237,-0.7999572,-0.8009237,-0.79986054,-0.7923215,-0.78661895,-0.7871022,-0.7874888,-0.7868123,-0.7867156,-0.7871022,-0.7872955,-0.7871989,-0.7867156,-0.7867156,-0.7874888,-0.7871989,-0.78603905,-0.7883587,-0.79348135,-0.7953178,-0.7962843,-0.80005383,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.80285674,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8023735,-0.8023735,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8023735,-0.80266345,-0.80247015,-0.80247015,-0.80208355,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80227685,-0.80247015,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80247015,-0.8023735,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80247015,-0.8007304,-0.7988939,-0.79763746,-0.7964776,-0.79522115,-0.793868,-0.7917416,-0.7896152,-0.78826207,-0.7874888,-0.7874888,-0.7873922,-0.7872955,-0.7875855,-0.7873922,-0.7872955,-0.7876822,-0.7877788,-0.79106504,-0.7973475,-0.79986054,-0.7989906,-0.7994738,-0.8004405,-0.8004405,-0.8007304,-0.8016003,-0.80218023,-0.80247015,-0.80266345,-0.801117,-0.7988939,-0.79792744,-0.79792744,-0.7977341,-0.7975408,-0.79763746,-0.7975408,-0.79744416,-0.79744416,-0.79725087,-0.79705757,-0.79705757,-0.79705757,-0.7971542,-0.79744416,-0.79763746,-0.79792744,-0.79812074,-0.7977341,-0.79705757,-0.7969609,-0.79705757,-0.79705757,-0.7969609,-0.79705757,-0.7971542,-0.7969609,-0.7969609,-0.79705757,-0.7969609,-0.79705757,-0.79725087,-0.7971542,-0.7971542,-0.79725087,-0.7973475,-0.79725087,-0.79725087,-0.79725087,-0.7973475,-0.79725087,-0.79725087,-0.79725087,-0.79725087,-0.7973475,-0.79705757,-0.7973475,-0.79870063,-0.79860395,-0.79725087,-0.7968642,-0.7971542,-0.7969609,-0.79705757,-0.7973475,-0.7973475,-0.79725087,-0.7971542,-0.79725087,-0.79725087,-0.79725087,-0.79725087,-0.7971542,-0.79725087,-0.79744416,-0.7973475,-0.79705757,-0.7969609,-0.7969609,-0.7967676,-0.7966709,-0.7966709,-0.7965743,-0.7966709,-0.7967676,-0.7966709,-0.7966709,-0.7965743,-0.7964776,-0.7966709,-0.7966709,-0.7965743,-0.7965743,-0.7966709,-0.7967676,-0.7967676,-0.7967676,-0.7968642,-0.79725087,-0.79763746,-0.7977341,-0.79744416,-0.7973475,-0.79725087,-0.79725087,-0.79725087,-0.7971542,-0.79705757,-0.79725087,-0.79744416,-0.79763746,-0.79783076,-0.79802406,-0.7990872,-0.8012137,-0.80247015,-0.80227685,-0.8017936,-0.801117,-0.8009237,-0.801117,-0.7999572,-0.8003438,-0.80131036,-0.7953178,-0.7871989,-0.7856524,-0.78661895,-0.78642565,-0.7871022,-0.7875855,-0.7871022,-0.78661895,-0.78642565,-0.7868123,-0.7873922,-0.7870056,-0.78603905,-0.7870056,-0.79087174,-0.7936747,-0.79464126,-0.79792744,-0.8019869,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8025668,-0.80247015,-0.80247015,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8023735,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8023735,-0.8009237,-0.7993772,-0.79792744,-0.7968642,-0.7961877,-0.79541445,-0.7936747,-0.7904851,-0.7880688,-0.7874888,-0.7874888,-0.7874888,-0.7875855,-0.7874888,-0.7874888,-0.7879721,-0.7874888,-0.7871989,-0.79154825,-0.79763746,-0.7993772,-0.79860395,-0.7990872,-0.80024713,-0.8005371,-0.8009237,-0.8017936,-0.8023735,-0.8027601,-0.80247015,-0.8005371,-0.79850733,-0.79812074,-0.79802406,-0.79792744,-0.79783076,-0.7975408,-0.7973475,-0.7973475,-0.7971542,-0.79705757,-0.79705757,-0.79725087,-0.7973475,-0.79744416,-0.7977341,-0.79802406,-0.79792744,-0.7977341,-0.7973475,-0.79705757,-0.7968642,-0.7969609,-0.79705757,-0.7969609,-0.7968642,-0.7969609,-0.79705757,-0.7971542,-0.7971542,-0.79705757,-0.79725087,-0.79744416,-0.7973475,-0.79725087,-0.7973475,-0.79744416,-0.79725087,-0.7973475,-0.79744416,-0.7973475,-0.79725087,-0.79725087,-0.79725087,-0.79725087,-0.7969609,-0.7973475,-0.79841065,-0.79850733,-0.7975408,-0.79725087,-0.79725087,-0.7971542,-0.7971542,-0.7973475,-0.79744416,-0.7973475,-0.7973475,-0.79744416,-0.7975408,-0.79763746,-0.7977341,-0.7977341,-0.79792744,-0.79792744,-0.79744416,-0.79705757,-0.79705757,-0.7971542,-0.7969609,-0.7967676,-0.7967676,-0.7966709,-0.7967676,-0.7968642,-0.7967676,-0.7967676,-0.7967676,-0.7965743,-0.7964776,-0.7966709,-0.7967676,-0.7968642,-0.7968642,-0.7967676,-0.7965743,-0.7967676,-0.79725087,-0.7977341,-0.79783076,-0.79783076,-0.79783076,-0.7977341,-0.79744416,-0.79744416,-0.79725087,-0.79705757,-0.79725087,-0.7975408,-0.7977341,-0.79792744,-0.79783076,-0.79850733,-0.8007304,-0.80247015,-0.8023735,-0.80189025,-0.8009237,-0.8005371,-0.801117,-0.8003438,-0.7997638,-0.8009237,-0.79725087,-0.7890353,-0.7857491,-0.7867156,-0.78642565,-0.7859424,-0.7867156,-0.7874888,-0.7872955,-0.7867156,-0.78642565,-0.78613573,-0.78632903,-0.78613573,-0.7859424,-0.7890353,-0.7929981,-0.7939647,-0.79560775,-0.8003438,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.8025668,-0.8023735,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.80247015,-0.8025668,-0.80285674,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8023735,-0.80189025,-0.8004405,-0.79841065,-0.7973475,-0.7969609,-0.7958977,-0.79348135,-0.7900985,-0.7877788,-0.7872955,-0.7874888,-0.7874888,-0.7874888,-0.7875855,-0.7873922,-0.7871022,-0.78603905,-0.7870056,-0.7929981,-0.79841065,-0.7989906,-0.79831403,-0.7989906,-0.79986054,-0.8004405,-0.80131036,-0.80208355,-0.80247015,-0.8027601,-0.80227685,-0.7999572,-0.79821736,-0.79812074,-0.79802406,-0.79783076,-0.7977341,-0.7975408,-0.79744416,-0.79725087,-0.79705757,-0.79705757,-0.79744416,-0.79763746,-0.79763746,-0.79783076,-0.79812074,-0.79812074,-0.79783076,-0.79744416,-0.79725087,-0.79705757,-0.79705757,-0.79705757,-0.7969609,-0.7969609,-0.7969609,-0.7969609,-0.79705757,-0.79705757,-0.7969609,-0.7971542,-0.79744416,-0.79744416,-0.7973475,-0.79744416,-0.79744416,-0.79744416,-0.79763746,-0.7975408,-0.7973475,-0.79725087,-0.79725087,-0.79725087,-0.79725087,-0.7969609,-0.79744416,-0.79860395,-0.79831403,-0.7973475,-0.79725087,-0.79725087,-0.79705757,-0.79725087,-0.7975408,-0.7975408,-0.79725087,-0.79725087,-0.7975408,-0.79783076,-0.79821736,-0.79831403,-0.79802406,-0.79802406,-0.79812074,-0.7975408,-0.7969609,-0.7968642,-0.7969609,-0.7969609,-0.7967676,-0.7966709,-0.7966709,-0.7968642,-0.79705757,-0.79705757,-0.7971542,-0.79725087,-0.79705757,-0.7968642,-0.7968642,-0.7968642,-0.7968642,-0.7968642,-0.7968642,-0.7968642,-0.79705757,-0.7973475,-0.79783076,-0.79812074,-0.79802406,-0.79792744,-0.79783076,-0.7977341,-0.7977341,-0.79763746,-0.79763746,-0.79783076,-0.79792744,-0.79783076,-0.7977341,-0.79860395,-0.8007304,-0.80227685,-0.80247015,-0.80218023,-0.8012137,-0.8003438,-0.8008271,-0.8004405,-0.79986054,-0.8012137,-0.79870063,-0.7904851,-0.78603905,-0.7867156,-0.78642565,-0.78603905,-0.7869089,-0.7871989,-0.7871022,-0.7871989,-0.7870056,-0.7865223,-0.7857491,-0.7858457,-0.7869089,-0.788842,-0.7921282,-0.7939647,-0.79464126,-0.79831403,-0.80218023,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.8025668,-0.80218023,-0.80247015,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80247015,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8023735,-0.8007304,-0.79850733,-0.79705757,-0.7966709,-0.7958977,-0.7927081,-0.78855205,-0.7867156,-0.7873922,-0.7877788,-0.7874888,-0.7871022,-0.7868123,-0.7871989,-0.7874888,-0.78661895,-0.789132,-0.7955111,-0.7989906,-0.79860395,-0.79850733,-0.7990872,-0.7996672,-0.8006338,-0.8016003,-0.80227685,-0.8025668,-0.8027601,-0.80189025,-0.7995705,-0.79821736,-0.79821736,-0.79812074,-0.79802406,-0.79812074,-0.79792744,-0.7973475,-0.7971542,-0.7971542,-0.79725087,-0.79744416,-0.7977341,-0.79792744,-0.79802406,-0.79812074,-0.79783076,-0.7975408,-0.79744416,-0.7973475,-0.79725087,-0.79705757,-0.7969609,-0.79725087,-0.79725087,-0.79705757,-0.7971542,-0.7971542,-0.7971542,-0.79744416,-0.7975408,-0.79744416,-0.7975408,-0.7975408,-0.79763746,-0.7977341,-0.79763746,-0.79744416,-0.7973475,-0.79744416,-0.7973475,-0.79725087,-0.7973475,-0.7971542,-0.7975408,-0.79850733,-0.79831403,-0.7973475,-0.7971542,-0.7971542,-0.7971542,-0.7977341,-0.79802406,-0.79763746,-0.7973475,-0.7973475,-0.7975408,-0.7977341,-0.79783076,-0.79763746,-0.79763746,-0.7977341,-0.79763746,-0.79744416,-0.7971542,-0.7971542,-0.7971542,-0.7968642,-0.7966709,-0.7967676,-0.7968642,-0.7969609,-0.79705757,-0.79725087,-0.79744416,-0.7975408,-0.79763746,-0.7975408,-0.7973475,-0.7969609,-0.7967676,-0.7966709,-0.7967676,-0.7969609,-0.79725087,-0.7975408,-0.79783076,-0.79821736,-0.79841065,-0.79821736,-0.79802406,-0.79792744,-0.79802406,-0.79802406,-0.79802406,-0.79802406,-0.79812074,-0.79821736,-0.7991839,-0.8012137,-0.8025668,-0.80247015,-0.80208355,-0.80131036,-0.7999572,-0.80005383,-0.80024713,-0.7996672,-0.8010204,-0.8004405,-0.7930947,-0.7867156,-0.78661895,-0.7871022,-0.78613573,-0.7867156,-0.7872955,-0.7867156,-0.7865223,-0.7865223,-0.78623235,-0.78632903,-0.7871022,-0.7883587,-0.79038846,-0.7928048,-0.793868,-0.79444796,-0.79763746,-0.8016003,-0.80266345,-0.80247015,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80247015,-0.8025668,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.8025668,-0.8025668,-0.8025668,-0.8025668,-0.8008271,-0.79792744,-0.7967676,-0.7964776,-0.79464126,-0.79096836,-0.7879721,-0.7876822,-0.7880688,-0.7875855,-0.7872955,-0.7871989,-0.7871989,-0.7874888,-0.7871022,-0.7872955,-0.7918382,-0.7973475,-0.7990872,-0.7987973,-0.7988939,-0.7991839,-0.7996672,-0.8003438,-0.80150366,-0.80218023,-0.8023735,-0.8027601,-0.8017936,-0.7996672,-0.79860395,-0.79850733,-0.79821736,-0.79812074,-0.79812074,-0.7975408,-0.7971542,-0.7973475,-0.79744416,-0.7975408,-0.7977341,-0.79792744,-0.79812074,-0.79812074,-0.79783076,-0.79744416,-0.79725087,-0.79725087,-0.7973475,-0.79725087,-0.79705757,-0.7971542,-0.79725087,-0.7971542,-0.79705757,-0.7971542,-0.7971542,-0.7971542,-0.79744416,-0.79792744,-0.79821736,-0.79821736,-0.79792744,-0.7977341,-0.79763746,-0.79763746,-0.79744416,-0.79744416,-0.79744416,-0.79744416,-0.79744416,-0.79725087,-0.79783076,-0.7987973,-0.79831403,-0.7973475,-0.79725087,-0.7973475,-0.79744416,-0.79792744,-0.79821736,-0.79792744,-0.7975408,-0.7973475,-0.79744416,-0.79744416,-0.7973475,-0.7973475,-0.79725087,-0.79725087,-0.7973475,-0.7973475,-0.7971542,-0.79725087,-0.7971542,-0.7967676,-0.7965743,-0.7966709,-0.7968642,-0.79705757,-0.7971542,-0.7973475,-0.79744416,-0.7975408,-0.79763746,-0.7977341,-0.79783076,-0.79763746,-0.7971542,-0.7968642,-0.7965743,-0.7967676,-0.79744416,-0.7977341,-0.79763746,-0.79783076,-0.79831403,-0.79850733,-0.79831403,-0.79802406,-0.79802406,-0.79812074,-0.79802406,-0.79802406,-0.79870063,-0.8001505,-0.8019869,-0.80266345,-0.80218023,-0.80218023,-0.8017936,-0.80005383,-0.7995705,-0.80005383,-0.7996672,-0.8005371,-0.8007304,-0.79483455,-0.7879721,-0.7867156,-0.7871022,-0.78623235,-0.78661895,-0.7880688,-0.7879721,-0.7865223,-0.7857491,-0.7858457,-0.7865223,-0.78845537,-0.79096836,-0.7922248,-0.7929981,-0.7940613,-0.79512453,-0.79783076,-0.80131036,-0.8027601,-0.80266345,-0.8025668,-0.80247015,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80247015,-0.8025668,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.80266345,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80131036,-0.80208355,-0.8023735,-0.8025668,-0.80266345,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8025668,-0.80227685,-0.8023735,-0.8025668,-0.80247015,-0.80266345,-0.8025668,-0.8001505,-0.7967676,-0.79580104,-0.796091,-0.794158,-0.79038846,-0.7878755,-0.7874888,-0.7876822,-0.7876822,-0.7876822,-0.7874888,-0.7873922,-0.7871989,-0.7869089,-0.7889387,-0.79348135,-0.79744416,-0.7989906,-0.7993772,-0.7993772,-0.7992805,-0.7995705,-0.8006338,-0.80189025,-0.8023735,-0.80266345,-0.8027601,-0.80189025,-0.7997638,-0.79850733,-0.79831403,-0.79831403,-0.79792744,-0.79744416,-0.7971542,-0.7973475,-0.7977341,-0.79783076,-0.79792744,-0.79802406,-0.79812074,-0.79802406,-0.7977341,-0.79744416,-0.7973475,-0.79744416,-0.79744416,-0.79744416,-0.79725087,-0.79705757,-0.79725087,-0.79725087,-0.79705757,-0.79705757,-0.7971542,-0.7973475,-0.7975408,-0.79792744,-0.79850733,-0.79870063,-0.79821736,-0.79792744,-0.79783076,-0.7977341,-0.7975408,-0.7975408,-0.7975408,-0.7975408,-0.79744416,-0.79744416,-0.79821736,-0.7987973,-0.79831403,-0.7975408,-0.7973475,-0.7975408,-0.79763746,-0.79783076,-0.79802406,-0.79792744,-0.79744416,-0.79725087,-0.79744416,-0.7975408,-0.79744416,-0.79744416,-0.7973475,-0.79705757,-0.79705757,-0.7971542,-0.7969609,-0.7968642,-0.7968642,-0.7969609,-0.7969609,-0.7969609,-0.7968642,-0.7969609,-0.79705757,-0.7971542,-0.7973475,-0.79763746,-0.7977341,-0.79792744,-0.79792744,-0.79783076,-0.79744416,-0.7969609,-0.7967676,-0.7969609,-0.79744416,-0.7975408,-0.79763746,-0.79783076,-0.79802406,-0.79850733,-0.7987973,-0.7987973,-0.79860395,-0.79812074,-0.79831403,-0.7995705,-0.8010204,-0.80208355,-0.80227685,-0.80189025,-0.8019869,-0.8019869,-0.8006338,-0.7994738,-0.7995705,-0.7996672,-0.8007304,-0.8008271,-0.79512453,-0.7878755,-0.78623235,-0.7873922,-0.7868123,-0.78603905,-0.7871989,-0.7883587,-0.7877788,-0.7865223,-0.78632903,-0.7876822,-0.7899052,-0.7918382,-0.79357797,-0.79464126,-0.7955111,-0.7971542,-0.7997638,-0.8017936,-0.80247015,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80247015,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8023735,-0.80218023,-0.8016003,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8017936,-0.80227685,-0.80227685,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80247015,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8025668,-0.80247015,-0.80227685,-0.80218023,-0.80227685,-0.80247015,-0.80247015,-0.80247015,-0.80285674,-0.80218023,-0.7988939,-0.796091,-0.7959944,-0.79560775,-0.7925148,-0.78874534,-0.7873922,-0.7878755,-0.7878755,-0.7874888,-0.7872955,-0.7873922,-0.7875855,-0.7875855,-0.7874888,-0.78874534,-0.7928048,-0.79744416,-0.7991839,-0.7991839,-0.7992805,-0.7991839,-0.7995705,-0.8010204,-0.80218023,-0.8023735,-0.8025668,-0.8027601,-0.8017936,-0.7995705,-0.79841065,-0.79841065,-0.79821736,-0.7975408,-0.79725087,-0.7973475,-0.7975408,-0.79783076,-0.79802406,-0.79821736,-0.79821736,-0.79792744,-0.7975408,-0.7975408,-0.7975408,-0.79744416,-0.79744416,-0.79763746,-0.79744416,-0.7971542,-0.7973475,-0.79744416,-0.7973475,-0.7973475,-0.7973475,-0.79744416,-0.7975408,-0.79763746,-0.79802406,-0.79850733,-0.79860395,-0.79821736,-0.79792744,-0.79783076,-0.79744416,-0.7973475,-0.79744416,-0.79744416,-0.79744416,-0.79744416,-0.79812074,-0.7989906,-0.79860395,-0.7975408,-0.7973475,-0.7975408,-0.79744416,-0.79744416,-0.7977341,-0.79802406,-0.7977341,-0.7973475,-0.79763746,-0.79763746,-0.7973475,-0.79725087,-0.79725087,-0.79725087,-0.7971542,-0.79705757,-0.79705757,-0.7968642,-0.7968642,-0.7969609,-0.7969609,-0.79705757,-0.7971542,-0.7969609,-0.7968642,-0.79705757,-0.79725087,-0.7973475,-0.7977341,-0.79802406,-0.79812074,-0.79792744,-0.79763746,-0.7971542,-0.7968642,-0.79725087,-0.7975408,-0.7975408,-0.79763746,-0.79792744,-0.79812074,-0.79812074,-0.79870063,-0.7988939,-0.79812074,-0.79841065,-0.80024713,-0.80208355,-0.80247015,-0.8016003,-0.7999572,-0.8010204,-0.80227685,-0.8009237,-0.7995705,-0.7997638,-0.7996672,-0.8003438,-0.8009237,-0.7961877,-0.78855205,-0.7859424,-0.78661895,-0.78613573,-0.7857491,-0.7865223,-0.7873922,-0.7870056,-0.78613573,-0.7869089,-0.7894219,-0.7919349,-0.793288,-0.7939647,-0.7957044,-0.79831403,-0.80024713,-0.801407,-0.8023735,-0.8025668,-0.80247015,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8019869,-0.80218023,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8016003,-0.80208355,-0.8023735,-0.8025668,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8025668,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8023735,-0.80208355,-0.8019869,-0.80208355,-0.8023735,-0.80266345,-0.8025668,-0.80247015,-0.80266345,-0.801117,-0.7975408,-0.7957044,-0.79580104,-0.79425466,-0.7906784,-0.78826207,-0.7878755,-0.7877788,-0.7873922,-0.7873922,-0.7874888,-0.7873922,-0.7873922,-0.7867156,-0.7871022,-0.79038846,-0.7939647,-0.796381,-0.79821736,-0.7988939,-0.79850733,-0.79850733,-0.7992805,-0.8009237,-0.80227685,-0.8023735,-0.8023735,-0.8027601,-0.80150366,-0.7991839,-0.79831403,-0.79841065,-0.79802406,-0.7977341,-0.79783076,-0.79792744,-0.79812074,-0.79821736,-0.79831403,-0.79841065,-0.79831403,-0.79783076,-0.79744416,-0.79744416,-0.79763746,-0.79763746,-0.79763746,-0.7975408,-0.7973475,-0.7973475,-0.79725087,-0.79725087,-0.79744416,-0.79744416,-0.7973475,-0.79744416,-0.79744416,-0.7975408,-0.7977341,-0.79821736,-0.79831403,-0.79792744,-0.79763746,-0.7975408,-0.7975408,-0.7975408,-0.79763746,-0.7977341,-0.79744416,-0.79802406,-0.7991839,-0.7987973,-0.79763746,-0.7975408,-0.7975408,-0.7973475,-0.79744416,-0.7977341,-0.79802406,-0.79792744,-0.7977341,-0.79783076,-0.79783076,-0.7975408,-0.79725087,-0.7971542,-0.7969609,-0.79705757,-0.7971542,-0.7971542,-0.7969609,-0.7969609,-0.7969609,-0.7969609,-0.79705757,-0.79725087,-0.79705757,-0.7969609,-0.79705757,-0.7971542,-0.7973475,-0.79763746,-0.79792744,-0.79821736,-0.79812074,-0.79763746,-0.79725087,-0.79705757,-0.79725087,-0.7977341,-0.7977341,-0.79744416,-0.79783076,-0.79821736,-0.79812074,-0.79831403,-0.79870063,-0.7988939,-0.8004405,-0.80227685,-0.8025668,-0.80227685,-0.80150366,-0.8009237,-0.801407,-0.8012137,-0.80005383,-0.7994738,-0.7999572,-0.801117,-0.8003438,-0.7947379,-0.78855205,-0.78661895,-0.7867156,-0.7865223,-0.7857491,-0.7858457,-0.7877788,-0.7880688,-0.7858457,-0.7856524,-0.7894219,-0.79348135,-0.7947379,-0.7949312,-0.79725087,-0.8001505,-0.80169696,-0.8023735,-0.8025668,-0.80247015,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.80247015,-0.8023735,-0.8023735,-0.80189025,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80189025,-0.80247015,-0.80247015,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80247015,-0.80218023,-0.80208355,-0.80208355,-0.80227685,-0.8023735,-0.80247015,-0.80247015,-0.8023735,-0.8027601,-0.80218023,-0.7991839,-0.7962843,-0.7958977,-0.7957044,-0.7931914,-0.7894219,-0.7874888,-0.7874888,-0.7878755,-0.7876822,-0.7872955,-0.7871022,-0.7869089,-0.7868123,-0.7883587,-0.7894219,-0.7890353,-0.79077506,-0.79512453,-0.79783076,-0.79870063,-0.7989906,-0.79870063,-0.7989906,-0.8007304,-0.80227685,-0.80218023,-0.8023735,-0.8027601,-0.801117,-0.7987973,-0.79821736,-0.79821736,-0.79812074,-0.79821736,-0.79831403,-0.79841065,-0.79831403,-0.79831403,-0.79821736,-0.79812074,-0.79792744,-0.79763746,-0.79763746,-0.7977341,-0.79783076,-0.79783076,-0.79744416,-0.79725087,-0.79725087,-0.79725087,-0.7973475,-0.79744416,-0.79744416,-0.7973475,-0.7973475,-0.79744416,-0.79744416,-0.7975408,-0.79783076,-0.79812074,-0.79792744,-0.7977341,-0.7977341,-0.7977341,-0.7975408,-0.79763746,-0.79763746,-0.7975408,-0.79812074,-0.7991839,-0.7987973,-0.7977341,-0.79763746,-0.79763746,-0.7973475,-0.7973475,-0.79763746,-0.79792744,-0.79812074,-0.79821736,-0.79841065,-0.79860395,-0.79792744,-0.79725087,-0.7971542,-0.7971542,-0.7969609,-0.7971542,-0.79705757,-0.7968642,-0.7969609,-0.7969609,-0.79705757,-0.79705757,-0.79705757,-0.79705757,-0.7969609,-0.7971542,-0.7973475,-0.79763746,-0.79792744,-0.79812074,-0.79821736,-0.79812074,-0.79783076,-0.79744416,-0.79705757,-0.7973475,-0.79763746,-0.79763746,-0.79783076,-0.79812074,-0.79821736,-0.79821736,-0.79850733,-0.7994738,-0.8009237,-0.80208355,-0.8025668,-0.8016003,-0.801407,-0.80218023,-0.80208355,-0.8010204,-0.7999572,-0.7994738,-0.79986054,-0.8010204,-0.79986054,-0.7937714,-0.7873922,-0.78613573,-0.7868123,-0.78623235,-0.78632903,-0.7874888,-0.7879721,-0.7879721,-0.7875855,-0.7868123,-0.7883587,-0.7925148,-0.79483455,-0.7955111,-0.79831403,-0.801407,-0.80208355,-0.80218023,-0.80247015,-0.8025668,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80247015,-0.8025668,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8023735,-0.80189025,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8025668,-0.80266345,-0.8023735,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80247015,-0.8025668,-0.8025668,-0.80218023,-0.80218023,-0.80227685,-0.8023735,-0.80247015,-0.8023735,-0.80227685,-0.8023735,-0.80266345,-0.80266345,-0.8006338,-0.79725087,-0.79580104,-0.7961877,-0.7943513,-0.79019517,-0.7876822,-0.7877788,-0.7879721,-0.7874888,-0.7871989,-0.7870056,-0.7871022,-0.7876822,-0.7876822,-0.7870056,-0.7869089,-0.7876822,-0.79019517,-0.79541445,-0.7992805,-0.7997638,-0.7991839,-0.7987973,-0.7990872,-0.8006338,-0.80189025,-0.80189025,-0.80247015,-0.8027601,-0.8009237,-0.7987973,-0.79821736,-0.79821736,-0.79841065,-0.79850733,-0.79831403,-0.79841065,-0.79850733,-0.79821736,-0.79802406,-0.79792744,-0.79783076,-0.79783076,-0.7977341,-0.79783076,-0.79783076,-0.79744416,-0.7973475,-0.7975408,-0.79744416,-0.79744416,-0.7975408,-0.79744416,-0.79744416,-0.7973475,-0.79744416,-0.79744416,-0.79744416,-0.7977341,-0.79802406,-0.79802406,-0.79792744,-0.7977341,-0.79763746,-0.79763746,-0.7977341,-0.7977341,-0.79744416,-0.79831403,-0.7993772,-0.79860395,-0.7975408,-0.7975408,-0.79763746,-0.79744416,-0.79744416,-0.7975408,-0.79783076,-0.79821736,-0.79860395,-0.7989906,-0.7988939,-0.79792744,-0.79725087,-0.7973475,-0.7973475,-0.7971542,-0.79725087,-0.7971542,-0.7969609,-0.79705757,-0.79705757,-0.7971542,-0.7973475,-0.7973475,-0.79725087,-0.79705757,-0.79705757,-0.7971542,-0.7975408,-0.79812074,-0.79841065,-0.79841065,-0.79831403,-0.79792744,-0.79744416,-0.7973475,-0.79763746,-0.7977341,-0.79763746,-0.79783076,-0.79831403,-0.79850733,-0.79860395,-0.7991839,-0.8005371,-0.80218023,-0.80247015,-0.8009237,-0.8005371,-0.8016003,-0.80150366,-0.8005371,-0.80005383,-0.7994738,-0.80024713,-0.80150366,-0.79870063,-0.79125834,-0.78623235,-0.7857491,-0.78623235,-0.78623235,-0.78642565,-0.78642565,-0.7871022,-0.7879721,-0.7867156,-0.7858457,-0.78874534,-0.7928048,-0.7940613,-0.79483455,-0.79841065,-0.8017936,-0.80218023,-0.80189025,-0.80218023,-0.80227685,-0.8023735,-0.80247015,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.80247015,-0.80266345,-0.8025668,-0.80266345,-0.80247015,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80247015,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8023735,-0.80285674,-0.80247015,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.8023735,-0.80218023,-0.80218023,-0.80227685,-0.80227685,-0.8023735,-0.8023735,-0.80227685,-0.80218023,-0.8023735,-0.80285674,-0.8017936,-0.79850733,-0.796091,-0.796381,-0.79522115,-0.79116166,-0.7881654,-0.7875855,-0.7873922,-0.7871022,-0.7871022,-0.7870056,-0.7871989,-0.7871989,-0.7867156,-0.7871022,-0.7878755,-0.7872955,-0.7875855,-0.79164493,-0.7969609,-0.7995705,-0.7995705,-0.7991839,-0.7989906,-0.7989906,-0.80005383,-0.80150366,-0.8019869,-0.8023735,-0.80247015,-0.8009237,-0.7991839,-0.79860395,-0.79860395,-0.79860395,-0.79850733,-0.79850733,-0.79850733,-0.79831403,-0.79821736,-0.79821736,-0.79812074,-0.79802406,-0.79802406,-0.79802406,-0.7977341,-0.7973475,-0.7973475,-0.79744416,-0.79744416,-0.79744416,-0.79763746,-0.7975408,-0.7975408,-0.79744416,-0.79744416,-0.79744416,-0.7975408,-0.7977341,-0.79802406,-0.79812074,-0.79792744,-0.79783076,-0.7975408,-0.7975408,-0.79792744,-0.79783076,-0.7975408,-0.79870063,-0.7996672,-0.79860395,-0.79744416,-0.7977341,-0.7977341,-0.7975408,-0.7975408,-0.79744416,-0.79763746,-0.79812074,-0.79860395,-0.7987973,-0.79812074,-0.7973475,-0.7973475,-0.79744416,-0.79725087,-0.79725087,-0.79725087,-0.79705757,-0.7969609,-0.7969609,-0.7969609,-0.7971542,-0.79744416,-0.7973475,-0.79725087,-0.79725087,-0.7971542,-0.7971542,-0.79763746,-0.79812074,-0.79821736,-0.79821736,-0.79812074,-0.7977341,-0.79744416,-0.7975408,-0.7977341,-0.79783076,-0.7977341,-0.79802406,-0.79841065,-0.79860395,-0.7987973,-0.80024713,-0.80227685,-0.8027601,-0.8010204,-0.80005383,-0.8012137,-0.80169696,-0.8005371,-0.7996672,-0.7993772,-0.8003438,-0.8012137,-0.7973475,-0.7899052,-0.7859424,-0.78632903,-0.78661895,-0.7859424,-0.7856524,-0.78623235,-0.7865223,-0.78642565,-0.78642565,-0.7858457,-0.7870056,-0.79164493,-0.79464126,-0.79502785,-0.79812074,-0.80169696,-0.80218023,-0.80189025,-0.8019869,-0.8019869,-0.8019869,-0.80208355,-0.80227685,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8023735,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8008271,-0.8016003,-0.8017936,-0.8025668,-0.8025668,-0.80247015,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.80247015,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.80247015,-0.8023735,-0.8023735,-0.80218023,-0.80208355,-0.80218023,-0.80218023,-0.80208355,-0.80227685,-0.80247015,-0.80266345,-0.80247015,-0.80005383,-0.79705757,-0.796381,-0.7959944,-0.7929014,-0.7892286,-0.7877788,-0.7872955,-0.7869089,-0.7871022,-0.7874888,-0.7872955,-0.7868123,-0.7871022,-0.7871989,-0.7868123,-0.7872955,-0.7877788,-0.7880688,-0.79077506,-0.79560775,-0.7990872,-0.7997638,-0.7993772,-0.7989906,-0.7988939,-0.7999572,-0.801407,-0.80208355,-0.80247015,-0.80218023,-0.8009237,-0.80005383,-0.7992805,-0.79870063,-0.79860395,-0.79841065,-0.79812074,-0.79812074,-0.79812074,-0.79812074,-0.79831403,-0.79841065,-0.79831403,-0.79821736,-0.79792744,-0.79744416,-0.7973475,-0.79744416,-0.7975408,-0.79763746,-0.7975408,-0.7975408,-0.7975408,-0.7975408,-0.7975408,-0.79763746,-0.7977341,-0.79792744,-0.79831403,-0.79841065,-0.79802406,-0.79763746,-0.79763746,-0.7977341,-0.79783076,-0.7977341,-0.7977341,-0.7988939,-0.7996672,-0.79850733,-0.79763746,-0.7977341,-0.7977341,-0.79763746,-0.7977341,-0.7975408,-0.7975408,-0.79802406,-0.79850733,-0.79831403,-0.7975408,-0.7973475,-0.79744416,-0.79725087,-0.7971542,-0.7971542,-0.7971542,-0.7971542,-0.79705757,-0.7969609,-0.79705757,-0.79705757,-0.79725087,-0.79725087,-0.7973475,-0.79744416,-0.79744416,-0.79744416,-0.7977341,-0.79812074,-0.79831403,-0.79821736,-0.79802406,-0.79783076,-0.79763746,-0.79763746,-0.7977341,-0.79783076,-0.79812074,-0.79841065,-0.79860395,-0.7988939,-0.8001505,-0.80227685,-0.80247015,-0.8007304,-0.8001505,-0.80131036,-0.80131036,-0.8003438,-0.7994738,-0.7990872,-0.8004405,-0.801117,-0.7955111,-0.7875855,-0.7848792,-0.78623235,-0.7869089,-0.7871022,-0.7878755,-0.7876822,-0.78642565,-0.78623235,-0.78661895,-0.78632903,-0.7871989,-0.79077506,-0.794158,-0.7953178,-0.7977341,-0.80150366,-0.80247015,-0.8017936,-0.80208355,-0.80208355,-0.8016003,-0.8017936,-0.80208355,-0.80227685,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.80227685,-0.8019869,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80189025,-0.8023735,-0.8023735,-0.80247015,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80247015,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.80227685,-0.80218023,-0.8023735,-0.80218023,-0.8019869,-0.80218023,-0.80227685,-0.8023735,-0.8025668,-0.80266345,-0.8025668,-0.8012137,-0.79792744,-0.7962843,-0.7959944,-0.79357797,-0.7896152,-0.7873922,-0.7872955,-0.7876822,-0.7877788,-0.7874888,-0.7875855,-0.78826207,-0.7869089,-0.78420264,-0.7848792,-0.7877788,-0.7880688,-0.7868123,-0.7872955,-0.7897119,-0.7939647,-0.79831403,-0.7999572,-0.7994738,-0.7988939,-0.7990872,-0.8004405,-0.8017936,-0.80189025,-0.8017936,-0.80189025,-0.8012137,-0.7997638,-0.79870063,-0.79831403,-0.79802406,-0.79792744,-0.79812074,-0.79821736,-0.79821736,-0.79821736,-0.79831403,-0.79831403,-0.79812074,-0.79783076,-0.7975408,-0.79744416,-0.79763746,-0.79783076,-0.7977341,-0.79744416,-0.79744416,-0.7975408,-0.7975408,-0.7977341,-0.79802406,-0.79802406,-0.79812074,-0.79850733,-0.79841065,-0.79783076,-0.79763746,-0.7977341,-0.79792744,-0.79812074,-0.79792744,-0.79802406,-0.7996672,-0.80024713,-0.79860395,-0.79763746,-0.7977341,-0.7975408,-0.7975408,-0.79763746,-0.79763746,-0.7975408,-0.79802406,-0.79841065,-0.79792744,-0.79725087,-0.79725087,-0.79725087,-0.79705757,-0.7971542,-0.7971542,-0.7971542,-0.79705757,-0.7969609,-0.79705757,-0.7971542,-0.79705757,-0.79705757,-0.7973475,-0.79744416,-0.7973475,-0.79744416,-0.79744416,-0.7977341,-0.79821736,-0.79831403,-0.79821736,-0.79812074,-0.79783076,-0.7977341,-0.7977341,-0.7977341,-0.79802406,-0.79850733,-0.79870063,-0.7988939,-0.80024713,-0.80227685,-0.8027601,-0.80189025,-0.8010204,-0.80131036,-0.8012137,-0.80005383,-0.7991839,-0.7991839,-0.8003438,-0.8005371,-0.79483455,-0.78661895,-0.78400934,-0.7856524,-0.78632903,-0.78632903,-0.78642565,-0.7875855,-0.78864866,-0.7877788,-0.7865223,-0.78603905,-0.7870056,-0.79058176,-0.793868,-0.7947379,-0.7971542,-0.801117,-0.8025668,-0.80208355,-0.80218023,-0.80218023,-0.8016003,-0.8012137,-0.80169696,-0.80227685,-0.8023735,-0.8025668,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80247015,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80247015,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80247015,-0.80227685,-0.8017936,-0.80227685,-0.8027601,-0.8025668,-0.8025668,-0.80247015,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8025668,-0.80247015,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80247015,-0.80208355,-0.80227685,-0.80227685,-0.80208355,-0.80218023,-0.80218023,-0.80227685,-0.8025668,-0.80266345,-0.80266345,-0.80218023,-0.7991839,-0.796381,-0.79560775,-0.7937714,-0.7896152,-0.7872955,-0.7880688,-0.78874534,-0.7875855,-0.7870056,-0.7881654,-0.78826207,-0.7847825,-0.7832361,-0.78613573,-0.7880688,-0.7873922,-0.7871022,-0.7874888,-0.7874888,-0.78826207,-0.7927081,-0.79841065,-0.80024713,-0.7992805,-0.7991839,-0.7997638,-0.8005371,-0.8012137,-0.8019869,-0.80247015,-0.80189025,-0.8003438,-0.7989906,-0.79821736,-0.79792744,-0.79792744,-0.79812074,-0.79812074,-0.79802406,-0.79802406,-0.79802406,-0.79812074,-0.79802406,-0.7977341,-0.79744416,-0.79744416,-0.79763746,-0.79783076,-0.79763746,-0.79744416,-0.79744416,-0.7975408,-0.79763746,-0.79783076,-0.79792744,-0.79802406,-0.79831403,-0.79831403,-0.79802406,-0.7977341,-0.79763746,-0.79792744,-0.79802406,-0.79792744,-0.79802406,-0.79821736,-0.79870063,-0.7990872,-0.79860395,-0.7977341,-0.7977341,-0.79763746,-0.7975408,-0.79763746,-0.7975408,-0.7977341,-0.79821736,-0.79802406,-0.79744416,-0.79725087,-0.7971542,-0.7971542,-0.7971542,-0.7971542,-0.79705757,-0.79705757,-0.7971542,-0.7971542,-0.79705757,-0.7969609,-0.7971542,-0.7973475,-0.79725087,-0.79725087,-0.7973475,-0.79744416,-0.79744416,-0.79792744,-0.79850733,-0.79850733,-0.79850733,-0.79831403,-0.79792744,-0.79792744,-0.79802406,-0.79802406,-0.79821736,-0.79860395,-0.7991839,-0.8005371,-0.80218023,-0.80247015,-0.80208355,-0.8017936,-0.80189025,-0.801407,-0.8001505,-0.7989906,-0.7991839,-0.8010204,-0.8001505,-0.7937714,-0.7875855,-0.7870056,-0.788842,-0.7898086,-0.79019517,-0.7897119,-0.7881654,-0.7869089,-0.7869089,-0.7874888,-0.7868123,-0.7855558,-0.7878755,-0.7926115,-0.79483455,-0.796091,-0.7997638,-0.8023735,-0.8025668,-0.80227685,-0.80218023,-0.80189025,-0.8016003,-0.80150366,-0.80189025,-0.80218023,-0.8023735,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8025668,-0.8023735,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8016003,-0.80227685,-0.80208355,-0.80247015,-0.8025668,-0.80247015,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.80247015,-0.80227685,-0.80227685,-0.80208355,-0.8019869,-0.80218023,-0.80227685,-0.80218023,-0.80247015,-0.80266345,-0.8027601,-0.8027601,-0.8006338,-0.79705757,-0.7957044,-0.7949312,-0.7919349,-0.7895186,-0.7892286,-0.78845537,-0.7870056,-0.7877788,-0.78855205,-0.7855558,-0.78381604,-0.7871989,-0.789132,-0.7872955,-0.7868123,-0.7876822,-0.7874888,-0.7874888,-0.7873922,-0.7878755,-0.7922248,-0.79812074,-0.7999572,-0.7992805,-0.7991839,-0.7997638,-0.8005371,-0.80150366,-0.8019869,-0.8023735,-0.80208355,-0.80005383,-0.79841065,-0.79812074,-0.79802406,-0.7977341,-0.7977341,-0.7977341,-0.7977341,-0.7977341,-0.79783076,-0.79783076,-0.79763746,-0.79744416,-0.7975408,-0.7977341,-0.7977341,-0.79763746,-0.7975408,-0.7973475,-0.79744416,-0.79792744,-0.79802406,-0.7977341,-0.79783076,-0.79802406,-0.79802406,-0.79792744,-0.7977341,-0.79744416,-0.79783076,-0.79792744,-0.79783076,-0.79860395,-0.79792744,-0.7959944,-0.7969609,-0.79870063,-0.79812074,-0.79763746,-0.79783076,-0.7975408,-0.79744416,-0.7977341,-0.79812074,-0.79802406,-0.79744416,-0.7973475,-0.7973475,-0.79725087,-0.7971542,-0.79705757,-0.79705757,-0.7971542,-0.7971542,-0.79725087,-0.79725087,-0.79705757,-0.79705757,-0.7971542,-0.79725087,-0.79725087,-0.7971542,-0.79725087,-0.79744416,-0.79763746,-0.79812074,-0.79860395,-0.7987973,-0.7987973,-0.79850733,-0.79821736,-0.79821736,-0.79831403,-0.79841065,-0.79841065,-0.7989906,-0.8005371,-0.80227685,-0.8025668,-0.8019869,-0.8017936,-0.80189025,-0.80131036,-0.80005383,-0.7988939,-0.7992805,-0.801117,-0.7997638,-0.7926115,-0.78661895,-0.7871022,-0.7897119,-0.79058176,-0.7900985,-0.7895186,-0.7892286,-0.78864866,-0.7876822,-0.7867156,-0.7868123,-0.7868123,-0.78603905,-0.78864866,-0.7933847,-0.79512453,-0.79744416,-0.8016003,-0.8025668,-0.8019869,-0.80227685,-0.80218023,-0.80169696,-0.80169696,-0.80189025,-0.80208355,-0.80227685,-0.80247015,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8019869,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8010204,-0.8016003,-0.8017936,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80227685,-0.8023735,-0.80218023,-0.8017936,-0.8017936,-0.80227685,-0.80247015,-0.8025668,-0.80285674,-0.8027601,-0.8027601,-0.8019869,-0.79860395,-0.796091,-0.79580104,-0.79483455,-0.7923215,-0.7899052,-0.7881654,-0.7876822,-0.78874534,-0.7875855,-0.7858457,-0.7892286,-0.7923215,-0.789132,-0.78661895,-0.7874888,-0.7876822,-0.7875855,-0.7880688,-0.7881654,-0.7871989,-0.7870056,-0.79125834,-0.7975408,-0.80005383,-0.7993772,-0.7990872,-0.7999572,-0.801407,-0.80208355,-0.80208355,-0.80266345,-0.80218023,-0.79986054,-0.79831403,-0.79802406,-0.79792744,-0.79783076,-0.79783076,-0.7977341,-0.7977341,-0.7977341,-0.79763746,-0.7975408,-0.7975408,-0.79763746,-0.79783076,-0.79783076,-0.7977341,-0.7975408,-0.7973475,-0.79744416,-0.79783076,-0.79802406,-0.79792744,-0.79802406,-0.79812074,-0.79802406,-0.79783076,-0.7977341,-0.7975408,-0.7977341,-0.79783076,-0.79802406,-0.79860395,-0.79802406,-0.79705757,-0.79802406,-0.7988939,-0.79821736,-0.79783076,-0.7977341,-0.79744416,-0.79744416,-0.79792744,-0.79821736,-0.7977341,-0.7971542,-0.7973475,-0.79744416,-0.7971542,-0.79725087,-0.79725087,-0.79705757,-0.7971542,-0.79725087,-0.79725087,-0.7971542,-0.79705757,-0.79725087,-0.79725087,-0.79705757,-0.7971542,-0.79725087,-0.79725087,-0.79744416,-0.7977341,-0.79783076,-0.79821736,-0.7988939,-0.7989906,-0.79850733,-0.79821736,-0.79821736,-0.79831403,-0.79841065,-0.7990872,-0.8008271,-0.80218023,-0.8023735,-0.80227685,-0.8017936,-0.8010204,-0.8006338,-0.7999572,-0.79870063,-0.7989906,-0.801117,-0.7988939,-0.79077506,-0.7857491,-0.78661895,-0.7877788,-0.7876822,-0.7874888,-0.7869089,-0.78613573,-0.7858457,-0.78632903,-0.7868123,-0.7868123,-0.7867156,-0.7859424,-0.78642565,-0.79038846,-0.7939647,-0.7953178,-0.79860395,-0.80208355,-0.80227685,-0.8017936,-0.80208355,-0.8019869,-0.8017936,-0.8019869,-0.80218023,-0.80227685,-0.80247015,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80247015,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8025668,-0.8025668,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8023735,-0.80247015,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.801407,-0.80189025,-0.80247015,-0.8023735,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80247015,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8025668,-0.80247015,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.8023735,-0.80218023,-0.8019869,-0.80189025,-0.8019869,-0.80227685,-0.8025668,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8010204,-0.79725087,-0.7957044,-0.7958977,-0.7943513,-0.7919349,-0.7899052,-0.788842,-0.7880688,-0.7874888,-0.79145163,-0.7959944,-0.7927081,-0.7872955,-0.7870056,-0.7876822,-0.7873922,-0.7879721,-0.7881654,-0.7879721,-0.7880688,-0.7872955,-0.7876822,-0.7927081,-0.79860395,-0.7999572,-0.7988939,-0.7990872,-0.8006338,-0.80218023,-0.80227685,-0.80218023,-0.80266345,-0.80189025,-0.7995705,-0.79821736,-0.79821736,-0.79841065,-0.79821736,-0.79792744,-0.79783076,-0.79792744,-0.79792744,-0.79792744,-0.79792744,-0.79792744,-0.79792744,-0.79802406,-0.79802406,-0.79783076,-0.79763746,-0.7975408,-0.79783076,-0.79802406,-0.79802406,-0.79802406,-0.79802406,-0.79802406,-0.79783076,-0.7977341,-0.7977341,-0.79792744,-0.79812074,-0.79831403,-0.79831403,-0.79783076,-0.7975408,-0.79831403,-0.79860395,-0.79792744,-0.79763746,-0.79763746,-0.79744416,-0.79744416,-0.7977341,-0.79783076,-0.79763746,-0.79744416,-0.7973475,-0.7973475,-0.7973475,-0.7975408,-0.7975408,-0.7973475,-0.7971542,-0.7973475,-0.7971542,-0.7969609,-0.7971542,-0.7973475,-0.79725087,-0.7973475,-0.7973475,-0.7971542,-0.7971542,-0.79725087,-0.7975408,-0.7977341,-0.79792744,-0.79860395,-0.7993772,-0.7991839,-0.7987973,-0.79870063,-0.7987973,-0.7993772,-0.801117,-0.80247015,-0.80227685,-0.8017936,-0.8019869,-0.801117,-0.7995705,-0.7991839,-0.7995705,-0.80005383,-0.8006338,-0.7975408,-0.7899052,-0.7846859,-0.7857491,-0.7871022,-0.78661895,-0.7871022,-0.7873922,-0.7865223,-0.78613573,-0.78603905,-0.7858457,-0.78603905,-0.7865223,-0.78613573,-0.7852658,-0.7878755,-0.7926115,-0.79425466,-0.7955111,-0.7997638,-0.8023735,-0.80218023,-0.8019869,-0.80189025,-0.80189025,-0.80208355,-0.80218023,-0.8023735,-0.8025668,-0.80285674,-0.80266345,-0.80247015,-0.8025668,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8025668,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.80189025,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80150366,-0.80189025,-0.80208355,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80247015,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8025668,-0.8023735,-0.80227685,-0.80208355,-0.8019869,-0.80227685,-0.8025668,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80024713,-0.7966709,-0.7955111,-0.79580104,-0.79464126,-0.7926115,-0.79096836,-0.78864866,-0.7881654,-0.7921282,-0.7933847,-0.788842,-0.7867156,-0.7875855,-0.7874888,-0.7874888,-0.7876822,-0.7874888,-0.7872955,-0.78632903,-0.78613573,-0.7872955,-0.7892286,-0.793868,-0.7989906,-0.7999572,-0.7987973,-0.7990872,-0.8007304,-0.80208355,-0.80208355,-0.80208355,-0.80285674,-0.8019869,-0.7995705,-0.79841065,-0.79841065,-0.79841065,-0.79821736,-0.79821736,-0.79821736,-0.79821736,-0.79831403,-0.79821736,-0.79821736,-0.79831403,-0.79821736,-0.79802406,-0.79792744,-0.7977341,-0.79763746,-0.79783076,-0.79802406,-0.79812074,-0.79821736,-0.79812074,-0.79783076,-0.79763746,-0.7977341,-0.79792744,-0.79812074,-0.79821736,-0.79812074,-0.79812074,-0.79744416,-0.7962843,-0.79725087,-0.79841065,-0.79821736,-0.7977341,-0.79783076,-0.79763746,-0.7975408,-0.79783076,-0.79792744,-0.79792744,-0.7977341,-0.7975408,-0.7975408,-0.79763746,-0.7975408,-0.79744416,-0.7975408,-0.7975408,-0.7973475,-0.7971542,-0.7969609,-0.79705757,-0.79725087,-0.79744416,-0.79744416,-0.7975408,-0.7973475,-0.79725087,-0.79725087,-0.79744416,-0.7977341,-0.79763746,-0.79812074,-0.7993772,-0.7999572,-0.7997638,-0.8001505,-0.8010204,-0.80150366,-0.80208355,-0.8025668,-0.80208355,-0.8007304,-0.7997638,-0.7994738,-0.7993772,-0.7997638,-0.8008271,-0.8010204,-0.79744416,-0.79038846,-0.78613573,-0.78642565,-0.7871022,-0.7868123,-0.7870056,-0.7871989,-0.7871989,-0.7871022,-0.78661895,-0.78613573,-0.7858457,-0.7855558,-0.7855558,-0.7859424,-0.7877788,-0.7918382,-0.79483455,-0.79464126,-0.7965743,-0.801117,-0.80266345,-0.80227685,-0.80218023,-0.8019869,-0.80208355,-0.80218023,-0.8023735,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80247015,-0.8025668,-0.8027601,-0.80285674,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80247015,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.80227685,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8017936,-0.8023735,-0.8023735,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80247015,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8023735,-0.8023735,-0.80247015,-0.8025668,-0.80247015,-0.80247015,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8023735,-0.8003438,-0.79744416,-0.7959944,-0.7957044,-0.7953178,-0.79444796,-0.7917416,-0.78874534,-0.7878755,-0.7879721,-0.7874888,-0.7874888,-0.7876822,-0.7875855,-0.7875855,-0.7874888,-0.7872955,-0.78623235,-0.78458923,-0.7851691,-0.7871989,-0.7872955,-0.78864866,-0.79483455,-0.8001505,-0.8005371,-0.7991839,-0.7991839,-0.8006338,-0.80208355,-0.80247015,-0.8025668,-0.8027601,-0.8019869,-0.7999572,-0.79860395,-0.79841065,-0.79850733,-0.79841065,-0.79841065,-0.79841065,-0.79831403,-0.79831403,-0.79831403,-0.79831403,-0.79831403,-0.79821736,-0.79802406,-0.79783076,-0.79783076,-0.79792744,-0.79792744,-0.79821736,-0.79841065,-0.79821736,-0.79792744,-0.7977341,-0.79783076,-0.79812074,-0.79831403,-0.79792744,-0.79744416,-0.79763746,-0.79705757,-0.7961877,-0.7968642,-0.79783076,-0.79802406,-0.79802406,-0.79802406,-0.79792744,-0.79792744,-0.79792744,-0.79792744,-0.79802406,-0.79783076,-0.7977341,-0.79783076,-0.7977341,-0.7975408,-0.79783076,-0.79812074,-0.79802406,-0.7975408,-0.79725087,-0.79725087,-0.79725087,-0.79744416,-0.7977341,-0.7977341,-0.79763746,-0.7977341,-0.79783076,-0.79763746,-0.7975408,-0.79792744,-0.79792744,-0.79821736,-0.7994738,-0.8008271,-0.801407,-0.80208355,-0.80266345,-0.8023735,-0.80131036,-0.8012137,-0.801117,-0.80005383,-0.7991839,-0.7991839,-0.80024713,-0.801407,-0.7993772,-0.7940613,-0.7894219,-0.7871989,-0.7880688,-0.7895186,-0.7883587,-0.7870056,-0.7872955,-0.7871022,-0.7870056,-0.7870056,-0.78632903,-0.7857491,-0.7858457,-0.78613573,-0.7871022,-0.7893253,-0.7929014,-0.7955111,-0.79483455,-0.7947379,-0.7987973,-0.8023735,-0.80266345,-0.8023735,-0.8023735,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.80247015,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8025668,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8025668,-0.80227685,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80247015,-0.8025668,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80247015,-0.8012137,-0.7989906,-0.7968642,-0.7961877,-0.7961877,-0.7943513,-0.7919349,-0.7896152,-0.7873922,-0.7869089,-0.7877788,-0.7879721,-0.7874888,-0.7873922,-0.7876822,-0.7865223,-0.78623235,-0.7902918,-0.7927081,-0.7892286,-0.78661895,-0.7871022,-0.7894219,-0.79444796,-0.7992805,-0.8005371,-0.7994738,-0.7992805,-0.8007304,-0.80218023,-0.80227685,-0.80218023,-0.80266345,-0.80218023,-0.80024713,-0.7987973,-0.79841065,-0.79831403,-0.79841065,-0.79841065,-0.79841065,-0.79841065,-0.79831403,-0.79821736,-0.79821736,-0.79831403,-0.79831403,-0.79812074,-0.79792744,-0.79792744,-0.79802406,-0.79812074,-0.79831403,-0.79831403,-0.79821736,-0.79783076,-0.79783076,-0.79860395,-0.79850733,-0.7973475,-0.7968642,-0.7971542,-0.79580104,-0.7955111,-0.7969609,-0.79783076,-0.79792744,-0.7977341,-0.79792744,-0.79802406,-0.79792744,-0.7977341,-0.7977341,-0.79792744,-0.79792744,-0.7977341,-0.7977341,-0.7977341,-0.79792744,-0.79812074,-0.79831403,-0.79802406,-0.79744416,-0.7971542,-0.79725087,-0.7975408,-0.7977341,-0.79783076,-0.79792744,-0.79792744,-0.79802406,-0.79802406,-0.79802406,-0.79802406,-0.79812074,-0.79821736,-0.7992805,-0.8010204,-0.8023735,-0.80285674,-0.80266345,-0.8023735,-0.8019869,-0.80131036,-0.8004405,-0.80005383,-0.79986054,-0.7996672,-0.8004405,-0.8012137,-0.79831403,-0.79164493,-0.7870056,-0.78661895,-0.7875855,-0.78826207,-0.78826207,-0.7875855,-0.7867156,-0.7865223,-0.7865223,-0.78613573,-0.78603905,-0.7865223,-0.7876822,-0.7890353,-0.79038846,-0.79154825,-0.7931914,-0.79464126,-0.79444796,-0.7943513,-0.79763746,-0.80169696,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.80247015,-0.80247015,-0.8025668,-0.8025668,-0.80247015,-0.8023735,-0.80247015,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.80247015,-0.8023735,-0.8017936,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8016003,-0.8016003,-0.80218023,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.80218023,-0.8007304,-0.79812074,-0.7957044,-0.7953178,-0.79580104,-0.793868,-0.7898086,-0.7872955,-0.7874888,-0.7880688,-0.7875855,-0.7875855,-0.7874888,-0.78642565,-0.79087174,-0.7992805,-0.79802406,-0.7894219,-0.78661895,-0.7875855,-0.7869089,-0.7873922,-0.7918382,-0.79783076,-0.8008271,-0.80005383,-0.7993772,-0.8005371,-0.80208355,-0.80208355,-0.8019869,-0.80266345,-0.80247015,-0.8010204,-0.7994738,-0.79870063,-0.79870063,-0.7989906,-0.7989906,-0.79841065,-0.79821736,-0.79831403,-0.79812074,-0.79812074,-0.79841065,-0.79831403,-0.79802406,-0.79792744,-0.79792744,-0.79821736,-0.79841065,-0.79831403,-0.79812074,-0.79802406,-0.79812074,-0.79841065,-0.79860395,-0.79802406,-0.7971542,-0.796381,-0.79464126,-0.79444796,-0.796381,-0.79802406,-0.7989906,-0.79860395,-0.79802406,-0.79802406,-0.79792744,-0.7977341,-0.79783076,-0.79783076,-0.7977341,-0.7977341,-0.7977341,-0.79792744,-0.79821736,-0.79821736,-0.79812074,-0.79783076,-0.79744416,-0.79725087,-0.79744416,-0.7977341,-0.79792744,-0.79792744,-0.79783076,-0.79802406,-0.79812074,-0.79821736,-0.79831403,-0.79841065,-0.7987973,-0.80005383,-0.80169696,-0.8025668,-0.8027601,-0.8023735,-0.80208355,-0.80189025,-0.8019869,-0.80189025,-0.8008271,-0.7996672,-0.7994738,-0.8006338,-0.8005371,-0.79560775,-0.788842,-0.7859424,-0.7867156,-0.7881654,-0.78874534,-0.7876822,-0.78642565,-0.78661895,-0.7871022,-0.7867156,-0.7859424,-0.78642565,-0.78864866,-0.79106504,-0.7924181,-0.7929981,-0.7930947,-0.79348135,-0.7947379,-0.79580104,-0.7968642,-0.7993772,-0.80169696,-0.80247015,-0.8027601,-0.80266345,-0.80247015,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.80247015,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80189025,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.801117,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80247015,-0.8025668,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80247015,-0.80247015,-0.80189025,-0.7990872,-0.7964776,-0.7959944,-0.79541445,-0.7936747,-0.79077506,-0.7879721,-0.7872955,-0.7877788,-0.7879721,-0.7869089,-0.7873922,-0.7933847,-0.7977341,-0.7929981,-0.7875855,-0.7873922,-0.7876822,-0.7871022,-0.7867156,-0.7870056,-0.79038846,-0.7965743,-0.8007304,-0.8005371,-0.7994738,-0.8001505,-0.80150366,-0.80189025,-0.80208355,-0.8027601,-0.80266345,-0.80169696,-0.8005371,-0.79870063,-0.7975408,-0.79802406,-0.79850733,-0.79831403,-0.79821736,-0.79812074,-0.79812074,-0.79831403,-0.79831403,-0.79812074,-0.79812074,-0.79802406,-0.79831403,-0.79860395,-0.79831403,-0.79802406,-0.79812074,-0.79821736,-0.79860395,-0.79860395,-0.7975408,-0.7968642,-0.796381,-0.7955111,-0.79580104,-0.79705757,-0.79802406,-0.7992805,-0.7990872,-0.79802406,-0.79783076,-0.79792744,-0.7977341,-0.7977341,-0.7977341,-0.79763746,-0.79783076,-0.79783076,-0.79802406,-0.79831403,-0.79841065,-0.79812074,-0.79783076,-0.79744416,-0.7973475,-0.79763746,-0.79783076,-0.79783076,-0.79812074,-0.79812074,-0.79812074,-0.79841065,-0.79870063,-0.7990872,-0.7999572,-0.80131036,-0.80227685,-0.8025668,-0.8023735,-0.80208355,-0.80169696,-0.8016003,-0.8019869,-0.80227685,-0.80150366,-0.7997638,-0.7994738,-0.8010204,-0.80005383,-0.7937714,-0.7873922,-0.7854591,-0.78623235,-0.7872955,-0.7881654,-0.7875855,-0.7871022,-0.7872955,-0.7868123,-0.7865223,-0.78642565,-0.7867156,-0.7898086,-0.7936747,-0.79444796,-0.7936747,-0.794158,-0.7957044,-0.79725087,-0.7988939,-0.8003438,-0.80150366,-0.80218023,-0.8023735,-0.80247015,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.80247015,-0.80218023,-0.801407,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80208355,-0.80189025,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8023735,-0.80227685,-0.80227685,-0.80024713,-0.7962843,-0.79512453,-0.7962843,-0.793868,-0.7894219,-0.7874888,-0.7878755,-0.7876822,-0.7869089,-0.7876822,-0.7898086,-0.79019517,-0.78826207,-0.7872955,-0.7871989,-0.7870056,-0.7872955,-0.7874888,-0.7872955,-0.7871022,-0.78874534,-0.794158,-0.7996672,-0.8004405,-0.7989906,-0.7994738,-0.8010204,-0.80189025,-0.80218023,-0.80227685,-0.80266345,-0.8025668,-0.8009237,-0.79850733,-0.79812074,-0.79860395,-0.79860395,-0.79850733,-0.79841065,-0.79831403,-0.79841065,-0.79831403,-0.79812074,-0.79802406,-0.79802406,-0.79821736,-0.79841065,-0.79821736,-0.79821736,-0.79821736,-0.79821736,-0.7991839,-0.7996672,-0.79850733,-0.79812074,-0.7988939,-0.7991839,-0.7993772,-0.7999572,-0.8001505,-0.79986054,-0.7990872,-0.79831403,-0.79812074,-0.79792744,-0.79763746,-0.7977341,-0.7977341,-0.79763746,-0.7977341,-0.79792744,-0.79792744,-0.79821736,-0.79841065,-0.79812074,-0.7977341,-0.79763746,-0.7977341,-0.79792744,-0.79792744,-0.79792744,-0.79831403,-0.79850733,-0.79850733,-0.7989906,-0.80024713,-0.80131036,-0.80218023,-0.8025668,-0.80227685,-0.8019869,-0.80169696,-0.80150366,-0.80131036,-0.8012137,-0.8016003,-0.8012137,-0.7996672,-0.7995705,-0.8009237,-0.7987973,-0.7925148,-0.7873922,-0.78623235,-0.7867156,-0.7869089,-0.7871022,-0.7873922,-0.7870056,-0.7869089,-0.7871022,-0.78623235,-0.78623235,-0.7883587,-0.7906784,-0.7929014,-0.79444796,-0.79502785,-0.796381,-0.7987973,-0.8006338,-0.8016003,-0.80208355,-0.80227685,-0.80227685,-0.80247015,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80247015,-0.80266345,-0.8017936,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80247015,-0.8023735,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80247015,-0.8023735,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80247015,-0.8023735,-0.8025668,-0.8025668,-0.80285674,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.80247015,-0.8023735,-0.8025668,-0.80247015,-0.8025668,-0.8023735,-0.80005383,-0.7966709,-0.7957044,-0.79541445,-0.7926115,-0.7889387,-0.7872955,-0.7873922,-0.7874888,-0.7874888,-0.7876822,-0.7877788,-0.7876822,-0.7871989,-0.78603905,-0.7856524,-0.7867156,-0.7876822,-0.7876822,-0.7875855,-0.7870056,-0.7871022,-0.7923215,-0.7991839,-0.8006338,-0.7991839,-0.7994738,-0.8008271,-0.8017936,-0.80227685,-0.80227685,-0.8023735,-0.8027601,-0.80247015,-0.8009237,-0.7993772,-0.79860395,-0.79850733,-0.79860395,-0.79870063,-0.79860395,-0.79841065,-0.79831403,-0.79802406,-0.79792744,-0.79812074,-0.79821736,-0.79831403,-0.79850733,-0.79870063,-0.7987973,-0.7994738,-0.8009237,-0.8017936,-0.80189025,-0.80218023,-0.80247015,-0.8025668,-0.80247015,-0.8023735,-0.80169696,-0.80024713,-0.7989906,-0.79841065,-0.79812074,-0.79792744,-0.79792744,-0.79792744,-0.79783076,-0.79792744,-0.79802406,-0.79841065,-0.79860395,-0.79841065,-0.79812074,-0.79783076,-0.79792744,-0.79821736,-0.79841065,-0.79841065,-0.79860395,-0.7987973,-0.7989906,-0.7997638,-0.801117,-0.8023735,-0.80266345,-0.8023735,-0.80208355,-0.8019869,-0.8017936,-0.80169696,-0.8017936,-0.80150366,-0.8007304,-0.80005383,-0.7991839,-0.7992805,-0.80024713,-0.7969609,-0.7898086,-0.78661895,-0.7871989,-0.7868123,-0.78661895,-0.7871989,-0.7871989,-0.7871989,-0.7871989,-0.7870056,-0.78661895,-0.7867156,-0.78845537,-0.7920315,-0.793868,-0.7937714,-0.79541445,-0.7988939,-0.8010204,-0.8017936,-0.80208355,-0.80218023,-0.80227685,-0.8023735,-0.80247015,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80247015,-0.8025668,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80131036,-0.80189025,-0.80247015,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.80247015,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.80247015,-0.8023735,-0.8023735,-0.8023735,-0.8023735,-0.80247015,-0.8025668,-0.80227685,-0.7999572,-0.7968642,-0.7961877,-0.7949312,-0.79038846,-0.7871022,-0.7872955,-0.7874888,-0.7872955,-0.7876822,-0.7878755,-0.7875855,-0.7873922,-0.78661895,-0.78642565,-0.7872955,-0.7879721,-0.7877788,-0.7876822,-0.7880688,-0.7873922,-0.7871022,-0.7922248,-0.7993772,-0.8007304,-0.7990872,-0.7989906,-0.8001505,-0.801407,-0.80218023,-0.80218023,-0.8023735,-0.80266345,-0.8025668,-0.80189025,-0.8005371,-0.7992805,-0.79870063,-0.79850733,-0.79831403,-0.79841065,-0.79850733,-0.79850733,-0.79841065,-0.79831403,-0.79841065,-0.79870063,-0.79860395,-0.79870063,-0.7996672,-0.8012137,-0.8023735,-0.80266345,-0.80266345,-0.8023735,-0.80227685,-0.80247015,-0.8023735,-0.80227685,-0.8023735,-0.80189025,-0.8009237,-0.7996672,-0.79850733,-0.79802406,-0.79821736,-0.79821736,-0.79802406,-0.79802406,-0.79812074,-0.79850733,-0.7987973,-0.79870063,-0.79821736,-0.79792744,-0.79812074,-0.79860395,-0.7990872,-0.7992805,-0.7994738,-0.79986054,-0.8008271,-0.8019869,-0.80247015,-0.8025668,-0.80218023,-0.8019869,-0.80189025,-0.80189025,-0.8017936,-0.8017936,-0.8017936,-0.8008271,-0.7992805,-0.7987973,-0.8003438,-0.8008271,-0.7957044,-0.78845537,-0.7858457,-0.78661895,-0.7870056,-0.7868123,-0.7869089,-0.7873922,-0.7874888,-0.7871989,-0.7871022,-0.7865223,-0.7869089,-0.7896152,-0.7924181,-0.7936747,-0.7943513,-0.7966709,-0.80024713,-0.80208355,-0.8017936,-0.80189025,-0.8023735,-0.80247015,-0.80227685,-0.80208355,-0.80218023,-0.8023735,-0.80247015,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80247015,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80247015,-0.80169696,-0.801407,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80169696,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80247015,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.8023735,-0.80218023,-0.80227685,-0.80227685,-0.80218023,-0.8023735,-0.8023735,-0.80247015,-0.80218023,-0.7992805,-0.796381,-0.7955111,-0.7924181,-0.7879721,-0.7869089,-0.7874888,-0.7873922,-0.7873922,-0.7874888,-0.7873922,-0.7875855,-0.78845537,-0.7896152,-0.7893253,-0.7879721,-0.7874888,-0.7876822,-0.7878755,-0.7880688,-0.7871022,-0.7871022,-0.7920315,-0.79812074,-0.8001505,-0.7995705,-0.7988939,-0.7993772,-0.8007304,-0.8019869,-0.80227685,-0.80218023,-0.80227685,-0.80266345,-0.8027601,-0.80208355,-0.8008271,-0.79986054,-0.7992805,-0.7987973,-0.79850733,-0.79841065,-0.79841065,-0.79850733,-0.79850733,-0.79860395,-0.7987973,-0.7996672,-0.80150366,-0.80266345,-0.80227685,-0.80169696,-0.80150366,-0.80150366,-0.80189025,-0.8019869,-0.80150366,-0.80131036,-0.80169696,-0.80218023,-0.80247015,-0.80189025,-0.8003438,-0.7992805,-0.7987973,-0.79841065,-0.79821736,-0.79831403,-0.79831403,-0.79860395,-0.7992805,-0.7993772,-0.7989906,-0.7987973,-0.7991839,-0.79986054,-0.8006338,-0.8008271,-0.801117,-0.8017936,-0.80247015,-0.80247015,-0.8019869,-0.8017936,-0.8017936,-0.8017936,-0.8016003,-0.8012137,-0.8008271,-0.8005371,-0.7997638,-0.79870063,-0.7990872,-0.8008271,-0.8004405,-0.79580104,-0.7896152,-0.78661895,-0.7867156,-0.7870056,-0.7870056,-0.7869089,-0.7870056,-0.7871022,-0.7871989,-0.7874888,-0.7867156,-0.78613573,-0.78874534,-0.7929981,-0.7945446,-0.79444796,-0.79705757,-0.8009237,-0.80227685,-0.80208355,-0.80227685,-0.80227685,-0.80208355,-0.80218023,-0.80218023,-0.80218023,-0.8023735,-0.80247015,-0.8023735,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8023735,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80247015,-0.80247015,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80247015,-0.80247015,-0.80208355,-0.80189025,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8023735,-0.8023735,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8025668,-0.8023735,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8025668,-0.8023735,-0.8023735,-0.80218023,-0.8019869,-0.80208355,-0.80218023,-0.8023735,-0.80247015,-0.8023735,-0.80266345,-0.801117,-0.79763746,-0.79560775,-0.79357797,-0.7895186,-0.7871022,-0.7871989,-0.7873922,-0.7871989,-0.7874888,-0.7878755,-0.7875855,-0.7892286,-0.7917416,-0.7904851,-0.7877788,-0.7876822,-0.7881654,-0.7877788,-0.7875855,-0.7875855,-0.7871989,-0.7880688,-0.7925148,-0.79821736,-0.8010204,-0.8006338,-0.7994738,-0.7990872,-0.7999572,-0.80150366,-0.80218023,-0.80208355,-0.80208355,-0.8023735,-0.80266345,-0.8027601,-0.80247015,-0.8017936,-0.801117,-0.80024713,-0.7995705,-0.7991839,-0.7992805,-0.7994738,-0.7997638,-0.8006338,-0.8019869,-0.8025668,-0.8023735,-0.8016003,-0.8006338,-0.8007304,-0.80024713,-0.79725087,-0.7962843,-0.7988939,-0.80024713,-0.80005383,-0.8008271,-0.8019869,-0.80247015,-0.8023735,-0.80169696,-0.8007304,-0.8001505,-0.7999572,-0.7997638,-0.7995705,-0.7999572,-0.8007304,-0.8010204,-0.8009237,-0.8009237,-0.801407,-0.80189025,-0.80208355,-0.80227685,-0.80227685,-0.80218023,-0.80208355,-0.8019869,-0.8016003,-0.8012137,-0.801407,-0.80150366,-0.8009237,-0.80005383,-0.7992805,-0.79870063,-0.7988939,-0.8001505,-0.80131036,-0.79860395,-0.7918382,-0.7871989,-0.7869089,-0.7870056,-0.78661895,-0.7869089,-0.7872955,-0.7871989,-0.7871022,-0.7870056,-0.7871022,-0.7870056,-0.78661895,-0.7880688,-0.7921282,-0.79444796,-0.7945446,-0.79725087,-0.801117,-0.8023735,-0.80227685,-0.80227685,-0.80208355,-0.8019869,-0.80189025,-0.80208355,-0.80218023,-0.8023735,-0.80247015,-0.80247015,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80218023,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8007304,-0.8012137,-0.8025668,-0.8025668,-0.80266345,-0.8025668,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8023735,-0.80227685,-0.80218023,-0.80208355,-0.80208355,-0.80208355,-0.80218023,-0.80247015,-0.80247015,-0.80266345,-0.80247015,-0.7992805,-0.79560775,-0.7940613,-0.79116166,-0.7873922,-0.7869089,-0.7878755,-0.7876822,-0.7877788,-0.78845537,-0.7881654,-0.788842,-0.7902918,-0.7892286,-0.7875855,-0.7881654,-0.78845537,-0.7878755,-0.7877788,-0.7883587,-0.7892286,-0.79000187,-0.7904851,-0.7919349,-0.7957044,-0.79986054,-0.80131036,-0.80005383,-0.7989906,-0.7994738,-0.8008271,-0.8017936,-0.80218023,-0.80218023,-0.8019869,-0.80218023,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80208355,-0.80169696,-0.80150366,-0.80169696,-0.8019869,-0.80227685,-0.8025668,-0.80218023,-0.80169696,-0.801117,-0.7997638,-0.79986054,-0.79860395,-0.7926115,-0.79106504,-0.7965743,-0.7994738,-0.79831403,-0.79802406,-0.7987973,-0.8003438,-0.8019869,-0.80227685,-0.80227685,-0.80218023,-0.8019869,-0.8017936,-0.80189025,-0.8019869,-0.80218023,-0.80247015,-0.80247015,-0.80218023,-0.80227685,-0.80227685,-0.80208355,-0.8017936,-0.8017936,-0.801407,-0.80131036,-0.801407,-0.8012137,-0.8010204,-0.8012137,-0.8007304,-0.7993772,-0.79850733,-0.79860395,-0.79986054,-0.80131036,-0.8003438,-0.79541445,-0.7893253,-0.78623235,-0.7857491,-0.7859424,-0.78623235,-0.7867156,-0.7870056,-0.7868123,-0.7870056,-0.7873922,-0.7874888,-0.7872955,-0.7867156,-0.7872955,-0.79125834,-0.79464126,-0.79464126,-0.7961877,-0.8005371,-0.80247015,-0.80208355,-0.8019869,-0.8019869,-0.80189025,-0.8019869,-0.8017936,-0.80169696,-0.80189025,-0.80208355,-0.80247015,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8023735,-0.80189025,-0.801407,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8025668,-0.80218023,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80247015,-0.80218023,-0.8019869,-0.80208355,-0.80218023,-0.80208355,-0.8023735,-0.80266345,-0.8027601,-0.8027601,-0.8008271,-0.7971542,-0.79483455,-0.7922248,-0.7883587,-0.7868123,-0.7876822,-0.7880688,-0.7880688,-0.7881654,-0.7879721,-0.7881654,-0.78845537,-0.7879721,-0.7877788,-0.78826207,-0.78845537,-0.78826207,-0.7880688,-0.78864866,-0.7898086,-0.79000187,-0.7890353,-0.78826207,-0.788842,-0.7918382,-0.7964776,-0.80005383,-0.8009237,-0.7996672,-0.7990872,-0.7995705,-0.8005371,-0.80131036,-0.8017936,-0.80218023,-0.80227685,-0.80218023,-0.80218023,-0.8023735,-0.8025668,-0.80247015,-0.8023735,-0.80227685,-0.80227685,-0.80208355,-0.80189025,-0.8016003,-0.8008271,-0.80005383,-0.7997638,-0.7993772,-0.79792744,-0.79541445,-0.7945446,-0.796091,-0.79725087,-0.79744416,-0.7971542,-0.79725087,-0.79870063,-0.8005371,-0.801117,-0.80150366,-0.80189025,-0.80208355,-0.80208355,-0.8019869,-0.8017936,-0.8017936,-0.8017936,-0.8017936,-0.8016003,-0.801407,-0.801407,-0.8012137,-0.8010204,-0.8008271,-0.8005371,-0.8006338,-0.8009237,-0.8010204,-0.8009237,-0.7999572,-0.79870063,-0.79850733,-0.7995705,-0.8007304,-0.8005371,-0.79725087,-0.7918382,-0.7873922,-0.7859424,-0.78661895,-0.7869089,-0.78642565,-0.78613573,-0.7865223,-0.7871022,-0.7868123,-0.7865223,-0.7873922,-0.7875855,-0.7867156,-0.7871989,-0.7906784,-0.794158,-0.7949312,-0.796091,-0.7997638,-0.80227685,-0.80218023,-0.80189025,-0.8017936,-0.80169696,-0.8017936,-0.80169696,-0.80150366,-0.801407,-0.80169696,-0.8019869,-0.80227685,-0.80247015,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80247015,-0.8025668,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8016003,-0.80208355,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80247015,-0.80208355,-0.80208355,-0.80208355,-0.80208355,-0.80208355,-0.8023735,-0.80247015,-0.8023735,-0.8027601,-0.8023735,-0.7989906,-0.7955111,-0.79348135,-0.79038846,-0.7875855,-0.7871022,-0.7876822,-0.7880688,-0.7879721,-0.7877788,-0.7877788,-0.7875855,-0.7871022,-0.7870056,-0.7875855,-0.7881654,-0.7880688,-0.7879721,-0.78855205,-0.7894219,-0.7893253,-0.7883587,-0.7880688,-0.7880688,-0.7876822,-0.7889387,-0.793288,-0.79802406,-0.8005371,-0.8008271,-0.79986054,-0.7987973,-0.7987973,-0.7995705,-0.8008271,-0.8017936,-0.80227685,-0.8023735,-0.80247015,-0.8023735,-0.80208355,-0.8019869,-0.8019869,-0.8017936,-0.80169696,-0.801407,-0.8008271,-0.80005383,-0.7996672,-0.7997638,-0.7987973,-0.79783076,-0.7988939,-0.7987973,-0.796381,-0.7957044,-0.7962843,-0.7968642,-0.79831403,-0.7993772,-0.7996672,-0.80005383,-0.8004405,-0.8008271,-0.8009237,-0.8008271,-0.8006338,-0.8005371,-0.8005371,-0.8003438,-0.80005383,-0.8001505,-0.8003438,-0.7999572,-0.7992805,-0.7990872,-0.7994738,-0.7999572,-0.8005371,-0.8006338,-0.80005383,-0.7988939,-0.79850733,-0.7994738,-0.8010204,-0.8010204,-0.7977341,-0.7924181,-0.7878755,-0.7857491,-0.78603905,-0.7867156,-0.7865223,-0.7867156,-0.7871022,-0.7867156,-0.78623235,-0.78661895,-0.7871989,-0.7870056,-0.7871989,-0.7875855,-0.7869089,-0.788842,-0.7937714,-0.79512453,-0.79502785,-0.79860395,-0.80189025,-0.80227685,-0.80218023,-0.80208355,-0.8017936,-0.8016003,-0.80150366,-0.8016003,-0.80169696,-0.8017936,-0.8017936,-0.8019869,-0.80218023,-0.8023735,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80169696,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80150366,-0.80189025,-0.8025668,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80247015,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80247015,-0.80227685,-0.80227685,-0.80227685,-0.80247015,-0.80247015,-0.80247015,-0.8025668,-0.8027601,-0.8027601,-0.8008271,-0.7971542,-0.7947379,-0.7933847,-0.7906784,-0.7875855,-0.78661895,-0.7869089,-0.7870056,-0.7871022,-0.7871022,-0.7868123,-0.7874888,-0.78855205,-0.789132,-0.7890353,-0.78845537,-0.7876822,-0.7876822,-0.78855205,-0.7889387,-0.78864866,-0.78855205,-0.78855205,-0.7881654,-0.7878755,-0.7881654,-0.7900985,-0.7943513,-0.79860395,-0.8007304,-0.8006338,-0.7994738,-0.79841065,-0.79841065,-0.7993772,-0.8005371,-0.8012137,-0.80189025,-0.80247015,-0.8023735,-0.80227685,-0.80218023,-0.80189025,-0.80150366,-0.8010204,-0.8004405,-0.8001505,-0.80005383,-0.7999572,-0.7991839,-0.7990872,-0.8003438,-0.7999572,-0.79744416,-0.7959944,-0.79580104,-0.7962843,-0.79792744,-0.7994738,-0.7997638,-0.7995705,-0.79986054,-0.8004405,-0.8005371,-0.8003438,-0.80024713,-0.7999572,-0.7997638,-0.7996672,-0.7991839,-0.7987973,-0.7987973,-0.7987973,-0.7988939,-0.7990872,-0.7997638,-0.8001505,-0.79986054,-0.7990872,-0.7987973,-0.7994738,-0.8007304,-0.8009237,-0.79841065,-0.79357797,-0.78874534,-0.78661895,-0.78623235,-0.7858457,-0.7856524,-0.78642565,-0.7869089,-0.7867156,-0.7870056,-0.7873922,-0.7868123,-0.78623235,-0.78661895,-0.7870056,-0.7870056,-0.7867156,-0.7874888,-0.79106504,-0.7945446,-0.7949312,-0.7967676,-0.8008271,-0.8025668,-0.80227685,-0.80218023,-0.8019869,-0.80169696,-0.80150366,-0.801407,-0.8016003,-0.80169696,-0.8017936,-0.80189025,-0.8019869,-0.80227685,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8025668,-0.8025668,-0.80285674,-0.8025668,-0.80247015,-0.80150366,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8019869,-0.8023735,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8025668,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8023735,-0.8023735,-0.8023735,-0.80227685,-0.8023735,-0.80247015,-0.8027601,-0.80266345,-0.80285674,-0.8025668,-0.7993772,-0.79580104,-0.79541445,-0.7947379,-0.7918382,-0.7892286,-0.7877788,-0.7871989,-0.7878755,-0.789132,-0.7902918,-0.7918382,-0.79348135,-0.7930947,-0.7917416,-0.79135495,-0.79000187,-0.78864866,-0.78874534,-0.78826207,-0.7876822,-0.7883587,-0.78864866,-0.78826207,-0.7883587,-0.7883587,-0.7880688,-0.78874534,-0.79096836,-0.79464126,-0.7987973,-0.801117,-0.8009237,-0.7996672,-0.79860395,-0.79841065,-0.7987973,-0.7992805,-0.7999572,-0.8005371,-0.8007304,-0.8006338,-0.8006338,-0.8005371,-0.8001505,-0.7999572,-0.80005383,-0.7996672,-0.7993772,-0.7992805,-0.7994738,-0.79986054,-0.7990872,-0.79744416,-0.796381,-0.7965743,-0.7973475,-0.79792744,-0.7990872,-0.79986054,-0.7994738,-0.7997638,-0.8008271,-0.8008271,-0.8005371,-0.8003438,-0.8001505,-0.8001505,-0.7999572,-0.7996672,-0.7991839,-0.7987973,-0.7991839,-0.79986054,-0.7995705,-0.7991839,-0.7990872,-0.7991839,-0.7999572,-0.8010204,-0.8010204,-0.79870063,-0.7943513,-0.79019517,-0.7875855,-0.7865223,-0.78661895,-0.7869089,-0.7871022,-0.7868123,-0.78632903,-0.7865223,-0.7868123,-0.7867156,-0.7868123,-0.7869089,-0.78661895,-0.78632903,-0.7867156,-0.7870056,-0.78661895,-0.78855205,-0.7929014,-0.7947379,-0.79560775,-0.7991839,-0.80218023,-0.80247015,-0.80227685,-0.80227685,-0.8019869,-0.8016003,-0.80131036,-0.80131036,-0.80150366,-0.8016003,-0.80189025,-0.80208355,-0.80227685,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.80247015,-0.8019869,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8009237,-0.8019869,-0.80247015,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80247015,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.80189025,-0.79850733,-0.79580104,-0.7953178,-0.7949312,-0.7936747,-0.7924181,-0.79145163,-0.79164493,-0.7933847,-0.7945446,-0.79464126,-0.79502785,-0.79483455,-0.79425466,-0.794158,-0.7929014,-0.7923215,-0.7923215,-0.7902918,-0.78845537,-0.7883587,-0.78826207,-0.7881654,-0.7881654,-0.78864866,-0.7889387,-0.78845537,-0.7881654,-0.7889387,-0.79106504,-0.79483455,-0.7987973,-0.801117,-0.80131036,-0.8003438,-0.7996672,-0.7993772,-0.7988939,-0.79850733,-0.79850733,-0.79860395,-0.79870063,-0.7987973,-0.79860395,-0.79831403,-0.79802406,-0.79763746,-0.79783076,-0.79802406,-0.79763746,-0.79763746,-0.7973475,-0.7964776,-0.7962843,-0.7964776,-0.7968642,-0.7977341,-0.79812074,-0.79831403,-0.79831403,-0.79831403,-0.7990872,-0.7997638,-0.7996672,-0.7995705,-0.7995705,-0.7995705,-0.7993772,-0.7990872,-0.7989906,-0.7987973,-0.79860395,-0.7987973,-0.7990872,-0.7995705,-0.8004405,-0.801117,-0.8007304,-0.79812074,-0.793868,-0.79019517,-0.78826207,-0.7878755,-0.7880688,-0.7876822,-0.7871022,-0.7872955,-0.7878755,-0.7878755,-0.7871989,-0.7867156,-0.7867156,-0.7867156,-0.7865223,-0.7868123,-0.7870056,-0.78642565,-0.78623235,-0.7867156,-0.7877788,-0.79116166,-0.79464126,-0.79522115,-0.7966709,-0.8004405,-0.80247015,-0.80247015,-0.80227685,-0.80208355,-0.80189025,-0.8016003,-0.80131036,-0.801407,-0.80150366,-0.80169696,-0.80189025,-0.80208355,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80247015,-0.8016003,-0.8010204,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.7995705,-0.8009237,-0.80227685,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8025668,-0.8025668,-0.80247015,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8016003,-0.7991839,-0.7965743,-0.79522115,-0.7949312,-0.79464126,-0.794158,-0.7945446,-0.7957044,-0.7966709,-0.79763746,-0.79821736,-0.79831403,-0.79850733,-0.79812074,-0.7969609,-0.7959944,-0.7945446,-0.7929981,-0.7923215,-0.79135495,-0.7898086,-0.7883587,-0.7876822,-0.78845537,-0.7892286,-0.78855205,-0.7880688,-0.7880688,-0.7879721,-0.78874534,-0.79087174,-0.7940613,-0.7975408,-0.80005383,-0.80131036,-0.8017936,-0.80131036,-0.8008271,-0.8007304,-0.8007304,-0.8005371,-0.8004405,-0.8004405,-0.8003438,-0.80024713,-0.8001505,-0.8003438,-0.8006338,-0.8001505,-0.7992805,-0.7990872,-0.7990872,-0.79870063,-0.79850733,-0.79850733,-0.79870063,-0.79850733,-0.79821736,-0.79831403,-0.79821736,-0.79821736,-0.79850733,-0.79850733,-0.79850733,-0.79850733,-0.79841065,-0.7987973,-0.7989906,-0.7987973,-0.7993772,-0.8006338,-0.801117,-0.8009237,-0.8005371,-0.7991839,-0.7965743,-0.7926115,-0.789132,-0.7874888,-0.7872955,-0.7874888,-0.7875855,-0.7877788,-0.7874888,-0.7871989,-0.7874888,-0.7875855,-0.7874888,-0.7877788,-0.7873922,-0.7867156,-0.7867156,-0.7868123,-0.78661895,-0.7867156,-0.7868123,-0.78632903,-0.7859424,-0.78845537,-0.7933847,-0.79541445,-0.79512453,-0.7977341,-0.80150366,-0.8025668,-0.8023735,-0.8023735,-0.80208355,-0.8017936,-0.8016003,-0.8017936,-0.80189025,-0.8017936,-0.8017936,-0.80208355,-0.80247015,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80247015,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8025668,-0.8025668,-0.80131036,-0.7995705,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8007304,-0.80169696,-0.80227685,-0.80247015,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8023735,-0.8008271,-0.7992805,-0.79850733,-0.79792744,-0.79783076,-0.79870063,-0.7995705,-0.8003438,-0.8012137,-0.80169696,-0.80169696,-0.80150366,-0.80131036,-0.8009237,-0.7996672,-0.79763746,-0.7961877,-0.79541445,-0.79425466,-0.7929981,-0.7917416,-0.7895186,-0.7879721,-0.78855205,-0.7890353,-0.78845537,-0.7878755,-0.7880688,-0.78864866,-0.78855205,-0.78826207,-0.7898086,-0.7928048,-0.79464126,-0.7959944,-0.79783076,-0.7989906,-0.7993772,-0.7996672,-0.7997638,-0.7999572,-0.7997638,-0.7994738,-0.7992805,-0.7993772,-0.7992805,-0.7987973,-0.7987973,-0.7999572,-0.8007304,-0.8004405,-0.8006338,-0.8010204,-0.801117,-0.8012137,-0.80131036,-0.801407,-0.801407,-0.80131036,-0.80131036,-0.80131036,-0.80131036,-0.8012137,-0.801117,-0.801117,-0.80150366,-0.8012137,-0.7995705,-0.79870063,-0.7992805,-0.79841065,-0.79541445,-0.7926115,-0.7904851,-0.78845537,-0.7871989,-0.7871022,-0.7874888,-0.7875855,-0.7875855,-0.7875855,-0.7877788,-0.7876822,-0.7874888,-0.7876822,-0.7873922,-0.7868123,-0.7875855,-0.7880688,-0.7871022,-0.7867156,-0.7870056,-0.78661895,-0.78642565,-0.7868123,-0.78613573,-0.7868123,-0.79116166,-0.79512453,-0.79512453,-0.7955111,-0.7991839,-0.80218023,-0.80266345,-0.8023735,-0.80247015,-0.8023735,-0.80227685,-0.80218023,-0.80208355,-0.80218023,-0.80227685,-0.80227685,-0.8023735,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80150366,-0.8009237,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80005383,-0.80131036,-0.80247015,-0.80266345,-0.80266345,-0.80247015,-0.8025668,-0.80247015,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.80247015,-0.80218023,-0.80208355,-0.80169696,-0.801407,-0.80189025,-0.80227685,-0.80218023,-0.80208355,-0.80227685,-0.80247015,-0.80247015,-0.80227685,-0.80218023,-0.80189025,-0.8012137,-0.8001505,-0.7991839,-0.79792744,-0.7961877,-0.79464126,-0.7928048,-0.7902918,-0.78874534,-0.788842,-0.78874534,-0.7883587,-0.7883587,-0.78855205,-0.78864866,-0.78864866,-0.78855205,-0.7883587,-0.78826207,-0.78874534,-0.7898086,-0.7904851,-0.79096836,-0.79125834,-0.79164493,-0.7920315,-0.79154825,-0.7904851,-0.79000187,-0.79019517,-0.79019517,-0.7896152,-0.79038846,-0.7922248,-0.7921282,-0.79145163,-0.7925148,-0.79357797,-0.7933847,-0.7939647,-0.79512453,-0.79580104,-0.7965743,-0.79725087,-0.79725087,-0.79705757,-0.79725087,-0.7975408,-0.7977341,-0.79725087,-0.79560775,-0.7949312,-0.7953178,-0.79348135,-0.79038846,-0.789132,-0.78845537,-0.7875855,-0.7877788,-0.7881654,-0.7879721,-0.7878755,-0.7877788,-0.7876822,-0.7876822,-0.7874888,-0.7873922,-0.7877788,-0.7883587,-0.7881654,-0.7872955,-0.7869089,-0.7873922,-0.7875855,-0.7869089,-0.7867156,-0.7870056,-0.7867156,-0.78613573,-0.7858457,-0.7867156,-0.79019517,-0.79464126,-0.79560775,-0.79464126,-0.7969609,-0.801117,-0.8025668,-0.80247015,-0.8025668,-0.80247015,-0.80227685,-0.80227685,-0.80218023,-0.80218023,-0.80227685,-0.80247015,-0.80247015,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80247015,-0.80247015,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80285674,-0.80150366,-0.8001505,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8006338,-0.80131036,-0.8025668,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80247015,-0.8025668,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.8025668,-0.80247015,-0.80247015,-0.8025668,-0.80247015,-0.8023735,-0.8025668,-0.80247015,-0.8023735,-0.80227685,-0.80218023,-0.80189025,-0.80169696,-0.80131036,-0.7997638,-0.7973475,-0.79541445,-0.7937714,-0.79125834,-0.7890353,-0.7883587,-0.78874534,-0.78864866,-0.7881654,-0.7883587,-0.78855205,-0.7881654,-0.78826207,-0.78864866,-0.78855205,-0.7883587,-0.7878755,-0.7877788,-0.78826207,-0.7883587,-0.7880688,-0.7877788,-0.7875855,-0.7878755,-0.78845537,-0.78855205,-0.7889387,-0.7892286,-0.7879721,-0.7867156,-0.7867156,-0.7871022,-0.7871022,-0.7868123,-0.7870056,-0.7876822,-0.7875855,-0.7875855,-0.78855205,-0.7889387,-0.7881654,-0.7880688,-0.78864866,-0.7892286,-0.7889387,-0.7873922,-0.7875855,-0.79106504,-0.79145163,-0.7878755,-0.7870056,-0.7881654,-0.7880688,-0.7878755,-0.7880688,-0.7876822,-0.7871989,-0.7872955,-0.7875855,-0.7874888,-0.7875855,-0.7876822,-0.7876822,-0.7876822,-0.7875855,-0.7871989,-0.7869089,-0.7869089,-0.7869089,-0.78661895,-0.78632903,-0.78632903,-0.78623235,-0.78632903,-0.7874888,-0.79019517,-0.7940613,-0.7962843,-0.79541445,-0.7958977,-0.7996672,-0.80218023,-0.80227685,-0.80247015,-0.8027601,-0.8025668,-0.80247015,-0.80247015,-0.8025668,-0.80247015,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8023735,-0.8025668,-0.80169696,-0.8007304,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80024713,-0.8008271,-0.80247015,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.8025668,-0.8023735,-0.8023735,-0.80218023,-0.80208355,-0.80218023,-0.80227685,-0.80218023,-0.80227685,-0.80247015,-0.80227685,-0.80189025,-0.8006338,-0.79792744,-0.7955111,-0.7937714,-0.7906784,-0.7881654,-0.78826207,-0.78845537,-0.7880688,-0.78845537,-0.78864866,-0.78826207,-0.78826207,-0.7883587,-0.78845537,-0.788842,-0.78874534,-0.78845537,-0.7889387,-0.7890353,-0.78845537,-0.78845537,-0.7892286,-0.7896152,-0.7894219,-0.788842,-0.7893253,-0.7904851,-0.7895186,-0.7874888,-0.7874888,-0.7880688,-0.7874888,-0.7871989,-0.7875855,-0.7876822,-0.7869089,-0.7869089,-0.7877788,-0.7877788,-0.7871022,-0.7871989,-0.7876822,-0.7878755,-0.7876822,-0.7872955,-0.7876822,-0.788842,-0.78874534,-0.7875855,-0.7874888,-0.7876822,-0.7870056,-0.78642565,-0.7870056,-0.7875855,-0.7871989,-0.7869089,-0.7867156,-0.78661895,-0.7867156,-0.7867156,-0.7867156,-0.7868123,-0.7869089,-0.7870056,-0.7869089,-0.78623235,-0.7856524,-0.7857491,-0.7870056,-0.78826207,-0.7889387,-0.7906784,-0.7928048,-0.79425466,-0.79502785,-0.7949312,-0.7965743,-0.80024713,-0.8023735,-0.80227685,-0.80247015,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80247015,-0.80247015,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.8025668,-0.8016003,-0.8003438,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.801407,-0.8017936,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.80247015,-0.8023735,-0.80227685,-0.80208355,-0.80208355,-0.80208355,-0.80218023,-0.8023735,-0.8023735,-0.80247015,-0.80247015,-0.8025668,-0.80247015,-0.8008271,-0.79812074,-0.7958977,-0.7931914,-0.7899052,-0.7881654,-0.78826207,-0.78845537,-0.78826207,-0.78826207,-0.78845537,-0.78855205,-0.78864866,-0.78864866,-0.78874534,-0.7890353,-0.789132,-0.7890353,-0.78874534,-0.78864866,-0.7889387,-0.788842,-0.7883587,-0.7878755,-0.7873922,-0.7873922,-0.78826207,-0.78845537,-0.7875855,-0.7875855,-0.7881654,-0.78826207,-0.7877788,-0.7877788,-0.7878755,-0.7872955,-0.7874888,-0.7892286,-0.7893253,-0.7876822,-0.7873922,-0.7881654,-0.7883587,-0.7880688,-0.7875855,-0.7874888,-0.7876822,-0.7876822,-0.7881654,-0.78874534,-0.7890353,-0.7893253,-0.7899052,-0.7902918,-0.7902918,-0.79038846,-0.79019517,-0.7898086,-0.7892286,-0.7879721,-0.7869089,-0.7868123,-0.7867156,-0.7865223,-0.78642565,-0.7865223,-0.7868123,-0.7875855,-0.7897119,-0.7923215,-0.7930947,-0.7933847,-0.7947379,-0.79541445,-0.79512453,-0.7955111,-0.7977341,-0.8009237,-0.8025668,-0.80247015,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80208355,-0.80150366,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80247015,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8023735,-0.80218023,-0.80218023,-0.80227685,-0.80208355,-0.8017936,-0.80189025,-0.80189025,-0.8017936,-0.8019869,-0.8023735,-0.80227685,-0.80247015,-0.8025668,-0.8025668,-0.8025668,-0.8010204,-0.7975408,-0.79522115,-0.7931914,-0.7895186,-0.7873922,-0.7879721,-0.78874534,-0.78855205,-0.7883587,-0.78855205,-0.78855205,-0.78845537,-0.78874534,-0.789132,-0.789132,-0.78874534,-0.7881654,-0.7878755,-0.7878755,-0.7878755,-0.7877788,-0.7875855,-0.7876822,-0.7880688,-0.7878755,-0.7872955,-0.7871989,-0.7870056,-0.7871022,-0.7877788,-0.7879721,-0.7876822,-0.7878755,-0.7878755,-0.7871022,-0.7880688,-0.7899052,-0.7892286,-0.7877788,-0.7877788,-0.7880688,-0.7880688,-0.7880688,-0.7889387,-0.7904851,-0.79116166,-0.79116166,-0.79145163,-0.7917416,-0.7927081,-0.793868,-0.7943513,-0.7943513,-0.7943513,-0.79425466,-0.7940613,-0.79357797,-0.7921282,-0.79116166,-0.79164493,-0.7920315,-0.79135495,-0.7904851,-0.79038846,-0.7917416,-0.793288,-0.79444796,-0.79522115,-0.79502785,-0.79464126,-0.79541445,-0.7968642,-0.79841065,-0.8003438,-0.80208355,-0.8025668,-0.8023735,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.80247015,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80247015,-0.8025668,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80227685,-0.8023735,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80285674,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80247015,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80247015,-0.80208355,-0.80208355,-0.80218023,-0.80218023,-0.80189025,-0.8016003,-0.8017936,-0.8019869,-0.80189025,-0.8019869,-0.80218023,-0.80227685,-0.8023735,-0.8023735,-0.8027601,-0.8025668,-0.80005383,-0.7973475,-0.79560775,-0.7921282,-0.78826207,-0.7874888,-0.7883587,-0.78845537,-0.78826207,-0.78855205,-0.78864866,-0.78826207,-0.7883587,-0.7883587,-0.7878755,-0.7877788,-0.78826207,-0.7890353,-0.7893253,-0.7896152,-0.7897119,-0.7893253,-0.7898086,-0.79106504,-0.79096836,-0.7896152,-0.78874534,-0.78855205,-0.7883587,-0.7883587,-0.7880688,-0.7872955,-0.7870056,-0.7873922,-0.7874888,-0.7875855,-0.78855205,-0.78874534,-0.7880688,-0.7876822,-0.7876822,-0.78855205,-0.79019517,-0.7921282,-0.7939647,-0.7949312,-0.79522115,-0.79580104,-0.7964776,-0.7967676,-0.7971542,-0.79802406,-0.79850733,-0.79831403,-0.79821736,-0.79792744,-0.7967676,-0.79541445,-0.79444796,-0.7939647,-0.7940613,-0.794158,-0.794158,-0.79425466,-0.7945446,-0.7949312,-0.79580104,-0.79705757,-0.79812074,-0.7988939,-0.7997638,-0.801117,-0.80227685,-0.8025668,-0.80247015,-0.8025668,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8025668,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8023735,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80218023,-0.80208355,-0.80208355,-0.8019869,-0.8017936,-0.80169696,-0.8017936,-0.8017936,-0.8017936,-0.80189025,-0.8019869,-0.80189025,-0.8019869,-0.80227685,-0.80247015,-0.8027601,-0.80208355,-0.7993772,-0.7968642,-0.794158,-0.7900985,-0.7874888,-0.7877788,-0.7880688,-0.7880688,-0.7883587,-0.7883587,-0.7877788,-0.7873922,-0.7878755,-0.78874534,-0.7897119,-0.79164493,-0.79357797,-0.7937714,-0.7930947,-0.7930947,-0.7933847,-0.793868,-0.79444796,-0.793868,-0.7925148,-0.7924181,-0.7927081,-0.7923215,-0.79154825,-0.7904851,-0.7894219,-0.7883587,-0.7871989,-0.7868123,-0.7875855,-0.7880688,-0.7876822,-0.7872955,-0.7879721,-0.7899052,-0.7923215,-0.7937714,-0.79502785,-0.79705757,-0.79870063,-0.7993772,-0.79986054,-0.8003438,-0.8006338,-0.8007304,-0.8010204,-0.8016003,-0.8016003,-0.801407,-0.801407,-0.801117,-0.80024713,-0.7990872,-0.7973475,-0.7959944,-0.79580104,-0.7961877,-0.7967676,-0.79763746,-0.7988939,-0.8003438,-0.80131036,-0.8017936,-0.80227685,-0.8025668,-0.8025668,-0.80247015,-0.8025668,-0.8027601,-0.80285674,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.80208355,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80218023,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80247015,-0.80218023,-0.80208355,-0.8017936,-0.8017936,-0.80189025,-0.80169696,-0.80169696,-0.8019869,-0.8019869,-0.8019869,-0.80208355,-0.80218023,-0.80227685,-0.80247015,-0.8027601,-0.801407,-0.79821736,-0.79541445,-0.793288,-0.79038846,-0.7879721,-0.7874888,-0.7875855,-0.7874888,-0.7876822,-0.7880688,-0.78874534,-0.79000187,-0.79154825,-0.7928048,-0.7943513,-0.7959944,-0.7967676,-0.7967676,-0.7971542,-0.79783076,-0.79802406,-0.79792744,-0.79744416,-0.7965743,-0.7961877,-0.796091,-0.79580104,-0.7949312,-0.79348135,-0.7928048,-0.7925148,-0.7904851,-0.7879721,-0.7871022,-0.7871989,-0.7873922,-0.78845537,-0.79096836,-0.79348135,-0.7947379,-0.7961877,-0.79860395,-0.8003438,-0.8007304,-0.801117,-0.8016003,-0.8016003,-0.8017936,-0.80189025,-0.8017936,-0.8019869,-0.80227685,-0.8023735,-0.8023735,-0.8023735,-0.8023735,-0.80227685,-0.8016003,-0.8009237,-0.8008271,-0.8008271,-0.8012137,-0.80189025,-0.8023735,-0.80247015,-0.80247015,-0.8025668,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8023735,-0.80169696,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80169696,-0.80189025,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8023735,-0.80227685,-0.80208355,-0.80208355,-0.8019869,-0.8017936,-0.8017936,-0.8017936,-0.80208355,-0.80208355,-0.80189025,-0.8019869,-0.80208355,-0.80227685,-0.80247015,-0.8027601,-0.8025668,-0.8003438,-0.7971542,-0.7958977,-0.79444796,-0.79145163,-0.7894219,-0.78864866,-0.78855205,-0.7896152,-0.79125834,-0.7929014,-0.793868,-0.79464126,-0.796091,-0.79763746,-0.7987973,-0.7997638,-0.80024713,-0.8007304,-0.8010204,-0.801117,-0.8012137,-0.8008271,-0.8001505,-0.7995705,-0.7995705,-0.7994738,-0.79850733,-0.7971542,-0.7959944,-0.7949312,-0.7940613,-0.7925148,-0.79058176,-0.7899052,-0.7904851,-0.7924181,-0.7945446,-0.7949312,-0.7961877,-0.7995705,-0.80150366,-0.801407,-0.8016003,-0.8019869,-0.80208355,-0.80169696,-0.80169696,-0.8019869,-0.8019869,-0.80218023,-0.80266345,-0.8025668,-0.8023735,-0.80247015,-0.8025668,-0.80247015,-0.8023735,-0.8023735,-0.8023735,-0.80227685,-0.80247015,-0.8025668,-0.80247015,-0.80247015,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.80285674,-0.8027601,-0.8025668,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8025668,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8025668,-0.8025668,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.8019869,-0.8016003,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80169696,-0.80227685,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.80247015,-0.80227685,-0.80218023,-0.80218023,-0.80208355,-0.80189025,-0.80189025,-0.80208355,-0.80218023,-0.80218023,-0.80218023,-0.80227685,-0.80227685,-0.80227685,-0.80266345,-0.80266345,-0.80266345,-0.80218023,-0.80005383,-0.7971542,-0.7957044,-0.79502785,-0.793868,-0.7933847,-0.793868,-0.7945446,-0.79464126,-0.7947379,-0.7958977,-0.79802406,-0.7993772,-0.80024713,-0.80131036,-0.80189025,-0.8019869,-0.80218023,-0.80218023,-0.80208355,-0.80218023,-0.80227685,-0.80218023,-0.80189025,-0.8017936,-0.8016003,-0.8010204,-0.8004405,-0.7996672,-0.79792744,-0.7962843,-0.79522115,-0.79425466,-0.7940613,-0.79464126,-0.7947379,-0.7953178,-0.7973475,-0.80024713,-0.80189025,-0.80189025,-0.80169696,-0.80169696,-0.80150366,-0.80131036,-0.8012137,-0.8016003,-0.8017936,-0.8016003,-0.80189025,-0.80247015,-0.8025668,-0.80218023,-0.80218023,-0.80247015,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80247015,-0.8025668,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8025668,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8023735,-0.80208355,-0.80208355,-0.8019869,-0.80189025,-0.80218023,-0.80227685,-0.8023735,-0.80227685,-0.80218023,-0.80227685,-0.8023735,-0.8023735,-0.80247015,-0.80266345,-0.8027601,-0.80285674,-0.80247015,-0.8005371,-0.79821736,-0.7969609,-0.796381,-0.796091,-0.796381,-0.7965743,-0.7965743,-0.79744416,-0.7989906,-0.8003438,-0.801407,-0.80189025,-0.80218023,-0.80247015,-0.80247015,-0.80227685,-0.80218023,-0.80208355,-0.80208355,-0.80218023,-0.80247015,-0.8023735,-0.80227685,-0.8023735,-0.80247015,-0.80227685,-0.80189025,-0.801407,-0.80005383,-0.79841065,-0.7975408,-0.7968642,-0.7962843,-0.7967676,-0.79850733,-0.8007304,-0.8019869,-0.8019869,-0.80189025,-0.80169696,-0.80131036,-0.8010204,-0.8012137,-0.80150366,-0.80150366,-0.80150366,-0.80169696,-0.8019869,-0.80218023,-0.80218023,-0.80218023,-0.80218023,-0.80218023,-0.80247015,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80247015,-0.80227685,-0.80218023,-0.8023735,-0.8025668,-0.8025668,-0.8025668,-0.8025668,-0.80247015,-0.80247015,-0.8025668,-0.80247015,-0.8023735,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80208355,-0.8009237,-0.7997638,-0.7990872,-0.79860395,-0.79850733,-0.79870063,-0.7994738,-0.8009237,-0.80189025,-0.80218023,-0.80218023,-0.80218023,-0.80189025,-0.8017936,-0.8019869,-0.8019869,-0.8019869,-0.8019869,-0.80189025,-0.80189025,-0.80208355,-0.80227685,-0.80227685,-0.80218023,-0.80227685,-0.8023735,-0.80227685,-0.80247015,-0.80218023,-0.80131036,-0.8006338,-0.7997638,-0.7993772,-0.8004405,-0.8017936,-0.80218023,-0.80227685,-0.80227685,-0.80208355,-0.8017936,-0.801407,-0.8012137,-0.801117,-0.801117,-0.801407,-0.8017936,-0.80208355,-0.80218023,-0.80208355,-0.80208355,-0.80218023,-0.80227685,-0.80227685,-0.80247015,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80285674,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80247015,-0.80208355,-0.80169696,-0.801407,-0.801407,-0.80169696,-0.80189025,-0.80227685,-0.80247015,-0.80247015,-0.80227685,-0.80218023,-0.80218023,-0.80218023,-0.80189025,-0.8017936,-0.80169696,-0.8016003,-0.80189025,-0.80218023,-0.80208355,-0.8019869,-0.80227685,-0.8023735,-0.80227685,-0.80227685,-0.8025668,-0.80266345,-0.80247015,-0.8023735,-0.80218023,-0.8019869,-0.80208355,-0.8023735,-0.8025668,-0.80247015,-0.80227685,-0.80227685,-0.80218023,-0.8019869,-0.8017936,-0.8017936,-0.8016003,-0.80150366,-0.8016003,-0.80169696,-0.80189025,-0.8019869,-0.8017936,-0.8017936,-0.80208355,-0.80227685,-0.8023735,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80247015,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80285674,-0.8025668,-0.80247015,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80247015,-0.8025668,-0.80266345,-0.80266345,-0.8025668,-0.80247015,-0.8023735,-0.80218023,-0.8019869,-0.8019869,-0.8019869,-0.8017936,-0.80150366,-0.801407,-0.80169696,-0.80189025,-0.8017936,-0.80189025,-0.80208355,-0.80218023,-0.80227685,-0.8023735,-0.80227685,-0.8023735,-0.80247015,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80247015,-0.8023735,-0.80227685,-0.80208355,-0.80189025,-0.8019869,-0.8019869,-0.8019869,-0.8017936,-0.80169696,-0.8017936,-0.80189025,-0.80169696,-0.8017936,-0.8019869,-0.80208355,-0.80227685,-0.80247015,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80227685,-0.80208355,-0.80208355,-0.80208355,-0.80189025,-0.8017936,-0.80189025,-0.80169696,-0.8016003,-0.80169696,-0.80189025,-0.8019869,-0.80208355,-0.8019869,-0.80189025,-0.80189025,-0.8019869,-0.80218023,-0.8023735,-0.8025668,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80247015,-0.8023735,-0.80218023,-0.80208355,-0.80208355,-0.80189025,-0.8017936,-0.8017936,-0.80189025,-0.80189025,-0.8019869,-0.80218023,-0.80227685,-0.80247015,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80247015,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8023735,-0.80227685,-0.80208355,-0.80189025,-0.8019869,-0.80218023,-0.8017936,-0.80150366,-0.8017936,-0.80189025,-0.80208355,-0.80208355,-0.80189025,-0.8017936,-0.80189025,-0.80208355,-0.80227685,-0.8023735,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8023735,-0.80218023,-0.80208355,-0.8019869,-0.80189025,-0.8019869,-0.80208355,-0.80227685,-0.80247015,-0.8025668,-0.8025668,-0.80285674,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80247015,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80227685,-0.80218023,-0.80218023,-0.80227685,-0.80227685,-0.80218023,-0.80208355,-0.8019869,-0.80189025,-0.80189025,-0.80189025,-0.80169696,-0.8016003,-0.80169696,-0.8017936,-0.8019869,-0.80227685,-0.80247015,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80247015,-0.8025668,-0.80266345,-0.8025668,-0.80227685,-0.8023735,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80247015,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80247015,-0.8023735,-0.80227685,-0.80227685,-0.80218023,-0.80208355,-0.80208355,-0.80218023,-0.80189025,-0.8016003,-0.8017936,-0.80208355,-0.80227685,-0.80247015,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.8025668,-0.8027601,-0.8025668,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.80266345,-0.80247015,-0.80227685,-0.80218023,-0.80227685,-0.80227685,-0.80227685,-0.80227685,-0.8023735,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80285674,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.8025668,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.8025668,-0.8025668,-0.80247015,-0.80247015,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.8025668,-0.80285674,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8025668,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80285674,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8025668,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8025668,-0.80266345,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8025668,-0.8027601,-0.8025668,-0.8027601,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80247015,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8025668,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8025668,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8025668,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80285674,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80285674,-0.8025668,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80247015,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.8025668,-0.8023735,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8025668,-0.8027601,-0.8027601,-0.80285674,-0.80285674,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.8027601,-0.8025668,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80266345,-0.80285674,-0.8027601,-0.8027601,-0.8025668,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.80285674,-0.80285674,-0.8027601,-0.80285674,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.80285674,-0.80266345,-0.80285674,-0.8025668,-0.80285674,-0.80247015,-0.8025668,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8025668,-0.8025668,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.80285674,-0.8025668,-0.8025668,-0.80266345,-0.80266345,-0.80266345,-0.80285674,-0.80266345,-0.80266345,-0.8027601,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.80266345,-0.80285674,-0.8027601,-0.80266345,-0.8027601,-0.8027601,-0.8027601,-0.8027601,-0.8025668,-0.8027601,-0.8025668,-0.8027601,-0.80266345,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.80285674,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7864806,-0.7864806,-0.7864806,-0.7865686,-0.7865686,-0.7865686,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7865686,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7865686,-0.7864806,-0.7864806,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7864806,-0.7864806,-0.7865686,-0.7865686,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7864806,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7865686,-0.7865686,-0.7864806,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7865686,-0.78665656,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7865686,-0.78665656,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7865686,-0.78665656,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7862167,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7865686,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7865686,-0.78665656,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7864806,-0.78665656,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.78665656,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.7860407,-0.78595275,-0.7860407,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.78665656,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7862167,-0.78595275,-0.7857768,-0.78560084,-0.7853369,-0.78516096,-0.78516096,-0.78516096,-0.78524894,-0.7854249,-0.7856888,-0.78595275,-0.7861287,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7861287,-0.7861287,-0.7861287,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7862167,-0.7860407,-0.7856888,-0.78524894,-0.78498495,-0.78454506,-0.7841052,-0.7839292,-0.7840172,-0.7840172,-0.7841052,-0.78428113,-0.78454506,-0.78489697,-0.7853369,-0.7856888,-0.7860407,-0.7862167,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7864806,-0.78665656,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.7861287,-0.7860407,-0.7860407,-0.7860407,-0.78595275,-0.7858648,-0.78595275,-0.78595275,-0.7860407,-0.7861287,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7861287,-0.78595275,-0.7856888,-0.78524894,-0.784809,-0.78428113,-0.78357726,-0.78269744,-0.7819936,-0.7817297,-0.78155375,-0.78146577,-0.78155375,-0.7819936,-0.78260946,-0.78331333,-0.7838412,-0.7844571,-0.78516096,-0.7857768,-0.7861287,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.78665656,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7862167,-0.7861287,-0.7861287,-0.7860407,-0.78595275,-0.7858648,-0.7858648,-0.7858648,-0.7858648,-0.7858648,-0.7856888,-0.7857768,-0.7860407,-0.7860407,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7861287,-0.7858648,-0.78551286,-0.78498495,-0.78428113,-0.78357726,-0.7827854,-0.7816417,-0.7803221,-0.7792663,-0.77838653,-0.7777706,-0.77750665,-0.7774187,-0.7772427,-0.7776826,-0.77873844,-0.7802341,-0.7813778,-0.78225756,-0.7834893,-0.78463304,-0.7853369,-0.7856888,-0.78595275,-0.78630465,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.7861287,-0.7860407,-0.78595275,-0.7860407,-0.7860407,-0.7861287,-0.7861287,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.78665656,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.7861287,-0.7860407,-0.78595275,-0.78595275,-0.7858648,-0.7857768,-0.7856888,-0.7856888,-0.7857768,-0.7857768,-0.7857768,-0.7858648,-0.7860407,-0.7860407,-0.78595275,-0.78595275,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.7860407,-0.7858648,-0.78551286,-0.785073,-0.7843691,-0.7834013,-0.78234553,-0.78111386,-0.7795302,-0.77785856,-0.77680284,-0.7765389,-0.7768908,-0.7774187,-0.77821046,-0.77785856,-0.7765389,-0.77601105,-0.776099,-0.77680284,-0.77873844,-0.78041005,-0.7810259,-0.7820816,-0.7834013,-0.7844571,-0.78524894,-0.7858648,-0.7861287,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7861287,-0.78595275,-0.7860407,-0.78595275,-0.7858648,-0.7857768,-0.7858648,-0.78595275,-0.7860407,-0.7860407,-0.7861287,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.78665656,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.7861287,-0.7861287,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7862167,-0.7860407,-0.78595275,-0.78595275,-0.7857768,-0.7857768,-0.7856888,-0.7856888,-0.78560084,-0.78551286,-0.78551286,-0.78560084,-0.78560084,-0.78551286,-0.78560084,-0.7856888,-0.7856888,-0.78560084,-0.7856888,-0.78595275,-0.7862167,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7860407,-0.7857768,-0.78560084,-0.7853369,-0.78498495,-0.78454506,-0.7837532,-0.78260946,-0.78155375,-0.7802341,-0.7788264,-0.77794653,-0.7773307,-0.7775946,-0.77909034,-0.78111386,-0.7825215,-0.78304935,-0.7828734,-0.7817297,-0.7800581,-0.77794653,-0.7765389,-0.7776826,-0.7792663,-0.7796182,-0.7800581,-0.78120184,-0.7824335,-0.7837532,-0.784721,-0.7853369,-0.78595275,-0.7862167,-0.7862167,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7862167,-0.7860407,-0.7857768,-0.7857768,-0.7858648,-0.7858648,-0.7856888,-0.7856888,-0.7856888,-0.7857768,-0.7858648,-0.78595275,-0.78595275,-0.7860407,-0.7861287,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7861287,-0.7861287,-0.7860407,-0.7861287,-0.7862167,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7864806,-0.78665656,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7862167,-0.7860407,-0.7861287,-0.7861287,-0.7861287,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.78595275,-0.7858648,-0.7858648,-0.7856888,-0.78551286,-0.78551286,-0.7854249,-0.78516096,-0.78498495,-0.78498495,-0.78489697,-0.78498495,-0.78498495,-0.78498495,-0.78516096,-0.78516096,-0.78524894,-0.7854249,-0.7856888,-0.7858648,-0.7861287,-0.7862167,-0.7861287,-0.7860407,-0.78595275,-0.7858648,-0.7857768,-0.7854249,-0.78516096,-0.784809,-0.7841052,-0.78357726,-0.78304935,-0.7821696,-0.78084993,-0.77944225,-0.77794653,-0.7774187,-0.7781225,-0.7793543,-0.78146577,-0.78366524,-0.785073,-0.7853369,-0.785073,-0.78516096,-0.78516096,-0.7843691,-0.78234553,-0.7796182,-0.7781225,-0.77821046,-0.77865046,-0.7791783,-0.7795302,-0.780498,-0.78190565,-0.78304935,-0.7841052,-0.784809,-0.7853369,-0.7856888,-0.78595275,-0.7861287,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7862167,-0.78595275,-0.7858648,-0.7857768,-0.78560084,-0.78551286,-0.78551286,-0.78551286,-0.78560084,-0.78560084,-0.78551286,-0.78551286,-0.78560084,-0.78560084,-0.7856888,-0.7857768,-0.7858648,-0.7860407,-0.7861287,-0.7862167,-0.7862167,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.7861287,-0.7860407,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.78665656,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7861287,-0.7861287,-0.7862167,-0.7862167,-0.7861287,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7862167,-0.78630465,-0.78630465,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7862167,-0.7861287,-0.7860407,-0.7858648,-0.7856888,-0.78551286,-0.78524894,-0.78489697,-0.78463304,-0.7844571,-0.78428113,-0.7841052,-0.7840172,-0.7841052,-0.78419316,-0.78428113,-0.7843691,-0.7844571,-0.7843691,-0.7844571,-0.78463304,-0.784721,-0.78489697,-0.7853369,-0.78560084,-0.78560084,-0.78551286,-0.78551286,-0.7854249,-0.78516096,-0.78498495,-0.784721,-0.7843691,-0.78357726,-0.78269744,-0.7820816,-0.78111386,-0.7795302,-0.7780345,-0.7769788,-0.7773307,-0.77865046,-0.78120184,-0.7840172,-0.7854249,-0.7857768,-0.78595275,-0.7857768,-0.7857768,-0.7858648,-0.78551286,-0.784809,-0.78296137,-0.7800581,-0.77821046,-0.7780345,-0.77821046,-0.77865046,-0.7795302,-0.780674,-0.7816417,-0.78269744,-0.78357726,-0.7844571,-0.78516096,-0.78551286,-0.7858648,-0.7861287,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.7861287,-0.7857768,-0.78560084,-0.7854249,-0.7853369,-0.78524894,-0.7853369,-0.7854249,-0.7853369,-0.7853369,-0.7854249,-0.7853369,-0.78524894,-0.7853369,-0.7854249,-0.78551286,-0.78560084,-0.7856888,-0.7857768,-0.78595275,-0.7860407,-0.7861287,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.7861287,-0.7861287,-0.7862167,-0.7862167,-0.7862167,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.7861287,-0.7861287,-0.7860407,-0.7861287,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.7864806,-0.78665656,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.7861287,-0.7861287,-0.7860407,-0.7860407,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.7860407,-0.7860407,-0.7860407,-0.7861287,-0.7861287,-0.7862167,-0.7862167,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.78630465,-0.7861287,-0.7860407,-0.7858648,-0.78551286,-0.78516096,-0.78489697,-0.784809,-0.7844571,-0.7839292,-0.7834893,-0.7834013,-0.78331333,-0.7831373,-0.78296137,-0.7828734,-0.78304935,-0.78331333,-0.7834893,-0.78366524,-0.7837532,-0.7837532,-0.7837532,-0.78366524,-0.7839292,-0.7844571,-0.784809,-0.784809,-0.784721,-0.784809,-0.784809,-0.784721,-0.78463304,-0.78463304,-0.7844571,-0.7838412,-0.78304935,-0.78234553,-0.7809379,-0.7788264,-0.7776826,-0.7780345,-0.77865046,-0.7801461,-0.7825215,-0.78428113,-0.78498495,-0.785073,-0.7853369,-0.7857768,-0.78595275,-0.7858648,-0.78524894,-0.78428113,-0.7834893,-0.7817297,-0.7795302,-0.7781225,-0.77794653,-0.7784745,-0.7793543,-0.780498,-0.7816417,-0.7825215,-0.7834893,-0.7844571,-0.78498495,-0.78516096,-0.78516096,-0.7853369,-0.7854249,-0.78551286,-0.78551286,-0.7853369,-0.785073,-0.78489697,-0.784809,-0.784721,-0.78454506,-0.7843691,-0.7843691,-0.78463304,-0.78454506,-0.7844571,-0.78454506,-0.78463304,-0.78454506,-0.784721,-0.78498495,-0.78516096,-0.7853369,-0.78551286,-0.78560084,-0.7856888,-0.7858648,-0.7860407,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.7861287,-0.7861287,-0.7861287,-0.7860407,-0.7861287,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.7861287,-0.7861287,-0.7861287,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7861287,-0.7861287,-0.7862167,-0.7862167,-0.7860407,-0.7860407,-0.7861287,-0.7862167,-0.7861287,-0.7861287,-0.7861287,-0.7862167,-0.7862167,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7861287,-0.78595275,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.7861287,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.7861287,-0.7860407,-0.78595275,-0.78595275,-0.78595275,-0.7858648,-0.78595275,-0.7860407,-0.7860407,-0.7861287,-0.7861287,-0.7862167,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.78630465,-0.78630465,-0.7862167,-0.7858648,-0.78551286,-0.785073,-0.78454506,-0.7841052,-0.7840172,-0.7841052,-0.7837532,-0.78331333,-0.7831373,-0.7831373,-0.78304935,-0.7828734,-0.7825215,-0.7824335,-0.7825215,-0.78269744,-0.7827854,-0.78304935,-0.7834893,-0.78357726,-0.78331333,-0.78331333,-0.7834013,-0.7837532,-0.78419316,-0.7843691,-0.7843691,-0.7844571,-0.78454506,-0.78454506,-0.7844571,-0.7843691,-0.7841052,-0.78366524,-0.78304935,-0.7827854,-0.7817297,-0.7795302,-0.7784745,-0.77944225,-0.7809379,-0.7820816,-0.7831373,-0.7837532,-0.7839292,-0.7834013,-0.7834013,-0.78454506,-0.78516096,-0.784809,-0.7843691,-0.7839292,-0.7834013,-0.78260946,-0.7810259,-0.7792663,-0.77838653,-0.7788264,-0.7800581,-0.78155375,-0.7827854,-0.7834013,-0.7839292,-0.7843691,-0.7844571,-0.7844571,-0.78454506,-0.78463304,-0.78463304,-0.78463304,-0.78454506,-0.78428113,-0.7841052,-0.7840172,-0.7839292,-0.7838412,-0.78366524,-0.7834013,-0.78331333,-0.7834013,-0.7832253,-0.78304935,-0.78331333,-0.7834893,-0.78357726,-0.7838412,-0.78419316,-0.7843691,-0.78463304,-0.78489697,-0.78516096,-0.78524894,-0.78551286,-0.7858648,-0.7861287,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7862167,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.7861287,-0.7860407,-0.7860407,-0.7861287,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7861287,-0.7860407,-0.7860407,-0.7862167,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7861287,-0.7860407,-0.7862167,-0.7862167,-0.7861287,-0.7860407,-0.7862167,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.7861287,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.7864806,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.7862167,-0.7862167,-0.7861287,-0.7862167,-0.78630465,-0.7861287,-0.7861287,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7862167,-0.7862167,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7861287,-0.7860407,-0.7860407,-0.7860407,-0.7860407,-0.7860407,-0.78595275,-0.78595275,-0.7860407,-0.78595275,-0.7860407,-0.7860407,-0.7860407,-0.7861287,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.7862167,-0.7862167,-0.7863926,-0.7862167,-0.7860407,-0.7857768,-0.7853369,-0.784721,-0.7843691,-0.78419316,-0.7841052,-0.7840172,-0.7840172,-0.7837532,-0.7834013,-0.7834013,-0.7834893,-0.78331333,-0.7831373,-0.78296137,-0.7828734,-0.7827854,-0.78260946,-0.7825215,-0.78269744,-0.78296137,-0.78269744,-0.7824335,-0.78225756,-0.7819936,-0.7820816,-0.7825215,-0.78304935,-0.78331333,-0.7834013,-0.78366524,-0.7840172,-0.7841052,-0.7839292,-0.78366524,-0.7831373,-0.78296137,-0.7832253,-0.78260946,-0.7810259,-0.7799701,-0.78076196,-0.7824335,-0.7834893,-0.78366524,-0.78366524,-0.78331333,-0.7824335,-0.7820816,-0.7831373,-0.7837532,-0.7832253,-0.7834893,-0.7841052,-0.7840172,-0.78296137,-0.7816417,-0.780498,-0.77988213,-0.78041005,-0.7817297,-0.7828734,-0.7834893,-0.78357726,-0.7834013,-0.78331333,-0.7831373,-0.7834893,-0.78428113,-0.78454506,-0.78454506,-0.7843691,-0.7841052,-0.7840172,-0.7838412,-0.78366524,-0.7834013,-0.7832253,-0.7831373,-0.78296137,-0.78269744,-0.78269744,-0.78260946,-0.78260946,-0.78296137,-0.7832253,-0.78304935,-0.7831373,-0.7834013,-0.78357726,-0.7837532,-0.7841052,-0.7844571,-0.78463304,-0.78498495,-0.7854249,-0.7858648,-0.7861287,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7860407,-0.7860407,-0.78595275,-0.78595275,-0.78595275,-0.7860407,-0.7860407,-0.7861287,-0.7862167,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7860407,-0.7860407,-0.7861287,-0.7861287,-0.7861287,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7861287,-0.7861287,-0.7862167,-0.7862167,-0.7862167,-0.7861287,-0.7862167,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.78665656,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.7863926,-0.7862167,-0.78630465,-0.78630465,-0.7862167,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7860407,-0.7860407,-0.7860407,-0.78595275,-0.7860407,-0.7860407,-0.78595275,-0.7860407,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.7861287,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7862167,-0.7861287,-0.7862167,-0.7862167,-0.7861287,-0.7860407,-0.78595275,-0.78595275,-0.7860407,-0.7860407,-0.7861287,-0.7862167,-0.7862167,-0.7861287,-0.78595275,-0.7858648,-0.7858648,-0.7858648,-0.7858648,-0.7858648,-0.7860407,-0.7860407,-0.7861287,-0.7861287,-0.78595275,-0.7858648,-0.7857768,-0.78551286,-0.78516096,-0.78498495,-0.78463304,-0.7844571,-0.7844571,-0.78428113,-0.7838412,-0.7834893,-0.7834893,-0.78331333,-0.7828734,-0.78269744,-0.7827854,-0.78260946,-0.78260946,-0.7827854,-0.7828734,-0.7825215,-0.78225756,-0.7820816,-0.78190565,-0.78120184,-0.78041005,-0.77988213,-0.77944225,-0.7789144,-0.77873844,-0.77873844,-0.77873844,-0.77865046,-0.77865046,-0.7791783,-0.7803221,-0.78146577,-0.7821696,-0.7824335,-0.78269744,-0.7831373,-0.7834893,-0.7832253,-0.78234553,-0.7816417,-0.7819936,-0.78304935,-0.78357726,-0.7837532,-0.78419316,-0.7838412,-0.78225756,-0.7817297,-0.7827854,-0.7828734,-0.78225756,-0.78304935,-0.7840172,-0.7838412,-0.7824335,-0.78111386,-0.78111386,-0.7818177,-0.7825215,-0.78304935,-0.7832253,-0.7831373,-0.7827854,-0.7825215,-0.78234553,-0.7821696,-0.78260946,-0.7834893,-0.78366524,-0.7834893,-0.78296137,-0.7825215,-0.7824335,-0.78260946,-0.78269744,-0.7828734,-0.78304935,-0.7832253,-0.78304935,-0.78269744,-0.7827854,-0.7827854,-0.7827854,-0.78304935,-0.78331333,-0.7832253,-0.7832253,-0.7834013,-0.7834013,-0.7834013,-0.7837532,-0.7840172,-0.7840172,-0.78419316,-0.78463304,-0.78524894,-0.7856888,-0.78595275,-0.7860407,-0.7861287,-0.7861287,-0.7860407,-0.7858648,-0.7858648,-0.7860407,-0.7861287,-0.7860407,-0.78595275,-0.7860407,-0.7860407,-0.7861287,-0.7861287,-0.7860407,-0.78595275,-0.78595275,-0.78595275,-0.78595275,-0.7860407,-0.7860407,-0.7860407,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7861287,-0.7861287,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.7861287,-0.7861287,-0.7862167,-0.7861287,-0.7861287,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.78665656,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.78630465,-0.7860407,-0.7861287,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7861287,-0.78595275,-0.78595275,-0.78595275,-0.78595275,-0.78595275,-0.78595275,-0.78595275,-0.7860407,-0.7862167,-0.7862167,-0.7861287,-0.7861287,-0.7862167,-0.7861287,-0.7861287,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7860407,-0.7858648,-0.7857768,-0.7857768,-0.7858648,-0.78595275,-0.7860407,-0.7862167,-0.7861287,-0.7861287,-0.7861287,-0.7860407,-0.7860407,-0.78595275,-0.7858648,-0.7856888,-0.7856888,-0.7857768,-0.7857768,-0.7858648,-0.7858648,-0.7857768,-0.7854249,-0.78489697,-0.78454506,-0.7844571,-0.7844571,-0.7843691,-0.7840172,-0.7834893,-0.7828734,-0.78225756,-0.78190565,-0.7819936,-0.7819936,-0.7818177,-0.7818177,-0.7820816,-0.78225756,-0.7825215,-0.78296137,-0.78304935,-0.78260946,-0.7820816,-0.7818177,-0.7810259,-0.77988213,-0.7788264,-0.7780345,-0.7776826,-0.7775946,-0.7772427,-0.77671486,-0.776099,-0.7754832,-0.7749553,-0.7749553,-0.7759231,-0.7775946,-0.77944225,-0.78041005,-0.7813778,-0.7825215,-0.78304935,-0.7831373,-0.7831373,-0.7828734,-0.7827854,-0.7831373,-0.7834013,-0.7839292,-0.7844571,-0.7838412,-0.7816417,-0.78076196,-0.7819936,-0.78234553,-0.7817297,-0.78269744,-0.7834013,-0.7828734,-0.78146577,-0.780674,-0.7812898,-0.7825215,-0.7832253,-0.7834013,-0.7827854,-0.7819936,-0.7816417,-0.78146577,-0.78111386,-0.780674,-0.780586,-0.7803221,-0.77979416,-0.7793543,-0.7789144,-0.77873844,-0.7789144,-0.7792663,-0.77988213,-0.780586,-0.78120184,-0.7818177,-0.7820816,-0.78234553,-0.78260946,-0.78260946,-0.78260946,-0.7828734,-0.7831373,-0.7832253,-0.7834013,-0.7834013,-0.7834013,-0.78366524,-0.7839292,-0.7840172,-0.7839292,-0.7839292,-0.7840172,-0.7843691,-0.784809,-0.7853369,-0.7857768,-0.7858648,-0.7858648,-0.7857768,-0.7858648,-0.78595275,-0.7861287,-0.7861287,-0.7860407,-0.78595275,-0.7860407,-0.7860407,-0.78595275,-0.7860407,-0.7858648,-0.7856888,-0.78560084,-0.7857768,-0.7858648,-0.7858648,-0.7858648,-0.78595275,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.7861287,-0.7860407,-0.7860407,-0.7861287,-0.7861287,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7861287,-0.7858648,-0.78595275,-0.78630465,-0.78630465,-0.7860407,-0.7860407,-0.7860407,-0.7860407,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.78665656,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.7863926,-0.7861287,-0.7861287,-0.7860407,-0.7861287,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7861287,-0.7861287,-0.7860407,-0.78595275,-0.7858648,-0.7857768,-0.7857768,-0.7857768,-0.7856888,-0.7856888,-0.7858648,-0.7861287,-0.7862167,-0.7862167,-0.78630465,-0.7862167,-0.7861287,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.78595275,-0.78595275,-0.7858648,-0.7858648,-0.78595275,-0.7860407,-0.7861287,-0.7861287,-0.78595275,-0.78595275,-0.78595275,-0.7860407,-0.78595275,-0.7857768,-0.7857768,-0.7856888,-0.78560084,-0.78560084,-0.7857768,-0.7857768,-0.78560084,-0.78489697,-0.78419316,-0.78428113,-0.78454506,-0.78419316,-0.7832253,-0.7819936,-0.78084993,-0.780498,-0.78076196,-0.78111386,-0.7813778,-0.7818177,-0.7821696,-0.78234553,-0.78269744,-0.7831373,-0.7834893,-0.7834013,-0.7832253,-0.7828734,-0.7824335,-0.7818177,-0.7809379,-0.7799701,-0.77909034,-0.7785625,-0.7785625,-0.7784745,-0.77794653,-0.77706677,-0.776275,-0.7753952,-0.77460337,-0.7744274,-0.77469134,-0.77521926,-0.7769788,-0.77909034,-0.780498,-0.7817297,-0.7824335,-0.7825215,-0.78260946,-0.7825215,-0.7824335,-0.78304935,-0.7839292,-0.78428113,-0.7834893,-0.7816417,-0.77909034,-0.77829856,-0.7796182,-0.78084993,-0.78120184,-0.78155375,-0.7819936,-0.78225756,-0.78190565,-0.78120184,-0.78120184,-0.7818177,-0.78260946,-0.7828734,-0.7820816,-0.780586,-0.7796182,-0.7796182,-0.7797062,-0.77944225,-0.77865046,-0.77715474,-0.77601105,-0.7757471,-0.7757471,-0.776099,-0.7765389,-0.7769788,-0.7774187,-0.77794653,-0.77865046,-0.77944225,-0.7801461,-0.7810259,-0.7817297,-0.7820816,-0.78225756,-0.7825215,-0.78260946,-0.78260946,-0.7827854,-0.78260946,-0.7824335,-0.7827854,-0.7834013,-0.7837532,-0.7838412,-0.7838412,-0.7839292,-0.7840172,-0.78428113,-0.784721,-0.785073,-0.7854249,-0.7856888,-0.7857768,-0.78595275,-0.78595275,-0.7860407,-0.7860407,-0.78595275,-0.7858648,-0.78595275,-0.7860407,-0.7860407,-0.78595275,-0.7857768,-0.7856888,-0.7856888,-0.78595275,-0.78595275,-0.78595275,-0.78595275,-0.78595275,-0.7860407,-0.7860407,-0.7861287,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7861287,-0.7860407,-0.7860407,-0.7860407,-0.7861287,-0.7862167,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7860407,-0.7858648,-0.7857768,-0.7860407,-0.7861287,-0.78595275,-0.7860407,-0.7860407,-0.7861287,-0.7862167,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.78630465,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.7863926,-0.7862167,-0.7861287,-0.7860407,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7860407,-0.7860407,-0.7860407,-0.78595275,-0.78595275,-0.78595275,-0.78595275,-0.78595275,-0.7858648,-0.7857768,-0.7857768,-0.78595275,-0.7861287,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.7862167,-0.7861287,-0.7860407,-0.7860407,-0.7860407,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.78595275,-0.7857768,-0.7858648,-0.78595275,-0.78595275,-0.78595275,-0.7857768,-0.7858648,-0.7858648,-0.7858648,-0.7857768,-0.7854249,-0.78498495,-0.78428113,-0.7840172,-0.78419316,-0.7838412,-0.7824335,-0.7810259,-0.7802341,-0.77979416,-0.7802341,-0.7810259,-0.7817297,-0.7821696,-0.78260946,-0.7831373,-0.78331333,-0.7834013,-0.78357726,-0.7837532,-0.78366524,-0.7834013,-0.7832253,-0.78296137,-0.78225756,-0.78146577,-0.78084993,-0.78041005,-0.78041005,-0.780674,-0.7803221,-0.7793543,-0.7785625,-0.7777706,-0.77680284,-0.776187,-0.776275,-0.7757471,-0.7751312,-0.776099,-0.77829856,-0.7802341,-0.78146577,-0.7819936,-0.7820816,-0.78190565,-0.78155375,-0.7818177,-0.7827854,-0.78366524,-0.7834893,-0.7817297,-0.7788264,-0.7758351,-0.77504325,-0.77645093,-0.7781225,-0.7792663,-0.7800581,-0.78120184,-0.7825215,-0.7832253,-0.7832253,-0.78234553,-0.7817297,-0.7819936,-0.7821696,-0.78155375,-0.7801461,-0.7791783,-0.77909034,-0.77909034,-0.77865046,-0.77821046,-0.77750665,-0.77645093,-0.7757471,-0.7757471,-0.776275,-0.7766269,-0.7768908,-0.7773307,-0.77785856,-0.7784745,-0.7791783,-0.77979416,-0.78041005,-0.78111386,-0.7818177,-0.78234553,-0.7825215,-0.78269744,-0.78269744,-0.78260946,-0.78225756,-0.78190565,-0.78190565,-0.78234553,-0.78269744,-0.7825215,-0.78234553,-0.78260946,-0.78331333,-0.7840172,-0.7843691,-0.78428113,-0.7844571,-0.785073,-0.7856888,-0.78595275,-0.7860407,-0.78595275,-0.7860407,-0.78595275,-0.7858648,-0.78595275,-0.7861287,-0.7861287,-0.7860407,-0.78595275,-0.78595275,-0.7860407,-0.7860407,-0.7860407,-0.7860407,-0.7861287,-0.7861287,-0.7861287,-0.7860407,-0.7860407,-0.7862167,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.7862167,-0.7861287,-0.7861287,-0.7860407,-0.7860407,-0.7861287,-0.7861287,-0.7860407,-0.78595275,-0.7857768,-0.7856888,-0.7857768,-0.7858648,-0.7858648,-0.78595275,-0.78595275,-0.78595275,-0.7860407,-0.7860407,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7864806,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.7863926,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7860407,-0.7858648,-0.7858648,-0.78595275,-0.7858648,-0.7858648,-0.78595275,-0.7860407,-0.78595275,-0.78595275,-0.7861287,-0.7861287,-0.7860407,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7862167,-0.7862167,-0.7862167,-0.7861287,-0.7860407,-0.78595275,-0.7858648,-0.78595275,-0.7860407,-0.7860407,-0.78595275,-0.78595275,-0.7860407,-0.7861287,-0.7860407,-0.78551286,-0.78489697,-0.7844571,-0.7839292,-0.7831373,-0.7825215,-0.78146577,-0.7800581,-0.7796182,-0.7800581,-0.78041005,-0.78111386,-0.78190565,-0.78260946,-0.78296137,-0.7832253,-0.78366524,-0.7839292,-0.7837532,-0.78366524,-0.7838412,-0.7838412,-0.78357726,-0.7834893,-0.7834893,-0.78304935,-0.7824335,-0.7819936,-0.78190565,-0.78190565,-0.7821696,-0.7817297,-0.7809379,-0.7803221,-0.7795302,-0.7784745,-0.7781225,-0.77785856,-0.7768908,-0.7766269,-0.7774187,-0.77865046,-0.780498,-0.78190565,-0.78190565,-0.7816417,-0.78146577,-0.78120184,-0.78120184,-0.7812898,-0.78111386,-0.780674,-0.7793543,-0.77750665,-0.77557117,-0.77504325,-0.776187,-0.7776826,-0.77900237,-0.780498,-0.78190565,-0.78296137,-0.78357726,-0.7840172,-0.7837532,-0.7825215,-0.7818177,-0.78155375,-0.78111386,-0.780674,-0.7802341,-0.77988213,-0.7793543,-0.77838653,-0.7777706,-0.77785856,-0.7777706,-0.7774187,-0.7776826,-0.77873844,-0.7792663,-0.77900237,-0.7789144,-0.77944225,-0.7799701,-0.780586,-0.7809379,-0.78120184,-0.7818177,-0.7824335,-0.7825215,-0.7824335,-0.78260946,-0.7828734,-0.7827854,-0.78260946,-0.7824335,-0.78234553,-0.78234553,-0.78225756,-0.7817297,-0.7809379,-0.780674,-0.7812898,-0.7821696,-0.78331333,-0.7839292,-0.7840172,-0.78428113,-0.784809,-0.78551286,-0.7858648,-0.7858648,-0.7858648,-0.78595275,-0.78595275,-0.78595275,-0.7860407,-0.7860407,-0.7860407,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7862167,-0.7862167,-0.7860407,-0.7860407,-0.7862167,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.7862167,-0.7861287,-0.7862167,-0.7861287,-0.7860407,-0.7860407,-0.7861287,-0.7861287,-0.7860407,-0.78595275,-0.7858648,-0.78595275,-0.7860407,-0.7860407,-0.7858648,-0.78595275,-0.7861287,-0.7860407,-0.7860407,-0.7861287,-0.7861287,-0.7862167,-0.7862167,-0.7861287,-0.7860407,-0.7860407,-0.7861287,-0.7862167,-0.7861287,-0.7861287,-0.7864806,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.78630465,-0.7860407,-0.7861287,-0.7861287,-0.7860407,-0.7861287,-0.7862167,-0.7860407,-0.78595275,-0.7858648,-0.78595275,-0.7861287,-0.78595275,-0.78595275,-0.7860407,-0.78595275,-0.7861287,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.7862167,-0.7862167,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7861287,-0.7861287,-0.7862167,-0.7862167,-0.7861287,-0.7861287,-0.7860407,-0.7860407,-0.7860407,-0.7860407,-0.7860407,-0.7862167,-0.7861287,-0.7861287,-0.78595275,-0.78595275,-0.7861287,-0.7861287,-0.7861287,-0.7862167,-0.7862167,-0.7860407,-0.7854249,-0.784721,-0.78428113,-0.7837532,-0.7825215,-0.7810259,-0.7799701,-0.77944225,-0.7793543,-0.77979416,-0.780498,-0.78120184,-0.7820816,-0.7828734,-0.78357726,-0.7839292,-0.7841052,-0.78419316,-0.7843691,-0.7843691,-0.7843691,-0.78419316,-0.7839292,-0.7838412,-0.7837532,-0.7837532,-0.78366524,-0.7834013,-0.78304935,-0.7827854,-0.7825215,-0.7821696,-0.7818177,-0.78155375,-0.78111386,-0.7799701,-0.7791783,-0.7789144,-0.77821046,-0.7773307,-0.7776826,-0.77838653,-0.7793543,-0.7813778,-0.78269744,-0.7821696,-0.78155375,-0.78146577,-0.7813778,-0.78111386,-0.780586,-0.7800581,-0.7793543,-0.7785625,-0.77785856,-0.77715474,-0.77706677,-0.77794653,-0.77909034,-0.7802341,-0.78155375,-0.78304935,-0.78419316,-0.7843691,-0.7843691,-0.78428113,-0.78357726,-0.78260946,-0.7816417,-0.78076196,-0.78111386,-0.7812898,-0.780498,-0.7796182,-0.7785625,-0.7773307,-0.77715474,-0.77785856,-0.7784745,-0.77900237,-0.77988213,-0.780498,-0.78041005,-0.7803221,-0.78076196,-0.7812898,-0.78146577,-0.7816417,-0.7820816,-0.78260946,-0.78296137,-0.78304935,-0.7831373,-0.7831373,-0.7827854,-0.78260946,-0.78269744,-0.78269744,-0.7825215,-0.7825215,-0.78234553,-0.7817297,-0.78084993,-0.7803221,-0.7800581,-0.7801461,-0.78084993,-0.7821696,-0.7834013,-0.7839292,-0.7839292,-0.7843691,-0.78524894,-0.7858648,-0.78595275,-0.78595275,-0.78595275,-0.78595275,-0.78595275,-0.7860407,-0.7860407,-0.7861287,-0.7860407,-0.7861287,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.7862167,-0.7862167,-0.7861287,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.7861287,-0.7860407,-0.7858648,-0.78595275,-0.7860407,-0.7861287,-0.7862167,-0.7862167,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.7862167,-0.7861287,-0.7861287,-0.7860407,-0.7860407,-0.7860407,-0.7860407,-0.7862167,-0.7862167,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.7863926,-0.7861287,-0.7860407,-0.7860407,-0.7860407,-0.7861287,-0.7862167,-0.7862167,-0.7861287,-0.7861287,-0.7862167,-0.78630465,-0.7862167,-0.7861287,-0.7860407,-0.7861287,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.78630465,-0.7862167,-0.7861287,-0.7860407,-0.7861287,-0.7861287,-0.7860407,-0.78595275,-0.7858648,-0.78595275,-0.7860407,-0.7860407,-0.7860407,-0.7860407,-0.7860407,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.7860407,-0.7854249,-0.78454506,-0.7839292,-0.78304935,-0.7818177,-0.780498,-0.7793543,-0.77909034,-0.7796182,-0.7801461,-0.780586,-0.7813778,-0.7821696,-0.7828734,-0.78357726,-0.7841052,-0.7844571,-0.784721,-0.784721,-0.784721,-0.78489697,-0.785073,-0.784721,-0.78428113,-0.7841052,-0.7840172,-0.7838412,-0.7837532,-0.7834893,-0.78304935,-0.78260946,-0.7821696,-0.78190565,-0.7817297,-0.7813778,-0.78076196,-0.7802341,-0.7799701,-0.77944225,-0.77821046,-0.7775946,-0.77829856,-0.77900237,-0.7799701,-0.7819936,-0.78331333,-0.78260946,-0.78155375,-0.7816417,-0.78190565,-0.7817297,-0.78155375,-0.7813778,-0.780586,-0.7795302,-0.77900237,-0.7788264,-0.7789144,-0.77944225,-0.78041005,-0.7813778,-0.7824335,-0.7837532,-0.78463304,-0.78489697,-0.78463304,-0.7841052,-0.78366524,-0.78304935,-0.7818177,-0.7802341,-0.780674,-0.7819936,-0.78120184,-0.7793543,-0.77829856,-0.7769788,-0.7765389,-0.77785856,-0.7793543,-0.7799701,-0.7800581,-0.780586,-0.7809379,-0.7810259,-0.7813778,-0.7819936,-0.7824335,-0.78269744,-0.78296137,-0.7832253,-0.7834013,-0.78366524,-0.7839292,-0.7839292,-0.7834893,-0.7832253,-0.7832253,-0.7828734,-0.7827854,-0.7828734,-0.7825215,-0.7816417,-0.78084993,-0.78041005,-0.7799701,-0.77979416,-0.77979416,-0.7801461,-0.78120184,-0.78269744,-0.78357726,-0.7834893,-0.78419316,-0.7853369,-0.78595275,-0.7860407,-0.7860407,-0.7860407,-0.7860407,-0.7861287,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.7862167,-0.7860407,-0.7860407,-0.78595275,-0.78595275,-0.78595275,-0.7861287,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7860407,-0.78595275,-0.7861287,-0.7861287,-0.7860407,-0.7861287,-0.7861287,-0.7860407,-0.78595275,-0.7860407,-0.7861287,-0.7862167,-0.7864806,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.7863926,-0.7862167,-0.7860407,-0.7860407,-0.78595275,-0.7860407,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.7862167,-0.78630465,-0.7863926,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.7860407,-0.7861287,-0.78630465,-0.7862167,-0.7861287,-0.78595275,-0.7858648,-0.7860407,-0.7860407,-0.7860407,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7861287,-0.78551286,-0.78463304,-0.7837532,-0.78260946,-0.7812898,-0.780498,-0.7799701,-0.7797062,-0.7799701,-0.780498,-0.7810259,-0.7817297,-0.78234553,-0.7827854,-0.7831373,-0.7837532,-0.78428113,-0.78454506,-0.784809,-0.78489697,-0.78489697,-0.78498495,-0.785073,-0.78489697,-0.78454506,-0.78428113,-0.7840172,-0.7839292,-0.78366524,-0.78331333,-0.7828734,-0.78234553,-0.7819936,-0.7818177,-0.78155375,-0.78120184,-0.7809379,-0.78076196,-0.7803221,-0.7789144,-0.77706677,-0.77680284,-0.77794653,-0.7788264,-0.7795302,-0.7817297,-0.7834893,-0.78269744,-0.7813778,-0.7813778,-0.78190565,-0.78225756,-0.78225756,-0.7820816,-0.78146577,-0.78041005,-0.7799701,-0.7801461,-0.780674,-0.78120184,-0.78190565,-0.7825215,-0.78269744,-0.7828734,-0.78331333,-0.7834893,-0.7834013,-0.7832253,-0.7828734,-0.78225756,-0.78120184,-0.7802341,-0.780586,-0.78155375,-0.7809379,-0.7795302,-0.77909034,-0.77821046,-0.7768908,-0.77750665,-0.77909034,-0.7802341,-0.780498,-0.7809379,-0.78155375,-0.7818177,-0.7819936,-0.78234553,-0.78296137,-0.7834893,-0.78366524,-0.78357726,-0.78357726,-0.7837532,-0.7840172,-0.7841052,-0.7841052,-0.7840172,-0.7837532,-0.78357726,-0.7834893,-0.7831373,-0.7825215,-0.7818177,-0.78111386,-0.780586,-0.7799701,-0.77944225,-0.7795302,-0.7797062,-0.7795302,-0.7801461,-0.7819936,-0.7832253,-0.78357726,-0.78419316,-0.7853369,-0.78595275,-0.7861287,-0.7862167,-0.7862167,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.7861287,-0.7862167,-0.7862167,-0.7861287,-0.7861287,-0.7862167,-0.7862167,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7861287,-0.7860407,-0.7860407,-0.7860407,-0.7860407,-0.7860407,-0.7860407,-0.7860407,-0.7861287,-0.7862167,-0.7862167,-0.78630465,-0.7862167,-0.7860407,-0.7860407,-0.7861287,-0.7861287,-0.7861287,-0.78630465,-0.78630465,-0.78595275,-0.7860407,-0.7862167,-0.7861287,-0.7861287,-0.7864806,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.78630465,-0.7860407,-0.7860407,-0.7861287,-0.7860407,-0.78595275,-0.7860407,-0.7860407,-0.7861287,-0.7861287,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.7861287,-0.7860407,-0.7860407,-0.7862167,-0.78630465,-0.7862167,-0.7860407,-0.78595275,-0.7860407,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.7857768,-0.784809,-0.7839292,-0.7825215,-0.780674,-0.7803221,-0.78084993,-0.78076196,-0.7809379,-0.7809379,-0.7810259,-0.7817297,-0.78234553,-0.7825215,-0.7827854,-0.7832253,-0.7839292,-0.7843691,-0.78454506,-0.784721,-0.78489697,-0.785073,-0.785073,-0.78498495,-0.78489697,-0.784721,-0.7844571,-0.78419316,-0.7841052,-0.7839292,-0.78357726,-0.78331333,-0.78304935,-0.78260946,-0.7819936,-0.7812898,-0.7812898,-0.7812898,-0.78076196,-0.7793543,-0.7769788,-0.77469134,-0.7747793,-0.77645093,-0.7775946,-0.77829856,-0.7812898,-0.78357726,-0.78269744,-0.78146577,-0.78120184,-0.78120184,-0.7816417,-0.7820816,-0.7820816,-0.7817297,-0.78146577,-0.78146577,-0.7816417,-0.78234553,-0.78304935,-0.7834013,-0.7832253,-0.78260946,-0.7820816,-0.7818177,-0.78155375,-0.7817297,-0.7820816,-0.78225756,-0.78190565,-0.7810259,-0.78041005,-0.7810259,-0.7810259,-0.7795302,-0.7785625,-0.77865046,-0.77821046,-0.7772427,-0.7773307,-0.77873844,-0.7802341,-0.78111386,-0.7817297,-0.7820816,-0.7824335,-0.7828734,-0.78304935,-0.7832253,-0.78357726,-0.7839292,-0.7838412,-0.7837532,-0.7837532,-0.7840172,-0.7841052,-0.7841052,-0.78419316,-0.78428113,-0.78419316,-0.7838412,-0.7832253,-0.78269744,-0.7821696,-0.7816417,-0.78120184,-0.78041005,-0.7796182,-0.77944225,-0.77979416,-0.7800581,-0.7797062,-0.7799701,-0.78146577,-0.7828734,-0.78357726,-0.78428113,-0.7853369,-0.7860407,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.7862167,-0.7860407,-0.7860407,-0.7862167,-0.78630465,-0.7862167,-0.7861287,-0.7862167,-0.7862167,-0.78630465,-0.7862167,-0.78595275,-0.7860407,-0.7861287,-0.7860407,-0.78595275,-0.7860407,-0.7861287,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7864806,-0.78630465,-0.7861287,-0.78630465,-0.78630465,-0.7861287,-0.7861287,-0.7864806,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7861287,-0.7858648,-0.7858648,-0.7861287,-0.7862167,-0.7862167,-0.7861287,-0.7860407,-0.7861287,-0.7861287,-0.7860407,-0.7861287,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.7861287,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.7861287,-0.78595275,-0.7858648,-0.7858648,-0.7860407,-0.7862167,-0.7861287,-0.7860407,-0.7860407,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7860407,-0.78516096,-0.78419316,-0.7831373,-0.78111386,-0.7801461,-0.78120184,-0.78190565,-0.7818177,-0.7816417,-0.7813778,-0.7813778,-0.78190565,-0.78234553,-0.7825215,-0.7828734,-0.7834893,-0.7839292,-0.78428113,-0.78454506,-0.784721,-0.78489697,-0.78516096,-0.7853369,-0.785073,-0.784721,-0.78463304,-0.78463304,-0.78454506,-0.78454506,-0.7844571,-0.78419316,-0.7841052,-0.7839292,-0.78331333,-0.78225756,-0.78146577,-0.7812898,-0.78111386,-0.7801461,-0.77785856,-0.7749553,-0.7730198,-0.7733717,-0.77521926,-0.7765389,-0.77794653,-0.78146577,-0.78357726,-0.78260946,-0.7813778,-0.7809379,-0.780586,-0.78076196,-0.7813778,-0.78190565,-0.78190565,-0.7821696,-0.78225756,-0.7820816,-0.78269744,-0.78366524,-0.78331333,-0.78225756,-0.7819936,-0.78190565,-0.7812898,-0.780674,-0.780674,-0.78120184,-0.7818177,-0.7817297,-0.78111386,-0.780498,-0.78111386,-0.78111386,-0.7791783,-0.7773307,-0.7768908,-0.776275,-0.77530724,-0.7758351,-0.7775946,-0.7795302,-0.7809379,-0.7818177,-0.78234553,-0.7827854,-0.78331333,-0.7837532,-0.7840172,-0.78419316,-0.78428113,-0.78419316,-0.7840172,-0.7840172,-0.78419316,-0.7844571,-0.7843691,-0.7844571,-0.78463304,-0.78454506,-0.7841052,-0.78366524,-0.78331333,-0.7828734,-0.7824335,-0.7819936,-0.7813778,-0.780674,-0.7799701,-0.77979416,-0.780498,-0.78084993,-0.7801461,-0.7799701,-0.78111386,-0.78269744,-0.7837532,-0.7844571,-0.7854249,-0.7861287,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7861287,-0.7862167,-0.7861287,-0.78595275,-0.7861287,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7861287,-0.7861287,-0.7862167,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7862167,-0.78630465,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7862167,-0.7862167,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7860407,-0.7857768,-0.7857768,-0.78595275,-0.7861287,-0.7861287,-0.78595275,-0.7860407,-0.7861287,-0.7862167,-0.7862167,-0.7862167,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7860407,-0.7858648,-0.7856888,-0.78551286,-0.7856888,-0.7860407,-0.7861287,-0.7861287,-0.7862167,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7861287,-0.7853369,-0.7843691,-0.7834893,-0.7818177,-0.780586,-0.7813778,-0.78234553,-0.7824335,-0.78225756,-0.78190565,-0.78146577,-0.7813778,-0.7816417,-0.78234553,-0.78296137,-0.78331333,-0.78366524,-0.7838412,-0.7841052,-0.7844571,-0.78463304,-0.784809,-0.78516096,-0.78524894,-0.78498495,-0.78463304,-0.784721,-0.78489697,-0.784809,-0.78463304,-0.78454506,-0.78454506,-0.7843691,-0.78419316,-0.78357726,-0.78260946,-0.7813778,-0.780586,-0.7802341,-0.7789144,-0.776187,-0.7737236,-0.7726679,-0.77354765,-0.7753952,-0.7766269,-0.77838653,-0.78146577,-0.7828734,-0.78190565,-0.7810259,-0.780586,-0.7803221,-0.7803221,-0.780674,-0.7809379,-0.78120184,-0.7816417,-0.7816417,-0.7813778,-0.7819936,-0.78331333,-0.78331333,-0.7817297,-0.78120184,-0.7813778,-0.7809379,-0.7802341,-0.7800581,-0.78041005,-0.78084993,-0.78084993,-0.780498,-0.7800581,-0.7803221,-0.78084993,-0.7797062,-0.7773307,-0.776187,-0.7749553,-0.7732837,-0.7737236,-0.7757471,-0.7777706,-0.7795302,-0.7809379,-0.7817297,-0.78269744,-0.78357726,-0.78419316,-0.78454506,-0.784809,-0.784721,-0.78454506,-0.7844571,-0.78428113,-0.7844571,-0.78463304,-0.78463304,-0.784721,-0.784809,-0.78463304,-0.78428113,-0.7839292,-0.78366524,-0.78331333,-0.78296137,-0.78260946,-0.78190565,-0.7812898,-0.780674,-0.7802341,-0.780498,-0.78120184,-0.7813778,-0.780674,-0.7801461,-0.7809379,-0.78260946,-0.78366524,-0.78454506,-0.78560084,-0.7860407,-0.7862167,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.7861287,-0.7860407,-0.7860407,-0.7861287,-0.7862167,-0.7861287,-0.7861287,-0.7861287,-0.7862167,-0.7862167,-0.7861287,-0.7860407,-0.78595275,-0.7860407,-0.7861287,-0.7862167,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.7862167,-0.78630465,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7861287,-0.78595275,-0.7856888,-0.78560084,-0.7857768,-0.78595275,-0.7858648,-0.78595275,-0.7862167,-0.78630465,-0.7863926,-0.78630465,-0.7861287,-0.7862167,-0.7863926,-0.78630465,-0.7862167,-0.78630465,-0.7863926,-0.78630465,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7862167,-0.78595275,-0.7857768,-0.7856888,-0.78551286,-0.78551286,-0.7858648,-0.7860407,-0.7862167,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78560084,-0.7844571,-0.78366524,-0.7824335,-0.7809379,-0.7813778,-0.7827854,-0.7827854,-0.7821696,-0.7819936,-0.7817297,-0.7812898,-0.7809379,-0.7812898,-0.7820816,-0.7827854,-0.78331333,-0.78357726,-0.78366524,-0.7839292,-0.78428113,-0.78463304,-0.78489697,-0.78516096,-0.78524894,-0.78489697,-0.784721,-0.78489697,-0.78489697,-0.784721,-0.78454506,-0.78454506,-0.78454506,-0.78428113,-0.7841052,-0.78357726,-0.7821696,-0.780498,-0.7795302,-0.77873844,-0.77706677,-0.77433944,-0.77240384,-0.7722279,-0.7740755,-0.776099,-0.7769788,-0.7785625,-0.7812898,-0.7821696,-0.78120184,-0.780586,-0.7802341,-0.7801461,-0.7802341,-0.78041005,-0.78041005,-0.780586,-0.7809379,-0.7810259,-0.7812898,-0.7818177,-0.7827854,-0.78304935,-0.7818177,-0.78076196,-0.78076196,-0.78076196,-0.7802341,-0.77988213,-0.7799701,-0.7803221,-0.780498,-0.7801461,-0.7796182,-0.7796182,-0.7802341,-0.7797062,-0.7777706,-0.77645093,-0.7751312,-0.77354765,-0.7733717,-0.7745154,-0.77601105,-0.77794653,-0.77979416,-0.7810259,-0.7821696,-0.7834013,-0.78428113,-0.784721,-0.78489697,-0.784721,-0.784721,-0.78463304,-0.78454506,-0.78463304,-0.784809,-0.78463304,-0.78454506,-0.784721,-0.78463304,-0.78428113,-0.7839292,-0.78357726,-0.7831373,-0.7828734,-0.7824335,-0.7817297,-0.78111386,-0.78076196,-0.780674,-0.78084993,-0.7813778,-0.7818177,-0.78190565,-0.7812898,-0.78041005,-0.7810259,-0.78260946,-0.7837532,-0.78463304,-0.78551286,-0.7861287,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7861287,-0.7860407,-0.78595275,-0.78595275,-0.7860407,-0.7861287,-0.7862167,-0.7861287,-0.7861287,-0.7862167,-0.7862167,-0.7860407,-0.7860407,-0.7860407,-0.78595275,-0.7860407,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.7862167,-0.7861287,-0.7862167,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7861287,-0.78595275,-0.78560084,-0.78560084,-0.7857768,-0.7858648,-0.78595275,-0.7860407,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7862167,-0.7862167,-0.78630465,-0.7861287,-0.7861287,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7862167,-0.7862167,-0.78630465,-0.7860407,-0.7857768,-0.7856888,-0.78551286,-0.78551286,-0.7857768,-0.7861287,-0.78630465,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7858648,-0.78463304,-0.78366524,-0.78304935,-0.78146577,-0.78111386,-0.78260946,-0.78331333,-0.7824335,-0.78190565,-0.78190565,-0.78155375,-0.78076196,-0.780586,-0.78111386,-0.7817297,-0.78225756,-0.7827854,-0.7832253,-0.7834013,-0.78366524,-0.78419316,-0.784721,-0.78489697,-0.78498495,-0.78516096,-0.78489697,-0.784809,-0.78498495,-0.78489697,-0.78463304,-0.78454506,-0.78454506,-0.78454506,-0.78428113,-0.78366524,-0.78269744,-0.7812898,-0.7800581,-0.77900237,-0.7777706,-0.776275,-0.7737236,-0.771876,-0.77240384,-0.77469134,-0.77645093,-0.77715474,-0.7789144,-0.7813778,-0.7818177,-0.7809379,-0.7803221,-0.77988213,-0.77988213,-0.7800581,-0.7801461,-0.7802341,-0.780498,-0.780674,-0.78076196,-0.7810259,-0.78111386,-0.7818177,-0.7825215,-0.78146577,-0.7801461,-0.7802341,-0.780674,-0.78041005,-0.7800581,-0.7799701,-0.7803221,-0.780586,-0.7802341,-0.77944225,-0.7793543,-0.7797062,-0.7793543,-0.7780345,-0.7768908,-0.7758351,-0.7745154,-0.77354765,-0.7738116,-0.77504325,-0.77680284,-0.7788264,-0.780586,-0.78190565,-0.7831373,-0.78419316,-0.784809,-0.784809,-0.78463304,-0.78463304,-0.78454506,-0.78454506,-0.784721,-0.78463304,-0.78454506,-0.78463304,-0.784721,-0.784721,-0.7843691,-0.7837532,-0.78331333,-0.78304935,-0.7827854,-0.7824335,-0.7818177,-0.7813778,-0.7810259,-0.780674,-0.78076196,-0.78146577,-0.78225756,-0.7824335,-0.78234553,-0.7817297,-0.78084993,-0.78146577,-0.78304935,-0.7839292,-0.784721,-0.7857768,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.7860407,-0.7862167,-0.78630465,-0.7862167,-0.7861287,-0.7860407,-0.7861287,-0.7861287,-0.7860407,-0.7860407,-0.7860407,-0.7860407,-0.7861287,-0.7861287,-0.7861287,-0.7860407,-0.7860407,-0.7860407,-0.78595275,-0.7860407,-0.7860407,-0.7861287,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7861287,-0.7860407,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7862167,-0.7862167,-0.7861287,-0.7861287,-0.7860407,-0.7861287,-0.7864806,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7861287,-0.78595275,-0.7856888,-0.78551286,-0.7856888,-0.7858648,-0.78595275,-0.7860407,-0.7861287,-0.78630465,-0.7863926,-0.7863926,-0.7862167,-0.7861287,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7861287,-0.7860407,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.78630465,-0.78630465,-0.7860407,-0.7857768,-0.7856888,-0.78551286,-0.78560084,-0.78595275,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.7861287,-0.785073,-0.78357726,-0.7828734,-0.78190565,-0.7810259,-0.7820816,-0.78366524,-0.7834893,-0.78234553,-0.7820816,-0.78225756,-0.7813778,-0.78041005,-0.7802341,-0.78076196,-0.78155375,-0.7820816,-0.7824335,-0.7828734,-0.78331333,-0.7834893,-0.7840172,-0.78454506,-0.78489697,-0.785073,-0.78516096,-0.785073,-0.785073,-0.785073,-0.78489697,-0.78454506,-0.78428113,-0.78419316,-0.78419316,-0.7838412,-0.78296137,-0.7817297,-0.780498,-0.77988213,-0.7792663,-0.77821046,-0.77636296,-0.77354765,-0.77196395,-0.77310777,-0.7753952,-0.7765389,-0.7772427,-0.7795302,-0.7817297,-0.7818177,-0.7809379,-0.7800581,-0.77979416,-0.77988213,-0.7799701,-0.7800581,-0.7803221,-0.780498,-0.7802341,-0.7803221,-0.780498,-0.78041005,-0.7812898,-0.7819936,-0.78076196,-0.7797062,-0.7799701,-0.7803221,-0.7802341,-0.7800581,-0.7800581,-0.780498,-0.78076196,-0.78041005,-0.7796182,-0.7792663,-0.77944225,-0.7791783,-0.7781225,-0.77715474,-0.77645093,-0.7749553,-0.7732837,-0.7730198,-0.7744274,-0.776187,-0.77829856,-0.780586,-0.7820816,-0.78304935,-0.7841052,-0.78463304,-0.78454506,-0.78454506,-0.78454506,-0.7844571,-0.78454506,-0.78463304,-0.78463304,-0.784721,-0.78489697,-0.784809,-0.784721,-0.7844571,-0.7839292,-0.7834013,-0.78304935,-0.7827854,-0.7824335,-0.7819936,-0.7816417,-0.78120184,-0.780498,-0.7803221,-0.7810259,-0.7821696,-0.7825215,-0.78260946,-0.7828734,-0.7819936,-0.78111386,-0.78190565,-0.7831373,-0.7839292,-0.785073,-0.7860407,-0.78630465,-0.7862167,-0.7860407,-0.7860407,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.78595275,-0.7860407,-0.7861287,-0.7860407,-0.7860407,-0.7860407,-0.78595275,-0.78595275,-0.78595275,-0.78595275,-0.7860407,-0.7860407,-0.7860407,-0.7861287,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7860407,-0.7858648,-0.78595275,-0.7860407,-0.7860407,-0.7861287,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.7862167,-0.7861287,-0.7861287,-0.7861287,-0.7864806,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7861287,-0.7858648,-0.78560084,-0.7854249,-0.7857768,-0.78595275,-0.78595275,-0.7860407,-0.7861287,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.7861287,-0.7860407,-0.7860407,-0.7861287,-0.7861287,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.78595275,-0.7857768,-0.7856888,-0.78560084,-0.7856888,-0.7858648,-0.78595275,-0.78595275,-0.78595275,-0.7861287,-0.7862167,-0.78630465,-0.7857768,-0.7840172,-0.78269744,-0.7820816,-0.7809379,-0.7813778,-0.7834893,-0.78454506,-0.7837532,-0.7825215,-0.78225756,-0.78234553,-0.7812898,-0.7801461,-0.77979416,-0.7803221,-0.78111386,-0.78155375,-0.7818177,-0.7824335,-0.7831373,-0.7834893,-0.78366524,-0.7841052,-0.78463304,-0.78498495,-0.78498495,-0.78498495,-0.785073,-0.78498495,-0.78489697,-0.78454506,-0.7841052,-0.7838412,-0.78366524,-0.7831373,-0.7821696,-0.78076196,-0.77944225,-0.7792663,-0.7795302,-0.7784745,-0.7753952,-0.77240384,-0.77205193,-0.77398753,-0.77601105,-0.7769788,-0.7777706,-0.7802341,-0.7820816,-0.7819936,-0.7810259,-0.7801461,-0.77988213,-0.7801461,-0.7802341,-0.7803221,-0.7803221,-0.7801461,-0.77979416,-0.77979416,-0.7799701,-0.780586,-0.7818177,-0.7817297,-0.7802341,-0.7796182,-0.77988213,-0.7800581,-0.7800581,-0.7799701,-0.7801461,-0.780586,-0.780674,-0.780586,-0.7801461,-0.7796182,-0.7795302,-0.7791783,-0.7780345,-0.7773307,-0.7769788,-0.77530724,-0.77275586,-0.77196395,-0.77354765,-0.77636296,-0.7789144,-0.78084993,-0.78190565,-0.78269744,-0.7837532,-0.7843691,-0.78428113,-0.7843691,-0.7844571,-0.78454506,-0.78463304,-0.78454506,-0.78463304,-0.78498495,-0.785073,-0.78489697,-0.784721,-0.7843691,-0.7840172,-0.78357726,-0.7831373,-0.7827854,-0.7824335,-0.78190565,-0.7812898,-0.780498,-0.77979416,-0.7799701,-0.780586,-0.7813778,-0.7817297,-0.78225756,-0.7832253,-0.7831373,-0.7818177,-0.78111386,-0.7821696,-0.78331333,-0.7844571,-0.78560084,-0.7860407,-0.7861287,-0.7861287,-0.7861287,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.7861287,-0.7861287,-0.7860407,-0.78595275,-0.7860407,-0.7860407,-0.7860407,-0.78595275,-0.78595275,-0.7858648,-0.7858648,-0.7860407,-0.7861287,-0.7861287,-0.7861287,-0.7860407,-0.7861287,-0.78630465,-0.7863926,-0.7863926,-0.7862167,-0.7861287,-0.7860407,-0.78595275,-0.7860407,-0.78595275,-0.78595275,-0.7861287,-0.7862167,-0.7861287,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.7861287,-0.7861287,-0.7861287,-0.7864806,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7863926,-0.78595275,-0.7857768,-0.78551286,-0.7853369,-0.78551286,-0.7856888,-0.7858648,-0.78595275,-0.7861287,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.7860407,-0.7860407,-0.7860407,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.78595275,-0.78595275,-0.7858648,-0.7856888,-0.78560084,-0.7857768,-0.78595275,-0.78595275,-0.78595275,-0.7860407,-0.7862167,-0.7862167,-0.78498495,-0.78260946,-0.7817297,-0.7813778,-0.78076196,-0.78260946,-0.784809,-0.785073,-0.7839292,-0.7825215,-0.7821696,-0.78260946,-0.7816417,-0.7801461,-0.7796182,-0.7803221,-0.78041005,-0.7801461,-0.780498,-0.7816417,-0.78260946,-0.78296137,-0.7832253,-0.7837532,-0.78419316,-0.78454506,-0.78463304,-0.7844571,-0.7844571,-0.784721,-0.784721,-0.7844571,-0.7839292,-0.78366524,-0.7832253,-0.7824335,-0.78120184,-0.77979416,-0.7788264,-0.77900237,-0.77900237,-0.77715474,-0.77319574,-0.7710842,-0.77231586,-0.77469134,-0.7765389,-0.77750665,-0.77865046,-0.78084993,-0.7820816,-0.7816417,-0.780674,-0.77979416,-0.7795302,-0.77988213,-0.7803221,-0.780498,-0.7803221,-0.77988213,-0.7796182,-0.77944225,-0.7797062,-0.78146577,-0.7828734,-0.7818177,-0.7800581,-0.7797062,-0.7799701,-0.7799701,-0.7801461,-0.78041005,-0.780498,-0.780498,-0.780586,-0.7810259,-0.7810259,-0.7802341,-0.77979416,-0.7792663,-0.7781225,-0.7775946,-0.7775946,-0.7759231,-0.7730198,-0.7714361,-0.7730198,-0.77680284,-0.77944225,-0.78041005,-0.7809379,-0.7816417,-0.78304935,-0.7841052,-0.78419316,-0.78428113,-0.78454506,-0.78463304,-0.78463304,-0.78463304,-0.78463304,-0.784809,-0.78489697,-0.78489697,-0.78463304,-0.7840172,-0.78366524,-0.78357726,-0.7832253,-0.7827854,-0.78225756,-0.78146577,-0.78041005,-0.7793543,-0.77900237,-0.7795302,-0.78041005,-0.7810259,-0.78111386,-0.7816417,-0.7828734,-0.78357726,-0.78304935,-0.7816417,-0.78155375,-0.78269744,-0.7838412,-0.78489697,-0.78560084,-0.7858648,-0.7860407,-0.7861287,-0.7862167,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7860407,-0.7860407,-0.7858648,-0.7858648,-0.7858648,-0.7857768,-0.7858648,-0.7860407,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.78630465,-0.7863926,-0.78630465,-0.7862167,-0.7861287,-0.7860407,-0.7860407,-0.7860407,-0.78595275,-0.7860407,-0.7862167,-0.7862167,-0.7861287,-0.7860407,-0.7860407,-0.7862167,-0.78630465,-0.7861287,-0.7861287,-0.7862167,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7863926,-0.78595275,-0.7858648,-0.7857768,-0.7856888,-0.78551286,-0.78551286,-0.7856888,-0.78595275,-0.7861287,-0.7861287,-0.7862167,-0.78630465,-0.7863926,-0.78630465,-0.7861287,-0.7860407,-0.7860407,-0.7860407,-0.7861287,-0.7862167,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.7861287,-0.7861287,-0.7861287,-0.7860407,-0.7858648,-0.7857768,-0.7857768,-0.7858648,-0.7860407,-0.7860407,-0.78595275,-0.7861287,-0.78560084,-0.78357726,-0.7816417,-0.7812898,-0.78076196,-0.78120184,-0.7838412,-0.78516096,-0.785073,-0.78419316,-0.78269744,-0.7821696,-0.7828734,-0.7825215,-0.780674,-0.7795302,-0.7799701,-0.7800581,-0.7793543,-0.7796182,-0.78084993,-0.7817297,-0.78225756,-0.78269744,-0.7831373,-0.7834893,-0.7840172,-0.7843691,-0.78419316,-0.78419316,-0.7844571,-0.7844571,-0.78419316,-0.78366524,-0.78331333,-0.78269744,-0.7816417,-0.7802341,-0.77909034,-0.77865046,-0.77873844,-0.7775946,-0.77425146,-0.77090824,-0.7707323,-0.77275586,-0.77530724,-0.77715474,-0.77821046,-0.7796182,-0.78146577,-0.7816417,-0.780586,-0.7797062,-0.77909034,-0.77900237,-0.77944225,-0.7801461,-0.780586,-0.780498,-0.7799701,-0.7796182,-0.77909034,-0.77944225,-0.78225756,-0.7837532,-0.78190565,-0.7801461,-0.7800581,-0.7801461,-0.7801461,-0.7803221,-0.780674,-0.78076196,-0.7803221,-0.7802341,-0.78111386,-0.7818177,-0.78111386,-0.78041005,-0.77988213,-0.7788264,-0.7780345,-0.7777706,-0.77636296,-0.77354765,-0.77161205,-0.7730198,-0.7769788,-0.77909034,-0.77944225,-0.7799701,-0.78076196,-0.7821696,-0.78366524,-0.7841052,-0.78428113,-0.7844571,-0.78454506,-0.78454506,-0.78454506,-0.7844571,-0.78454506,-0.78454506,-0.7843691,-0.7840172,-0.7834893,-0.78331333,-0.78331333,-0.78296137,-0.7824335,-0.7816417,-0.780586,-0.7796182,-0.77873844,-0.77838653,-0.77900237,-0.7802341,-0.78120184,-0.7813778,-0.78155375,-0.78269744,-0.7838412,-0.7840172,-0.7827854,-0.7817297,-0.78225756,-0.78304935,-0.7840172,-0.785073,-0.7856888,-0.78595275,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.7862167,-0.7861287,-0.7861287,-0.7861287,-0.78595275,-0.78595275,-0.7858648,-0.7857768,-0.7857768,-0.7857768,-0.78595275,-0.78595275,-0.78595275,-0.7860407,-0.7861287,-0.7860407,-0.7861287,-0.7862167,-0.78630465,-0.7863926,-0.78630465,-0.7860407,-0.78595275,-0.78595275,-0.78595275,-0.7860407,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7860407,-0.7860407,-0.7860407,-0.7864806,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7863926,-0.7860407,-0.78595275,-0.7857768,-0.7858648,-0.78595275,-0.78560084,-0.78560084,-0.78595275,-0.7861287,-0.7860407,-0.78595275,-0.7861287,-0.7862167,-0.7862167,-0.7861287,-0.78595275,-0.7860407,-0.7861287,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.7861287,-0.7861287,-0.7860407,-0.7861287,-0.7861287,-0.7860407,-0.7858648,-0.7857768,-0.7856888,-0.7857768,-0.78595275,-0.78595275,-0.7860407,-0.78595275,-0.784721,-0.7820816,-0.7809379,-0.78111386,-0.78084993,-0.7820816,-0.7841052,-0.78463304,-0.78463304,-0.7843691,-0.7834893,-0.7831373,-0.78357726,-0.7834013,-0.78146577,-0.77944225,-0.7793543,-0.7796182,-0.77909034,-0.77909034,-0.7802341,-0.7810259,-0.78146577,-0.7819936,-0.7824335,-0.7828734,-0.7834893,-0.7838412,-0.7839292,-0.7839292,-0.7837532,-0.78357726,-0.78357726,-0.7831373,-0.7825215,-0.7818177,-0.780586,-0.77944225,-0.7789144,-0.77873844,-0.7774187,-0.7747793,-0.7717,-0.7701164,-0.7710842,-0.7732837,-0.7759231,-0.77785856,-0.7788264,-0.7801461,-0.7812898,-0.7809379,-0.7803221,-0.77988213,-0.7796182,-0.7797062,-0.77988213,-0.7802341,-0.78076196,-0.78076196,-0.7802341,-0.7797062,-0.77900237,-0.7792663,-0.7821696,-0.78357726,-0.78155375,-0.7800581,-0.78041005,-0.780586,-0.78041005,-0.78041005,-0.78076196,-0.78076196,-0.7801461,-0.77988213,-0.780498,-0.7812898,-0.7816417,-0.7818177,-0.78146577,-0.7802341,-0.77873844,-0.77785856,-0.7768908,-0.77425146,-0.771788,-0.77284384,-0.776099,-0.7774187,-0.77785856,-0.7792663,-0.7801461,-0.7810259,-0.78260946,-0.78357726,-0.7838412,-0.7840172,-0.7841052,-0.78419316,-0.78419316,-0.78428113,-0.78428113,-0.7839292,-0.7834013,-0.78304935,-0.78269744,-0.78269744,-0.78269744,-0.78234553,-0.7817297,-0.78076196,-0.7799701,-0.7791783,-0.77829856,-0.77785856,-0.77821046,-0.7797062,-0.7813778,-0.7817297,-0.7818177,-0.78304935,-0.7844571,-0.784809,-0.7837532,-0.78225756,-0.7820816,-0.7824335,-0.78304935,-0.7843691,-0.7854249,-0.7857768,-0.7861287,-0.7861287,-0.7861287,-0.78595275,-0.7860407,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7861287,-0.78595275,-0.7858648,-0.7858648,-0.78595275,-0.7857768,-0.7857768,-0.7857768,-0.7858648,-0.7858648,-0.7858648,-0.7860407,-0.7861287,-0.7860407,-0.7860407,-0.7862167,-0.78630465,-0.78630465,-0.7862167,-0.7860407,-0.78595275,-0.7858648,-0.78595275,-0.7860407,-0.7860407,-0.7858648,-0.78595275,-0.7861287,-0.7862167,-0.7862167,-0.7860407,-0.7860407,-0.7861287,-0.7861287,-0.78595275,-0.7864806,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7863926,-0.7860407,-0.7860407,-0.7858648,-0.7858648,-0.78595275,-0.7856888,-0.78551286,-0.7856888,-0.7858648,-0.7857768,-0.7856888,-0.7857768,-0.7860407,-0.7862167,-0.7861287,-0.7861287,-0.7861287,-0.7862167,-0.7862167,-0.7860407,-0.7860407,-0.7862167,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.7861287,-0.7860407,-0.78595275,-0.78595275,-0.7860407,-0.7861287,-0.7861287,-0.7860407,-0.7857768,-0.7856888,-0.7856888,-0.7856888,-0.7858648,-0.7861287,-0.7856888,-0.78357726,-0.7810259,-0.780498,-0.7810259,-0.78155375,-0.7825215,-0.78331333,-0.7837532,-0.7841052,-0.78419316,-0.7844571,-0.784721,-0.78463304,-0.7840172,-0.7821696,-0.7801461,-0.77944225,-0.7793543,-0.77900237,-0.77900237,-0.7797062,-0.78041005,-0.78076196,-0.7812898,-0.7816417,-0.7819936,-0.7825215,-0.78296137,-0.78304935,-0.7828734,-0.78269744,-0.7825215,-0.78260946,-0.78234553,-0.78155375,-0.78076196,-0.77979416,-0.7793543,-0.7791783,-0.77785856,-0.7748673,-0.771788,-0.7701164,-0.7701164,-0.77161205,-0.7738116,-0.7766269,-0.7784745,-0.77909034,-0.77979416,-0.7801461,-0.7801461,-0.7802341,-0.7802341,-0.78041005,-0.780498,-0.78041005,-0.78041005,-0.78076196,-0.78084993,-0.7803221,-0.77988213,-0.7792663,-0.7791783,-0.78155375,-0.7827854,-0.7810259,-0.77988213,-0.78041005,-0.78084993,-0.7809379,-0.78076196,-0.78076196,-0.78076196,-0.780498,-0.7803221,-0.7802341,-0.78041005,-0.78111386,-0.7821696,-0.7824335,-0.7810259,-0.7793543,-0.77838653,-0.7774187,-0.7748673,-0.77196395,-0.7717,-0.77398753,-0.77530724,-0.77601105,-0.7776826,-0.77909034,-0.77988213,-0.7810259,-0.7824335,-0.7832253,-0.78366524,-0.7837532,-0.7837532,-0.7839292,-0.7840172,-0.78357726,-0.7828734,-0.78234553,-0.7821696,-0.78190565,-0.7818177,-0.78190565,-0.7816417,-0.7809379,-0.7801461,-0.7797062,-0.77900237,-0.77794653,-0.77750665,-0.77794653,-0.7795302,-0.7817297,-0.7821696,-0.7820816,-0.7834013,-0.78498495,-0.78524894,-0.78463304,-0.7827854,-0.7818177,-0.7820816,-0.78225756,-0.7831373,-0.78463304,-0.78560084,-0.78595275,-0.7860407,-0.7858648,-0.7857768,-0.7860407,-0.7862167,-0.7862167,-0.7862167,-0.7861287,-0.78595275,-0.7858648,-0.7858648,-0.7858648,-0.7858648,-0.7858648,-0.7858648,-0.7858648,-0.7857768,-0.7857768,-0.7856888,-0.7856888,-0.78595275,-0.7861287,-0.7860407,-0.7861287,-0.7862167,-0.78630465,-0.7861287,-0.78595275,-0.78595275,-0.7860407,-0.7861287,-0.7860407,-0.7857768,-0.78560084,-0.7858648,-0.7861287,-0.7862167,-0.7861287,-0.78595275,-0.78595275,-0.7860407,-0.7861287,-0.7861287,-0.7864806,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7863926,-0.7861287,-0.7861287,-0.78595275,-0.7856888,-0.78551286,-0.78551286,-0.7853369,-0.7853369,-0.7856888,-0.7858648,-0.7857768,-0.7856888,-0.78595275,-0.7861287,-0.7861287,-0.7860407,-0.7861287,-0.7861287,-0.7858648,-0.7857768,-0.7860407,-0.7861287,-0.7861287,-0.7862167,-0.7861287,-0.7860407,-0.78595275,-0.78595275,-0.78595275,-0.7860407,-0.7860407,-0.7861287,-0.7862167,-0.7861287,-0.7858648,-0.7856888,-0.7857768,-0.78560084,-0.7856888,-0.78595275,-0.784721,-0.78190565,-0.78041005,-0.78084993,-0.7810259,-0.7813778,-0.78155375,-0.7817297,-0.78296137,-0.7837532,-0.7840172,-0.784721,-0.7853369,-0.78524894,-0.7843691,-0.78269744,-0.780586,-0.7795302,-0.7793543,-0.7792663,-0.7792663,-0.7796182,-0.7800581,-0.7803221,-0.780674,-0.78084993,-0.78076196,-0.78111386,-0.7817297,-0.7817297,-0.7813778,-0.7812898,-0.7813778,-0.7812898,-0.78111386,-0.780586,-0.77979416,-0.7793543,-0.7792663,-0.7781225,-0.7749553,-0.77117217,-0.76914865,-0.7689727,-0.7701164,-0.77205193,-0.77460337,-0.7774187,-0.7788264,-0.7791783,-0.7793543,-0.7792663,-0.7795302,-0.7799701,-0.78041005,-0.7809379,-0.78111386,-0.78076196,-0.780586,-0.780674,-0.780674,-0.78041005,-0.7802341,-0.7796182,-0.77909034,-0.780674,-0.7819936,-0.78076196,-0.77988213,-0.78041005,-0.7809379,-0.78120184,-0.7809379,-0.780498,-0.78084993,-0.78111386,-0.78084993,-0.780498,-0.78041005,-0.78076196,-0.78155375,-0.7820816,-0.78120184,-0.77988213,-0.77909034,-0.7780345,-0.7753952,-0.77205193,-0.7706443,-0.771876,-0.7732837,-0.7741635,-0.77565914,-0.7776826,-0.77909034,-0.77979416,-0.7810259,-0.7824335,-0.7832253,-0.7832253,-0.78331333,-0.7834893,-0.7832253,-0.7824335,-0.7816417,-0.78120184,-0.78120184,-0.7810259,-0.7809379,-0.7810259,-0.78076196,-0.77988213,-0.7793543,-0.7795302,-0.77909034,-0.7780345,-0.7777706,-0.7784745,-0.7801461,-0.7824335,-0.78269744,-0.7824335,-0.7839292,-0.78524894,-0.7854249,-0.78524894,-0.78357726,-0.78155375,-0.7816417,-0.7820816,-0.78190565,-0.7834013,-0.785073,-0.78560084,-0.7857768,-0.7858648,-0.78595275,-0.7861287,-0.7861287,-0.7862167,-0.78630465,-0.7861287,-0.78595275,-0.7858648,-0.78595275,-0.7860407,-0.7858648,-0.7857768,-0.7858648,-0.7858648,-0.7856888,-0.78560084,-0.78560084,-0.78560084,-0.7856888,-0.78595275,-0.7860407,-0.78595275,-0.7860407,-0.7862167,-0.7860407,-0.7858648,-0.7860407,-0.7862167,-0.7861287,-0.7858648,-0.78551286,-0.7856888,-0.7860407,-0.7861287,-0.7861287,-0.7860407,-0.78595275,-0.7860407,-0.7860407,-0.7861287,-0.7862167,-0.7864806,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7861287,-0.7860407,-0.7858648,-0.7857768,-0.78560084,-0.7854249,-0.7853369,-0.7853369,-0.78560084,-0.7858648,-0.7857768,-0.7856888,-0.7858648,-0.7860407,-0.78595275,-0.7858648,-0.7858648,-0.78595275,-0.7857768,-0.78595275,-0.7862167,-0.7861287,-0.7861287,-0.7862167,-0.7861287,-0.7860407,-0.78595275,-0.7860407,-0.7861287,-0.7860407,-0.7860407,-0.7862167,-0.78630465,-0.7862167,-0.7860407,-0.7858648,-0.7858648,-0.7858648,-0.78560084,-0.7853369,-0.7831373,-0.7803221,-0.780498,-0.78146577,-0.78084993,-0.780586,-0.7801461,-0.780586,-0.7825215,-0.78366524,-0.7838412,-0.78419316,-0.78498495,-0.78551286,-0.78498495,-0.7834893,-0.7812898,-0.7796182,-0.7792663,-0.7793543,-0.7791783,-0.7792663,-0.7796182,-0.77979416,-0.7799701,-0.7801461,-0.7799701,-0.77988213,-0.7802341,-0.7802341,-0.7801461,-0.7801461,-0.7799701,-0.7797062,-0.77979416,-0.7797062,-0.7791783,-0.7789144,-0.77794653,-0.77521926,-0.7713481,-0.76879674,-0.76809293,-0.7685328,-0.76994044,-0.7726679,-0.77601105,-0.77829856,-0.7789144,-0.7793543,-0.77944225,-0.7791783,-0.7795302,-0.7801461,-0.780674,-0.7813778,-0.78146577,-0.7809379,-0.780586,-0.780498,-0.78041005,-0.7803221,-0.7803221,-0.7799701,-0.7792663,-0.7800581,-0.78111386,-0.780586,-0.7799701,-0.78041005,-0.7809379,-0.78111386,-0.78076196,-0.780498,-0.78084993,-0.78146577,-0.78120184,-0.780586,-0.78041005,-0.780674,-0.7809379,-0.7812898,-0.7809379,-0.7801461,-0.7797062,-0.77909034,-0.77636296,-0.77231586,-0.77020437,-0.7707323,-0.7713481,-0.77205193,-0.7738116,-0.776275,-0.77838653,-0.77909034,-0.7797062,-0.78111386,-0.7820816,-0.7821696,-0.7821696,-0.78225756,-0.7818177,-0.7809379,-0.7801461,-0.7797062,-0.77944225,-0.7797062,-0.7801461,-0.7803221,-0.77979416,-0.7788264,-0.7788264,-0.77944225,-0.77909034,-0.77829856,-0.77821046,-0.7791783,-0.7813778,-0.7832253,-0.7834893,-0.7838412,-0.784809,-0.78524894,-0.785073,-0.78489697,-0.7839292,-0.7813778,-0.780674,-0.7817297,-0.7812898,-0.7819936,-0.7840172,-0.78516096,-0.78551286,-0.7857768,-0.7860407,-0.7861287,-0.7861287,-0.78630465,-0.78630465,-0.7861287,-0.78595275,-0.7860407,-0.7862167,-0.7862167,-0.78595275,-0.7857768,-0.78595275,-0.7860407,-0.7858648,-0.7856888,-0.78560084,-0.7856888,-0.7856888,-0.78560084,-0.7858648,-0.78595275,-0.7858648,-0.7860407,-0.7860407,-0.78595275,-0.7861287,-0.7861287,-0.78595275,-0.7854249,-0.78524894,-0.7857768,-0.7861287,-0.7862167,-0.7861287,-0.7860407,-0.7860407,-0.7861287,-0.7860407,-0.7861287,-0.7862167,-0.7864806,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7862167,-0.78595275,-0.7857768,-0.78595275,-0.7858648,-0.78560084,-0.7854249,-0.78551286,-0.78560084,-0.7857768,-0.7856888,-0.78560084,-0.7857768,-0.78595275,-0.78595275,-0.7856888,-0.78551286,-0.78560084,-0.78595275,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.7862167,-0.7860407,-0.7860407,-0.7861287,-0.7862167,-0.7862167,-0.7860407,-0.7861287,-0.7862167,-0.78630465,-0.7862167,-0.7861287,-0.7858648,-0.7857768,-0.7857768,-0.7853369,-0.7844571,-0.78146577,-0.7797062,-0.78120184,-0.7816417,-0.780586,-0.7796182,-0.7791783,-0.78076196,-0.78260946,-0.7834893,-0.7837532,-0.7834893,-0.7840172,-0.78498495,-0.78489697,-0.7839292,-0.7825215,-0.780674,-0.7795302,-0.7792663,-0.77900237,-0.77865046,-0.7784745,-0.7785625,-0.77865046,-0.77873844,-0.77865046,-0.7784745,-0.7784745,-0.7788264,-0.7791783,-0.7791783,-0.7789144,-0.7788264,-0.7792663,-0.77909034,-0.7789144,-0.7784745,-0.776275,-0.7725798,-0.7692366,-0.7681809,-0.7681809,-0.7685328,-0.77020437,-0.7734597,-0.7769788,-0.7788264,-0.7792663,-0.7796182,-0.7795302,-0.7795302,-0.7801461,-0.780586,-0.7809379,-0.78155375,-0.7816417,-0.78120184,-0.78076196,-0.780498,-0.7802341,-0.7802341,-0.78041005,-0.7802341,-0.7795302,-0.7797062,-0.780498,-0.7802341,-0.77988213,-0.7802341,-0.780498,-0.780586,-0.780586,-0.780498,-0.78076196,-0.7812898,-0.7812898,-0.78076196,-0.7802341,-0.7802341,-0.780586,-0.78076196,-0.780586,-0.7801461,-0.7802341,-0.7799701,-0.7773307,-0.77319574,-0.7706443,-0.77020437,-0.76985246,-0.76994044,-0.771876,-0.7749553,-0.7773307,-0.7785625,-0.7796182,-0.780498,-0.78084993,-0.78084993,-0.780674,-0.780498,-0.7803221,-0.77979416,-0.77900237,-0.7780345,-0.77785856,-0.7784745,-0.7791783,-0.77909034,-0.77865046,-0.77821046,-0.77873844,-0.7795302,-0.7789144,-0.7777706,-0.7781225,-0.7799701,-0.7824335,-0.78357726,-0.7841052,-0.78498495,-0.785073,-0.78463304,-0.7843691,-0.7837532,-0.78304935,-0.7813778,-0.780498,-0.78155375,-0.78120184,-0.780674,-0.7825215,-0.7844571,-0.78524894,-0.7858648,-0.7861287,-0.7862167,-0.7862167,-0.78630465,-0.7862167,-0.7860407,-0.78595275,-0.7861287,-0.78630465,-0.78630465,-0.7860407,-0.7858648,-0.78595275,-0.78595275,-0.78595275,-0.7858648,-0.78560084,-0.7856888,-0.7857768,-0.7856888,-0.7856888,-0.7858648,-0.7857768,-0.7857768,-0.7860407,-0.7861287,-0.7861287,-0.7861287,-0.7857768,-0.78551286,-0.78560084,-0.78595275,-0.7862167,-0.7862167,-0.7862167,-0.7861287,-0.7861287,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7864806,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7861287,-0.7857768,-0.7857768,-0.78595275,-0.78595275,-0.7857768,-0.7857768,-0.7856888,-0.7856888,-0.7857768,-0.7856888,-0.7854249,-0.78560084,-0.7858648,-0.78595275,-0.7856888,-0.7853369,-0.78551286,-0.78595275,-0.7862167,-0.7861287,-0.7861287,-0.7861287,-0.78595275,-0.7858648,-0.7860407,-0.78630465,-0.7863926,-0.78630465,-0.7861287,-0.7861287,-0.7861287,-0.7862167,-0.7862167,-0.7861287,-0.78595275,-0.7857768,-0.7856888,-0.78489697,-0.7827854,-0.77944225,-0.7796182,-0.78155375,-0.78084993,-0.77944225,-0.7781225,-0.77865046,-0.7813778,-0.78260946,-0.7832253,-0.78357726,-0.78296137,-0.7831373,-0.7843691,-0.7843691,-0.78366524,-0.7832253,-0.78146577,-0.7797062,-0.7791783,-0.77909034,-0.77838653,-0.77750665,-0.77715474,-0.77706677,-0.7768908,-0.77680284,-0.7766269,-0.7765389,-0.7768908,-0.7775946,-0.77785856,-0.77794653,-0.77838653,-0.7785625,-0.77865046,-0.77909034,-0.77829856,-0.7751312,-0.77126014,-0.76870877,-0.7681809,-0.7682689,-0.7686208,-0.7706443,-0.77433944,-0.7776826,-0.7791783,-0.77979416,-0.7801461,-0.7802341,-0.78041005,-0.780674,-0.78076196,-0.78120184,-0.7816417,-0.7816417,-0.7812898,-0.7809379,-0.780586,-0.7803221,-0.78041005,-0.780498,-0.7802341,-0.7795302,-0.77944225,-0.7800581,-0.7800581,-0.7797062,-0.7799701,-0.7803221,-0.780498,-0.780586,-0.780586,-0.780674,-0.78120184,-0.78146577,-0.7810259,-0.7802341,-0.7799701,-0.7801461,-0.780498,-0.780586,-0.7801461,-0.7802341,-0.7802341,-0.77785856,-0.7740755,-0.7713481,-0.77020437,-0.76914865,-0.76879674,-0.77090824,-0.77425146,-0.77645093,-0.7781225,-0.77979416,-0.78041005,-0.7800581,-0.77979416,-0.7795302,-0.7793543,-0.7792663,-0.77900237,-0.77794653,-0.77671486,-0.7766269,-0.77750665,-0.77794653,-0.7775946,-0.7775946,-0.7781225,-0.77900237,-0.7795302,-0.77865046,-0.7774187,-0.7781225,-0.780674,-0.78304935,-0.7837532,-0.78419316,-0.78454506,-0.7838412,-0.7834893,-0.7837532,-0.78296137,-0.78155375,-0.78084993,-0.78076196,-0.7816417,-0.78146577,-0.7800581,-0.780674,-0.78304935,-0.784721,-0.7856888,-0.7860407,-0.7861287,-0.7861287,-0.7862167,-0.7860407,-0.78595275,-0.7861287,-0.7862167,-0.78630465,-0.7862167,-0.7860407,-0.7858648,-0.7856888,-0.78551286,-0.78560084,-0.78560084,-0.78551286,-0.78551286,-0.7856888,-0.7857768,-0.7857768,-0.7857768,-0.7857768,-0.78560084,-0.7857768,-0.78595275,-0.7860407,-0.7858648,-0.7856888,-0.7858648,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7862167,-0.7862167,-0.7861287,-0.7860407,-0.7864806,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7861287,-0.7858648,-0.7856888,-0.7857768,-0.7858648,-0.7857768,-0.7858648,-0.7858648,-0.78560084,-0.7856888,-0.7856888,-0.7854249,-0.7854249,-0.7857768,-0.7858648,-0.7856888,-0.7854249,-0.7854249,-0.7857768,-0.78595275,-0.7858648,-0.7858648,-0.7858648,-0.7858648,-0.7858648,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.7862167,-0.7862167,-0.7862167,-0.7860407,-0.7858648,-0.7857768,-0.7854249,-0.7840172,-0.7802341,-0.7781225,-0.7802341,-0.78120184,-0.77944225,-0.7776826,-0.77636296,-0.77821046,-0.78146577,-0.7820816,-0.78225756,-0.78304935,-0.78269744,-0.78260946,-0.7840172,-0.78419316,-0.7831373,-0.78304935,-0.7820816,-0.7802341,-0.7796182,-0.7795302,-0.77838653,-0.7773307,-0.77645093,-0.77557117,-0.7749553,-0.7747793,-0.7745154,-0.7744274,-0.7747793,-0.77557117,-0.7765389,-0.7773307,-0.77785856,-0.77785856,-0.77838653,-0.7792663,-0.77821046,-0.7749553,-0.77126014,-0.76879674,-0.7682689,-0.76835686,-0.7689727,-0.7714361,-0.77557117,-0.77865046,-0.7796182,-0.7801461,-0.780674,-0.7810259,-0.78120184,-0.78111386,-0.7809379,-0.7813778,-0.7816417,-0.78155375,-0.7812898,-0.7809379,-0.780586,-0.78041005,-0.78041005,-0.7802341,-0.7799701,-0.7795302,-0.7792663,-0.7797062,-0.7799701,-0.7796182,-0.77979416,-0.7802341,-0.780674,-0.7809379,-0.78084993,-0.78084993,-0.78120184,-0.78146577,-0.7812898,-0.780498,-0.7799701,-0.7801461,-0.78076196,-0.7809379,-0.7802341,-0.7800581,-0.7803221,-0.77829856,-0.7745154,-0.77196395,-0.77055633,-0.76914865,-0.7685328,-0.7706443,-0.77389956,-0.77601105,-0.77794653,-0.7799701,-0.78041005,-0.7797062,-0.7789144,-0.77829856,-0.7781225,-0.77821046,-0.7776826,-0.77645093,-0.77504325,-0.7745154,-0.77530724,-0.77645093,-0.7768908,-0.77750665,-0.7784745,-0.77909034,-0.77909034,-0.7789144,-0.7788264,-0.77988213,-0.7817297,-0.7832253,-0.7839292,-0.78419316,-0.7834893,-0.7824335,-0.78260946,-0.7831373,-0.7825215,-0.780586,-0.7796182,-0.7800581,-0.78111386,-0.7816417,-0.7802341,-0.7792663,-0.78146577,-0.7839292,-0.78524894,-0.7858648,-0.78595275,-0.78595275,-0.78595275,-0.78595275,-0.78595275,-0.7861287,-0.7862167,-0.7862167,-0.7862167,-0.78595275,-0.7858648,-0.7856888,-0.78551286,-0.78551286,-0.7854249,-0.78524894,-0.78524894,-0.78551286,-0.78560084,-0.78560084,-0.78560084,-0.78560084,-0.7856888,-0.7857768,-0.7856888,-0.7857768,-0.78560084,-0.78560084,-0.7860407,-0.7862167,-0.7861287,-0.7860407,-0.7860407,-0.7860407,-0.7860407,-0.7862167,-0.78630465,-0.7862167,-0.7861287,-0.7860407,-0.7864806,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.78630465,-0.7861287,-0.7858648,-0.7858648,-0.78595275,-0.7858648,-0.7858648,-0.7856888,-0.78560084,-0.7857768,-0.7857768,-0.78551286,-0.78551286,-0.7857768,-0.7858648,-0.7857768,-0.78551286,-0.7853369,-0.78551286,-0.7856888,-0.7856888,-0.7857768,-0.7857768,-0.7858648,-0.7860407,-0.7862167,-0.7862167,-0.7861287,-0.7861287,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.7860407,-0.7860407,-0.7858648,-0.78551286,-0.784809,-0.78260946,-0.7784745,-0.77865046,-0.78120184,-0.78041005,-0.77821046,-0.776187,-0.7753952,-0.7784745,-0.78146577,-0.7816417,-0.7813778,-0.78225756,-0.78269744,-0.78260946,-0.7837532,-0.7840172,-0.78234553,-0.7820816,-0.78260946,-0.78120184,-0.78041005,-0.78041005,-0.7788264,-0.7769788,-0.7754832,-0.77425146,-0.77354765,-0.7732837,-0.7730198,-0.77310777,-0.77354765,-0.77433944,-0.7758351,-0.77715474,-0.77750665,-0.7776826,-0.7784745,-0.77909034,-0.77785856,-0.7749553,-0.77161205,-0.7689727,-0.7682689,-0.7686208,-0.76994044,-0.77275586,-0.7766269,-0.7793543,-0.7802341,-0.780586,-0.7809379,-0.7810259,-0.78111386,-0.7810259,-0.78111386,-0.78155375,-0.7817297,-0.78146577,-0.78111386,-0.78084993,-0.78041005,-0.7803221,-0.78041005,-0.7801461,-0.77979416,-0.7795302,-0.7795302,-0.77979416,-0.7796182,-0.77900237,-0.7791783,-0.77979416,-0.7803221,-0.780674,-0.780674,-0.780674,-0.78084993,-0.7810259,-0.7810259,-0.780586,-0.7802341,-0.78041005,-0.7809379,-0.78120184,-0.780498,-0.7799701,-0.7803221,-0.77873844,-0.7751312,-0.7724918,-0.77126014,-0.7696765,-0.7688847,-0.7707323,-0.77354765,-0.77601105,-0.7784745,-0.7803221,-0.780498,-0.7793543,-0.7780345,-0.77706677,-0.77671486,-0.7766269,-0.77565914,-0.77389956,-0.7725798,-0.77196395,-0.7724918,-0.7744274,-0.77645093,-0.77794653,-0.7792663,-0.7793543,-0.7789144,-0.77944225,-0.780586,-0.78190565,-0.78269744,-0.78304935,-0.7838412,-0.78366524,-0.78190565,-0.7812898,-0.7821696,-0.78260946,-0.7824335,-0.780586,-0.77829856,-0.7784745,-0.7799701,-0.7813778,-0.7810259,-0.77900237,-0.7799701,-0.78304935,-0.784809,-0.7854249,-0.78560084,-0.7856888,-0.7857768,-0.7858648,-0.7860407,-0.7862167,-0.7861287,-0.7860407,-0.7861287,-0.7861287,-0.78595275,-0.7857768,-0.7856888,-0.78560084,-0.7854249,-0.78524894,-0.78516096,-0.78524894,-0.78516096,-0.785073,-0.785073,-0.78516096,-0.7853369,-0.78560084,-0.7856888,-0.78551286,-0.78516096,-0.78524894,-0.7858648,-0.7861287,-0.78595275,-0.7858648,-0.78595275,-0.7860407,-0.7860407,-0.7862167,-0.78630465,-0.7862167,-0.7861287,-0.7862167,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.7862167,-0.78595275,-0.7861287,-0.7862167,-0.7861287,-0.78595275,-0.78551286,-0.7856888,-0.7858648,-0.7857768,-0.7856888,-0.7856888,-0.7857768,-0.7857768,-0.7856888,-0.7856888,-0.7854249,-0.78551286,-0.7857768,-0.7857768,-0.7857768,-0.7857768,-0.78595275,-0.7860407,-0.7861287,-0.7862167,-0.7861287,-0.7860407,-0.7862167,-0.7862167,-0.7861287,-0.7860407,-0.78595275,-0.7860407,-0.7857768,-0.78524894,-0.7839292,-0.780498,-0.7776826,-0.7803221,-0.7818177,-0.77979416,-0.7774187,-0.7751312,-0.7757471,-0.7795302,-0.78155375,-0.7816417,-0.7817297,-0.78234553,-0.7831373,-0.7832253,-0.78366524,-0.7838412,-0.7821696,-0.7813778,-0.78260946,-0.7816417,-0.77988213,-0.7799701,-0.7788264,-0.7759231,-0.7738116,-0.77319574,-0.7729318,-0.7724918,-0.77231586,-0.77275586,-0.77310777,-0.77389956,-0.77557117,-0.7769788,-0.77750665,-0.7774187,-0.7780345,-0.77873844,-0.7777706,-0.7751312,-0.7722279,-0.76958853,-0.7686208,-0.7694126,-0.77090824,-0.7734597,-0.7772427,-0.78041005,-0.7812898,-0.7810259,-0.78076196,-0.78041005,-0.78041005,-0.78076196,-0.78120184,-0.7816417,-0.7816417,-0.7813778,-0.78111386,-0.78076196,-0.7803221,-0.78041005,-0.780498,-0.7799701,-0.7795302,-0.7793543,-0.7797062,-0.7800581,-0.7793543,-0.7785625,-0.7789144,-0.7795302,-0.7799701,-0.7803221,-0.78041005,-0.7803221,-0.7803221,-0.78041005,-0.780586,-0.780586,-0.780586,-0.78041005,-0.780674,-0.7810259,-0.780498,-0.7797062,-0.7799701,-0.7791783,-0.77601105,-0.77319574,-0.771876,-0.7703804,-0.76985246,-0.7714361,-0.7734597,-0.776099,-0.77909034,-0.780586,-0.7803221,-0.7789144,-0.77706677,-0.7758351,-0.7753952,-0.7749553,-0.7736356,-0.771876,-0.7707323,-0.77046835,-0.77090824,-0.77275586,-0.77557117,-0.77829856,-0.77988213,-0.77979416,-0.7795302,-0.7800581,-0.7810259,-0.7824335,-0.7825215,-0.78234553,-0.7834013,-0.7827854,-0.7803221,-0.78041005,-0.78190565,-0.7819936,-0.78225756,-0.7810259,-0.7776826,-0.77680284,-0.77873844,-0.780674,-0.7816417,-0.7800581,-0.77900237,-0.7816417,-0.7844571,-0.7853369,-0.7854249,-0.78560084,-0.7858648,-0.78595275,-0.7861287,-0.7862167,-0.7861287,-0.7860407,-0.7860407,-0.7860407,-0.7860407,-0.7857768,-0.7856888,-0.7857768,-0.7856888,-0.78551286,-0.78551286,-0.7853369,-0.78516096,-0.78489697,-0.784721,-0.78489697,-0.7853369,-0.78551286,-0.7856888,-0.78560084,-0.785073,-0.78498495,-0.78560084,-0.7861287,-0.78595275,-0.78595275,-0.7860407,-0.7861287,-0.7860407,-0.7861287,-0.78630465,-0.7861287,-0.7860407,-0.7861287,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.78630465,-0.7862167,-0.7860407,-0.7861287,-0.7862167,-0.7861287,-0.78595275,-0.78560084,-0.7858648,-0.78595275,-0.7857768,-0.7858648,-0.78595275,-0.7858648,-0.78560084,-0.7856888,-0.7857768,-0.78560084,-0.78560084,-0.7858648,-0.78595275,-0.78595275,-0.78595275,-0.7860407,-0.7860407,-0.78595275,-0.7861287,-0.7861287,-0.7862167,-0.78630465,-0.7862167,-0.7862167,-0.7860407,-0.78595275,-0.78595275,-0.78551286,-0.784809,-0.78234553,-0.77838653,-0.77821046,-0.7816417,-0.7818177,-0.77909034,-0.776275,-0.77469134,-0.77680284,-0.780586,-0.78190565,-0.7824335,-0.78296137,-0.7828734,-0.78331333,-0.78366524,-0.7834013,-0.7834893,-0.78304935,-0.78234553,-0.7832253,-0.7825215,-0.7795302,-0.77865046,-0.7780345,-0.77530724,-0.77354765,-0.77310777,-0.7725798,-0.7721399,-0.7722279,-0.7726679,-0.77319574,-0.77389956,-0.7753952,-0.7769788,-0.7774187,-0.7769788,-0.7772427,-0.77838653,-0.7777706,-0.77557117,-0.77310777,-0.77055633,-0.7696765,-0.77055633,-0.771788,-0.7741635,-0.7780345,-0.78120184,-0.7819936,-0.7812898,-0.78041005,-0.7797062,-0.77979416,-0.78041005,-0.78111386,-0.78155375,-0.78155375,-0.7813778,-0.7810259,-0.780674,-0.78041005,-0.780498,-0.7803221,-0.77979416,-0.77944225,-0.7791783,-0.7797062,-0.7803221,-0.7793543,-0.7784745,-0.7789144,-0.77944225,-0.77979416,-0.7801461,-0.7802341,-0.7799701,-0.77988213,-0.7800581,-0.7802341,-0.780498,-0.78076196,-0.780586,-0.78041005,-0.78076196,-0.780586,-0.77988213,-0.7799701,-0.7793543,-0.7765389,-0.7737236,-0.77240384,-0.77126014,-0.77117217,-0.77231586,-0.7736356,-0.77601105,-0.7791783,-0.780498,-0.7799701,-0.7784745,-0.77645093,-0.7749553,-0.77433944,-0.7738116,-0.7726679,-0.77126014,-0.7701164,-0.7697645,-0.7701164,-0.7717,-0.7748673,-0.77785856,-0.77944225,-0.7795302,-0.77979416,-0.780674,-0.7818177,-0.7824335,-0.7816417,-0.78155375,-0.7828734,-0.78155375,-0.77909034,-0.77979416,-0.7816417,-0.7816417,-0.7818177,-0.7813778,-0.77785856,-0.77565914,-0.7775946,-0.77988213,-0.7816417,-0.78146577,-0.7788264,-0.7796182,-0.7832253,-0.78516096,-0.78551286,-0.7856888,-0.78595275,-0.7861287,-0.7862167,-0.7862167,-0.7861287,-0.78595275,-0.7858648,-0.7858648,-0.78595275,-0.78595275,-0.7858648,-0.7857768,-0.7858648,-0.7858648,-0.7857768,-0.78560084,-0.78551286,-0.78524894,-0.784809,-0.78498495,-0.78560084,-0.7858648,-0.7857768,-0.7858648,-0.78560084,-0.78524894,-0.78560084,-0.7860407,-0.7861287,-0.7860407,-0.7861287,-0.7862167,-0.7861287,-0.7861287,-0.7862167,-0.7861287,-0.7860407,-0.7861287,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.78630465,-0.78630465,-0.7861287,-0.7862167,-0.7861287,-0.7860407,-0.78595275,-0.7857768,-0.7861287,-0.7860407,-0.7858648,-0.7858648,-0.7860407,-0.78595275,-0.78560084,-0.7857768,-0.7858648,-0.7856888,-0.7856888,-0.7860407,-0.7861287,-0.7860407,-0.7860407,-0.7860407,-0.7860407,-0.7860407,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.7860407,-0.7857768,-0.78524894,-0.78366524,-0.77988213,-0.7774187,-0.77979416,-0.7821696,-0.78076196,-0.77750665,-0.7748673,-0.7748673,-0.77794653,-0.7813778,-0.78260946,-0.7834013,-0.78366524,-0.78331333,-0.78357726,-0.7837532,-0.7832253,-0.78331333,-0.78366524,-0.78357726,-0.7839292,-0.78357726,-0.7810259,-0.77873844,-0.7781225,-0.7766269,-0.7748673,-0.77389956,-0.77310777,-0.7725798,-0.7725798,-0.77284384,-0.7733717,-0.77425146,-0.7754832,-0.77671486,-0.77706677,-0.7765389,-0.77706677,-0.77829856,-0.7777706,-0.77565914,-0.77354765,-0.771788,-0.7710842,-0.7715241,-0.7726679,-0.77530724,-0.77900237,-0.78111386,-0.78146577,-0.78120184,-0.78041005,-0.7796182,-0.7797062,-0.78041005,-0.78120184,-0.78155375,-0.78146577,-0.78111386,-0.78076196,-0.780498,-0.78041005,-0.7803221,-0.7801461,-0.7799701,-0.7797062,-0.7791783,-0.7796182,-0.7803221,-0.7795302,-0.77865046,-0.77900237,-0.77944225,-0.7796182,-0.7799701,-0.7801461,-0.7799701,-0.77979416,-0.77988213,-0.7800581,-0.7803221,-0.780498,-0.78041005,-0.7802341,-0.780498,-0.780586,-0.7803221,-0.7803221,-0.7795302,-0.77680284,-0.7741635,-0.7729318,-0.77231586,-0.77231586,-0.7732837,-0.7744274,-0.77636296,-0.7791783,-0.7803221,-0.7797062,-0.77829856,-0.776187,-0.77460337,-0.7740755,-0.7734597,-0.77240384,-0.7713481,-0.77055633,-0.7701164,-0.76994044,-0.7709962,-0.7744274,-0.7772427,-0.77794653,-0.7781225,-0.7791783,-0.78120184,-0.78304935,-0.78234553,-0.78084993,-0.78111386,-0.7819936,-0.7809379,-0.7791783,-0.7796182,-0.78120184,-0.78146577,-0.7812898,-0.78120184,-0.77829856,-0.7751312,-0.776099,-0.7788264,-0.7809379,-0.78234553,-0.7796182,-0.77750665,-0.780674,-0.7843691,-0.7853369,-0.78560084,-0.7858648,-0.7861287,-0.7862167,-0.7862167,-0.7862167,-0.7860407,-0.7858648,-0.7857768,-0.78595275,-0.7862167,-0.7860407,-0.7858648,-0.7858648,-0.7858648,-0.7857768,-0.7857768,-0.7857768,-0.78560084,-0.78524894,-0.7853369,-0.7856888,-0.7858648,-0.7857768,-0.7858648,-0.7858648,-0.78560084,-0.7856888,-0.7861287,-0.7861287,-0.7860407,-0.7861287,-0.7861287,-0.7861287,-0.78595275,-0.78595275,-0.7861287,-0.7861287,-0.7862167,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7862167,-0.78630465,-0.7862167,-0.7862167,-0.7861287,-0.7860407,-0.78595275,-0.78595275,-0.7862167,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7858648,-0.78595275,-0.78595275,-0.7857768,-0.7856888,-0.7860407,-0.7862167,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.78595275,-0.78551286,-0.784721,-0.7818177,-0.7777706,-0.77785856,-0.78120184,-0.7813778,-0.77873844,-0.77557117,-0.77398753,-0.77565914,-0.7791783,-0.7820816,-0.78331333,-0.7838412,-0.7840172,-0.7837532,-0.78357726,-0.78331333,-0.78304935,-0.7832253,-0.78357726,-0.78366524,-0.78366524,-0.7838412,-0.78260946,-0.7799701,-0.7791783,-0.7788264,-0.77671486,-0.7751312,-0.77460337,-0.7737236,-0.77310777,-0.7730198,-0.7733717,-0.77425146,-0.7753952,-0.776275,-0.77636296,-0.776275,-0.77715474,-0.77829856,-0.7776826,-0.7759231,-0.77433944,-0.77310777,-0.77240384,-0.7726679,-0.77354765,-0.77636296,-0.7797062,-0.7809379,-0.780674,-0.780674,-0.780586,-0.7801461,-0.7799701,-0.78041005,-0.78120184,-0.7813778,-0.7810259,-0.78076196,-0.780498,-0.7803221,-0.7802341,-0.7802341,-0.7800581,-0.7800581,-0.77979416,-0.7791783,-0.7793543,-0.7801461,-0.7797062,-0.7788264,-0.77909034,-0.77944225,-0.77944225,-0.77979416,-0.7801461,-0.7800581,-0.77988213,-0.77979416,-0.7797062,-0.77988213,-0.7802341,-0.7803221,-0.7803221,-0.78041005,-0.780586,-0.780498,-0.780586,-0.7799701,-0.7776826,-0.7749553,-0.7737236,-0.77319574,-0.77319574,-0.7740755,-0.77530724,-0.7768908,-0.7789144,-0.7799701,-0.7796182,-0.7781225,-0.776187,-0.7748673,-0.77433944,-0.77354765,-0.7724918,-0.771788,-0.77126014,-0.7709962,-0.7707323,-0.77126014,-0.7741635,-0.7769788,-0.7772427,-0.7773307,-0.7797062,-0.7827854,-0.7840172,-0.78234553,-0.78084993,-0.7809379,-0.7817297,-0.78155375,-0.78041005,-0.77979416,-0.78076196,-0.78120184,-0.7810259,-0.78111386,-0.77909034,-0.77504325,-0.7744274,-0.7774187,-0.77988213,-0.7820816,-0.78111386,-0.7772427,-0.7772427,-0.7817297,-0.7844571,-0.78524894,-0.7856888,-0.7860407,-0.7861287,-0.7862167,-0.7862167,-0.7860407,-0.7860407,-0.7860407,-0.7860407,-0.78630465,-0.7862167,-0.7860407,-0.78595275,-0.7858648,-0.7858648,-0.78595275,-0.7860407,-0.7857768,-0.78560084,-0.7856888,-0.7857768,-0.7857768,-0.7857768,-0.7861287,-0.7861287,-0.7858648,-0.78595275,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.7860407,-0.7858648,-0.78595275,-0.7861287,-0.7862167,-0.7863926,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7862167,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.7861287,-0.7860407,-0.7861287,-0.7862167,-0.7861287,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.7861287,-0.7858648,-0.7857768,-0.78595275,-0.7861287,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.7861287,-0.7856888,-0.785073,-0.78331333,-0.77944225,-0.7772427,-0.7792663,-0.7813778,-0.7795302,-0.77636296,-0.7736356,-0.7737236,-0.77680284,-0.77988213,-0.78190565,-0.7832253,-0.7840172,-0.78428113,-0.78366524,-0.78260946,-0.7819936,-0.78234553,-0.7831373,-0.78357726,-0.78366524,-0.7839292,-0.78428113,-0.7838412,-0.7816417,-0.780674,-0.780674,-0.7784745,-0.77645093,-0.776187,-0.7753952,-0.77389956,-0.7732837,-0.7734597,-0.77425146,-0.77557117,-0.77636296,-0.776275,-0.776187,-0.77715474,-0.7780345,-0.7777706,-0.7765389,-0.7751312,-0.7740755,-0.7737236,-0.7738116,-0.7747793,-0.7775946,-0.7802341,-0.78076196,-0.780586,-0.780674,-0.780674,-0.780586,-0.780498,-0.78076196,-0.7810259,-0.7810259,-0.780674,-0.780586,-0.78041005,-0.7801461,-0.7800581,-0.7801461,-0.7801461,-0.7799701,-0.7797062,-0.7791783,-0.7792663,-0.7799701,-0.7797062,-0.7788264,-0.77900237,-0.7793543,-0.7793543,-0.77979416,-0.7802341,-0.7801461,-0.77988213,-0.7797062,-0.77944225,-0.7797062,-0.7802341,-0.780674,-0.780586,-0.780498,-0.780586,-0.780498,-0.780586,-0.7802341,-0.77838653,-0.7757471,-0.77433944,-0.7740755,-0.77425146,-0.7748673,-0.776099,-0.7774187,-0.7784745,-0.7793543,-0.77944225,-0.77794653,-0.77601105,-0.77521926,-0.7747793,-0.7736356,-0.7726679,-0.7722279,-0.771788,-0.7715241,-0.771788,-0.77240384,-0.77460337,-0.77715474,-0.7777706,-0.7788264,-0.7817297,-0.7838412,-0.7838412,-0.78234553,-0.7812898,-0.78155375,-0.7825215,-0.78234553,-0.7809379,-0.780586,-0.78155375,-0.7816417,-0.78111386,-0.78111386,-0.77988213,-0.7758351,-0.77354765,-0.7759231,-0.7789144,-0.78120184,-0.7816417,-0.77794653,-0.77389956,-0.7758351,-0.78120184,-0.78454506,-0.7854249,-0.7858648,-0.7861287,-0.7861287,-0.7862167,-0.7861287,-0.7861287,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7861287,-0.7860407,-0.7858648,-0.7858648,-0.7860407,-0.7858648,-0.7858648,-0.7857768,-0.78560084,-0.78551286,-0.7858648,-0.7862167,-0.7862167,-0.7860407,-0.78595275,-0.7861287,-0.7861287,-0.7860407,-0.7861287,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7861287,-0.78630465,-0.7863926,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.78630465,-0.7862167,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.7862167,-0.78630465,-0.7862167,-0.7861287,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7862167,-0.78595275,-0.7858648,-0.7858648,-0.7860407,-0.7861287,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.78595275,-0.7853369,-0.78419316,-0.78120184,-0.77785856,-0.77794653,-0.7801461,-0.78041005,-0.7775946,-0.77425146,-0.7722279,-0.77398753,-0.7777706,-0.78084993,-0.7821696,-0.78296137,-0.7840172,-0.7844571,-0.78357726,-0.78225756,-0.78155375,-0.78190565,-0.7831373,-0.7840172,-0.78419316,-0.7841052,-0.7844571,-0.78454506,-0.7832253,-0.7816417,-0.78084993,-0.77900237,-0.7766269,-0.77645093,-0.7766269,-0.7748673,-0.77354765,-0.7737236,-0.77469134,-0.776099,-0.7769788,-0.77680284,-0.7768908,-0.7774187,-0.7777706,-0.7780345,-0.77715474,-0.7754832,-0.7745154,-0.77460337,-0.77469134,-0.7757471,-0.77873844,-0.78084993,-0.7810259,-0.78084993,-0.78111386,-0.7810259,-0.78084993,-0.7809379,-0.7809379,-0.78076196,-0.780674,-0.780586,-0.780586,-0.780498,-0.7801461,-0.7799701,-0.7802341,-0.7801461,-0.77988213,-0.7796182,-0.7791783,-0.7793543,-0.7799701,-0.7796182,-0.77873844,-0.77900237,-0.7795302,-0.7795302,-0.77979416,-0.7803221,-0.7801461,-0.7797062,-0.7795302,-0.7795302,-0.77988213,-0.78041005,-0.78076196,-0.780674,-0.780586,-0.780586,-0.780498,-0.78041005,-0.7802341,-0.7789144,-0.77645093,-0.7747793,-0.77460337,-0.77504325,-0.7757471,-0.77671486,-0.7777706,-0.7781225,-0.7785625,-0.7791783,-0.77829856,-0.7766269,-0.7759231,-0.77521926,-0.7736356,-0.77275586,-0.7726679,-0.77240384,-0.77205193,-0.7724918,-0.77354765,-0.77565914,-0.7775946,-0.77900237,-0.78111386,-0.78331333,-0.78366524,-0.78296137,-0.7821696,-0.78146577,-0.7818177,-0.78296137,-0.7825215,-0.7813778,-0.7817297,-0.7828734,-0.7827854,-0.7817297,-0.7809379,-0.77988213,-0.7768908,-0.77354765,-0.77433944,-0.7776826,-0.7803221,-0.7812898,-0.77873844,-0.7736356,-0.77284384,-0.7781225,-0.7832253,-0.78524894,-0.7856888,-0.7860407,-0.7861287,-0.7860407,-0.7861287,-0.7861287,-0.78630465,-0.7862167,-0.7861287,-0.7860407,-0.7861287,-0.7861287,-0.7860407,-0.7858648,-0.78595275,-0.7860407,-0.7861287,-0.7861287,-0.7858648,-0.78560084,-0.78551286,-0.7858648,-0.7862167,-0.7861287,-0.7860407,-0.78595275,-0.78595275,-0.78595275,-0.7860407,-0.7862167,-0.7862167,-0.7862167,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.7863926,-0.7863926,-0.7862167,-0.7860407,-0.78595275,-0.78595275,-0.7861287,-0.7862167,-0.7862167,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7861287,-0.7857768,-0.78498495,-0.78269744,-0.77909034,-0.77750665,-0.77900237,-0.7801461,-0.7789144,-0.7757471,-0.77240384,-0.771788,-0.77504325,-0.77865046,-0.78155375,-0.7832253,-0.78357726,-0.78419316,-0.784721,-0.7838412,-0.7828734,-0.78234553,-0.78225756,-0.7831373,-0.7840172,-0.7838412,-0.7837532,-0.7841052,-0.78463304,-0.78419316,-0.7824335,-0.780586,-0.77873844,-0.77671486,-0.77601105,-0.77671486,-0.7759231,-0.77425146,-0.77398753,-0.77521926,-0.77680284,-0.7777706,-0.7777706,-0.77785856,-0.77794653,-0.77794653,-0.77829856,-0.7775946,-0.7759231,-0.7749553,-0.77530724,-0.77557117,-0.77680284,-0.7796182,-0.78120184,-0.78111386,-0.7809379,-0.78120184,-0.78120184,-0.7809379,-0.7809379,-0.7809379,-0.78076196,-0.780674,-0.780586,-0.780498,-0.78041005,-0.7801461,-0.7800581,-0.7801461,-0.7800581,-0.77988213,-0.7796182,-0.7791783,-0.77944225,-0.77988213,-0.7793543,-0.77865046,-0.77900237,-0.7795302,-0.7795302,-0.77979416,-0.7803221,-0.7801461,-0.7796182,-0.7795302,-0.7796182,-0.77988213,-0.7803221,-0.780674,-0.780674,-0.780674,-0.780674,-0.780498,-0.7803221,-0.7802341,-0.77944225,-0.7772427,-0.7753952,-0.77504325,-0.77565914,-0.77645093,-0.77715474,-0.77785856,-0.77794653,-0.77794653,-0.7789144,-0.7789144,-0.77750665,-0.7765389,-0.77565914,-0.77398753,-0.77310777,-0.7730198,-0.77275586,-0.7726679,-0.7734597,-0.77460337,-0.7765389,-0.77865046,-0.78076196,-0.7828734,-0.7837532,-0.78331333,-0.78269744,-0.7820816,-0.7816417,-0.7824335,-0.78331333,-0.78260946,-0.7817297,-0.78234553,-0.78331333,-0.7832253,-0.78260946,-0.7813778,-0.7797062,-0.7777706,-0.77433944,-0.7729318,-0.7754832,-0.7788264,-0.7803221,-0.7793543,-0.7768908,-0.7765389,-0.7792663,-0.78260946,-0.784809,-0.78560084,-0.7860407,-0.7861287,-0.7860407,-0.7862167,-0.78630465,-0.7862167,-0.7861287,-0.78595275,-0.7858648,-0.7860407,-0.7861287,-0.78595275,-0.7858648,-0.7860407,-0.7862167,-0.7862167,-0.7862167,-0.7860407,-0.7858648,-0.7857768,-0.7861287,-0.78630465,-0.7862167,-0.7862167,-0.7860407,-0.78595275,-0.7861287,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.78665656,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7861287,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7862167,-0.78595275,-0.78560084,-0.7840172,-0.78076196,-0.77794653,-0.77829856,-0.7795302,-0.77909034,-0.7773307,-0.77389956,-0.77082026,-0.77240384,-0.77680284,-0.7792663,-0.7817297,-0.7837532,-0.7841052,-0.7844571,-0.78454506,-0.7839292,-0.78357726,-0.7828734,-0.7825215,-0.78304935,-0.7834893,-0.7831373,-0.78296137,-0.7834013,-0.7841052,-0.7843691,-0.78331333,-0.7812898,-0.77909034,-0.7772427,-0.776275,-0.77671486,-0.7766269,-0.77530724,-0.77460337,-0.7754832,-0.7774187,-0.7784745,-0.7785625,-0.77873844,-0.77865046,-0.77829856,-0.7784745,-0.77785856,-0.77645093,-0.77557117,-0.7759231,-0.7766269,-0.7780345,-0.7803221,-0.78146577,-0.78111386,-0.7809379,-0.78111386,-0.78111386,-0.7809379,-0.7809379,-0.7810259,-0.78076196,-0.780586,-0.78041005,-0.7803221,-0.7802341,-0.7800581,-0.7799701,-0.7800581,-0.7799701,-0.77988213,-0.7796182,-0.7791783,-0.7793543,-0.7797062,-0.7792663,-0.77873844,-0.77909034,-0.77944225,-0.77944225,-0.7797062,-0.7802341,-0.7801461,-0.77979416,-0.7797062,-0.77979416,-0.7799701,-0.7803221,-0.780674,-0.78084993,-0.78076196,-0.78076196,-0.780674,-0.780498,-0.78041005,-0.77988213,-0.7780345,-0.776187,-0.7757471,-0.77636296,-0.77706677,-0.7776826,-0.77794653,-0.77785856,-0.77794653,-0.77900237,-0.7795302,-0.77821046,-0.7769788,-0.7759231,-0.77460337,-0.77389956,-0.7736356,-0.7732837,-0.7737236,-0.7747793,-0.77601105,-0.77794653,-0.7803221,-0.7824335,-0.7834893,-0.78357726,-0.7831373,-0.78269744,-0.7820816,-0.78225756,-0.7834893,-0.7837532,-0.78260946,-0.78190565,-0.7821696,-0.78296137,-0.78304935,-0.78304935,-0.78234553,-0.7803221,-0.77865046,-0.7757471,-0.77231586,-0.77310777,-0.7766269,-0.7789144,-0.7791783,-0.7788264,-0.7793543,-0.7803221,-0.7817297,-0.7839292,-0.78524894,-0.78595275,-0.78630465,-0.7862167,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.7860407,-0.7861287,-0.7862167,-0.7862167,-0.7861287,-0.7860407,-0.7861287,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.7861287,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.78595275,-0.78595275,-0.7862167,-0.78630465,-0.7862167,-0.7861287,-0.7862167,-0.78630465,-0.7863926,-0.78630465,-0.7862167,-0.78630465,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7861287,-0.7857768,-0.78489697,-0.78234553,-0.77900237,-0.77750665,-0.77838653,-0.77873844,-0.77794653,-0.776099,-0.771876,-0.7700284,-0.7740755,-0.77838653,-0.7801461,-0.78234553,-0.7839292,-0.7840172,-0.78366524,-0.78296137,-0.7832253,-0.78366524,-0.7827854,-0.78225756,-0.78296137,-0.78304935,-0.78234553,-0.78225756,-0.7825215,-0.7832253,-0.7838412,-0.78366524,-0.78269744,-0.780674,-0.77838653,-0.7773307,-0.7772427,-0.77706677,-0.77636296,-0.77565914,-0.77601105,-0.7777706,-0.7789144,-0.77909034,-0.7796182,-0.7792663,-0.7784745,-0.77838653,-0.77794653,-0.7768908,-0.776187,-0.7766269,-0.7775946,-0.77909034,-0.7809379,-0.7816417,-0.78120184,-0.7809379,-0.7809379,-0.7810259,-0.7810259,-0.78111386,-0.7809379,-0.780674,-0.780498,-0.7802341,-0.7801461,-0.7799701,-0.77988213,-0.7799701,-0.7800581,-0.7800581,-0.77988213,-0.7796182,-0.7792663,-0.7793543,-0.7796182,-0.7791783,-0.77873844,-0.77909034,-0.77944225,-0.7795302,-0.7797062,-0.7800581,-0.7799701,-0.77979416,-0.77979416,-0.77988213,-0.7801461,-0.780498,-0.78084993,-0.7809379,-0.7809379,-0.78084993,-0.78084993,-0.780674,-0.780586,-0.7802341,-0.77873844,-0.77706677,-0.7765389,-0.77706677,-0.7777706,-0.7780345,-0.77794653,-0.77785856,-0.7780345,-0.7792663,-0.7801461,-0.7788264,-0.7773307,-0.776275,-0.77521926,-0.77460337,-0.7744274,-0.7744274,-0.77504325,-0.776099,-0.77785856,-0.7799701,-0.7818177,-0.78296137,-0.7834013,-0.7832253,-0.78296137,-0.78260946,-0.78190565,-0.78234553,-0.7838412,-0.7837532,-0.78269744,-0.7819936,-0.78155375,-0.7818177,-0.78269744,-0.78357726,-0.78296137,-0.7813778,-0.780498,-0.7776826,-0.7725798,-0.7713481,-0.7747793,-0.77785856,-0.77900237,-0.77909034,-0.7784745,-0.7780345,-0.7797062,-0.78296137,-0.78489697,-0.7856888,-0.7861287,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.78595275,-0.7860407,-0.78630465,-0.78630465,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.78630465,-0.7861287,-0.78595275,-0.7854249,-0.78366524,-0.780498,-0.77794653,-0.7774187,-0.7776826,-0.77750665,-0.7768908,-0.7741635,-0.77020437,-0.7710842,-0.77645093,-0.77979416,-0.78120184,-0.78296137,-0.7839292,-0.7834013,-0.78225756,-0.7816417,-0.7825215,-0.7834893,-0.7828734,-0.78225756,-0.7827854,-0.78260946,-0.78190565,-0.78190565,-0.78190565,-0.78234553,-0.7832253,-0.7834893,-0.7832253,-0.7821696,-0.7801461,-0.77873844,-0.77829856,-0.7777706,-0.77715474,-0.7768908,-0.7769788,-0.77794653,-0.7789144,-0.77944225,-0.7802341,-0.77988213,-0.7788264,-0.7784745,-0.77821046,-0.7776826,-0.7772427,-0.77750665,-0.77829856,-0.77944225,-0.7810259,-0.7817297,-0.7813778,-0.78111386,-0.78111386,-0.7809379,-0.7810259,-0.78120184,-0.7809379,-0.780498,-0.7803221,-0.7801461,-0.7799701,-0.77988213,-0.7799701,-0.7799701,-0.7799701,-0.7799701,-0.77979416,-0.7795302,-0.7792663,-0.77944225,-0.7796182,-0.7791783,-0.7788264,-0.7791783,-0.7795302,-0.7795302,-0.77979416,-0.7800581,-0.77988213,-0.7795302,-0.7795302,-0.77979416,-0.7801461,-0.780674,-0.7809379,-0.7809379,-0.7810259,-0.78111386,-0.78120184,-0.78111386,-0.7809379,-0.780498,-0.7792663,-0.77785856,-0.7774187,-0.7780345,-0.7784745,-0.77821046,-0.7780345,-0.77794653,-0.7781225,-0.7793543,-0.780498,-0.7793543,-0.7777706,-0.77645093,-0.7757471,-0.77557117,-0.7754832,-0.7759231,-0.77680284,-0.77785856,-0.77988213,-0.78190565,-0.7827854,-0.78296137,-0.7831373,-0.78296137,-0.7827854,-0.7825215,-0.7817297,-0.7820816,-0.7834893,-0.78331333,-0.78234553,-0.7818177,-0.7810259,-0.780674,-0.78190565,-0.7834013,-0.78304935,-0.7820816,-0.7818177,-0.7796182,-0.77389956,-0.77055633,-0.77310777,-0.77671486,-0.77829856,-0.7791783,-0.77821046,-0.776275,-0.7777706,-0.7820816,-0.78454506,-0.78551286,-0.7860407,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.78630465,-0.7862167,-0.7861287,-0.7862167,-0.7862167,-0.7861287,-0.7861287,-0.7862167,-0.78630465,-0.7863926,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.78630465,-0.7861287,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7860407,-0.7857768,-0.78489697,-0.7820816,-0.7784745,-0.7773307,-0.77785856,-0.77706677,-0.7766269,-0.7757471,-0.771788,-0.76985246,-0.7734597,-0.77865046,-0.78076196,-0.78190565,-0.78304935,-0.78331333,-0.78260946,-0.78225756,-0.78225756,-0.7827854,-0.7834893,-0.7831373,-0.7825215,-0.78260946,-0.78225756,-0.78155375,-0.7812898,-0.78120184,-0.78155375,-0.7824335,-0.78296137,-0.7828734,-0.7824335,-0.78146577,-0.7801461,-0.7795302,-0.77865046,-0.7773307,-0.77715474,-0.7776826,-0.7781225,-0.77865046,-0.7795302,-0.780674,-0.780586,-0.7795302,-0.77900237,-0.77865046,-0.7785625,-0.7784745,-0.7784745,-0.7789144,-0.7797062,-0.7810259,-0.7818177,-0.78155375,-0.7812898,-0.78120184,-0.7810259,-0.78111386,-0.78120184,-0.7809379,-0.78041005,-0.7801461,-0.7800581,-0.77988213,-0.77988213,-0.7799701,-0.7799701,-0.77988213,-0.77979416,-0.7797062,-0.7795302,-0.7793543,-0.77944225,-0.7795302,-0.7791783,-0.7789144,-0.7791783,-0.7795302,-0.77979416,-0.7799701,-0.7801461,-0.7797062,-0.7793543,-0.7793543,-0.7797062,-0.7801461,-0.780674,-0.78084993,-0.78076196,-0.7809379,-0.78146577,-0.7817297,-0.78155375,-0.7813778,-0.780674,-0.77944225,-0.7784745,-0.77829856,-0.77873844,-0.7788264,-0.7784745,-0.77838653,-0.7784745,-0.77865046,-0.7796182,-0.7802341,-0.77900237,-0.7772427,-0.776099,-0.7759231,-0.776187,-0.7766269,-0.7776826,-0.7789144,-0.7803221,-0.7820816,-0.7831373,-0.7831373,-0.7827854,-0.78260946,-0.7825215,-0.78260946,-0.78260946,-0.78190565,-0.7818177,-0.7828734,-0.78296137,-0.7824335,-0.7825215,-0.7820816,-0.7813778,-0.7819936,-0.7828734,-0.78269744,-0.7821696,-0.7819936,-0.780586,-0.77601105,-0.7710842,-0.7713481,-0.7749553,-0.77680284,-0.77829856,-0.7781225,-0.77565914,-0.77636296,-0.78076196,-0.7838412,-0.78516096,-0.7858648,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7861287,-0.7858648,-0.7853369,-0.7838412,-0.7803221,-0.7766269,-0.776187,-0.7769788,-0.776275,-0.776187,-0.7741635,-0.76985246,-0.77055633,-0.77565914,-0.7800581,-0.78146577,-0.7821696,-0.78296137,-0.78296137,-0.7827854,-0.7832253,-0.7834013,-0.7831373,-0.7834893,-0.78331333,-0.78269744,-0.78225756,-0.7812898,-0.7803221,-0.780498,-0.780586,-0.780674,-0.7813778,-0.7820816,-0.7820816,-0.7818177,-0.78155375,-0.7810259,-0.7801461,-0.77900237,-0.77750665,-0.7769788,-0.77794653,-0.77865046,-0.7788264,-0.7797062,-0.7810259,-0.78111386,-0.7802341,-0.7795302,-0.7793543,-0.7793543,-0.7793543,-0.7793543,-0.7796182,-0.7801461,-0.78120184,-0.78190565,-0.7817297,-0.7813778,-0.78120184,-0.7810259,-0.7812898,-0.78120184,-0.78084993,-0.78041005,-0.7802341,-0.7799701,-0.77988213,-0.7799701,-0.7800581,-0.7799701,-0.77988213,-0.77988213,-0.7797062,-0.77944225,-0.7793543,-0.7795302,-0.77944225,-0.7791783,-0.77900237,-0.77909034,-0.7795302,-0.7799701,-0.7799701,-0.77988213,-0.7795302,-0.7791783,-0.7792663,-0.7795302,-0.7799701,-0.780586,-0.78084993,-0.780674,-0.78084993,-0.7813778,-0.7818177,-0.7816417,-0.7813778,-0.780586,-0.77944225,-0.77900237,-0.77900237,-0.7791783,-0.77900237,-0.77873844,-0.7789144,-0.7788264,-0.7788264,-0.77979416,-0.7802341,-0.77873844,-0.77680284,-0.7759231,-0.7759231,-0.77636296,-0.77750665,-0.7793543,-0.7809379,-0.7824335,-0.78366524,-0.7837532,-0.78304935,-0.78225756,-0.7818177,-0.7818177,-0.7821696,-0.7825215,-0.78190565,-0.78155375,-0.7824335,-0.7828734,-0.78296137,-0.7834893,-0.78331333,-0.78269744,-0.7825215,-0.78234553,-0.7819936,-0.7819936,-0.7819936,-0.78146577,-0.77838653,-0.7729318,-0.7702924,-0.7730198,-0.7753952,-0.77671486,-0.77715474,-0.77530724,-0.77521926,-0.7791783,-0.78296137,-0.784721,-0.78560084,-0.7860407,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7860407,-0.78560084,-0.784721,-0.7824335,-0.7784745,-0.77557117,-0.7753952,-0.77565914,-0.77565914,-0.77530724,-0.7721399,-0.76950055,-0.7721399,-0.7773307,-0.78111386,-0.7820816,-0.78269744,-0.78331333,-0.7834013,-0.7834893,-0.7840172,-0.7839292,-0.7834013,-0.78366524,-0.7834893,-0.7828734,-0.7821696,-0.780674,-0.77988213,-0.78041005,-0.780498,-0.77988213,-0.7800581,-0.78084993,-0.78111386,-0.7809379,-0.78120184,-0.7812898,-0.780498,-0.7793543,-0.77838653,-0.7775946,-0.77794653,-0.7789144,-0.7792663,-0.7799701,-0.78111386,-0.78120184,-0.78041005,-0.77979416,-0.7797062,-0.7797062,-0.7797062,-0.77979416,-0.7799701,-0.780586,-0.78146577,-0.78190565,-0.7818177,-0.78155375,-0.78120184,-0.7810259,-0.7812898,-0.78120184,-0.78084993,-0.780498,-0.7803221,-0.7801461,-0.7800581,-0.7801461,-0.7802341,-0.7800581,-0.77979416,-0.77979416,-0.7796182,-0.7792663,-0.7791783,-0.7795302,-0.7793543,-0.77909034,-0.77909034,-0.77909034,-0.77944225,-0.77988213,-0.77988213,-0.7797062,-0.7795302,-0.7793543,-0.7793543,-0.77944225,-0.77979416,-0.78041005,-0.7810259,-0.7809379,-0.78076196,-0.7810259,-0.78111386,-0.78111386,-0.7810259,-0.780498,-0.77979416,-0.7795302,-0.7797062,-0.7795302,-0.77909034,-0.7793543,-0.7796182,-0.7789144,-0.77900237,-0.7801461,-0.780586,-0.7788264,-0.7768908,-0.77645093,-0.77680284,-0.7773307,-0.77873844,-0.780586,-0.7819936,-0.78304935,-0.78366524,-0.7834893,-0.78260946,-0.78146577,-0.78084993,-0.78111386,-0.7818177,-0.78225756,-0.7816417,-0.78111386,-0.7817297,-0.78260946,-0.78331333,-0.7841052,-0.7839292,-0.7834013,-0.78269744,-0.78155375,-0.7810259,-0.7813778,-0.7818177,-0.78146577,-0.7796182,-0.77530724,-0.7706443,-0.7714361,-0.77425146,-0.77557117,-0.776187,-0.7751312,-0.77433944,-0.7776826,-0.7820816,-0.78428113,-0.7853369,-0.7858648,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.7858648,-0.78524894,-0.7837532,-0.78076196,-0.7769788,-0.7749553,-0.7747793,-0.77469134,-0.7751312,-0.7736356,-0.7703804,-0.7702924,-0.7741635,-0.7789144,-0.7819936,-0.78260946,-0.7831373,-0.78366524,-0.7838412,-0.78419316,-0.78428113,-0.78357726,-0.78331333,-0.7838412,-0.7839292,-0.7834893,-0.78260946,-0.7813778,-0.780674,-0.78076196,-0.780498,-0.7796182,-0.7792663,-0.7795302,-0.7799701,-0.7802341,-0.780586,-0.78120184,-0.7810259,-0.7801461,-0.77944225,-0.7785625,-0.7780345,-0.77873844,-0.7797062,-0.780586,-0.7813778,-0.78120184,-0.780498,-0.7801461,-0.77979416,-0.7795302,-0.7795302,-0.7797062,-0.7799701,-0.780674,-0.7812898,-0.7817297,-0.7818177,-0.78155375,-0.78120184,-0.78111386,-0.7812898,-0.78120184,-0.78084993,-0.780498,-0.7803221,-0.7802341,-0.7802341,-0.7803221,-0.7803221,-0.7800581,-0.77979416,-0.77979416,-0.7796182,-0.7791783,-0.77909034,-0.77944225,-0.7792663,-0.7788264,-0.7788264,-0.77900237,-0.7793543,-0.7797062,-0.7797062,-0.77979416,-0.7797062,-0.77944225,-0.7792663,-0.7793543,-0.7796182,-0.7801461,-0.78076196,-0.7809379,-0.78084993,-0.7809379,-0.78084993,-0.78076196,-0.78076196,-0.78041005,-0.7801461,-0.7800581,-0.7801461,-0.77979416,-0.7795302,-0.7799701,-0.7801461,-0.7792663,-0.77944225,-0.780586,-0.780586,-0.77873844,-0.7773307,-0.7774187,-0.7781225,-0.7789144,-0.7801461,-0.78120184,-0.7819936,-0.7825215,-0.78260946,-0.7820816,-0.78111386,-0.7803221,-0.7801461,-0.78076196,-0.78155375,-0.7819936,-0.78146577,-0.780586,-0.7809379,-0.78234553,-0.78357726,-0.78428113,-0.78419316,-0.7839292,-0.7832253,-0.7818177,-0.78111386,-0.78120184,-0.78155375,-0.78111386,-0.7800581,-0.7774187,-0.7722279,-0.77046835,-0.77319574,-0.7749553,-0.7753952,-0.7751312,-0.7738116,-0.77601105,-0.78084993,-0.7837532,-0.78498495,-0.7856888,-0.7862167,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7862167,-0.7860407,-0.7856888,-0.784721,-0.78260946,-0.7791783,-0.77565914,-0.77433944,-0.77389956,-0.7740755,-0.77433944,-0.77196395,-0.76950055,-0.77117217,-0.7759231,-0.7803221,-0.78225756,-0.78269744,-0.78331333,-0.7839292,-0.7843691,-0.7844571,-0.7837532,-0.78304935,-0.78331333,-0.7838412,-0.7838412,-0.78357726,-0.78304935,-0.7821696,-0.7812898,-0.78076196,-0.78041005,-0.7795302,-0.7789144,-0.77900237,-0.7792663,-0.7796182,-0.7799701,-0.780586,-0.78111386,-0.78084993,-0.7803221,-0.77944225,-0.7784745,-0.77865046,-0.7799701,-0.78111386,-0.7816417,-0.7813778,-0.78076196,-0.78041005,-0.7799701,-0.7796182,-0.7797062,-0.77979416,-0.7800581,-0.78076196,-0.78120184,-0.78146577,-0.7817297,-0.78155375,-0.7812898,-0.78120184,-0.7813778,-0.7813778,-0.7809379,-0.780498,-0.7803221,-0.7801461,-0.7800581,-0.7802341,-0.7803221,-0.7801461,-0.77979416,-0.7797062,-0.7796182,-0.7791783,-0.77900237,-0.7793543,-0.77909034,-0.77865046,-0.77873844,-0.7789144,-0.7792663,-0.7797062,-0.7797062,-0.7797062,-0.7796182,-0.7793543,-0.7792663,-0.7792663,-0.7795302,-0.7799701,-0.78041005,-0.780586,-0.78084993,-0.7809379,-0.78076196,-0.78076196,-0.780674,-0.780498,-0.7803221,-0.78041005,-0.7803221,-0.77988213,-0.7797062,-0.7800581,-0.7800581,-0.7797062,-0.7800581,-0.78084993,-0.780586,-0.7789144,-0.7780345,-0.7785625,-0.7795302,-0.7803221,-0.7810259,-0.7813778,-0.7818177,-0.7820816,-0.7818177,-0.7809379,-0.7801461,-0.7796182,-0.7797062,-0.780586,-0.7813778,-0.7817297,-0.78120184,-0.78041005,-0.780586,-0.78234553,-0.7838412,-0.7844571,-0.78428113,-0.7840172,-0.7838412,-0.7831373,-0.7824335,-0.7821696,-0.7820816,-0.7818177,-0.78111386,-0.7795302,-0.7748673,-0.7706443,-0.7722279,-0.7751312,-0.7753952,-0.77504325,-0.77354765,-0.7745154,-0.7795302,-0.78304935,-0.78454506,-0.78551286,-0.7861287,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7860407,-0.78560084,-0.78428113,-0.78146577,-0.7775946,-0.7748673,-0.7745154,-0.7745154,-0.7748673,-0.7738116,-0.77090824,-0.76985246,-0.7729318,-0.7776826,-0.78120184,-0.7824335,-0.7831373,-0.7839292,-0.7843691,-0.7844571,-0.7840172,-0.7831373,-0.78296137,-0.78357726,-0.7838412,-0.7834013,-0.78296137,-0.78296137,-0.78260946,-0.78155375,-0.78084993,-0.7801461,-0.7792663,-0.77909034,-0.7792663,-0.77944225,-0.77979416,-0.77979416,-0.77988213,-0.780498,-0.7810259,-0.78111386,-0.78041005,-0.7791783,-0.77873844,-0.77979416,-0.7813778,-0.7818177,-0.7813778,-0.7809379,-0.780586,-0.7802341,-0.77988213,-0.77988213,-0.7799701,-0.7802341,-0.7809379,-0.7812898,-0.7813778,-0.78155375,-0.78146577,-0.78120184,-0.78111386,-0.7812898,-0.78146577,-0.7810259,-0.78041005,-0.7801461,-0.77988213,-0.77979416,-0.7800581,-0.7803221,-0.7800581,-0.7797062,-0.7796182,-0.7795302,-0.77900237,-0.7789144,-0.7792663,-0.77909034,-0.7785625,-0.77873844,-0.77900237,-0.7793543,-0.7797062,-0.7797062,-0.7796182,-0.7795302,-0.7793543,-0.7793543,-0.7792663,-0.77944225,-0.77979416,-0.7801461,-0.780498,-0.78076196,-0.78084993,-0.78084993,-0.78084993,-0.780674,-0.780498,-0.78041005,-0.780498,-0.7803221,-0.77988213,-0.77979416,-0.7801461,-0.7802341,-0.7802341,-0.780674,-0.78120184,-0.780674,-0.7795302,-0.7791783,-0.77988213,-0.78076196,-0.78111386,-0.7812898,-0.78155375,-0.7819936,-0.7819936,-0.7812898,-0.78041005,-0.7799701,-0.7795302,-0.7797062,-0.780498,-0.78111386,-0.78146577,-0.7812898,-0.780498,-0.780674,-0.7824335,-0.7839292,-0.7843691,-0.78428113,-0.7841052,-0.7840172,-0.7839292,-0.7832253,-0.78260946,-0.78260946,-0.7825215,-0.7817297,-0.780586,-0.77750665,-0.7721399,-0.7713481,-0.7748673,-0.7758351,-0.7749553,-0.7733717,-0.7734597,-0.77794653,-0.7821696,-0.7841052,-0.78524894,-0.7860407,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.78630465,-0.78630465,-0.7862167,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.78595275,-0.7853369,-0.78357726,-0.7801461,-0.77645093,-0.77433944,-0.77425146,-0.77530724,-0.77565914,-0.77284384,-0.7703804,-0.77126014,-0.7749553,-0.7791783,-0.78190565,-0.78260946,-0.78331333,-0.78428113,-0.78463304,-0.78419316,-0.78366524,-0.7834893,-0.7838412,-0.7841052,-0.7838412,-0.78331333,-0.7828734,-0.7827854,-0.7825215,-0.7816417,-0.78084993,-0.7801461,-0.77944225,-0.77909034,-0.7793543,-0.77988213,-0.7800581,-0.7797062,-0.7795302,-0.7800581,-0.78076196,-0.78120184,-0.78120184,-0.78041005,-0.77944225,-0.77988213,-0.7813778,-0.7819936,-0.78155375,-0.7810259,-0.78076196,-0.7802341,-0.77988213,-0.7799701,-0.7802341,-0.78041005,-0.78076196,-0.78111386,-0.78120184,-0.7813778,-0.7812898,-0.78120184,-0.78120184,-0.7812898,-0.7812898,-0.7809379,-0.78041005,-0.7801461,-0.77988213,-0.7797062,-0.7800581,-0.7803221,-0.7800581,-0.77979416,-0.7797062,-0.77944225,-0.7788264,-0.7785625,-0.7789144,-0.77909034,-0.77865046,-0.7785625,-0.7788264,-0.77944225,-0.7797062,-0.7796182,-0.7795302,-0.7795302,-0.77944225,-0.7795302,-0.7795302,-0.7795302,-0.77979416,-0.7801461,-0.780586,-0.78084993,-0.78084993,-0.78084993,-0.7809379,-0.780674,-0.78041005,-0.78041005,-0.780498,-0.7801461,-0.77988213,-0.7799701,-0.7802341,-0.780498,-0.780586,-0.7810259,-0.78146577,-0.78084993,-0.7801461,-0.7802341,-0.78084993,-0.7813778,-0.78146577,-0.7812898,-0.78155375,-0.7819936,-0.78190565,-0.78111386,-0.7802341,-0.77979416,-0.7796182,-0.77988213,-0.780674,-0.7812898,-0.78146577,-0.7812898,-0.780674,-0.7809379,-0.78269744,-0.7840172,-0.78428113,-0.78428113,-0.78419316,-0.7841052,-0.7841052,-0.7839292,-0.7834013,-0.78296137,-0.78296137,-0.7821696,-0.780674,-0.77873844,-0.77398753,-0.7709962,-0.7737236,-0.776099,-0.7751312,-0.77319574,-0.7725798,-0.77636296,-0.7812898,-0.7838412,-0.785073,-0.78595275,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7862167,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.78630465,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.7863926,-0.78630465,-0.7862167,-0.7860407,-0.78595275,-0.7856888,-0.78489697,-0.78234553,-0.77865046,-0.7753952,-0.77354765,-0.77389956,-0.77565914,-0.77504325,-0.7713481,-0.7703804,-0.77284384,-0.7768908,-0.78076196,-0.7824335,-0.7827854,-0.78357726,-0.7843691,-0.7843691,-0.7838412,-0.7834013,-0.78366524,-0.7843691,-0.78419316,-0.7837532,-0.78331333,-0.7828734,-0.7825215,-0.7821696,-0.78146577,-0.78041005,-0.77944225,-0.77873844,-0.77865046,-0.77909034,-0.7797062,-0.7797062,-0.77944225,-0.7795302,-0.7799701,-0.7803221,-0.780674,-0.78120184,-0.7812898,-0.78041005,-0.7801461,-0.78120184,-0.7819936,-0.7817297,-0.7812898,-0.7809379,-0.7803221,-0.77988213,-0.7800581,-0.78041005,-0.780498,-0.780674,-0.78111386,-0.7812898,-0.78146577,-0.7812898,-0.78111386,-0.78111386,-0.78111386,-0.7810259,-0.780674,-0.7802341,-0.77988213,-0.7796182,-0.7796182,-0.7799701,-0.7802341,-0.7800581,-0.77988213,-0.7797062,-0.7792663,-0.77865046,-0.77829856,-0.77873844,-0.77909034,-0.77873844,-0.77838653,-0.77865046,-0.7792663,-0.7797062,-0.7795302,-0.7795302,-0.7796182,-0.77944225,-0.7795302,-0.7796182,-0.7795302,-0.77979416,-0.7802341,-0.78076196,-0.7809379,-0.78076196,-0.78076196,-0.78076196,-0.780586,-0.78041005,-0.780586,-0.780586,-0.7801461,-0.77988213,-0.77988213,-0.7802341,-0.780674,-0.78076196,-0.7812898,-0.7817297,-0.78111386,-0.78076196,-0.7809379,-0.7812898,-0.7816417,-0.78155375,-0.7812898,-0.7813778,-0.7818177,-0.7817297,-0.7810259,-0.7802341,-0.77979416,-0.7797062,-0.7799701,-0.78084993,-0.7816417,-0.78155375,-0.7810259,-0.7809379,-0.78190565,-0.78331333,-0.78428113,-0.7843691,-0.78419316,-0.7841052,-0.7841052,-0.7841052,-0.78419316,-0.7841052,-0.78366524,-0.78304935,-0.7820816,-0.7801461,-0.7785625,-0.77565914,-0.771788,-0.7724918,-0.7758351,-0.7751312,-0.7726679,-0.771876,-0.77521926,-0.78041005,-0.78357726,-0.78489697,-0.7857768,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7864806,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7862167,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.78595275,-0.7854249,-0.78419316,-0.78120184,-0.77715474,-0.77398753,-0.77240384,-0.7733717,-0.7751312,-0.77354765,-0.77020437,-0.77082026,-0.7747793,-0.77909034,-0.7813778,-0.7819936,-0.78296137,-0.7840172,-0.7841052,-0.7837532,-0.7834893,-0.7832253,-0.78366524,-0.7840172,-0.78331333,-0.78304935,-0.7827854,-0.7820816,-0.7817297,-0.78146577,-0.780586,-0.77909034,-0.7777706,-0.7777706,-0.77873844,-0.7792663,-0.7793543,-0.77909034,-0.77909034,-0.77944225,-0.77979416,-0.7799701,-0.7802341,-0.78084993,-0.7813778,-0.78111386,-0.780674,-0.78120184,-0.7818177,-0.7818177,-0.7813778,-0.7810259,-0.780498,-0.7800581,-0.7800581,-0.78041005,-0.78076196,-0.7809379,-0.78111386,-0.7813778,-0.78155375,-0.78111386,-0.78084993,-0.7809379,-0.7810259,-0.78084993,-0.78041005,-0.7799701,-0.7795302,-0.7792663,-0.77944225,-0.77979416,-0.7799701,-0.7799701,-0.77979416,-0.7795302,-0.77909034,-0.7785625,-0.77838653,-0.7789144,-0.7792663,-0.7788264,-0.77829856,-0.77838653,-0.7789144,-0.7793543,-0.7793543,-0.7795302,-0.7797062,-0.7795302,-0.77944225,-0.7795302,-0.7796182,-0.7797062,-0.7802341,-0.78084993,-0.7810259,-0.78076196,-0.78076196,-0.780586,-0.78041005,-0.780498,-0.780586,-0.780498,-0.7801461,-0.77988213,-0.77988213,-0.7803221,-0.78076196,-0.7810259,-0.78146577,-0.7816417,-0.7813778,-0.7812898,-0.7813778,-0.78146577,-0.78155375,-0.78155375,-0.7812898,-0.7813778,-0.7818177,-0.7818177,-0.7810259,-0.7803221,-0.7799701,-0.7796182,-0.77979416,-0.78076196,-0.7817297,-0.7817297,-0.7813778,-0.7816417,-0.78260946,-0.7837532,-0.7844571,-0.78463304,-0.7843691,-0.7841052,-0.7841052,-0.78428113,-0.78428113,-0.78419316,-0.7841052,-0.7834893,-0.7824335,-0.780586,-0.77838653,-0.776187,-0.7726679,-0.771788,-0.7749553,-0.77460337,-0.77161205,-0.77117217,-0.77433944,-0.7791783,-0.7828734,-0.78454506,-0.78551286,-0.7861287,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7862167,-0.7862167,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7862167,-0.7857768,-0.785073,-0.78331333,-0.77979416,-0.77565914,-0.77284384,-0.77196395,-0.7733717,-0.77425146,-0.771788,-0.76994044,-0.7721399,-0.77645093,-0.7796182,-0.78076196,-0.7818177,-0.7834893,-0.7840172,-0.7834013,-0.78260946,-0.7824335,-0.78260946,-0.78304935,-0.78296137,-0.78269744,-0.78296137,-0.78260946,-0.7813778,-0.78041005,-0.77988213,-0.7791783,-0.77838653,-0.77794653,-0.7785625,-0.7792663,-0.7795302,-0.7796182,-0.77944225,-0.7793543,-0.7796182,-0.77979416,-0.77979416,-0.7799701,-0.7803221,-0.78084993,-0.78120184,-0.78111386,-0.78111386,-0.78155375,-0.7817297,-0.7813778,-0.7809379,-0.780586,-0.7800581,-0.7800581,-0.780498,-0.78084993,-0.78111386,-0.78120184,-0.78146577,-0.7816417,-0.78120184,-0.78084993,-0.7809379,-0.7810259,-0.780674,-0.7800581,-0.7797062,-0.7795302,-0.7793543,-0.7793543,-0.7795302,-0.7797062,-0.77979416,-0.7796182,-0.7792663,-0.7788264,-0.7784745,-0.7785625,-0.7791783,-0.7793543,-0.77873844,-0.7781225,-0.77821046,-0.77865046,-0.77900237,-0.7791783,-0.7791783,-0.77944225,-0.7793543,-0.7791783,-0.7793543,-0.7795302,-0.7797062,-0.7802341,-0.78084993,-0.7810259,-0.7809379,-0.780674,-0.7803221,-0.7802341,-0.78041005,-0.78041005,-0.7803221,-0.7802341,-0.7800581,-0.7800581,-0.780586,-0.7809379,-0.78111386,-0.78146577,-0.78155375,-0.78146577,-0.78155375,-0.78146577,-0.78146577,-0.7816417,-0.78155375,-0.7812898,-0.7813778,-0.7817297,-0.7817297,-0.7813778,-0.7809379,-0.780586,-0.77988213,-0.7796182,-0.780498,-0.7816417,-0.7819936,-0.7818177,-0.7820816,-0.7828734,-0.78366524,-0.7841052,-0.7843691,-0.78419316,-0.7839292,-0.7839292,-0.78419316,-0.78428113,-0.7841052,-0.7841052,-0.78366524,-0.78296137,-0.78190565,-0.77944225,-0.77645093,-0.77319574,-0.7715241,-0.77425146,-0.7745154,-0.77126014,-0.7706443,-0.7734597,-0.7780345,-0.7825215,-0.78454506,-0.7854249,-0.7860407,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.78630465,-0.7862167,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.78630465,-0.7862167,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.7861287,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.7856888,-0.784721,-0.7824335,-0.77838653,-0.77460337,-0.77231586,-0.7721399,-0.7736356,-0.7732837,-0.7703804,-0.7706443,-0.7740755,-0.77715474,-0.7791783,-0.78111386,-0.7827854,-0.7837532,-0.7837532,-0.7827854,-0.78146577,-0.78076196,-0.7809379,-0.78155375,-0.7819936,-0.78296137,-0.78331333,-0.7819936,-0.7801461,-0.7788264,-0.77821046,-0.7785625,-0.7792663,-0.77979416,-0.7799701,-0.77979416,-0.7802341,-0.7810259,-0.7810259,-0.780586,-0.780586,-0.78041005,-0.77979416,-0.7797062,-0.7801461,-0.78076196,-0.78120184,-0.7812898,-0.78120184,-0.78146577,-0.7817297,-0.78155375,-0.78120184,-0.780674,-0.7800581,-0.7800581,-0.780498,-0.78076196,-0.7810259,-0.7812898,-0.78155375,-0.7817297,-0.7813778,-0.7809379,-0.78084993,-0.7809379,-0.780498,-0.7797062,-0.7792663,-0.7793543,-0.7791783,-0.77900237,-0.77909034,-0.77944225,-0.7796182,-0.77944225,-0.77900237,-0.7785625,-0.77821046,-0.77865046,-0.7793543,-0.7792663,-0.77865046,-0.77829856,-0.77829856,-0.7785625,-0.7789144,-0.7789144,-0.7789144,-0.7791783,-0.7791783,-0.77909034,-0.7792663,-0.77944225,-0.77979416,-0.78041005,-0.78084993,-0.7810259,-0.7810259,-0.780674,-0.7802341,-0.7803221,-0.780498,-0.7803221,-0.7802341,-0.7803221,-0.7802341,-0.78041005,-0.78084993,-0.7810259,-0.7812898,-0.78146577,-0.78146577,-0.78146577,-0.78155375,-0.78155375,-0.7817297,-0.7817297,-0.78146577,-0.7812898,-0.7813778,-0.7816417,-0.7818177,-0.7817297,-0.78155375,-0.78146577,-0.78111386,-0.780498,-0.78041005,-0.78111386,-0.78155375,-0.7817297,-0.78234553,-0.7828734,-0.7831373,-0.7834013,-0.78357726,-0.7834013,-0.78296137,-0.78304935,-0.7834893,-0.78366524,-0.78357726,-0.7837532,-0.78366524,-0.78296137,-0.7827854,-0.7813778,-0.7780345,-0.7740755,-0.7715241,-0.7736356,-0.7748673,-0.77205193,-0.7702924,-0.77231586,-0.7768908,-0.7819936,-0.7844571,-0.7854249,-0.7860407,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7862167,-0.7861287,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7860407,-0.78560084,-0.7843691,-0.78146577,-0.77715474,-0.7738116,-0.77205193,-0.7724918,-0.7738116,-0.7721399,-0.76985246,-0.7721399,-0.7757471,-0.77785856,-0.77979416,-0.7821696,-0.78357726,-0.7838412,-0.7834893,-0.78296137,-0.78234553,-0.78120184,-0.78076196,-0.7813778,-0.7824335,-0.78366524,-0.7832253,-0.780674,-0.7781225,-0.77715474,-0.7777706,-0.7791783,-0.7803221,-0.7809379,-0.7809379,-0.7810259,-0.78155375,-0.7821696,-0.78225756,-0.7818177,-0.78155375,-0.7812898,-0.78084993,-0.78076196,-0.7809379,-0.78120184,-0.78146577,-0.78146577,-0.7813778,-0.7813778,-0.78146577,-0.78146577,-0.78120184,-0.78084993,-0.7803221,-0.7802341,-0.78041005,-0.780674,-0.7810259,-0.7813778,-0.7816417,-0.7817297,-0.78146577,-0.7809379,-0.78084993,-0.78084993,-0.7802341,-0.7793543,-0.77873844,-0.77873844,-0.77865046,-0.7785625,-0.77873844,-0.7791783,-0.7795302,-0.77944225,-0.7789144,-0.77838653,-0.7781225,-0.77900237,-0.7797062,-0.7792663,-0.77865046,-0.77838653,-0.7781225,-0.77838653,-0.7789144,-0.7789144,-0.7789144,-0.77909034,-0.77909034,-0.77900237,-0.7791783,-0.77944225,-0.77988213,-0.780498,-0.7809379,-0.7810259,-0.7810259,-0.78076196,-0.7803221,-0.7802341,-0.78041005,-0.7803221,-0.7803221,-0.78041005,-0.780498,-0.78076196,-0.7810259,-0.7810259,-0.78120184,-0.78146577,-0.7813778,-0.78146577,-0.7816417,-0.7817297,-0.7819936,-0.78190565,-0.78155375,-0.78155375,-0.78155375,-0.7816417,-0.7817297,-0.7816417,-0.7817297,-0.7819936,-0.7819936,-0.78155375,-0.78120184,-0.7810259,-0.7810259,-0.78120184,-0.78190565,-0.78269744,-0.78304935,-0.78331333,-0.7834893,-0.78331333,-0.7827854,-0.78260946,-0.78269744,-0.78260946,-0.78225756,-0.78269744,-0.7834893,-0.78366524,-0.7834013,-0.7821696,-0.77988213,-0.77645093,-0.77231586,-0.77284384,-0.77504325,-0.77310777,-0.7707323,-0.77231586,-0.77645093,-0.7812898,-0.7840172,-0.78524894,-0.7860407,-0.7862167,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7860407,-0.78595275,-0.7861287,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.78630465,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.7862167,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7862167,-0.78595275,-0.7853369,-0.7837532,-0.7801461,-0.7759231,-0.77284384,-0.771876,-0.7736356,-0.77398753,-0.77126014,-0.7702924,-0.7736356,-0.7769788,-0.77900237,-0.78111386,-0.7832253,-0.7840172,-0.7837532,-0.7834013,-0.78331333,-0.7831373,-0.7824335,-0.7824335,-0.7831373,-0.7838412,-0.7838412,-0.7820816,-0.7789144,-0.77715474,-0.77750665,-0.7788264,-0.7800581,-0.7810259,-0.7816417,-0.7820816,-0.78225756,-0.78234553,-0.78269744,-0.7827854,-0.78225756,-0.7820816,-0.7820816,-0.7819936,-0.7819936,-0.7818177,-0.78155375,-0.78155375,-0.78155375,-0.78146577,-0.7813778,-0.7812898,-0.7812898,-0.78111386,-0.78084993,-0.780498,-0.7803221,-0.78041005,-0.780498,-0.78084993,-0.78120184,-0.78146577,-0.7816417,-0.78146577,-0.78111386,-0.78084993,-0.780674,-0.7800581,-0.7793543,-0.7788264,-0.77865046,-0.77838653,-0.77829856,-0.77865046,-0.7791783,-0.7795302,-0.77944225,-0.7788264,-0.77829856,-0.77838653,-0.7796182,-0.7803221,-0.7795302,-0.77873844,-0.77829856,-0.7780345,-0.77838653,-0.77900237,-0.77909034,-0.7789144,-0.7789144,-0.77909034,-0.77900237,-0.77900237,-0.7791783,-0.77979416,-0.780498,-0.7809379,-0.7810259,-0.7810259,-0.78084993,-0.780498,-0.7802341,-0.7801461,-0.7803221,-0.780498,-0.780674,-0.780674,-0.78084993,-0.7810259,-0.7810259,-0.7812898,-0.7813778,-0.7812898,-0.7813778,-0.7816417,-0.7817297,-0.78190565,-0.78190565,-0.7818177,-0.78190565,-0.7818177,-0.7816417,-0.78155375,-0.7813778,-0.78155375,-0.78190565,-0.78190565,-0.7817297,-0.78155375,-0.7812898,-0.78111386,-0.78111386,-0.7817297,-0.7828734,-0.7834893,-0.7837532,-0.7837532,-0.78357726,-0.78331333,-0.7832253,-0.7828734,-0.7819936,-0.7809379,-0.780586,-0.78190565,-0.78357726,-0.7840172,-0.78260946,-0.78084993,-0.77900237,-0.7749553,-0.7732837,-0.77521926,-0.77398753,-0.7709962,-0.77240384,-0.77645093,-0.78076196,-0.78366524,-0.78516096,-0.7860407,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.78630465,-0.7864806,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.7863926,-0.78630465,-0.7861287,-0.7857768,-0.78498495,-0.7828734,-0.77900237,-0.7748673,-0.77196395,-0.7721399,-0.7745154,-0.77354765,-0.7707323,-0.7713481,-0.77504325,-0.77785856,-0.7802341,-0.78260946,-0.7841052,-0.78419316,-0.7834893,-0.78304935,-0.7834013,-0.78357726,-0.7832253,-0.7834893,-0.78419316,-0.78428113,-0.78296137,-0.7802341,-0.7777706,-0.77750665,-0.77838653,-0.7797062,-0.7813778,-0.78225756,-0.7825215,-0.7828734,-0.7828734,-0.7827854,-0.78304935,-0.7832253,-0.7827854,-0.7821696,-0.78190565,-0.7820816,-0.78234553,-0.7820816,-0.7817297,-0.7817297,-0.7817297,-0.7813778,-0.78111386,-0.7810259,-0.78111386,-0.78111386,-0.7809379,-0.780586,-0.7803221,-0.7803221,-0.78041005,-0.780586,-0.7809379,-0.78111386,-0.7813778,-0.78146577,-0.7812898,-0.7810259,-0.780674,-0.7800581,-0.77944225,-0.77909034,-0.7788264,-0.77865046,-0.7785625,-0.77873844,-0.7791783,-0.77944225,-0.7792663,-0.77865046,-0.77829856,-0.77900237,-0.78076196,-0.78120184,-0.7799701,-0.7788264,-0.77829856,-0.7781225,-0.7784745,-0.77900237,-0.7792663,-0.77909034,-0.77900237,-0.77909034,-0.77900237,-0.7788264,-0.77909034,-0.7797062,-0.780498,-0.78084993,-0.7810259,-0.78111386,-0.78084993,-0.780498,-0.7803221,-0.7803221,-0.7803221,-0.780586,-0.78084993,-0.7809379,-0.7810259,-0.78111386,-0.7810259,-0.78111386,-0.7812898,-0.7813778,-0.7813778,-0.7816417,-0.7818177,-0.7820816,-0.7819936,-0.78190565,-0.7819936,-0.78190565,-0.78146577,-0.78120184,-0.78120184,-0.78146577,-0.7816417,-0.78155375,-0.7813778,-0.78120184,-0.7810259,-0.7812898,-0.78155375,-0.7813778,-0.7818177,-0.78296137,-0.7838412,-0.7840172,-0.78366524,-0.7831373,-0.7832253,-0.7832253,-0.7824335,-0.78111386,-0.77988213,-0.78084993,-0.78304935,-0.78419316,-0.7834013,-0.7813778,-0.7797062,-0.7772427,-0.77469134,-0.77530724,-0.77460337,-0.7707323,-0.77117217,-0.77565914,-0.780498,-0.7834893,-0.785073,-0.7858648,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7862167,-0.7862167,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.78630465,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.78630465,-0.7860407,-0.7856888,-0.78463304,-0.78190565,-0.7777706,-0.7736356,-0.7713481,-0.77284384,-0.7747793,-0.7725798,-0.7709962,-0.7732837,-0.77671486,-0.77944225,-0.78190565,-0.78366524,-0.7843691,-0.7840172,-0.7831373,-0.7831373,-0.7838412,-0.7840172,-0.7838412,-0.78419316,-0.7844571,-0.7832253,-0.78041005,-0.77821046,-0.7775946,-0.7777706,-0.7785625,-0.78041005,-0.7820816,-0.78269744,-0.7827854,-0.78304935,-0.78304935,-0.7827854,-0.7828734,-0.7832253,-0.78331333,-0.7827854,-0.7820816,-0.7819936,-0.78225756,-0.7819936,-0.7816417,-0.7818177,-0.7818177,-0.7812898,-0.78076196,-0.780674,-0.7809379,-0.7810259,-0.7809379,-0.780674,-0.78041005,-0.7803221,-0.78041005,-0.780498,-0.780674,-0.7809379,-0.78111386,-0.7813778,-0.78120184,-0.7809379,-0.780674,-0.7801461,-0.7796182,-0.7792663,-0.77900237,-0.7788264,-0.7788264,-0.7788264,-0.7791783,-0.77944225,-0.7791783,-0.77865046,-0.7784745,-0.77988213,-0.7818177,-0.78190565,-0.780498,-0.77900237,-0.77821046,-0.7781225,-0.7784745,-0.77900237,-0.77944225,-0.7793543,-0.77909034,-0.77909034,-0.77900237,-0.7788264,-0.77909034,-0.7797062,-0.78041005,-0.7809379,-0.78111386,-0.7810259,-0.78076196,-0.780498,-0.78041005,-0.780498,-0.780498,-0.780498,-0.780674,-0.78084993,-0.7810259,-0.7809379,-0.780586,-0.780674,-0.7809379,-0.7812898,-0.78155375,-0.7817297,-0.7819936,-0.78234553,-0.78234553,-0.78225756,-0.78225756,-0.7819936,-0.78146577,-0.78111386,-0.7809379,-0.78120184,-0.7813778,-0.7813778,-0.7813778,-0.7812898,-0.7809379,-0.7812898,-0.7819936,-0.78155375,-0.780674,-0.7816417,-0.78331333,-0.7841052,-0.7839292,-0.78331333,-0.78304935,-0.7832253,-0.78296137,-0.78225756,-0.78155375,-0.7821696,-0.7834013,-0.7841052,-0.78357726,-0.78190565,-0.7797062,-0.7769788,-0.7744274,-0.7751312,-0.77521926,-0.77090824,-0.77020437,-0.77504325,-0.7802341,-0.7832253,-0.78489697,-0.7856888,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7864806,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.78630465,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7862167,-0.78595275,-0.78551286,-0.7840172,-0.780674,-0.776187,-0.77231586,-0.7715241,-0.77425146,-0.7749553,-0.7729318,-0.7733717,-0.77636296,-0.7791783,-0.7816417,-0.7834013,-0.78419316,-0.78419316,-0.78331333,-0.7827854,-0.7834893,-0.78419316,-0.78428113,-0.78428113,-0.78454506,-0.7841052,-0.7813778,-0.77838653,-0.77750665,-0.7777706,-0.77821046,-0.7795302,-0.78120184,-0.78225756,-0.78260946,-0.7827854,-0.7827854,-0.7825215,-0.78225756,-0.7825215,-0.78296137,-0.7832253,-0.7832253,-0.7828734,-0.7824335,-0.7821696,-0.78190565,-0.7816417,-0.78155375,-0.78146577,-0.7812898,-0.78084993,-0.780674,-0.78076196,-0.7809379,-0.7810259,-0.78084993,-0.780674,-0.780586,-0.780586,-0.780586,-0.780674,-0.78076196,-0.7809379,-0.78120184,-0.78120184,-0.7809379,-0.78084993,-0.780498,-0.7799701,-0.7796182,-0.7793543,-0.77900237,-0.77873844,-0.77873844,-0.7792663,-0.7795302,-0.7791783,-0.7788264,-0.77900237,-0.7802341,-0.7818177,-0.7820816,-0.7809379,-0.7792663,-0.77829856,-0.77829856,-0.77873844,-0.7791783,-0.7795302,-0.77944225,-0.77909034,-0.77909034,-0.77909034,-0.77900237,-0.7791783,-0.7796182,-0.7803221,-0.7810259,-0.78111386,-0.7809379,-0.78076196,-0.78041005,-0.7802341,-0.780498,-0.780674,-0.780586,-0.780586,-0.780674,-0.780674,-0.780498,-0.7803221,-0.78041005,-0.78076196,-0.78120184,-0.78155375,-0.7818177,-0.7821696,-0.7825215,-0.7825215,-0.78260946,-0.7825215,-0.7819936,-0.7812898,-0.78111386,-0.7810259,-0.78111386,-0.7812898,-0.7813778,-0.7813778,-0.7813778,-0.78120184,-0.7816417,-0.78260946,-0.7825215,-0.78111386,-0.78076196,-0.7821696,-0.78366524,-0.7839292,-0.7837532,-0.78366524,-0.78357726,-0.78357726,-0.7832253,-0.78269744,-0.78296137,-0.7837532,-0.78419316,-0.7834893,-0.7819936,-0.7800581,-0.7772427,-0.77425146,-0.7747793,-0.7759231,-0.77196395,-0.76985246,-0.77389956,-0.7796182,-0.78304935,-0.784809,-0.78560084,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7864806,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7862167,-0.7861287,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7862167,-0.7858648,-0.78524894,-0.78331333,-0.7796182,-0.7751312,-0.7717,-0.77240384,-0.7754832,-0.77460337,-0.7732837,-0.7753952,-0.7785625,-0.7810259,-0.78269744,-0.7834013,-0.7834893,-0.7831373,-0.7825215,-0.7827854,-0.7838412,-0.7843691,-0.78454506,-0.78463304,-0.7841052,-0.7825215,-0.7803221,-0.77900237,-0.7788264,-0.7792663,-0.7800581,-0.7810259,-0.78190565,-0.78234553,-0.7825215,-0.78260946,-0.7821696,-0.7816417,-0.7813778,-0.7817297,-0.7825215,-0.7828734,-0.7828734,-0.78296137,-0.78296137,-0.7825215,-0.7820816,-0.7818177,-0.78155375,-0.7812898,-0.78111386,-0.7809379,-0.78084993,-0.78076196,-0.78084993,-0.7810259,-0.7809379,-0.780586,-0.780498,-0.780586,-0.780674,-0.78076196,-0.78084993,-0.7809379,-0.7810259,-0.7809379,-0.78084993,-0.78084993,-0.780586,-0.7800581,-0.7797062,-0.77944225,-0.77909034,-0.7788264,-0.7788264,-0.7792663,-0.7796182,-0.7792663,-0.7791783,-0.77944225,-0.7799701,-0.78111386,-0.7817297,-0.78084993,-0.7791783,-0.77829856,-0.77838653,-0.7789144,-0.7793543,-0.7796182,-0.7795302,-0.77909034,-0.77909034,-0.77909034,-0.77900237,-0.7791783,-0.7796182,-0.7802341,-0.78076196,-0.7810259,-0.7809379,-0.78076196,-0.78041005,-0.7802341,-0.780498,-0.78084993,-0.78084993,-0.780586,-0.780498,-0.780498,-0.78041005,-0.78041005,-0.780586,-0.7809379,-0.7813778,-0.78190565,-0.78225756,-0.7825215,-0.78260946,-0.7825215,-0.78260946,-0.7825215,-0.7818177,-0.78120184,-0.7810259,-0.78084993,-0.78084993,-0.78111386,-0.7813778,-0.78146577,-0.78146577,-0.78155375,-0.7821696,-0.78304935,-0.7834893,-0.78225756,-0.780586,-0.78076196,-0.78234553,-0.78331333,-0.7838412,-0.7841052,-0.7840172,-0.7839292,-0.78366524,-0.78296137,-0.7827854,-0.78366524,-0.7843691,-0.78366524,-0.7816417,-0.77979416,-0.7781225,-0.77530724,-0.7747793,-0.77645093,-0.7733717,-0.7696765,-0.7724918,-0.77873844,-0.78269744,-0.78463304,-0.7856888,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.78630465,-0.7864806,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7862167,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7861287,-0.7857768,-0.78498495,-0.7825215,-0.7785625,-0.7740755,-0.7715241,-0.7734597,-0.77601105,-0.77398753,-0.7734597,-0.7765389,-0.7795302,-0.78146577,-0.78234553,-0.7824335,-0.78234553,-0.7820816,-0.78225756,-0.7831373,-0.7841052,-0.7844571,-0.784721,-0.784809,-0.78304935,-0.780674,-0.7801461,-0.7802341,-0.7803221,-0.78084993,-0.78120184,-0.78155375,-0.7820816,-0.78225756,-0.7820816,-0.7817297,-0.78120184,-0.780674,-0.7803221,-0.780674,-0.7819936,-0.78269744,-0.78269744,-0.7828734,-0.78296137,-0.78269744,-0.7820816,-0.7813778,-0.78111386,-0.7809379,-0.78084993,-0.78084993,-0.78084993,-0.780674,-0.780586,-0.78076196,-0.78076196,-0.780498,-0.78041005,-0.780586,-0.780586,-0.78076196,-0.7809379,-0.7809379,-0.78076196,-0.780674,-0.78076196,-0.78076196,-0.78041005,-0.7799701,-0.7797062,-0.7795302,-0.7792663,-0.77909034,-0.7792663,-0.7795302,-0.7796182,-0.7796182,-0.7796182,-0.7796182,-0.7795302,-0.780586,-0.78155375,-0.7809379,-0.7792663,-0.7784745,-0.7785625,-0.77909034,-0.7796182,-0.7799701,-0.77979416,-0.7792663,-0.77909034,-0.77909034,-0.77900237,-0.77900237,-0.77944225,-0.7801461,-0.780674,-0.78084993,-0.78076196,-0.780674,-0.78041005,-0.7801461,-0.78041005,-0.78084993,-0.78084993,-0.780586,-0.7803221,-0.7802341,-0.7803221,-0.780498,-0.78076196,-0.78111386,-0.7818177,-0.7824335,-0.78269744,-0.7827854,-0.7827854,-0.78269744,-0.7825215,-0.78225756,-0.78155375,-0.7809379,-0.78084993,-0.78076196,-0.780586,-0.780674,-0.7809379,-0.7812898,-0.78155375,-0.7819936,-0.7825215,-0.7831373,-0.78357726,-0.7828734,-0.78120184,-0.7801461,-0.780498,-0.7816417,-0.78296137,-0.7839292,-0.7839292,-0.7838412,-0.7838412,-0.78331333,-0.78269744,-0.7827854,-0.78357726,-0.7837532,-0.7818177,-0.7795302,-0.77838653,-0.77601105,-0.77469134,-0.77645093,-0.7745154,-0.76994044,-0.7715241,-0.77794653,-0.78234553,-0.7844571,-0.78560084,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7861287,-0.7862167,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7862167,-0.7861287,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.78630465,-0.7864806,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.7860407,-0.78560084,-0.78454506,-0.7818177,-0.7773307,-0.77240384,-0.7710842,-0.77433944,-0.776187,-0.7738116,-0.7744274,-0.7777706,-0.7799701,-0.78111386,-0.7817297,-0.78190565,-0.7821696,-0.78234553,-0.78260946,-0.78357726,-0.7843691,-0.7843691,-0.78489697,-0.7844571,-0.7820816,-0.780586,-0.78111386,-0.78111386,-0.7810259,-0.7812898,-0.7812898,-0.7812898,-0.7817297,-0.7817297,-0.78120184,-0.780498,-0.7800581,-0.7797062,-0.77944225,-0.77979416,-0.7813778,-0.7824335,-0.78260946,-0.7825215,-0.78234553,-0.78234553,-0.7819936,-0.78111386,-0.780586,-0.780498,-0.780498,-0.780586,-0.780674,-0.780498,-0.7803221,-0.78041005,-0.780586,-0.780586,-0.780498,-0.780586,-0.780586,-0.78076196,-0.7810259,-0.7810259,-0.78084993,-0.780674,-0.780674,-0.780586,-0.7802341,-0.77988213,-0.7797062,-0.7796182,-0.77944225,-0.7793543,-0.7796182,-0.77979416,-0.77979416,-0.7799701,-0.7799701,-0.7796182,-0.7793543,-0.7803221,-0.7816417,-0.7813778,-0.77979416,-0.7789144,-0.7789144,-0.7792663,-0.77979416,-0.7801461,-0.7799701,-0.77944225,-0.7791783,-0.77909034,-0.7789144,-0.77900237,-0.7795302,-0.7802341,-0.780674,-0.780674,-0.780586,-0.780498,-0.7802341,-0.7801461,-0.78041005,-0.78076196,-0.78076196,-0.780498,-0.7801461,-0.7799701,-0.7800581,-0.78041005,-0.7809379,-0.7817297,-0.7825215,-0.7828734,-0.78296137,-0.7832253,-0.7834013,-0.7831373,-0.78260946,-0.7819936,-0.7812898,-0.78084993,-0.78076196,-0.780674,-0.78041005,-0.7803221,-0.780498,-0.7809379,-0.78146577,-0.7820816,-0.7825215,-0.7827854,-0.7831373,-0.78304935,-0.7819936,-0.78076196,-0.7799701,-0.7799701,-0.78120184,-0.7828734,-0.7837532,-0.7839292,-0.7840172,-0.7838412,-0.7828734,-0.7817297,-0.7820816,-0.7832253,-0.7824335,-0.77988213,-0.77821046,-0.77671486,-0.77504325,-0.776275,-0.77530724,-0.77046835,-0.7706443,-0.77706677,-0.7819936,-0.78419316,-0.7853369,-0.7861287,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7864806,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7860407,-0.7854249,-0.7841052,-0.7809379,-0.77601105,-0.7709962,-0.7715241,-0.7753952,-0.7757471,-0.7737236,-0.7753952,-0.77821046,-0.7796182,-0.78076196,-0.78155375,-0.78190565,-0.78260946,-0.78304935,-0.78331333,-0.7841052,-0.7844571,-0.78454506,-0.784721,-0.78357726,-0.7820816,-0.7816417,-0.78155375,-0.7810259,-0.78084993,-0.7809379,-0.78076196,-0.780674,-0.7809379,-0.78076196,-0.7802341,-0.77988213,-0.7795302,-0.7792663,-0.77909034,-0.7793543,-0.780498,-0.7816417,-0.7818177,-0.7812898,-0.7812898,-0.78155375,-0.78155375,-0.7810259,-0.780586,-0.7801461,-0.7799701,-0.7799701,-0.7801461,-0.7802341,-0.7801461,-0.7800581,-0.7803221,-0.780586,-0.78041005,-0.78041005,-0.780586,-0.780674,-0.7809379,-0.78120184,-0.78084993,-0.780674,-0.780586,-0.780586,-0.7802341,-0.77988213,-0.7797062,-0.77979416,-0.7797062,-0.7796182,-0.7797062,-0.77988213,-0.7800581,-0.7802341,-0.7801461,-0.7795302,-0.7792663,-0.780674,-0.7821696,-0.7816417,-0.7800581,-0.7793543,-0.7791783,-0.7793543,-0.7797062,-0.77988213,-0.77988213,-0.7796182,-0.7793543,-0.7791783,-0.77900237,-0.7791783,-0.7795302,-0.7801461,-0.780674,-0.780586,-0.780498,-0.7803221,-0.7803221,-0.78041005,-0.780498,-0.780586,-0.780586,-0.7803221,-0.7800581,-0.7800581,-0.7802341,-0.78076196,-0.7820816,-0.7834013,-0.7839292,-0.7839292,-0.7837532,-0.7837532,-0.7839292,-0.7839292,-0.78366524,-0.7827854,-0.78190565,-0.7816417,-0.78111386,-0.78041005,-0.7801461,-0.7803221,-0.780498,-0.780674,-0.78084993,-0.7812898,-0.7819936,-0.78234553,-0.7827854,-0.7831373,-0.78269744,-0.7817297,-0.780586,-0.7793543,-0.77979416,-0.7818177,-0.7834893,-0.7840172,-0.7841052,-0.78419316,-0.78357726,-0.7820816,-0.7812898,-0.78225756,-0.7825215,-0.780498,-0.7784745,-0.77750665,-0.7759231,-0.776187,-0.776099,-0.7715241,-0.7696765,-0.7751312,-0.78120184,-0.7841052,-0.78524894,-0.7860407,-0.7862167,-0.78630465,-0.7862167,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7862167,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7864806,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7864806,-0.7862167,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7858648,-0.78516096,-0.7834893,-0.77979416,-0.77433944,-0.7700284,-0.77240384,-0.776187,-0.77504325,-0.7734597,-0.7758351,-0.77838653,-0.77979416,-0.7809379,-0.7816417,-0.7821696,-0.7824335,-0.78296137,-0.7840172,-0.7844571,-0.78454506,-0.784809,-0.78454506,-0.7834013,-0.78260946,-0.78190565,-0.7810259,-0.780586,-0.780674,-0.780586,-0.7801461,-0.7801461,-0.7802341,-0.7801461,-0.77988213,-0.7797062,-0.7796182,-0.7792663,-0.77909034,-0.7791783,-0.7797062,-0.780674,-0.7810259,-0.780674,-0.780586,-0.780674,-0.78076196,-0.78076196,-0.780586,-0.7802341,-0.7799701,-0.77979416,-0.77979416,-0.77979416,-0.77979416,-0.77988213,-0.7802341,-0.780498,-0.78041005,-0.78041005,-0.780498,-0.780586,-0.78084993,-0.78111386,-0.78084993,-0.780674,-0.780586,-0.78041005,-0.7801461,-0.77988213,-0.77979416,-0.77988213,-0.77988213,-0.7797062,-0.7797062,-0.77988213,-0.7801461,-0.7803221,-0.7801461,-0.7795302,-0.77944225,-0.7812898,-0.7825215,-0.78146577,-0.7802341,-0.7797062,-0.7792663,-0.7792663,-0.7796182,-0.7796182,-0.7796182,-0.7795302,-0.7795302,-0.77944225,-0.7791783,-0.7791783,-0.77944225,-0.7799701,-0.780586,-0.78076196,-0.780498,-0.7803221,-0.78041005,-0.780498,-0.780586,-0.780674,-0.780586,-0.7802341,-0.7799701,-0.7800581,-0.7802341,-0.78076196,-0.7825215,-0.7840172,-0.78428113,-0.7841052,-0.7840172,-0.7840172,-0.7841052,-0.78454506,-0.784721,-0.7840172,-0.78304935,-0.7824335,-0.78155375,-0.780498,-0.7802341,-0.78041005,-0.78041005,-0.78041005,-0.7802341,-0.78041005,-0.78120184,-0.78190565,-0.78234553,-0.7827854,-0.78296137,-0.78269744,-0.78155375,-0.77944225,-0.7788264,-0.7809379,-0.78331333,-0.7840172,-0.7840172,-0.7841052,-0.7841052,-0.7831373,-0.78155375,-0.78155375,-0.78234553,-0.78120184,-0.7791783,-0.7780345,-0.7765389,-0.77636296,-0.7766269,-0.7724918,-0.76914865,-0.7732837,-0.7803221,-0.7838412,-0.78489697,-0.7857768,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.7862167,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7864806,-0.7862167,-0.78630465,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7861287,-0.7856888,-0.785073,-0.7831373,-0.77873844,-0.7730198,-0.76994044,-0.7737236,-0.77671486,-0.7745154,-0.77425146,-0.77715474,-0.77909034,-0.780498,-0.78146577,-0.7820816,-0.7824335,-0.78269744,-0.7837532,-0.7844571,-0.78428113,-0.78463304,-0.78498495,-0.7843691,-0.78331333,-0.78260946,-0.78190565,-0.78076196,-0.7803221,-0.7803221,-0.7801461,-0.77988213,-0.7799701,-0.7800581,-0.7799701,-0.77979416,-0.7797062,-0.7795302,-0.7792663,-0.7792663,-0.7793543,-0.77944225,-0.7801461,-0.78084993,-0.780586,-0.7800581,-0.7797062,-0.7796182,-0.77988213,-0.7799701,-0.7799701,-0.77979416,-0.7797062,-0.7796182,-0.77944225,-0.77944225,-0.77979416,-0.7802341,-0.780498,-0.78041005,-0.780498,-0.780498,-0.780498,-0.780674,-0.7809379,-0.78084993,-0.780674,-0.780586,-0.7803221,-0.7800581,-0.77988213,-0.77979416,-0.77988213,-0.77979416,-0.7797062,-0.7797062,-0.77988213,-0.7801461,-0.7803221,-0.7801461,-0.7797062,-0.77979416,-0.7816417,-0.7825215,-0.78120184,-0.7801461,-0.77979416,-0.7793543,-0.7792663,-0.7795302,-0.7795302,-0.77944225,-0.7796182,-0.7799701,-0.77979416,-0.7793543,-0.7792663,-0.77944225,-0.77988213,-0.780498,-0.780674,-0.78041005,-0.7803221,-0.78041005,-0.780498,-0.780586,-0.78076196,-0.780586,-0.7800581,-0.77988213,-0.77988213,-0.7799701,-0.7803221,-0.78120184,-0.7819936,-0.7821696,-0.78234553,-0.7824335,-0.78269744,-0.7831373,-0.78366524,-0.7837532,-0.7834013,-0.78296137,-0.7825215,-0.7818177,-0.7809379,-0.780498,-0.78041005,-0.7803221,-0.7799701,-0.77988213,-0.77988213,-0.7803221,-0.7809379,-0.78146577,-0.7820816,-0.78260946,-0.78304935,-0.78260946,-0.7802341,-0.7789144,-0.780498,-0.7832253,-0.78428113,-0.78419316,-0.7841052,-0.78428113,-0.78366524,-0.78234553,-0.78146577,-0.7817297,-0.7816417,-0.7801461,-0.7781225,-0.776275,-0.77601105,-0.7768908,-0.7733717,-0.7689727,-0.7717,-0.7789144,-0.78331333,-0.784721,-0.78560084,-0.7861287,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7862167,-0.7862167,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7864806,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7862167,-0.78595275,-0.78560084,-0.78489697,-0.7827854,-0.77794653,-0.7721399,-0.77046835,-0.7751312,-0.7772427,-0.77530724,-0.77636296,-0.7791783,-0.780674,-0.7816417,-0.7825215,-0.78304935,-0.7832253,-0.7838412,-0.78454506,-0.78454506,-0.78463304,-0.785073,-0.78489697,-0.7838412,-0.7827854,-0.7821696,-0.78146577,-0.780498,-0.7799701,-0.7799701,-0.7801461,-0.7801461,-0.7802341,-0.7800581,-0.7799701,-0.77988213,-0.7797062,-0.77944225,-0.7792663,-0.7792663,-0.7792663,-0.7791783,-0.77988213,-0.78084993,-0.780586,-0.7796182,-0.7788264,-0.7784745,-0.77873844,-0.77909034,-0.7792663,-0.77944225,-0.7796182,-0.77944225,-0.7791783,-0.7791783,-0.7796182,-0.7802341,-0.780586,-0.780586,-0.78041005,-0.78041005,-0.78041005,-0.780498,-0.780674,-0.78076196,-0.780586,-0.780498,-0.78041005,-0.7801461,-0.7799701,-0.77988213,-0.7797062,-0.7796182,-0.7795302,-0.7796182,-0.77988213,-0.7799701,-0.7800581,-0.7799701,-0.7797062,-0.7801461,-0.7819936,-0.7825215,-0.78111386,-0.7800581,-0.7797062,-0.7793543,-0.7793543,-0.7795302,-0.7795302,-0.77944225,-0.7797062,-0.7799701,-0.77979416,-0.77944225,-0.7793543,-0.77944225,-0.77979416,-0.78041005,-0.780586,-0.78041005,-0.7803221,-0.780498,-0.780586,-0.780674,-0.78076196,-0.780586,-0.7801461,-0.77988213,-0.77988213,-0.7800581,-0.7803221,-0.78041005,-0.78041005,-0.780586,-0.78076196,-0.78084993,-0.78120184,-0.7818177,-0.78225756,-0.7820816,-0.7817297,-0.78190565,-0.7820816,-0.7817297,-0.7810259,-0.780586,-0.780498,-0.7802341,-0.77988213,-0.7797062,-0.7796182,-0.7797062,-0.7799701,-0.780498,-0.78120184,-0.78190565,-0.7825215,-0.78304935,-0.78234553,-0.78084993,-0.7809379,-0.78269744,-0.78419316,-0.7844571,-0.7841052,-0.7841052,-0.7840172,-0.78331333,-0.78234553,-0.7816417,-0.78146577,-0.780586,-0.77873844,-0.77645093,-0.77565914,-0.7769788,-0.7745154,-0.7694126,-0.77020437,-0.77706677,-0.7824335,-0.78454506,-0.7854249,-0.7860407,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.7862167,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7858648,-0.7854249,-0.78454506,-0.78190565,-0.7765389,-0.7709962,-0.7707323,-0.7759231,-0.7774187,-0.77601105,-0.77785856,-0.780586,-0.7817297,-0.7825215,-0.7831373,-0.7834893,-0.7839292,-0.78454506,-0.78463304,-0.78454506,-0.78489697,-0.78524894,-0.784809,-0.78366524,-0.7825215,-0.78155375,-0.780674,-0.7801461,-0.7799701,-0.7800581,-0.7801461,-0.7803221,-0.7803221,-0.7801461,-0.7800581,-0.7799701,-0.7797062,-0.7793543,-0.7791783,-0.77909034,-0.7788264,-0.77865046,-0.77944225,-0.780674,-0.780586,-0.77944225,-0.7785625,-0.7781225,-0.77829856,-0.7785625,-0.7788264,-0.7791783,-0.7792663,-0.7791783,-0.77909034,-0.7791783,-0.7795302,-0.77988213,-0.7802341,-0.78041005,-0.78041005,-0.78041005,-0.78041005,-0.78041005,-0.780586,-0.780674,-0.780498,-0.78041005,-0.7803221,-0.7801461,-0.7799701,-0.77988213,-0.7797062,-0.7795302,-0.7795302,-0.7795302,-0.7797062,-0.77979416,-0.77988213,-0.7799701,-0.77988213,-0.7800581,-0.7818177,-0.7828734,-0.7816417,-0.78041005,-0.77988213,-0.77944225,-0.7792663,-0.7793543,-0.7793543,-0.77944225,-0.7797062,-0.7796182,-0.77944225,-0.77944225,-0.7793543,-0.77944225,-0.7797062,-0.7802341,-0.780498,-0.78041005,-0.78041005,-0.780674,-0.78076196,-0.780674,-0.780586,-0.78041005,-0.7802341,-0.7801461,-0.7802341,-0.7803221,-0.7801461,-0.7799701,-0.77979416,-0.7799701,-0.7801461,-0.7802341,-0.780586,-0.7812898,-0.78155375,-0.78120184,-0.780674,-0.780674,-0.7810259,-0.7812898,-0.78120184,-0.7809379,-0.780674,-0.7801461,-0.7796182,-0.77944225,-0.7795302,-0.7793543,-0.7792663,-0.7795302,-0.7800581,-0.780498,-0.78076196,-0.7817297,-0.7828734,-0.7828734,-0.78225756,-0.78269744,-0.7840172,-0.78463304,-0.78428113,-0.7841052,-0.7841052,-0.7837532,-0.7832253,-0.7824335,-0.7818177,-0.7809379,-0.7793543,-0.7772427,-0.776099,-0.7773307,-0.77557117,-0.7701164,-0.7693246,-0.7754832,-0.78155375,-0.78428113,-0.78524894,-0.7858648,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.7861287,-0.7861287,-0.78630465,-0.78630465,-0.7863926,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7864806,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7862167,-0.7857768,-0.78524894,-0.7841052,-0.780586,-0.7747793,-0.77020437,-0.7714361,-0.776275,-0.7773307,-0.77671486,-0.7793543,-0.7816417,-0.78225756,-0.7828734,-0.78331333,-0.78366524,-0.78428113,-0.784721,-0.784721,-0.784721,-0.78498495,-0.78524894,-0.78498495,-0.78357726,-0.78190565,-0.78084993,-0.7803221,-0.7802341,-0.7802341,-0.7802341,-0.7802341,-0.7803221,-0.7803221,-0.7802341,-0.7800581,-0.7799701,-0.7797062,-0.7792663,-0.77909034,-0.7788264,-0.7784745,-0.77829856,-0.77900237,-0.7802341,-0.7802341,-0.7791783,-0.77838653,-0.7781225,-0.77829856,-0.7784745,-0.7785625,-0.77865046,-0.7789144,-0.77900237,-0.77900237,-0.7791783,-0.77944225,-0.7796182,-0.77979416,-0.7800581,-0.78041005,-0.780498,-0.7803221,-0.7803221,-0.780498,-0.780586,-0.780498,-0.7803221,-0.7802341,-0.7801461,-0.7800581,-0.77988213,-0.77979416,-0.77979416,-0.7796182,-0.7793543,-0.7792663,-0.77944225,-0.7796182,-0.77988213,-0.77988213,-0.77988213,-0.7817297,-0.78357726,-0.78260946,-0.780586,-0.77988213,-0.7796182,-0.7793543,-0.7792663,-0.7792663,-0.77944225,-0.7795302,-0.7793543,-0.7791783,-0.7792663,-0.7793543,-0.77944225,-0.77979416,-0.7801461,-0.7802341,-0.7802341,-0.78041005,-0.780674,-0.780674,-0.780674,-0.780586,-0.78041005,-0.78041005,-0.78041005,-0.780498,-0.7803221,-0.7799701,-0.7796182,-0.77944225,-0.7795302,-0.77979416,-0.7799701,-0.7803221,-0.7810259,-0.7813778,-0.78111386,-0.780498,-0.7802341,-0.7803221,-0.78076196,-0.78111386,-0.78120184,-0.7809379,-0.7800581,-0.7793543,-0.7792663,-0.77944225,-0.77944225,-0.7791783,-0.7791783,-0.7792663,-0.7792663,-0.7791783,-0.77979416,-0.7812898,-0.78296137,-0.7838412,-0.7840172,-0.7844571,-0.78498495,-0.78489697,-0.7844571,-0.7841052,-0.7838412,-0.78357726,-0.7832253,-0.7828734,-0.7819936,-0.7801461,-0.77794653,-0.7769788,-0.77785856,-0.776187,-0.7709962,-0.7692366,-0.77460337,-0.78084993,-0.7839292,-0.78516096,-0.7858648,-0.7860407,-0.7862167,-0.78630465,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7861287,-0.7862167,-0.7863926,-0.78630465,-0.7863926,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7864806,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.78630465,-0.7858648,-0.78516096,-0.78357726,-0.7793543,-0.77354765,-0.77020437,-0.77275586,-0.77706677,-0.7775946,-0.77794653,-0.78076196,-0.78190565,-0.7821696,-0.78304935,-0.78357726,-0.7839292,-0.78463304,-0.78489697,-0.784809,-0.784721,-0.784809,-0.78524894,-0.784809,-0.78269744,-0.78084993,-0.78041005,-0.78041005,-0.78041005,-0.780498,-0.78041005,-0.7803221,-0.78041005,-0.780498,-0.7803221,-0.7800581,-0.77988213,-0.7797062,-0.7795302,-0.7792663,-0.7789144,-0.77838653,-0.7781225,-0.7788264,-0.77988213,-0.7799701,-0.77909034,-0.7784745,-0.77829856,-0.7784745,-0.7784745,-0.7781225,-0.7781225,-0.77865046,-0.77909034,-0.77909034,-0.7792663,-0.77944225,-0.7795302,-0.7795302,-0.7797062,-0.7799701,-0.7801461,-0.7801461,-0.7801461,-0.7802341,-0.7803221,-0.7802341,-0.7801461,-0.7802341,-0.7803221,-0.7801461,-0.77988213,-0.77979416,-0.77988213,-0.77979416,-0.7791783,-0.77900237,-0.7791783,-0.77944225,-0.77979416,-0.7797062,-0.77988213,-0.7819936,-0.7841052,-0.7832253,-0.780674,-0.7796182,-0.7796182,-0.7796182,-0.7793543,-0.7791783,-0.7793543,-0.7793543,-0.77909034,-0.77909034,-0.7792663,-0.77944225,-0.7795302,-0.7797062,-0.7799701,-0.7800581,-0.7800581,-0.7801461,-0.7803221,-0.78041005,-0.780498,-0.780498,-0.780498,-0.78041005,-0.780498,-0.78041005,-0.7801461,-0.77979416,-0.7795302,-0.7793543,-0.7792663,-0.7795302,-0.7796182,-0.77979416,-0.780498,-0.78111386,-0.78120184,-0.78084993,-0.78041005,-0.7803221,-0.780498,-0.78084993,-0.7812898,-0.78111386,-0.7800581,-0.7792663,-0.7793543,-0.7795302,-0.7795302,-0.7793543,-0.7791783,-0.77900237,-0.7789144,-0.77900237,-0.77909034,-0.77988213,-0.7817297,-0.7838412,-0.784809,-0.78498495,-0.7853369,-0.7853369,-0.784809,-0.7843691,-0.7841052,-0.7839292,-0.7834893,-0.78296137,-0.78269744,-0.78146577,-0.77909034,-0.77750665,-0.77794653,-0.7765389,-0.7717,-0.7693246,-0.77389956,-0.7803221,-0.7837532,-0.78498495,-0.7857768,-0.7860407,-0.7862167,-0.78630465,-0.7862167,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.7863926,-0.7863926,-0.7864806,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7864806,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7861287,-0.7857768,-0.785073,-0.78304935,-0.7780345,-0.7725798,-0.7702924,-0.77398753,-0.7785625,-0.77865046,-0.7789144,-0.78084993,-0.7813778,-0.7824335,-0.78366524,-0.7838412,-0.78419316,-0.784809,-0.78498495,-0.78489697,-0.7844571,-0.7843691,-0.784809,-0.78366524,-0.78120184,-0.7802341,-0.7803221,-0.7802341,-0.7803221,-0.780586,-0.780498,-0.78041005,-0.780498,-0.780498,-0.7803221,-0.7800581,-0.77988213,-0.77979416,-0.7795302,-0.7791783,-0.77873844,-0.77829856,-0.77821046,-0.7788264,-0.7797062,-0.7797062,-0.77909034,-0.7784745,-0.7785625,-0.7788264,-0.7785625,-0.7781225,-0.7781225,-0.7785625,-0.77900237,-0.7792663,-0.77944225,-0.77944225,-0.7795302,-0.7795302,-0.77944225,-0.7795302,-0.77979416,-0.7801461,-0.7802341,-0.7801461,-0.7801461,-0.7801461,-0.7800581,-0.7802341,-0.7803221,-0.7801461,-0.77979416,-0.7796182,-0.7797062,-0.7796182,-0.77909034,-0.7788264,-0.77900237,-0.7793543,-0.7797062,-0.7797062,-0.77988213,-0.7818177,-0.78366524,-0.78260946,-0.7800581,-0.77909034,-0.7793543,-0.7796182,-0.7795302,-0.77909034,-0.77909034,-0.7792663,-0.77909034,-0.77909034,-0.7792663,-0.7793543,-0.77944225,-0.77944225,-0.7796182,-0.77979416,-0.77988213,-0.77988213,-0.7801461,-0.7802341,-0.7803221,-0.78041005,-0.78041005,-0.7803221,-0.7803221,-0.7802341,-0.7800581,-0.7797062,-0.77944225,-0.7792663,-0.7791783,-0.7792663,-0.7792663,-0.7792663,-0.77988213,-0.78076196,-0.7813778,-0.7813778,-0.7809379,-0.780586,-0.78041005,-0.780586,-0.7812898,-0.7813778,-0.7801461,-0.7791783,-0.7792663,-0.7796182,-0.7796182,-0.7795302,-0.7792663,-0.77900237,-0.77900237,-0.77909034,-0.77900237,-0.7792663,-0.780674,-0.7827854,-0.7843691,-0.78498495,-0.78524894,-0.7854249,-0.78516096,-0.784721,-0.78428113,-0.78419316,-0.7838412,-0.78269744,-0.78234553,-0.7825215,-0.780674,-0.7776826,-0.7775946,-0.7769788,-0.7724918,-0.7693246,-0.77319574,-0.7796182,-0.7834893,-0.784809,-0.7856888,-0.7861287,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78595275,-0.7854249,-0.784721,-0.7820816,-0.776275,-0.77117217,-0.7703804,-0.77521926,-0.7792663,-0.77909034,-0.7793543,-0.780586,-0.7813778,-0.7831373,-0.7841052,-0.7841052,-0.7844571,-0.784809,-0.78498495,-0.78489697,-0.7843691,-0.78428113,-0.7840172,-0.7821696,-0.7803221,-0.7802341,-0.7803221,-0.7802341,-0.7803221,-0.780586,-0.780586,-0.780498,-0.780498,-0.78041005,-0.7802341,-0.7800581,-0.77988213,-0.77988213,-0.77944225,-0.7788264,-0.77838653,-0.77821046,-0.77838653,-0.77900237,-0.7797062,-0.77979416,-0.7791783,-0.77873844,-0.77873844,-0.77865046,-0.77829856,-0.7781225,-0.77829856,-0.77865046,-0.77909034,-0.7793543,-0.77944225,-0.7795302,-0.77944225,-0.7795302,-0.7795302,-0.7793543,-0.7796182,-0.7800581,-0.7803221,-0.7801461,-0.7800581,-0.7799701,-0.7799701,-0.7802341,-0.78041005,-0.7801461,-0.77979416,-0.7795302,-0.77944225,-0.7793543,-0.77900237,-0.7789144,-0.7791783,-0.7795302,-0.7796182,-0.7795302,-0.77944225,-0.78076196,-0.7820816,-0.78120184,-0.7792663,-0.77873844,-0.7791783,-0.77944225,-0.77944225,-0.7791783,-0.77909034,-0.77909034,-0.77909034,-0.77909034,-0.7792663,-0.7793543,-0.7793543,-0.7792663,-0.7795302,-0.77979416,-0.77988213,-0.7799701,-0.7801461,-0.7803221,-0.78041005,-0.78041005,-0.7803221,-0.7802341,-0.7802341,-0.7802341,-0.7800581,-0.77979416,-0.7796182,-0.77944225,-0.7792663,-0.7791783,-0.77900237,-0.77900237,-0.77944225,-0.7803221,-0.7810259,-0.7812898,-0.7812898,-0.7810259,-0.78076196,-0.78084993,-0.78155375,-0.78190565,-0.780674,-0.7791783,-0.77900237,-0.7795302,-0.7797062,-0.7796182,-0.7795302,-0.7793543,-0.7792663,-0.7792663,-0.7792663,-0.7793543,-0.7801461,-0.7819936,-0.7838412,-0.78454506,-0.784809,-0.7854249,-0.7854249,-0.785073,-0.78463304,-0.78419316,-0.7841052,-0.78304935,-0.7816417,-0.7821696,-0.7819936,-0.7788264,-0.7773307,-0.7772427,-0.7734597,-0.76950055,-0.7722279,-0.7784745,-0.78296137,-0.784721,-0.7856888,-0.7861287,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7858648,-0.7854249,-0.7843691,-0.78084993,-0.7749553,-0.77055633,-0.77090824,-0.776187,-0.77909034,-0.77865046,-0.77944225,-0.78084993,-0.7824335,-0.7839292,-0.78419316,-0.78419316,-0.78454506,-0.78489697,-0.78498495,-0.78463304,-0.78454506,-0.7843691,-0.7827854,-0.7809379,-0.7802341,-0.78041005,-0.780498,-0.780498,-0.780586,-0.780674,-0.780586,-0.780498,-0.780498,-0.7803221,-0.7801461,-0.7800581,-0.7800581,-0.77988213,-0.7792663,-0.77873844,-0.77838653,-0.77838653,-0.77873844,-0.7793543,-0.7800581,-0.7801461,-0.7796182,-0.77900237,-0.7785625,-0.77785856,-0.7774187,-0.7776826,-0.77821046,-0.77865046,-0.77909034,-0.7793543,-0.7795302,-0.7795302,-0.77944225,-0.7795302,-0.7796182,-0.77944225,-0.7793543,-0.7796182,-0.7800581,-0.7801461,-0.7800581,-0.7800581,-0.7799701,-0.7801461,-0.7803221,-0.7801461,-0.77979416,-0.7797062,-0.7795302,-0.7792663,-0.77909034,-0.7791783,-0.7793543,-0.7796182,-0.7795302,-0.7792663,-0.7791783,-0.7799701,-0.78084993,-0.7801461,-0.7788264,-0.77865046,-0.77900237,-0.7791783,-0.7791783,-0.7791783,-0.77909034,-0.7789144,-0.7788264,-0.77900237,-0.7792663,-0.7793543,-0.7793543,-0.7793543,-0.7796182,-0.77979416,-0.7799701,-0.7800581,-0.7802341,-0.7803221,-0.78041005,-0.7803221,-0.7801461,-0.7801461,-0.7802341,-0.7802341,-0.7799701,-0.77979416,-0.7797062,-0.7795302,-0.7793543,-0.7792663,-0.77909034,-0.7789144,-0.77909034,-0.77979416,-0.78041005,-0.780674,-0.7809379,-0.78120184,-0.7812898,-0.7813778,-0.78190565,-0.78234553,-0.7812898,-0.7795302,-0.77900237,-0.7793543,-0.7795302,-0.7796182,-0.7795302,-0.7795302,-0.7795302,-0.77944225,-0.7792663,-0.7793543,-0.7796182,-0.78111386,-0.78331333,-0.7844571,-0.78498495,-0.78551286,-0.78551286,-0.78516096,-0.78463304,-0.78419316,-0.78419316,-0.78366524,-0.78190565,-0.7812898,-0.7819936,-0.78041005,-0.77821046,-0.7774187,-0.77389956,-0.76985246,-0.7717,-0.77715474,-0.7821696,-0.784721,-0.7856888,-0.7860407,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7862167,-0.7858648,-0.7854249,-0.78366524,-0.7792663,-0.7737236,-0.77046835,-0.7721399,-0.7773307,-0.77900237,-0.77865046,-0.7799701,-0.7818177,-0.78331333,-0.7840172,-0.78428113,-0.7843691,-0.78454506,-0.78498495,-0.78516096,-0.78498495,-0.784809,-0.7834893,-0.7813778,-0.7803221,-0.7803221,-0.780498,-0.780586,-0.780674,-0.78076196,-0.78076196,-0.780674,-0.780674,-0.780498,-0.7803221,-0.7800581,-0.7800581,-0.7800581,-0.77979416,-0.77909034,-0.77873844,-0.7788264,-0.77909034,-0.77944225,-0.77988213,-0.78041005,-0.7802341,-0.7793543,-0.77838653,-0.7777706,-0.77715474,-0.77706677,-0.7774187,-0.7781225,-0.77865046,-0.77900237,-0.7792663,-0.7793543,-0.77944225,-0.7795302,-0.7797062,-0.7796182,-0.7793543,-0.77909034,-0.7791783,-0.7796182,-0.77988213,-0.77988213,-0.7799701,-0.7799701,-0.77988213,-0.7799701,-0.7799701,-0.77988213,-0.77988213,-0.77979416,-0.7795302,-0.7793543,-0.7795302,-0.7796182,-0.7796182,-0.77944225,-0.7793543,-0.7791783,-0.7797062,-0.7802341,-0.7795302,-0.7785625,-0.7784745,-0.77873844,-0.77900237,-0.7791783,-0.7791783,-0.77909034,-0.77873844,-0.7785625,-0.77873844,-0.7791783,-0.7793543,-0.7792663,-0.7792663,-0.77944225,-0.7796182,-0.77979416,-0.7800581,-0.7802341,-0.7802341,-0.7803221,-0.7801461,-0.7799701,-0.77988213,-0.7800581,-0.7800581,-0.77979416,-0.7795302,-0.77944225,-0.77944225,-0.7792663,-0.7791783,-0.77900237,-0.7788264,-0.77909034,-0.7797062,-0.7800581,-0.7801461,-0.78041005,-0.7809379,-0.7813778,-0.78146577,-0.7818177,-0.78234553,-0.7816417,-0.77979416,-0.77900237,-0.77944225,-0.7795302,-0.7795302,-0.7795302,-0.7796182,-0.7797062,-0.77944225,-0.7791783,-0.7792663,-0.77944225,-0.7803221,-0.7825215,-0.78419316,-0.785073,-0.7854249,-0.7853369,-0.785073,-0.784809,-0.7843691,-0.78419316,-0.7840172,-0.7831373,-0.7818177,-0.78146577,-0.7810259,-0.77988213,-0.77838653,-0.7744274,-0.7701164,-0.77126014,-0.776187,-0.7812898,-0.7844571,-0.7856888,-0.7860407,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7864806,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.78630465,-0.78630465,-0.78630465,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7862167,-0.7857768,-0.78516096,-0.78296137,-0.77794653,-0.7724918,-0.7707323,-0.77389956,-0.77865046,-0.7791783,-0.77865046,-0.78041005,-0.78234553,-0.78331333,-0.7839292,-0.78428113,-0.7843691,-0.784721,-0.78524894,-0.78524894,-0.78524894,-0.7843691,-0.7819936,-0.780498,-0.7803221,-0.78041005,-0.780498,-0.780586,-0.78076196,-0.78076196,-0.780674,-0.78076196,-0.78076196,-0.780586,-0.7802341,-0.7800581,-0.7800581,-0.7800581,-0.77979416,-0.7793543,-0.7791783,-0.7795302,-0.7800581,-0.780586,-0.78076196,-0.7802341,-0.77909034,-0.77794653,-0.7773307,-0.7769788,-0.7768908,-0.77706677,-0.77750665,-0.7781225,-0.77865046,-0.7789144,-0.77909034,-0.77909034,-0.77909034,-0.7793543,-0.7797062,-0.7797062,-0.77944225,-0.7791783,-0.77909034,-0.7792663,-0.77944225,-0.7795302,-0.7797062,-0.77979416,-0.7796182,-0.77979416,-0.7800581,-0.7800581,-0.7801461,-0.7803221,-0.7800581,-0.77988213,-0.7799701,-0.7799701,-0.7795302,-0.7792663,-0.7791783,-0.7791783,-0.77979416,-0.7802341,-0.77944225,-0.7785625,-0.7784745,-0.77873844,-0.7789144,-0.7791783,-0.7791783,-0.7791783,-0.77900237,-0.7788264,-0.7789144,-0.77909034,-0.7792663,-0.7791783,-0.7791783,-0.7792663,-0.7793543,-0.7796182,-0.7800581,-0.7802341,-0.7803221,-0.78041005,-0.7802341,-0.77988213,-0.7797062,-0.77988213,-0.77979416,-0.7796182,-0.77944225,-0.7793543,-0.7792663,-0.77909034,-0.7789144,-0.77873844,-0.77865046,-0.77909034,-0.7797062,-0.7799701,-0.7799701,-0.7800581,-0.780586,-0.78120184,-0.7812898,-0.7812898,-0.7819936,-0.78190565,-0.7800581,-0.77900237,-0.7793543,-0.7796182,-0.7796182,-0.7796182,-0.7797062,-0.77979416,-0.7795302,-0.77944225,-0.77944225,-0.77944225,-0.7800581,-0.7816417,-0.78304935,-0.7841052,-0.78498495,-0.78524894,-0.78524894,-0.785073,-0.78463304,-0.7841052,-0.7839292,-0.7837532,-0.78260946,-0.78120184,-0.7810259,-0.7812898,-0.77979416,-0.7751312,-0.77055633,-0.7715241,-0.77601105,-0.780498,-0.7839292,-0.78560084,-0.7860407,-0.7861287,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7864806,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7862167,-0.7856888,-0.784809,-0.7819936,-0.77671486,-0.77240384,-0.7725798,-0.7765389,-0.77979416,-0.7793543,-0.77909034,-0.7809379,-0.78234553,-0.7832253,-0.7841052,-0.7843691,-0.7844571,-0.785073,-0.78524894,-0.78516096,-0.784809,-0.78296137,-0.7809379,-0.78041005,-0.780586,-0.780498,-0.78041005,-0.780498,-0.780674,-0.780674,-0.780498,-0.780586,-0.780674,-0.780498,-0.7803221,-0.7800581,-0.7799701,-0.7801461,-0.7802341,-0.7800581,-0.7801461,-0.780674,-0.7810259,-0.7809379,-0.7803221,-0.77900237,-0.7776826,-0.7768908,-0.7765389,-0.7765389,-0.7765389,-0.7768908,-0.7773307,-0.77794653,-0.7784745,-0.77873844,-0.77873844,-0.7788264,-0.7788264,-0.7789144,-0.77944225,-0.77988213,-0.7799701,-0.7796182,-0.7791783,-0.77909034,-0.7791783,-0.77944225,-0.7797062,-0.7797062,-0.7797062,-0.7800581,-0.780498,-0.780586,-0.780674,-0.78076196,-0.780498,-0.7802341,-0.7803221,-0.7802341,-0.7796182,-0.7792663,-0.7792663,-0.7796182,-0.780498,-0.78076196,-0.7797062,-0.77873844,-0.77865046,-0.7789144,-0.77909034,-0.7792663,-0.7793543,-0.7793543,-0.7793543,-0.7792663,-0.7791783,-0.7791783,-0.7792663,-0.7792663,-0.7791783,-0.77909034,-0.7791783,-0.7797062,-0.7802341,-0.78041005,-0.7803221,-0.7802341,-0.7800581,-0.7797062,-0.77944225,-0.77944225,-0.77944225,-0.7793543,-0.7793543,-0.77944225,-0.77944225,-0.7792663,-0.7791783,-0.7789144,-0.77865046,-0.7788264,-0.7795302,-0.7799701,-0.7799701,-0.7801461,-0.780498,-0.78084993,-0.7810259,-0.78111386,-0.7817297,-0.7818177,-0.7802341,-0.7791783,-0.77944225,-0.7796182,-0.7795302,-0.7795302,-0.7796182,-0.7797062,-0.7797062,-0.7796182,-0.7795302,-0.7795302,-0.7801461,-0.7810259,-0.7818177,-0.7827854,-0.7841052,-0.785073,-0.7854249,-0.7854249,-0.78489697,-0.78419316,-0.7838412,-0.7837532,-0.78304935,-0.7816417,-0.78084993,-0.78155375,-0.7810259,-0.77645093,-0.77117217,-0.7713481,-0.7751312,-0.7792663,-0.7831373,-0.7853369,-0.78595275,-0.7861287,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7862167,-0.7857768,-0.7844571,-0.7809379,-0.7754832,-0.7726679,-0.77530724,-0.77944225,-0.78041005,-0.7796182,-0.7800581,-0.7812898,-0.7825215,-0.78366524,-0.7843691,-0.7844571,-0.784809,-0.78524894,-0.78524894,-0.78516096,-0.7838412,-0.78155375,-0.780498,-0.780586,-0.78076196,-0.78076196,-0.780498,-0.780498,-0.780674,-0.780586,-0.78041005,-0.78041005,-0.780498,-0.78041005,-0.7803221,-0.7800581,-0.7799701,-0.7803221,-0.78041005,-0.780498,-0.78111386,-0.7813778,-0.780674,-0.7796182,-0.7784745,-0.7774187,-0.77671486,-0.776275,-0.776099,-0.776099,-0.776187,-0.7765389,-0.77706677,-0.7776826,-0.77821046,-0.7784745,-0.7784745,-0.77865046,-0.77865046,-0.7785625,-0.77900237,-0.77979416,-0.78041005,-0.7802341,-0.7795302,-0.7791783,-0.7791783,-0.7795302,-0.77988213,-0.7800581,-0.7801461,-0.780674,-0.78111386,-0.7812898,-0.78146577,-0.7813778,-0.7810259,-0.78076196,-0.780674,-0.78041005,-0.77988213,-0.7795302,-0.77979416,-0.78041005,-0.78111386,-0.78146577,-0.780586,-0.7791783,-0.7789144,-0.7792663,-0.7795302,-0.7796182,-0.7797062,-0.77979416,-0.77988213,-0.77979416,-0.7796182,-0.7796182,-0.7796182,-0.77944225,-0.7793543,-0.7791783,-0.7792663,-0.7799701,-0.780498,-0.7803221,-0.7801461,-0.7799701,-0.7797062,-0.7795302,-0.7793543,-0.7791783,-0.7791783,-0.7792663,-0.7793543,-0.77944225,-0.7795302,-0.7795302,-0.7795302,-0.7792663,-0.7788264,-0.77865046,-0.7791783,-0.77979416,-0.7801461,-0.78041005,-0.780674,-0.78084993,-0.7809379,-0.78111386,-0.7818177,-0.7819936,-0.780498,-0.7793543,-0.77944225,-0.77944225,-0.77944225,-0.77944225,-0.7795302,-0.7797062,-0.77979416,-0.77979416,-0.7797062,-0.77979416,-0.7800581,-0.78041005,-0.78084993,-0.7816417,-0.78296137,-0.7843691,-0.7853369,-0.78560084,-0.78524894,-0.78454506,-0.7841052,-0.7840172,-0.7834013,-0.7820816,-0.78084993,-0.7812898,-0.78146577,-0.77794653,-0.77231586,-0.7710842,-0.7740755,-0.7781225,-0.78225756,-0.78489697,-0.7858648,-0.7861287,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7861287,-0.7856888,-0.7840172,-0.77979416,-0.77389956,-0.77205193,-0.7759231,-0.7799701,-0.7802341,-0.77988213,-0.780674,-0.7817297,-0.7832253,-0.78428113,-0.7844571,-0.78463304,-0.78516096,-0.7854249,-0.7854249,-0.78463304,-0.78260946,-0.7809379,-0.780498,-0.78041005,-0.780586,-0.78084993,-0.780674,-0.780586,-0.78076196,-0.780674,-0.78041005,-0.780498,-0.780498,-0.7803221,-0.7802341,-0.7800581,-0.7800581,-0.7800581,-0.7799701,-0.7801461,-0.780498,-0.7799701,-0.7788264,-0.77785856,-0.77715474,-0.7766269,-0.776275,-0.7759231,-0.7757471,-0.7757471,-0.7758351,-0.776275,-0.77680284,-0.7773307,-0.77785856,-0.77821046,-0.77821046,-0.77829856,-0.77838653,-0.77838653,-0.7785625,-0.7792663,-0.7800581,-0.7803221,-0.7802341,-0.7799701,-0.77979416,-0.7800581,-0.78041005,-0.78076196,-0.78120184,-0.78155375,-0.7817297,-0.78190565,-0.7819936,-0.78190565,-0.7816417,-0.7812898,-0.7809379,-0.780586,-0.7800581,-0.7795302,-0.77979416,-0.780498,-0.7809379,-0.7813778,-0.7810259,-0.7797062,-0.7791783,-0.7795302,-0.7799701,-0.7802341,-0.7802341,-0.78041005,-0.780586,-0.780498,-0.78041005,-0.78041005,-0.7801461,-0.77988213,-0.7799701,-0.77988213,-0.77979416,-0.7803221,-0.780586,-0.7802341,-0.7799701,-0.77979416,-0.7796182,-0.77944225,-0.7793543,-0.7791783,-0.7791783,-0.7793543,-0.7793543,-0.77944225,-0.77944225,-0.7795302,-0.7797062,-0.7796182,-0.7792663,-0.7788264,-0.7788264,-0.77944225,-0.77979416,-0.7802341,-0.780674,-0.7809379,-0.78111386,-0.78120184,-0.7818177,-0.78225756,-0.78111386,-0.7797062,-0.7793543,-0.77944225,-0.77944225,-0.7795302,-0.7796182,-0.77979416,-0.7800581,-0.7801461,-0.7799701,-0.77979416,-0.7797062,-0.77988213,-0.7802341,-0.780674,-0.78155375,-0.7834013,-0.78498495,-0.78560084,-0.7854249,-0.78498495,-0.7844571,-0.7841052,-0.78357726,-0.7824335,-0.7812898,-0.78120184,-0.7812898,-0.7789144,-0.77389956,-0.7713481,-0.77319574,-0.7774187,-0.7818177,-0.78463304,-0.7857768,-0.7861287,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7860407,-0.7854249,-0.78366524,-0.77900237,-0.77284384,-0.7714361,-0.77530724,-0.7791783,-0.7801461,-0.7801461,-0.7809379,-0.7825215,-0.7839292,-0.78428113,-0.78428113,-0.784721,-0.78524894,-0.78560084,-0.78516096,-0.7834013,-0.7816417,-0.78084993,-0.780498,-0.78041005,-0.780586,-0.7809379,-0.78084993,-0.780674,-0.780674,-0.780586,-0.780498,-0.780674,-0.780498,-0.7802341,-0.7802341,-0.7803221,-0.7802341,-0.7800581,-0.77979416,-0.7793543,-0.7788264,-0.7780345,-0.7773307,-0.77671486,-0.77636296,-0.776187,-0.7759231,-0.77565914,-0.77557117,-0.77557117,-0.77565914,-0.776099,-0.7765389,-0.7769788,-0.7774187,-0.77785856,-0.7781225,-0.7781225,-0.77821046,-0.77829856,-0.77821046,-0.77865046,-0.7797062,-0.780586,-0.780674,-0.780498,-0.780586,-0.7809379,-0.7812898,-0.7816417,-0.78190565,-0.7820816,-0.78225756,-0.7825215,-0.78260946,-0.78234553,-0.78190565,-0.78146577,-0.7809379,-0.780498,-0.7800581,-0.7795302,-0.7795302,-0.7799701,-0.780586,-0.78111386,-0.780498,-0.77909034,-0.77865046,-0.7792663,-0.7801461,-0.780586,-0.78076196,-0.7810259,-0.7813778,-0.7812898,-0.78120184,-0.78111386,-0.78076196,-0.780674,-0.78084993,-0.780674,-0.780498,-0.780674,-0.78076196,-0.78041005,-0.7800581,-0.7797062,-0.7795302,-0.7793543,-0.77909034,-0.7792663,-0.77944225,-0.7793543,-0.7793543,-0.77944225,-0.77944225,-0.7795302,-0.7797062,-0.77979416,-0.77979416,-0.7791783,-0.77873844,-0.77900237,-0.77944225,-0.77988213,-0.780498,-0.7810259,-0.7813778,-0.7816417,-0.7819936,-0.7824335,-0.7817297,-0.7803221,-0.7795302,-0.7793543,-0.77944225,-0.7795302,-0.7796182,-0.77988213,-0.7803221,-0.7802341,-0.77979416,-0.7797062,-0.7796182,-0.7796182,-0.77979416,-0.7801461,-0.780586,-0.7821696,-0.7844571,-0.78551286,-0.78551286,-0.7854249,-0.784809,-0.7840172,-0.78357726,-0.7827854,-0.7816417,-0.7812898,-0.78120184,-0.7796182,-0.7753952,-0.771876,-0.77240384,-0.7765389,-0.7812898,-0.7844571,-0.7857768,-0.7860407,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7860407,-0.7853369,-0.7834893,-0.7796182,-0.7740755,-0.7721399,-0.7753952,-0.7793543,-0.78076196,-0.780498,-0.7810259,-0.78304935,-0.78419316,-0.78419316,-0.7843691,-0.78489697,-0.78551286,-0.78560084,-0.78419316,-0.78225756,-0.78120184,-0.78076196,-0.78041005,-0.780586,-0.78076196,-0.7809379,-0.78084993,-0.780586,-0.780498,-0.780674,-0.780674,-0.780674,-0.780498,-0.7803221,-0.78041005,-0.780498,-0.7803221,-0.7799701,-0.7792663,-0.77838653,-0.7776826,-0.77715474,-0.7766269,-0.776275,-0.77601105,-0.77601105,-0.7758351,-0.7757471,-0.7757471,-0.7757471,-0.7757471,-0.776099,-0.7765389,-0.7769788,-0.7772427,-0.7775946,-0.77794653,-0.7780345,-0.7781225,-0.7780345,-0.77785856,-0.7785625,-0.77988213,-0.780674,-0.78076196,-0.78076196,-0.78120184,-0.78155375,-0.78190565,-0.7820816,-0.7821696,-0.7824335,-0.7827854,-0.78296137,-0.78296137,-0.78260946,-0.7817297,-0.78111386,-0.780674,-0.7803221,-0.7799701,-0.7795302,-0.7792663,-0.7795302,-0.780674,-0.7817297,-0.780674,-0.7788264,-0.7785625,-0.7791783,-0.7800581,-0.78084993,-0.78111386,-0.78146577,-0.7818177,-0.78190565,-0.7818177,-0.7817297,-0.78155375,-0.7812898,-0.78111386,-0.7810259,-0.78111386,-0.7812898,-0.7810259,-0.780586,-0.7803221,-0.77988213,-0.7793543,-0.77909034,-0.77900237,-0.7791783,-0.77944225,-0.7793543,-0.7792663,-0.7792663,-0.7793543,-0.7796182,-0.77988213,-0.7800581,-0.7800581,-0.7796182,-0.77900237,-0.7788264,-0.7791783,-0.7795302,-0.7801461,-0.7809379,-0.7813778,-0.7817297,-0.7821696,-0.7825215,-0.7820816,-0.7809379,-0.7800581,-0.7795302,-0.77944225,-0.77944225,-0.7795302,-0.77988213,-0.7801461,-0.7799701,-0.7797062,-0.77979416,-0.77988213,-0.7797062,-0.77979416,-0.7800581,-0.7802341,-0.7809379,-0.78304935,-0.785073,-0.78560084,-0.78560084,-0.78524894,-0.7843691,-0.78366524,-0.78331333,-0.78225756,-0.7813778,-0.7813778,-0.7799701,-0.7757471,-0.77240384,-0.7725798,-0.7758351,-0.78041005,-0.7840172,-0.7857768,-0.7861287,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7864806,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7861287,-0.7853369,-0.7831373,-0.7792663,-0.77425146,-0.7724918,-0.776099,-0.780586,-0.78155375,-0.78076196,-0.7813778,-0.7832253,-0.7841052,-0.78428113,-0.784721,-0.7853369,-0.7856888,-0.78489697,-0.78296137,-0.78155375,-0.78111386,-0.78084993,-0.780586,-0.780586,-0.780674,-0.78084993,-0.78084993,-0.780498,-0.780498,-0.78076196,-0.78084993,-0.780586,-0.780498,-0.780498,-0.780586,-0.780498,-0.7800581,-0.7791783,-0.77829856,-0.77785856,-0.7774187,-0.7768908,-0.7765389,-0.776187,-0.7759231,-0.7759231,-0.7758351,-0.7757471,-0.7758351,-0.7759231,-0.7759231,-0.776099,-0.7766269,-0.7768908,-0.77706677,-0.7773307,-0.7775946,-0.7777706,-0.77785856,-0.7776826,-0.7776826,-0.7788264,-0.7800581,-0.780498,-0.78084993,-0.7812898,-0.78155375,-0.7819936,-0.78234553,-0.7825215,-0.7824335,-0.78260946,-0.78304935,-0.7831373,-0.7827854,-0.7821696,-0.7813778,-0.78076196,-0.780586,-0.78041005,-0.7800581,-0.7795302,-0.77909034,-0.77909034,-0.780586,-0.7819936,-0.7809379,-0.7789144,-0.77873844,-0.7792663,-0.7799701,-0.7809379,-0.7812898,-0.7813778,-0.7817297,-0.7821696,-0.7821696,-0.7820816,-0.7819936,-0.7816417,-0.78120184,-0.78146577,-0.7816417,-0.78146577,-0.78111386,-0.780674,-0.780498,-0.7799701,-0.7793543,-0.77909034,-0.7791783,-0.7792663,-0.7792663,-0.7792663,-0.7791783,-0.7792663,-0.7793543,-0.7797062,-0.7800581,-0.7801461,-0.7801461,-0.7799701,-0.7793543,-0.77873844,-0.77865046,-0.77900237,-0.77979416,-0.78076196,-0.7810259,-0.7810259,-0.7816417,-0.78234553,-0.78225756,-0.78146577,-0.780586,-0.7797062,-0.7792663,-0.7793543,-0.7796182,-0.7797062,-0.7797062,-0.7797062,-0.7797062,-0.77979416,-0.7799701,-0.7799701,-0.77988213,-0.7800581,-0.7801461,-0.7801461,-0.7812898,-0.7838412,-0.7854249,-0.78560084,-0.7854249,-0.784809,-0.7840172,-0.7837532,-0.7828734,-0.7817297,-0.78146577,-0.77979416,-0.77557117,-0.77240384,-0.77240384,-0.77504325,-0.7792663,-0.78331333,-0.78560084,-0.7862167,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7861287,-0.7853369,-0.78260946,-0.7781225,-0.77310777,-0.7722279,-0.77680284,-0.7813778,-0.78120184,-0.7801461,-0.7812898,-0.7832253,-0.7840172,-0.78454506,-0.785073,-0.78560084,-0.7854249,-0.7837532,-0.78190565,-0.78111386,-0.7809379,-0.7810259,-0.7809379,-0.78076196,-0.780586,-0.78084993,-0.7809379,-0.780674,-0.780586,-0.78084993,-0.78084993,-0.780586,-0.780498,-0.78076196,-0.78084993,-0.7803221,-0.7792663,-0.77838653,-0.7777706,-0.77750665,-0.77715474,-0.77671486,-0.77636296,-0.776187,-0.77601105,-0.77601105,-0.77601105,-0.7759231,-0.7759231,-0.77601105,-0.776099,-0.77636296,-0.7766269,-0.7766269,-0.77680284,-0.7772427,-0.77750665,-0.7775946,-0.7774187,-0.7774187,-0.7780345,-0.77900237,-0.7797062,-0.7801461,-0.78076196,-0.78146577,-0.78190565,-0.7824335,-0.78296137,-0.7832253,-0.78304935,-0.7827854,-0.7827854,-0.78269744,-0.7821696,-0.78155375,-0.78111386,-0.78084993,-0.780674,-0.7803221,-0.7797062,-0.7792663,-0.77873844,-0.77865046,-0.78041005,-0.78190565,-0.780674,-0.77865046,-0.77865046,-0.7792663,-0.7797062,-0.780674,-0.78146577,-0.78146577,-0.7816417,-0.7821696,-0.78225756,-0.7819936,-0.78190565,-0.7817297,-0.78146577,-0.7816417,-0.7816417,-0.7812898,-0.7809379,-0.780674,-0.780586,-0.7802341,-0.7796182,-0.7792663,-0.7795302,-0.77988213,-0.7797062,-0.7793543,-0.7792663,-0.7793543,-0.7795302,-0.77979416,-0.7801461,-0.7801461,-0.7800581,-0.7800581,-0.7796182,-0.7789144,-0.77838653,-0.77829856,-0.77900237,-0.78041005,-0.7810259,-0.780674,-0.78084993,-0.7818177,-0.78225756,-0.7818177,-0.78076196,-0.7797062,-0.7791783,-0.7793543,-0.7796182,-0.7797062,-0.7795302,-0.7795302,-0.77979416,-0.77988213,-0.7799701,-0.7799701,-0.7799701,-0.7799701,-0.7800581,-0.77988213,-0.7801461,-0.7820816,-0.784721,-0.78560084,-0.7853369,-0.785073,-0.7844571,-0.7839292,-0.78331333,-0.7821696,-0.78155375,-0.7802341,-0.7766269,-0.77310777,-0.7722279,-0.7744274,-0.7785625,-0.78269744,-0.7853369,-0.7861287,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7863926,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7862167,-0.7860407,-0.78524894,-0.78234553,-0.77750665,-0.7725798,-0.7721399,-0.77671486,-0.78111386,-0.78120184,-0.7803221,-0.7812898,-0.7831373,-0.78419316,-0.784721,-0.78524894,-0.78560084,-0.784809,-0.7827854,-0.7812898,-0.7810259,-0.7809379,-0.7810259,-0.78120184,-0.78111386,-0.78084993,-0.78076196,-0.78076196,-0.78076196,-0.78076196,-0.7810259,-0.7809379,-0.780586,-0.780586,-0.7810259,-0.7809379,-0.7799701,-0.7788264,-0.7781225,-0.7776826,-0.7774187,-0.77706677,-0.7766269,-0.77636296,-0.776187,-0.776187,-0.77636296,-0.776275,-0.776187,-0.776275,-0.776275,-0.776275,-0.7765389,-0.77671486,-0.7766269,-0.77680284,-0.7772427,-0.77750665,-0.7773307,-0.77706677,-0.7774187,-0.7785625,-0.7795302,-0.77979416,-0.7799701,-0.7803221,-0.7809379,-0.7816417,-0.78234553,-0.7827854,-0.78296137,-0.7828734,-0.7825215,-0.78234553,-0.7821696,-0.7816417,-0.78120184,-0.7810259,-0.78084993,-0.780586,-0.77988213,-0.7791783,-0.7788264,-0.77829856,-0.77821046,-0.7800581,-0.7817297,-0.780674,-0.7785625,-0.77838653,-0.77900237,-0.77944225,-0.7801461,-0.7810259,-0.78155375,-0.7817297,-0.78225756,-0.78269744,-0.7824335,-0.7821696,-0.7818177,-0.78146577,-0.7813778,-0.78120184,-0.78084993,-0.780674,-0.780498,-0.7803221,-0.7802341,-0.77979416,-0.7795302,-0.7797062,-0.7801461,-0.7802341,-0.7799701,-0.7797062,-0.7796182,-0.7796182,-0.77979416,-0.7800581,-0.7800581,-0.7799701,-0.7801461,-0.7799701,-0.7791783,-0.77829856,-0.77794653,-0.77838653,-0.7795302,-0.7802341,-0.7803221,-0.780674,-0.78146577,-0.7820816,-0.7818177,-0.780674,-0.7796182,-0.7792663,-0.7795302,-0.7797062,-0.7797062,-0.7797062,-0.7797062,-0.7799701,-0.7801461,-0.7800581,-0.7799701,-0.7800581,-0.7800581,-0.77988213,-0.7797062,-0.7797062,-0.78076196,-0.78366524,-0.78551286,-0.78551286,-0.78516096,-0.784721,-0.7841052,-0.78357726,-0.7824335,-0.7817297,-0.7812898,-0.77865046,-0.77433944,-0.7724918,-0.7745154,-0.77838653,-0.7824335,-0.78516096,-0.7860407,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.7864806,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7860407,-0.785073,-0.7819936,-0.7769788,-0.7724918,-0.7724918,-0.77636296,-0.7803221,-0.78146577,-0.7813778,-0.7817297,-0.7832253,-0.7843691,-0.784809,-0.7853369,-0.78551286,-0.7840172,-0.7819936,-0.7810259,-0.7809379,-0.78084993,-0.78084993,-0.78111386,-0.78120184,-0.78111386,-0.78084993,-0.78076196,-0.78076196,-0.7809379,-0.7809379,-0.78076196,-0.780586,-0.780674,-0.7810259,-0.780586,-0.7793543,-0.7784745,-0.7780345,-0.7776826,-0.7774187,-0.77706677,-0.77671486,-0.7765389,-0.7765389,-0.7765389,-0.7766269,-0.7766269,-0.77645093,-0.7765389,-0.7765389,-0.7766269,-0.77671486,-0.77680284,-0.77680284,-0.7768908,-0.7772427,-0.7774187,-0.7773307,-0.7772427,-0.7777706,-0.77900237,-0.7799701,-0.7800581,-0.7799701,-0.77988213,-0.7800581,-0.780674,-0.78155375,-0.7819936,-0.7818177,-0.78155375,-0.7816417,-0.7818177,-0.7817297,-0.7812898,-0.7809379,-0.78084993,-0.78076196,-0.78041005,-0.77979416,-0.77909034,-0.77865046,-0.77829856,-0.77838653,-0.77979416,-0.78120184,-0.780674,-0.7788264,-0.77838653,-0.7788264,-0.7791783,-0.7796182,-0.7802341,-0.78111386,-0.7818177,-0.78260946,-0.7831373,-0.7828734,-0.7824335,-0.78190565,-0.7812898,-0.78084993,-0.780586,-0.7803221,-0.7802341,-0.7802341,-0.7802341,-0.7801461,-0.7801461,-0.7799701,-0.77988213,-0.7800581,-0.7803221,-0.78041005,-0.7803221,-0.7800581,-0.77979416,-0.7796182,-0.77988213,-0.7800581,-0.7799701,-0.7801461,-0.7800581,-0.7793543,-0.7784745,-0.7781225,-0.77829856,-0.7789144,-0.77909034,-0.77900237,-0.7797062,-0.7810259,-0.7817297,-0.7813778,-0.78041005,-0.7797062,-0.7796182,-0.7796182,-0.7796182,-0.7797062,-0.77988213,-0.7800581,-0.7801461,-0.7803221,-0.7801461,-0.7800581,-0.7800581,-0.7800581,-0.7797062,-0.7796182,-0.7797062,-0.7801461,-0.7824335,-0.785073,-0.7857768,-0.7854249,-0.78489697,-0.7843691,-0.7838412,-0.7827854,-0.7819936,-0.78225756,-0.7799701,-0.7749553,-0.771788,-0.7732837,-0.7774187,-0.78190565,-0.78498495,-0.78595275,-0.78630465,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7862167,-0.7861287,-0.78630465,-0.7863926,-0.7864806,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.78630465,-0.7860407,-0.784809,-0.7816417,-0.77680284,-0.7726679,-0.7733717,-0.77706677,-0.7799701,-0.7810259,-0.7813778,-0.7821696,-0.78357726,-0.784721,-0.785073,-0.7854249,-0.78489697,-0.78296137,-0.78146577,-0.7810259,-0.7809379,-0.78084993,-0.78084993,-0.7809379,-0.7810259,-0.78084993,-0.78076196,-0.78076196,-0.78076196,-0.7809379,-0.7809379,-0.78076196,-0.780674,-0.7809379,-0.78084993,-0.7801461,-0.7791783,-0.7784745,-0.7780345,-0.7776826,-0.7774187,-0.77706677,-0.7768908,-0.7768908,-0.77680284,-0.7768908,-0.7768908,-0.7768908,-0.77680284,-0.77671486,-0.77680284,-0.77680284,-0.77680284,-0.7768908,-0.7769788,-0.77706677,-0.7772427,-0.7773307,-0.77750665,-0.7776826,-0.7781225,-0.7792663,-0.7801461,-0.7802341,-0.7800581,-0.7797062,-0.7796182,-0.7799701,-0.78041005,-0.780498,-0.7803221,-0.7801461,-0.7803221,-0.78084993,-0.78111386,-0.7810259,-0.7809379,-0.7809379,-0.7809379,-0.780586,-0.7799701,-0.7793543,-0.77909034,-0.7789144,-0.77900237,-0.77988213,-0.7810259,-0.780674,-0.77909034,-0.7788264,-0.7792663,-0.7793543,-0.77944225,-0.77979416,-0.78041005,-0.7813778,-0.78234553,-0.7827854,-0.7825215,-0.7821696,-0.7816417,-0.78084993,-0.7803221,-0.7799701,-0.7799701,-0.7800581,-0.7800581,-0.7802341,-0.78041005,-0.78041005,-0.7802341,-0.7801461,-0.7802341,-0.7802341,-0.780586,-0.7809379,-0.78076196,-0.7802341,-0.7797062,-0.77979416,-0.7799701,-0.77979416,-0.77988213,-0.7799701,-0.7795302,-0.77865046,-0.77821046,-0.7784745,-0.77909034,-0.77900237,-0.77829856,-0.77865046,-0.7803221,-0.78120184,-0.78076196,-0.7800581,-0.77979416,-0.77979416,-0.77979416,-0.7796182,-0.7797062,-0.77988213,-0.7801461,-0.7803221,-0.7802341,-0.7801461,-0.7800581,-0.7799701,-0.77988213,-0.7796182,-0.7795302,-0.7796182,-0.7796182,-0.78120184,-0.7841052,-0.7857768,-0.7856888,-0.78516096,-0.78454506,-0.7840172,-0.7831373,-0.78234553,-0.78296137,-0.78120184,-0.77530724,-0.7709962,-0.77205193,-0.776275,-0.78120184,-0.784721,-0.7858648,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7861287,-0.7861287,-0.78630465,-0.78630465,-0.7864806,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7860407,-0.784809,-0.78146577,-0.7766269,-0.7726679,-0.77319574,-0.77680284,-0.7795302,-0.78041005,-0.7813778,-0.7827854,-0.7841052,-0.78489697,-0.7853369,-0.78524894,-0.7839292,-0.7820816,-0.78120184,-0.78120184,-0.78111386,-0.7809379,-0.7809379,-0.78084993,-0.78076196,-0.780674,-0.780674,-0.780674,-0.780674,-0.78084993,-0.7809379,-0.78084993,-0.7809379,-0.78111386,-0.780674,-0.7797062,-0.7789144,-0.77838653,-0.7780345,-0.7777706,-0.7775946,-0.7774187,-0.77715474,-0.7769788,-0.77706677,-0.77715474,-0.77715474,-0.77706677,-0.77706677,-0.7769788,-0.7768908,-0.77680284,-0.7768908,-0.7769788,-0.77706677,-0.7772427,-0.7773307,-0.77750665,-0.7777706,-0.77794653,-0.77838653,-0.7793543,-0.7799701,-0.7801461,-0.7800581,-0.77979416,-0.7796182,-0.7796182,-0.7796182,-0.7793543,-0.7791783,-0.77909034,-0.7793543,-0.7799701,-0.780674,-0.78111386,-0.78120184,-0.7813778,-0.7813778,-0.7809379,-0.78041005,-0.77988213,-0.7796182,-0.7792663,-0.77909034,-0.77979416,-0.7810259,-0.78076196,-0.7791783,-0.77909034,-0.77979416,-0.7797062,-0.7796182,-0.77988213,-0.78041005,-0.78111386,-0.78146577,-0.78155375,-0.78155375,-0.7812898,-0.7809379,-0.7803221,-0.7799701,-0.77979416,-0.7797062,-0.77979416,-0.7799701,-0.7802341,-0.78041005,-0.780498,-0.780498,-0.780498,-0.78041005,-0.7803221,-0.780498,-0.7809379,-0.7809379,-0.78041005,-0.77979416,-0.7797062,-0.77988213,-0.77979416,-0.7797062,-0.77988213,-0.7795302,-0.77865046,-0.77821046,-0.7785625,-0.7791783,-0.77909034,-0.77838653,-0.77838653,-0.7797062,-0.780586,-0.7803221,-0.77979416,-0.77988213,-0.7800581,-0.7800581,-0.77979416,-0.7797062,-0.77988213,-0.7802341,-0.78041005,-0.7802341,-0.7799701,-0.77988213,-0.77979416,-0.7797062,-0.7796182,-0.7795302,-0.7795302,-0.7792663,-0.7802341,-0.78304935,-0.7854249,-0.7857768,-0.7854249,-0.784809,-0.78419316,-0.78331333,-0.7825215,-0.7832253,-0.7816417,-0.77530724,-0.77082026,-0.7724918,-0.77680284,-0.78120184,-0.78463304,-0.7858648,-0.7861287,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.7864806,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7860407,-0.7844571,-0.7809379,-0.7766269,-0.77275586,-0.7722279,-0.7757471,-0.7795302,-0.780674,-0.78190565,-0.78357726,-0.78454506,-0.785073,-0.7854249,-0.784809,-0.78304935,-0.78146577,-0.7809379,-0.7810259,-0.78111386,-0.7809379,-0.78084993,-0.78076196,-0.780586,-0.780586,-0.780674,-0.78076196,-0.78076196,-0.78084993,-0.78084993,-0.780674,-0.7809379,-0.78111386,-0.78041005,-0.77944225,-0.7788264,-0.77838653,-0.7780345,-0.7777706,-0.7775946,-0.7774187,-0.7772427,-0.77706677,-0.77715474,-0.7773307,-0.7773307,-0.7772427,-0.77715474,-0.77715474,-0.77706677,-0.7769788,-0.7769788,-0.77706677,-0.77715474,-0.7774187,-0.7775946,-0.7776826,-0.77785856,-0.7781225,-0.77865046,-0.7793543,-0.77988213,-0.7799701,-0.77979416,-0.7796182,-0.77944225,-0.7791783,-0.7789144,-0.77873844,-0.77873844,-0.7789144,-0.7792663,-0.7797062,-0.78041005,-0.78120184,-0.78146577,-0.78155375,-0.78146577,-0.78111386,-0.780586,-0.7801461,-0.77979416,-0.77944225,-0.77900237,-0.77944225,-0.7810259,-0.7812898,-0.77944225,-0.7791783,-0.7799701,-0.77988213,-0.7797062,-0.7802341,-0.78084993,-0.7813778,-0.78146577,-0.7812898,-0.7810259,-0.78076196,-0.780498,-0.7801461,-0.77988213,-0.77979416,-0.7797062,-0.7796182,-0.7797062,-0.7800581,-0.7802341,-0.7803221,-0.78041005,-0.780498,-0.780498,-0.78041005,-0.78041005,-0.78076196,-0.78084993,-0.78041005,-0.77988213,-0.77979416,-0.7799701,-0.77988213,-0.7797062,-0.7797062,-0.7795302,-0.7788264,-0.77838653,-0.7785625,-0.77909034,-0.77909034,-0.77865046,-0.7784745,-0.77900237,-0.77988213,-0.7802341,-0.7800581,-0.7802341,-0.78041005,-0.7802341,-0.77988213,-0.77988213,-0.7800581,-0.7802341,-0.7802341,-0.7801461,-0.77988213,-0.77979416,-0.77979416,-0.7797062,-0.7796182,-0.7796182,-0.7795302,-0.7793543,-0.7799701,-0.78225756,-0.78498495,-0.7856888,-0.7854249,-0.785073,-0.78428113,-0.78331333,-0.78269744,-0.7827854,-0.7810259,-0.7754832,-0.77205193,-0.77530724,-0.77944225,-0.78190565,-0.7843691,-0.7858648,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.78630465,-0.7862167,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7864806,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.78630465,-0.78630465,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7858648,-0.78428113,-0.7810259,-0.77715474,-0.77310777,-0.7717,-0.7751312,-0.77979416,-0.78155375,-0.78269744,-0.7840172,-0.784809,-0.7853369,-0.7854249,-0.78428113,-0.7824335,-0.7812898,-0.7809379,-0.7810259,-0.78120184,-0.7810259,-0.78084993,-0.780674,-0.780586,-0.780586,-0.780586,-0.78076196,-0.78084993,-0.78084993,-0.78076196,-0.78076196,-0.7810259,-0.7810259,-0.7802341,-0.77944225,-0.77909034,-0.7784745,-0.7781225,-0.77785856,-0.7776826,-0.77750665,-0.7772427,-0.7769788,-0.77715474,-0.77750665,-0.77750665,-0.7774187,-0.7773307,-0.7772427,-0.77715474,-0.7772427,-0.7772427,-0.7772427,-0.7774187,-0.7775946,-0.7775946,-0.7776826,-0.77794653,-0.77838653,-0.7789144,-0.77944225,-0.7797062,-0.7797062,-0.77944225,-0.7791783,-0.7789144,-0.7785625,-0.77829856,-0.7784745,-0.77865046,-0.77900237,-0.7795302,-0.77988213,-0.7802341,-0.78111386,-0.7817297,-0.7818177,-0.7817297,-0.7812898,-0.78076196,-0.7802341,-0.77979416,-0.7796182,-0.7788264,-0.7788264,-0.78076196,-0.7817297,-0.77988213,-0.7792663,-0.7797062,-0.7795302,-0.77979416,-0.780586,-0.7812898,-0.78155375,-0.7816417,-0.78146577,-0.78111386,-0.7809379,-0.780586,-0.7802341,-0.77988213,-0.7797062,-0.7796182,-0.7795302,-0.7795302,-0.7797062,-0.77988213,-0.7800581,-0.7801461,-0.78041005,-0.780498,-0.78041005,-0.780498,-0.780586,-0.78076196,-0.780586,-0.7800581,-0.77988213,-0.7800581,-0.77988213,-0.7797062,-0.7797062,-0.77944225,-0.7789144,-0.7784745,-0.77873844,-0.7791783,-0.7792663,-0.77900237,-0.77865046,-0.77873844,-0.7797062,-0.780586,-0.780674,-0.780674,-0.780674,-0.7803221,-0.7799701,-0.7799701,-0.7800581,-0.7800581,-0.7799701,-0.77979416,-0.7797062,-0.7796182,-0.7796182,-0.7796182,-0.7796182,-0.7796182,-0.7796182,-0.7796182,-0.77988213,-0.78155375,-0.78428113,-0.78560084,-0.78551286,-0.78524894,-0.78454506,-0.78366524,-0.78296137,-0.78269744,-0.78076196,-0.77601105,-0.7732837,-0.776187,-0.7793543,-0.7812898,-0.7839292,-0.7856888,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7864806,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7857768,-0.78419316,-0.78111386,-0.77715474,-0.77319574,-0.7715241,-0.7745154,-0.77979416,-0.7824335,-0.7834893,-0.7843691,-0.785073,-0.78551286,-0.78516096,-0.78366524,-0.78190565,-0.78111386,-0.7809379,-0.78111386,-0.7813778,-0.7812898,-0.7809379,-0.780586,-0.78041005,-0.780498,-0.780586,-0.780674,-0.78084993,-0.7809379,-0.78084993,-0.78084993,-0.7810259,-0.78084993,-0.7799701,-0.7793543,-0.7789144,-0.77838653,-0.7781225,-0.7780345,-0.7777706,-0.77750665,-0.7773307,-0.77715474,-0.7773307,-0.77750665,-0.7775946,-0.7775946,-0.7775946,-0.7774187,-0.7773307,-0.7774187,-0.77750665,-0.77750665,-0.7775946,-0.7776826,-0.7776826,-0.77785856,-0.7781225,-0.7784745,-0.7789144,-0.77944225,-0.7796182,-0.7795302,-0.7791783,-0.77873844,-0.77838653,-0.77821046,-0.77829856,-0.7784745,-0.7789144,-0.7793543,-0.77988213,-0.7802341,-0.780498,-0.7812898,-0.7820816,-0.7821696,-0.7821696,-0.78190565,-0.7812898,-0.780498,-0.7799701,-0.7797062,-0.7789144,-0.7784745,-0.7802341,-0.7817297,-0.7802341,-0.7791783,-0.7792663,-0.77944225,-0.7799701,-0.78084993,-0.7813778,-0.78146577,-0.78146577,-0.78146577,-0.78120184,-0.7810259,-0.78084993,-0.780498,-0.7800581,-0.7797062,-0.7796182,-0.7796182,-0.77944225,-0.77944225,-0.7797062,-0.77988213,-0.7800581,-0.7802341,-0.780498,-0.780498,-0.780498,-0.780586,-0.780674,-0.780674,-0.78041005,-0.7800581,-0.7800581,-0.7800581,-0.77988213,-0.7797062,-0.77944225,-0.77900237,-0.77865046,-0.7788264,-0.7792663,-0.7793543,-0.7792663,-0.77909034,-0.7791783,-0.7801461,-0.78120184,-0.78120184,-0.7810259,-0.78076196,-0.7802341,-0.77988213,-0.7799701,-0.7799701,-0.7799701,-0.77979416,-0.7795302,-0.77944225,-0.7795302,-0.7797062,-0.7799701,-0.7801461,-0.7799701,-0.7797062,-0.7796182,-0.77988213,-0.7810259,-0.78357726,-0.7853369,-0.78560084,-0.7853369,-0.78489697,-0.7840172,-0.7832253,-0.7831373,-0.7810259,-0.77557117,-0.77205193,-0.7741635,-0.77750665,-0.7802341,-0.78331333,-0.7853369,-0.78595275,-0.7862167,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7858648,-0.7841052,-0.78076196,-0.7768908,-0.7732837,-0.771788,-0.77469134,-0.7801461,-0.78331333,-0.7840172,-0.78463304,-0.7853369,-0.78560084,-0.784809,-0.78304935,-0.78146577,-0.7809379,-0.7809379,-0.7812898,-0.78155375,-0.78155375,-0.78111386,-0.780674,-0.780586,-0.780674,-0.780586,-0.78076196,-0.7810259,-0.7810259,-0.78084993,-0.78076196,-0.78084993,-0.780674,-0.7800581,-0.7795302,-0.7789144,-0.77829856,-0.7781225,-0.77794653,-0.7776826,-0.77750665,-0.7772427,-0.7772427,-0.7774187,-0.77750665,-0.77750665,-0.7775946,-0.7776826,-0.77750665,-0.7774187,-0.7774187,-0.7775946,-0.7777706,-0.7777706,-0.7777706,-0.77794653,-0.7781225,-0.77821046,-0.77838653,-0.77873844,-0.7792663,-0.7795302,-0.7793543,-0.7789144,-0.7784745,-0.77821046,-0.77821046,-0.77838653,-0.77873844,-0.7792663,-0.77979416,-0.7802341,-0.780498,-0.780674,-0.7812898,-0.7819936,-0.78225756,-0.7824335,-0.7825215,-0.7819936,-0.7809379,-0.7801461,-0.77979416,-0.7791783,-0.77865046,-0.7799701,-0.78155375,-0.78041005,-0.7791783,-0.7791783,-0.7796182,-0.7801461,-0.7809379,-0.78146577,-0.78155375,-0.78146577,-0.7813778,-0.78120184,-0.7810259,-0.78084993,-0.78076196,-0.78041005,-0.7799701,-0.7797062,-0.7797062,-0.7796182,-0.77944225,-0.7795302,-0.7797062,-0.77979416,-0.7799701,-0.7803221,-0.78041005,-0.780498,-0.780586,-0.780674,-0.78076196,-0.780674,-0.7803221,-0.7801461,-0.7801461,-0.7799701,-0.77979416,-0.7795302,-0.77900237,-0.77865046,-0.77873844,-0.7792663,-0.7795302,-0.77944225,-0.7792663,-0.7796182,-0.780586,-0.7812898,-0.7813778,-0.7812898,-0.78076196,-0.7800581,-0.77988213,-0.7799701,-0.7799701,-0.77979416,-0.7796182,-0.7796182,-0.7797062,-0.7799701,-0.780498,-0.78076196,-0.780498,-0.7801461,-0.77988213,-0.77979416,-0.7799701,-0.7809379,-0.78304935,-0.78498495,-0.7856888,-0.78551286,-0.78524894,-0.7843691,-0.78357726,-0.78331333,-0.780674,-0.77469134,-0.77055633,-0.77231586,-0.776275,-0.7797062,-0.7827854,-0.78489697,-0.7858648,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.78595275,-0.78428113,-0.78120184,-0.7774187,-0.7732837,-0.771788,-0.7751312,-0.780586,-0.7834893,-0.78419316,-0.784721,-0.7854249,-0.78551286,-0.7844571,-0.78260946,-0.7812898,-0.7809379,-0.7810259,-0.7812898,-0.78146577,-0.7816417,-0.78146577,-0.7809379,-0.78084993,-0.78076196,-0.780674,-0.78076196,-0.7810259,-0.7810259,-0.7809379,-0.78076196,-0.78076196,-0.780674,-0.7802341,-0.7797062,-0.77900237,-0.77838653,-0.7781225,-0.77785856,-0.7775946,-0.77750665,-0.7772427,-0.77706677,-0.7772427,-0.7774187,-0.77750665,-0.7775946,-0.7775946,-0.7774187,-0.7774187,-0.77750665,-0.7775946,-0.77785856,-0.77785856,-0.77785856,-0.77794653,-0.7781225,-0.77821046,-0.77829856,-0.7785625,-0.77909034,-0.7792663,-0.7789144,-0.7784745,-0.77838653,-0.77838653,-0.77838653,-0.7784745,-0.77900237,-0.7797062,-0.7800581,-0.780498,-0.78076196,-0.7809379,-0.78120184,-0.7818177,-0.78234553,-0.78260946,-0.78269744,-0.78234553,-0.7813778,-0.78041005,-0.7799701,-0.7796182,-0.77900237,-0.77988213,-0.78146577,-0.78041005,-0.7791783,-0.7793543,-0.7797062,-0.7801461,-0.78076196,-0.78120184,-0.7813778,-0.7813778,-0.7813778,-0.7812898,-0.7810259,-0.78084993,-0.78084993,-0.78076196,-0.78041005,-0.7799701,-0.77988213,-0.77979416,-0.7796182,-0.7795302,-0.7795302,-0.7795302,-0.7797062,-0.7800581,-0.7803221,-0.780498,-0.780498,-0.780498,-0.780674,-0.780674,-0.78041005,-0.7802341,-0.7801461,-0.7800581,-0.77979416,-0.7795302,-0.77900237,-0.77865046,-0.77873844,-0.7791783,-0.7796182,-0.7797062,-0.7796182,-0.7801461,-0.78084993,-0.7812898,-0.7813778,-0.78120184,-0.78041005,-0.77988213,-0.77988213,-0.77979416,-0.7797062,-0.7797062,-0.7799701,-0.7802341,-0.780586,-0.78076196,-0.780674,-0.78041005,-0.7800581,-0.7800581,-0.7799701,-0.7799701,-0.7802341,-0.7810259,-0.7827854,-0.784809,-0.7856888,-0.78560084,-0.7853369,-0.7844571,-0.78366524,-0.78331333,-0.7809379,-0.77530724,-0.77090824,-0.77205193,-0.7758351,-0.77944225,-0.7825215,-0.7844571,-0.7857768,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7858648,-0.7843691,-0.78146577,-0.7772427,-0.77284384,-0.77205193,-0.77601105,-0.78120184,-0.78366524,-0.7843691,-0.78489697,-0.78560084,-0.78560084,-0.78428113,-0.78225756,-0.78111386,-0.7810259,-0.78111386,-0.78120184,-0.78120184,-0.7813778,-0.7813778,-0.7809379,-0.78076196,-0.78076196,-0.78076196,-0.78076196,-0.78084993,-0.7809379,-0.7809379,-0.78084993,-0.78084993,-0.780674,-0.7801461,-0.7796182,-0.77900237,-0.7784745,-0.77821046,-0.77794653,-0.7776826,-0.7775946,-0.7773307,-0.7772427,-0.7773307,-0.77750665,-0.7775946,-0.7776826,-0.7775946,-0.7775946,-0.7776826,-0.7777706,-0.7777706,-0.77785856,-0.77785856,-0.77794653,-0.77785856,-0.77794653,-0.77821046,-0.77838653,-0.7784745,-0.7788264,-0.7789144,-0.7784745,-0.77821046,-0.77821046,-0.77829856,-0.7785625,-0.7789144,-0.7795302,-0.7801461,-0.7803221,-0.780586,-0.78076196,-0.78084993,-0.78120184,-0.7816417,-0.78225756,-0.7825215,-0.7825215,-0.7825215,-0.7818177,-0.78076196,-0.7802341,-0.7800581,-0.7793543,-0.7796182,-0.7810259,-0.7803221,-0.77909034,-0.7792663,-0.77979416,-0.7803221,-0.7809379,-0.7812898,-0.7812898,-0.78120184,-0.78111386,-0.7810259,-0.78084993,-0.78076196,-0.78076196,-0.78076196,-0.780674,-0.780586,-0.7803221,-0.7800581,-0.7799701,-0.77988213,-0.7797062,-0.7796182,-0.7797062,-0.7799701,-0.7802341,-0.78041005,-0.78041005,-0.78041005,-0.78041005,-0.780498,-0.78041005,-0.7802341,-0.7801461,-0.7800581,-0.7799701,-0.7796182,-0.7791783,-0.7788264,-0.77873844,-0.7789144,-0.7793543,-0.77979416,-0.7801461,-0.780674,-0.78120184,-0.78146577,-0.7812898,-0.780498,-0.77979416,-0.7797062,-0.77979416,-0.7797062,-0.7797062,-0.77988213,-0.7803221,-0.78084993,-0.7810259,-0.780498,-0.7799701,-0.7797062,-0.7796182,-0.77988213,-0.7800581,-0.7802341,-0.780498,-0.7810259,-0.7824335,-0.78454506,-0.78560084,-0.78560084,-0.7854249,-0.784721,-0.78366524,-0.7834013,-0.78190565,-0.77680284,-0.771788,-0.7721399,-0.77530724,-0.7785625,-0.78155375,-0.7837532,-0.7853369,-0.7862167,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78595275,-0.78454506,-0.78146577,-0.77680284,-0.7724918,-0.7725798,-0.7769788,-0.7819936,-0.7839292,-0.78454506,-0.78524894,-0.7858648,-0.7856888,-0.7841052,-0.7819936,-0.7810259,-0.7810259,-0.78111386,-0.78111386,-0.7810259,-0.78111386,-0.78111386,-0.7809379,-0.78084993,-0.78084993,-0.780674,-0.780586,-0.78076196,-0.7809379,-0.78084993,-0.78084993,-0.78084993,-0.780586,-0.7800581,-0.7796182,-0.77909034,-0.77865046,-0.77838653,-0.7781225,-0.77785856,-0.7776826,-0.77750665,-0.7773307,-0.7774187,-0.7775946,-0.7776826,-0.7775946,-0.7775946,-0.7777706,-0.7777706,-0.7777706,-0.77785856,-0.77785856,-0.77794653,-0.7780345,-0.77785856,-0.77785856,-0.7780345,-0.77821046,-0.7785625,-0.77900237,-0.7789144,-0.7785625,-0.77829856,-0.77821046,-0.77829856,-0.7788264,-0.7795302,-0.7803221,-0.780586,-0.78041005,-0.780498,-0.780586,-0.78076196,-0.78111386,-0.78155375,-0.78190565,-0.7821696,-0.7824335,-0.78260946,-0.7820816,-0.7810259,-0.780498,-0.78041005,-0.7797062,-0.77944225,-0.78041005,-0.7801461,-0.7792663,-0.77944225,-0.7802341,-0.78084993,-0.78146577,-0.7817297,-0.7816417,-0.7813778,-0.7809379,-0.780674,-0.780498,-0.780498,-0.78041005,-0.78041005,-0.780498,-0.78076196,-0.7809379,-0.78076196,-0.780586,-0.78041005,-0.7803221,-0.7803221,-0.7802341,-0.7800581,-0.7800581,-0.7802341,-0.7803221,-0.7803221,-0.780498,-0.780586,-0.78041005,-0.7803221,-0.7802341,-0.7801461,-0.7800581,-0.7797062,-0.7793543,-0.77900237,-0.7788264,-0.7789144,-0.77909034,-0.7793543,-0.7800581,-0.78084993,-0.78111386,-0.78111386,-0.780674,-0.77979416,-0.7795302,-0.7796182,-0.7797062,-0.77979416,-0.77988213,-0.7801461,-0.780498,-0.780674,-0.7802341,-0.7797062,-0.7796182,-0.7797062,-0.7796182,-0.77979416,-0.7800581,-0.7802341,-0.780674,-0.7812898,-0.78234553,-0.78419316,-0.7854249,-0.78560084,-0.7854249,-0.785073,-0.78419316,-0.7834893,-0.78260946,-0.77900237,-0.7736356,-0.77161205,-0.7738116,-0.77680284,-0.77988213,-0.7827854,-0.784809,-0.7858648,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7860407,-0.78463304,-0.7813778,-0.77680284,-0.7734597,-0.7740755,-0.7775946,-0.7818177,-0.7839292,-0.78454506,-0.78524894,-0.78595275,-0.7856888,-0.7839292,-0.7818177,-0.7810259,-0.7810259,-0.7810259,-0.78120184,-0.78120184,-0.78120184,-0.78111386,-0.78111386,-0.7809379,-0.78076196,-0.780498,-0.780498,-0.780674,-0.78084993,-0.78076196,-0.78076196,-0.78076196,-0.780498,-0.7800581,-0.7796182,-0.77909034,-0.77865046,-0.77838653,-0.7781225,-0.77794653,-0.7777706,-0.7775946,-0.77750665,-0.77750665,-0.7776826,-0.7776826,-0.7775946,-0.7775946,-0.7777706,-0.7777706,-0.77785856,-0.77794653,-0.7780345,-0.77794653,-0.7780345,-0.7780345,-0.77794653,-0.77785856,-0.77785856,-0.7785625,-0.7792663,-0.7792663,-0.7791783,-0.77900237,-0.7788264,-0.77900237,-0.7797062,-0.780498,-0.7809379,-0.78076196,-0.7803221,-0.7803221,-0.780586,-0.78076196,-0.7810259,-0.7812898,-0.7817297,-0.7821696,-0.7824335,-0.7824335,-0.7819936,-0.7812898,-0.78076196,-0.7809379,-0.780498,-0.77988213,-0.7800581,-0.7799701,-0.7795302,-0.77988213,-0.780586,-0.78120184,-0.7817297,-0.7819936,-0.7819936,-0.7817297,-0.78120184,-0.78076196,-0.78041005,-0.7802341,-0.7800581,-0.7799701,-0.7800581,-0.7803221,-0.78076196,-0.78111386,-0.78111386,-0.7809379,-0.7809379,-0.7809379,-0.780674,-0.7802341,-0.7799701,-0.7800581,-0.7800581,-0.7802341,-0.780586,-0.780674,-0.780586,-0.780586,-0.78041005,-0.7802341,-0.7800581,-0.77979416,-0.77944225,-0.7791783,-0.7789144,-0.77900237,-0.77909034,-0.7793543,-0.7800581,-0.78076196,-0.78084993,-0.780586,-0.77988213,-0.77944225,-0.77944225,-0.7796182,-0.77979416,-0.77988213,-0.77988213,-0.7800581,-0.7802341,-0.77988213,-0.7796182,-0.7795302,-0.7797062,-0.77988213,-0.77988213,-0.7799701,-0.7801461,-0.7803221,-0.78076196,-0.7813778,-0.78225756,-0.7838412,-0.78524894,-0.78560084,-0.78560084,-0.7853369,-0.78454506,-0.7837532,-0.7827854,-0.780498,-0.776099,-0.7725798,-0.77319574,-0.77601105,-0.77909034,-0.78225756,-0.78454506,-0.78551286,-0.7861287,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7862167,-0.784721,-0.7813778,-0.77706677,-0.7749553,-0.7759231,-0.77829856,-0.7816417,-0.7839292,-0.784721,-0.7854249,-0.78595275,-0.78560084,-0.7837532,-0.7816417,-0.78111386,-0.78111386,-0.78111386,-0.7813778,-0.78146577,-0.7813778,-0.78120184,-0.7810259,-0.7809379,-0.78076196,-0.780674,-0.780586,-0.780586,-0.78076196,-0.78076196,-0.78076196,-0.78076196,-0.780498,-0.7801461,-0.77979416,-0.7791783,-0.77865046,-0.77838653,-0.77821046,-0.7780345,-0.77785856,-0.7776826,-0.7775946,-0.7776826,-0.7777706,-0.7776826,-0.7775946,-0.7775946,-0.7777706,-0.77785856,-0.77794653,-0.7780345,-0.7780345,-0.77794653,-0.77785856,-0.7780345,-0.7781225,-0.77785856,-0.77785856,-0.7785625,-0.7792663,-0.7795302,-0.7797062,-0.77979416,-0.7796182,-0.77979416,-0.780498,-0.7809379,-0.780674,-0.7803221,-0.7802341,-0.7803221,-0.780498,-0.78084993,-0.78120184,-0.7816417,-0.7820816,-0.7825215,-0.78269744,-0.7825215,-0.7819936,-0.7812898,-0.78084993,-0.78120184,-0.7810259,-0.7803221,-0.7799701,-0.7799701,-0.7799701,-0.7802341,-0.780674,-0.78120184,-0.7817297,-0.7819936,-0.7820816,-0.7819936,-0.78155375,-0.78111386,-0.780586,-0.7801461,-0.7799701,-0.77979416,-0.7797062,-0.77988213,-0.7803221,-0.78076196,-0.7809379,-0.7809379,-0.78111386,-0.7812898,-0.7809379,-0.78041005,-0.7801461,-0.7800581,-0.77988213,-0.7800581,-0.78041005,-0.780674,-0.780674,-0.780586,-0.78041005,-0.7802341,-0.7800581,-0.77979416,-0.7795302,-0.7792663,-0.77909034,-0.77909034,-0.7793543,-0.77979416,-0.78041005,-0.78084993,-0.780674,-0.7801461,-0.7796182,-0.7793543,-0.7793543,-0.7796182,-0.77979416,-0.7797062,-0.77979416,-0.77988213,-0.7797062,-0.77944225,-0.77944225,-0.7796182,-0.77979416,-0.7800581,-0.7801461,-0.7803221,-0.78041005,-0.780674,-0.7810259,-0.78146577,-0.7819936,-0.78366524,-0.78516096,-0.78551286,-0.7856888,-0.78551286,-0.784721,-0.7839292,-0.7827854,-0.7799701,-0.7754832,-0.7722279,-0.7725798,-0.77521926,-0.7784745,-0.7818177,-0.78419316,-0.7853369,-0.7860407,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7862167,-0.78489697,-0.78155375,-0.7774187,-0.77521926,-0.7758351,-0.77829856,-0.7819936,-0.78419316,-0.78498495,-0.78560084,-0.78595275,-0.78560084,-0.78366524,-0.78146577,-0.78111386,-0.78120184,-0.78120184,-0.7812898,-0.78146577,-0.78146577,-0.7813778,-0.78111386,-0.7809379,-0.78076196,-0.78076196,-0.780674,-0.780674,-0.78076196,-0.78084993,-0.7809379,-0.78084993,-0.780498,-0.7801461,-0.77988213,-0.7793543,-0.77873844,-0.7784745,-0.77838653,-0.77821046,-0.7780345,-0.77785856,-0.7777706,-0.7777706,-0.7777706,-0.7776826,-0.7775946,-0.7776826,-0.77785856,-0.77785856,-0.77794653,-0.77794653,-0.77794653,-0.77785856,-0.7776826,-0.77785856,-0.7780345,-0.77794653,-0.7780345,-0.7789144,-0.7796182,-0.7797062,-0.7797062,-0.77979416,-0.7795302,-0.7797062,-0.78041005,-0.780586,-0.7803221,-0.7802341,-0.7803221,-0.7803221,-0.780498,-0.7810259,-0.7816417,-0.7820816,-0.7824335,-0.78269744,-0.7828734,-0.78260946,-0.7818177,-0.7810259,-0.780674,-0.78084993,-0.78076196,-0.7802341,-0.77979416,-0.7797062,-0.7799701,-0.780498,-0.78084993,-0.78120184,-0.7817297,-0.7819936,-0.7820816,-0.7819936,-0.7818177,-0.7813778,-0.78076196,-0.7802341,-0.7799701,-0.7796182,-0.77944225,-0.7796182,-0.7800581,-0.78041005,-0.780586,-0.780498,-0.780586,-0.78084993,-0.78084993,-0.780586,-0.780498,-0.78041005,-0.7799701,-0.77988213,-0.7803221,-0.780674,-0.78076196,-0.78076196,-0.780586,-0.78041005,-0.7801461,-0.77988213,-0.7797062,-0.7793543,-0.7791783,-0.77944225,-0.7799701,-0.7802341,-0.780498,-0.780586,-0.7803221,-0.7799701,-0.7796182,-0.77944225,-0.7793543,-0.7796182,-0.77979416,-0.7796182,-0.7795302,-0.7796182,-0.7795302,-0.77944225,-0.7795302,-0.7797062,-0.77979416,-0.7800581,-0.7803221,-0.78041005,-0.780586,-0.780674,-0.7810259,-0.7813778,-0.78190565,-0.78366524,-0.78516096,-0.7854249,-0.7856888,-0.7856888,-0.78489697,-0.78419316,-0.7828734,-0.77865046,-0.7730198,-0.7706443,-0.77205193,-0.7747793,-0.7776826,-0.78084993,-0.78366524,-0.78524894,-0.78595275,-0.7862167,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7860407,-0.784721,-0.7817297,-0.7777706,-0.7744274,-0.7741635,-0.77750665,-0.78225756,-0.78454506,-0.78516096,-0.7856888,-0.78595275,-0.7857768,-0.7840172,-0.78155375,-0.7809379,-0.7810259,-0.7810259,-0.78111386,-0.78120184,-0.7813778,-0.78146577,-0.7813778,-0.7810259,-0.7809379,-0.78084993,-0.78076196,-0.78076196,-0.78084993,-0.7809379,-0.7810259,-0.7809379,-0.780498,-0.7801461,-0.77988213,-0.77944225,-0.7789144,-0.7785625,-0.77838653,-0.77821046,-0.7781225,-0.7780345,-0.77785856,-0.7777706,-0.7777706,-0.7777706,-0.7776826,-0.7777706,-0.77785856,-0.77785856,-0.77794653,-0.77785856,-0.77785856,-0.7777706,-0.7776826,-0.7777706,-0.77794653,-0.77794653,-0.77821046,-0.7791783,-0.77979416,-0.77979416,-0.7797062,-0.7796182,-0.7792663,-0.77944225,-0.7801461,-0.78041005,-0.7803221,-0.7802341,-0.7802341,-0.78041005,-0.780674,-0.7812898,-0.78190565,-0.78225756,-0.7825215,-0.78269744,-0.78269744,-0.78225756,-0.78155375,-0.78084993,-0.780498,-0.78041005,-0.7802341,-0.7799701,-0.7796182,-0.7793543,-0.7796182,-0.7802341,-0.780674,-0.78111386,-0.7816417,-0.7818177,-0.7819936,-0.7820816,-0.7820816,-0.7817297,-0.7810259,-0.780498,-0.7800581,-0.7796182,-0.7793543,-0.7793543,-0.7796182,-0.7799701,-0.7803221,-0.7803221,-0.7801461,-0.7801461,-0.78041005,-0.780498,-0.780674,-0.78076196,-0.7803221,-0.7800581,-0.7802341,-0.780498,-0.78084993,-0.7809379,-0.78076196,-0.780498,-0.7802341,-0.7799701,-0.7797062,-0.7795302,-0.77944225,-0.77979416,-0.7803221,-0.78041005,-0.7802341,-0.7801461,-0.7801461,-0.77988213,-0.7796182,-0.7796182,-0.7797062,-0.77979416,-0.77979416,-0.7797062,-0.7796182,-0.7796182,-0.7796182,-0.7797062,-0.7797062,-0.7797062,-0.77988213,-0.7800581,-0.7801461,-0.7802341,-0.7802341,-0.7801461,-0.780586,-0.78111386,-0.78190565,-0.7837532,-0.78516096,-0.7854249,-0.78560084,-0.7857768,-0.785073,-0.78428113,-0.7831373,-0.7788264,-0.7725798,-0.7702924,-0.77196395,-0.7744274,-0.7769788,-0.7799701,-0.78304935,-0.78516096,-0.78595275,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78595275,-0.7844571,-0.7817297,-0.77794653,-0.77389956,-0.77275586,-0.77671486,-0.7824335,-0.784721,-0.78524894,-0.7856888,-0.7860407,-0.78595275,-0.78463304,-0.7824335,-0.7810259,-0.780674,-0.780586,-0.780674,-0.7809379,-0.78120184,-0.7813778,-0.7813778,-0.78111386,-0.7810259,-0.7809379,-0.78084993,-0.78076196,-0.7809379,-0.78111386,-0.78111386,-0.78111386,-0.78076196,-0.7803221,-0.7799701,-0.7796182,-0.77909034,-0.7788264,-0.7785625,-0.77829856,-0.7781225,-0.7781225,-0.77794653,-0.7777706,-0.7777706,-0.77785856,-0.7777706,-0.77785856,-0.77785856,-0.77794653,-0.7780345,-0.77794653,-0.77785856,-0.77785856,-0.7777706,-0.7777706,-0.77794653,-0.77821046,-0.77865046,-0.77944225,-0.7799701,-0.77979416,-0.7797062,-0.7797062,-0.7796182,-0.7796182,-0.7800581,-0.78041005,-0.78041005,-0.7802341,-0.7802341,-0.78041005,-0.78076196,-0.78146577,-0.7820816,-0.7824335,-0.78269744,-0.78269744,-0.78225756,-0.7816417,-0.78120184,-0.78084993,-0.78041005,-0.7800581,-0.77988213,-0.7797062,-0.77944225,-0.77909034,-0.7792663,-0.77988213,-0.780498,-0.7809379,-0.7812898,-0.78155375,-0.78190565,-0.7821696,-0.7821696,-0.7818177,-0.7813778,-0.7809379,-0.7803221,-0.77979416,-0.7793543,-0.7791783,-0.7793543,-0.7795302,-0.77988213,-0.7801461,-0.7801461,-0.7800581,-0.7801461,-0.78041005,-0.780674,-0.78084993,-0.780586,-0.7803221,-0.7802341,-0.7803221,-0.780674,-0.7809379,-0.78076196,-0.780498,-0.7803221,-0.7800581,-0.77979416,-0.7795302,-0.77988213,-0.78041005,-0.780586,-0.7803221,-0.7799701,-0.7799701,-0.7801461,-0.7800581,-0.77988213,-0.77988213,-0.7799701,-0.7799701,-0.77988213,-0.77988213,-0.77988213,-0.77988213,-0.7799701,-0.7799701,-0.77979416,-0.77979416,-0.7799701,-0.7802341,-0.7802341,-0.7801461,-0.7800581,-0.7800581,-0.7803221,-0.78084993,-0.7816417,-0.78357726,-0.78516096,-0.78524894,-0.78524894,-0.78560084,-0.78516096,-0.78428113,-0.7834013,-0.7796182,-0.7732837,-0.7702924,-0.7715241,-0.7737236,-0.776275,-0.7795302,-0.7827854,-0.78498495,-0.7858648,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7860407,-0.78454506,-0.7816417,-0.7777706,-0.77354765,-0.7721399,-0.77645093,-0.7827854,-0.78498495,-0.7853369,-0.7858648,-0.7860407,-0.78551286,-0.7838412,-0.7819936,-0.7809379,-0.780498,-0.78041005,-0.780498,-0.78076196,-0.7810259,-0.78120184,-0.78120184,-0.78111386,-0.7810259,-0.7810259,-0.78084993,-0.78076196,-0.7809379,-0.78111386,-0.78111386,-0.7810259,-0.78084993,-0.78041005,-0.7799701,-0.7795302,-0.77909034,-0.7789144,-0.77865046,-0.77829856,-0.7781225,-0.7781225,-0.77794653,-0.77785856,-0.7777706,-0.77785856,-0.77785856,-0.77794653,-0.77794653,-0.77785856,-0.77794653,-0.77794653,-0.77794653,-0.77794653,-0.77794653,-0.77794653,-0.7781225,-0.7784745,-0.7789144,-0.7795302,-0.7800581,-0.7800581,-0.77988213,-0.7800581,-0.7801461,-0.7801461,-0.7802341,-0.7803221,-0.7801461,-0.7799701,-0.7800581,-0.7803221,-0.78084993,-0.78155375,-0.7820816,-0.7825215,-0.78260946,-0.78234553,-0.7818177,-0.7812898,-0.78120184,-0.7810259,-0.780586,-0.7801461,-0.77979416,-0.7795302,-0.7793543,-0.7791783,-0.77944225,-0.7799701,-0.780498,-0.78084993,-0.7810259,-0.7812898,-0.7816417,-0.78190565,-0.7819936,-0.7818177,-0.78155375,-0.78111386,-0.780586,-0.7799701,-0.77944225,-0.7792663,-0.7792663,-0.7793543,-0.7796182,-0.77988213,-0.7801461,-0.7802341,-0.7802341,-0.78041005,-0.78076196,-0.78084993,-0.780586,-0.78041005,-0.78041005,-0.7803221,-0.780586,-0.78084993,-0.78084993,-0.780586,-0.7803221,-0.7800581,-0.7797062,-0.7797062,-0.7803221,-0.7809379,-0.780586,-0.7800581,-0.77988213,-0.7799701,-0.7801461,-0.7801461,-0.7800581,-0.7801461,-0.7800581,-0.7800581,-0.7799701,-0.7800581,-0.7801461,-0.7801461,-0.7800581,-0.7800581,-0.7800581,-0.7801461,-0.7803221,-0.7803221,-0.7802341,-0.7800581,-0.7800581,-0.7800581,-0.7802341,-0.780586,-0.78146577,-0.7834893,-0.78516096,-0.78498495,-0.784809,-0.7854249,-0.78524894,-0.7844571,-0.78357726,-0.7800581,-0.7736356,-0.7702924,-0.7710842,-0.77310777,-0.77565914,-0.7788264,-0.7821696,-0.784721,-0.7857768,-0.7862167,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.78595275,-0.78463304,-0.7817297,-0.77750665,-0.7730198,-0.77205193,-0.7768908,-0.78304935,-0.78516096,-0.78551286,-0.7858648,-0.7858648,-0.7844571,-0.78225756,-0.7809379,-0.78084993,-0.780674,-0.780498,-0.780586,-0.780674,-0.78076196,-0.7810259,-0.78111386,-0.7810259,-0.7810259,-0.7809379,-0.78076196,-0.780674,-0.78076196,-0.7810259,-0.7810259,-0.7810259,-0.78084993,-0.78041005,-0.7799701,-0.7796182,-0.7791783,-0.7788264,-0.77865046,-0.7784745,-0.77821046,-0.7780345,-0.7780345,-0.7780345,-0.77785856,-0.77785856,-0.77794653,-0.77794653,-0.77794653,-0.77785856,-0.7777706,-0.7777706,-0.77794653,-0.7780345,-0.7780345,-0.7781225,-0.77838653,-0.77873844,-0.7791783,-0.7797062,-0.7800581,-0.7801461,-0.7801461,-0.780498,-0.780674,-0.780498,-0.7803221,-0.7801461,-0.77988213,-0.7797062,-0.77979416,-0.7802341,-0.78084993,-0.78146577,-0.78190565,-0.78225756,-0.7821696,-0.7818177,-0.7813778,-0.7812898,-0.7813778,-0.7812898,-0.7809379,-0.78041005,-0.77988213,-0.77944225,-0.77944225,-0.7796182,-0.77988213,-0.780498,-0.78084993,-0.7810259,-0.78111386,-0.78111386,-0.78120184,-0.78146577,-0.7816417,-0.7816417,-0.78155375,-0.78120184,-0.78076196,-0.7801461,-0.7796182,-0.7793543,-0.7792663,-0.7792663,-0.7793543,-0.7796182,-0.77988213,-0.7801461,-0.7803221,-0.780586,-0.78084993,-0.78084993,-0.780586,-0.780498,-0.780498,-0.7803221,-0.7803221,-0.78076196,-0.7809379,-0.780674,-0.7802341,-0.7799701,-0.77979416,-0.7800581,-0.78076196,-0.78084993,-0.7803221,-0.7799701,-0.7800581,-0.7801461,-0.7802341,-0.7802341,-0.7801461,-0.7802341,-0.7801461,-0.7800581,-0.7799701,-0.7801461,-0.7802341,-0.7801461,-0.7800581,-0.7800581,-0.7802341,-0.780498,-0.78041005,-0.7802341,-0.7801461,-0.7800581,-0.7799701,-0.7799701,-0.7800581,-0.7803221,-0.78146577,-0.78357726,-0.78524894,-0.78498495,-0.78454506,-0.78524894,-0.7853369,-0.78454506,-0.7837532,-0.78041005,-0.7738116,-0.7701164,-0.7707323,-0.77240384,-0.77469134,-0.77785856,-0.7813778,-0.7843691,-0.78560084,-0.7861287,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7858648,-0.78454506,-0.7813778,-0.7769788,-0.77275586,-0.7724918,-0.7775946,-0.78357726,-0.7853369,-0.78551286,-0.7858648,-0.78551286,-0.78357726,-0.78146577,-0.7809379,-0.7810259,-0.78084993,-0.780674,-0.78076196,-0.78084993,-0.7809379,-0.78111386,-0.78111386,-0.7809379,-0.7810259,-0.7810259,-0.78084993,-0.780674,-0.78076196,-0.78084993,-0.7810259,-0.78111386,-0.7810259,-0.780674,-0.7802341,-0.77979416,-0.7792663,-0.7788264,-0.7785625,-0.7784745,-0.77829856,-0.7781225,-0.7781225,-0.7781225,-0.77794653,-0.77785856,-0.77794653,-0.7780345,-0.77785856,-0.7777706,-0.7777706,-0.7777706,-0.77794653,-0.7780345,-0.7781225,-0.77821046,-0.77829856,-0.77873844,-0.7792663,-0.77979416,-0.7800581,-0.7800581,-0.7801461,-0.780674,-0.78084993,-0.780586,-0.7802341,-0.7800581,-0.77988213,-0.7797062,-0.7796182,-0.7799701,-0.780674,-0.7812898,-0.7817297,-0.7819936,-0.78190565,-0.78146577,-0.7812898,-0.7813778,-0.78155375,-0.78155375,-0.7812898,-0.78084993,-0.7800581,-0.7793543,-0.7793543,-0.77988213,-0.7803221,-0.78084993,-0.78120184,-0.7812898,-0.7812898,-0.78111386,-0.7809379,-0.7810259,-0.7813778,-0.78146577,-0.7813778,-0.78120184,-0.78084993,-0.7802341,-0.77979416,-0.7795302,-0.7792663,-0.77909034,-0.7792663,-0.77944225,-0.7797062,-0.7800581,-0.7803221,-0.780674,-0.78084993,-0.78076196,-0.780586,-0.780586,-0.780498,-0.7802341,-0.7801461,-0.780498,-0.78076196,-0.780674,-0.7803221,-0.7799701,-0.7799701,-0.78041005,-0.7809379,-0.780586,-0.7800581,-0.7800581,-0.7802341,-0.7802341,-0.7802341,-0.7802341,-0.7802341,-0.7802341,-0.7802341,-0.7801461,-0.7801461,-0.7802341,-0.7803221,-0.7801461,-0.7801461,-0.7801461,-0.78041005,-0.780498,-0.7801461,-0.7799701,-0.7800581,-0.7800581,-0.77988213,-0.77988213,-0.77988213,-0.7800581,-0.7813778,-0.7837532,-0.7853369,-0.78516096,-0.78463304,-0.78524894,-0.7853369,-0.78454506,-0.7839292,-0.7809379,-0.77433944,-0.7700284,-0.7702924,-0.771876,-0.7741635,-0.7777706,-0.7813778,-0.7840172,-0.7853369,-0.7860407,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7858648,-0.7843691,-0.78120184,-0.7766269,-0.77240384,-0.7725798,-0.7781225,-0.7839292,-0.78524894,-0.7854249,-0.7858648,-0.78524894,-0.78304935,-0.7812898,-0.78120184,-0.78120184,-0.78111386,-0.7810259,-0.78111386,-0.78120184,-0.78120184,-0.78111386,-0.78111386,-0.7809379,-0.7809379,-0.7810259,-0.7809379,-0.78076196,-0.78076196,-0.78084993,-0.78111386,-0.7812898,-0.78120184,-0.7809379,-0.780586,-0.7799701,-0.7792663,-0.77873844,-0.77865046,-0.7784745,-0.77821046,-0.7781225,-0.77821046,-0.7781225,-0.77785856,-0.7777706,-0.77794653,-0.77794653,-0.7777706,-0.7776826,-0.7777706,-0.77785856,-0.7780345,-0.7781225,-0.7781225,-0.77829856,-0.7784745,-0.7788264,-0.7792663,-0.77979416,-0.7800581,-0.7801461,-0.7802341,-0.780498,-0.780674,-0.780674,-0.780498,-0.7802341,-0.7800581,-0.77988213,-0.77979416,-0.7799701,-0.78041005,-0.78111386,-0.78146577,-0.78155375,-0.78146577,-0.7812898,-0.7813778,-0.78155375,-0.7816417,-0.7816417,-0.78146577,-0.78111386,-0.7802341,-0.77944225,-0.77944225,-0.7800581,-0.780498,-0.7810259,-0.7813778,-0.78155375,-0.78155375,-0.78120184,-0.78084993,-0.78076196,-0.78111386,-0.7812898,-0.78111386,-0.78111386,-0.78076196,-0.7801461,-0.7797062,-0.7796182,-0.77944225,-0.7792663,-0.77944225,-0.7796182,-0.77979416,-0.7800581,-0.7802341,-0.780498,-0.78076196,-0.78076196,-0.780498,-0.78041005,-0.7803221,-0.7801461,-0.7801461,-0.78041005,-0.780674,-0.78076196,-0.780498,-0.7801461,-0.7801461,-0.780674,-0.78084993,-0.780498,-0.7801461,-0.7802341,-0.7803221,-0.78041005,-0.7802341,-0.7801461,-0.7802341,-0.7802341,-0.7801461,-0.7801461,-0.7801461,-0.7802341,-0.7803221,-0.7802341,-0.7802341,-0.7802341,-0.7802341,-0.7802341,-0.7799701,-0.77988213,-0.77988213,-0.77988213,-0.7797062,-0.77979416,-0.77979416,-0.7799701,-0.78146577,-0.7840172,-0.78551286,-0.7853369,-0.784721,-0.7853369,-0.78551286,-0.78463304,-0.7841052,-0.7816417,-0.77504325,-0.7701164,-0.7700284,-0.77161205,-0.7740755,-0.7777706,-0.78120184,-0.78366524,-0.78516096,-0.7860407,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7862167,-0.7858648,-0.7841052,-0.780586,-0.776099,-0.7721399,-0.7726679,-0.7785625,-0.7841052,-0.785073,-0.7853369,-0.7857768,-0.78489697,-0.7825215,-0.78120184,-0.7812898,-0.78146577,-0.78155375,-0.78146577,-0.7812898,-0.7813778,-0.7813778,-0.7812898,-0.78120184,-0.78111386,-0.7809379,-0.7809379,-0.78111386,-0.7810259,-0.7809379,-0.78084993,-0.7810259,-0.7812898,-0.7813778,-0.78111386,-0.78076196,-0.7801461,-0.77944225,-0.7789144,-0.7788264,-0.77865046,-0.77838653,-0.7781225,-0.7781225,-0.7781225,-0.77785856,-0.7777706,-0.77785856,-0.77785856,-0.7776826,-0.7776826,-0.7777706,-0.77794653,-0.7780345,-0.7780345,-0.7780345,-0.77829856,-0.7785625,-0.7789144,-0.7793543,-0.7799701,-0.7803221,-0.78041005,-0.780498,-0.780674,-0.7809379,-0.7812898,-0.7812898,-0.78084993,-0.78041005,-0.7801461,-0.7800581,-0.7800581,-0.78041005,-0.7809379,-0.78120184,-0.78111386,-0.7810259,-0.7810259,-0.7812898,-0.7817297,-0.78190565,-0.7818177,-0.7816417,-0.7812898,-0.780498,-0.7796182,-0.7797062,-0.7801461,-0.780586,-0.7810259,-0.78146577,-0.7816417,-0.7817297,-0.7813778,-0.7809379,-0.78076196,-0.7809379,-0.7810259,-0.7810259,-0.78084993,-0.780498,-0.7801461,-0.77979416,-0.77979416,-0.7797062,-0.7797062,-0.77988213,-0.7801461,-0.7802341,-0.7801461,-0.7801461,-0.78041005,-0.78076196,-0.78076196,-0.78041005,-0.7803221,-0.7802341,-0.7800581,-0.7800581,-0.7803221,-0.780498,-0.780586,-0.780498,-0.7802341,-0.780498,-0.7809379,-0.78076196,-0.780498,-0.7803221,-0.78041005,-0.78041005,-0.780498,-0.78041005,-0.7803221,-0.7803221,-0.7803221,-0.7802341,-0.7801461,-0.7800581,-0.7802341,-0.7803221,-0.7802341,-0.7801461,-0.7800581,-0.7799701,-0.77988213,-0.7799701,-0.7799701,-0.7799701,-0.77979416,-0.7796182,-0.7797062,-0.7797062,-0.7802341,-0.78190565,-0.7841052,-0.78560084,-0.78560084,-0.78498495,-0.7853369,-0.7854249,-0.78463304,-0.78419316,-0.78225756,-0.7759231,-0.77046835,-0.7701164,-0.77205193,-0.7744274,-0.7776826,-0.78084993,-0.7834013,-0.785073,-0.78595275,-0.7862167,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7858648,-0.7838412,-0.7799701,-0.77557117,-0.77205193,-0.77284384,-0.7789144,-0.7843691,-0.78524894,-0.78551286,-0.7857768,-0.78454506,-0.78225756,-0.7810259,-0.78120184,-0.78146577,-0.7817297,-0.7817297,-0.7816417,-0.78155375,-0.78146577,-0.7813778,-0.7813778,-0.7812898,-0.78111386,-0.78111386,-0.78111386,-0.7810259,-0.7809379,-0.78084993,-0.78076196,-0.7810259,-0.7812898,-0.7812898,-0.7809379,-0.7803221,-0.7796182,-0.7791783,-0.7789144,-0.77873844,-0.7784745,-0.77821046,-0.7781225,-0.7780345,-0.77794653,-0.77785856,-0.7777706,-0.7776826,-0.7775946,-0.7776826,-0.77785856,-0.7780345,-0.77794653,-0.7780345,-0.7781225,-0.77821046,-0.7785625,-0.77900237,-0.7796182,-0.7802341,-0.780586,-0.780586,-0.78076196,-0.78111386,-0.78146577,-0.7816417,-0.78155375,-0.78111386,-0.78076196,-0.780498,-0.7803221,-0.7802341,-0.780498,-0.7809379,-0.7810259,-0.78084993,-0.78076196,-0.7809379,-0.7813778,-0.78190565,-0.7819936,-0.7818177,-0.7817297,-0.7813778,-0.780586,-0.77979416,-0.77988213,-0.7803221,-0.780674,-0.78111386,-0.78146577,-0.78155375,-0.7816417,-0.78146577,-0.7810259,-0.78076196,-0.78076196,-0.78084993,-0.78084993,-0.780674,-0.780498,-0.7803221,-0.7801461,-0.7801461,-0.7801461,-0.7801461,-0.7803221,-0.78041005,-0.78041005,-0.7803221,-0.7801461,-0.78041005,-0.78076196,-0.78076196,-0.780498,-0.78041005,-0.7802341,-0.7800581,-0.7801461,-0.7803221,-0.78041005,-0.78041005,-0.78041005,-0.780498,-0.7810259,-0.78111386,-0.78076196,-0.780498,-0.78041005,-0.78041005,-0.780498,-0.780586,-0.780674,-0.780586,-0.78041005,-0.7803221,-0.7802341,-0.7801461,-0.7800581,-0.7802341,-0.78041005,-0.7802341,-0.7799701,-0.77979416,-0.7799701,-0.7799701,-0.77988213,-0.7799701,-0.7799701,-0.77979416,-0.7797062,-0.7797062,-0.77988213,-0.780498,-0.7817297,-0.7831373,-0.784809,-0.7857768,-0.78516096,-0.78524894,-0.7854249,-0.784721,-0.7843691,-0.78260946,-0.7765389,-0.77082026,-0.7700284,-0.77161205,-0.7738116,-0.7769788,-0.7802341,-0.7832253,-0.78498495,-0.7858648,-0.7862167,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7856888,-0.7834893,-0.77988213,-0.7754832,-0.771876,-0.77310777,-0.7793543,-0.78454506,-0.7853369,-0.7856888,-0.7857768,-0.78428113,-0.7819936,-0.7809379,-0.78120184,-0.7813778,-0.78155375,-0.7817297,-0.7816417,-0.7816417,-0.78146577,-0.78155375,-0.7817297,-0.7816417,-0.78146577,-0.7813778,-0.78111386,-0.7809379,-0.78084993,-0.78076196,-0.78076196,-0.78084993,-0.78111386,-0.78120184,-0.78111386,-0.780674,-0.7799701,-0.7792663,-0.7788264,-0.7785625,-0.77838653,-0.77821046,-0.7781225,-0.7780345,-0.77794653,-0.77785856,-0.77785856,-0.7777706,-0.7775946,-0.7776826,-0.77785856,-0.77794653,-0.77794653,-0.7781225,-0.77821046,-0.77829856,-0.77873844,-0.7793543,-0.77979416,-0.7803221,-0.780674,-0.780674,-0.78111386,-0.7817297,-0.7817297,-0.7816417,-0.7813778,-0.78111386,-0.7809379,-0.78084993,-0.78076196,-0.78084993,-0.78084993,-0.7809379,-0.78084993,-0.780586,-0.780586,-0.78076196,-0.7812898,-0.7818177,-0.7818177,-0.7816417,-0.7816417,-0.7812898,-0.78041005,-0.7796182,-0.7799701,-0.78041005,-0.780674,-0.78120184,-0.78155375,-0.78155375,-0.78146577,-0.7812898,-0.7810259,-0.780674,-0.780498,-0.780586,-0.780586,-0.780586,-0.78076196,-0.780586,-0.78041005,-0.78041005,-0.780586,-0.780498,-0.780498,-0.780498,-0.780586,-0.78041005,-0.7802341,-0.78041005,-0.78076196,-0.78084993,-0.780586,-0.780498,-0.7802341,-0.7800581,-0.7802341,-0.78041005,-0.7803221,-0.7803221,-0.78041005,-0.78076196,-0.78120184,-0.7810259,-0.780498,-0.7803221,-0.78041005,-0.78041005,-0.780498,-0.780674,-0.78076196,-0.780586,-0.7803221,-0.7802341,-0.7801461,-0.7800581,-0.7800581,-0.7802341,-0.7803221,-0.7801461,-0.77988213,-0.77979416,-0.7799701,-0.7800581,-0.7799701,-0.77988213,-0.77979416,-0.7797062,-0.7797062,-0.77979416,-0.7797062,-0.7799701,-0.780498,-0.78120184,-0.7832253,-0.7853369,-0.78524894,-0.78516096,-0.7853369,-0.784809,-0.7843691,-0.7827854,-0.77671486,-0.7707323,-0.76994044,-0.7715241,-0.7734597,-0.776275,-0.77979416,-0.78304935,-0.78489697,-0.7857768,-0.7862167,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7862167,-0.7854249,-0.7831373,-0.77944225,-0.7748673,-0.7715241,-0.7734597,-0.7800581,-0.784721,-0.7853369,-0.7856888,-0.78560084,-0.7840172,-0.7818177,-0.7810259,-0.7812898,-0.7813778,-0.7813778,-0.7813778,-0.78146577,-0.78155375,-0.78155375,-0.7817297,-0.7818177,-0.7818177,-0.7817297,-0.78155375,-0.78120184,-0.7810259,-0.7809379,-0.780674,-0.780674,-0.78076196,-0.78084993,-0.78111386,-0.7813778,-0.78120184,-0.78041005,-0.7795302,-0.77900237,-0.77865046,-0.77829856,-0.77821046,-0.7781225,-0.7780345,-0.7777706,-0.7777706,-0.77785856,-0.77785856,-0.7776826,-0.7776826,-0.7777706,-0.7780345,-0.7781225,-0.7781225,-0.77829856,-0.7785625,-0.77909034,-0.7796182,-0.7800581,-0.780586,-0.780674,-0.78076196,-0.78146577,-0.7819936,-0.7817297,-0.7816417,-0.7813778,-0.7810259,-0.7809379,-0.7809379,-0.7810259,-0.78120184,-0.78111386,-0.78084993,-0.780586,-0.78041005,-0.7803221,-0.780586,-0.78111386,-0.78155375,-0.78146577,-0.7813778,-0.7813778,-0.7809379,-0.7800581,-0.7795302,-0.7801461,-0.78041005,-0.7803221,-0.78084993,-0.7812898,-0.7813778,-0.7812898,-0.78111386,-0.78076196,-0.780498,-0.7803221,-0.78041005,-0.780586,-0.78076196,-0.78084993,-0.780674,-0.780586,-0.78076196,-0.78084993,-0.7809379,-0.78084993,-0.78084993,-0.78076196,-0.780674,-0.78041005,-0.780498,-0.78076196,-0.7809379,-0.78076196,-0.780674,-0.7803221,-0.7800581,-0.7801461,-0.7803221,-0.7803221,-0.7802341,-0.78041005,-0.7809379,-0.78120184,-0.78084993,-0.78041005,-0.7803221,-0.78041005,-0.78041005,-0.780674,-0.78084993,-0.78076196,-0.780498,-0.7802341,-0.7800581,-0.7799701,-0.7799701,-0.7799701,-0.7800581,-0.7800581,-0.7799701,-0.77979416,-0.7797062,-0.77988213,-0.7800581,-0.7799701,-0.77979416,-0.7797062,-0.7796182,-0.7796182,-0.7796182,-0.7795302,-0.7797062,-0.7799701,-0.7801461,-0.7818177,-0.78463304,-0.7853369,-0.78516096,-0.78524894,-0.784721,-0.78428113,-0.7827854,-0.7766269,-0.7706443,-0.76985246,-0.7714361,-0.7732837,-0.77636296,-0.7800581,-0.7831373,-0.78489697,-0.7858648,-0.7862167,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7862167,-0.78551286,-0.78296137,-0.77900237,-0.7744274,-0.77117217,-0.7736356,-0.780674,-0.78498495,-0.7853369,-0.7856888,-0.78551286,-0.7838412,-0.7817297,-0.78084993,-0.7810259,-0.78111386,-0.78111386,-0.78111386,-0.78120184,-0.7813778,-0.78155375,-0.7816417,-0.7817297,-0.7818177,-0.7819936,-0.7818177,-0.78146577,-0.78120184,-0.78111386,-0.7809379,-0.780674,-0.780674,-0.78076196,-0.7810259,-0.7812898,-0.7813778,-0.7809379,-0.7801461,-0.77944225,-0.7789144,-0.7784745,-0.77829856,-0.77821046,-0.77794653,-0.7776826,-0.7776826,-0.77785856,-0.7777706,-0.77750665,-0.7775946,-0.77785856,-0.7781225,-0.77821046,-0.7781225,-0.77838653,-0.7788264,-0.7792663,-0.77979416,-0.78041005,-0.78084993,-0.78084993,-0.7809379,-0.7816417,-0.7821696,-0.7818177,-0.78155375,-0.7813778,-0.7809379,-0.78084993,-0.7810259,-0.78111386,-0.7812898,-0.78120184,-0.7809379,-0.780586,-0.7803221,-0.7801461,-0.7803221,-0.78076196,-0.7812898,-0.78120184,-0.7809379,-0.78084993,-0.780498,-0.77979416,-0.7797062,-0.78076196,-0.780674,-0.7800581,-0.780498,-0.7810259,-0.7810259,-0.7810259,-0.78084993,-0.780586,-0.7803221,-0.7802341,-0.78041005,-0.780586,-0.78076196,-0.78084993,-0.78076196,-0.78076196,-0.78084993,-0.7809379,-0.78111386,-0.7812898,-0.78111386,-0.78084993,-0.78076196,-0.780586,-0.780674,-0.7809379,-0.7810259,-0.78084993,-0.780674,-0.780498,-0.7801461,-0.7800581,-0.7802341,-0.78041005,-0.7802341,-0.78041005,-0.7809379,-0.7810259,-0.78076196,-0.780498,-0.780498,-0.780586,-0.780674,-0.78076196,-0.78076196,-0.780498,-0.7802341,-0.7800581,-0.7799701,-0.77988213,-0.77979416,-0.77979416,-0.77979416,-0.77988213,-0.7799701,-0.77979416,-0.7797062,-0.77988213,-0.7800581,-0.7799701,-0.77988213,-0.77988213,-0.77979416,-0.7797062,-0.7797062,-0.77979416,-0.77988213,-0.7800581,-0.7799701,-0.78120184,-0.7839292,-0.7854249,-0.7854249,-0.7853369,-0.784809,-0.7843691,-0.7824335,-0.7759231,-0.7701164,-0.76958853,-0.7706443,-0.7725798,-0.7765389,-0.780498,-0.78331333,-0.78498495,-0.78595275,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.78551286,-0.78304935,-0.77900237,-0.77425146,-0.77090824,-0.7737236,-0.7809379,-0.78516096,-0.78551286,-0.7857768,-0.78560084,-0.7838412,-0.7817297,-0.78084993,-0.7809379,-0.7810259,-0.7810259,-0.7810259,-0.78111386,-0.7812898,-0.7813778,-0.78146577,-0.78155375,-0.7816417,-0.7819936,-0.7820816,-0.7818177,-0.78146577,-0.7812898,-0.7810259,-0.78084993,-0.78076196,-0.780674,-0.78084993,-0.78111386,-0.78120184,-0.78111386,-0.780674,-0.77988213,-0.7791783,-0.77873844,-0.77838653,-0.77829856,-0.77794653,-0.7776826,-0.7777706,-0.7780345,-0.77785856,-0.7774187,-0.77750665,-0.7780345,-0.77829856,-0.77821046,-0.77821046,-0.7784745,-0.7789144,-0.7795302,-0.7801461,-0.780674,-0.78084993,-0.7809379,-0.7810259,-0.7813778,-0.78190565,-0.78190565,-0.7816417,-0.7813778,-0.78111386,-0.7810259,-0.7810259,-0.7810259,-0.78120184,-0.78120184,-0.78076196,-0.78041005,-0.7803221,-0.7803221,-0.7803221,-0.780586,-0.7809379,-0.7809379,-0.780586,-0.7802341,-0.7801461,-0.7797062,-0.7801461,-0.7813778,-0.7810259,-0.77988213,-0.7801461,-0.780586,-0.780674,-0.780674,-0.780674,-0.780586,-0.7803221,-0.7801461,-0.7802341,-0.780498,-0.780674,-0.78084993,-0.78084993,-0.78084993,-0.7809379,-0.7810259,-0.78120184,-0.7813778,-0.78120184,-0.7809379,-0.78084993,-0.78076196,-0.78076196,-0.7809379,-0.78111386,-0.7809379,-0.780674,-0.78041005,-0.7802341,-0.7800581,-0.7802341,-0.780586,-0.780586,-0.780498,-0.780586,-0.78076196,-0.780674,-0.780586,-0.780586,-0.78076196,-0.78084993,-0.78084993,-0.78076196,-0.78041005,-0.7800581,-0.77988213,-0.77979416,-0.77979416,-0.77979416,-0.77979416,-0.77979416,-0.77979416,-0.77988213,-0.77988213,-0.7800581,-0.7802341,-0.7802341,-0.7801461,-0.7801461,-0.7801461,-0.7801461,-0.7800581,-0.7799701,-0.7800581,-0.7801461,-0.7801461,-0.7799701,-0.78084993,-0.7834013,-0.7853369,-0.78560084,-0.78560084,-0.78489697,-0.7844571,-0.78225756,-0.77557117,-0.7701164,-0.7697645,-0.77082026,-0.7725798,-0.77645093,-0.78084993,-0.7837532,-0.78516096,-0.7860407,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7860407,-0.78524894,-0.7827854,-0.7785625,-0.7737236,-0.7706443,-0.7738116,-0.78111386,-0.78524894,-0.78560084,-0.7858648,-0.78551286,-0.7838412,-0.7818177,-0.78084993,-0.7809379,-0.7809379,-0.7809379,-0.7810259,-0.7810259,-0.78111386,-0.78111386,-0.7810259,-0.78120184,-0.7813778,-0.78155375,-0.7818177,-0.7819936,-0.7818177,-0.78155375,-0.7813778,-0.78120184,-0.7809379,-0.78076196,-0.78084993,-0.7810259,-0.7810259,-0.78111386,-0.7809379,-0.7803221,-0.7795302,-0.7789144,-0.7785625,-0.77838653,-0.7781225,-0.7777706,-0.77785856,-0.7780345,-0.77785856,-0.7774187,-0.77750665,-0.77794653,-0.77821046,-0.77821046,-0.77829856,-0.7785625,-0.77909034,-0.7797062,-0.78041005,-0.78084993,-0.78111386,-0.78120184,-0.78111386,-0.78120184,-0.78146577,-0.7818177,-0.7820816,-0.78190565,-0.7816417,-0.7813778,-0.78120184,-0.78120184,-0.7812898,-0.7812898,-0.78084993,-0.78041005,-0.78041005,-0.78041005,-0.78041005,-0.780586,-0.780674,-0.780586,-0.78041005,-0.7801461,-0.7799701,-0.7796182,-0.78041005,-0.78190565,-0.7813778,-0.7799701,-0.77979416,-0.7802341,-0.78041005,-0.780498,-0.780498,-0.78041005,-0.7802341,-0.7801461,-0.7802341,-0.78041005,-0.780586,-0.7809379,-0.78120184,-0.78120184,-0.78120184,-0.7813778,-0.7816417,-0.7816417,-0.7812898,-0.7810259,-0.7809379,-0.7809379,-0.7810259,-0.78111386,-0.78111386,-0.7810259,-0.78084993,-0.780498,-0.7802341,-0.7801461,-0.7803221,-0.78076196,-0.7810259,-0.780586,-0.7803221,-0.780586,-0.780674,-0.780674,-0.78076196,-0.78084993,-0.7809379,-0.7809379,-0.78076196,-0.78041005,-0.7801461,-0.7799701,-0.77988213,-0.77988213,-0.7799701,-0.7800581,-0.7800581,-0.7800581,-0.7800581,-0.7801461,-0.7803221,-0.780498,-0.780498,-0.78041005,-0.7803221,-0.78041005,-0.780498,-0.78041005,-0.78041005,-0.78041005,-0.7802341,-0.7802341,-0.7801461,-0.78076196,-0.78304935,-0.78516096,-0.78560084,-0.78560084,-0.78489697,-0.7844571,-0.7824335,-0.776187,-0.77082026,-0.7701164,-0.77117217,-0.77275586,-0.776187,-0.780586,-0.7837532,-0.78516096,-0.78595275,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.78630465,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7860407,-0.78498495,-0.7821696,-0.77794653,-0.77319574,-0.77055633,-0.77398753,-0.7813778,-0.7853369,-0.78560084,-0.7858648,-0.78551286,-0.7839292,-0.7819936,-0.7810259,-0.7810259,-0.7809379,-0.7809379,-0.7809379,-0.78084993,-0.78084993,-0.78084993,-0.7809379,-0.7810259,-0.78111386,-0.78120184,-0.78146577,-0.7817297,-0.7818177,-0.7817297,-0.7816417,-0.78146577,-0.78120184,-0.78111386,-0.78111386,-0.78111386,-0.7810259,-0.78111386,-0.78120184,-0.78076196,-0.7800581,-0.7793543,-0.7789144,-0.77865046,-0.77821046,-0.77785856,-0.77785856,-0.7780345,-0.77785856,-0.7775946,-0.7775946,-0.77785856,-0.7781225,-0.77821046,-0.77838653,-0.77873844,-0.7793543,-0.7799701,-0.780498,-0.7809379,-0.78111386,-0.78120184,-0.7812898,-0.7812898,-0.7813778,-0.78155375,-0.78190565,-0.78225756,-0.7821696,-0.7816417,-0.7813778,-0.78146577,-0.78155375,-0.7813778,-0.78084993,-0.78041005,-0.7803221,-0.7802341,-0.7802341,-0.7803221,-0.780498,-0.78041005,-0.7802341,-0.7801461,-0.7799701,-0.7796182,-0.78041005,-0.7818177,-0.7813778,-0.7800581,-0.77988213,-0.7802341,-0.7802341,-0.7803221,-0.7803221,-0.7802341,-0.7802341,-0.7802341,-0.7803221,-0.780498,-0.78084993,-0.7812898,-0.78155375,-0.78146577,-0.78155375,-0.7817297,-0.7817297,-0.7813778,-0.78111386,-0.7810259,-0.7810259,-0.7810259,-0.78120184,-0.7812898,-0.7810259,-0.78084993,-0.78084993,-0.780674,-0.7803221,-0.7801461,-0.7802341,-0.7809379,-0.78111386,-0.780586,-0.7803221,-0.780586,-0.78076196,-0.78076196,-0.78084993,-0.78084993,-0.7809379,-0.78084993,-0.780674,-0.78041005,-0.7802341,-0.7801461,-0.7800581,-0.7800581,-0.7800581,-0.7801461,-0.7802341,-0.7803221,-0.78041005,-0.78041005,-0.780498,-0.780586,-0.780586,-0.780674,-0.780674,-0.780674,-0.78076196,-0.78076196,-0.780674,-0.780498,-0.7802341,-0.7802341,-0.7803221,-0.7809379,-0.78296137,-0.78489697,-0.78551286,-0.78551286,-0.78489697,-0.7844571,-0.7824335,-0.776275,-0.77082026,-0.7700284,-0.7710842,-0.7726679,-0.7759231,-0.7802341,-0.78357726,-0.78516096,-0.7860407,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7861287,-0.785073,-0.7818177,-0.7772427,-0.7726679,-0.7703804,-0.77425146,-0.7817297,-0.7854249,-0.7856888,-0.7858648,-0.78551286,-0.7839292,-0.7819936,-0.78111386,-0.78111386,-0.7810259,-0.78111386,-0.7810259,-0.7809379,-0.7810259,-0.7809379,-0.7809379,-0.78084993,-0.78084993,-0.7810259,-0.78120184,-0.7813778,-0.78155375,-0.7816417,-0.78155375,-0.78146577,-0.7813778,-0.7813778,-0.7812898,-0.78120184,-0.78111386,-0.78120184,-0.7812898,-0.78120184,-0.780586,-0.77979416,-0.7791783,-0.7788264,-0.7784745,-0.7780345,-0.77785856,-0.77794653,-0.77794653,-0.77785856,-0.7777706,-0.77785856,-0.77821046,-0.77838653,-0.7784745,-0.7789144,-0.7796182,-0.7802341,-0.780674,-0.78084993,-0.7810259,-0.78120184,-0.7813778,-0.7812898,-0.7813778,-0.78146577,-0.78155375,-0.7819936,-0.7824335,-0.7820816,-0.7816417,-0.7817297,-0.78190565,-0.78146577,-0.78076196,-0.7802341,-0.7801461,-0.7802341,-0.7802341,-0.7802341,-0.78041005,-0.78041005,-0.7801461,-0.7801461,-0.7801461,-0.77979416,-0.7802341,-0.78120184,-0.78076196,-0.7800581,-0.7800581,-0.7802341,-0.7801461,-0.7802341,-0.7802341,-0.7802341,-0.7803221,-0.7803221,-0.78041005,-0.780674,-0.78084993,-0.7810259,-0.78120184,-0.78146577,-0.7817297,-0.7816417,-0.7812898,-0.78084993,-0.78076196,-0.7809379,-0.78111386,-0.78111386,-0.7812898,-0.7812898,-0.7810259,-0.78076196,-0.78076196,-0.78076196,-0.780498,-0.7801461,-0.7801461,-0.78084993,-0.78120184,-0.780674,-0.7802341,-0.780498,-0.780674,-0.78076196,-0.78076196,-0.78084993,-0.7809379,-0.78084993,-0.780674,-0.780498,-0.78041005,-0.78041005,-0.7802341,-0.7801461,-0.7802341,-0.78041005,-0.78041005,-0.78041005,-0.78041005,-0.78041005,-0.78041005,-0.780498,-0.780586,-0.780586,-0.780674,-0.78076196,-0.78084993,-0.7809379,-0.78076196,-0.780498,-0.78041005,-0.780498,-0.780674,-0.7812898,-0.7832253,-0.78489697,-0.78551286,-0.7854249,-0.78489697,-0.7844571,-0.7820816,-0.7753952,-0.7700284,-0.76958853,-0.7706443,-0.77231586,-0.7758351,-0.7801461,-0.78357726,-0.7854249,-0.7861287,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7860407,-0.785073,-0.7817297,-0.7769788,-0.77240384,-0.77020437,-0.77433944,-0.7818177,-0.7854249,-0.7857768,-0.7858648,-0.78516096,-0.7834893,-0.7816417,-0.7809379,-0.78111386,-0.78111386,-0.78120184,-0.7812898,-0.78120184,-0.7812898,-0.78120184,-0.78111386,-0.78084993,-0.78076196,-0.7809379,-0.7810259,-0.78120184,-0.7812898,-0.7813778,-0.78146577,-0.78146577,-0.78155375,-0.7816417,-0.78155375,-0.7813778,-0.7812898,-0.78111386,-0.78111386,-0.7813778,-0.7810259,-0.7802341,-0.77944225,-0.7789144,-0.77865046,-0.77821046,-0.77794653,-0.77794653,-0.7780345,-0.7780345,-0.77794653,-0.7780345,-0.77838653,-0.77865046,-0.77873844,-0.7791783,-0.77988213,-0.7803221,-0.780674,-0.7810259,-0.78111386,-0.78120184,-0.7812898,-0.78120184,-0.78120184,-0.7812898,-0.7813778,-0.7813778,-0.7817297,-0.7820816,-0.7819936,-0.7817297,-0.7817297,-0.7817297,-0.78120184,-0.78041005,-0.7801461,-0.7802341,-0.7801461,-0.7802341,-0.78041005,-0.7803221,-0.7801461,-0.7801461,-0.7799701,-0.7796182,-0.7800581,-0.78076196,-0.78041005,-0.7799701,-0.7800581,-0.7800581,-0.7800581,-0.7801461,-0.7801461,-0.7802341,-0.7803221,-0.7803221,-0.78041005,-0.780586,-0.78076196,-0.78076196,-0.78111386,-0.78155375,-0.7817297,-0.7813778,-0.7809379,-0.780674,-0.780674,-0.7809379,-0.78120184,-0.78111386,-0.78120184,-0.7812898,-0.7810259,-0.78084993,-0.78084993,-0.78076196,-0.780498,-0.7801461,-0.7800581,-0.78076196,-0.78120184,-0.78076196,-0.7802341,-0.78041005,-0.780674,-0.780674,-0.780674,-0.78076196,-0.78084993,-0.78084993,-0.78076196,-0.780498,-0.78041005,-0.780498,-0.78041005,-0.7802341,-0.7803221,-0.78041005,-0.78041005,-0.78041005,-0.78041005,-0.7803221,-0.7802341,-0.7803221,-0.780498,-0.780498,-0.780586,-0.780586,-0.780586,-0.780674,-0.780498,-0.7803221,-0.7803221,-0.780586,-0.7809379,-0.7817297,-0.7834893,-0.78498495,-0.78551286,-0.78551286,-0.78489697,-0.7844571,-0.7819936,-0.77521926,-0.76994044,-0.7694126,-0.7703804,-0.7724918,-0.776275,-0.780498,-0.7839292,-0.78560084,-0.7862167,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7862167,-0.78595275,-0.78489697,-0.7818177,-0.7774187,-0.77284384,-0.77046835,-0.77460337,-0.7819936,-0.7854249,-0.7857768,-0.7858648,-0.78498495,-0.7831373,-0.78146577,-0.7809379,-0.78120184,-0.78120184,-0.7812898,-0.7812898,-0.7813778,-0.7812898,-0.7812898,-0.7813778,-0.78111386,-0.78084993,-0.7809379,-0.7810259,-0.7809379,-0.7810259,-0.78111386,-0.78120184,-0.7812898,-0.78146577,-0.7816417,-0.7816417,-0.7816417,-0.78146577,-0.78120184,-0.78111386,-0.7813778,-0.7812898,-0.780674,-0.77988213,-0.7792663,-0.7789144,-0.7784745,-0.7781225,-0.7781225,-0.77821046,-0.77821046,-0.77821046,-0.77829856,-0.7785625,-0.7788264,-0.77909034,-0.77944225,-0.7800581,-0.780498,-0.78076196,-0.7810259,-0.7810259,-0.78111386,-0.7812898,-0.7813778,-0.7812898,-0.7812898,-0.7812898,-0.78111386,-0.7812898,-0.7817297,-0.78190565,-0.7817297,-0.78155375,-0.7817297,-0.78155375,-0.78076196,-0.7801461,-0.7801461,-0.7801461,-0.7800581,-0.7802341,-0.7802341,-0.7801461,-0.7799701,-0.7799701,-0.77979416,-0.7799701,-0.780586,-0.7803221,-0.7800581,-0.7801461,-0.7800581,-0.7800581,-0.7800581,-0.7799701,-0.7800581,-0.7801461,-0.7802341,-0.780498,-0.780586,-0.78084993,-0.7812898,-0.78155375,-0.78146577,-0.78120184,-0.7809379,-0.7809379,-0.7809379,-0.7809379,-0.7809379,-0.7809379,-0.7809379,-0.7810259,-0.78111386,-0.78111386,-0.7809379,-0.7809379,-0.78084993,-0.780498,-0.7800581,-0.7800581,-0.7809379,-0.7813778,-0.78076196,-0.7801461,-0.7802341,-0.780498,-0.780498,-0.780586,-0.780674,-0.78084993,-0.7809379,-0.780674,-0.78041005,-0.78041005,-0.780498,-0.7803221,-0.7801461,-0.7801461,-0.7801461,-0.7801461,-0.7802341,-0.78041005,-0.7803221,-0.7802341,-0.7802341,-0.7803221,-0.78041005,-0.7803221,-0.7802341,-0.7801461,-0.7801461,-0.7801461,-0.7800581,-0.7801461,-0.780674,-0.7813778,-0.7821696,-0.7837532,-0.785073,-0.78560084,-0.78551286,-0.784721,-0.78428113,-0.7821696,-0.77557117,-0.77020437,-0.7694126,-0.7702924,-0.77310777,-0.7774187,-0.7812898,-0.78419316,-0.7856888,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7864806,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.78630465,-0.78595275,-0.78489697,-0.7820816,-0.7775946,-0.77275586,-0.77055633,-0.7749553,-0.7821696,-0.7853369,-0.7856888,-0.7858648,-0.785073,-0.7831373,-0.78146577,-0.7810259,-0.7812898,-0.7812898,-0.7813778,-0.7813778,-0.78120184,-0.78120184,-0.7813778,-0.78146577,-0.7812898,-0.7810259,-0.7810259,-0.7810259,-0.78084993,-0.78076196,-0.78084993,-0.7810259,-0.78120184,-0.78120184,-0.7813778,-0.78146577,-0.78146577,-0.78155375,-0.7813778,-0.78120184,-0.7813778,-0.78155375,-0.78111386,-0.7803221,-0.7796182,-0.7791783,-0.77873844,-0.77838653,-0.77829856,-0.77838653,-0.77838653,-0.77838653,-0.7784745,-0.77873844,-0.77900237,-0.7793543,-0.7797062,-0.7801461,-0.780498,-0.780674,-0.78084993,-0.7810259,-0.78111386,-0.7812898,-0.7812898,-0.78120184,-0.78120184,-0.78120184,-0.78111386,-0.7812898,-0.78146577,-0.7817297,-0.7817297,-0.78155375,-0.78155375,-0.7817297,-0.78120184,-0.780498,-0.7803221,-0.7802341,-0.7802341,-0.7802341,-0.7802341,-0.7799701,-0.7799701,-0.7803221,-0.7802341,-0.7801461,-0.7803221,-0.7802341,-0.78041005,-0.780674,-0.7803221,-0.7800581,-0.7800581,-0.7800581,-0.7801461,-0.7803221,-0.78076196,-0.7810259,-0.7810259,-0.7812898,-0.7816417,-0.78155375,-0.78120184,-0.7810259,-0.7810259,-0.78111386,-0.78120184,-0.7810259,-0.7809379,-0.78084993,-0.780674,-0.78076196,-0.78084993,-0.78084993,-0.78084993,-0.78084993,-0.78076196,-0.780498,-0.7801461,-0.7802341,-0.7810259,-0.7813778,-0.78076196,-0.7801461,-0.7802341,-0.78041005,-0.780586,-0.780586,-0.780674,-0.78076196,-0.78076196,-0.78041005,-0.7801461,-0.7801461,-0.7803221,-0.7802341,-0.7800581,-0.7800581,-0.7800581,-0.7801461,-0.7802341,-0.78041005,-0.7803221,-0.7802341,-0.7802341,-0.78041005,-0.780498,-0.78041005,-0.7803221,-0.7802341,-0.7800581,-0.7800581,-0.7800581,-0.7803221,-0.78111386,-0.7820816,-0.7827854,-0.7840172,-0.78516096,-0.78560084,-0.78551286,-0.78454506,-0.7839292,-0.78225756,-0.776099,-0.77046835,-0.76958853,-0.7706443,-0.77354765,-0.7777706,-0.78146577,-0.7843691,-0.7858648,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78595275,-0.78498495,-0.7821696,-0.7775946,-0.77275586,-0.7707323,-0.77530724,-0.7824335,-0.7853369,-0.7856888,-0.7858648,-0.785073,-0.78304935,-0.7813778,-0.78111386,-0.7813778,-0.7813778,-0.78155375,-0.7813778,-0.78111386,-0.78111386,-0.78120184,-0.78120184,-0.78111386,-0.78120184,-0.78111386,-0.7809379,-0.78084993,-0.78084993,-0.7809379,-0.7810259,-0.7810259,-0.78111386,-0.78111386,-0.78120184,-0.78111386,-0.78120184,-0.7813778,-0.7812898,-0.7813778,-0.7816417,-0.7813778,-0.78076196,-0.7800581,-0.7796182,-0.77900237,-0.77865046,-0.7785625,-0.7785625,-0.7785625,-0.7785625,-0.77873844,-0.77909034,-0.7793543,-0.7796182,-0.77988213,-0.7802341,-0.780498,-0.780674,-0.78084993,-0.7810259,-0.78120184,-0.78120184,-0.7810259,-0.7809379,-0.78111386,-0.7812898,-0.7813778,-0.78146577,-0.78146577,-0.78155375,-0.7816417,-0.7816417,-0.7816417,-0.7819936,-0.7819936,-0.78111386,-0.780498,-0.7803221,-0.78041005,-0.78041005,-0.7802341,-0.7799701,-0.7802341,-0.780586,-0.780498,-0.78041005,-0.7803221,-0.7803221,-0.78084993,-0.78120184,-0.780498,-0.7801461,-0.7802341,-0.7802341,-0.7803221,-0.7809379,-0.78155375,-0.7816417,-0.7816417,-0.7817297,-0.78155375,-0.78120184,-0.7810259,-0.78111386,-0.7812898,-0.7812898,-0.7812898,-0.7810259,-0.78084993,-0.780674,-0.780498,-0.780586,-0.780674,-0.780586,-0.780586,-0.780674,-0.780586,-0.7802341,-0.7800581,-0.78041005,-0.7810259,-0.7812898,-0.78076196,-0.7802341,-0.7803221,-0.780586,-0.780674,-0.780586,-0.780674,-0.78076196,-0.780586,-0.7802341,-0.77988213,-0.77988213,-0.7800581,-0.7800581,-0.7800581,-0.7800581,-0.7800581,-0.7801461,-0.7801461,-0.7802341,-0.7803221,-0.7802341,-0.7802341,-0.78041005,-0.780586,-0.780586,-0.780586,-0.780498,-0.7803221,-0.78041005,-0.780674,-0.78111386,-0.7818177,-0.7824335,-0.78296137,-0.7840172,-0.78524894,-0.7856888,-0.78560084,-0.78454506,-0.7838412,-0.78260946,-0.7768908,-0.7709962,-0.76985246,-0.77090824,-0.7733717,-0.7775946,-0.7816417,-0.78454506,-0.7858648,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.78595275,-0.78516096,-0.7825215,-0.77794653,-0.7726679,-0.7706443,-0.77530724,-0.7825215,-0.78551286,-0.7856888,-0.7858648,-0.78498495,-0.78296137,-0.78146577,-0.78120184,-0.7812898,-0.7812898,-0.78146577,-0.7813778,-0.78120184,-0.78111386,-0.78111386,-0.7810259,-0.7810259,-0.78111386,-0.78111386,-0.7809379,-0.7809379,-0.7810259,-0.7810259,-0.7810259,-0.7810259,-0.7809379,-0.7810259,-0.78120184,-0.78111386,-0.78111386,-0.7813778,-0.7813778,-0.7813778,-0.78155375,-0.7816417,-0.7812898,-0.780674,-0.7799701,-0.77944225,-0.77909034,-0.7788264,-0.7788264,-0.7788264,-0.77909034,-0.7792663,-0.7795302,-0.7796182,-0.7797062,-0.77988213,-0.7801461,-0.78041005,-0.780674,-0.78076196,-0.78084993,-0.78084993,-0.7809379,-0.78076196,-0.780674,-0.78084993,-0.78120184,-0.7813778,-0.78146577,-0.7813778,-0.7813778,-0.78146577,-0.78155375,-0.78155375,-0.78190565,-0.78225756,-0.7817297,-0.780674,-0.7802341,-0.7803221,-0.78041005,-0.7802341,-0.7802341,-0.780586,-0.780674,-0.7803221,-0.7801461,-0.7800581,-0.78041005,-0.78120184,-0.7813778,-0.780674,-0.7802341,-0.7802341,-0.7802341,-0.78084993,-0.7817297,-0.7819936,-0.7817297,-0.78155375,-0.78146577,-0.7812898,-0.7810259,-0.7810259,-0.78111386,-0.78120184,-0.78120184,-0.78111386,-0.7809379,-0.780674,-0.78041005,-0.7803221,-0.78041005,-0.78041005,-0.78041005,-0.7803221,-0.7803221,-0.7803221,-0.7800581,-0.77988213,-0.7803221,-0.7810259,-0.78111386,-0.780498,-0.7801461,-0.78041005,-0.780586,-0.780586,-0.780586,-0.78076196,-0.78084993,-0.780586,-0.7802341,-0.7800581,-0.7801461,-0.7801461,-0.7801461,-0.7801461,-0.7800581,-0.7800581,-0.7801461,-0.7802341,-0.7802341,-0.7803221,-0.78041005,-0.780498,-0.78041005,-0.78041005,-0.78041005,-0.780498,-0.780674,-0.78084993,-0.7810259,-0.7813778,-0.7816417,-0.78190565,-0.7820816,-0.7825215,-0.7838412,-0.785073,-0.7856888,-0.78551286,-0.78454506,-0.7839292,-0.7827854,-0.7769788,-0.7710842,-0.76994044,-0.7706443,-0.7729318,-0.7774187,-0.7817297,-0.7844571,-0.7857768,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7862167,-0.7861287,-0.78551286,-0.7828734,-0.7781225,-0.7729318,-0.77090824,-0.77530724,-0.7825215,-0.78560084,-0.7857768,-0.7858648,-0.78498495,-0.78296137,-0.7817297,-0.78146577,-0.7812898,-0.78120184,-0.78120184,-0.78120184,-0.78120184,-0.78120184,-0.78120184,-0.7810259,-0.7809379,-0.7810259,-0.7810259,-0.7809379,-0.7810259,-0.78111386,-0.78111386,-0.78120184,-0.78111386,-0.7809379,-0.7810259,-0.78120184,-0.78111386,-0.78120184,-0.7813778,-0.7813778,-0.7812898,-0.78146577,-0.7816417,-0.78155375,-0.78111386,-0.780498,-0.77988213,-0.7795302,-0.7793543,-0.7791783,-0.7792663,-0.7795302,-0.77979416,-0.77988213,-0.77988213,-0.7799701,-0.7800581,-0.7803221,-0.780498,-0.780498,-0.780498,-0.780586,-0.780586,-0.780498,-0.780498,-0.78041005,-0.780498,-0.78084993,-0.78111386,-0.78120184,-0.78120184,-0.78111386,-0.78111386,-0.7810259,-0.78111386,-0.78146577,-0.7820816,-0.7821696,-0.7812898,-0.78041005,-0.7801461,-0.7802341,-0.7802341,-0.7803221,-0.780674,-0.780586,-0.7801461,-0.77988213,-0.77988213,-0.780674,-0.78155375,-0.78146577,-0.78076196,-0.7803221,-0.7802341,-0.78076196,-0.7816417,-0.7821696,-0.78190565,-0.78146577,-0.7812898,-0.7812898,-0.78120184,-0.7810259,-0.7809379,-0.7810259,-0.7810259,-0.78111386,-0.7810259,-0.78084993,-0.78041005,-0.7800581,-0.7799701,-0.7801461,-0.7802341,-0.7801461,-0.7799701,-0.7799701,-0.7800581,-0.7800581,-0.7800581,-0.78041005,-0.7809379,-0.78084993,-0.7802341,-0.7802341,-0.780586,-0.780586,-0.780586,-0.780674,-0.78084993,-0.7809379,-0.780586,-0.7803221,-0.7803221,-0.780498,-0.780498,-0.78041005,-0.7803221,-0.7802341,-0.7802341,-0.7803221,-0.7803221,-0.7802341,-0.7802341,-0.78041005,-0.78041005,-0.7803221,-0.7803221,-0.78041005,-0.780674,-0.7810259,-0.7813778,-0.78146577,-0.7813778,-0.7812898,-0.78146577,-0.78155375,-0.7819936,-0.7834893,-0.78498495,-0.78560084,-0.78551286,-0.7844571,-0.7838412,-0.78234553,-0.776275,-0.77046835,-0.76950055,-0.77055633,-0.7730198,-0.7773307,-0.7816417,-0.7843691,-0.7856888,-0.7861287,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.78630465,-0.78630465,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7856888,-0.78331333,-0.77873844,-0.77354765,-0.77126014,-0.77530724,-0.78234553,-0.78560084,-0.7857768,-0.7858648,-0.785073,-0.78331333,-0.78225756,-0.78155375,-0.78111386,-0.78111386,-0.78120184,-0.78111386,-0.78111386,-0.78111386,-0.78120184,-0.78111386,-0.78111386,-0.7810259,-0.7810259,-0.78084993,-0.78084993,-0.7810259,-0.7810259,-0.7810259,-0.7810259,-0.7810259,-0.7810259,-0.7810259,-0.7809379,-0.7810259,-0.7812898,-0.7812898,-0.78120184,-0.7812898,-0.78155375,-0.7816417,-0.78146577,-0.7809379,-0.7803221,-0.7800581,-0.77979416,-0.7796182,-0.77979416,-0.77988213,-0.7800581,-0.7801461,-0.7801461,-0.7802341,-0.78041005,-0.78041005,-0.78041005,-0.7803221,-0.7802341,-0.7803221,-0.7803221,-0.7802341,-0.7802341,-0.7800581,-0.7801461,-0.78041005,-0.780674,-0.78076196,-0.78084993,-0.78076196,-0.780674,-0.780498,-0.780498,-0.780674,-0.78120184,-0.78190565,-0.7817297,-0.7809379,-0.7803221,-0.7803221,-0.7803221,-0.78041005,-0.78076196,-0.780498,-0.7802341,-0.7801461,-0.7801461,-0.7810259,-0.78190565,-0.78155375,-0.78084993,-0.780498,-0.780674,-0.78155375,-0.78225756,-0.7821696,-0.78146577,-0.7810259,-0.7809379,-0.7809379,-0.7809379,-0.7809379,-0.78084993,-0.78076196,-0.7809379,-0.7810259,-0.7809379,-0.780674,-0.7802341,-0.77979416,-0.7797062,-0.77979416,-0.77988213,-0.77988213,-0.77979416,-0.77979416,-0.7797062,-0.77979416,-0.7801461,-0.780498,-0.780674,-0.78041005,-0.7801461,-0.78041005,-0.780674,-0.780674,-0.780674,-0.780674,-0.78076196,-0.780674,-0.780498,-0.78041005,-0.78041005,-0.780586,-0.780674,-0.780498,-0.780498,-0.78041005,-0.78041005,-0.78041005,-0.7803221,-0.7803221,-0.7803221,-0.78041005,-0.78041005,-0.78041005,-0.780498,-0.78076196,-0.7810259,-0.78120184,-0.7813778,-0.78120184,-0.7809379,-0.78076196,-0.7809379,-0.78120184,-0.7816417,-0.7834013,-0.785073,-0.7856888,-0.78551286,-0.7843691,-0.7837532,-0.78190565,-0.7751312,-0.7696765,-0.76914865,-0.7702924,-0.7729318,-0.77750665,-0.7816417,-0.78428113,-0.7856888,-0.7860407,-0.7861287,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7858648,-0.7837532,-0.7796182,-0.77425146,-0.7713481,-0.77504325,-0.78225756,-0.78560084,-0.7858648,-0.78595275,-0.78516096,-0.78357726,-0.7824335,-0.78155375,-0.78111386,-0.78111386,-0.78120184,-0.78120184,-0.78120184,-0.78120184,-0.78120184,-0.7812898,-0.7812898,-0.78120184,-0.78111386,-0.7810259,-0.7809379,-0.7809379,-0.7809379,-0.78084993,-0.7809379,-0.7809379,-0.7809379,-0.7809379,-0.7809379,-0.7809379,-0.78120184,-0.7812898,-0.78120184,-0.7812898,-0.78155375,-0.7816417,-0.78155375,-0.78120184,-0.780674,-0.7803221,-0.7799701,-0.77979416,-0.77988213,-0.7801461,-0.7802341,-0.7803221,-0.7803221,-0.78041005,-0.78041005,-0.7801461,-0.7799701,-0.7801461,-0.7800581,-0.7799701,-0.7799701,-0.7800581,-0.7799701,-0.77988213,-0.77988213,-0.7799701,-0.7801461,-0.7803221,-0.7803221,-0.780498,-0.78041005,-0.7801461,-0.7801461,-0.7801461,-0.7801461,-0.78084993,-0.78155375,-0.7812898,-0.78084993,-0.780674,-0.780674,-0.7810259,-0.78120184,-0.78076196,-0.78041005,-0.780498,-0.78076196,-0.78146577,-0.7819936,-0.7817297,-0.7810259,-0.78084993,-0.78146577,-0.7821696,-0.7819936,-0.78120184,-0.780674,-0.780586,-0.780586,-0.780586,-0.780674,-0.780674,-0.780674,-0.780586,-0.780674,-0.780674,-0.780498,-0.7802341,-0.77988213,-0.7795302,-0.77944225,-0.7795302,-0.7797062,-0.7796182,-0.77944225,-0.77944225,-0.7795302,-0.7796182,-0.7801461,-0.780498,-0.78041005,-0.7802341,-0.7802341,-0.78041005,-0.780674,-0.78076196,-0.78076196,-0.78076196,-0.78076196,-0.780498,-0.780498,-0.780586,-0.780498,-0.780498,-0.780586,-0.780586,-0.780586,-0.780586,-0.780674,-0.780498,-0.78041005,-0.780498,-0.780498,-0.780498,-0.780674,-0.78084993,-0.7810259,-0.78111386,-0.7809379,-0.78076196,-0.78084993,-0.78084993,-0.780586,-0.78041005,-0.780586,-0.78076196,-0.78155375,-0.78357726,-0.78516096,-0.7856888,-0.78551286,-0.7843691,-0.7837532,-0.7813778,-0.7741635,-0.7694126,-0.7694126,-0.7703804,-0.77284384,-0.7772427,-0.7816417,-0.7843691,-0.7856888,-0.7860407,-0.7861287,-0.78630465,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7858648,-0.7839292,-0.7802341,-0.77504325,-0.7714361,-0.77460337,-0.78190565,-0.78551286,-0.7858648,-0.78595275,-0.7853369,-0.78357726,-0.78225756,-0.78146577,-0.7810259,-0.7810259,-0.78120184,-0.78120184,-0.78120184,-0.78120184,-0.7812898,-0.7813778,-0.7813778,-0.7813778,-0.7813778,-0.7812898,-0.78120184,-0.78120184,-0.78111386,-0.7810259,-0.78111386,-0.7810259,-0.7809379,-0.7810259,-0.7810259,-0.7810259,-0.78120184,-0.78120184,-0.78120184,-0.7812898,-0.78146577,-0.78155375,-0.78146577,-0.7812898,-0.7810259,-0.780586,-0.7801461,-0.7799701,-0.7800581,-0.7802341,-0.78041005,-0.780498,-0.78041005,-0.7803221,-0.78041005,-0.7802341,-0.7799701,-0.7799701,-0.7799701,-0.7797062,-0.7797062,-0.77979416,-0.77979416,-0.77979416,-0.77988213,-0.77979416,-0.77979416,-0.77988213,-0.77988213,-0.7800581,-0.7801461,-0.7799701,-0.7799701,-0.77979416,-0.7796182,-0.7800581,-0.780498,-0.780586,-0.78076196,-0.7810259,-0.7812898,-0.7817297,-0.78155375,-0.78076196,-0.780586,-0.7810259,-0.78146577,-0.78190565,-0.7820816,-0.78190565,-0.7816417,-0.78155375,-0.7820816,-0.7820816,-0.78111386,-0.7802341,-0.7801461,-0.7803221,-0.78041005,-0.780498,-0.78041005,-0.7803221,-0.7803221,-0.7803221,-0.7802341,-0.7799701,-0.77979416,-0.7797062,-0.7795302,-0.7792663,-0.7792663,-0.7793543,-0.7793543,-0.7791783,-0.77909034,-0.7791783,-0.7793543,-0.7797062,-0.7802341,-0.78041005,-0.78041005,-0.7803221,-0.7803221,-0.78041005,-0.78076196,-0.7809379,-0.78076196,-0.78084993,-0.78084993,-0.780586,-0.780586,-0.780674,-0.780498,-0.78041005,-0.780498,-0.780586,-0.780674,-0.78076196,-0.78076196,-0.780586,-0.780586,-0.780674,-0.780586,-0.780674,-0.7809379,-0.78111386,-0.7810259,-0.78084993,-0.78041005,-0.7802341,-0.780498,-0.780586,-0.78041005,-0.7802341,-0.7803221,-0.780586,-0.78155375,-0.7838412,-0.7853369,-0.7857768,-0.78551286,-0.7844571,-0.78366524,-0.78084993,-0.7737236,-0.76958853,-0.7697645,-0.7706443,-0.7730198,-0.77750665,-0.7818177,-0.7843691,-0.78560084,-0.7861287,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78595275,-0.7843691,-0.78120184,-0.776099,-0.7717,-0.7738116,-0.78111386,-0.7853369,-0.7857768,-0.78595275,-0.7854249,-0.7837532,-0.78234553,-0.78146577,-0.7810259,-0.7810259,-0.78120184,-0.7812898,-0.78120184,-0.78120184,-0.78120184,-0.7813778,-0.7813778,-0.7813778,-0.78146577,-0.7813778,-0.7813778,-0.7813778,-0.7813778,-0.7812898,-0.7813778,-0.7812898,-0.78120184,-0.78111386,-0.78111386,-0.78120184,-0.78120184,-0.78120184,-0.78120184,-0.7812898,-0.78146577,-0.7816417,-0.78146577,-0.7812898,-0.78111386,-0.78084993,-0.78041005,-0.7802341,-0.7802341,-0.7802341,-0.78041005,-0.780586,-0.78041005,-0.7801461,-0.7801461,-0.7801461,-0.7801461,-0.7800581,-0.7799701,-0.7797062,-0.7795302,-0.7796182,-0.7797062,-0.77979416,-0.77988213,-0.7797062,-0.7795302,-0.7795302,-0.7796182,-0.77979416,-0.77979416,-0.77979416,-0.77988213,-0.77979416,-0.7797062,-0.77988213,-0.7800581,-0.7799701,-0.7801461,-0.78076196,-0.7812898,-0.7816417,-0.78146577,-0.78084993,-0.7810259,-0.7818177,-0.78225756,-0.7824335,-0.78234553,-0.78234553,-0.78269744,-0.7828734,-0.7828734,-0.7819936,-0.780674,-0.7800581,-0.7801461,-0.7801461,-0.7802341,-0.7803221,-0.7801461,-0.7800581,-0.77988213,-0.7797062,-0.7797062,-0.7796182,-0.7795302,-0.77944225,-0.7792663,-0.7791783,-0.7793543,-0.7792663,-0.77909034,-0.77900237,-0.77909034,-0.7791783,-0.7793543,-0.77979416,-0.7802341,-0.780498,-0.780586,-0.780586,-0.780498,-0.780674,-0.7809379,-0.7809379,-0.78084993,-0.7809379,-0.78084993,-0.780586,-0.78041005,-0.78041005,-0.78041005,-0.780498,-0.780498,-0.780586,-0.780586,-0.780586,-0.780586,-0.78041005,-0.780498,-0.780674,-0.780674,-0.78076196,-0.78076196,-0.780586,-0.7803221,-0.7801461,-0.7800581,-0.7801461,-0.780498,-0.780586,-0.78041005,-0.7801461,-0.7803221,-0.78076196,-0.7819936,-0.7843691,-0.78560084,-0.7857768,-0.78551286,-0.7844571,-0.78366524,-0.780674,-0.77389956,-0.76985246,-0.76985246,-0.77055633,-0.77310777,-0.7776826,-0.78190565,-0.7843691,-0.78560084,-0.7862167,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.785073,-0.78225756,-0.7773307,-0.7721399,-0.7730198,-0.7800581,-0.78516096,-0.7857768,-0.78595275,-0.78560084,-0.7841052,-0.78260946,-0.7818177,-0.7812898,-0.7810259,-0.78120184,-0.7813778,-0.7812898,-0.78120184,-0.78120184,-0.7812898,-0.7812898,-0.7812898,-0.7813778,-0.7812898,-0.7812898,-0.7813778,-0.78146577,-0.78155375,-0.7816417,-0.78155375,-0.78146577,-0.7813778,-0.7812898,-0.7813778,-0.7812898,-0.78120184,-0.78120184,-0.7812898,-0.78146577,-0.7816417,-0.78146577,-0.7812898,-0.78120184,-0.7810259,-0.78076196,-0.780586,-0.78041005,-0.78041005,-0.78041005,-0.78041005,-0.7803221,-0.7802341,-0.7799701,-0.77979416,-0.77979416,-0.77988213,-0.77988213,-0.77979416,-0.7796182,-0.7795302,-0.7795302,-0.7797062,-0.77979416,-0.7796182,-0.7796182,-0.7797062,-0.7797062,-0.77979416,-0.7797062,-0.7797062,-0.77988213,-0.7799701,-0.7799701,-0.7801461,-0.7802341,-0.7800581,-0.77988213,-0.780498,-0.7810259,-0.7812898,-0.78146577,-0.78146577,-0.78190565,-0.78269744,-0.78296137,-0.7828734,-0.7828734,-0.78304935,-0.78357726,-0.7839292,-0.7834893,-0.78190565,-0.780498,-0.7800581,-0.7799701,-0.7799701,-0.7801461,-0.7801461,-0.77988213,-0.7796182,-0.77944225,-0.7792663,-0.7792663,-0.7793543,-0.7793543,-0.7792663,-0.77900237,-0.77900237,-0.7791783,-0.77900237,-0.77873844,-0.77873844,-0.7789144,-0.7791783,-0.7795302,-0.7799701,-0.7802341,-0.780586,-0.780674,-0.780674,-0.780674,-0.78084993,-0.7809379,-0.7809379,-0.7809379,-0.78084993,-0.78076196,-0.780498,-0.7802341,-0.7801461,-0.7802341,-0.78041005,-0.78041005,-0.78041005,-0.78041005,-0.780498,-0.780586,-0.780586,-0.780674,-0.78076196,-0.780674,-0.780498,-0.7803221,-0.7801461,-0.7800581,-0.7801461,-0.7802341,-0.7803221,-0.780498,-0.780498,-0.780498,-0.7803221,-0.780498,-0.7810259,-0.78260946,-0.784809,-0.7856888,-0.7857768,-0.7854249,-0.7844571,-0.7837532,-0.7802341,-0.77310777,-0.76958853,-0.7697645,-0.77055633,-0.77354765,-0.7781225,-0.78190565,-0.78428113,-0.78560084,-0.7862167,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.78551286,-0.7831373,-0.77865046,-0.77310777,-0.7725798,-0.7788264,-0.784809,-0.78595275,-0.7858648,-0.7856888,-0.7844571,-0.78296137,-0.7820816,-0.78155375,-0.7810259,-0.7810259,-0.78111386,-0.78111386,-0.78111386,-0.78111386,-0.78120184,-0.78120184,-0.78120184,-0.78120184,-0.78120184,-0.78120184,-0.7812898,-0.7813778,-0.78146577,-0.78155375,-0.7816417,-0.7816417,-0.78155375,-0.78146577,-0.78146577,-0.7813778,-0.7812898,-0.7812898,-0.7813778,-0.78155375,-0.78155375,-0.78146577,-0.7813778,-0.7812898,-0.78111386,-0.7810259,-0.78084993,-0.780498,-0.780498,-0.780586,-0.780586,-0.7803221,-0.7801461,-0.7799701,-0.7796182,-0.7796182,-0.7797062,-0.7797062,-0.7797062,-0.7797062,-0.7795302,-0.7793543,-0.77944225,-0.7796182,-0.77979416,-0.77988213,-0.7799701,-0.7800581,-0.7799701,-0.7797062,-0.7797062,-0.77979416,-0.77988213,-0.7799701,-0.7803221,-0.780674,-0.780498,-0.7802341,-0.78041005,-0.78084993,-0.7812898,-0.7819936,-0.7825215,-0.78260946,-0.78304935,-0.7834013,-0.7832253,-0.7832253,-0.7834893,-0.7837532,-0.7838412,-0.7828734,-0.78111386,-0.7801461,-0.7800581,-0.77988213,-0.77979416,-0.77988213,-0.77979416,-0.7796182,-0.7793543,-0.7791783,-0.7791783,-0.7791783,-0.77909034,-0.7791783,-0.7792663,-0.77909034,-0.7789144,-0.7789144,-0.7788264,-0.77873844,-0.77873844,-0.7789144,-0.7792663,-0.77979416,-0.7800581,-0.7802341,-0.780498,-0.780586,-0.780586,-0.780674,-0.78084993,-0.78084993,-0.78084993,-0.78084993,-0.78084993,-0.780674,-0.78041005,-0.7802341,-0.7802341,-0.78041005,-0.780498,-0.780498,-0.780498,-0.780498,-0.780674,-0.780586,-0.780498,-0.78041005,-0.78041005,-0.7802341,-0.7800581,-0.7800581,-0.7800581,-0.7801461,-0.7802341,-0.7803221,-0.780498,-0.78041005,-0.78041005,-0.780498,-0.780498,-0.780674,-0.7816417,-0.7834013,-0.78516096,-0.7856888,-0.7857768,-0.7853369,-0.78463304,-0.7839292,-0.77944225,-0.771788,-0.7690607,-0.7697645,-0.7706443,-0.7738116,-0.77829856,-0.78190565,-0.7843691,-0.7856888,-0.7862167,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7857768,-0.7838412,-0.7801461,-0.7747793,-0.77240384,-0.7773307,-0.7841052,-0.7858648,-0.7857768,-0.7857768,-0.78498495,-0.78331333,-0.78190565,-0.78120184,-0.78084993,-0.78084993,-0.7809379,-0.7809379,-0.7810259,-0.7810259,-0.7810259,-0.78120184,-0.78120184,-0.78111386,-0.78111386,-0.78111386,-0.78120184,-0.7812898,-0.7812898,-0.7813778,-0.78146577,-0.78146577,-0.78146577,-0.78146577,-0.78155375,-0.78146577,-0.7813778,-0.78146577,-0.78155375,-0.7816417,-0.7817297,-0.78155375,-0.7813778,-0.78120184,-0.78111386,-0.78111386,-0.7809379,-0.78076196,-0.780674,-0.780674,-0.780674,-0.7803221,-0.77988213,-0.7797062,-0.7796182,-0.77944225,-0.77944225,-0.7795302,-0.7796182,-0.7796182,-0.7796182,-0.7795302,-0.7796182,-0.77979416,-0.7800581,-0.7800581,-0.7801461,-0.7802341,-0.7801461,-0.7800581,-0.7801461,-0.7802341,-0.7803221,-0.780498,-0.78084993,-0.78111386,-0.7810259,-0.780498,-0.7803221,-0.78076196,-0.7813778,-0.7825215,-0.7831373,-0.78304935,-0.78331333,-0.7838412,-0.78357726,-0.7834013,-0.7834893,-0.7834013,-0.7828734,-0.7816417,-0.7803221,-0.77988213,-0.7799701,-0.7799701,-0.7799701,-0.7799701,-0.7799701,-0.77979416,-0.77944225,-0.7791783,-0.7792663,-0.7793543,-0.7793543,-0.7793543,-0.77944225,-0.7792663,-0.7791783,-0.7791783,-0.77909034,-0.77900237,-0.7789144,-0.7791783,-0.7797062,-0.7799701,-0.7801461,-0.78041005,-0.78041005,-0.7803221,-0.780498,-0.780674,-0.78084993,-0.7809379,-0.7809379,-0.7809379,-0.7809379,-0.78076196,-0.7803221,-0.7801461,-0.78041005,-0.780674,-0.78076196,-0.78076196,-0.78076196,-0.78076196,-0.780498,-0.7802341,-0.7799701,-0.7799701,-0.77988213,-0.77988213,-0.7799701,-0.7800581,-0.7801461,-0.7801461,-0.7802341,-0.780498,-0.780674,-0.780586,-0.78041005,-0.780498,-0.780498,-0.7809379,-0.7819936,-0.78366524,-0.78524894,-0.7857768,-0.7858648,-0.7853369,-0.784809,-0.7838412,-0.7784745,-0.7709962,-0.7689727,-0.7697645,-0.77090824,-0.7741635,-0.77838653,-0.7819936,-0.78454506,-0.7858648,-0.7862167,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.78595275,-0.7843691,-0.7813778,-0.77601105,-0.7721399,-0.77565914,-0.78296137,-0.7857768,-0.7857768,-0.7858648,-0.7854249,-0.7834013,-0.78120184,-0.78084993,-0.7810259,-0.7810259,-0.7809379,-0.7810259,-0.78111386,-0.7810259,-0.7810259,-0.78111386,-0.7810259,-0.7810259,-0.7810259,-0.7810259,-0.7810259,-0.78120184,-0.7812898,-0.7812898,-0.7812898,-0.7812898,-0.7813778,-0.7813778,-0.78146577,-0.78155375,-0.78146577,-0.78146577,-0.78155375,-0.78155375,-0.7816417,-0.7816417,-0.7813778,-0.78120184,-0.78120184,-0.78111386,-0.7809379,-0.7809379,-0.78084993,-0.780586,-0.780498,-0.7803221,-0.77988213,-0.7796182,-0.7797062,-0.7796182,-0.77944225,-0.7793543,-0.7795302,-0.77979416,-0.77988213,-0.7799701,-0.7799701,-0.7800581,-0.7802341,-0.7802341,-0.7803221,-0.78041005,-0.780586,-0.780498,-0.780586,-0.780674,-0.78076196,-0.78084993,-0.7810259,-0.78120184,-0.78111386,-0.780674,-0.780498,-0.78084993,-0.78146577,-0.78260946,-0.78331333,-0.7831373,-0.78357726,-0.7841052,-0.78357726,-0.7832253,-0.7832253,-0.7827854,-0.78190565,-0.7810259,-0.7803221,-0.77988213,-0.7799701,-0.7800581,-0.7800581,-0.7799701,-0.77988213,-0.77979416,-0.7796182,-0.77944225,-0.77944225,-0.77944225,-0.77944225,-0.7796182,-0.7796182,-0.7795302,-0.77944225,-0.77944225,-0.7793543,-0.77909034,-0.77909034,-0.7795302,-0.77988213,-0.7800581,-0.7802341,-0.78041005,-0.78041005,-0.7803221,-0.780498,-0.78076196,-0.7809379,-0.78111386,-0.7810259,-0.7809379,-0.7809379,-0.780674,-0.7802341,-0.7802341,-0.780674,-0.7809379,-0.7809379,-0.78076196,-0.780498,-0.7803221,-0.7802341,-0.7800581,-0.7799701,-0.7800581,-0.7800581,-0.7800581,-0.7802341,-0.78041005,-0.780586,-0.780586,-0.780674,-0.78084993,-0.78084993,-0.78076196,-0.780674,-0.780586,-0.780498,-0.780674,-0.78146577,-0.78331333,-0.7853369,-0.78595275,-0.78595275,-0.7854249,-0.78498495,-0.7834893,-0.7774187,-0.7707323,-0.7694126,-0.76985246,-0.7710842,-0.77469134,-0.77873844,-0.7820816,-0.78454506,-0.7858648,-0.7862167,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.78595275,-0.78454506,-0.7820816,-0.7768908,-0.7721399,-0.77433944,-0.7818177,-0.7856888,-0.78595275,-0.7858648,-0.78551286,-0.7834013,-0.7810259,-0.78084993,-0.78120184,-0.78111386,-0.78111386,-0.78120184,-0.78120184,-0.78120184,-0.78111386,-0.7810259,-0.7809379,-0.7810259,-0.7810259,-0.7809379,-0.7809379,-0.7810259,-0.78120184,-0.7812898,-0.7812898,-0.7812898,-0.7813778,-0.7813778,-0.78146577,-0.78146577,-0.7813778,-0.7813778,-0.78146577,-0.78146577,-0.78155375,-0.78146577,-0.7812898,-0.7812898,-0.7812898,-0.7812898,-0.7810259,-0.78076196,-0.780674,-0.78041005,-0.7802341,-0.7802341,-0.7800581,-0.7797062,-0.7796182,-0.7797062,-0.7797062,-0.7797062,-0.77979416,-0.77988213,-0.7799701,-0.7800581,-0.7802341,-0.7803221,-0.7803221,-0.7803221,-0.780498,-0.780674,-0.780674,-0.780586,-0.780674,-0.780674,-0.78076196,-0.7809379,-0.7810259,-0.7809379,-0.7809379,-0.78084993,-0.780674,-0.7810259,-0.78155375,-0.7824335,-0.78296137,-0.78296137,-0.7834893,-0.7839292,-0.7832253,-0.7827854,-0.78296137,-0.78225756,-0.7813778,-0.7809379,-0.780498,-0.7801461,-0.7801461,-0.78041005,-0.7803221,-0.7800581,-0.77979416,-0.7796182,-0.7796182,-0.7796182,-0.7795302,-0.7793543,-0.77944225,-0.7796182,-0.7797062,-0.7796182,-0.7796182,-0.7796182,-0.7796182,-0.7797062,-0.77988213,-0.77979416,-0.77979416,-0.7801461,-0.78041005,-0.7803221,-0.7803221,-0.78041005,-0.780586,-0.7809379,-0.78111386,-0.78111386,-0.7810259,-0.7809379,-0.78084993,-0.780586,-0.7803221,-0.780586,-0.7809379,-0.78111386,-0.78111386,-0.780674,-0.7802341,-0.7801461,-0.7800581,-0.7800581,-0.7801461,-0.7802341,-0.7803221,-0.78041005,-0.780586,-0.78076196,-0.78076196,-0.780674,-0.780674,-0.780674,-0.780674,-0.780674,-0.780674,-0.780498,-0.78041005,-0.7803221,-0.78084993,-0.78296137,-0.7853369,-0.78595275,-0.78595275,-0.78551286,-0.785073,-0.78296137,-0.77645093,-0.77055633,-0.7697645,-0.7701164,-0.7713481,-0.7748673,-0.7789144,-0.7821696,-0.78454506,-0.7857768,-0.7861287,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7858648,-0.78454506,-0.78234553,-0.7776826,-0.77240384,-0.77310777,-0.78041005,-0.78524894,-0.78595275,-0.7857768,-0.7856888,-0.7839292,-0.78146577,-0.7809379,-0.7812898,-0.78120184,-0.78120184,-0.7813778,-0.7813778,-0.7813778,-0.78120184,-0.78111386,-0.78111386,-0.78111386,-0.78111386,-0.78120184,-0.78111386,-0.7810259,-0.78111386,-0.78111386,-0.78111386,-0.7812898,-0.78146577,-0.78146577,-0.78146577,-0.78146577,-0.78146577,-0.7813778,-0.7813778,-0.78146577,-0.78155375,-0.7813778,-0.7812898,-0.7813778,-0.78146577,-0.7813778,-0.78111386,-0.78084993,-0.780674,-0.7803221,-0.7799701,-0.7801461,-0.7802341,-0.7799701,-0.7797062,-0.7796182,-0.7797062,-0.7802341,-0.780586,-0.780498,-0.7803221,-0.7803221,-0.78041005,-0.78041005,-0.7803221,-0.78041005,-0.780586,-0.780674,-0.780586,-0.780586,-0.780674,-0.780498,-0.780674,-0.7810259,-0.7809379,-0.78076196,-0.7809379,-0.7809379,-0.78076196,-0.7810259,-0.7818177,-0.78260946,-0.78269744,-0.78260946,-0.7832253,-0.7834893,-0.78269744,-0.78225756,-0.7824335,-0.78190565,-0.7810259,-0.78076196,-0.780674,-0.780674,-0.780586,-0.780586,-0.780498,-0.78041005,-0.7801461,-0.7799701,-0.77988213,-0.7799701,-0.7800581,-0.7800581,-0.7800581,-0.7800581,-0.7799701,-0.7800581,-0.7801461,-0.78041005,-0.780674,-0.78084993,-0.78041005,-0.77979416,-0.77988213,-0.7803221,-0.7803221,-0.7802341,-0.7803221,-0.78041005,-0.780586,-0.78084993,-0.7810259,-0.7810259,-0.7810259,-0.7810259,-0.78084993,-0.780586,-0.780498,-0.78076196,-0.7809379,-0.7809379,-0.7809379,-0.780586,-0.7803221,-0.7803221,-0.7801461,-0.7802341,-0.78041005,-0.78041005,-0.78041005,-0.780498,-0.780498,-0.780498,-0.78041005,-0.78041005,-0.78041005,-0.78041005,-0.780498,-0.780498,-0.780498,-0.780498,-0.780498,-0.7803221,-0.78084993,-0.78304935,-0.7854249,-0.7860407,-0.7860407,-0.78560084,-0.78498495,-0.7821696,-0.7754832,-0.7701164,-0.7696765,-0.7700284,-0.7710842,-0.7749553,-0.7793543,-0.78260946,-0.784721,-0.7858648,-0.7861287,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7857768,-0.78454506,-0.7824335,-0.77821046,-0.77284384,-0.771876,-0.77838653,-0.7843691,-0.7857768,-0.78560084,-0.7858648,-0.78454506,-0.78190565,-0.7809379,-0.7812898,-0.7813778,-0.7813778,-0.7816417,-0.7817297,-0.7816417,-0.7813778,-0.7813778,-0.78155375,-0.78146577,-0.7813778,-0.7813778,-0.7813778,-0.7812898,-0.7812898,-0.7812898,-0.7812898,-0.7812898,-0.7813778,-0.7813778,-0.7813778,-0.7813778,-0.78146577,-0.7813778,-0.7813778,-0.78146577,-0.78146577,-0.7812898,-0.7812898,-0.7813778,-0.78146577,-0.7813778,-0.78120184,-0.7809379,-0.780674,-0.7803221,-0.7799701,-0.7799701,-0.7803221,-0.78041005,-0.7802341,-0.77988213,-0.77979416,-0.780498,-0.7812898,-0.7812898,-0.7809379,-0.78084993,-0.78084993,-0.780674,-0.780498,-0.780498,-0.780586,-0.780586,-0.780674,-0.78076196,-0.780674,-0.780674,-0.78084993,-0.7810259,-0.78076196,-0.780674,-0.7809379,-0.78111386,-0.78084993,-0.78111386,-0.7821696,-0.7828734,-0.78260946,-0.7825215,-0.7831373,-0.7832253,-0.7824335,-0.7821696,-0.7820816,-0.78146577,-0.78076196,-0.780586,-0.780674,-0.78076196,-0.7809379,-0.7809379,-0.78076196,-0.780586,-0.7803221,-0.7800581,-0.7800581,-0.7801461,-0.780498,-0.780586,-0.780498,-0.780498,-0.780674,-0.7809379,-0.7812898,-0.78146577,-0.78146577,-0.7809379,-0.7803221,-0.7800581,-0.7802341,-0.7803221,-0.7800581,-0.7800581,-0.7802341,-0.78041005,-0.780674,-0.7809379,-0.78111386,-0.78111386,-0.7810259,-0.7809379,-0.780674,-0.780586,-0.780674,-0.7809379,-0.7810259,-0.7809379,-0.78084993,-0.780674,-0.780586,-0.780586,-0.780498,-0.780498,-0.780586,-0.780498,-0.780498,-0.78041005,-0.7803221,-0.78041005,-0.78041005,-0.7803221,-0.78041005,-0.78041005,-0.78041005,-0.78041005,-0.78041005,-0.780498,-0.780586,-0.78041005,-0.7809379,-0.7832253,-0.78551286,-0.7860407,-0.7860407,-0.7856888,-0.78498495,-0.78146577,-0.7744274,-0.7697645,-0.7696765,-0.76994044,-0.7714361,-0.7754832,-0.77979416,-0.78304935,-0.78498495,-0.78595275,-0.7862167,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78595275,-0.78489697,-0.7825215,-0.77865046,-0.7738116,-0.77161205,-0.77671486,-0.78331333,-0.7857768,-0.7856888,-0.78595275,-0.785073,-0.7824335,-0.7809379,-0.78120184,-0.7813778,-0.78155375,-0.78190565,-0.7819936,-0.78190565,-0.7817297,-0.7817297,-0.78190565,-0.7818177,-0.7817297,-0.7817297,-0.78155375,-0.78146577,-0.78146577,-0.78155375,-0.78155375,-0.78146577,-0.78146577,-0.78146577,-0.7813778,-0.7813778,-0.7813778,-0.7812898,-0.7812898,-0.7813778,-0.7813778,-0.78146577,-0.78146577,-0.7813778,-0.78146577,-0.7813778,-0.78111386,-0.7809379,-0.780674,-0.78041005,-0.7799701,-0.77988213,-0.7803221,-0.78076196,-0.78084993,-0.78041005,-0.7801461,-0.780674,-0.78120184,-0.78120184,-0.7809379,-0.78084993,-0.78084993,-0.78076196,-0.780586,-0.780498,-0.780586,-0.780674,-0.78076196,-0.78084993,-0.78084993,-0.78084993,-0.7809379,-0.7809379,-0.78076196,-0.780586,-0.78084993,-0.78111386,-0.7810259,-0.7812898,-0.7821696,-0.78260946,-0.78225756,-0.78234553,-0.7831373,-0.78296137,-0.7824335,-0.7824335,-0.7821696,-0.7812898,-0.780586,-0.78041005,-0.780674,-0.78084993,-0.7810259,-0.7810259,-0.78076196,-0.780586,-0.780498,-0.7801461,-0.7800581,-0.7802341,-0.780498,-0.780674,-0.78076196,-0.7809379,-0.78120184,-0.7817297,-0.7821696,-0.7818177,-0.78111386,-0.78076196,-0.780674,-0.780674,-0.780586,-0.7803221,-0.7799701,-0.7799701,-0.7802341,-0.780586,-0.78084993,-0.7810259,-0.78111386,-0.7810259,-0.7810259,-0.78084993,-0.780586,-0.780498,-0.78084993,-0.78111386,-0.78111386,-0.7810259,-0.78084993,-0.78076196,-0.78076196,-0.78076196,-0.780674,-0.780586,-0.780586,-0.780498,-0.780498,-0.780498,-0.78041005,-0.78041005,-0.78041005,-0.780498,-0.780586,-0.780586,-0.78041005,-0.780498,-0.780498,-0.780498,-0.780586,-0.780498,-0.78111386,-0.7834893,-0.78560084,-0.78595275,-0.78595275,-0.78560084,-0.78489697,-0.780586,-0.7733717,-0.7696765,-0.76985246,-0.77046835,-0.7724918,-0.77636296,-0.7802341,-0.78331333,-0.785073,-0.78595275,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.78630465,-0.78595275,-0.785073,-0.78269744,-0.7789144,-0.7745154,-0.7717,-0.77504325,-0.7818177,-0.78551286,-0.7858648,-0.78595275,-0.78551286,-0.7834013,-0.7812898,-0.7810259,-0.7813778,-0.7813778,-0.7816417,-0.7817297,-0.7817297,-0.78190565,-0.7819936,-0.7819936,-0.7819936,-0.7819936,-0.7820816,-0.7818177,-0.7817297,-0.7818177,-0.7818177,-0.7818177,-0.7817297,-0.7816417,-0.78155375,-0.78146577,-0.78155375,-0.78146577,-0.7812898,-0.7813778,-0.7813778,-0.7813778,-0.78146577,-0.78155375,-0.78146577,-0.78146577,-0.7813778,-0.78111386,-0.7809379,-0.78084993,-0.780586,-0.7801461,-0.7799701,-0.7802341,-0.78076196,-0.78120184,-0.7810259,-0.780498,-0.780498,-0.78076196,-0.78084993,-0.78076196,-0.780674,-0.780674,-0.780674,-0.780586,-0.780586,-0.780498,-0.780498,-0.780586,-0.78076196,-0.780674,-0.780674,-0.78084993,-0.78076196,-0.780586,-0.780498,-0.780586,-0.78084993,-0.7809379,-0.78146577,-0.7821696,-0.78225756,-0.78190565,-0.78225756,-0.78296137,-0.78260946,-0.78225756,-0.7825215,-0.7820816,-0.78120184,-0.780674,-0.780674,-0.7810259,-0.7812898,-0.7813778,-0.78111386,-0.78076196,-0.780586,-0.780498,-0.7803221,-0.7802341,-0.78041005,-0.780586,-0.7809379,-0.7812898,-0.78146577,-0.7817297,-0.7819936,-0.78190565,-0.78120184,-0.78084993,-0.7810259,-0.7810259,-0.780674,-0.780498,-0.7802341,-0.7799701,-0.7801461,-0.7803221,-0.780498,-0.78076196,-0.7809379,-0.7810259,-0.7809379,-0.7809379,-0.78084993,-0.780586,-0.780498,-0.780674,-0.7810259,-0.78120184,-0.78111386,-0.78084993,-0.78076196,-0.78084993,-0.78076196,-0.780586,-0.780498,-0.780586,-0.780586,-0.780586,-0.780498,-0.780498,-0.780498,-0.780586,-0.78076196,-0.7809379,-0.78084993,-0.780674,-0.780674,-0.780674,-0.780586,-0.780674,-0.780498,-0.7813778,-0.7838412,-0.7856888,-0.78595275,-0.7858648,-0.7856888,-0.78454506,-0.7796182,-0.7724918,-0.76958853,-0.76985246,-0.7706443,-0.77319574,-0.77715474,-0.780674,-0.7834013,-0.78516096,-0.7860407,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7856888,-0.784721,-0.78269744,-0.7792663,-0.77521926,-0.7717,-0.7732837,-0.77988213,-0.78498495,-0.78595275,-0.7858648,-0.7858648,-0.7843691,-0.7818177,-0.7810259,-0.7812898,-0.7812898,-0.7812898,-0.7813778,-0.78146577,-0.7817297,-0.7818177,-0.7818177,-0.78190565,-0.7819936,-0.7819936,-0.7820816,-0.7820816,-0.7819936,-0.7819936,-0.7819936,-0.78190565,-0.78190565,-0.7818177,-0.7817297,-0.7817297,-0.78155375,-0.7813778,-0.78146577,-0.78146577,-0.78120184,-0.7812898,-0.78146577,-0.78146577,-0.78155375,-0.78146577,-0.78120184,-0.7810259,-0.7809379,-0.780586,-0.7802341,-0.7800581,-0.7802341,-0.78076196,-0.7813778,-0.78146577,-0.7810259,-0.780586,-0.78041005,-0.780498,-0.780586,-0.780674,-0.78076196,-0.78076196,-0.780674,-0.780586,-0.78041005,-0.78041005,-0.780586,-0.78076196,-0.780674,-0.78076196,-0.7809379,-0.780674,-0.78041005,-0.78041005,-0.78041005,-0.780674,-0.7812898,-0.7819936,-0.78269744,-0.78269744,-0.78234553,-0.78260946,-0.7832253,-0.7827854,-0.7824335,-0.78260946,-0.7820816,-0.7812898,-0.7809379,-0.7809379,-0.78111386,-0.7813778,-0.7816417,-0.7813778,-0.7809379,-0.78076196,-0.780674,-0.78041005,-0.78041005,-0.780586,-0.780674,-0.78111386,-0.78155375,-0.7818177,-0.78190565,-0.78190565,-0.7816417,-0.7810259,-0.78076196,-0.78084993,-0.7809379,-0.78084993,-0.780586,-0.78041005,-0.78041005,-0.780498,-0.78041005,-0.780498,-0.78076196,-0.78111386,-0.78120184,-0.7810259,-0.78084993,-0.78076196,-0.780674,-0.780498,-0.780674,-0.7810259,-0.78120184,-0.7810259,-0.7809379,-0.78084993,-0.78084993,-0.78076196,-0.780586,-0.780498,-0.780586,-0.780674,-0.780586,-0.780498,-0.780498,-0.780586,-0.780586,-0.78076196,-0.7809379,-0.7809379,-0.7809379,-0.78084993,-0.780674,-0.780586,-0.780674,-0.780498,-0.78155375,-0.7841052,-0.7857768,-0.7858648,-0.7857768,-0.78560084,-0.7839292,-0.7784745,-0.77196395,-0.76985246,-0.7700284,-0.77082026,-0.7733717,-0.7773307,-0.78084993,-0.7834893,-0.78524894,-0.7862167,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7860407,-0.7854249,-0.78419316,-0.7824335,-0.7796182,-0.776187,-0.7725798,-0.7724918,-0.7781225,-0.7841052,-0.7860407,-0.7858648,-0.78595275,-0.7853369,-0.78296137,-0.7812898,-0.78111386,-0.78120184,-0.78111386,-0.78120184,-0.78120184,-0.7812898,-0.7813778,-0.78146577,-0.7817297,-0.78190565,-0.78190565,-0.7819936,-0.7819936,-0.7819936,-0.7819936,-0.7820816,-0.7820816,-0.7819936,-0.78190565,-0.78190565,-0.7818177,-0.7817297,-0.78155375,-0.78146577,-0.7813778,-0.78120184,-0.78111386,-0.7812898,-0.78146577,-0.7816417,-0.7816417,-0.7813778,-0.78111386,-0.78084993,-0.780498,-0.7801461,-0.7802341,-0.780586,-0.7810259,-0.78146577,-0.7817297,-0.7817297,-0.78120184,-0.78076196,-0.780674,-0.780674,-0.780674,-0.78076196,-0.78076196,-0.78076196,-0.780586,-0.780498,-0.7803221,-0.780674,-0.7809379,-0.78076196,-0.7809379,-0.78120184,-0.7809379,-0.78076196,-0.780674,-0.78041005,-0.78084993,-0.78190565,-0.78260946,-0.7831373,-0.7831373,-0.78269744,-0.7828734,-0.78331333,-0.7828734,-0.78260946,-0.7827854,-0.7824335,-0.78155375,-0.78120184,-0.78120184,-0.7812898,-0.78146577,-0.7816417,-0.7812898,-0.78076196,-0.78076196,-0.78084993,-0.780498,-0.78041005,-0.780586,-0.78076196,-0.78111386,-0.7816417,-0.78190565,-0.7819936,-0.7818177,-0.78155375,-0.78120184,-0.780586,-0.7802341,-0.7809379,-0.78146577,-0.78120184,-0.7809379,-0.7809379,-0.780586,-0.7802341,-0.780498,-0.78076196,-0.78111386,-0.78120184,-0.7810259,-0.78084993,-0.78076196,-0.78076196,-0.780674,-0.78076196,-0.78111386,-0.7812898,-0.78111386,-0.78084993,-0.78084993,-0.78084993,-0.78076196,-0.780498,-0.78041005,-0.78084993,-0.78111386,-0.7809379,-0.78076196,-0.78076196,-0.78084993,-0.78076196,-0.78076196,-0.780674,-0.78076196,-0.78084993,-0.78084993,-0.780674,-0.780674,-0.780674,-0.780586,-0.7820816,-0.78463304,-0.7858648,-0.7858648,-0.7857768,-0.7853369,-0.78260946,-0.77636296,-0.77090824,-0.76994044,-0.77020437,-0.77090824,-0.77354765,-0.7775946,-0.78111386,-0.78366524,-0.7853369,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.78630465,-0.7860407,-0.7853369,-0.7837532,-0.7819936,-0.7795302,-0.77636296,-0.7732837,-0.7722279,-0.77645093,-0.7828734,-0.7858648,-0.7858648,-0.78595275,-0.7858648,-0.78428113,-0.7820816,-0.78111386,-0.78111386,-0.7810259,-0.7810259,-0.78111386,-0.78111386,-0.78120184,-0.7813778,-0.78146577,-0.7816417,-0.7817297,-0.7818177,-0.7818177,-0.78190565,-0.7819936,-0.7819936,-0.7819936,-0.78190565,-0.7818177,-0.7818177,-0.7818177,-0.7817297,-0.7816417,-0.78155375,-0.78146577,-0.78120184,-0.78111386,-0.78111386,-0.78146577,-0.7817297,-0.7816417,-0.78146577,-0.7812898,-0.7809379,-0.780498,-0.7801461,-0.78041005,-0.7809379,-0.7812898,-0.78155375,-0.7817297,-0.7817297,-0.78146577,-0.7812898,-0.78111386,-0.7809379,-0.780674,-0.780586,-0.78084993,-0.78084993,-0.780674,-0.780498,-0.78041005,-0.780674,-0.7809379,-0.78084993,-0.78111386,-0.7813778,-0.78120184,-0.78120184,-0.78084993,-0.780498,-0.78120184,-0.7824335,-0.7827854,-0.7828734,-0.7827854,-0.78260946,-0.78296137,-0.7834013,-0.7828734,-0.7825215,-0.7827854,-0.78260946,-0.7818177,-0.7813778,-0.7813778,-0.78120184,-0.78120184,-0.7813778,-0.78111386,-0.78076196,-0.780674,-0.78076196,-0.78041005,-0.7803221,-0.780674,-0.78084993,-0.78111386,-0.78155375,-0.78190565,-0.7819936,-0.78190565,-0.7816417,-0.78111386,-0.780586,-0.780498,-0.7812898,-0.7818177,-0.7817297,-0.78155375,-0.7810259,-0.7803221,-0.7800581,-0.78041005,-0.78084993,-0.78111386,-0.78120184,-0.78111386,-0.78084993,-0.78076196,-0.78076196,-0.78084993,-0.78084993,-0.7810259,-0.7812898,-0.7813778,-0.78111386,-0.7809379,-0.78084993,-0.780674,-0.780498,-0.78041005,-0.78076196,-0.7812898,-0.7813778,-0.78120184,-0.78120184,-0.78120184,-0.7810259,-0.7809379,-0.78084993,-0.78084993,-0.78084993,-0.7809379,-0.7809379,-0.78076196,-0.780586,-0.78084993,-0.7827854,-0.78524894,-0.7860407,-0.7858648,-0.7856888,-0.78516096,-0.7809379,-0.77389956,-0.7697645,-0.7697645,-0.7700284,-0.7710842,-0.7740755,-0.7780345,-0.7813778,-0.7837532,-0.7854249,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78595275,-0.78498495,-0.7834013,-0.78190565,-0.7792663,-0.776187,-0.7736356,-0.7717,-0.7744274,-0.78111386,-0.78551286,-0.78595275,-0.7857768,-0.7858648,-0.78524894,-0.78304935,-0.7813778,-0.78111386,-0.7810259,-0.7810259,-0.7810259,-0.7810259,-0.78111386,-0.78120184,-0.78111386,-0.78120184,-0.7813778,-0.78155375,-0.7817297,-0.7819936,-0.7819936,-0.78190565,-0.78190565,-0.78190565,-0.7818177,-0.7817297,-0.7816417,-0.7816417,-0.7816417,-0.78155375,-0.78146577,-0.7812898,-0.78111386,-0.7810259,-0.78120184,-0.78155375,-0.78155375,-0.78155375,-0.7813778,-0.7810259,-0.780498,-0.7801461,-0.7803221,-0.7810259,-0.78155375,-0.7817297,-0.7817297,-0.78155375,-0.7813778,-0.7812898,-0.78120184,-0.7810259,-0.780674,-0.780586,-0.78084993,-0.7809379,-0.780674,-0.78041005,-0.7802341,-0.780498,-0.78076196,-0.78084993,-0.7812898,-0.78146577,-0.78120184,-0.7810259,-0.78084993,-0.78111386,-0.7820816,-0.7825215,-0.78234553,-0.7825215,-0.7825215,-0.78234553,-0.78296137,-0.78357726,-0.78260946,-0.7820816,-0.7827854,-0.7828734,-0.7818177,-0.7812898,-0.78146577,-0.7813778,-0.78111386,-0.7810259,-0.78084993,-0.78076196,-0.78076196,-0.780586,-0.780498,-0.780498,-0.780674,-0.7809379,-0.78120184,-0.78146577,-0.7818177,-0.7819936,-0.7820816,-0.7820816,-0.7816417,-0.7813778,-0.7817297,-0.78234553,-0.78260946,-0.7824335,-0.7818177,-0.7809379,-0.7802341,-0.7800581,-0.780498,-0.7810259,-0.7812898,-0.78120184,-0.7810259,-0.78084993,-0.78076196,-0.78076196,-0.78084993,-0.78076196,-0.78084993,-0.78120184,-0.7816417,-0.78155375,-0.7813778,-0.78120184,-0.7809379,-0.78076196,-0.780586,-0.780586,-0.78076196,-0.78084993,-0.78076196,-0.78084993,-0.78084993,-0.7809379,-0.78111386,-0.78120184,-0.7810259,-0.78084993,-0.7810259,-0.78111386,-0.7809379,-0.780674,-0.78120184,-0.7834893,-0.7856888,-0.7861287,-0.7858648,-0.78560084,-0.7844571,-0.77865046,-0.77196395,-0.76950055,-0.76985246,-0.7702924,-0.771876,-0.7749553,-0.77865046,-0.7818177,-0.7840172,-0.78551286,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7858648,-0.784809,-0.7834013,-0.78190565,-0.77909034,-0.776099,-0.7741635,-0.77205193,-0.77284384,-0.7789144,-0.78463304,-0.78595275,-0.7856888,-0.7856888,-0.7857768,-0.78428113,-0.7821696,-0.78120184,-0.7810259,-0.7809379,-0.7810259,-0.7809379,-0.7809379,-0.7809379,-0.78084993,-0.7809379,-0.78111386,-0.7812898,-0.78155375,-0.7818177,-0.7819936,-0.78190565,-0.78190565,-0.78190565,-0.7817297,-0.78155375,-0.78155375,-0.78146577,-0.78146577,-0.78146577,-0.78146577,-0.7813778,-0.78111386,-0.7809379,-0.78111386,-0.7813778,-0.78155375,-0.78155375,-0.78146577,-0.7810259,-0.78041005,-0.7800581,-0.7802341,-0.7809379,-0.7816417,-0.7818177,-0.7818177,-0.78155375,-0.7812898,-0.78120184,-0.78120184,-0.7810259,-0.780674,-0.78076196,-0.7809379,-0.7809379,-0.780674,-0.78041005,-0.7802341,-0.7803221,-0.780586,-0.78084993,-0.78120184,-0.7812898,-0.7810259,-0.78076196,-0.78076196,-0.78155375,-0.78269744,-0.7825215,-0.78225756,-0.78260946,-0.78260946,-0.78234553,-0.7828734,-0.7831373,-0.7819936,-0.7817297,-0.7825215,-0.7825215,-0.78155375,-0.7810259,-0.7813778,-0.7817297,-0.7813778,-0.7810259,-0.78076196,-0.780674,-0.78076196,-0.780586,-0.780498,-0.780586,-0.780586,-0.78076196,-0.78111386,-0.78146577,-0.7817297,-0.7819936,-0.78234553,-0.7824335,-0.78234553,-0.78234553,-0.7827854,-0.78304935,-0.78304935,-0.78269744,-0.78190565,-0.78076196,-0.7800581,-0.7801461,-0.780674,-0.78111386,-0.7812898,-0.78120184,-0.7809379,-0.78076196,-0.78076196,-0.78084993,-0.7809379,-0.7809379,-0.7809379,-0.7810259,-0.7812898,-0.7813778,-0.78146577,-0.78146577,-0.7813778,-0.7812898,-0.78120184,-0.78111386,-0.7809379,-0.78076196,-0.780674,-0.780498,-0.7803221,-0.780498,-0.78084993,-0.7810259,-0.78076196,-0.780586,-0.78076196,-0.78084993,-0.7809379,-0.78111386,-0.7820816,-0.7841052,-0.7857768,-0.78595275,-0.7856888,-0.7854249,-0.7827854,-0.7759231,-0.77055633,-0.76950055,-0.7700284,-0.7707323,-0.7725798,-0.77557117,-0.7792663,-0.78225756,-0.78419316,-0.78551286,-0.7861287,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7862167,-0.7856888,-0.78489697,-0.78366524,-0.78190565,-0.7792663,-0.77645093,-0.7745154,-0.77240384,-0.7715241,-0.7758351,-0.7827854,-0.7857768,-0.7857768,-0.78551286,-0.7857768,-0.7853369,-0.78366524,-0.7818177,-0.7809379,-0.78076196,-0.7809379,-0.7809379,-0.78084993,-0.78084993,-0.78084993,-0.7809379,-0.7810259,-0.7812898,-0.78155375,-0.7817297,-0.78190565,-0.7819936,-0.78190565,-0.7818177,-0.7816417,-0.78155375,-0.78155375,-0.78146577,-0.78146577,-0.78155375,-0.78146577,-0.78146577,-0.7812898,-0.78120184,-0.78111386,-0.7812898,-0.78146577,-0.78155375,-0.78155375,-0.78120184,-0.780674,-0.7800581,-0.7800581,-0.78084993,-0.7818177,-0.7819936,-0.78190565,-0.7817297,-0.7812898,-0.7810259,-0.7810259,-0.78076196,-0.780674,-0.78084993,-0.78084993,-0.78076196,-0.780498,-0.7803221,-0.7802341,-0.7801461,-0.780498,-0.7809379,-0.78084993,-0.78076196,-0.78084993,-0.78084993,-0.78084993,-0.7813778,-0.7821696,-0.78234553,-0.78260946,-0.78331333,-0.7831373,-0.7825215,-0.7825215,-0.78225756,-0.78155375,-0.7818177,-0.78234553,-0.7819936,-0.78120184,-0.78076196,-0.78120184,-0.7818177,-0.78155375,-0.7809379,-0.78076196,-0.78076196,-0.78076196,-0.780674,-0.780586,-0.780498,-0.78041005,-0.780498,-0.7809379,-0.7813778,-0.7816417,-0.7819936,-0.7824335,-0.78260946,-0.78260946,-0.7827854,-0.78304935,-0.7832253,-0.7831373,-0.7827854,-0.7818177,-0.780586,-0.7799701,-0.78041005,-0.7809379,-0.78120184,-0.78120184,-0.78111386,-0.78084993,-0.780674,-0.780674,-0.78084993,-0.7809379,-0.7810259,-0.78111386,-0.7809379,-0.78084993,-0.7810259,-0.78120184,-0.7812898,-0.7812898,-0.7812898,-0.7813778,-0.78146577,-0.78120184,-0.7809379,-0.780674,-0.78041005,-0.78041005,-0.780586,-0.78076196,-0.78084993,-0.78076196,-0.780498,-0.78041005,-0.78041005,-0.780586,-0.78120184,-0.7827854,-0.784721,-0.7858648,-0.7858648,-0.7856888,-0.78489697,-0.78084993,-0.7738116,-0.76994044,-0.7697645,-0.7701164,-0.7710842,-0.77319574,-0.776099,-0.77944225,-0.78225756,-0.78419316,-0.78551286,-0.7861287,-0.78630465,-0.7863926,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7861287,-0.7854249,-0.784721,-0.7837532,-0.7818177,-0.77944225,-0.77706677,-0.7747793,-0.7726679,-0.7709962,-0.7733717,-0.78041005,-0.78516096,-0.7858648,-0.78551286,-0.78551286,-0.7857768,-0.78489697,-0.7827854,-0.7812898,-0.78084993,-0.7809379,-0.78084993,-0.78084993,-0.7809379,-0.7810259,-0.78120184,-0.7812898,-0.78146577,-0.7816417,-0.7817297,-0.78190565,-0.7819936,-0.7818177,-0.7816417,-0.78155375,-0.78155375,-0.78146577,-0.78146577,-0.78146577,-0.78155375,-0.78146577,-0.78146577,-0.7813778,-0.78120184,-0.7810259,-0.7810259,-0.7812898,-0.78155375,-0.78155375,-0.78146577,-0.7809379,-0.7802341,-0.7799701,-0.78076196,-0.7818177,-0.7820816,-0.7818177,-0.7816417,-0.78120184,-0.7809379,-0.780674,-0.780586,-0.780674,-0.78076196,-0.78076196,-0.78076196,-0.780586,-0.7802341,-0.7799701,-0.7801461,-0.780674,-0.7809379,-0.780674,-0.780498,-0.78076196,-0.7809379,-0.78084993,-0.78111386,-0.78146577,-0.78155375,-0.78225756,-0.78331333,-0.7831373,-0.7820816,-0.7816417,-0.78146577,-0.78155375,-0.78225756,-0.7825215,-0.7818177,-0.7810259,-0.780586,-0.78111386,-0.7818177,-0.78155375,-0.78084993,-0.780674,-0.780674,-0.78076196,-0.78084993,-0.78084993,-0.780674,-0.780498,-0.780498,-0.78084993,-0.7813778,-0.7817297,-0.78190565,-0.78225756,-0.78260946,-0.7828734,-0.78296137,-0.78304935,-0.7831373,-0.7831373,-0.78269744,-0.7816417,-0.78041005,-0.7799701,-0.780586,-0.78120184,-0.7812898,-0.78111386,-0.78084993,-0.78076196,-0.780674,-0.780674,-0.7809379,-0.7810259,-0.7810259,-0.78111386,-0.7810259,-0.7809379,-0.7809379,-0.7810259,-0.7809379,-0.78084993,-0.7809379,-0.78111386,-0.78111386,-0.78111386,-0.7809379,-0.780674,-0.780498,-0.780586,-0.78076196,-0.780674,-0.780674,-0.78076196,-0.780674,-0.780498,-0.78041005,-0.7802341,-0.78084993,-0.7831373,-0.7853369,-0.78595275,-0.7856888,-0.78551286,-0.78366524,-0.7780345,-0.77196395,-0.76994044,-0.7701164,-0.77020437,-0.77126014,-0.77354765,-0.7766269,-0.77979416,-0.78234553,-0.78428113,-0.78560084,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7861287,-0.78551286,-0.78463304,-0.7834893,-0.7817297,-0.77944225,-0.77715474,-0.77504325,-0.7733717,-0.77161205,-0.7722279,-0.77821046,-0.7841052,-0.7858648,-0.78551286,-0.7854249,-0.7857768,-0.78551286,-0.7838412,-0.7820816,-0.7812898,-0.78111386,-0.7809379,-0.7809379,-0.78111386,-0.7813778,-0.78146577,-0.78146577,-0.78155375,-0.7816417,-0.7818177,-0.78190565,-0.78190565,-0.7818177,-0.7816417,-0.7816417,-0.78146577,-0.78146577,-0.7813778,-0.78146577,-0.78155375,-0.78155375,-0.7813778,-0.78120184,-0.78111386,-0.7810259,-0.7809379,-0.78120184,-0.78155375,-0.7816417,-0.7816417,-0.7813778,-0.780674,-0.7801461,-0.780498,-0.7816417,-0.7820816,-0.7818177,-0.78146577,-0.78111386,-0.78084993,-0.780674,-0.780498,-0.780674,-0.780674,-0.780674,-0.780674,-0.780498,-0.7801461,-0.7799701,-0.7803221,-0.780674,-0.78076196,-0.780498,-0.780498,-0.78076196,-0.78084993,-0.78084993,-0.7810259,-0.78111386,-0.78111386,-0.7816417,-0.78234553,-0.78234553,-0.7817297,-0.78120184,-0.7810259,-0.7816417,-0.7825215,-0.78260946,-0.78190565,-0.78120184,-0.78076196,-0.78120184,-0.7818177,-0.78146577,-0.78076196,-0.780674,-0.780674,-0.780674,-0.78084993,-0.78084993,-0.780674,-0.780498,-0.78041005,-0.780674,-0.78120184,-0.7817297,-0.7819936,-0.78225756,-0.78260946,-0.78296137,-0.7831373,-0.7831373,-0.7831373,-0.78304935,-0.7824335,-0.78120184,-0.7801461,-0.7800581,-0.78076196,-0.78120184,-0.78120184,-0.7810259,-0.78076196,-0.780674,-0.780674,-0.780674,-0.7809379,-0.78111386,-0.78111386,-0.78120184,-0.78111386,-0.78111386,-0.78120184,-0.78111386,-0.7810259,-0.7809379,-0.7810259,-0.7810259,-0.7809379,-0.7810259,-0.7810259,-0.7809379,-0.78076196,-0.7809379,-0.7809379,-0.780674,-0.780586,-0.780674,-0.780674,-0.780674,-0.780586,-0.7802341,-0.7809379,-0.7837532,-0.7856888,-0.7857768,-0.7856888,-0.78516096,-0.7818177,-0.77521926,-0.7703804,-0.76950055,-0.76985246,-0.7701164,-0.7714361,-0.7737236,-0.77680284,-0.77988213,-0.7824335,-0.7843691,-0.78560084,-0.7862167,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7860407,-0.7854249,-0.78463304,-0.7834893,-0.78155375,-0.7792663,-0.7769788,-0.7747793,-0.77310777,-0.7714361,-0.7709962,-0.77565914,-0.7824335,-0.78560084,-0.7856888,-0.7853369,-0.78551286,-0.7856888,-0.784721,-0.78296137,-0.7817297,-0.7812898,-0.78120184,-0.7810259,-0.78120184,-0.7813778,-0.78146577,-0.7813778,-0.78155375,-0.7816417,-0.7818177,-0.7818177,-0.78190565,-0.78190565,-0.78190565,-0.7816417,-0.7813778,-0.7812898,-0.7813778,-0.78146577,-0.78155375,-0.78146577,-0.78120184,-0.78120184,-0.78120184,-0.78120184,-0.78111386,-0.78120184,-0.78146577,-0.7816417,-0.7817297,-0.7816417,-0.7810259,-0.7803221,-0.780498,-0.7816417,-0.7821696,-0.7818177,-0.7813778,-0.7810259,-0.78084993,-0.780674,-0.780674,-0.78076196,-0.78076196,-0.780586,-0.78041005,-0.78041005,-0.7803221,-0.7803221,-0.780498,-0.780586,-0.780674,-0.780586,-0.78041005,-0.780498,-0.780674,-0.78076196,-0.7809379,-0.78111386,-0.7809379,-0.7813778,-0.7820816,-0.7820816,-0.7817297,-0.78111386,-0.78076196,-0.78155375,-0.7824335,-0.7825215,-0.78190565,-0.7812898,-0.7810259,-0.78146577,-0.7817297,-0.7812898,-0.780674,-0.780674,-0.78076196,-0.780586,-0.780498,-0.780586,-0.780674,-0.780586,-0.780498,-0.780586,-0.78076196,-0.7813778,-0.7819936,-0.78234553,-0.7825215,-0.7828734,-0.7831373,-0.7832253,-0.7832253,-0.78304935,-0.78225756,-0.7809379,-0.7799701,-0.7801461,-0.7809379,-0.78120184,-0.78111386,-0.7809379,-0.780674,-0.780498,-0.780586,-0.78076196,-0.7809379,-0.7810259,-0.78120184,-0.7812898,-0.7812898,-0.7812898,-0.7813778,-0.7812898,-0.78111386,-0.78111386,-0.78111386,-0.78111386,-0.7810259,-0.7810259,-0.7810259,-0.7810259,-0.78111386,-0.78120184,-0.78111386,-0.7809379,-0.78084993,-0.78076196,-0.780674,-0.780674,-0.780586,-0.78041005,-0.7816417,-0.7844571,-0.7857768,-0.7856888,-0.7857768,-0.78463304,-0.78041005,-0.77433944,-0.77082026,-0.7701164,-0.7700284,-0.7703804,-0.771876,-0.77389956,-0.7766269,-0.77979416,-0.7824335,-0.7843691,-0.78551286,-0.7862167,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.78595275,-0.7854249,-0.784721,-0.7834893,-0.78146577,-0.77900237,-0.77680284,-0.77469134,-0.77284384,-0.77126014,-0.7701164,-0.77319574,-0.7803221,-0.785073,-0.7858648,-0.7854249,-0.78516096,-0.78551286,-0.7853369,-0.7838412,-0.7820816,-0.78120184,-0.7810259,-0.7809379,-0.7810259,-0.7812898,-0.7813778,-0.78146577,-0.78146577,-0.78155375,-0.7817297,-0.7818177,-0.7819936,-0.7819936,-0.7818177,-0.78155375,-0.7813778,-0.7812898,-0.7812898,-0.78146577,-0.78155375,-0.78146577,-0.7813778,-0.7813778,-0.7813778,-0.7812898,-0.78120184,-0.7812898,-0.7812898,-0.78146577,-0.7816417,-0.7816417,-0.78120184,-0.78041005,-0.78041005,-0.78146577,-0.7820816,-0.7818177,-0.7812898,-0.7809379,-0.78076196,-0.78076196,-0.78076196,-0.78076196,-0.78076196,-0.780586,-0.780586,-0.78076196,-0.7809379,-0.78076196,-0.78041005,-0.780586,-0.78084993,-0.78076196,-0.780498,-0.7803221,-0.780498,-0.780674,-0.78084993,-0.78084993,-0.780586,-0.7809379,-0.7817297,-0.7817297,-0.7812898,-0.78076196,-0.78076196,-0.7816417,-0.7824335,-0.7824335,-0.7818177,-0.7812898,-0.78120184,-0.78146577,-0.7813778,-0.78111386,-0.780674,-0.780586,-0.780586,-0.780586,-0.780498,-0.780498,-0.780586,-0.780674,-0.780674,-0.780674,-0.780498,-0.78076196,-0.7816417,-0.78225756,-0.7825215,-0.7828734,-0.7831373,-0.78331333,-0.7834013,-0.78304935,-0.7821696,-0.780674,-0.77988213,-0.78041005,-0.78111386,-0.7812898,-0.78111386,-0.78084993,-0.780586,-0.780498,-0.780586,-0.78084993,-0.7809379,-0.78111386,-0.78120184,-0.7813778,-0.7813778,-0.7812898,-0.7813778,-0.7813778,-0.7812898,-0.7812898,-0.78120184,-0.78120184,-0.7810259,-0.7809379,-0.7810259,-0.78120184,-0.7812898,-0.7813778,-0.7812898,-0.7810259,-0.78084993,-0.78076196,-0.780674,-0.780586,-0.78041005,-0.780674,-0.78269744,-0.78516096,-0.78560084,-0.78551286,-0.7856888,-0.78357726,-0.7789144,-0.77389956,-0.77161205,-0.77117217,-0.7710842,-0.7710842,-0.77205193,-0.7741635,-0.7769788,-0.7799701,-0.78260946,-0.7844571,-0.78560084,-0.78630465,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78595275,-0.7853369,-0.78454506,-0.7832253,-0.7813778,-0.7791783,-0.77680284,-0.7747793,-0.7730198,-0.7717,-0.7702924,-0.7713481,-0.77750665,-0.7838412,-0.78595275,-0.78560084,-0.78498495,-0.78498495,-0.78551286,-0.78489697,-0.78304935,-0.78146577,-0.7810259,-0.7809379,-0.7809379,-0.78120184,-0.7812898,-0.7813778,-0.78146577,-0.7816417,-0.7817297,-0.78190565,-0.7819936,-0.78190565,-0.7817297,-0.78155375,-0.7813778,-0.7812898,-0.7813778,-0.78155375,-0.7817297,-0.7817297,-0.78155375,-0.78155375,-0.78155375,-0.78146577,-0.7813778,-0.7812898,-0.78111386,-0.7812898,-0.78155375,-0.7816417,-0.7812898,-0.780674,-0.7802341,-0.7809379,-0.7818177,-0.7818177,-0.7812898,-0.7809379,-0.78076196,-0.78084993,-0.78084993,-0.78076196,-0.780674,-0.780674,-0.780674,-0.78084993,-0.7809379,-0.78076196,-0.7803221,-0.78041005,-0.78076196,-0.78076196,-0.780674,-0.780498,-0.78041005,-0.78076196,-0.78111386,-0.78084993,-0.78041005,-0.780498,-0.7809379,-0.78111386,-0.7810259,-0.78076196,-0.78111386,-0.78190565,-0.7821696,-0.78234553,-0.78190565,-0.7813778,-0.7813778,-0.7812898,-0.78120184,-0.78111386,-0.780674,-0.7803221,-0.78041005,-0.780586,-0.780674,-0.78076196,-0.78084993,-0.78076196,-0.780674,-0.780674,-0.780586,-0.780498,-0.78111386,-0.78190565,-0.7824335,-0.7828734,-0.7831373,-0.78331333,-0.78331333,-0.78296137,-0.7818177,-0.78041005,-0.7800581,-0.780674,-0.7812898,-0.7812898,-0.7810259,-0.780674,-0.780498,-0.780586,-0.780674,-0.78084993,-0.7810259,-0.78120184,-0.7813778,-0.7813778,-0.7812898,-0.7813778,-0.78146577,-0.7813778,-0.7813778,-0.7813778,-0.7812898,-0.78120184,-0.7810259,-0.78084993,-0.7809379,-0.7810259,-0.78120184,-0.7812898,-0.7812898,-0.78111386,-0.7809379,-0.780674,-0.780586,-0.780586,-0.7802341,-0.78111386,-0.7840172,-0.78560084,-0.78524894,-0.7853369,-0.78516096,-0.7816417,-0.7757471,-0.7714361,-0.77055633,-0.77090824,-0.7710842,-0.7714361,-0.7726679,-0.7749553,-0.7776826,-0.78041005,-0.78296137,-0.784721,-0.7857768,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78595275,-0.7853369,-0.7843691,-0.78296137,-0.7813778,-0.7793543,-0.77680284,-0.7744274,-0.77275586,-0.771788,-0.77090824,-0.7707323,-0.7749553,-0.7816417,-0.7854249,-0.7857768,-0.785073,-0.78463304,-0.7853369,-0.78560084,-0.7844571,-0.78260946,-0.7813778,-0.7809379,-0.78084993,-0.78111386,-0.7812898,-0.78146577,-0.78155375,-0.7816417,-0.7818177,-0.7819936,-0.78190565,-0.7818177,-0.7817297,-0.7816417,-0.78146577,-0.78146577,-0.7816417,-0.7818177,-0.7819936,-0.7819936,-0.7818177,-0.7817297,-0.7817297,-0.7816417,-0.78146577,-0.7812898,-0.7810259,-0.78111386,-0.78146577,-0.78155375,-0.78146577,-0.7810259,-0.78041005,-0.780586,-0.78146577,-0.7817297,-0.7812898,-0.7810259,-0.7810259,-0.7809379,-0.78084993,-0.78076196,-0.78076196,-0.78076196,-0.78076196,-0.780674,-0.78076196,-0.780674,-0.7803221,-0.7802341,-0.780498,-0.780674,-0.78084993,-0.780674,-0.78041005,-0.780674,-0.7810259,-0.7809379,-0.780586,-0.780498,-0.78076196,-0.78120184,-0.7812898,-0.7812898,-0.7818177,-0.7819936,-0.7817297,-0.7820816,-0.7819936,-0.7813778,-0.78120184,-0.78111386,-0.78111386,-0.78120184,-0.780674,-0.7803221,-0.7803221,-0.78041005,-0.780586,-0.78076196,-0.7809379,-0.7809379,-0.78076196,-0.780674,-0.78076196,-0.780674,-0.7809379,-0.7816417,-0.7821696,-0.78260946,-0.78304935,-0.7832253,-0.7831373,-0.78260946,-0.7812898,-0.7801461,-0.7803221,-0.7810259,-0.7813778,-0.78120184,-0.7809379,-0.780586,-0.780498,-0.780586,-0.78076196,-0.7809379,-0.78111386,-0.7813778,-0.78155375,-0.78155375,-0.78146577,-0.78146577,-0.78146577,-0.7812898,-0.7812898,-0.7812898,-0.78120184,-0.78120184,-0.78111386,-0.7810259,-0.7809379,-0.78084993,-0.7809379,-0.7810259,-0.7810259,-0.7810259,-0.7809379,-0.780674,-0.780586,-0.78041005,-0.78041005,-0.78225756,-0.785073,-0.7856888,-0.78516096,-0.7854249,-0.78428113,-0.7792663,-0.7730198,-0.76985246,-0.76994044,-0.7701164,-0.77055633,-0.77161205,-0.7732837,-0.7753952,-0.77785856,-0.780586,-0.78304935,-0.784809,-0.7857768,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.78630465,-0.78595275,-0.78516096,-0.7841052,-0.78260946,-0.78076196,-0.77865046,-0.77636296,-0.7740755,-0.7724918,-0.7717,-0.7713481,-0.7709962,-0.77310777,-0.7789144,-0.78428113,-0.7856888,-0.7853369,-0.78454506,-0.784809,-0.78551286,-0.78551286,-0.78428113,-0.78234553,-0.78120184,-0.7809379,-0.7810259,-0.78120184,-0.78146577,-0.7816417,-0.7816417,-0.7818177,-0.7820816,-0.78190565,-0.7818177,-0.7818177,-0.7817297,-0.78155375,-0.78155375,-0.7817297,-0.7819936,-0.7820816,-0.7819936,-0.7819936,-0.78190565,-0.7818177,-0.7816417,-0.78155375,-0.78146577,-0.78120184,-0.78111386,-0.78120184,-0.7813778,-0.78146577,-0.7813778,-0.780674,-0.78041005,-0.7809379,-0.7812898,-0.78111386,-0.7810259,-0.7810259,-0.7810259,-0.7809379,-0.78084993,-0.78076196,-0.78076196,-0.78076196,-0.780674,-0.78076196,-0.780674,-0.7803221,-0.7802341,-0.78041005,-0.780674,-0.7809379,-0.78084993,-0.780586,-0.780498,-0.780586,-0.7809379,-0.7810259,-0.7810259,-0.78111386,-0.78155375,-0.7817297,-0.7818177,-0.7820816,-0.7818177,-0.7817297,-0.78225756,-0.7819936,-0.78120184,-0.7810259,-0.7810259,-0.78111386,-0.78120184,-0.78084993,-0.7803221,-0.7801461,-0.7802341,-0.780498,-0.78076196,-0.7810259,-0.78111386,-0.7809379,-0.78084993,-0.78084993,-0.78076196,-0.78084993,-0.7812898,-0.7817297,-0.7821696,-0.78269744,-0.78296137,-0.7827854,-0.7820816,-0.780674,-0.7799701,-0.780586,-0.78120184,-0.7812898,-0.7810259,-0.78084993,-0.780586,-0.780586,-0.78076196,-0.78076196,-0.78084993,-0.78111386,-0.7812898,-0.7813778,-0.78146577,-0.78146577,-0.78146577,-0.7812898,-0.78120184,-0.7812898,-0.7812898,-0.78120184,-0.78120184,-0.78120184,-0.78111386,-0.78111386,-0.7810259,-0.78084993,-0.78076196,-0.78076196,-0.78076196,-0.78076196,-0.780586,-0.780498,-0.7802341,-0.78076196,-0.7832253,-0.78560084,-0.78551286,-0.7853369,-0.78551286,-0.78304935,-0.7768908,-0.7714361,-0.76985246,-0.7700284,-0.7701164,-0.7707323,-0.771876,-0.77354765,-0.7754832,-0.7780345,-0.7809379,-0.7832253,-0.784809,-0.7858648,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78595275,-0.785073,-0.7837532,-0.7820816,-0.7799701,-0.7777706,-0.7758351,-0.77389956,-0.77240384,-0.7714361,-0.77117217,-0.77090824,-0.771788,-0.77645093,-0.78260946,-0.7853369,-0.78560084,-0.784809,-0.7844571,-0.785073,-0.7857768,-0.7854249,-0.78357726,-0.7816417,-0.7809379,-0.7809379,-0.78111386,-0.7813778,-0.78155375,-0.7816417,-0.7818177,-0.7819936,-0.7818177,-0.7817297,-0.7818177,-0.7817297,-0.78155375,-0.78146577,-0.7816417,-0.7817297,-0.7817297,-0.7817297,-0.7818177,-0.7818177,-0.7816417,-0.78155375,-0.78155375,-0.78155375,-0.78146577,-0.78120184,-0.78120184,-0.7812898,-0.7813778,-0.7813778,-0.7809379,-0.7803221,-0.7803221,-0.780586,-0.780674,-0.78084993,-0.7809379,-0.7810259,-0.7810259,-0.7809379,-0.78084993,-0.78084993,-0.78076196,-0.78076196,-0.7809379,-0.780674,-0.7803221,-0.7803221,-0.78041005,-0.780674,-0.78084993,-0.78084993,-0.780586,-0.78041005,-0.7803221,-0.780674,-0.7810259,-0.78111386,-0.7813778,-0.78190565,-0.7821696,-0.78225756,-0.7820816,-0.7817297,-0.78190565,-0.7825215,-0.78190565,-0.78120184,-0.78111386,-0.7810259,-0.7810259,-0.7812898,-0.7810259,-0.78041005,-0.7801461,-0.7802341,-0.780498,-0.78076196,-0.7810259,-0.78111386,-0.7809379,-0.7809379,-0.78084993,-0.78076196,-0.78076196,-0.7809379,-0.78111386,-0.7817297,-0.7824335,-0.7827854,-0.7824335,-0.7813778,-0.7801461,-0.7799701,-0.78084993,-0.7812898,-0.78111386,-0.78084993,-0.780674,-0.780674,-0.78076196,-0.7809379,-0.7810259,-0.78111386,-0.78120184,-0.7812898,-0.7813778,-0.78146577,-0.78146577,-0.78146577,-0.7813778,-0.7812898,-0.7812898,-0.7812898,-0.7812898,-0.7812898,-0.78120184,-0.7810259,-0.78111386,-0.78120184,-0.7809379,-0.780674,-0.780674,-0.78076196,-0.780674,-0.780498,-0.7803221,-0.7802341,-0.7816417,-0.7844571,-0.7857768,-0.78524894,-0.7854249,-0.7853369,-0.7812898,-0.77460337,-0.77055633,-0.77020437,-0.77020437,-0.7702924,-0.7707323,-0.7717,-0.7734597,-0.77565914,-0.77838653,-0.78120184,-0.7834013,-0.78489697,-0.7858648,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7860407,-0.785073,-0.7838412,-0.7820816,-0.7795302,-0.7772427,-0.7754832,-0.7737236,-0.7721399,-0.77117217,-0.7709962,-0.77090824,-0.7714361,-0.77530724,-0.78155375,-0.78489697,-0.7856888,-0.7854249,-0.78463304,-0.78463304,-0.7854249,-0.7858648,-0.78489697,-0.78269744,-0.7810259,-0.78076196,-0.7809379,-0.78120184,-0.7812898,-0.78155375,-0.7817297,-0.7817297,-0.7816417,-0.7817297,-0.7817297,-0.7816417,-0.7813778,-0.7812898,-0.78146577,-0.78155375,-0.78146577,-0.78146577,-0.7816417,-0.7816417,-0.78155375,-0.78146577,-0.78146577,-0.78155375,-0.78146577,-0.7812898,-0.78111386,-0.78120184,-0.7812898,-0.7812898,-0.78111386,-0.780498,-0.7800581,-0.7801461,-0.78041005,-0.780674,-0.78084993,-0.7810259,-0.7810259,-0.7809379,-0.7809379,-0.7809379,-0.78076196,-0.78076196,-0.7809379,-0.78076196,-0.78041005,-0.78041005,-0.780498,-0.780586,-0.78076196,-0.78076196,-0.780674,-0.78041005,-0.78041005,-0.780674,-0.78076196,-0.78076196,-0.78111386,-0.7818177,-0.78260946,-0.7828734,-0.78234553,-0.7818177,-0.7821696,-0.78260946,-0.78190565,-0.78111386,-0.78084993,-0.78084993,-0.7809379,-0.78111386,-0.7810259,-0.780498,-0.7801461,-0.7801461,-0.78041005,-0.780674,-0.78084993,-0.7810259,-0.7810259,-0.7810259,-0.7810259,-0.78084993,-0.78076196,-0.780674,-0.780674,-0.7812898,-0.78225756,-0.78269744,-0.7819936,-0.780674,-0.77988213,-0.7803221,-0.7809379,-0.78111386,-0.7809379,-0.780674,-0.780586,-0.78076196,-0.7809379,-0.7810259,-0.78111386,-0.78120184,-0.7812898,-0.7812898,-0.7812898,-0.7812898,-0.7812898,-0.7813778,-0.78146577,-0.7813778,-0.7812898,-0.7812898,-0.7813778,-0.7813778,-0.78111386,-0.7809379,-0.7809379,-0.7809379,-0.7810259,-0.7810259,-0.78076196,-0.780674,-0.780586,-0.78041005,-0.7801461,-0.780674,-0.7831373,-0.7854249,-0.7856888,-0.78524894,-0.78560084,-0.7843691,-0.77873844,-0.7724918,-0.77020437,-0.7703804,-0.77020437,-0.77020437,-0.7706443,-0.7715241,-0.77319574,-0.7757471,-0.77873844,-0.78155375,-0.78366524,-0.785073,-0.7860407,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.78630465,-0.7858648,-0.78498495,-0.7839292,-0.7824335,-0.77988213,-0.77706677,-0.7749553,-0.77354765,-0.7722279,-0.77126014,-0.77090824,-0.7709962,-0.7714361,-0.7748673,-0.78120184,-0.784721,-0.78551286,-0.7857768,-0.78516096,-0.78454506,-0.784809,-0.78551286,-0.78560084,-0.78428113,-0.7819936,-0.7809379,-0.7809379,-0.7810259,-0.78120184,-0.78146577,-0.7816417,-0.7816417,-0.7816417,-0.7816417,-0.7816417,-0.78155375,-0.7813778,-0.7812898,-0.7812898,-0.7813778,-0.7812898,-0.78146577,-0.78155375,-0.7816417,-0.78155375,-0.7813778,-0.7812898,-0.7813778,-0.78155375,-0.7813778,-0.78120184,-0.78120184,-0.78120184,-0.78120184,-0.7813778,-0.7809379,-0.7802341,-0.7800581,-0.78041005,-0.780674,-0.78076196,-0.7810259,-0.78111386,-0.7809379,-0.78084993,-0.7810259,-0.78084993,-0.780674,-0.78084993,-0.78084993,-0.780586,-0.78041005,-0.78041005,-0.780498,-0.780586,-0.780674,-0.78076196,-0.78076196,-0.78076196,-0.78076196,-0.780674,-0.780586,-0.78084993,-0.7817297,-0.7828734,-0.7834013,-0.78260946,-0.78190565,-0.7821696,-0.78234553,-0.7817297,-0.7809379,-0.780674,-0.780674,-0.78084993,-0.78111386,-0.78111386,-0.780586,-0.7801461,-0.7800581,-0.7803221,-0.780586,-0.78076196,-0.7809379,-0.78111386,-0.78120184,-0.78111386,-0.78084993,-0.78076196,-0.780586,-0.780498,-0.7809379,-0.7818177,-0.78234553,-0.7812898,-0.77988213,-0.77979416,-0.780674,-0.78111386,-0.7810259,-0.78076196,-0.780674,-0.780674,-0.78084993,-0.78111386,-0.78111386,-0.7810259,-0.78111386,-0.78111386,-0.78111386,-0.78120184,-0.78120184,-0.78120184,-0.7812898,-0.7812898,-0.7812898,-0.7812898,-0.7813778,-0.78146577,-0.7813778,-0.78111386,-0.7809379,-0.7809379,-0.78084993,-0.7810259,-0.7812898,-0.7810259,-0.780674,-0.780586,-0.780498,-0.780498,-0.7819936,-0.78454506,-0.7857768,-0.7854249,-0.7854249,-0.7854249,-0.7825215,-0.7758351,-0.77090824,-0.7702924,-0.77055633,-0.7702924,-0.77046835,-0.7709962,-0.771788,-0.7734597,-0.776187,-0.7792663,-0.7819936,-0.7838412,-0.78516096,-0.78595275,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.78630465,-0.7857768,-0.78489697,-0.7838412,-0.78260946,-0.78041005,-0.77715474,-0.77460337,-0.7733717,-0.77231586,-0.77117217,-0.7706443,-0.7707323,-0.7710842,-0.7738116,-0.7797062,-0.7840172,-0.78516096,-0.7857768,-0.7856888,-0.784721,-0.7843691,-0.784721,-0.7853369,-0.78524894,-0.7834893,-0.78146577,-0.78084993,-0.7809379,-0.78111386,-0.7813778,-0.78155375,-0.7816417,-0.7816417,-0.7816417,-0.78155375,-0.78146577,-0.7813778,-0.7813778,-0.7813778,-0.7813778,-0.7813778,-0.7813778,-0.7813778,-0.78146577,-0.7813778,-0.7813778,-0.7812898,-0.7812898,-0.78146577,-0.78146577,-0.7812898,-0.78111386,-0.78120184,-0.78120184,-0.7813778,-0.78120184,-0.780586,-0.7801461,-0.78041005,-0.780674,-0.78076196,-0.7809379,-0.78111386,-0.7809379,-0.78076196,-0.7809379,-0.78084993,-0.780674,-0.780674,-0.78084993,-0.78076196,-0.78076196,-0.780674,-0.780586,-0.780586,-0.780586,-0.7809379,-0.7812898,-0.78111386,-0.78076196,-0.780586,-0.780586,-0.78084993,-0.78190565,-0.7831373,-0.7837532,-0.7828734,-0.7819936,-0.7818177,-0.7817297,-0.7813778,-0.7809379,-0.780586,-0.780498,-0.78076196,-0.7810259,-0.78120184,-0.78084993,-0.7803221,-0.7801461,-0.7803221,-0.780498,-0.780586,-0.78084993,-0.7812898,-0.7813778,-0.78111386,-0.7809379,-0.780674,-0.780498,-0.78041005,-0.780498,-0.78111386,-0.78146577,-0.7803221,-0.7792663,-0.7799701,-0.7810259,-0.78120184,-0.7810259,-0.78084993,-0.78076196,-0.78076196,-0.78084993,-0.78111386,-0.78111386,-0.7809379,-0.7809379,-0.78084993,-0.78076196,-0.7809379,-0.7810259,-0.78111386,-0.78120184,-0.78111386,-0.78111386,-0.78111386,-0.78120184,-0.7812898,-0.7812898,-0.78120184,-0.7810259,-0.7809379,-0.7810259,-0.7810259,-0.78120184,-0.78120184,-0.7810259,-0.78084993,-0.78084993,-0.78155375,-0.7837532,-0.78551286,-0.78560084,-0.7853369,-0.78560084,-0.784721,-0.77979416,-0.77284384,-0.77020437,-0.77046835,-0.77046835,-0.7702924,-0.77055633,-0.77126014,-0.77231586,-0.77389956,-0.7766269,-0.77988213,-0.78225756,-0.7837532,-0.78498495,-0.7858648,-0.7862167,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.78630465,-0.78630465,-0.7862167,-0.7857768,-0.784809,-0.7837532,-0.7824335,-0.7800581,-0.77706677,-0.77460337,-0.77319574,-0.7721399,-0.7710842,-0.7703804,-0.7702924,-0.77046835,-0.77231586,-0.7774187,-0.78260946,-0.784809,-0.78551286,-0.7858648,-0.785073,-0.78419316,-0.7840172,-0.78454506,-0.78524894,-0.784721,-0.7824335,-0.78111386,-0.7810259,-0.78111386,-0.78120184,-0.7813778,-0.78155375,-0.7816417,-0.7816417,-0.78155375,-0.78146577,-0.78146577,-0.78155375,-0.78155375,-0.78146577,-0.7813778,-0.78146577,-0.7812898,-0.78111386,-0.78111386,-0.78120184,-0.78111386,-0.78111386,-0.7812898,-0.78155375,-0.7813778,-0.78120184,-0.78120184,-0.78120184,-0.78120184,-0.7812898,-0.7809379,-0.78041005,-0.7803221,-0.780586,-0.780674,-0.78084993,-0.78111386,-0.7810259,-0.78084993,-0.78084993,-0.78084993,-0.780674,-0.780586,-0.780674,-0.78076196,-0.78084993,-0.78084993,-0.78084993,-0.78076196,-0.78076196,-0.7810259,-0.7813778,-0.78146577,-0.7812898,-0.7809379,-0.780674,-0.78084993,-0.7819936,-0.7834013,-0.7841052,-0.7832253,-0.7820816,-0.78155375,-0.7812898,-0.78120184,-0.7809379,-0.780674,-0.780586,-0.780586,-0.780674,-0.7809379,-0.7810259,-0.78076196,-0.78041005,-0.78041005,-0.780586,-0.780586,-0.78076196,-0.78120184,-0.7813778,-0.78111386,-0.7809379,-0.78076196,-0.780498,-0.7803221,-0.7802341,-0.78041005,-0.7802341,-0.77944225,-0.7793543,-0.78041005,-0.78111386,-0.78120184,-0.7810259,-0.78076196,-0.780674,-0.78076196,-0.78084993,-0.7809379,-0.7809379,-0.7809379,-0.78084993,-0.780674,-0.780586,-0.780674,-0.78076196,-0.7809379,-0.78120184,-0.78120184,-0.78111386,-0.7810259,-0.7810259,-0.78120184,-0.78120184,-0.78120184,-0.78111386,-0.7810259,-0.7810259,-0.7810259,-0.7810259,-0.7809379,-0.78111386,-0.78111386,-0.78155375,-0.7832253,-0.78524894,-0.7856888,-0.78524894,-0.7854249,-0.7856888,-0.78357726,-0.7772427,-0.77117217,-0.76985246,-0.77020437,-0.7701164,-0.7702924,-0.77046835,-0.7710842,-0.77240384,-0.7741635,-0.77671486,-0.77988213,-0.7821696,-0.78357726,-0.78489697,-0.7858648,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.78630465,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7862167,-0.78630465,-0.7862167,-0.7857768,-0.784809,-0.78366524,-0.7819936,-0.7791783,-0.77645093,-0.7744274,-0.77284384,-0.771788,-0.7709962,-0.77046835,-0.7702924,-0.7702924,-0.7715241,-0.77557117,-0.78076196,-0.7841052,-0.78524894,-0.7858648,-0.78560084,-0.78454506,-0.7838412,-0.7837532,-0.78463304,-0.7853369,-0.7837532,-0.7818177,-0.7810259,-0.7810259,-0.7810259,-0.78111386,-0.78146577,-0.7816417,-0.78155375,-0.78155375,-0.7816417,-0.7817297,-0.7816417,-0.78146577,-0.7813778,-0.78146577,-0.78146577,-0.7812898,-0.7810259,-0.7809379,-0.7809379,-0.78084993,-0.7809379,-0.78120184,-0.78155375,-0.78155375,-0.78120184,-0.78120184,-0.78120184,-0.78111386,-0.78111386,-0.7810259,-0.780586,-0.7803221,-0.780498,-0.780674,-0.78084993,-0.7810259,-0.7810259,-0.7809379,-0.78084993,-0.78084993,-0.780674,-0.780674,-0.78084993,-0.78084993,-0.780674,-0.780674,-0.78076196,-0.78076196,-0.780674,-0.78076196,-0.78111386,-0.78155375,-0.78155375,-0.7813778,-0.7812898,-0.78155375,-0.7825215,-0.7840172,-0.7844571,-0.7832253,-0.78190565,-0.78120184,-0.7809379,-0.78084993,-0.78076196,-0.78076196,-0.78084993,-0.780674,-0.780586,-0.78084993,-0.78120184,-0.78111386,-0.78076196,-0.780586,-0.780674,-0.78076196,-0.78084993,-0.7810259,-0.78111386,-0.7809379,-0.78084993,-0.78084993,-0.780586,-0.7803221,-0.7801461,-0.77979416,-0.7793543,-0.7791783,-0.77988213,-0.78084993,-0.78120184,-0.78111386,-0.7809379,-0.780674,-0.780674,-0.78084993,-0.7810259,-0.78111386,-0.78111386,-0.78111386,-0.7809379,-0.780674,-0.780674,-0.78076196,-0.78076196,-0.7809379,-0.7810259,-0.78111386,-0.78111386,-0.78111386,-0.78120184,-0.78120184,-0.78111386,-0.78111386,-0.78111386,-0.7810259,-0.7809379,-0.7810259,-0.7809379,-0.78084993,-0.7809379,-0.7812898,-0.78269744,-0.784809,-0.7857768,-0.7854249,-0.78516096,-0.7856888,-0.7853369,-0.7817297,-0.7749553,-0.7706443,-0.7700284,-0.7700284,-0.7700284,-0.77020437,-0.7702924,-0.7706443,-0.7721399,-0.77433944,-0.77671486,-0.7792663,-0.7818177,-0.78366524,-0.78489697,-0.7858648,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.7857768,-0.784721,-0.7834893,-0.7818177,-0.77900237,-0.776187,-0.77425146,-0.77284384,-0.7717,-0.77117217,-0.77090824,-0.7707323,-0.77090824,-0.771876,-0.77460337,-0.77873844,-0.7824335,-0.784721,-0.7857768,-0.78595275,-0.78524894,-0.7843691,-0.7838412,-0.7843691,-0.7854249,-0.78489697,-0.78296137,-0.7812898,-0.78084993,-0.78084993,-0.7809379,-0.7812898,-0.78155375,-0.78155375,-0.7816417,-0.7816417,-0.7816417,-0.78155375,-0.78146577,-0.78146577,-0.78146577,-0.7813778,-0.78120184,-0.7810259,-0.7809379,-0.7809379,-0.78084993,-0.78084993,-0.78111386,-0.78146577,-0.78155375,-0.7812898,-0.78120184,-0.78120184,-0.78111386,-0.78111386,-0.78111386,-0.78076196,-0.7803221,-0.780498,-0.78076196,-0.7809379,-0.78111386,-0.78111386,-0.78111386,-0.7810259,-0.78084993,-0.78084993,-0.78084993,-0.78084993,-0.7809379,-0.78084993,-0.78084993,-0.78084993,-0.78076196,-0.780674,-0.780674,-0.78084993,-0.78120184,-0.7812898,-0.7813778,-0.7816417,-0.7819936,-0.78296137,-0.78428113,-0.78454506,-0.78304935,-0.78146577,-0.78084993,-0.780586,-0.780498,-0.780498,-0.78076196,-0.78111386,-0.7809379,-0.780674,-0.78084993,-0.78146577,-0.78190565,-0.78155375,-0.780674,-0.780586,-0.78084993,-0.7810259,-0.78111386,-0.78111386,-0.7809379,-0.78084993,-0.78084993,-0.780674,-0.780498,-0.7801461,-0.7797062,-0.77944225,-0.77979416,-0.780586,-0.78111386,-0.78111386,-0.7809379,-0.78076196,-0.780674,-0.78076196,-0.78084993,-0.7810259,-0.78120184,-0.7812898,-0.7812898,-0.78120184,-0.7809379,-0.7809379,-0.7809379,-0.7809379,-0.78084993,-0.78084993,-0.7809379,-0.7810259,-0.78111386,-0.7812898,-0.7812898,-0.78111386,-0.78111386,-0.78111386,-0.7810259,-0.7809379,-0.7809379,-0.78084993,-0.78084993,-0.7809379,-0.7819936,-0.7841052,-0.7856888,-0.78551286,-0.78498495,-0.78524894,-0.7858648,-0.78454506,-0.7793543,-0.7726679,-0.77020437,-0.7700284,-0.76994044,-0.77020437,-0.77046835,-0.7703804,-0.7707323,-0.7724918,-0.77460337,-0.7766269,-0.7791783,-0.7818177,-0.78366524,-0.78489697,-0.7858648,-0.7862167,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7858648,-0.78463304,-0.7832253,-0.7817297,-0.7792663,-0.776187,-0.77389956,-0.77240384,-0.7713481,-0.77090824,-0.7709962,-0.77117217,-0.7713481,-0.771876,-0.7737236,-0.7766269,-0.7797062,-0.78296137,-0.78516096,-0.78595275,-0.7857768,-0.78498495,-0.7844571,-0.7844571,-0.78516096,-0.78551286,-0.78428113,-0.7820816,-0.78084993,-0.78076196,-0.7809379,-0.7810259,-0.7812898,-0.78146577,-0.7816417,-0.78146577,-0.7813778,-0.7813778,-0.7812898,-0.7812898,-0.7812898,-0.7812898,-0.7810259,-0.7809379,-0.7809379,-0.7809379,-0.7809379,-0.7810259,-0.78120184,-0.78146577,-0.78155375,-0.7813778,-0.78111386,-0.7810259,-0.78111386,-0.78111386,-0.78111386,-0.78076196,-0.78041005,-0.780498,-0.78076196,-0.7810259,-0.78111386,-0.78111386,-0.78120184,-0.78120184,-0.7810259,-0.7809379,-0.7809379,-0.7809379,-0.7809379,-0.7809379,-0.7810259,-0.7810259,-0.78084993,-0.78076196,-0.780674,-0.78076196,-0.7810259,-0.78111386,-0.78120184,-0.7813778,-0.7817297,-0.7827854,-0.78419316,-0.7844571,-0.78296137,-0.7813778,-0.78076196,-0.780586,-0.780498,-0.780498,-0.780674,-0.7809379,-0.7809379,-0.78076196,-0.78084993,-0.7818177,-0.78260946,-0.78190565,-0.78076196,-0.780586,-0.7809379,-0.78111386,-0.7810259,-0.7809379,-0.7809379,-0.7809379,-0.78084993,-0.780586,-0.7803221,-0.7800581,-0.77979416,-0.77988213,-0.78041005,-0.7810259,-0.78120184,-0.7810259,-0.78076196,-0.780586,-0.78076196,-0.7809379,-0.7809379,-0.7809379,-0.78120184,-0.7812898,-0.78120184,-0.78120184,-0.7810259,-0.7810259,-0.78111386,-0.7810259,-0.7809379,-0.78084993,-0.78111386,-0.78111386,-0.7809379,-0.7810259,-0.7812898,-0.7812898,-0.7812898,-0.7812898,-0.78111386,-0.78084993,-0.78076196,-0.78084993,-0.7809379,-0.7817297,-0.78366524,-0.7854249,-0.78551286,-0.78454506,-0.78454506,-0.7854249,-0.78595275,-0.78331333,-0.7769788,-0.7710842,-0.76985246,-0.76985246,-0.7696765,-0.7701164,-0.77046835,-0.77046835,-0.7709962,-0.7726679,-0.7745154,-0.77671486,-0.7793543,-0.7817297,-0.7834893,-0.78489697,-0.7858648,-0.7862167,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7860407,-0.784809,-0.78331333,-0.7818177,-0.7793543,-0.77601105,-0.7732837,-0.77196395,-0.7714361,-0.77117217,-0.77126014,-0.7713481,-0.7710842,-0.7709962,-0.7721399,-0.77425146,-0.77706677,-0.78076196,-0.7841052,-0.7856888,-0.7858648,-0.78524894,-0.78454506,-0.7844571,-0.784809,-0.78551286,-0.7853369,-0.7834893,-0.7813778,-0.78076196,-0.7809379,-0.7810259,-0.78120184,-0.7813778,-0.78146577,-0.7813778,-0.7812898,-0.78120184,-0.7810259,-0.7809379,-0.7810259,-0.78111386,-0.7810259,-0.7809379,-0.78084993,-0.78084993,-0.78111386,-0.7812898,-0.7812898,-0.78146577,-0.7816417,-0.78146577,-0.78111386,-0.7809379,-0.7809379,-0.7810259,-0.7810259,-0.78076196,-0.78041005,-0.780498,-0.78084993,-0.7809379,-0.7809379,-0.7810259,-0.7810259,-0.7809379,-0.7809379,-0.78084993,-0.7809379,-0.7810259,-0.78111386,-0.7809379,-0.7809379,-0.7809379,-0.78084993,-0.780674,-0.780674,-0.78076196,-0.7809379,-0.7810259,-0.7810259,-0.78120184,-0.78155375,-0.7824335,-0.7838412,-0.78428113,-0.78269744,-0.78120184,-0.78076196,-0.780586,-0.780498,-0.780586,-0.78076196,-0.78084993,-0.7809379,-0.7809379,-0.7809379,-0.78146577,-0.7821696,-0.7817297,-0.780674,-0.780674,-0.78111386,-0.7810259,-0.78084993,-0.78084993,-0.7809379,-0.7809379,-0.78084993,-0.780498,-0.7802341,-0.7799701,-0.7799701,-0.7803221,-0.78076196,-0.78111386,-0.78111386,-0.7809379,-0.780674,-0.780586,-0.78076196,-0.7810259,-0.7810259,-0.7810259,-0.78120184,-0.7812898,-0.78120184,-0.78120184,-0.78111386,-0.78111386,-0.78120184,-0.7812898,-0.78120184,-0.78111386,-0.78120184,-0.78120184,-0.78111386,-0.7809379,-0.78111386,-0.7813778,-0.78155375,-0.78146577,-0.78111386,-0.78084993,-0.78084993,-0.78084993,-0.7813778,-0.78304935,-0.785073,-0.78560084,-0.78463304,-0.7839292,-0.78463304,-0.7856888,-0.78551286,-0.7816417,-0.7748673,-0.7703804,-0.76994044,-0.76994044,-0.76985246,-0.7700284,-0.7700284,-0.77020437,-0.77082026,-0.77205193,-0.77389956,-0.77671486,-0.7795302,-0.78155375,-0.78331333,-0.78498495,-0.78595275,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7861287,-0.785073,-0.78357726,-0.78225756,-0.77988213,-0.77636296,-0.7733717,-0.7721399,-0.77196395,-0.7717,-0.77126014,-0.77090824,-0.77055633,-0.77046835,-0.77126014,-0.77310777,-0.7753952,-0.7784745,-0.78234553,-0.78489697,-0.7857768,-0.78551286,-0.784809,-0.78454506,-0.784809,-0.78524894,-0.7856888,-0.78498495,-0.78269744,-0.78111386,-0.7809379,-0.78111386,-0.7812898,-0.7813778,-0.7813778,-0.7812898,-0.7812898,-0.78120184,-0.7810259,-0.78084993,-0.780674,-0.78084993,-0.7812898,-0.7812898,-0.7809379,-0.7809379,-0.78120184,-0.7813778,-0.78146577,-0.78146577,-0.78155375,-0.78155375,-0.78111386,-0.78084993,-0.7809379,-0.7809379,-0.7809379,-0.78084993,-0.780498,-0.780498,-0.780674,-0.78076196,-0.780674,-0.780674,-0.780674,-0.78076196,-0.78076196,-0.78076196,-0.78076196,-0.7809379,-0.7809379,-0.7809379,-0.78084993,-0.78084993,-0.78076196,-0.78076196,-0.78076196,-0.7809379,-0.78120184,-0.7810259,-0.7809379,-0.78120184,-0.78155375,-0.78225756,-0.78366524,-0.7840172,-0.78225756,-0.7810259,-0.78084993,-0.780674,-0.780586,-0.78076196,-0.7809379,-0.7809379,-0.7809379,-0.78111386,-0.78111386,-0.78111386,-0.7813778,-0.7813778,-0.78076196,-0.780674,-0.7810259,-0.7810259,-0.78084993,-0.78084993,-0.78084993,-0.7809379,-0.78084993,-0.780498,-0.7802341,-0.7800581,-0.7802341,-0.78076196,-0.7810259,-0.78111386,-0.7810259,-0.78076196,-0.780674,-0.78076196,-0.7809379,-0.7810259,-0.78111386,-0.7812898,-0.7812898,-0.7812898,-0.78120184,-0.78120184,-0.78120184,-0.78120184,-0.78120184,-0.7812898,-0.7813778,-0.7812898,-0.78120184,-0.78120184,-0.78111386,-0.7809379,-0.78111386,-0.7813778,-0.78146577,-0.78146577,-0.78120184,-0.7809379,-0.78084993,-0.7809379,-0.7820816,-0.7844571,-0.78560084,-0.7853369,-0.78428113,-0.78419316,-0.78524894,-0.7857768,-0.78489697,-0.7803221,-0.77389956,-0.77020437,-0.76985246,-0.76994044,-0.7701164,-0.77020437,-0.7700284,-0.77020437,-0.7707323,-0.7715241,-0.7734597,-0.7768908,-0.77988213,-0.7816417,-0.7834013,-0.785073,-0.78595275,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7861287,-0.7853369,-0.7837532,-0.78234553,-0.78076196,-0.77750665,-0.77389956,-0.7721399,-0.77196395,-0.7715241,-0.77082026,-0.77055633,-0.7703804,-0.7703804,-0.77117217,-0.77275586,-0.7745154,-0.77645093,-0.7796182,-0.78296137,-0.78524894,-0.7857768,-0.7853369,-0.785073,-0.78489697,-0.784809,-0.78524894,-0.78551286,-0.78419316,-0.7819936,-0.7810259,-0.78111386,-0.78111386,-0.78120184,-0.78120184,-0.78120184,-0.78120184,-0.78111386,-0.7810259,-0.7809379,-0.7809379,-0.7809379,-0.78120184,-0.7812898,-0.7810259,-0.7810259,-0.7812898,-0.78146577,-0.78155375,-0.78146577,-0.78146577,-0.7813778,-0.78111386,-0.78084993,-0.78084993,-0.78084993,-0.7809379,-0.7810259,-0.78076196,-0.780498,-0.780586,-0.780674,-0.780586,-0.780498,-0.780498,-0.780674,-0.78076196,-0.78084993,-0.7809379,-0.7809379,-0.7809379,-0.7809379,-0.7809379,-0.7809379,-0.7809379,-0.7809379,-0.78084993,-0.7810259,-0.78120184,-0.7810259,-0.7809379,-0.7810259,-0.7812898,-0.78234553,-0.78366524,-0.78357726,-0.7817297,-0.7809379,-0.7809379,-0.78084993,-0.78084993,-0.7809379,-0.7809379,-0.7810259,-0.7810259,-0.78111386,-0.78120184,-0.7812898,-0.78120184,-0.7809379,-0.78076196,-0.78076196,-0.7809379,-0.7809379,-0.7809379,-0.7809379,-0.78084993,-0.78084993,-0.78076196,-0.78041005,-0.7801461,-0.7801461,-0.780498,-0.7809379,-0.78111386,-0.7809379,-0.78076196,-0.780674,-0.78084993,-0.7810259,-0.78120184,-0.78111386,-0.78120184,-0.78146577,-0.7813778,-0.78120184,-0.78111386,-0.78111386,-0.78111386,-0.7810259,-0.78111386,-0.7812898,-0.7813778,-0.7813778,-0.7813778,-0.7812898,-0.78120184,-0.78111386,-0.78120184,-0.7813778,-0.7812898,-0.78120184,-0.78111386,-0.7809379,-0.78084993,-0.78146577,-0.78357726,-0.7854249,-0.78551286,-0.784809,-0.78428113,-0.784809,-0.7856888,-0.78551286,-0.7834013,-0.7781225,-0.7724918,-0.76994044,-0.7697645,-0.7697645,-0.76994044,-0.7700284,-0.7700284,-0.7703804,-0.77082026,-0.7713481,-0.7733717,-0.7769788,-0.7800581,-0.78190565,-0.7834893,-0.785073,-0.7860407,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.7861287,-0.7862167,-0.78560084,-0.7839292,-0.7825215,-0.78146577,-0.7788264,-0.77521926,-0.7729318,-0.77196395,-0.77126014,-0.7707323,-0.77055633,-0.77046835,-0.77046835,-0.7710842,-0.7724918,-0.7738116,-0.77469134,-0.77645093,-0.7799701,-0.7841052,-0.7858648,-0.7858648,-0.7856888,-0.78516096,-0.7844571,-0.78463304,-0.7853369,-0.78524894,-0.7834013,-0.78146577,-0.7809379,-0.7809379,-0.7810259,-0.7809379,-0.7809379,-0.7810259,-0.7809379,-0.78084993,-0.7809379,-0.7809379,-0.78111386,-0.78111386,-0.78120184,-0.7812898,-0.7812898,-0.78146577,-0.78155375,-0.78155375,-0.78155375,-0.7813778,-0.7812898,-0.78120184,-0.7810259,-0.78084993,-0.78084993,-0.78084993,-0.78111386,-0.78111386,-0.780586,-0.7803221,-0.78041005,-0.780498,-0.780498,-0.780586,-0.780586,-0.780674,-0.78076196,-0.78084993,-0.7809379,-0.7809379,-0.78084993,-0.7809379,-0.78111386,-0.7810259,-0.7809379,-0.7810259,-0.78111386,-0.7810259,-0.78084993,-0.78076196,-0.7809379,-0.7812898,-0.78234553,-0.7834893,-0.78304935,-0.7813778,-0.7809379,-0.7810259,-0.7809379,-0.7809379,-0.7809379,-0.7809379,-0.7810259,-0.7810259,-0.7810259,-0.78111386,-0.7812898,-0.78120184,-0.78111386,-0.7810259,-0.7810259,-0.7809379,-0.78084993,-0.78084993,-0.78084993,-0.78076196,-0.78076196,-0.780586,-0.7803221,-0.7802341,-0.78041005,-0.78076196,-0.7810259,-0.7810259,-0.78084993,-0.780674,-0.78084993,-0.7810259,-0.78111386,-0.78111386,-0.7812898,-0.7813778,-0.78146577,-0.78146577,-0.7812898,-0.78111386,-0.78111386,-0.78111386,-0.7810259,-0.7810259,-0.78120184,-0.7812898,-0.7812898,-0.7812898,-0.7812898,-0.7812898,-0.78120184,-0.78120184,-0.78120184,-0.78111386,-0.7809379,-0.7810259,-0.7809379,-0.78120184,-0.78296137,-0.785073,-0.7856888,-0.78516096,-0.7843691,-0.78428113,-0.78516096,-0.7858648,-0.78498495,-0.780498,-0.7738116,-0.77020437,-0.7696765,-0.7696765,-0.7697645,-0.76985246,-0.76985246,-0.76994044,-0.7702924,-0.7707323,-0.7715241,-0.77354765,-0.77671486,-0.7797062,-0.7817297,-0.7834893,-0.78524894,-0.7861287,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7857768,-0.7843691,-0.78296137,-0.7817297,-0.77944225,-0.7765389,-0.7738116,-0.77196395,-0.7710842,-0.77090824,-0.7707323,-0.7707323,-0.77082026,-0.7710842,-0.77196395,-0.77275586,-0.7732837,-0.77425146,-0.7769788,-0.78155375,-0.78498495,-0.78595275,-0.7860407,-0.78551286,-0.78463304,-0.78454506,-0.785073,-0.78560084,-0.784809,-0.7827854,-0.78120184,-0.7809379,-0.7809379,-0.78084993,-0.7809379,-0.7810259,-0.78084993,-0.78076196,-0.78076196,-0.78084993,-0.7810259,-0.7812898,-0.78146577,-0.78146577,-0.78146577,-0.7816417,-0.7817297,-0.78155375,-0.7816417,-0.78155375,-0.7812898,-0.78120184,-0.78111386,-0.7810259,-0.7809379,-0.78084993,-0.7809379,-0.78111386,-0.78084993,-0.7803221,-0.7801461,-0.7802341,-0.780498,-0.780586,-0.780586,-0.78076196,-0.78084993,-0.7809379,-0.7809379,-0.7809379,-0.7809379,-0.7809379,-0.7809379,-0.7809379,-0.78084993,-0.7810259,-0.7810259,-0.78084993,-0.780674,-0.78076196,-0.7810259,-0.78120184,-0.78225756,-0.7832253,-0.7825215,-0.78120184,-0.7810259,-0.7810259,-0.780674,-0.78084993,-0.78111386,-0.78120184,-0.78111386,-0.78111386,-0.7810259,-0.78111386,-0.78120184,-0.78120184,-0.78120184,-0.7812898,-0.7812898,-0.7810259,-0.78084993,-0.78076196,-0.78084993,-0.78084993,-0.780586,-0.78041005,-0.7803221,-0.7803221,-0.780586,-0.7809379,-0.78111386,-0.7810259,-0.78084993,-0.78084993,-0.7810259,-0.78120184,-0.78120184,-0.78111386,-0.7812898,-0.7813778,-0.7813778,-0.7813778,-0.7812898,-0.78120184,-0.78111386,-0.78111386,-0.7810259,-0.78111386,-0.7812898,-0.7812898,-0.78111386,-0.7810259,-0.7810259,-0.78111386,-0.78120184,-0.78111386,-0.78111386,-0.7810259,-0.7809379,-0.7810259,-0.7812898,-0.7825215,-0.78454506,-0.78560084,-0.78551286,-0.784809,-0.78419316,-0.78454506,-0.78551286,-0.7857768,-0.7834893,-0.77715474,-0.77117217,-0.7694126,-0.76958853,-0.76958853,-0.76985246,-0.76985246,-0.7697645,-0.76994044,-0.77020437,-0.77055633,-0.7715241,-0.7737236,-0.77680284,-0.77979416,-0.7818177,-0.7837532,-0.7854249,-0.7862167,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7860407,-0.78489697,-0.7834893,-0.7819936,-0.7796182,-0.7769788,-0.7745154,-0.7725798,-0.7717,-0.7715241,-0.7713481,-0.77126014,-0.7710842,-0.7709962,-0.77126014,-0.77161205,-0.7721399,-0.77284384,-0.7740755,-0.7776826,-0.7825215,-0.78524894,-0.78595275,-0.7858648,-0.78516096,-0.784809,-0.78489697,-0.7853369,-0.78560084,-0.78463304,-0.78269744,-0.7813778,-0.7809379,-0.78084993,-0.7809379,-0.7809379,-0.7809379,-0.7810259,-0.78111386,-0.78120184,-0.7812898,-0.78146577,-0.78155375,-0.78146577,-0.78155375,-0.7817297,-0.7818177,-0.7816417,-0.78155375,-0.78155375,-0.7813778,-0.78120184,-0.78120184,-0.78111386,-0.7809379,-0.78076196,-0.78084993,-0.7810259,-0.7810259,-0.780586,-0.7800581,-0.7799701,-0.7801461,-0.7803221,-0.78041005,-0.780674,-0.7809379,-0.7810259,-0.7810259,-0.7810259,-0.7810259,-0.7810259,-0.7809379,-0.78084993,-0.78084993,-0.7809379,-0.78084993,-0.780674,-0.780674,-0.7809379,-0.7810259,-0.78111386,-0.7821696,-0.78296137,-0.7820816,-0.7809379,-0.7809379,-0.7809379,-0.780674,-0.7809379,-0.7813778,-0.78155375,-0.78146577,-0.7813778,-0.78120184,-0.78120184,-0.7812898,-0.7812898,-0.7812898,-0.7813778,-0.7812898,-0.78111386,-0.78084993,-0.78084993,-0.78084993,-0.78076196,-0.780498,-0.7803221,-0.78041005,-0.780498,-0.78076196,-0.7810259,-0.7810259,-0.7810259,-0.7809379,-0.7809379,-0.78120184,-0.78146577,-0.7813778,-0.7812898,-0.7812898,-0.7812898,-0.78120184,-0.78120184,-0.78120184,-0.78120184,-0.7810259,-0.7809379,-0.7809379,-0.78111386,-0.7812898,-0.78120184,-0.78111386,-0.7810259,-0.7809379,-0.7810259,-0.78111386,-0.78111386,-0.7809379,-0.78084993,-0.78084993,-0.7812898,-0.7824335,-0.7843691,-0.78560084,-0.78560084,-0.78498495,-0.7844571,-0.78454506,-0.78524894,-0.7857768,-0.78489697,-0.780498,-0.7737236,-0.76994044,-0.76950055,-0.76950055,-0.76950055,-0.7697645,-0.7696765,-0.76958853,-0.7697645,-0.7701164,-0.77055633,-0.771876,-0.77433944,-0.77750665,-0.7802341,-0.7821696,-0.7841052,-0.78560084,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.78630465,-0.7861287,-0.7862167,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7861287,-0.7853369,-0.7839292,-0.7825215,-0.7802341,-0.7776826,-0.77565914,-0.7741635,-0.7729318,-0.7722279,-0.771788,-0.7713481,-0.7709962,-0.7707323,-0.77090824,-0.77126014,-0.7713481,-0.77161205,-0.77231586,-0.7745154,-0.7795302,-0.7839292,-0.78560084,-0.78595275,-0.7858648,-0.78524894,-0.784721,-0.78498495,-0.7856888,-0.7857768,-0.784809,-0.78296137,-0.78146577,-0.78076196,-0.78084993,-0.78111386,-0.78120184,-0.7812898,-0.7813778,-0.78155375,-0.78155375,-0.78155375,-0.78155375,-0.7816417,-0.7817297,-0.7818177,-0.7818177,-0.7818177,-0.7816417,-0.7816417,-0.78155375,-0.7813778,-0.78120184,-0.78120184,-0.7810259,-0.78084993,-0.78084993,-0.7809379,-0.7810259,-0.7809379,-0.7803221,-0.77979416,-0.7797062,-0.77988213,-0.7802341,-0.780586,-0.78084993,-0.7809379,-0.78111386,-0.7810259,-0.7810259,-0.78120184,-0.78111386,-0.7810259,-0.7810259,-0.7809379,-0.78084993,-0.780674,-0.78084993,-0.7809379,-0.78076196,-0.78084993,-0.78190565,-0.7827854,-0.7818177,-0.78076196,-0.78084993,-0.78076196,-0.780674,-0.7809379,-0.78120184,-0.78146577,-0.78155375,-0.7812898,-0.78111386,-0.78120184,-0.78120184,-0.78120184,-0.78111386,-0.78120184,-0.78111386,-0.7810259,-0.7809379,-0.78084993,-0.780674,-0.780586,-0.780498,-0.780498,-0.780498,-0.780674,-0.78084993,-0.7810259,-0.7810259,-0.7810259,-0.7810259,-0.78111386,-0.7812898,-0.7813778,-0.7813778,-0.7812898,-0.78120184,-0.78120184,-0.78111386,-0.78120184,-0.7813778,-0.7813778,-0.78120184,-0.7809379,-0.78084993,-0.7809379,-0.78111386,-0.78111386,-0.78120184,-0.7812898,-0.7810259,-0.7809379,-0.7809379,-0.7809379,-0.78076196,-0.78076196,-0.7810259,-0.7820816,-0.7840172,-0.78560084,-0.78595275,-0.78551286,-0.78454506,-0.78428113,-0.785073,-0.7857768,-0.78560084,-0.7827854,-0.77636296,-0.7707323,-0.76950055,-0.76950055,-0.7693246,-0.76958853,-0.7696765,-0.7696765,-0.7697645,-0.76985246,-0.76994044,-0.77055633,-0.77205193,-0.7747793,-0.77821046,-0.780674,-0.7824335,-0.7843691,-0.7857768,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7862167,-0.7856888,-0.78454506,-0.7832253,-0.78146577,-0.77944225,-0.7777706,-0.77601105,-0.77433944,-0.77284384,-0.7717,-0.7710842,-0.77090824,-0.77090824,-0.7710842,-0.77117217,-0.77090824,-0.7709962,-0.77161205,-0.77284384,-0.77636296,-0.78146577,-0.784809,-0.7858648,-0.7861287,-0.7858648,-0.785073,-0.784809,-0.7853369,-0.78595275,-0.7860407,-0.78489697,-0.7828734,-0.78120184,-0.78111386,-0.7813778,-0.78146577,-0.78146577,-0.78155375,-0.7816417,-0.7816417,-0.7816417,-0.7817297,-0.7818177,-0.78190565,-0.7819936,-0.78190565,-0.78190565,-0.7818177,-0.7817297,-0.7817297,-0.7816417,-0.7813778,-0.78120184,-0.78120184,-0.7810259,-0.7809379,-0.7810259,-0.78111386,-0.78111386,-0.780674,-0.77979416,-0.7792663,-0.7793543,-0.7799701,-0.780498,-0.780674,-0.78084993,-0.7810259,-0.7809379,-0.78111386,-0.78155375,-0.7812898,-0.7809379,-0.7809379,-0.7809379,-0.78076196,-0.78076196,-0.78084993,-0.7809379,-0.780586,-0.780586,-0.7816417,-0.7825215,-0.78155375,-0.780586,-0.78076196,-0.78084993,-0.780674,-0.78084993,-0.78120184,-0.78146577,-0.7813778,-0.78111386,-0.7810259,-0.78111386,-0.78111386,-0.7810259,-0.7810259,-0.7810259,-0.7810259,-0.7810259,-0.7810259,-0.78076196,-0.780586,-0.780498,-0.78041005,-0.78041005,-0.780586,-0.78076196,-0.7809379,-0.7809379,-0.78084993,-0.7809379,-0.78111386,-0.7812898,-0.7813778,-0.7813778,-0.7813778,-0.7812898,-0.7812898,-0.7812898,-0.78120184,-0.7813778,-0.78155375,-0.7816417,-0.78155375,-0.7812898,-0.78111386,-0.7809379,-0.7809379,-0.7810259,-0.78120184,-0.7813778,-0.7812898,-0.7810259,-0.7809379,-0.78084993,-0.78076196,-0.78076196,-0.78146577,-0.78331333,-0.78524894,-0.7858648,-0.78560084,-0.785073,-0.78463304,-0.784809,-0.78551286,-0.7858648,-0.7841052,-0.77865046,-0.7722279,-0.76958853,-0.76958853,-0.7694126,-0.7693246,-0.7694126,-0.76950055,-0.76958853,-0.7697645,-0.76985246,-0.7701164,-0.77082026,-0.77231586,-0.77504325,-0.77838653,-0.78084993,-0.7828734,-0.784721,-0.78595275,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7860407,-0.78524894,-0.7840172,-0.7825215,-0.78111386,-0.7795302,-0.77750665,-0.7758351,-0.7744274,-0.77275586,-0.77161205,-0.7713481,-0.77126014,-0.7710842,-0.7710842,-0.7710842,-0.7710842,-0.7714361,-0.771788,-0.7730198,-0.77715474,-0.7824335,-0.7853369,-0.78595275,-0.7860407,-0.78551286,-0.78463304,-0.78463304,-0.7853369,-0.78595275,-0.7857768,-0.7843691,-0.78234553,-0.78146577,-0.78146577,-0.78146577,-0.78155375,-0.78155375,-0.78155375,-0.7816417,-0.7817297,-0.7817297,-0.7818177,-0.78190565,-0.78190565,-0.78190565,-0.78190565,-0.78190565,-0.7817297,-0.7816417,-0.78155375,-0.7813778,-0.7812898,-0.7813778,-0.7812898,-0.78111386,-0.7810259,-0.7810259,-0.7810259,-0.78076196,-0.7801461,-0.7793543,-0.7791783,-0.7797062,-0.7802341,-0.780498,-0.78076196,-0.7809379,-0.78084993,-0.78120184,-0.7818177,-0.7813778,-0.78076196,-0.780674,-0.780674,-0.780674,-0.78076196,-0.78084993,-0.78084993,-0.780674,-0.780586,-0.78155375,-0.7824335,-0.78155375,-0.780674,-0.7810259,-0.78111386,-0.78084993,-0.7809379,-0.78120184,-0.7812898,-0.78111386,-0.7809379,-0.7810259,-0.7810259,-0.7810259,-0.7810259,-0.7810259,-0.78111386,-0.78120184,-0.78111386,-0.7810259,-0.78076196,-0.780498,-0.78041005,-0.7803221,-0.7803221,-0.780586,-0.78076196,-0.78084993,-0.78076196,-0.78084993,-0.7809379,-0.78111386,-0.7812898,-0.78146577,-0.78155375,-0.78146577,-0.7813778,-0.78146577,-0.7813778,-0.7813778,-0.78146577,-0.78155375,-0.7817297,-0.7816417,-0.78155375,-0.7813778,-0.7812898,-0.78111386,-0.78111386,-0.78111386,-0.7812898,-0.78146577,-0.7813778,-0.78111386,-0.7809379,-0.78076196,-0.78111386,-0.78260946,-0.784721,-0.7858648,-0.78560084,-0.78489697,-0.78454506,-0.78498495,-0.78551286,-0.7856888,-0.78524894,-0.7812898,-0.7745154,-0.7701164,-0.76958853,-0.76958853,-0.7694126,-0.76950055,-0.76958853,-0.76950055,-0.76950055,-0.76958853,-0.76985246,-0.7702924,-0.77090824,-0.7726679,-0.776099,-0.77909034,-0.78111386,-0.78331333,-0.78516096,-0.7861287,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7863926,-0.78630465,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7862167,-0.7857768,-0.784809,-0.78357726,-0.7824335,-0.78084993,-0.77900237,-0.7775946,-0.776275,-0.7745154,-0.77310777,-0.7722279,-0.77161205,-0.77117217,-0.7710842,-0.7710842,-0.7709962,-0.7710842,-0.77117217,-0.7715241,-0.77425146,-0.77988213,-0.78428113,-0.78551286,-0.7858648,-0.7857768,-0.78498495,-0.7844571,-0.784721,-0.7854249,-0.7858648,-0.7854249,-0.7837532,-0.7820816,-0.7812898,-0.7812898,-0.78155375,-0.78155375,-0.78155375,-0.7816417,-0.7816417,-0.7816417,-0.7818177,-0.7819936,-0.7819936,-0.78190565,-0.78190565,-0.7818177,-0.78155375,-0.7813778,-0.7813778,-0.78146577,-0.78155375,-0.7816417,-0.78146577,-0.7812898,-0.7810259,-0.7809379,-0.7810259,-0.7810259,-0.780498,-0.7796182,-0.7792663,-0.7797062,-0.7801461,-0.78041005,-0.780674,-0.78076196,-0.78076196,-0.78111386,-0.7813778,-0.7809379,-0.780586,-0.780586,-0.780586,-0.780674,-0.78084993,-0.7809379,-0.78084993,-0.780674,-0.780586,-0.78146577,-0.78234553,-0.78155375,-0.78084993,-0.78120184,-0.7812898,-0.7810259,-0.7810259,-0.7810259,-0.78111386,-0.7810259,-0.7809379,-0.7809379,-0.78084993,-0.7809379,-0.7809379,-0.78084993,-0.7810259,-0.78111386,-0.7809379,-0.78084993,-0.780586,-0.7803221,-0.7803221,-0.7803221,-0.78041005,-0.78084993,-0.7809379,-0.78084993,-0.78084993,-0.7809379,-0.78111386,-0.78120184,-0.7812898,-0.78146577,-0.78155375,-0.78155375,-0.78155375,-0.7816417,-0.78155375,-0.78155375,-0.78155375,-0.78155375,-0.7816417,-0.7817297,-0.7817297,-0.7816417,-0.78155375,-0.78146577,-0.7812898,-0.7812898,-0.7813778,-0.78146577,-0.78146577,-0.7812898,-0.78111386,-0.7812898,-0.7824335,-0.7843691,-0.7856888,-0.7857768,-0.78516096,-0.7844571,-0.7844571,-0.7853369,-0.7857768,-0.78551286,-0.78304935,-0.7766269,-0.77126014,-0.7696765,-0.7696765,-0.7696765,-0.76985246,-0.76994044,-0.76994044,-0.76985246,-0.7697645,-0.76985246,-0.7701164,-0.77020437,-0.77082026,-0.7734597,-0.7772427,-0.7800581,-0.7818177,-0.7838412,-0.78551286,-0.7862167,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7861287,-0.7854249,-0.78463304,-0.7837532,-0.7824335,-0.78084993,-0.7793543,-0.7780345,-0.7768908,-0.7754832,-0.77354765,-0.77205193,-0.77126014,-0.77090824,-0.77090824,-0.77082026,-0.7707323,-0.7709962,-0.7714361,-0.7729318,-0.77680284,-0.7817297,-0.78454506,-0.7854249,-0.7857768,-0.7856888,-0.78498495,-0.7844571,-0.784721,-0.78551286,-0.7857768,-0.78498495,-0.78296137,-0.78155375,-0.78120184,-0.7813778,-0.78146577,-0.78146577,-0.7816417,-0.7818177,-0.7817297,-0.7818177,-0.7820816,-0.7820816,-0.7819936,-0.7819936,-0.7818177,-0.78146577,-0.7812898,-0.7812898,-0.7813778,-0.78146577,-0.7816417,-0.7816417,-0.7813778,-0.78111386,-0.7810259,-0.78111386,-0.78120184,-0.78076196,-0.77988213,-0.77944225,-0.77979416,-0.7802341,-0.780498,-0.780674,-0.78076196,-0.78084993,-0.78111386,-0.78111386,-0.78084993,-0.78076196,-0.78076196,-0.78076196,-0.78084993,-0.7810259,-0.7809379,-0.78076196,-0.780674,-0.78076196,-0.78146577,-0.7820816,-0.78146577,-0.7810259,-0.78120184,-0.78120184,-0.78111386,-0.78120184,-0.7812898,-0.78120184,-0.78111386,-0.7810259,-0.78084993,-0.78084993,-0.7809379,-0.7809379,-0.78084993,-0.7809379,-0.7809379,-0.78084993,-0.78076196,-0.780498,-0.7802341,-0.7803221,-0.78041005,-0.780674,-0.78111386,-0.78120184,-0.7809379,-0.78084993,-0.78111386,-0.78120184,-0.78120184,-0.7813778,-0.78155375,-0.7816417,-0.78155375,-0.7816417,-0.7817297,-0.7817297,-0.7816417,-0.78146577,-0.7813778,-0.78146577,-0.7816417,-0.7816417,-0.7816417,-0.78155375,-0.78146577,-0.7813778,-0.7813778,-0.7813778,-0.78120184,-0.78120184,-0.7812898,-0.78146577,-0.7821696,-0.7840172,-0.78560084,-0.7857768,-0.78524894,-0.784721,-0.784721,-0.78516096,-0.78551286,-0.78560084,-0.7839292,-0.77821046,-0.771788,-0.76958853,-0.76958853,-0.76950055,-0.7696765,-0.7700284,-0.7701164,-0.7700284,-0.7700284,-0.77020437,-0.7703804,-0.7700284,-0.76994044,-0.771788,-0.7753952,-0.7784745,-0.78041005,-0.7824335,-0.78463304,-0.78595275,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78595275,-0.7854249,-0.78489697,-0.7840172,-0.78260946,-0.7812898,-0.7803221,-0.7791783,-0.77750665,-0.77521926,-0.7730198,-0.77161205,-0.7709962,-0.77090824,-0.77090824,-0.77090824,-0.7709962,-0.77117217,-0.77126014,-0.77284384,-0.7772427,-0.7820816,-0.784721,-0.7854249,-0.7856888,-0.78551286,-0.78489697,-0.78463304,-0.785073,-0.78560084,-0.78560084,-0.7843691,-0.7824335,-0.78120184,-0.78111386,-0.7812898,-0.7813778,-0.7816417,-0.78190565,-0.7819936,-0.7819936,-0.7819936,-0.7819936,-0.7819936,-0.7818177,-0.7817297,-0.78155375,-0.7812898,-0.78111386,-0.7810259,-0.78120184,-0.78155375,-0.78155375,-0.7813778,-0.78111386,-0.7810259,-0.78111386,-0.78120184,-0.7809379,-0.7802341,-0.7797062,-0.77988213,-0.7803221,-0.780586,-0.78084993,-0.7809379,-0.7810259,-0.78120184,-0.78120184,-0.7809379,-0.78076196,-0.7809379,-0.7809379,-0.7809379,-0.7809379,-0.78076196,-0.78076196,-0.78076196,-0.78084993,-0.78146577,-0.7818177,-0.7812898,-0.78111386,-0.7812898,-0.78120184,-0.7813778,-0.78146577,-0.78146577,-0.7813778,-0.7812898,-0.78111386,-0.7809379,-0.78084993,-0.7810259,-0.7810259,-0.7809379,-0.7809379,-0.78076196,-0.780674,-0.780674,-0.780498,-0.7803221,-0.78041005,-0.780674,-0.78084993,-0.7810259,-0.78111386,-0.7809379,-0.7809379,-0.78111386,-0.7812898,-0.78120184,-0.7813778,-0.7816417,-0.7816417,-0.7816417,-0.7817297,-0.7818177,-0.7816417,-0.7816417,-0.7813778,-0.78111386,-0.7810259,-0.78120184,-0.7812898,-0.7812898,-0.7812898,-0.7812898,-0.7812898,-0.7812898,-0.7812898,-0.78111386,-0.78111386,-0.7812898,-0.7819936,-0.7834013,-0.78516096,-0.7857768,-0.7853369,-0.78463304,-0.78454506,-0.785073,-0.78560084,-0.7856888,-0.78454506,-0.77988213,-0.7730198,-0.7696765,-0.7694126,-0.76950055,-0.76950055,-0.7697645,-0.7701164,-0.77020437,-0.77020437,-0.77020437,-0.77020437,-0.7701164,-0.7700284,-0.7709962,-0.7741635,-0.7777706,-0.77979416,-0.78111386,-0.7834893,-0.7854249,-0.7862167,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.78595275,-0.78560084,-0.785073,-0.78419316,-0.78331333,-0.78225756,-0.7809379,-0.77944225,-0.7774187,-0.7747793,-0.77231586,-0.77117217,-0.7710842,-0.7709962,-0.77090824,-0.77090824,-0.77082026,-0.7706443,-0.7709962,-0.7738116,-0.7789144,-0.7831373,-0.78489697,-0.78524894,-0.7854249,-0.7853369,-0.785073,-0.78489697,-0.78516096,-0.7856888,-0.7854249,-0.7839292,-0.78190565,-0.78111386,-0.7812898,-0.7813778,-0.78155375,-0.7817297,-0.78190565,-0.78190565,-0.7819936,-0.7819936,-0.7818177,-0.7816417,-0.78155375,-0.78146577,-0.78120184,-0.7809379,-0.78084993,-0.78111386,-0.78146577,-0.7816417,-0.78155375,-0.7813778,-0.78111386,-0.7809379,-0.7810259,-0.7809379,-0.780498,-0.7799701,-0.7799701,-0.7803221,-0.780586,-0.780674,-0.78076196,-0.78084993,-0.7810259,-0.78111386,-0.7809379,-0.78076196,-0.78084993,-0.7809379,-0.7809379,-0.78076196,-0.780674,-0.78076196,-0.78076196,-0.7809379,-0.7816417,-0.78190565,-0.78146577,-0.78120184,-0.78120184,-0.78120184,-0.78146577,-0.78155375,-0.7812898,-0.78111386,-0.78111386,-0.7810259,-0.7809379,-0.7810259,-0.78111386,-0.78111386,-0.7810259,-0.7810259,-0.78084993,-0.780586,-0.78041005,-0.7803221,-0.7802341,-0.78041005,-0.78084993,-0.7810259,-0.7810259,-0.7809379,-0.7809379,-0.7810259,-0.78120184,-0.78120184,-0.7812898,-0.7813778,-0.78155375,-0.7816417,-0.7817297,-0.78190565,-0.78190565,-0.7817297,-0.78155375,-0.7812898,-0.7809379,-0.780674,-0.78076196,-0.7809379,-0.7810259,-0.7810259,-0.7810259,-0.78111386,-0.78111386,-0.78120184,-0.78111386,-0.78120184,-0.7818177,-0.7832253,-0.78489697,-0.7857768,-0.7854249,-0.7844571,-0.7841052,-0.784809,-0.78551286,-0.7856888,-0.7854249,-0.7816417,-0.7747793,-0.76994044,-0.76958853,-0.7696765,-0.76950055,-0.7697645,-0.7700284,-0.7702924,-0.77020437,-0.7700284,-0.76994044,-0.76985246,-0.7703804,-0.771788,-0.77398753,-0.7769788,-0.77944225,-0.78076196,-0.7825215,-0.784809,-0.78595275,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7863926,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.78630465,-0.7860407,-0.7856888,-0.7853369,-0.78463304,-0.78357726,-0.78234553,-0.7810259,-0.7792663,-0.7765389,-0.7734597,-0.77161205,-0.77126014,-0.7710842,-0.77082026,-0.77082026,-0.7707323,-0.7706443,-0.7707323,-0.77231586,-0.776275,-0.78076196,-0.78357726,-0.78463304,-0.78498495,-0.78524894,-0.7853369,-0.785073,-0.78489697,-0.7853369,-0.7857768,-0.78524894,-0.78357726,-0.7817297,-0.78111386,-0.7812898,-0.78155375,-0.7816417,-0.7816417,-0.7818177,-0.7819936,-0.7819936,-0.7817297,-0.7816417,-0.78146577,-0.7812898,-0.78111386,-0.78084993,-0.78084993,-0.78120184,-0.78146577,-0.7816417,-0.7816417,-0.78146577,-0.7812898,-0.7810259,-0.7810259,-0.7809379,-0.780586,-0.7801461,-0.7800581,-0.7802341,-0.78041005,-0.780498,-0.780586,-0.780674,-0.78076196,-0.7809379,-0.78084993,-0.78084993,-0.7809379,-0.7809379,-0.78084993,-0.78076196,-0.780674,-0.78084993,-0.78076196,-0.7810259,-0.7818177,-0.7819936,-0.78146577,-0.7812898,-0.78120184,-0.78111386,-0.7812898,-0.7812898,-0.7810259,-0.78084993,-0.78084993,-0.78084993,-0.78076196,-0.7809379,-0.7810259,-0.7810259,-0.7810259,-0.7810259,-0.78084993,-0.780498,-0.7803221,-0.7802341,-0.7801461,-0.7803221,-0.7809379,-0.78111386,-0.7809379,-0.78084993,-0.7810259,-0.7810259,-0.7810259,-0.78111386,-0.78120184,-0.7812898,-0.7813778,-0.7816417,-0.7818177,-0.78190565,-0.7818177,-0.7816417,-0.78146577,-0.78120184,-0.7809379,-0.780674,-0.780586,-0.780674,-0.780674,-0.78076196,-0.7809379,-0.7810259,-0.78120184,-0.7812898,-0.7813778,-0.7819936,-0.7834013,-0.78498495,-0.7857768,-0.78560084,-0.784721,-0.7840172,-0.78454506,-0.7854249,-0.78560084,-0.7854249,-0.7832253,-0.77715474,-0.77126014,-0.7694126,-0.7696765,-0.76950055,-0.7696765,-0.76994044,-0.76985246,-0.76994044,-0.76994044,-0.7697645,-0.77020437,-0.7710842,-0.77275586,-0.7751312,-0.77750665,-0.7791783,-0.780498,-0.7820816,-0.7843691,-0.7858648,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7861287,-0.7858648,-0.78551286,-0.78454506,-0.7834013,-0.7819936,-0.780498,-0.7784745,-0.7754832,-0.7725798,-0.7713481,-0.7710842,-0.77090824,-0.77090824,-0.77090824,-0.77090824,-0.7709962,-0.771788,-0.77425146,-0.7775946,-0.78084993,-0.7834893,-0.784809,-0.78516096,-0.7853369,-0.7854249,-0.785073,-0.78489697,-0.7854249,-0.7858648,-0.78524894,-0.78304935,-0.78120184,-0.7810259,-0.78146577,-0.78146577,-0.7813778,-0.78155375,-0.7818177,-0.7817297,-0.78155375,-0.78155375,-0.7813778,-0.78120184,-0.7810259,-0.78084993,-0.7809379,-0.78120184,-0.78146577,-0.78155375,-0.78146577,-0.7812898,-0.78120184,-0.78111386,-0.7809379,-0.78084993,-0.780674,-0.7803221,-0.7801461,-0.7801461,-0.7802341,-0.7803221,-0.780498,-0.780674,-0.78084993,-0.7809379,-0.78084993,-0.7809379,-0.7810259,-0.7809379,-0.7809379,-0.78084993,-0.78076196,-0.78084993,-0.78084993,-0.7810259,-0.78190565,-0.7819936,-0.7812898,-0.78120184,-0.78120184,-0.78120184,-0.7812898,-0.78120184,-0.7809379,-0.7809379,-0.7809379,-0.78084993,-0.780674,-0.78076196,-0.78084993,-0.7809379,-0.7809379,-0.78084993,-0.780586,-0.7803221,-0.7803221,-0.7803221,-0.7803221,-0.780674,-0.7810259,-0.7810259,-0.78084993,-0.7809379,-0.7810259,-0.7809379,-0.7809379,-0.78111386,-0.78111386,-0.78120184,-0.7813778,-0.7816417,-0.78190565,-0.7819936,-0.7818177,-0.7816417,-0.78146577,-0.7812898,-0.7810259,-0.7809379,-0.78084993,-0.780674,-0.780674,-0.78076196,-0.78084993,-0.7810259,-0.78146577,-0.7818177,-0.7824335,-0.7837532,-0.78524894,-0.78595275,-0.7857768,-0.78498495,-0.7843691,-0.78454506,-0.7854249,-0.7856888,-0.78524894,-0.7832253,-0.7780345,-0.77240384,-0.76994044,-0.7697645,-0.7696765,-0.7696765,-0.7700284,-0.7701164,-0.76994044,-0.76985246,-0.7701164,-0.7709962,-0.77275586,-0.7747793,-0.7765389,-0.77829856,-0.77988213,-0.78084993,-0.7821696,-0.78419316,-0.7857768,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7860407,-0.78551286,-0.78428113,-0.78269744,-0.78120184,-0.77988213,-0.7773307,-0.7738116,-0.77161205,-0.77117217,-0.7710842,-0.7709962,-0.7710842,-0.77117217,-0.77090824,-0.7709962,-0.7721399,-0.7745154,-0.77750665,-0.78076196,-0.7834893,-0.784809,-0.78516096,-0.7854249,-0.7853369,-0.785073,-0.78524894,-0.7856888,-0.78595275,-0.78498495,-0.78304935,-0.78155375,-0.7812898,-0.7812898,-0.78120184,-0.7813778,-0.7816417,-0.7817297,-0.7816417,-0.78146577,-0.7812898,-0.78111386,-0.7810259,-0.7809379,-0.78111386,-0.7812898,-0.78146577,-0.78155375,-0.78146577,-0.7813778,-0.78120184,-0.7810259,-0.7809379,-0.78076196,-0.780498,-0.7803221,-0.7802341,-0.7802341,-0.7802341,-0.7803221,-0.780586,-0.78084993,-0.78111386,-0.78111386,-0.7810259,-0.7810259,-0.7810259,-0.7809379,-0.7809379,-0.78084993,-0.78084993,-0.7809379,-0.78076196,-0.78111386,-0.7819936,-0.7819936,-0.78111386,-0.7810259,-0.78111386,-0.78120184,-0.7812898,-0.78120184,-0.7810259,-0.7810259,-0.7809379,-0.78084993,-0.78084993,-0.7809379,-0.7810259,-0.78111386,-0.7809379,-0.78076196,-0.780498,-0.7802341,-0.7802341,-0.7803221,-0.780586,-0.7809379,-0.7809379,-0.7809379,-0.7810259,-0.78111386,-0.78111386,-0.7809379,-0.78084993,-0.7810259,-0.78111386,-0.78120184,-0.7812898,-0.78146577,-0.7818177,-0.7819936,-0.78190565,-0.7817297,-0.78146577,-0.78120184,-0.7810259,-0.7810259,-0.7809379,-0.7809379,-0.78084993,-0.780674,-0.780674,-0.78120184,-0.7821696,-0.7832253,-0.78428113,-0.78524894,-0.7857768,-0.7856888,-0.78516096,-0.78454506,-0.784721,-0.7853369,-0.78560084,-0.7853369,-0.78331333,-0.77821046,-0.77240384,-0.76985246,-0.7696765,-0.7697645,-0.76985246,-0.7701164,-0.7703804,-0.7702924,-0.7702924,-0.77082026,-0.77205193,-0.77398753,-0.776275,-0.77829856,-0.77979416,-0.78084993,-0.78190565,-0.7832253,-0.784721,-0.7857768,-0.7862167,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.78630465,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.7861287,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.7860407,-0.78516096,-0.78366524,-0.7819936,-0.78076196,-0.77900237,-0.77557117,-0.7724918,-0.7715241,-0.7713481,-0.77117217,-0.7710842,-0.7709962,-0.7707323,-0.77046835,-0.7707323,-0.7717,-0.77398753,-0.7775946,-0.78076196,-0.78304935,-0.78454506,-0.78516096,-0.7853369,-0.7853369,-0.78516096,-0.78524894,-0.7856888,-0.7858648,-0.78498495,-0.7831373,-0.78155375,-0.78120184,-0.78120184,-0.7812898,-0.7816417,-0.78190565,-0.7817297,-0.7813778,-0.78120184,-0.78111386,-0.7810259,-0.7810259,-0.78120184,-0.7813778,-0.78146577,-0.78155375,-0.78146577,-0.78146577,-0.7812898,-0.78111386,-0.7810259,-0.780674,-0.78041005,-0.7802341,-0.7801461,-0.7801461,-0.7802341,-0.7803221,-0.78041005,-0.78084993,-0.78120184,-0.7812898,-0.78111386,-0.7810259,-0.7809379,-0.78084993,-0.7809379,-0.78084993,-0.78084993,-0.7809379,-0.78084993,-0.78111386,-0.78190565,-0.7817297,-0.7809379,-0.7809379,-0.78111386,-0.7810259,-0.7810259,-0.7812898,-0.7812898,-0.78111386,-0.7809379,-0.78084993,-0.78076196,-0.78084993,-0.7810259,-0.7809379,-0.78084993,-0.780674,-0.78041005,-0.7800581,-0.7800581,-0.78041005,-0.78084993,-0.7810259,-0.7809379,-0.7809379,-0.78120184,-0.7812898,-0.78120184,-0.78111386,-0.78076196,-0.78076196,-0.7809379,-0.7809379,-0.7810259,-0.7812898,-0.7817297,-0.7819936,-0.7818177,-0.78155375,-0.7812898,-0.78111386,-0.7810259,-0.7809379,-0.7809379,-0.7810259,-0.7813778,-0.7813778,-0.78146577,-0.78260946,-0.7841052,-0.78498495,-0.78516096,-0.785073,-0.785073,-0.78498495,-0.78463304,-0.784721,-0.78524894,-0.7853369,-0.785073,-0.78331333,-0.7785625,-0.7726679,-0.7696765,-0.76950055,-0.76958853,-0.7696765,-0.76985246,-0.7701164,-0.77020437,-0.7702924,-0.7713481,-0.77354765,-0.7759231,-0.77785856,-0.7796182,-0.78111386,-0.78234553,-0.78331333,-0.7844571,-0.78560084,-0.7862167,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7858648,-0.784721,-0.78296137,-0.78155375,-0.78041005,-0.7780345,-0.7745154,-0.77231586,-0.7717,-0.7713481,-0.7710842,-0.77090824,-0.77055633,-0.7703804,-0.7702924,-0.7702924,-0.7721399,-0.77521926,-0.77750665,-0.7799701,-0.78304935,-0.78454506,-0.785073,-0.7854249,-0.78524894,-0.78489697,-0.78524894,-0.7857768,-0.7858648,-0.78498495,-0.7828734,-0.7812898,-0.78111386,-0.7813778,-0.7816417,-0.7818177,-0.7817297,-0.78146577,-0.7812898,-0.78120184,-0.78111386,-0.78111386,-0.78120184,-0.7812898,-0.7813778,-0.78146577,-0.78146577,-0.7813778,-0.78120184,-0.78120184,-0.7810259,-0.780498,-0.7802341,-0.7800581,-0.77988213,-0.7799701,-0.7800581,-0.7803221,-0.780498,-0.78076196,-0.7809379,-0.7810259,-0.7810259,-0.78120184,-0.78120184,-0.7810259,-0.7810259,-0.7810259,-0.7809379,-0.7809379,-0.78076196,-0.78120184,-0.78190565,-0.78155375,-0.78076196,-0.7810259,-0.78120184,-0.78111386,-0.7810259,-0.7812898,-0.78146577,-0.78120184,-0.7809379,-0.7809379,-0.78084993,-0.78084993,-0.7809379,-0.7809379,-0.780674,-0.7803221,-0.7800581,-0.77988213,-0.7801461,-0.780674,-0.7809379,-0.7809379,-0.7809379,-0.78111386,-0.7812898,-0.7812898,-0.78120184,-0.78111386,-0.78084993,-0.78076196,-0.78076196,-0.78076196,-0.78076196,-0.78120184,-0.7816417,-0.7818177,-0.7817297,-0.78155375,-0.7812898,-0.78120184,-0.78111386,-0.7810259,-0.7809379,-0.7809379,-0.78146577,-0.7825215,-0.78366524,-0.78489697,-0.7856888,-0.78551286,-0.78498495,-0.7844571,-0.7843691,-0.78463304,-0.78498495,-0.7853369,-0.7854249,-0.78489697,-0.78269744,-0.7776826,-0.7726679,-0.7700284,-0.76958853,-0.7696765,-0.7697645,-0.7696765,-0.7701164,-0.7702924,-0.76994044,-0.7709962,-0.77425146,-0.7774187,-0.7793543,-0.78076196,-0.7821696,-0.78357726,-0.78463304,-0.7854249,-0.7860407,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.7862167,-0.78551286,-0.7839292,-0.78234553,-0.7812898,-0.7796182,-0.776099,-0.77284384,-0.771788,-0.7714361,-0.7710842,-0.77090824,-0.7706443,-0.7703804,-0.7702924,-0.77055633,-0.7713481,-0.7725798,-0.77425146,-0.77671486,-0.7799701,-0.7827854,-0.78454506,-0.78516096,-0.7853369,-0.78516096,-0.785073,-0.7854249,-0.7856888,-0.7856888,-0.78463304,-0.7824335,-0.7812898,-0.78120184,-0.78146577,-0.7816417,-0.78155375,-0.78146577,-0.7813778,-0.78120184,-0.78111386,-0.78111386,-0.7812898,-0.7813778,-0.78155375,-0.78155375,-0.78155375,-0.78146577,-0.7812898,-0.78120184,-0.7810259,-0.780498,-0.7801461,-0.7800581,-0.7799701,-0.7799701,-0.7800581,-0.7803221,-0.780586,-0.78076196,-0.7809379,-0.78084993,-0.78084993,-0.7810259,-0.7812898,-0.78120184,-0.78111386,-0.78111386,-0.78111386,-0.7809379,-0.780674,-0.78120184,-0.78190565,-0.7813778,-0.78076196,-0.7810259,-0.7812898,-0.78120184,-0.78111386,-0.7812898,-0.78146577,-0.7812898,-0.7810259,-0.78111386,-0.78111386,-0.78084993,-0.78084993,-0.7809379,-0.780674,-0.7800581,-0.77979416,-0.7799701,-0.780498,-0.78076196,-0.78084993,-0.7809379,-0.78111386,-0.7812898,-0.78120184,-0.78111386,-0.7810259,-0.78120184,-0.78111386,-0.78084993,-0.78076196,-0.780674,-0.780674,-0.78111386,-0.78155375,-0.7818177,-0.7816417,-0.78146577,-0.7813778,-0.78120184,-0.7810259,-0.7810259,-0.7810259,-0.78084993,-0.78155375,-0.7834013,-0.78516096,-0.78595275,-0.7857768,-0.7854249,-0.785073,-0.7844571,-0.78454506,-0.78516096,-0.78551286,-0.78551286,-0.784721,-0.7817297,-0.7765389,-0.771876,-0.7697645,-0.76950055,-0.76950055,-0.7696765,-0.7700284,-0.7702924,-0.77046835,-0.7702924,-0.7706443,-0.7733717,-0.7772427,-0.77979416,-0.78120184,-0.7828734,-0.7843691,-0.7853369,-0.7858648,-0.7862167,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7864806,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.7858648,-0.78454506,-0.78296137,-0.78190565,-0.78041005,-0.77715474,-0.7734597,-0.771788,-0.7714361,-0.7710842,-0.77090824,-0.7706443,-0.77046835,-0.7706443,-0.7707323,-0.77055633,-0.7710842,-0.77231586,-0.77398753,-0.77671486,-0.7803221,-0.7832253,-0.78454506,-0.78498495,-0.7853369,-0.7853369,-0.785073,-0.785073,-0.7854249,-0.78551286,-0.7843691,-0.7824335,-0.7812898,-0.7812898,-0.78146577,-0.78146577,-0.7812898,-0.78120184,-0.78120184,-0.78120184,-0.7812898,-0.78146577,-0.7816417,-0.7817297,-0.7816417,-0.78155375,-0.78155375,-0.7813778,-0.7812898,-0.78111386,-0.78076196,-0.780498,-0.7803221,-0.7801461,-0.7799701,-0.77988213,-0.7801461,-0.780586,-0.78076196,-0.78084993,-0.78084993,-0.78084993,-0.78084993,-0.7810259,-0.7812898,-0.78120184,-0.78111386,-0.78120184,-0.78111386,-0.78084993,-0.7813778,-0.7820816,-0.78146577,-0.78076196,-0.78111386,-0.7812898,-0.78120184,-0.78111386,-0.78120184,-0.78146577,-0.78155375,-0.78146577,-0.78146577,-0.7812898,-0.78084993,-0.78076196,-0.7809379,-0.780586,-0.7799701,-0.77979416,-0.7802341,-0.78076196,-0.7810259,-0.78111386,-0.78111386,-0.7813778,-0.7813778,-0.78120184,-0.7810259,-0.78111386,-0.7812898,-0.7812898,-0.7809379,-0.78076196,-0.78084993,-0.78084993,-0.78111386,-0.7816417,-0.7818177,-0.7816417,-0.7813778,-0.78120184,-0.7809379,-0.78084993,-0.78084993,-0.78076196,-0.7810259,-0.7824335,-0.784721,-0.7858648,-0.7857768,-0.7853369,-0.78498495,-0.78454506,-0.7844571,-0.78516096,-0.78560084,-0.78560084,-0.784721,-0.7810259,-0.7751312,-0.7703804,-0.76914865,-0.76914865,-0.76914865,-0.76950055,-0.76994044,-0.7702924,-0.77055633,-0.77046835,-0.7707323,-0.77319574,-0.7769788,-0.7793543,-0.7809379,-0.7828734,-0.784809,-0.7857768,-0.7861287,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.7860407,-0.78516096,-0.7837532,-0.7825215,-0.7812898,-0.7785625,-0.77460337,-0.7721399,-0.77126014,-0.7709962,-0.77082026,-0.7706443,-0.77055633,-0.77055633,-0.7703804,-0.77046835,-0.7707323,-0.7709962,-0.77161205,-0.7736356,-0.77680284,-0.7799701,-0.78269744,-0.7843691,-0.785073,-0.7853369,-0.78524894,-0.785073,-0.785073,-0.78560084,-0.78560084,-0.7843691,-0.7824335,-0.78146577,-0.7812898,-0.7812898,-0.78120184,-0.78120184,-0.7813778,-0.78146577,-0.78155375,-0.7816417,-0.7817297,-0.7816417,-0.7816417,-0.7816417,-0.78146577,-0.7812898,-0.7812898,-0.7812898,-0.7809379,-0.780674,-0.78041005,-0.7800581,-0.77988213,-0.77979416,-0.7800581,-0.78041005,-0.780674,-0.78076196,-0.78084993,-0.78084993,-0.78076196,-0.7809379,-0.7813778,-0.78146577,-0.78120184,-0.78120184,-0.78111386,-0.7809379,-0.78155375,-0.7821696,-0.78155375,-0.7809379,-0.78111386,-0.78111386,-0.78111386,-0.78111386,-0.78111386,-0.78120184,-0.78146577,-0.7816417,-0.7816417,-0.7813778,-0.78084993,-0.78076196,-0.78084993,-0.78041005,-0.7799701,-0.77988213,-0.7803221,-0.78084993,-0.78120184,-0.78120184,-0.7813778,-0.78146577,-0.7813778,-0.7812898,-0.7812898,-0.7813778,-0.7812898,-0.78120184,-0.7810259,-0.7809379,-0.7809379,-0.7810259,-0.78120184,-0.78155375,-0.7817297,-0.7816417,-0.7812898,-0.7810259,-0.7809379,-0.7809379,-0.78084993,-0.7810259,-0.78225756,-0.78428113,-0.78560084,-0.78560084,-0.78498495,-0.78463304,-0.7843691,-0.78428113,-0.78498495,-0.78551286,-0.78551286,-0.7843691,-0.780498,-0.7745154,-0.7703804,-0.7692366,-0.76914865,-0.76914865,-0.76950055,-0.76994044,-0.76994044,-0.76994044,-0.76994044,-0.7702924,-0.7724918,-0.7765389,-0.7795302,-0.7809379,-0.7827854,-0.78498495,-0.78595275,-0.7861287,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.78630465,-0.7861287,-0.7857768,-0.7844571,-0.78296137,-0.7818177,-0.7797062,-0.7759231,-0.7726679,-0.77117217,-0.77090824,-0.77082026,-0.7707323,-0.7707323,-0.7707323,-0.77055633,-0.77046835,-0.7702924,-0.77020437,-0.77046835,-0.77126014,-0.7729318,-0.77565914,-0.7791783,-0.78234553,-0.78428113,-0.785073,-0.7854249,-0.7853369,-0.78516096,-0.7853369,-0.7856888,-0.7857768,-0.784721,-0.78296137,-0.7817297,-0.78120184,-0.78111386,-0.7813778,-0.7817297,-0.7817297,-0.7816417,-0.7816417,-0.7816417,-0.78155375,-0.78155375,-0.7816417,-0.78155375,-0.7813778,-0.78120184,-0.78111386,-0.7809379,-0.780586,-0.7803221,-0.7801461,-0.7800581,-0.7800581,-0.7801461,-0.78041005,-0.780674,-0.78084993,-0.7809379,-0.7809379,-0.78076196,-0.78076196,-0.7812898,-0.7813778,-0.78111386,-0.78111386,-0.78111386,-0.78111386,-0.7817297,-0.7821696,-0.7816417,-0.78120184,-0.78120184,-0.7810259,-0.7810259,-0.78120184,-0.78111386,-0.7810259,-0.78120184,-0.78155375,-0.7816417,-0.7813778,-0.7809379,-0.78076196,-0.780586,-0.7803221,-0.7799701,-0.7800581,-0.78041005,-0.78084993,-0.78111386,-0.7812898,-0.7813778,-0.78146577,-0.7812898,-0.7813778,-0.78155375,-0.78146577,-0.7812898,-0.78120184,-0.78111386,-0.78084993,-0.78076196,-0.7810259,-0.7812898,-0.78155375,-0.7816417,-0.78146577,-0.78111386,-0.78084993,-0.7809379,-0.7809379,-0.78111386,-0.78234553,-0.78419316,-0.7853369,-0.78524894,-0.78489697,-0.7844571,-0.78419316,-0.7843691,-0.78489697,-0.78551286,-0.7854249,-0.7839292,-0.7795302,-0.7736356,-0.7701164,-0.76914865,-0.7694126,-0.7696765,-0.7700284,-0.77046835,-0.7702924,-0.7697645,-0.76958853,-0.7700284,-0.771788,-0.77557117,-0.7792663,-0.7810259,-0.78260946,-0.784809,-0.7860407,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7861287,-0.7861287,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.7862167,-0.7860407,-0.78489697,-0.78331333,-0.7821696,-0.7803221,-0.7768908,-0.7733717,-0.7714361,-0.7710842,-0.7710842,-0.7710842,-0.77117217,-0.77117217,-0.7709962,-0.7707323,-0.77046835,-0.7703804,-0.7703804,-0.7702924,-0.7706443,-0.7721399,-0.7747793,-0.7781225,-0.7817297,-0.78428113,-0.78498495,-0.7853369,-0.7854249,-0.7853369,-0.78551286,-0.7857768,-0.7857768,-0.78498495,-0.7837532,-0.78225756,-0.78155375,-0.7816417,-0.78190565,-0.7817297,-0.78155375,-0.78146577,-0.7813778,-0.7813778,-0.7813778,-0.78146577,-0.78146577,-0.7813778,-0.7812898,-0.78111386,-0.78076196,-0.780586,-0.780498,-0.78041005,-0.7803221,-0.7803221,-0.780498,-0.78076196,-0.7810259,-0.7810259,-0.78111386,-0.78120184,-0.7810259,-0.780674,-0.7809379,-0.7812898,-0.78120184,-0.7810259,-0.78111386,-0.7812898,-0.78190565,-0.78225756,-0.7816417,-0.78120184,-0.78120184,-0.7810259,-0.78111386,-0.7812898,-0.7812898,-0.78111386,-0.78111386,-0.78155375,-0.7817297,-0.7812898,-0.7809379,-0.78084993,-0.780674,-0.7802341,-0.7799701,-0.7800581,-0.78041005,-0.780674,-0.7810259,-0.78120184,-0.7812898,-0.7812898,-0.78120184,-0.7812898,-0.78155375,-0.78146577,-0.78120184,-0.7812898,-0.78120184,-0.78076196,-0.78076196,-0.7812898,-0.78146577,-0.78155375,-0.78146577,-0.7812898,-0.78111386,-0.7809379,-0.7809379,-0.78111386,-0.7821696,-0.78419316,-0.7853369,-0.785073,-0.78428113,-0.78419316,-0.7844571,-0.78454506,-0.78498495,-0.7853369,-0.7853369,-0.7839292,-0.7797062,-0.7736356,-0.76994044,-0.76950055,-0.7697645,-0.7702924,-0.7703804,-0.7703804,-0.77055633,-0.77020437,-0.7696765,-0.76950055,-0.7706443,-0.7741635,-0.7781225,-0.780586,-0.7824335,-0.78454506,-0.7858648,-0.7862167,-0.78630465,-0.78630465,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7861287,-0.7861287,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.78524894,-0.78366524,-0.78225756,-0.7809379,-0.77838653,-0.7748673,-0.77231586,-0.771788,-0.7715241,-0.77126014,-0.77126014,-0.77126014,-0.7710842,-0.7717,-0.77231586,-0.7714361,-0.7702924,-0.77020437,-0.7703804,-0.77055633,-0.7713481,-0.7733717,-0.77715474,-0.7818177,-0.78419316,-0.784809,-0.78516096,-0.7854249,-0.7854249,-0.7853369,-0.78551286,-0.7856888,-0.785073,-0.78357726,-0.7825215,-0.7821696,-0.7819936,-0.7817297,-0.78146577,-0.7812898,-0.7812898,-0.7812898,-0.7812898,-0.7812898,-0.78120184,-0.78146577,-0.78146577,-0.78111386,-0.78076196,-0.780674,-0.780674,-0.780674,-0.780586,-0.780586,-0.78076196,-0.78111386,-0.78120184,-0.78111386,-0.78120184,-0.7813778,-0.78111386,-0.780674,-0.78084993,-0.7812898,-0.7813778,-0.78120184,-0.7810259,-0.78120184,-0.7819936,-0.78225756,-0.7816417,-0.78111386,-0.78111386,-0.78120184,-0.78120184,-0.78120184,-0.7812898,-0.78120184,-0.78146577,-0.7818177,-0.78155375,-0.7810259,-0.7810259,-0.7810259,-0.78084993,-0.780498,-0.7802341,-0.7802341,-0.780498,-0.78076196,-0.78111386,-0.78120184,-0.78120184,-0.7812898,-0.7813778,-0.7813778,-0.78146577,-0.78146577,-0.7810259,-0.7812898,-0.7812898,-0.780674,-0.78076196,-0.78146577,-0.78155375,-0.78146577,-0.7813778,-0.7812898,-0.78111386,-0.78111386,-0.78146577,-0.7825215,-0.7843691,-0.78551286,-0.7853369,-0.7844571,-0.7841052,-0.78428113,-0.784809,-0.78524894,-0.7853369,-0.78498495,-0.7831373,-0.7785625,-0.7738116,-0.7710842,-0.7707323,-0.77090824,-0.7714361,-0.7722279,-0.77196395,-0.7709962,-0.7703804,-0.7700284,-0.7697645,-0.7696765,-0.7717,-0.776187,-0.7796182,-0.7817297,-0.7840172,-0.7857768,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.7861287,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7865686,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7862167,-0.7861287,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7857768,-0.7843691,-0.78260946,-0.78155375,-0.7799701,-0.77715474,-0.7745154,-0.7734597,-0.77240384,-0.7714361,-0.7715241,-0.77126014,-0.77126014,-0.77389956,-0.77504325,-0.77240384,-0.7703804,-0.7707323,-0.7706443,-0.7703804,-0.77020437,-0.77046835,-0.7721399,-0.77645093,-0.78146577,-0.7839292,-0.78463304,-0.78524894,-0.7853369,-0.785073,-0.785073,-0.7854249,-0.7853369,-0.7844571,-0.78304935,-0.78234553,-0.7820816,-0.78190565,-0.7816417,-0.78146577,-0.7813778,-0.7813778,-0.7813778,-0.7812898,-0.7812898,-0.78155375,-0.78146577,-0.78111386,-0.7809379,-0.78084993,-0.7809379,-0.7809379,-0.78076196,-0.78076196,-0.7809379,-0.7810259,-0.78111386,-0.78120184,-0.7813778,-0.7813778,-0.7810259,-0.78084993,-0.7810259,-0.78120184,-0.7813778,-0.7812898,-0.78120184,-0.7816417,-0.78234553,-0.7825215,-0.78190565,-0.78111386,-0.78111386,-0.78120184,-0.78120184,-0.78120184,-0.78111386,-0.7813778,-0.7817297,-0.7816417,-0.78120184,-0.7810259,-0.7810259,-0.7809379,-0.7809379,-0.78076196,-0.780498,-0.78041005,-0.780674,-0.7809379,-0.78111386,-0.7812898,-0.78146577,-0.78155375,-0.78146577,-0.78146577,-0.78155375,-0.7813778,-0.7809379,-0.7810259,-0.78120184,-0.78084993,-0.78084993,-0.7812898,-0.7813778,-0.7812898,-0.7813778,-0.78111386,-0.7809379,-0.78155375,-0.78296137,-0.78463304,-0.7856888,-0.78551286,-0.78489697,-0.78463304,-0.784721,-0.78498495,-0.78524894,-0.78551286,-0.784809,-0.7818177,-0.7765389,-0.7725798,-0.771788,-0.77196395,-0.7713481,-0.77082026,-0.77082026,-0.77117217,-0.7710842,-0.77055633,-0.7701164,-0.76994044,-0.76985246,-0.77020437,-0.7729318,-0.77750665,-0.780586,-0.78260946,-0.784809,-0.7860407,-0.78630465,-0.7862167,-0.78630465,-0.78630465,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7860407,-0.785073,-0.7834013,-0.7819936,-0.78084993,-0.77909034,-0.77680284,-0.7751312,-0.7737236,-0.7725798,-0.771788,-0.77126014,-0.7729318,-0.7758351,-0.77469134,-0.7717,-0.77082026,-0.77090824,-0.77055633,-0.77046835,-0.77046835,-0.7700284,-0.76994044,-0.7715241,-0.77645093,-0.78155375,-0.7841052,-0.784721,-0.78516096,-0.78524894,-0.785073,-0.78498495,-0.78516096,-0.7853369,-0.78419316,-0.7827854,-0.7821696,-0.7819936,-0.7818177,-0.7816417,-0.78155375,-0.78155375,-0.78146577,-0.7813778,-0.7813778,-0.7813778,-0.7813778,-0.7812898,-0.7812898,-0.78120184,-0.78120184,-0.78111386,-0.7809379,-0.7809379,-0.7809379,-0.7810259,-0.7812898,-0.78146577,-0.78146577,-0.7812898,-0.7809379,-0.7809379,-0.78111386,-0.7812898,-0.7813778,-0.7813778,-0.7817297,-0.78260946,-0.7834893,-0.7834013,-0.78225756,-0.78120184,-0.78111386,-0.7812898,-0.7813778,-0.7812898,-0.7813778,-0.7816417,-0.7817297,-0.7813778,-0.78120184,-0.7812898,-0.78111386,-0.7809379,-0.7809379,-0.78084993,-0.780674,-0.78076196,-0.7810259,-0.7810259,-0.78120184,-0.78146577,-0.7816417,-0.7816417,-0.7816417,-0.7817297,-0.78155375,-0.7813778,-0.78120184,-0.78111386,-0.7809379,-0.7810259,-0.78120184,-0.78120184,-0.78120184,-0.78111386,-0.78111386,-0.78111386,-0.7817297,-0.7831373,-0.784809,-0.7857768,-0.78560084,-0.78489697,-0.78454506,-0.78489697,-0.7853369,-0.7854249,-0.78524894,-0.78454506,-0.78111386,-0.77530724,-0.77082026,-0.7707323,-0.771876,-0.771876,-0.77090824,-0.7700284,-0.7696765,-0.7696765,-0.7696765,-0.76958853,-0.7696765,-0.7697645,-0.76985246,-0.77126014,-0.7749553,-0.77865046,-0.78120184,-0.7834893,-0.7854249,-0.7861287,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.78630465,-0.7857768,-0.7844571,-0.7827854,-0.7817297,-0.780498,-0.7788264,-0.7769788,-0.77521926,-0.7738116,-0.77240384,-0.7721399,-0.77389956,-0.7745154,-0.77231586,-0.77082026,-0.77082026,-0.7706443,-0.77046835,-0.77046835,-0.7703804,-0.77020437,-0.7700284,-0.7703804,-0.77284384,-0.7773307,-0.78190565,-0.7841052,-0.784721,-0.78516096,-0.7854249,-0.7853369,-0.78524894,-0.78560084,-0.7854249,-0.7843691,-0.78296137,-0.7820816,-0.7818177,-0.7816417,-0.78155375,-0.78155375,-0.78155375,-0.78146577,-0.7812898,-0.7812898,-0.7813778,-0.7813778,-0.78146577,-0.7813778,-0.7813778,-0.7812898,-0.78120184,-0.78111386,-0.7810259,-0.78120184,-0.78146577,-0.7813778,-0.78120184,-0.7810259,-0.7809379,-0.7810259,-0.7812898,-0.78146577,-0.7816417,-0.78190565,-0.7824335,-0.7834893,-0.7844571,-0.78419316,-0.7825215,-0.78120184,-0.78120184,-0.78146577,-0.7813778,-0.7812898,-0.78146577,-0.7816417,-0.78146577,-0.7812898,-0.7813778,-0.78146577,-0.7813778,-0.78120184,-0.78111386,-0.7810259,-0.7809379,-0.78111386,-0.7812898,-0.7812898,-0.7813778,-0.78146577,-0.78155375,-0.78155375,-0.7816417,-0.7817297,-0.7817297,-0.78155375,-0.78146577,-0.78120184,-0.78084993,-0.7809379,-0.78155375,-0.78146577,-0.7810259,-0.7809379,-0.7812898,-0.78225756,-0.7838412,-0.78524894,-0.7857768,-0.7856888,-0.78524894,-0.78454506,-0.78454506,-0.78524894,-0.78551286,-0.7853369,-0.78428113,-0.7803221,-0.7741635,-0.7700284,-0.7693246,-0.76994044,-0.7701164,-0.7702924,-0.7701164,-0.7696765,-0.7694126,-0.7693246,-0.7693246,-0.76950055,-0.7696765,-0.76950055,-0.7700284,-0.7730198,-0.7773307,-0.7799701,-0.7818177,-0.78419316,-0.7856888,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7864806,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.78560084,-0.7841052,-0.7828734,-0.7819936,-0.7809379,-0.77944225,-0.7776826,-0.7758351,-0.77389956,-0.7726679,-0.77240384,-0.771788,-0.7709962,-0.7707323,-0.7707323,-0.77055633,-0.77055633,-0.7703804,-0.7703804,-0.77055633,-0.7706443,-0.7707323,-0.77117217,-0.77310777,-0.7775946,-0.78225756,-0.78419316,-0.78463304,-0.78524894,-0.7856888,-0.78551286,-0.78516096,-0.78551286,-0.78551286,-0.78454506,-0.78296137,-0.7819936,-0.7816417,-0.78146577,-0.78146577,-0.78146577,-0.7813778,-0.7812898,-0.7812898,-0.7813778,-0.7813778,-0.7812898,-0.78120184,-0.7813778,-0.7813778,-0.7813778,-0.7812898,-0.78120184,-0.7813778,-0.78146577,-0.7812898,-0.78111386,-0.7810259,-0.78111386,-0.78120184,-0.7812898,-0.78146577,-0.78190565,-0.7824335,-0.7831373,-0.78428113,-0.78516096,-0.784721,-0.78296137,-0.78146577,-0.7813778,-0.7816417,-0.78146577,-0.78120184,-0.7812898,-0.7813778,-0.7812898,-0.7812898,-0.7812898,-0.78146577,-0.78146577,-0.7813778,-0.7812898,-0.78120184,-0.78120184,-0.7812898,-0.78146577,-0.78146577,-0.78146577,-0.78146577,-0.78146577,-0.78146577,-0.78155375,-0.7816417,-0.7816417,-0.7816417,-0.78155375,-0.7813778,-0.7809379,-0.78084993,-0.78190565,-0.78260946,-0.7820816,-0.78190565,-0.7827854,-0.78419316,-0.7854249,-0.7858648,-0.78551286,-0.78516096,-0.78489697,-0.784809,-0.78524894,-0.78551286,-0.78489697,-0.7831373,-0.7793543,-0.7740755,-0.77046835,-0.7696765,-0.76994044,-0.76985246,-0.7697645,-0.76958853,-0.76958853,-0.76958853,-0.7694126,-0.7693246,-0.7692366,-0.7694126,-0.7696765,-0.7701164,-0.77231586,-0.776187,-0.7792663,-0.780674,-0.7825215,-0.784809,-0.7858648,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7862167,-0.78551286,-0.7843691,-0.78331333,-0.7825215,-0.7816417,-0.7803221,-0.77865046,-0.7765389,-0.7741635,-0.77205193,-0.7709962,-0.77090824,-0.7709962,-0.7709962,-0.77082026,-0.77055633,-0.7703804,-0.77090824,-0.7722279,-0.7730198,-0.7722279,-0.7706443,-0.77046835,-0.77310777,-0.77821046,-0.78225756,-0.7841052,-0.784721,-0.7853369,-0.7854249,-0.78498495,-0.78524894,-0.7857768,-0.7857768,-0.78454506,-0.7828734,-0.7818177,-0.78146577,-0.7816417,-0.78155375,-0.7813778,-0.7812898,-0.7812898,-0.7813778,-0.7813778,-0.78120184,-0.78111386,-0.7812898,-0.7813778,-0.7813778,-0.7813778,-0.78146577,-0.78146577,-0.7812898,-0.78111386,-0.78111386,-0.78120184,-0.7813778,-0.78155375,-0.7813778,-0.78155375,-0.78225756,-0.7828734,-0.7837532,-0.785073,-0.7857768,-0.7854249,-0.7839292,-0.7820816,-0.78146577,-0.7816417,-0.78155375,-0.7812898,-0.7812898,-0.78120184,-0.78120184,-0.78120184,-0.78120184,-0.7813778,-0.78146577,-0.78146577,-0.7813778,-0.7812898,-0.7812898,-0.7813778,-0.78155375,-0.78155375,-0.78155375,-0.7813778,-0.78155375,-0.78155375,-0.78155375,-0.78155375,-0.78155375,-0.78155375,-0.78155375,-0.7816417,-0.7812898,-0.7810259,-0.7820816,-0.78366524,-0.78419316,-0.7843691,-0.78489697,-0.78524894,-0.7853369,-0.78524894,-0.784809,-0.78463304,-0.784809,-0.785073,-0.78524894,-0.784721,-0.7816417,-0.77680284,-0.77275586,-0.7706443,-0.7703804,-0.7707323,-0.7702924,-0.7697645,-0.7696765,-0.76958853,-0.76958853,-0.7696765,-0.7696765,-0.7697645,-0.7700284,-0.7706443,-0.77161205,-0.7734597,-0.77636296,-0.7789144,-0.7801461,-0.78120184,-0.78331333,-0.78551286,-0.7861287,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7862167,-0.78560084,-0.784721,-0.7838412,-0.78304935,-0.7819936,-0.780674,-0.7791783,-0.7773307,-0.7747793,-0.77196395,-0.77082026,-0.77090824,-0.7709962,-0.7707323,-0.77046835,-0.7706443,-0.7725798,-0.7759231,-0.7772427,-0.7741635,-0.7707323,-0.76994044,-0.77090824,-0.77310777,-0.77715474,-0.78146577,-0.7839292,-0.784721,-0.78524894,-0.7854249,-0.7854249,-0.7856888,-0.78595275,-0.7857768,-0.78463304,-0.78296137,-0.7817297,-0.78155375,-0.78155375,-0.78146577,-0.78146577,-0.7813778,-0.7813778,-0.7813778,-0.78120184,-0.78120184,-0.7812898,-0.7812898,-0.7812898,-0.7813778,-0.7813778,-0.7812898,-0.78120184,-0.7810259,-0.7810259,-0.78111386,-0.78155375,-0.7817297,-0.78155375,-0.7817297,-0.7827854,-0.7839292,-0.78489697,-0.7858648,-0.7862167,-0.78595275,-0.784809,-0.7828734,-0.7817297,-0.78155375,-0.7813778,-0.7812898,-0.7813778,-0.78120184,-0.78111386,-0.7812898,-0.7812898,-0.7812898,-0.78146577,-0.78146577,-0.7813778,-0.7813778,-0.7813778,-0.78155375,-0.7816417,-0.7817297,-0.7817297,-0.7816417,-0.7816417,-0.7816417,-0.78155375,-0.78146577,-0.78155375,-0.78146577,-0.78146577,-0.78155375,-0.78155375,-0.7817297,-0.7831373,-0.78489697,-0.7858648,-0.7860407,-0.78595275,-0.7854249,-0.78454506,-0.7839292,-0.78419316,-0.78498495,-0.7854249,-0.785073,-0.7840172,-0.78076196,-0.77521926,-0.77090824,-0.76958853,-0.7697645,-0.7700284,-0.7702924,-0.77020437,-0.76958853,-0.7693246,-0.7694126,-0.76958853,-0.7700284,-0.77082026,-0.771788,-0.77310777,-0.7744274,-0.77565914,-0.7774187,-0.7791783,-0.7801461,-0.78084993,-0.78260946,-0.784721,-0.78595275,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7862167,-0.7858648,-0.78524894,-0.7844571,-0.7834013,-0.7820816,-0.7810259,-0.7799701,-0.7781225,-0.7751312,-0.77240384,-0.7710842,-0.77082026,-0.7706443,-0.77055633,-0.77082026,-0.7733717,-0.77750665,-0.7780345,-0.7736356,-0.77046835,-0.7700284,-0.7700284,-0.77020437,-0.7721399,-0.776187,-0.780674,-0.78357726,-0.78489697,-0.78551286,-0.78551286,-0.7854249,-0.78551286,-0.7857768,-0.7856888,-0.784809,-0.7834013,-0.7821696,-0.78155375,-0.78146577,-0.78155375,-0.78146577,-0.7813778,-0.7812898,-0.78120184,-0.78120184,-0.7812898,-0.7813778,-0.78120184,-0.7812898,-0.7812898,-0.7813778,-0.7813778,-0.78111386,-0.7810259,-0.78120184,-0.7816417,-0.7817297,-0.78146577,-0.78190565,-0.7834893,-0.785073,-0.78595275,-0.7862167,-0.78630465,-0.7860407,-0.785073,-0.7834893,-0.7821696,-0.78146577,-0.78111386,-0.78120184,-0.7813778,-0.7812898,-0.78120184,-0.7812898,-0.7812898,-0.7812898,-0.7813778,-0.78146577,-0.7813778,-0.78120184,-0.7813778,-0.7817297,-0.78190565,-0.7818177,-0.7817297,-0.7816417,-0.7816417,-0.7816417,-0.78155375,-0.78146577,-0.7813778,-0.7812898,-0.7812898,-0.7816417,-0.7825215,-0.7838412,-0.78516096,-0.7860407,-0.7861287,-0.7858648,-0.78551286,-0.785073,-0.7844571,-0.78419316,-0.784809,-0.7854249,-0.7853369,-0.78331333,-0.77873844,-0.7734597,-0.7702924,-0.7694126,-0.76958853,-0.76958853,-0.76950055,-0.76958853,-0.7696765,-0.7696765,-0.76958853,-0.76958853,-0.77046835,-0.77231586,-0.77425146,-0.7757471,-0.7769788,-0.77821046,-0.77900237,-0.7800581,-0.78120184,-0.7818177,-0.78304935,-0.78498495,-0.7860407,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7862167,-0.7857768,-0.78498495,-0.78357726,-0.7821696,-0.78120184,-0.780498,-0.7789144,-0.77557117,-0.7722279,-0.77090824,-0.77082026,-0.77055633,-0.77055633,-0.7724918,-0.77504325,-0.7744274,-0.77161205,-0.7703804,-0.7701164,-0.76985246,-0.7697645,-0.7700284,-0.7714361,-0.77469134,-0.77944225,-0.7834013,-0.785073,-0.78551286,-0.78551286,-0.785073,-0.785073,-0.78560084,-0.78595275,-0.78551286,-0.78428113,-0.7828734,-0.78190565,-0.7817297,-0.7816417,-0.78146577,-0.7812898,-0.78120184,-0.78120184,-0.7812898,-0.7812898,-0.78120184,-0.78120184,-0.7813778,-0.78155375,-0.78155375,-0.7812898,-0.78120184,-0.7813778,-0.7816417,-0.7817297,-0.7816417,-0.78225756,-0.7838412,-0.7854249,-0.7861287,-0.7862167,-0.7862167,-0.78595275,-0.78489697,-0.78357726,-0.78234553,-0.78146577,-0.7812898,-0.7813778,-0.7813778,-0.7812898,-0.7812898,-0.7813778,-0.7812898,-0.7812898,-0.7813778,-0.7813778,-0.78120184,-0.78111386,-0.7812898,-0.7817297,-0.7818177,-0.7817297,-0.7816417,-0.78146577,-0.78146577,-0.78155375,-0.78146577,-0.7812898,-0.7813778,-0.78155375,-0.7819936,-0.7831373,-0.78463304,-0.7856888,-0.7860407,-0.78595275,-0.78560084,-0.785073,-0.78489697,-0.78489697,-0.785073,-0.7853369,-0.7853369,-0.78489697,-0.78260946,-0.7775946,-0.77240384,-0.76958853,-0.76950055,-0.76994044,-0.76985246,-0.7692366,-0.7693246,-0.76958853,-0.76958853,-0.76958853,-0.7700284,-0.7714361,-0.77398753,-0.7765389,-0.7781225,-0.77909034,-0.7800581,-0.78111386,-0.78190565,-0.78269744,-0.78366524,-0.78454506,-0.7854249,-0.7861287,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.78630465,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.7860407,-0.7853369,-0.7838412,-0.78225756,-0.78146577,-0.780586,-0.77821046,-0.77460337,-0.7717,-0.77082026,-0.7703804,-0.7702924,-0.77126014,-0.77196395,-0.7714361,-0.77090824,-0.7706443,-0.77020437,-0.76994044,-0.76994044,-0.76994044,-0.7701164,-0.7707323,-0.7732837,-0.7777706,-0.7824335,-0.78489697,-0.78560084,-0.78516096,-0.78463304,-0.78498495,-0.7856888,-0.78595275,-0.7857768,-0.785073,-0.78419316,-0.7832253,-0.78225756,-0.78155375,-0.7813778,-0.7813778,-0.78120184,-0.78120184,-0.7812898,-0.78120184,-0.78120184,-0.7812898,-0.7813778,-0.7813778,-0.78120184,-0.7812898,-0.78155375,-0.7817297,-0.78190565,-0.7821696,-0.78296137,-0.7844571,-0.7856888,-0.7861287,-0.7861287,-0.7861287,-0.7858648,-0.784809,-0.78331333,-0.7821696,-0.78155375,-0.78146577,-0.78146577,-0.7813778,-0.7812898,-0.7813778,-0.78146577,-0.7813778,-0.7812898,-0.7812898,-0.78120184,-0.78120184,-0.7812898,-0.78146577,-0.7816417,-0.7816417,-0.78155375,-0.78155375,-0.7813778,-0.7812898,-0.78146577,-0.7817297,-0.7818177,-0.7820816,-0.78304935,-0.78428113,-0.7853369,-0.7858648,-0.78595275,-0.7856888,-0.78524894,-0.784809,-0.7844571,-0.78463304,-0.785073,-0.7854249,-0.7854249,-0.7844571,-0.7812898,-0.77601105,-0.77161205,-0.7696765,-0.7692366,-0.7697645,-0.77055633,-0.7702924,-0.76950055,-0.76950055,-0.76958853,-0.76950055,-0.7702924,-0.77231586,-0.7749553,-0.7775946,-0.7795302,-0.78076196,-0.7818177,-0.7828734,-0.7838412,-0.78454506,-0.78516096,-0.78560084,-0.78595275,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.7862167,-0.7861287,-0.7854249,-0.78419316,-0.78269744,-0.78155375,-0.7802341,-0.77706677,-0.7729318,-0.77082026,-0.7702924,-0.77020437,-0.7706443,-0.77090824,-0.77090824,-0.77090824,-0.7707323,-0.7703804,-0.7701164,-0.7700284,-0.7701164,-0.7700284,-0.76994044,-0.7702924,-0.771876,-0.776187,-0.78190565,-0.78489697,-0.78524894,-0.78489697,-0.784721,-0.78498495,-0.78551286,-0.7857768,-0.7858648,-0.7857768,-0.78516096,-0.7837532,-0.7824335,-0.7819936,-0.7817297,-0.78155375,-0.7813778,-0.7813778,-0.7813778,-0.7812898,-0.7812898,-0.7813778,-0.7813778,-0.78120184,-0.78146577,-0.7817297,-0.7819936,-0.7821696,-0.78269744,-0.7837532,-0.78516096,-0.78595275,-0.7862167,-0.78630465,-0.7861287,-0.7860407,-0.7854249,-0.7841052,-0.7828734,-0.7820816,-0.7817297,-0.78155375,-0.7813778,-0.7812898,-0.7813778,-0.78155375,-0.78155375,-0.7813778,-0.7812898,-0.7813778,-0.78155375,-0.78155375,-0.7816417,-0.7816417,-0.78155375,-0.78146577,-0.78146577,-0.78146577,-0.78155375,-0.78190565,-0.78269744,-0.7834013,-0.7841052,-0.785073,-0.78595275,-0.78595275,-0.7856888,-0.7853369,-0.78498495,-0.784809,-0.78454506,-0.784721,-0.78516096,-0.78524894,-0.785073,-0.7840172,-0.7801461,-0.77425146,-0.7702924,-0.76950055,-0.7694126,-0.7694126,-0.7697645,-0.7700284,-0.7700284,-0.76985246,-0.7696765,-0.76958853,-0.7702924,-0.7726679,-0.7759231,-0.77838653,-0.77979416,-0.7813778,-0.78304935,-0.7843691,-0.78516096,-0.7856888,-0.7860407,-0.7861287,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.7856888,-0.78428113,-0.7825215,-0.7812898,-0.7789144,-0.7745154,-0.77126014,-0.7703804,-0.7702924,-0.77055633,-0.77090824,-0.7707323,-0.77090824,-0.7709962,-0.7707323,-0.7706443,-0.7703804,-0.7701164,-0.76994044,-0.76994044,-0.7700284,-0.76994044,-0.77117217,-0.776187,-0.7817297,-0.784721,-0.78524894,-0.78498495,-0.78454506,-0.78463304,-0.78524894,-0.78560084,-0.7858648,-0.78595275,-0.7854249,-0.78428113,-0.7832253,-0.7824335,-0.7820816,-0.7819936,-0.7818177,-0.7817297,-0.7816417,-0.7817297,-0.7818177,-0.7817297,-0.78155375,-0.7818177,-0.78225756,-0.7824335,-0.7827854,-0.78366524,-0.78489697,-0.7857768,-0.7860407,-0.7861287,-0.7861287,-0.7860407,-0.7860407,-0.78595275,-0.7853369,-0.78419316,-0.78296137,-0.78225756,-0.78190565,-0.7816417,-0.78146577,-0.78146577,-0.7817297,-0.78190565,-0.7818177,-0.7816417,-0.7818177,-0.7821696,-0.7819936,-0.7817297,-0.7816417,-0.7816417,-0.7817297,-0.7820816,-0.7824335,-0.78260946,-0.78304935,-0.7840172,-0.785073,-0.7857768,-0.7860407,-0.7858648,-0.7854249,-0.78498495,-0.78454506,-0.78454506,-0.784721,-0.78489697,-0.78524894,-0.7854249,-0.78498495,-0.7834013,-0.77909034,-0.77354765,-0.76985246,-0.7689727,-0.76914865,-0.76950055,-0.76994044,-0.76994044,-0.7696765,-0.7696765,-0.7697645,-0.76950055,-0.77020437,-0.7730198,-0.776187,-0.7785625,-0.78041005,-0.78190565,-0.7837532,-0.78516096,-0.7858648,-0.7860407,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7862167,-0.7862167,-0.7863926,-0.78630465,-0.7862167,-0.78560084,-0.78366524,-0.7817297,-0.7797062,-0.7758351,-0.77205193,-0.7706443,-0.77055633,-0.7706443,-0.77055633,-0.77055633,-0.7710842,-0.7714361,-0.77161205,-0.771788,-0.77090824,-0.7700284,-0.7700284,-0.7701164,-0.7701164,-0.7700284,-0.76985246,-0.7713481,-0.7758351,-0.7812898,-0.7843691,-0.78516096,-0.78498495,-0.78454506,-0.78463304,-0.78516096,-0.78551286,-0.7858648,-0.7860407,-0.7857768,-0.785073,-0.7841052,-0.7832253,-0.7828734,-0.78260946,-0.7821696,-0.7819936,-0.7820816,-0.78225756,-0.7821696,-0.7820816,-0.78234553,-0.78269744,-0.78304935,-0.7838412,-0.78498495,-0.7857768,-0.7858648,-0.7856888,-0.78551286,-0.7854249,-0.7853369,-0.7854249,-0.78551286,-0.78551286,-0.785073,-0.78419316,-0.7832253,-0.7825215,-0.7821696,-0.7819936,-0.7819936,-0.7819936,-0.78225756,-0.78234553,-0.7821696,-0.78234553,-0.78260946,-0.78234553,-0.7821696,-0.7821696,-0.78234553,-0.7827854,-0.78331333,-0.7834893,-0.7838412,-0.78454506,-0.7853369,-0.7857768,-0.7857768,-0.78560084,-0.78516096,-0.784721,-0.7843691,-0.7841052,-0.7844571,-0.78498495,-0.78516096,-0.78524894,-0.78489697,-0.78296137,-0.7785625,-0.77319574,-0.7701164,-0.7690607,-0.7689727,-0.7690607,-0.76950055,-0.76994044,-0.7701164,-0.76994044,-0.76985246,-0.7696765,-0.7700284,-0.7724918,-0.776187,-0.77873844,-0.780586,-0.7825215,-0.7843691,-0.78560084,-0.7861287,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7862167,-0.7861287,-0.7861287,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.78630465,-0.7861287,-0.78489697,-0.7824335,-0.7800581,-0.7769788,-0.77319574,-0.7709962,-0.7706443,-0.7707323,-0.77046835,-0.77055633,-0.7710842,-0.77117217,-0.771876,-0.77240384,-0.7709962,-0.7701164,-0.7702924,-0.7702924,-0.7701164,-0.7703804,-0.77055633,-0.77055633,-0.771876,-0.77565914,-0.780586,-0.7837532,-0.78498495,-0.78516096,-0.78489697,-0.784809,-0.785073,-0.7853369,-0.7854249,-0.7854249,-0.7854249,-0.7853369,-0.78498495,-0.78454506,-0.78419316,-0.7834893,-0.7827854,-0.78260946,-0.78260946,-0.78269744,-0.7828734,-0.78304935,-0.7834893,-0.78419316,-0.785073,-0.7854249,-0.78524894,-0.78489697,-0.78454506,-0.7840172,-0.7834013,-0.78296137,-0.7832253,-0.7838412,-0.78419316,-0.78463304,-0.78489697,-0.78454506,-0.7837532,-0.7832253,-0.7828734,-0.78260946,-0.78260946,-0.78269744,-0.7827854,-0.7827854,-0.7832253,-0.7834013,-0.78304935,-0.78304935,-0.7832253,-0.78357726,-0.78419316,-0.78454506,-0.784721,-0.78516096,-0.78551286,-0.7856888,-0.7853369,-0.78489697,-0.784721,-0.7844571,-0.78428113,-0.78428113,-0.78463304,-0.78498495,-0.78516096,-0.78498495,-0.78428113,-0.7816417,-0.77680284,-0.7722279,-0.77020437,-0.7694126,-0.7690607,-0.7690607,-0.76914865,-0.7693246,-0.76958853,-0.76985246,-0.7700284,-0.7697645,-0.7700284,-0.77231586,-0.7759231,-0.7785625,-0.7802341,-0.78234553,-0.78463304,-0.7857768,-0.7861287,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7862167,-0.78595275,-0.7860407,-0.7861287,-0.7862167,-0.78630465,-0.7863926,-0.78630465,-0.7862167,-0.78560084,-0.78331333,-0.78076196,-0.77829856,-0.7745154,-0.7714361,-0.7707323,-0.77082026,-0.77055633,-0.7707323,-0.77090824,-0.7707323,-0.77126014,-0.7717,-0.7707323,-0.7702924,-0.77055633,-0.7703804,-0.7703804,-0.7706443,-0.77082026,-0.7707323,-0.7709962,-0.7722279,-0.77504325,-0.7788264,-0.7821696,-0.78419316,-0.785073,-0.78524894,-0.785073,-0.785073,-0.78498495,-0.784809,-0.78489697,-0.78516096,-0.78551286,-0.7857768,-0.78560084,-0.78516096,-0.78463304,-0.78419316,-0.7838412,-0.7838412,-0.7841052,-0.7843691,-0.784721,-0.7853369,-0.7854249,-0.78498495,-0.78419316,-0.7834893,-0.7828734,-0.7818177,-0.77988213,-0.77900237,-0.7801461,-0.78146577,-0.78155375,-0.7819936,-0.78304935,-0.7840172,-0.7844571,-0.7843691,-0.7841052,-0.78366524,-0.7834893,-0.7834893,-0.7834893,-0.78366524,-0.78428113,-0.78463304,-0.7843691,-0.78428113,-0.78454506,-0.78489697,-0.785073,-0.78524894,-0.7853369,-0.78516096,-0.785073,-0.78489697,-0.78463304,-0.78428113,-0.78428113,-0.7843691,-0.78454506,-0.78489697,-0.78516096,-0.785073,-0.78454506,-0.7828734,-0.7792663,-0.7745154,-0.7706443,-0.7690607,-0.7689727,-0.7689727,-0.7689727,-0.7690607,-0.7689727,-0.7692366,-0.76958853,-0.7697645,-0.7697645,-0.7697645,-0.7715241,-0.7753952,-0.7785625,-0.7801461,-0.7819936,-0.78428113,-0.7857768,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.78630465,-0.7863926,-0.7864806,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7861287,-0.7861287,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.78595275,-0.78428113,-0.7818177,-0.7795302,-0.776187,-0.7726679,-0.7709962,-0.7707323,-0.7706443,-0.7707323,-0.77082026,-0.77046835,-0.77055633,-0.7706443,-0.7703804,-0.77046835,-0.77046835,-0.77046835,-0.7706443,-0.77055633,-0.77055633,-0.77082026,-0.77082026,-0.7707323,-0.7709962,-0.77240384,-0.7754832,-0.7796182,-0.78304935,-0.784809,-0.7853369,-0.7854249,-0.78516096,-0.78463304,-0.7844571,-0.78454506,-0.78498495,-0.7856888,-0.7858648,-0.7857768,-0.7856888,-0.78560084,-0.7853369,-0.7854249,-0.78551286,-0.7854249,-0.7853369,-0.7853369,-0.784809,-0.7839292,-0.7828734,-0.7819936,-0.78155375,-0.78041005,-0.7780345,-0.77671486,-0.7780345,-0.77944225,-0.7791783,-0.7789144,-0.7797062,-0.78146577,-0.78304935,-0.7838412,-0.78419316,-0.7843691,-0.78428113,-0.78419316,-0.78419316,-0.7843691,-0.784721,-0.78489697,-0.784809,-0.784721,-0.784721,-0.784721,-0.78463304,-0.784721,-0.784721,-0.7844571,-0.7843691,-0.78428113,-0.78419316,-0.78428113,-0.78454506,-0.78489697,-0.785073,-0.785073,-0.784721,-0.78331333,-0.780498,-0.7765389,-0.7724918,-0.76994044,-0.7688847,-0.76879674,-0.76879674,-0.76870877,-0.76879674,-0.7690607,-0.7689727,-0.7689727,-0.7694126,-0.76985246,-0.7697645,-0.77082026,-0.7744274,-0.7780345,-0.7800581,-0.7818177,-0.7841052,-0.7856888,-0.7862167,-0.78630465,-0.78630465,-0.7862167,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.7860407,-0.785073,-0.78296137,-0.7809379,-0.77865046,-0.7753952,-0.7722279,-0.7706443,-0.77055633,-0.77082026,-0.77055633,-0.77020437,-0.7701164,-0.7701164,-0.7702924,-0.77055633,-0.7706443,-0.77055633,-0.77055633,-0.7703804,-0.77046835,-0.77090824,-0.77082026,-0.7703804,-0.77020437,-0.77020437,-0.77090824,-0.77319574,-0.7769788,-0.780674,-0.7834893,-0.78498495,-0.7853369,-0.785073,-0.78454506,-0.78428113,-0.7844571,-0.78498495,-0.7854249,-0.78551286,-0.78551286,-0.78551286,-0.78551286,-0.78560084,-0.78560084,-0.78516096,-0.784809,-0.7843691,-0.78357726,-0.78269744,-0.7819936,-0.7817297,-0.7813778,-0.780498,-0.77988213,-0.7795302,-0.7788264,-0.77865046,-0.7788264,-0.7789144,-0.77944225,-0.78041005,-0.7816417,-0.78269744,-0.78357726,-0.78428113,-0.7844571,-0.7844571,-0.7843691,-0.78419316,-0.7841052,-0.7841052,-0.7839292,-0.78366524,-0.7834893,-0.7832253,-0.7832253,-0.7834013,-0.78366524,-0.7839292,-0.7840172,-0.7841052,-0.7844571,-0.784721,-0.78498495,-0.78516096,-0.78489697,-0.7838412,-0.7813778,-0.7773307,-0.7733717,-0.7707323,-0.7694126,-0.7688847,-0.76879674,-0.7689727,-0.7689727,-0.76879674,-0.7686208,-0.7688847,-0.7690607,-0.7689727,-0.7693246,-0.7697645,-0.7700284,-0.7725798,-0.77715474,-0.7797062,-0.7810259,-0.7834893,-0.78551286,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7865686,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7856888,-0.7840172,-0.78190565,-0.7802341,-0.77829856,-0.7753952,-0.77275586,-0.7714361,-0.7710842,-0.7707323,-0.77082026,-0.7713481,-0.7721399,-0.7729318,-0.7732837,-0.77319574,-0.77284384,-0.7722279,-0.77117217,-0.7706443,-0.77082026,-0.7707323,-0.7706443,-0.7706443,-0.7703804,-0.7700284,-0.7702924,-0.7715241,-0.7740755,-0.7777706,-0.7812898,-0.7834893,-0.784721,-0.78498495,-0.78489697,-0.784721,-0.78463304,-0.784721,-0.78489697,-0.78498495,-0.78498495,-0.785073,-0.785073,-0.78489697,-0.78454506,-0.7841052,-0.78366524,-0.7831373,-0.78269744,-0.7824335,-0.7824335,-0.7819936,-0.7812898,-0.7816417,-0.7817297,-0.7802341,-0.7789144,-0.7789144,-0.77988213,-0.78076196,-0.7812898,-0.78190565,-0.7824335,-0.78304935,-0.7839292,-0.78428113,-0.78428113,-0.7841052,-0.7837532,-0.78357726,-0.78357726,-0.7832253,-0.7828734,-0.78269744,-0.78260946,-0.78269744,-0.78304935,-0.78357726,-0.7841052,-0.7844571,-0.784721,-0.78498495,-0.785073,-0.784809,-0.7838412,-0.78155375,-0.7780345,-0.7740755,-0.7709962,-0.76950055,-0.76914865,-0.7689727,-0.7688847,-0.7688847,-0.7689727,-0.7690607,-0.7689727,-0.76879674,-0.76870877,-0.7688847,-0.7690607,-0.7693246,-0.76958853,-0.7710842,-0.7747793,-0.77865046,-0.780498,-0.7824335,-0.78498495,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7861287,-0.7861287,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7862167,-0.7860407,-0.78498495,-0.7828734,-0.78120184,-0.7803221,-0.77900237,-0.7772427,-0.7753952,-0.7738116,-0.7734597,-0.77433944,-0.77557117,-0.77671486,-0.7774187,-0.7775946,-0.7772427,-0.7769788,-0.776187,-0.7744274,-0.77319574,-0.7725798,-0.7715241,-0.7706443,-0.77055633,-0.7703804,-0.7701164,-0.7701164,-0.7702924,-0.7706443,-0.77205193,-0.7747793,-0.7781225,-0.7812898,-0.7834893,-0.784721,-0.785073,-0.78489697,-0.784809,-0.784809,-0.784721,-0.784721,-0.784809,-0.784721,-0.78454506,-0.7844571,-0.7841052,-0.7838412,-0.78357726,-0.78331333,-0.78304935,-0.7827854,-0.78234553,-0.7818177,-0.7816417,-0.78146577,-0.78041005,-0.77944225,-0.7795302,-0.7802341,-0.7809379,-0.78155375,-0.7819936,-0.7819936,-0.78234553,-0.7834893,-0.7838412,-0.78357726,-0.78331333,-0.78304935,-0.7832253,-0.7834893,-0.7832253,-0.78296137,-0.78304935,-0.78331333,-0.78366524,-0.7841052,-0.78454506,-0.784809,-0.78489697,-0.78489697,-0.78463304,-0.7834893,-0.7812898,-0.7781225,-0.77460337,-0.77161205,-0.7697645,-0.76914865,-0.76914865,-0.7694126,-0.7693246,-0.7689727,-0.7688847,-0.7689727,-0.7689727,-0.7689727,-0.7688847,-0.76879674,-0.76870877,-0.7690607,-0.7694126,-0.76985246,-0.7724918,-0.7769788,-0.7796182,-0.7812898,-0.7837532,-0.7857768,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.7862167,-0.7860407,-0.7861287,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7862167,-0.7858648,-0.78463304,-0.78269744,-0.78120184,-0.7803221,-0.77979416,-0.7791783,-0.77821046,-0.7776826,-0.77838653,-0.7793543,-0.7799701,-0.7802341,-0.7802341,-0.7801461,-0.7803221,-0.77988213,-0.77873844,-0.77785856,-0.7766269,-0.7745154,-0.7725798,-0.7715241,-0.7707323,-0.7701164,-0.77020437,-0.77055633,-0.77046835,-0.7701164,-0.77055633,-0.7721399,-0.7747793,-0.7781225,-0.78155375,-0.7837532,-0.784721,-0.78489697,-0.78498495,-0.78498495,-0.78489697,-0.784809,-0.784721,-0.78454506,-0.78454506,-0.78454506,-0.7843691,-0.78419316,-0.7837532,-0.7834013,-0.7832253,-0.78304935,-0.78269744,-0.7821696,-0.7819936,-0.7817297,-0.7813778,-0.7812898,-0.7817297,-0.7821696,-0.7824335,-0.7825215,-0.7825215,-0.7827854,-0.7834893,-0.7837532,-0.7834013,-0.78331333,-0.7834013,-0.78357726,-0.7839292,-0.7840172,-0.7839292,-0.7841052,-0.7844571,-0.784809,-0.78498495,-0.785073,-0.78463304,-0.7839292,-0.78304935,-0.78111386,-0.77785856,-0.77433944,-0.7717,-0.77020437,-0.76950055,-0.7692366,-0.76914865,-0.7693246,-0.7697645,-0.7697645,-0.7692366,-0.7688847,-0.7689727,-0.7690607,-0.7688847,-0.7689727,-0.7688847,-0.76879674,-0.7689727,-0.7693246,-0.7706443,-0.77433944,-0.7785625,-0.780498,-0.78225756,-0.784721,-0.7861287,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.7860407,-0.7862167,-0.7862167,-0.7861287,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7860407,-0.78489697,-0.7831373,-0.78155375,-0.78111386,-0.78084993,-0.78041005,-0.7802341,-0.78084993,-0.7817297,-0.7824335,-0.7828734,-0.78304935,-0.7831373,-0.78331333,-0.7827854,-0.7817297,-0.78076196,-0.7795302,-0.77821046,-0.7769788,-0.77504325,-0.77284384,-0.77117217,-0.77046835,-0.77046835,-0.77055633,-0.7701164,-0.76985246,-0.7701164,-0.7707323,-0.77231586,-0.7747793,-0.7775946,-0.780498,-0.7825215,-0.78357726,-0.7841052,-0.7844571,-0.784721,-0.784721,-0.78454506,-0.78454506,-0.78463304,-0.78463304,-0.7844571,-0.7841052,-0.7840172,-0.7839292,-0.7840172,-0.7840172,-0.7837532,-0.78357726,-0.78357726,-0.78357726,-0.7834893,-0.78357726,-0.7839292,-0.7839292,-0.7837532,-0.7837532,-0.7838412,-0.7840172,-0.78419316,-0.7840172,-0.7841052,-0.7843691,-0.7844571,-0.78463304,-0.784809,-0.784809,-0.784809,-0.78463304,-0.7843691,-0.7839292,-0.7832253,-0.7818177,-0.77944225,-0.7765389,-0.7736356,-0.7713481,-0.7700284,-0.76950055,-0.7693246,-0.7694126,-0.7694126,-0.7692366,-0.7692366,-0.7694126,-0.7694126,-0.76950055,-0.7693246,-0.7690607,-0.7690607,-0.7689727,-0.7688847,-0.7689727,-0.7689727,-0.7689727,-0.7693246,-0.77196395,-0.7765389,-0.77979416,-0.7809379,-0.78296137,-0.78524894,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7865686,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7862167,-0.78560084,-0.78454506,-0.7838412,-0.7834013,-0.78296137,-0.78296137,-0.78366524,-0.7844571,-0.78516096,-0.78551286,-0.78560084,-0.78560084,-0.78560084,-0.785073,-0.7843691,-0.78331333,-0.78190565,-0.7810259,-0.7802341,-0.7784745,-0.776275,-0.77433944,-0.7724918,-0.77090824,-0.7703804,-0.7703804,-0.7701164,-0.76994044,-0.7701164,-0.7702924,-0.77046835,-0.7715241,-0.7736356,-0.7759231,-0.7775946,-0.7788264,-0.7803221,-0.7812898,-0.7817297,-0.7820816,-0.78234553,-0.78234553,-0.78225756,-0.7820816,-0.7820816,-0.7821696,-0.78225756,-0.7824335,-0.7827854,-0.78304935,-0.78304935,-0.78296137,-0.7831373,-0.7834013,-0.78357726,-0.7838412,-0.7840172,-0.78419316,-0.78428113,-0.78428113,-0.7843691,-0.7844571,-0.7843691,-0.7843691,-0.7843691,-0.78428113,-0.7840172,-0.7838412,-0.78366524,-0.78296137,-0.7816417,-0.7801461,-0.77838653,-0.7765389,-0.77469134,-0.7725798,-0.77046835,-0.76950055,-0.7694126,-0.7694126,-0.7693246,-0.7694126,-0.7694126,-0.7694126,-0.7692366,-0.7692366,-0.7690607,-0.7689727,-0.7694126,-0.76950055,-0.76914865,-0.7690607,-0.76914865,-0.7690607,-0.76914865,-0.7692366,-0.7690607,-0.7702924,-0.7744274,-0.77829856,-0.7799701,-0.78120184,-0.78366524,-0.78560084,-0.7862167,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7862167,-0.7861287,-0.78595275,-0.7857768,-0.7857768,-0.78595275,-0.7860407,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.7860407,-0.7857768,-0.78498495,-0.78419316,-0.78304935,-0.7813778,-0.7796182,-0.77821046,-0.776187,-0.7732837,-0.7709962,-0.7703804,-0.7703804,-0.77020437,-0.7701164,-0.76985246,-0.7697645,-0.76994044,-0.7702924,-0.7707323,-0.7709962,-0.77161205,-0.77275586,-0.7737236,-0.77425146,-0.77469134,-0.7749553,-0.7748673,-0.7745154,-0.77425146,-0.7744274,-0.77469134,-0.77469134,-0.7748673,-0.77565914,-0.77645093,-0.77645093,-0.776275,-0.77680284,-0.7772427,-0.7775946,-0.7781225,-0.77900237,-0.7796182,-0.7800581,-0.780498,-0.78076196,-0.78076196,-0.78076196,-0.7810259,-0.7809379,-0.7803221,-0.7793543,-0.7789144,-0.7788264,-0.77750665,-0.7748673,-0.7730198,-0.771876,-0.77082026,-0.77020437,-0.7696765,-0.7694126,-0.7694126,-0.7694126,-0.7694126,-0.7692366,-0.7690607,-0.7693246,-0.76950055,-0.76958853,-0.76950055,-0.76914865,-0.7689727,-0.76914865,-0.76914865,-0.7690607,-0.76914865,-0.76914865,-0.7690607,-0.7689727,-0.7692366,-0.7701164,-0.77319574,-0.7773307,-0.7795302,-0.7802341,-0.78225756,-0.784721,-0.7860407,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7860407,-0.78551286,-0.7844571,-0.7827854,-0.78111386,-0.7793543,-0.7766269,-0.77354765,-0.77117217,-0.77020437,-0.7702924,-0.7701164,-0.7696765,-0.7697645,-0.76994044,-0.7697645,-0.7697645,-0.7697645,-0.7696765,-0.76985246,-0.7700284,-0.77020437,-0.77020437,-0.7700284,-0.76985246,-0.7696765,-0.7697645,-0.76985246,-0.7697645,-0.7696765,-0.7703804,-0.77117217,-0.77055633,-0.76958853,-0.76958853,-0.76985246,-0.7697645,-0.7697645,-0.77020437,-0.7709962,-0.7714361,-0.77161205,-0.7721399,-0.7725798,-0.77240384,-0.7721399,-0.7726679,-0.77310777,-0.7725798,-0.77161205,-0.7721399,-0.7734597,-0.7725798,-0.7701164,-0.7696765,-0.7700284,-0.76994044,-0.7697645,-0.7696765,-0.7696765,-0.76950055,-0.76950055,-0.7696765,-0.76950055,-0.7693246,-0.76950055,-0.7696765,-0.7696765,-0.76950055,-0.7694126,-0.76914865,-0.7689727,-0.7688847,-0.7688847,-0.7689727,-0.7690607,-0.7693246,-0.76994044,-0.7710842,-0.7734597,-0.7769788,-0.7793543,-0.7802341,-0.7813778,-0.7837532,-0.7856888,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.78630465,-0.7861287,-0.7858648,-0.78516096,-0.78357726,-0.7813778,-0.77944225,-0.77680284,-0.77310777,-0.7707323,-0.7702924,-0.7701164,-0.76985246,-0.76994044,-0.7700284,-0.76985246,-0.76994044,-0.7700284,-0.7701164,-0.7700284,-0.7700284,-0.77020437,-0.7702924,-0.77020437,-0.7700284,-0.77020437,-0.7706443,-0.77046835,-0.76985246,-0.7697645,-0.7707323,-0.77161205,-0.7706443,-0.76914865,-0.7689727,-0.7693246,-0.7690607,-0.76879674,-0.76879674,-0.7688847,-0.7688847,-0.7688847,-0.7689727,-0.7692366,-0.7690607,-0.7689727,-0.7694126,-0.76985246,-0.76994044,-0.76958853,-0.76994044,-0.7706443,-0.7702924,-0.76950055,-0.76950055,-0.7696765,-0.7696765,-0.7696765,-0.7696765,-0.76994044,-0.76994044,-0.76985246,-0.7697645,-0.7696765,-0.76950055,-0.76950055,-0.7694126,-0.76914865,-0.7690607,-0.7692366,-0.76914865,-0.7688847,-0.7688847,-0.76914865,-0.76985246,-0.77082026,-0.77196395,-0.7737236,-0.7757471,-0.7775946,-0.77909034,-0.7801461,-0.7813778,-0.7834893,-0.7854249,-0.7862167,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.78630465,-0.7862167,-0.7861287,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.7861287,-0.78551286,-0.7837532,-0.7816417,-0.7793543,-0.776099,-0.7724918,-0.77046835,-0.7700284,-0.76994044,-0.76994044,-0.76994044,-0.76985246,-0.76994044,-0.7701164,-0.77020437,-0.7703804,-0.7703804,-0.77046835,-0.77046835,-0.7702924,-0.77020437,-0.7703804,-0.77046835,-0.7701164,-0.76958853,-0.7694126,-0.7697645,-0.7702924,-0.7703804,-0.76958853,-0.7693246,-0.76958853,-0.76958853,-0.76950055,-0.7694126,-0.7692366,-0.7692366,-0.7692366,-0.76958853,-0.7696765,-0.7692366,-0.7690607,-0.7693246,-0.7697645,-0.76994044,-0.7697645,-0.7696765,-0.7697645,-0.76994044,-0.77020437,-0.7706443,-0.7710842,-0.7714361,-0.77196395,-0.7725798,-0.77310777,-0.7732837,-0.7729318,-0.7725798,-0.7721399,-0.77117217,-0.77046835,-0.77020437,-0.76985246,-0.7696765,-0.7696765,-0.76985246,-0.7703804,-0.77126014,-0.7724918,-0.7738116,-0.77504325,-0.776275,-0.7776826,-0.77909034,-0.77988213,-0.780498,-0.78190565,-0.7837532,-0.7854249,-0.7862167,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.78630465,-0.78630465,-0.7863926,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78560084,-0.7837532,-0.7813778,-0.7788264,-0.7751312,-0.77161205,-0.7700284,-0.76994044,-0.76985246,-0.7696765,-0.7696765,-0.76985246,-0.7700284,-0.7701164,-0.77020437,-0.7702924,-0.7702924,-0.77020437,-0.76985246,-0.7697645,-0.7700284,-0.7701164,-0.7700284,-0.7697645,-0.7697645,-0.7700284,-0.7700284,-0.7697645,-0.76950055,-0.7693246,-0.7693246,-0.76950055,-0.7696765,-0.76958853,-0.76950055,-0.76958853,-0.76950055,-0.76985246,-0.7703804,-0.7700284,-0.7692366,-0.7692366,-0.7696765,-0.76994044,-0.7700284,-0.7707323,-0.7721399,-0.7730198,-0.7736356,-0.7744274,-0.7751312,-0.7757471,-0.77680284,-0.7775946,-0.7780345,-0.77785856,-0.7777706,-0.7776826,-0.77706677,-0.7758351,-0.77504325,-0.77460337,-0.77425146,-0.77389956,-0.77354765,-0.7736356,-0.77460337,-0.7759231,-0.7772427,-0.7780345,-0.7785625,-0.7791783,-0.7800581,-0.7810259,-0.7820816,-0.7832253,-0.78463304,-0.7857768,-0.7862167,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.78630465,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7862167,-0.78524894,-0.78304935,-0.78076196,-0.77785856,-0.77398753,-0.77090824,-0.76994044,-0.76985246,-0.7697645,-0.7696765,-0.76985246,-0.76994044,-0.76985246,-0.76994044,-0.7701164,-0.77020437,-0.77055633,-0.7710842,-0.7714361,-0.771788,-0.7724918,-0.7726679,-0.7724918,-0.7729318,-0.7734597,-0.7729318,-0.7721399,-0.771788,-0.77126014,-0.77082026,-0.77046835,-0.7701164,-0.7697645,-0.76950055,-0.76950055,-0.7693246,-0.76950055,-0.77020437,-0.7701164,-0.76950055,-0.7693246,-0.7701164,-0.77126014,-0.7725798,-0.7744274,-0.77645093,-0.7775946,-0.7781225,-0.77873844,-0.7791783,-0.77988213,-0.780674,-0.7813778,-0.7817297,-0.7816417,-0.78146577,-0.7810259,-0.7803221,-0.7796182,-0.77909034,-0.77873844,-0.77865046,-0.7784745,-0.77821046,-0.7780345,-0.7784745,-0.77909034,-0.7799701,-0.78084993,-0.7813778,-0.78190565,-0.7827854,-0.7838412,-0.78498495,-0.7857768,-0.7862167,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78595275,-0.78454506,-0.78225756,-0.77979416,-0.7766269,-0.7730198,-0.7706443,-0.76985246,-0.7696765,-0.7696765,-0.7696765,-0.7697645,-0.76994044,-0.7701164,-0.77082026,-0.771788,-0.7730198,-0.77469134,-0.7758351,-0.776187,-0.77671486,-0.7769788,-0.77706677,-0.7773307,-0.77750665,-0.7769788,-0.776187,-0.7758351,-0.77557117,-0.77504325,-0.7740755,-0.7730198,-0.77196395,-0.77082026,-0.76994044,-0.7693246,-0.7694126,-0.7697645,-0.76958853,-0.76950055,-0.7703804,-0.77231586,-0.77433944,-0.776275,-0.77821046,-0.77979416,-0.78111386,-0.7819936,-0.7824335,-0.7827854,-0.7834013,-0.7840172,-0.7844571,-0.784809,-0.784809,-0.78463304,-0.78419316,-0.7834893,-0.7827854,-0.7818177,-0.7809379,-0.78041005,-0.7802341,-0.7801461,-0.7803221,-0.7809379,-0.7818177,-0.78296137,-0.7840172,-0.78463304,-0.785073,-0.78551286,-0.78595275,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.78630465,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7865686,-0.7865686,-0.7864806,-0.78630465,-0.78630465,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7862167,-0.78560084,-0.78366524,-0.78120184,-0.77900237,-0.776187,-0.7729318,-0.7707323,-0.7700284,-0.76985246,-0.7696765,-0.7701164,-0.77117217,-0.7722279,-0.7734597,-0.77521926,-0.77706677,-0.7784745,-0.7795302,-0.7799701,-0.7803221,-0.780674,-0.7809379,-0.7809379,-0.78084993,-0.780498,-0.77979416,-0.7795302,-0.77944225,-0.77909034,-0.77821046,-0.7772427,-0.776187,-0.77469134,-0.7726679,-0.77082026,-0.76985246,-0.7697645,-0.76994044,-0.7709962,-0.7733717,-0.7757471,-0.7775946,-0.77944225,-0.7812898,-0.7827854,-0.7839292,-0.784809,-0.78524894,-0.78551286,-0.7857768,-0.78595275,-0.7860407,-0.7861287,-0.7861287,-0.7861287,-0.7861287,-0.78595275,-0.78551286,-0.78498495,-0.78419316,-0.7834893,-0.7832253,-0.7832253,-0.78357726,-0.7843691,-0.785073,-0.78560084,-0.78595275,-0.7861287,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7860407,-0.78489697,-0.78269744,-0.780674,-0.7791783,-0.7766269,-0.77389956,-0.7721399,-0.7714361,-0.771876,-0.7729318,-0.77460337,-0.776187,-0.7773307,-0.77873844,-0.7802341,-0.78111386,-0.7819936,-0.78296137,-0.78357726,-0.7840172,-0.78428113,-0.78419316,-0.7841052,-0.7839292,-0.7834013,-0.7828734,-0.78269744,-0.7821696,-0.7812898,-0.78041005,-0.7797062,-0.77865046,-0.77680284,-0.77460337,-0.77284384,-0.77231586,-0.77284384,-0.7747793,-0.77715474,-0.77873844,-0.7803221,-0.78260946,-0.78428113,-0.78516096,-0.7857768,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7862167,-0.78595275,-0.78595275,-0.78595275,-0.7861287,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7857768,-0.7840172,-0.7818177,-0.78041005,-0.77909034,-0.77715474,-0.77565914,-0.77530724,-0.776099,-0.77706677,-0.7780345,-0.77900237,-0.7800581,-0.7813778,-0.7827854,-0.7837532,-0.78463304,-0.7854249,-0.7858648,-0.7860407,-0.7860407,-0.78595275,-0.78595275,-0.78595275,-0.7858648,-0.78560084,-0.7854249,-0.78498495,-0.78419316,-0.7832253,-0.7820816,-0.78076196,-0.77944225,-0.77829856,-0.77715474,-0.7765389,-0.77680284,-0.7780345,-0.7792663,-0.780586,-0.7827854,-0.78498495,-0.7857768,-0.7860407,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7862167,-0.7853369,-0.7834893,-0.78146577,-0.7802341,-0.7793543,-0.77873844,-0.7788264,-0.77944225,-0.7797062,-0.7801461,-0.7810259,-0.78234553,-0.7839292,-0.785073,-0.7856888,-0.7860407,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7862167,-0.78595275,-0.78551286,-0.784809,-0.7834013,-0.7817297,-0.780498,-0.77979416,-0.7793543,-0.7793543,-0.7797062,-0.780674,-0.7824335,-0.78463304,-0.7858648,-0.7861287,-0.78630465,-0.7862167,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7864806,-0.7864806,-0.7864806,-0.7865686,-0.7864806,-0.7864806,-0.7864806,-0.7865686,-0.7865686,-0.7864806,-0.7864806,-0.7865686,-0.7865686,-0.7864806,-0.7865686,-0.7864806,-0.7865686,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7865686,-0.7865686,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7865686,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7865686,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7862167,-0.7854249,-0.7837532,-0.78225756,-0.7813778,-0.78084993,-0.78076196,-0.78120184,-0.78146577,-0.78225756,-0.7837532,-0.785073,-0.7858648,-0.7861287,-0.7862167,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.7861287,-0.7861287,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7857768,-0.784721,-0.78331333,-0.7820816,-0.7813778,-0.7813778,-0.7820816,-0.78357726,-0.78498495,-0.7858648,-0.7862167,-0.78630465,-0.78630465,-0.7862167,-0.7861287,-0.7861287,-0.7861287,-0.7862167,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.78630465,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7864806,-0.7865686,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78595275,-0.78516096,-0.7844571,-0.7839292,-0.7838412,-0.7841052,-0.7843691,-0.78498495,-0.7858648,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.78630465,-0.78630465,-0.7863926,-0.7864806,-0.7865686,-0.7864806,-0.7864806,-0.7864806,-0.7863926,-0.7862167,-0.7858648,-0.78516096,-0.78454506,-0.78454506,-0.78516096,-0.78595275,-0.78630465,-0.7863926,-0.7863926,-0.7863926,-0.7863926,-0.78630465,-0.7862167,-0.7862167,-0.7862167,-0.78630465,-0.7863926,-0.7863926,-0.78630465,-0.78630465,-0.7864806,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.78665656,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.7865686,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92995065,-0.93008506,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92981625,-0.9302195,-0.93008506,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.92981625,-0.9302195,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9302195,-0.9295474,-0.92995065,-0.92995065,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92995065,-0.9292786,-0.92968184,-0.92968184,-0.93008506,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9295474,-0.928741,-0.9288754,-0.9291442,-0.92995065,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9290098,-0.9283377,-0.92860657,-0.9290098,-0.92981625,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.928741,-0.9284721,-0.9284721,-0.929413,-0.93008506,-0.9303539,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92860657,-0.928741,-0.92860657,-0.929413,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9288754,-0.928741,-0.9290098,-0.92981625,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9295474,-0.9288754,-0.928741,-0.92981625,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9291442,-0.9288754,-0.9282033,-0.9292786,-0.93008506,-0.9302195,-0.92995065,-0.92995065,-0.9295474,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9302195,-0.928741,-0.9290098,-0.9284721,-0.9291442,-0.92981625,-0.92995065,-0.92981625,-0.92981625,-0.92968184,-0.92995065,-0.9302195,-0.93008506,-0.9303539,-0.9303539,-0.9302195,-0.92995065,-0.92981625,-0.9295474,-0.92995065,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9292786,-0.927128,-0.9282033,-0.9288754,-0.92968184,-0.92968184,-0.92995065,-0.93008506,-0.93008506,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.92981625,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.92981625,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9295474,-0.9282033,-0.92860657,-0.9292786,-0.92995065,-0.92968184,-0.92981625,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.92995065,-0.92981625,-0.92995065,-0.92981625,-0.92968184,-0.92995065,-0.9302195,-0.9302195,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.92981625,-0.92968184,-0.92995065,-0.93008506,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92995065,-0.92968184,-0.9295474,-0.92981625,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.92995065,-0.92981625,-0.92995065,-0.92981625,-0.93008506,-0.9303539,-0.9302195,-0.92995065,-0.92995065,-0.93008506,-0.92995065,-0.92981625,-0.92981625,-0.92995065,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9291442,-0.9288754,-0.9291442,-0.92981625,-0.92981625,-0.92995065,-0.93008506,-0.92981625,-0.9295474,-0.92995065,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.92995065,-0.92968184,-0.92968184,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92793447,-0.9284721,-0.92860657,-0.92968184,-0.9295474,-0.92995065,-0.93008506,-0.92981625,-0.92995065,-0.92981625,-0.92995065,-0.92981625,-0.92968184,-0.92995065,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.92981625,-0.92995065,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.92995065,-0.92981625,-0.92981625,-0.92981625,-0.92981625,-0.92981625,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.92981625,-0.929413,-0.9290098,-0.9288754,-0.92860657,-0.9283377,-0.9282033,-0.9284721,-0.928741,-0.9290098,-0.929413,-0.92968184,-0.93008506,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9306227,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9280689,-0.9291442,-0.9291442,-0.92968184,-0.9295474,-0.9302195,-0.9302195,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.92981625,-0.9295474,-0.92981625,-0.93008506,-0.92981625,-0.92968184,-0.92995065,-0.93008506,-0.9303539,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.92981625,-0.92981625,-0.92981625,-0.92968184,-0.92968184,-0.92995065,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.92981625,-0.92995065,-0.93008506,-0.92995065,-0.92981625,-0.92968184,-0.92995065,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.92968184,-0.9292786,-0.9290098,-0.92860657,-0.9284721,-0.9284721,-0.9283377,-0.928741,-0.929413,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.92968184,-0.9291442,-0.928741,-0.9283377,-0.92766565,-0.9272624,-0.9269936,-0.927128,-0.9272624,-0.92739683,-0.92753124,-0.92753124,-0.92766565,-0.92780006,-0.92793447,-0.9283377,-0.9292786,-0.92981625,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9280689,-0.92968184,-0.9290098,-0.92968184,-0.92981625,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.9302195,-0.9303539,-0.9302195,-0.92981625,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.92981625,-0.92968184,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.9302195,-0.93008506,-0.93008506,-0.9303539,-0.93008506,-0.92968184,-0.92968184,-0.92995065,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.92981625,-0.92968184,-0.92968184,-0.92968184,-0.92981625,-0.92981625,-0.92981625,-0.92995065,-0.92981625,-0.92981625,-0.92981625,-0.92968184,-0.92968184,-0.92995065,-0.93008506,-0.93008506,-0.92995065,-0.92981625,-0.92995065,-0.92995065,-0.92981625,-0.92968184,-0.92981625,-0.92995065,-0.92995065,-0.92981625,-0.92968184,-0.9295474,-0.92968184,-0.92968184,-0.9295474,-0.9295474,-0.92968184,-0.9291442,-0.9283377,-0.92780006,-0.92753124,-0.927128,-0.9269936,-0.9269936,-0.927128,-0.92753124,-0.9280689,-0.928741,-0.929413,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.92995065,-0.92981625,-0.9295474,-0.9291442,-0.928741,-0.9283377,-0.92780006,-0.9272624,-0.9269936,-0.9269936,-0.9268592,-0.927128,-0.92766565,-0.92793447,-0.9280689,-0.92793447,-0.92766565,-0.92753124,-0.92739683,-0.927128,-0.9268592,-0.9268592,-0.92753124,-0.9284721,-0.9292786,-0.92968184,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.93008506,-0.93008506,-0.93008506,-0.92981625,-0.9295474,-0.929413,-0.9292786,-0.9291442,-0.9288754,-0.9288754,-0.9291442,-0.9295474,-0.92968184,-0.92981625,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9302195,-0.92605275,-0.928741,-0.9283377,-0.92995065,-0.92995065,-0.92981625,-0.929413,-0.92968184,-0.9302195,-0.9303539,-0.9302195,-0.92995065,-0.92981625,-0.92995065,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.9302195,-0.9304883,-0.9302195,-0.9302195,-0.9303539,-0.92981625,-0.92981625,-0.93008506,-0.9302195,-0.93008506,-0.92981625,-0.92968184,-0.92981625,-0.92995065,-0.92981625,-0.92995065,-0.92995065,-0.92981625,-0.92968184,-0.92981625,-0.92995065,-0.92995065,-0.92981625,-0.92995065,-0.93008506,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.92981625,-0.92981625,-0.92968184,-0.9295474,-0.92968184,-0.92968184,-0.9295474,-0.929413,-0.9295474,-0.929413,-0.9291442,-0.9291442,-0.9292786,-0.9288754,-0.9284721,-0.9280689,-0.92766565,-0.9272624,-0.9269936,-0.9265904,-0.92632157,-0.92632157,-0.926456,-0.9265904,-0.9272624,-0.92780006,-0.9283377,-0.9290098,-0.92981625,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.92981625,-0.92981625,-0.92968184,-0.9292786,-0.928741,-0.9282033,-0.92766565,-0.9272624,-0.927128,-0.927128,-0.9268592,-0.9267248,-0.9265904,-0.9267248,-0.92739683,-0.92753124,-0.92739683,-0.92753124,-0.92753124,-0.92739683,-0.9272624,-0.9269936,-0.92632157,-0.92618716,-0.926456,-0.92632157,-0.9265904,-0.92753124,-0.9284721,-0.9292786,-0.92968184,-0.92995065,-0.92995065,-0.92995065,-0.92981625,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.92981625,-0.9295474,-0.9291442,-0.92860657,-0.9282033,-0.92793447,-0.92766565,-0.92766565,-0.92780006,-0.9280689,-0.9283377,-0.928741,-0.9291442,-0.9295474,-0.92981625,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92995065,-0.9269936,-0.9288754,-0.9283377,-0.92968184,-0.92981625,-0.92995065,-0.92968184,-0.92968184,-0.92995065,-0.93008506,-0.92995065,-0.92968184,-0.92968184,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.92995065,-0.92981625,-0.92981625,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.9303539,-0.9303539,-0.9302195,-0.92995065,-0.92981625,-0.92995065,-0.92995065,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.92981625,-0.92968184,-0.92981625,-0.92995065,-0.92995065,-0.92995065,-0.92981625,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.92981625,-0.929413,-0.929413,-0.92968184,-0.9295474,-0.929413,-0.929413,-0.9291442,-0.92860657,-0.9282033,-0.92780006,-0.92739683,-0.9268592,-0.926456,-0.92605275,-0.92591834,-0.92591834,-0.92578393,-0.92591834,-0.92578393,-0.92578393,-0.92591834,-0.926456,-0.9272624,-0.92793447,-0.928741,-0.9295474,-0.92981625,-0.92968184,-0.92968184,-0.92995065,-0.92995065,-0.92981625,-0.92995065,-0.92981625,-0.92968184,-0.929413,-0.9290098,-0.92860657,-0.9282033,-0.92739683,-0.9265904,-0.92632157,-0.9265904,-0.9267248,-0.9268592,-0.9267248,-0.926456,-0.92618716,-0.9256495,-0.9253807,-0.9255151,-0.92578393,-0.9255151,-0.9252463,-0.9251119,-0.92578393,-0.92618716,-0.9251119,-0.9244398,-0.92605275,-0.92739683,-0.9268592,-0.926456,-0.9269936,-0.92793447,-0.9288754,-0.9295474,-0.92981625,-0.92995065,-0.92981625,-0.92968184,-0.92968184,-0.92981625,-0.92968184,-0.92968184,-0.92968184,-0.92968184,-0.92968184,-0.92968184,-0.929413,-0.9292786,-0.9288754,-0.9283377,-0.92780006,-0.9272624,-0.9268592,-0.9265904,-0.926456,-0.926456,-0.9268592,-0.9272624,-0.92766565,-0.92793447,-0.9284721,-0.9290098,-0.929413,-0.92968184,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9295474,-0.92739683,-0.9291442,-0.9290098,-0.92968184,-0.92968184,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.92995065,-0.92981625,-0.92995065,-0.92995065,-0.92981625,-0.92995065,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.93008506,-0.92995065,-0.93008506,-0.93008506,-0.92981625,-0.92981625,-0.92981625,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.9302195,-0.9303539,-0.9303539,-0.93008506,-0.92995065,-0.92981625,-0.92968184,-0.92968184,-0.92968184,-0.92968184,-0.92981625,-0.92981625,-0.92995065,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.92968184,-0.9295474,-0.9295474,-0.9295474,-0.929413,-0.929413,-0.9292786,-0.9291442,-0.928741,-0.9282033,-0.92793447,-0.92753124,-0.926456,-0.9255151,-0.9253807,-0.9252463,-0.9251119,-0.9251119,-0.9252463,-0.9253807,-0.9255151,-0.9253807,-0.9253807,-0.9255151,-0.92578393,-0.92618716,-0.9269936,-0.9280689,-0.9290098,-0.9295474,-0.92981625,-0.92968184,-0.92968184,-0.92981625,-0.92981625,-0.9295474,-0.9292786,-0.928741,-0.92793447,-0.92739683,-0.9267248,-0.92605275,-0.92605275,-0.926456,-0.9268592,-0.9268592,-0.92632157,-0.9256495,-0.9249775,-0.9247086,-0.9244398,-0.9247086,-0.92605275,-0.927128,-0.9265904,-0.9249775,-0.9236333,-0.92336446,-0.9243054,-0.9253807,-0.9256495,-0.9253807,-0.92605275,-0.9265904,-0.92605275,-0.92578393,-0.92632157,-0.92753124,-0.92860657,-0.9291442,-0.929413,-0.92968184,-0.92968184,-0.92968184,-0.9295474,-0.9295474,-0.929413,-0.9292786,-0.9292786,-0.9291442,-0.9288754,-0.9283377,-0.92766565,-0.9269936,-0.926456,-0.92605275,-0.9256495,-0.9256495,-0.92578393,-0.92605275,-0.92618716,-0.92618716,-0.92632157,-0.9267248,-0.92739683,-0.92793447,-0.9284721,-0.9290098,-0.929413,-0.9295474,-0.92981625,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9290098,-0.92739683,-0.9290098,-0.9292786,-0.92995065,-0.92995065,-0.92981625,-0.92981625,-0.93008506,-0.9303539,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.92981625,-0.92968184,-0.92981625,-0.93008506,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.92995065,-0.93008506,-0.92995065,-0.92968184,-0.92968184,-0.92968184,-0.929413,-0.929413,-0.9295474,-0.92968184,-0.92968184,-0.92995065,-0.93008506,-0.92981625,-0.92981625,-0.92995065,-0.93008506,-0.92995065,-0.92981625,-0.92981625,-0.92981625,-0.929413,-0.9291442,-0.9288754,-0.9284721,-0.92766565,-0.9268592,-0.92632157,-0.9255151,-0.9247086,-0.9244398,-0.9243054,-0.9241709,-0.9243054,-0.9244398,-0.9243054,-0.9241709,-0.9239021,-0.9239021,-0.9240365,-0.9239021,-0.9239021,-0.9240365,-0.9245742,-0.9256495,-0.9268592,-0.92793447,-0.928741,-0.9290098,-0.9288754,-0.9291442,-0.9290098,-0.928741,-0.9282033,-0.92766565,-0.927128,-0.9269936,-0.9269936,-0.92632157,-0.92578393,-0.92618716,-0.9265904,-0.92632157,-0.9255151,-0.9245742,-0.9240365,-0.9240365,-0.9251119,-0.9269936,-0.9283377,-0.928741,-0.9284721,-0.92766565,-0.92578393,-0.9239021,-0.92296124,-0.92336446,-0.9245742,-0.9255151,-0.92591834,-0.92605275,-0.92605275,-0.92578393,-0.92578393,-0.92605275,-0.9265904,-0.92753124,-0.9283377,-0.9291442,-0.9295474,-0.92968184,-0.92981625,-0.9295474,-0.929413,-0.929413,-0.9291442,-0.9283377,-0.92739683,-0.926456,-0.9256495,-0.9251119,-0.9249775,-0.9251119,-0.9252463,-0.9251119,-0.9249775,-0.9252463,-0.9253807,-0.9252463,-0.9252463,-0.92578393,-0.92618716,-0.9267248,-0.92753124,-0.9283377,-0.9288754,-0.9290098,-0.9292786,-0.9295474,-0.92981625,-0.92981625,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.929413,-0.92860657,-0.9292786,-0.9295474,-0.93008506,-0.93008506,-0.92981625,-0.92995065,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.92995065,-0.92981625,-0.92981625,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.92981625,-0.92995065,-0.92995065,-0.92968184,-0.92981625,-0.92995065,-0.92981625,-0.92981625,-0.92981625,-0.92995065,-0.92995065,-0.92981625,-0.93008506,-0.9302195,-0.93008506,-0.92995065,-0.92968184,-0.929413,-0.929413,-0.929413,-0.9292786,-0.9292786,-0.9291442,-0.9290098,-0.9288754,-0.92860657,-0.9280689,-0.9272624,-0.92618716,-0.9251119,-0.9240365,-0.92336446,-0.9226924,-0.9222892,-0.9224236,-0.922558,-0.92296124,-0.92336446,-0.92323005,-0.92323005,-0.92323005,-0.92309564,-0.922558,-0.92188597,-0.92161715,-0.92134833,-0.92134833,-0.92188597,-0.92296124,-0.9241709,-0.9252463,-0.92605275,-0.926456,-0.9265904,-0.9267248,-0.9267248,-0.9268592,-0.9267248,-0.926456,-0.92618716,-0.92632157,-0.926456,-0.92618716,-0.92578393,-0.9255151,-0.9251119,-0.9248431,-0.9247086,-0.9251119,-0.926456,-0.9280689,-0.928741,-0.9283377,-0.9284721,-0.928741,-0.9288754,-0.9284721,-0.927128,-0.9253807,-0.9240365,-0.9240365,-0.9247086,-0.9255151,-0.9255151,-0.9256495,-0.92578393,-0.9256495,-0.9255151,-0.9252463,-0.9252463,-0.92578393,-0.9267248,-0.9272624,-0.92766565,-0.9282033,-0.9283377,-0.9283377,-0.9280689,-0.92739683,-0.92632157,-0.9256495,-0.9248431,-0.9239021,-0.9239021,-0.9245742,-0.9249775,-0.9251119,-0.9251119,-0.9251119,-0.9252463,-0.9256495,-0.92578393,-0.9255151,-0.9252463,-0.9253807,-0.92578393,-0.92632157,-0.9272624,-0.9280689,-0.92860657,-0.9288754,-0.9290098,-0.9292786,-0.9295474,-0.92968184,-0.92968184,-0.92981625,-0.92995065,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92968184,-0.929413,-0.92968184,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.93008506,-0.92981625,-0.92995065,-0.93008506,-0.92995065,-0.93008506,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.92995065,-0.92968184,-0.92981625,-0.92981625,-0.92981625,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.92981625,-0.92995065,-0.92995065,-0.92981625,-0.92968184,-0.929413,-0.929413,-0.9292786,-0.9290098,-0.9288754,-0.9291442,-0.9292786,-0.928741,-0.9280689,-0.9269936,-0.9255151,-0.9237677,-0.9224236,-0.92134833,-0.9206763,-0.9208107,-0.9210795,-0.92134833,-0.92175156,-0.9221548,-0.9226924,-0.9228268,-0.9228268,-0.922558,-0.9224236,-0.9220204,-0.92161715,-0.9210795,-0.92027307,-0.91960096,-0.91933215,-0.92000425,-0.9210795,-0.9220204,-0.9228268,-0.9237677,-0.9241709,-0.9241709,-0.9241709,-0.9245742,-0.9252463,-0.9253807,-0.9251119,-0.9251119,-0.9255151,-0.9252463,-0.9248431,-0.9247086,-0.9245742,-0.9251119,-0.92632157,-0.92793447,-0.9291442,-0.9291442,-0.9283377,-0.9280689,-0.9283377,-0.9282033,-0.9280689,-0.9284721,-0.9290098,-0.9282033,-0.926456,-0.9253807,-0.9248431,-0.9245742,-0.9243054,-0.9241709,-0.9244398,-0.9244398,-0.9243054,-0.9243054,-0.9247086,-0.9248431,-0.9243054,-0.9239021,-0.9237677,-0.9241709,-0.9244398,-0.9241709,-0.92336446,-0.9222892,-0.9212139,-0.9205419,-0.9208107,-0.92134833,-0.92188597,-0.9226924,-0.9236333,-0.9240365,-0.9240365,-0.9241709,-0.9245742,-0.9245742,-0.9245742,-0.9244398,-0.9241709,-0.9240365,-0.9244398,-0.9249775,-0.92591834,-0.9269936,-0.9280689,-0.9288754,-0.9290098,-0.9290098,-0.9291442,-0.929413,-0.9295474,-0.92968184,-0.92981625,-0.92981625,-0.92995065,-0.93008506,-0.93008506,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9306227,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.92981625,-0.92981625,-0.93008506,-0.93008506,-0.92995065,-0.92981625,-0.92995065,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.92981625,-0.92981625,-0.92981625,-0.92968184,-0.92981625,-0.92981625,-0.92981625,-0.92981625,-0.92968184,-0.929413,-0.9282033,-0.92618716,-0.9241709,-0.9220204,-0.9204075,-0.91960096,-0.9197354,-0.9204075,-0.9210795,-0.92175156,-0.9222892,-0.9226924,-0.92296124,-0.92309564,-0.92323005,-0.92309564,-0.9228268,-0.9222892,-0.92188597,-0.92148274,-0.9212139,-0.9206763,-0.92013866,-0.9197354,-0.92000425,-0.9208107,-0.92175156,-0.9224236,-0.9226924,-0.9226924,-0.9226924,-0.922558,-0.9224236,-0.92296124,-0.9239021,-0.9241709,-0.92349887,-0.92349887,-0.9237677,-0.92349887,-0.92336446,-0.9243054,-0.92618716,-0.9280689,-0.9291442,-0.9291442,-0.9288754,-0.9291442,-0.9290098,-0.928741,-0.9284721,-0.9282033,-0.9284721,-0.9290098,-0.9292786,-0.9283377,-0.9268592,-0.9253807,-0.9240365,-0.92309564,-0.92323005,-0.9236333,-0.92336446,-0.92323005,-0.9236333,-0.9241709,-0.9237677,-0.922558,-0.92175156,-0.92175156,-0.92161715,-0.92134833,-0.9206763,-0.9197354,-0.9189289,-0.9185257,-0.9189289,-0.9198698,-0.9208107,-0.92175156,-0.922558,-0.92296124,-0.92323005,-0.92296124,-0.9226924,-0.9226924,-0.9228268,-0.9226924,-0.922558,-0.9224236,-0.9222892,-0.9224236,-0.92296124,-0.9240365,-0.9256495,-0.927128,-0.9282033,-0.9288754,-0.9291442,-0.9292786,-0.9295474,-0.92968184,-0.92968184,-0.92981625,-0.92981625,-0.92995065,-0.92995065,-0.92981625,-0.92981625,-0.92981625,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9302195,-0.929413,-0.92981625,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.92981625,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.92981625,-0.92995065,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.9290098,-0.927128,-0.9248431,-0.9228268,-0.9209451,-0.91946656,-0.9190633,-0.91946656,-0.92027307,-0.9209451,-0.92188597,-0.9228268,-0.92336446,-0.92349887,-0.9236333,-0.9237677,-0.9236333,-0.92349887,-0.9237677,-0.9237677,-0.92323005,-0.9226924,-0.9224236,-0.9220204,-0.92134833,-0.9208107,-0.9208107,-0.92134833,-0.9221548,-0.9228268,-0.92336446,-0.9237677,-0.9237677,-0.92336446,-0.922558,-0.9221548,-0.922558,-0.9224236,-0.92148274,-0.92175156,-0.9228268,-0.9221548,-0.92188597,-0.9241709,-0.9269936,-0.9282033,-0.9280689,-0.92780006,-0.9282033,-0.9288754,-0.928741,-0.9284721,-0.9284721,-0.928741,-0.9290098,-0.9290098,-0.9290098,-0.9288754,-0.9282033,-0.926456,-0.9243054,-0.92323005,-0.92336446,-0.92349887,-0.922558,-0.92188597,-0.9221548,-0.9222892,-0.92175156,-0.92175156,-0.9222892,-0.9224236,-0.9221548,-0.92148274,-0.9209451,-0.92027307,-0.9197354,-0.91946656,-0.92013866,-0.9210795,-0.9221548,-0.9228268,-0.92323005,-0.92323005,-0.92323005,-0.92309564,-0.92309564,-0.92296124,-0.9228268,-0.9226924,-0.9221548,-0.92161715,-0.9212139,-0.9210795,-0.9209451,-0.9212139,-0.9222892,-0.9241709,-0.92605275,-0.92780006,-0.928741,-0.9291442,-0.9292786,-0.929413,-0.9295474,-0.9295474,-0.92968184,-0.92995065,-0.92995065,-0.92995065,-0.92981625,-0.92981625,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.92981625,-0.92981625,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9303539,-0.92981625,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.9302195,-0.9304883,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.92995065,-0.92981625,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.92995065,-0.92995065,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.93008506,-0.92981625,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.92995065,-0.92968184,-0.92780006,-0.9251119,-0.92323005,-0.92188597,-0.9206763,-0.9198698,-0.9198698,-0.9205419,-0.92148274,-0.9224236,-0.92296124,-0.92296124,-0.92296124,-0.92309564,-0.92309564,-0.92309564,-0.92323005,-0.92323005,-0.92296124,-0.92309564,-0.92323005,-0.92323005,-0.92336446,-0.92336446,-0.92309564,-0.9224236,-0.92148274,-0.9206763,-0.9205419,-0.92161715,-0.92296124,-0.9241709,-0.9249775,-0.9255151,-0.9252463,-0.9244398,-0.9236333,-0.92296124,-0.922558,-0.9222892,-0.9221548,-0.92161715,-0.9212139,-0.9224236,-0.9255151,-0.92766565,-0.9272624,-0.926456,-0.9267248,-0.92753124,-0.9280689,-0.92793447,-0.92739683,-0.9272624,-0.92793447,-0.9284721,-0.92860657,-0.9284721,-0.9283377,-0.9280689,-0.9272624,-0.92591834,-0.9245742,-0.9237677,-0.9236333,-0.92336446,-0.922558,-0.9222892,-0.9224236,-0.92309564,-0.9239021,-0.9240365,-0.9236333,-0.92309564,-0.9224236,-0.92161715,-0.9209451,-0.9204075,-0.9206763,-0.92175156,-0.922558,-0.9226924,-0.9226924,-0.9228268,-0.9228268,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.9226924,-0.9224236,-0.9222892,-0.9221548,-0.92188597,-0.92161715,-0.9209451,-0.92013866,-0.9198698,-0.9206763,-0.92296124,-0.9256495,-0.92753124,-0.92860657,-0.9291442,-0.9292786,-0.9292786,-0.9292786,-0.9292786,-0.9292786,-0.9292786,-0.9295474,-0.92968184,-0.92981625,-0.92981625,-0.92981625,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.92981625,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.92981625,-0.92995065,-0.93008506,-0.92995065,-0.92995065,-0.92981625,-0.92995065,-0.93008506,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.92995065,-0.92981625,-0.9295474,-0.9269936,-0.9239021,-0.9220204,-0.92134833,-0.9210795,-0.9208107,-0.9208107,-0.92148274,-0.9224236,-0.92309564,-0.92349887,-0.9236333,-0.92309564,-0.922558,-0.9224236,-0.9226924,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.92296124,-0.9228268,-0.9228268,-0.9228268,-0.92296124,-0.9226924,-0.9221548,-0.92134833,-0.9206763,-0.9212139,-0.922558,-0.9236333,-0.9244398,-0.9249775,-0.9255151,-0.9256495,-0.9251119,-0.9241709,-0.92349887,-0.92323005,-0.92309564,-0.92296124,-0.92336446,-0.9249775,-0.927128,-0.92766565,-0.9265904,-0.92632157,-0.927128,-0.9272624,-0.92632157,-0.92578393,-0.9255151,-0.9256495,-0.92632157,-0.927128,-0.92766565,-0.92793447,-0.9280689,-0.9282033,-0.92793447,-0.927128,-0.9255151,-0.9240365,-0.9239021,-0.9244398,-0.9244398,-0.9237677,-0.92349887,-0.9239021,-0.9243054,-0.9243054,-0.9240365,-0.92349887,-0.922558,-0.92148274,-0.9212139,-0.92175156,-0.9226924,-0.92296124,-0.9226924,-0.9224236,-0.9220204,-0.92188597,-0.9220204,-0.9222892,-0.9224236,-0.9222892,-0.9222892,-0.922558,-0.9224236,-0.9222892,-0.922558,-0.9228268,-0.9226924,-0.9220204,-0.9212139,-0.9204075,-0.91960096,-0.91960096,-0.92134833,-0.9244398,-0.9272624,-0.928741,-0.9291442,-0.9292786,-0.9291442,-0.9291442,-0.9292786,-0.9292786,-0.929413,-0.929413,-0.9295474,-0.92968184,-0.9295474,-0.92968184,-0.92981625,-0.92981625,-0.92995065,-0.92981625,-0.92981625,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.92995065,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.92995065,-0.93008506,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.92995065,-0.92981625,-0.92981625,-0.92995065,-0.93008506,-0.93008506,-0.92995065,-0.92981625,-0.92995065,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.9303539,-0.9303539,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.93008506,-0.92995065,-0.9288754,-0.926456,-0.9237677,-0.92161715,-0.9212139,-0.92188597,-0.9222892,-0.92175156,-0.92148274,-0.9220204,-0.9222892,-0.9224236,-0.9224236,-0.9222892,-0.9222892,-0.9222892,-0.9224236,-0.9228268,-0.92323005,-0.92349887,-0.92336446,-0.92309564,-0.92309564,-0.92309564,-0.92296124,-0.922558,-0.9224236,-0.922558,-0.9226924,-0.9226924,-0.9226924,-0.9221548,-0.92161715,-0.9220204,-0.92323005,-0.9236333,-0.9237677,-0.9244398,-0.9252463,-0.9249775,-0.9241709,-0.9239021,-0.9236333,-0.92309564,-0.92349887,-0.9249775,-0.926456,-0.9272624,-0.9272624,-0.9268592,-0.927128,-0.92766565,-0.9267248,-0.9248431,-0.9243054,-0.9248431,-0.9252463,-0.9255151,-0.92618716,-0.9267248,-0.9269936,-0.92739683,-0.9280689,-0.9283377,-0.9272624,-0.92578393,-0.9245742,-0.9240365,-0.9240365,-0.9237677,-0.92296124,-0.9228268,-0.92336446,-0.92336446,-0.92323005,-0.92349887,-0.92323005,-0.9222892,-0.92161715,-0.92188597,-0.9226924,-0.92296124,-0.922558,-0.9220204,-0.92161715,-0.92161715,-0.92175156,-0.92188597,-0.9221548,-0.9222892,-0.9221548,-0.9220204,-0.9220204,-0.9221548,-0.9224236,-0.9224236,-0.922558,-0.9228268,-0.9226924,-0.9221548,-0.92134833,-0.9208107,-0.92027307,-0.9198698,-0.9206763,-0.92296124,-0.92605275,-0.9283377,-0.9292786,-0.9295474,-0.929413,-0.9292786,-0.9291442,-0.9291442,-0.9292786,-0.9295474,-0.92981625,-0.92968184,-0.92968184,-0.92968184,-0.92968184,-0.9295474,-0.9295474,-0.9295474,-0.92968184,-0.92968184,-0.92968184,-0.92981625,-0.92995065,-0.92981625,-0.92968184,-0.92981625,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.92995065,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9303539,-0.929413,-0.93008506,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.92995065,-0.92981625,-0.92981625,-0.92981625,-0.92981625,-0.92981625,-0.92981625,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.92995065,-0.93008506,-0.9303539,-0.93008506,-0.92981625,-0.92995065,-0.9302195,-0.9302195,-0.92995065,-0.92860657,-0.92632157,-0.9240365,-0.9222892,-0.92161715,-0.922558,-0.92323005,-0.9224236,-0.9209451,-0.9204075,-0.9209451,-0.9212139,-0.9212139,-0.92134833,-0.92161715,-0.9221548,-0.9228268,-0.92309564,-0.92323005,-0.9236333,-0.9239021,-0.9239021,-0.9237677,-0.9236333,-0.9236333,-0.92349887,-0.92296124,-0.922558,-0.922558,-0.9226924,-0.9228268,-0.92309564,-0.9226924,-0.92175156,-0.92175156,-0.92296124,-0.9236333,-0.92349887,-0.9237677,-0.9240365,-0.92323005,-0.9224236,-0.9228268,-0.92336446,-0.92336446,-0.9241709,-0.92578393,-0.9269936,-0.927128,-0.9267248,-0.926456,-0.92632157,-0.92632157,-0.9255151,-0.9243054,-0.9243054,-0.9252463,-0.92591834,-0.92591834,-0.92618716,-0.92632157,-0.9255151,-0.9245742,-0.92578393,-0.92766565,-0.92780006,-0.9268592,-0.92591834,-0.9247086,-0.9237677,-0.92336446,-0.9221548,-0.9208107,-0.92148274,-0.92349887,-0.9243054,-0.9241709,-0.92349887,-0.9226924,-0.9224236,-0.9226924,-0.9228268,-0.9224236,-0.92188597,-0.92175156,-0.9220204,-0.9224236,-0.9228268,-0.92309564,-0.92309564,-0.92309564,-0.92323005,-0.92336446,-0.92336446,-0.92323005,-0.92323005,-0.92309564,-0.9226924,-0.9224236,-0.9224236,-0.9224236,-0.9220204,-0.92134833,-0.9209451,-0.9208107,-0.9205419,-0.9204075,-0.92175156,-0.9247086,-0.92739683,-0.9290098,-0.92981625,-0.93008506,-0.92995065,-0.9295474,-0.9292786,-0.929413,-0.92968184,-0.92981625,-0.92981625,-0.92995065,-0.92995065,-0.92981625,-0.92968184,-0.9295474,-0.92968184,-0.92968184,-0.92968184,-0.92995065,-0.92995065,-0.92981625,-0.92968184,-0.92968184,-0.92968184,-0.92981625,-0.92995065,-0.92995065,-0.92995065,-0.92981625,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.92995065,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92981625,-0.928741,-0.92981625,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.93008506,-0.92981625,-0.92981625,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.92981625,-0.92981625,-0.92981625,-0.92995065,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.92995065,-0.92995065,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.92981625,-0.9284721,-0.92618716,-0.9240365,-0.9224236,-0.92188597,-0.9226924,-0.9239021,-0.92309564,-0.9209451,-0.91946656,-0.9197354,-0.9204075,-0.9205419,-0.9204075,-0.9209451,-0.92175156,-0.9226924,-0.92309564,-0.92336446,-0.9236333,-0.9239021,-0.9240365,-0.9243054,-0.9244398,-0.9244398,-0.9243054,-0.9241709,-0.9237677,-0.92309564,-0.9226924,-0.9226924,-0.92309564,-0.92323005,-0.92296124,-0.922558,-0.9224236,-0.9226924,-0.92323005,-0.92336446,-0.92309564,-0.9224236,-0.92148274,-0.92134833,-0.9224236,-0.9237677,-0.9247086,-0.9256495,-0.9265904,-0.9268592,-0.9265904,-0.9256495,-0.9241709,-0.9237677,-0.9244398,-0.9244398,-0.9239021,-0.9241709,-0.9251119,-0.9255151,-0.9255151,-0.9256495,-0.9256495,-0.9249775,-0.92309564,-0.92296124,-0.92605275,-0.9282033,-0.92780006,-0.9268592,-0.9255151,-0.9237677,-0.9228268,-0.9221548,-0.9205419,-0.9209451,-0.9237677,-0.9253807,-0.9249775,-0.9243054,-0.9237677,-0.9237677,-0.9237677,-0.92309564,-0.9222892,-0.92188597,-0.9221548,-0.92296124,-0.9237677,-0.9240365,-0.9241709,-0.9243054,-0.9244398,-0.9244398,-0.9241709,-0.9240365,-0.9241709,-0.9239021,-0.9236333,-0.92323005,-0.922558,-0.92188597,-0.92175156,-0.92188597,-0.92188597,-0.92175156,-0.92134833,-0.92134833,-0.9209451,-0.9204075,-0.9208107,-0.92323005,-0.92618716,-0.92860657,-0.9295474,-0.929413,-0.92968184,-0.93008506,-0.92995065,-0.92968184,-0.92981625,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.92995065,-0.92981625,-0.93008506,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.92995065,-0.92981625,-0.92981625,-0.92981625,-0.92981625,-0.92968184,-0.92968184,-0.92981625,-0.92981625,-0.92968184,-0.92981625,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.92981625,-0.93008506,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.92995065,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.929413,-0.9283377,-0.929413,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.93008506,-0.92995065,-0.92995065,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.92981625,-0.9282033,-0.92618716,-0.9240365,-0.922558,-0.9220204,-0.9228268,-0.9239021,-0.92336446,-0.9212139,-0.91946656,-0.91919774,-0.91960096,-0.9197354,-0.9197354,-0.92013866,-0.9209451,-0.9221548,-0.92309564,-0.92336446,-0.92349887,-0.9240365,-0.9244398,-0.9245742,-0.9248431,-0.9251119,-0.9252463,-0.9248431,-0.9244398,-0.9240365,-0.9236333,-0.92323005,-0.92309564,-0.92323005,-0.92349887,-0.9236333,-0.92349887,-0.92309564,-0.9226924,-0.9228268,-0.9228268,-0.9221548,-0.9212139,-0.9209451,-0.92134833,-0.922558,-0.9240365,-0.9252463,-0.92605275,-0.926456,-0.92591834,-0.9255151,-0.9247086,-0.92349887,-0.92336446,-0.9251119,-0.9255151,-0.9239021,-0.92336446,-0.9244398,-0.9248431,-0.9247086,-0.9251119,-0.92578393,-0.92632157,-0.92578393,-0.9247086,-0.9255151,-0.92766565,-0.9282033,-0.9269936,-0.92578393,-0.9241709,-0.9224236,-0.9210795,-0.92000425,-0.9198698,-0.92134833,-0.9236333,-0.9245742,-0.9243054,-0.9240365,-0.9239021,-0.9239021,-0.92336446,-0.922558,-0.922558,-0.92296124,-0.9236333,-0.9244398,-0.9249775,-0.9251119,-0.9252463,-0.9255151,-0.9252463,-0.9248431,-0.9248431,-0.9247086,-0.9244398,-0.9240365,-0.9236333,-0.92323005,-0.9221548,-0.9210795,-0.9206763,-0.9208107,-0.9210795,-0.9212139,-0.92161715,-0.9220204,-0.92175156,-0.9208107,-0.9208107,-0.9228268,-0.92578393,-0.9284721,-0.9295474,-0.9295474,-0.92968184,-0.92968184,-0.9295474,-0.92968184,-0.9302195,-0.92995065,-0.92981625,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.92981625,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.93008506,-0.92995065,-0.92995065,-0.92968184,-0.92968184,-0.92968184,-0.92995065,-0.9302195,-0.93008506,-0.92981625,-0.92995065,-0.93008506,-0.93008506,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.92981625,-0.92968184,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.92981625,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9303539,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.92981625,-0.92995065,-0.93008506,-0.93008506,-0.92981625,-0.92995065,-0.9302195,-0.93008506,-0.92995065,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92981625,-0.928741,-0.9295474,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.92981625,-0.92995065,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9303539,-0.92981625,-0.9280689,-0.92605275,-0.9241709,-0.9226924,-0.92188597,-0.9224236,-0.9237677,-0.92349887,-0.92175156,-0.9197354,-0.9185257,-0.9183913,-0.9190633,-0.91919774,-0.91946656,-0.9204075,-0.92161715,-0.9226924,-0.92323005,-0.9236333,-0.9239021,-0.9244398,-0.9248431,-0.9249775,-0.9251119,-0.9253807,-0.9253807,-0.9251119,-0.9247086,-0.9244398,-0.9240365,-0.9237677,-0.92323005,-0.92323005,-0.9236333,-0.9239021,-0.9237677,-0.92309564,-0.92296124,-0.92336446,-0.92336446,-0.922558,-0.92188597,-0.9220204,-0.9224236,-0.92309564,-0.9241709,-0.9251119,-0.9252463,-0.9251119,-0.9249775,-0.9248431,-0.9249775,-0.9244398,-0.9239021,-0.9245742,-0.9253807,-0.9247086,-0.9240365,-0.9239021,-0.92349887,-0.9236333,-0.9252463,-0.9268592,-0.92739683,-0.92739683,-0.9268592,-0.92605275,-0.9265904,-0.9272624,-0.92618716,-0.9247086,-0.9241709,-0.9236333,-0.92188597,-0.9197354,-0.9185257,-0.91946656,-0.92148274,-0.92349887,-0.9240365,-0.9237677,-0.9236333,-0.9239021,-0.9237677,-0.92309564,-0.92296124,-0.9236333,-0.9244398,-0.9249775,-0.9255151,-0.92578393,-0.92591834,-0.92605275,-0.92618716,-0.92578393,-0.9255151,-0.9251119,-0.9247086,-0.9243054,-0.9239021,-0.92349887,-0.9226924,-0.92148274,-0.92013866,-0.9197354,-0.92000425,-0.9205419,-0.9210795,-0.92188597,-0.9226924,-0.9224236,-0.9212139,-0.9209451,-0.9224236,-0.9252463,-0.9283377,-0.92968184,-0.929413,-0.9291442,-0.929413,-0.92981625,-0.92995065,-0.92995065,-0.92995065,-0.92981625,-0.92981625,-0.92995065,-0.93008506,-0.92995065,-0.92981625,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.92981625,-0.92968184,-0.92995065,-0.9302195,-0.9303539,-0.9304883,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.92981625,-0.92995065,-0.92981625,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.92995065,-0.9303539,-0.93008506,-0.9302195,-0.92995065,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.92995065,-0.92981625,-0.92995065,-0.9302195,-0.92995065,-0.92981625,-0.92981625,-0.92968184,-0.92995065,-0.93008506,-0.9295474,-0.93008506,-0.9302195,-0.93008506,-0.9292786,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9295474,-0.9295474,-0.93008506,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.92995065,-0.92995065,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.92995065,-0.92860657,-0.92618716,-0.9240365,-0.922558,-0.92175156,-0.9221548,-0.92349887,-0.9240365,-0.92296124,-0.9206763,-0.9183913,-0.917316,-0.91771924,-0.9186601,-0.91933215,-0.9197354,-0.9205419,-0.92188597,-0.92309564,-0.9237677,-0.9240365,-0.9241709,-0.9247086,-0.9251119,-0.9252463,-0.9253807,-0.9255151,-0.9255151,-0.9253807,-0.9251119,-0.9247086,-0.9244398,-0.9240365,-0.9237677,-0.9237677,-0.9240365,-0.9240365,-0.9236333,-0.92309564,-0.92309564,-0.9236333,-0.9240365,-0.9240365,-0.9239021,-0.9239021,-0.9241709,-0.9247086,-0.9251119,-0.9247086,-0.9240365,-0.9241709,-0.9245742,-0.9244398,-0.9244398,-0.9245742,-0.9241709,-0.9237677,-0.9244398,-0.9251119,-0.9243054,-0.9226924,-0.9224236,-0.9237677,-0.9256495,-0.9267248,-0.9268592,-0.9267248,-0.9268592,-0.9267248,-0.9265904,-0.92605275,-0.9248431,-0.9237677,-0.9240365,-0.9251119,-0.9247086,-0.9236333,-0.92309564,-0.92309564,-0.92323005,-0.92349887,-0.9237677,-0.9236333,-0.9236333,-0.9237677,-0.9237677,-0.9236333,-0.9237677,-0.9243054,-0.9251119,-0.92578393,-0.92618716,-0.926456,-0.92632157,-0.92632157,-0.92632157,-0.92632157,-0.92605275,-0.92578393,-0.9253807,-0.9248431,-0.9243054,-0.9237677,-0.92296124,-0.9221548,-0.9210795,-0.92000425,-0.91946656,-0.91946656,-0.9198698,-0.9206763,-0.9221548,-0.92323005,-0.9228268,-0.92134833,-0.9209451,-0.922558,-0.9251119,-0.92793447,-0.9292786,-0.9295474,-0.9295474,-0.92968184,-0.92981625,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.92995065,-0.92981625,-0.92981625,-0.92995065,-0.92995065,-0.92981625,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.92981625,-0.92981625,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.92968184,-0.92981625,-0.92995065,-0.92981625,-0.92981625,-0.92968184,-0.92968184,-0.92981625,-0.92995065,-0.92995065,-0.92995065,-0.9303539,-0.92968184,-0.92995065,-0.93008506,-0.9302195,-0.92981625,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.929413,-0.9291442,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9304883,-0.9292786,-0.9265904,-0.9241709,-0.922558,-0.92161715,-0.9221548,-0.9236333,-0.9245742,-0.9240365,-0.9221548,-0.91933215,-0.9170472,-0.916644,-0.9174504,-0.9185257,-0.9190633,-0.91960096,-0.9206763,-0.9220204,-0.92323005,-0.9239021,-0.9241709,-0.9244398,-0.9249775,-0.9253807,-0.9255151,-0.9256495,-0.92578393,-0.92578393,-0.9256495,-0.9255151,-0.9252463,-0.9248431,-0.9244398,-0.9241709,-0.9243054,-0.9244398,-0.9241709,-0.9236333,-0.92323005,-0.92323005,-0.92349887,-0.9240365,-0.9245742,-0.9247086,-0.9244398,-0.9247086,-0.9252463,-0.9249775,-0.9240365,-0.9236333,-0.9241709,-0.9245742,-0.9243054,-0.9237677,-0.9236333,-0.9237677,-0.9241709,-0.9248431,-0.9251119,-0.9245742,-0.92309564,-0.9224236,-0.9237677,-0.9249775,-0.9245742,-0.9239021,-0.9243054,-0.9252463,-0.92578393,-0.92618716,-0.92605275,-0.9249775,-0.9241709,-0.9247086,-0.9256495,-0.92578393,-0.9252463,-0.9253807,-0.9253807,-0.9249775,-0.9243054,-0.9236333,-0.92349887,-0.9237677,-0.9240365,-0.9240365,-0.9244398,-0.9247086,-0.9251119,-0.92578393,-0.92632157,-0.9268592,-0.9268592,-0.9267248,-0.9265904,-0.9267248,-0.9267248,-0.9267248,-0.92618716,-0.9256495,-0.9251119,-0.9247086,-0.9241709,-0.92323005,-0.9220204,-0.9209451,-0.92000425,-0.9190633,-0.9181225,-0.91798806,-0.9187945,-0.9205419,-0.9224236,-0.92349887,-0.92296124,-0.92161715,-0.9212139,-0.9228268,-0.9255151,-0.9280689,-0.929413,-0.92968184,-0.9295474,-0.9295474,-0.92981625,-0.92995065,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.92981625,-0.9295474,-0.9295474,-0.9295474,-0.92968184,-0.92968184,-0.92968184,-0.92981625,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.92981625,-0.92968184,-0.92981625,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.92995065,-0.92981625,-0.92981625,-0.92981625,-0.92981625,-0.92981625,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.92995065,-0.92968184,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9282033,-0.92860657,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.92995065,-0.92968184,-0.92968184,-0.92981625,-0.92981625,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9303539,-0.9302195,-0.92981625,-0.92753124,-0.9247086,-0.92296124,-0.9222892,-0.9224236,-0.9237677,-0.9255151,-0.92591834,-0.9243054,-0.9210795,-0.91758484,-0.9158375,-0.91624075,-0.917316,-0.9181225,-0.9187945,-0.91960096,-0.9206763,-0.9221548,-0.92349887,-0.9240365,-0.9243054,-0.9247086,-0.9251119,-0.9253807,-0.9255151,-0.92578393,-0.92591834,-0.92578393,-0.9255151,-0.9253807,-0.9252463,-0.9248431,-0.9244398,-0.9243054,-0.9243054,-0.9244398,-0.9241709,-0.9240365,-0.9240365,-0.9239021,-0.9237677,-0.9239021,-0.9243054,-0.9243054,-0.9241709,-0.9248431,-0.9256495,-0.9255151,-0.9247086,-0.9243054,-0.9244398,-0.9245742,-0.9244398,-0.9241709,-0.9239021,-0.92349887,-0.92336446,-0.92336446,-0.92323005,-0.92309564,-0.9228268,-0.9224236,-0.9226924,-0.92323005,-0.92309564,-0.92296124,-0.9239021,-0.9248431,-0.9253807,-0.92605275,-0.92632157,-0.9255151,-0.9244398,-0.9247086,-0.92578393,-0.92605275,-0.9255151,-0.9252463,-0.9252463,-0.9251119,-0.9243054,-0.9236333,-0.9237677,-0.9243054,-0.9244398,-0.9244398,-0.9248431,-0.9253807,-0.92578393,-0.92632157,-0.9268592,-0.927128,-0.927128,-0.927128,-0.9269936,-0.9269936,-0.9268592,-0.9267248,-0.926456,-0.92591834,-0.9253807,-0.9251119,-0.9244398,-0.92336446,-0.9220204,-0.9206763,-0.91946656,-0.9183913,-0.9174504,-0.9167784,-0.9171816,-0.9187945,-0.9212139,-0.92296124,-0.92336446,-0.922558,-0.92188597,-0.9224236,-0.9237677,-0.92591834,-0.9283377,-0.92981625,-0.92995065,-0.92981625,-0.92981625,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.92995065,-0.92981625,-0.92968184,-0.9295474,-0.9295474,-0.92968184,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.92981625,-0.92968184,-0.92981625,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.92981625,-0.92995065,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.92995065,-0.92981625,-0.92995065,-0.92995065,-0.92995065,-0.92981625,-0.92981625,-0.92995065,-0.93008506,-0.93008506,-0.92981625,-0.92968184,-0.92981625,-0.93008506,-0.93008506,-0.92995065,-0.92968184,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9288754,-0.929413,-0.9302195,-0.9302195,-0.92995065,-0.93008506,-0.9302195,-0.92995065,-0.93008506,-0.9295474,-0.92981625,-0.93008506,-0.92995065,-0.92981625,-0.92968184,-0.92968184,-0.92981625,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.92968184,-0.92968184,-0.92995065,-0.93008506,-0.9303539,-0.9303539,-0.9304883,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9303539,-0.9302195,-0.9284721,-0.9253807,-0.92336446,-0.922558,-0.9228268,-0.9240365,-0.92578393,-0.927128,-0.9265904,-0.9240365,-0.92027307,-0.9169128,-0.91529983,-0.9158375,-0.9171816,-0.91798806,-0.9185257,-0.91960096,-0.9208107,-0.9220204,-0.92336446,-0.9243054,-0.9245742,-0.9247086,-0.9249775,-0.9252463,-0.9252463,-0.9255151,-0.9256495,-0.9256495,-0.9253807,-0.9251119,-0.9248431,-0.9245742,-0.9244398,-0.9243054,-0.9243054,-0.9243054,-0.9244398,-0.9245742,-0.9243054,-0.9240365,-0.9240365,-0.9241709,-0.9241709,-0.9236333,-0.9239021,-0.9251119,-0.92632157,-0.92605275,-0.9249775,-0.9243054,-0.9243054,-0.9243054,-0.9245742,-0.9247086,-0.9248431,-0.9244398,-0.9236333,-0.9226924,-0.9221548,-0.9220204,-0.92296124,-0.9237677,-0.92336446,-0.92309564,-0.9236333,-0.9240365,-0.9245742,-0.9252463,-0.9255151,-0.9256495,-0.92578393,-0.9255151,-0.9244398,-0.9241709,-0.9253807,-0.926456,-0.92578393,-0.9247086,-0.9245742,-0.9244398,-0.9240365,-0.9237677,-0.9241709,-0.9248431,-0.9248431,-0.9245742,-0.9251119,-0.92605275,-0.92632157,-0.926456,-0.9267248,-0.927128,-0.927128,-0.927128,-0.927128,-0.927128,-0.9269936,-0.9269936,-0.9267248,-0.92632157,-0.9256495,-0.9252463,-0.9247086,-0.9236333,-0.9221548,-0.9206763,-0.91919774,-0.9182569,-0.9174504,-0.91650957,-0.91597193,-0.9171816,-0.9198698,-0.922558,-0.9237677,-0.92336446,-0.9226924,-0.9226924,-0.92323005,-0.9244398,-0.9265904,-0.928741,-0.92981625,-0.92995065,-0.92995065,-0.92981625,-0.92981625,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.92981625,-0.92981625,-0.92995065,-0.93008506,-0.92995065,-0.92981625,-0.92981625,-0.92968184,-0.92968184,-0.92981625,-0.92981625,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.92995065,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.92981625,-0.92981625,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.92995065,-0.92968184,-0.92995065,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.92981625,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.929413,-0.92981625,-0.9303539,-0.9303539,-0.93008506,-0.9302195,-0.92995065,-0.93008506,-0.92968184,-0.92968184,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.92995065,-0.92981625,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.92995065,-0.92981625,-0.93008506,-0.9302195,-0.93008506,-0.9304883,-0.9302195,-0.9303539,-0.9303539,-0.93008506,-0.9303539,-0.9303539,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.92968184,-0.92632157,-0.9236333,-0.9228268,-0.9226924,-0.9236333,-0.9255151,-0.927128,-0.92739683,-0.92618716,-0.92336446,-0.91946656,-0.91637516,-0.91489655,-0.91556865,-0.9171816,-0.9181225,-0.9185257,-0.91933215,-0.9206763,-0.92175156,-0.92309564,-0.9243054,-0.9247086,-0.9245742,-0.9244398,-0.9247086,-0.9249775,-0.9251119,-0.9253807,-0.9252463,-0.9251119,-0.9248431,-0.9245742,-0.9244398,-0.9245742,-0.9245742,-0.9244398,-0.9243054,-0.9244398,-0.9243054,-0.9237677,-0.9236333,-0.9240365,-0.9244398,-0.9240365,-0.92349887,-0.9239021,-0.9255151,-0.92632157,-0.9255151,-0.9243054,-0.9237677,-0.9237677,-0.9239021,-0.9243054,-0.9245742,-0.9245742,-0.9243054,-0.9239021,-0.9237677,-0.9237677,-0.9236333,-0.9243054,-0.9251119,-0.9247086,-0.92349887,-0.9237677,-0.9244398,-0.9247086,-0.9248431,-0.9252463,-0.9253807,-0.9253807,-0.9253807,-0.9248431,-0.9243054,-0.9249775,-0.92605275,-0.9256495,-0.9244398,-0.9240365,-0.9239021,-0.9237677,-0.9240365,-0.9247086,-0.9251119,-0.9248431,-0.9244398,-0.9247086,-0.9253807,-0.92605275,-0.92632157,-0.9265904,-0.9268592,-0.9268592,-0.9269936,-0.927128,-0.92739683,-0.927128,-0.9268592,-0.9267248,-0.92632157,-0.9256495,-0.9252463,-0.9248431,-0.9240365,-0.9226924,-0.9212139,-0.9198698,-0.9187945,-0.91798806,-0.9169128,-0.91597193,-0.91637516,-0.9186601,-0.9220204,-0.9244398,-0.9247086,-0.9236333,-0.92296124,-0.92309564,-0.9237677,-0.9249775,-0.9269936,-0.9290098,-0.93008506,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.92981625,-0.92981625,-0.92995065,-0.92981625,-0.92981625,-0.92968184,-0.92968184,-0.92995065,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.92995065,-0.92968184,-0.92981625,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.92995065,-0.93008506,-0.93008506,-0.92981625,-0.92981625,-0.93008506,-0.93008506,-0.92981625,-0.92995065,-0.93008506,-0.9295474,-0.9295474,-0.92981625,-0.92995065,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9302195,-0.9283377,-0.9292786,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.9303539,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9302195,-0.93008506,-0.92995065,-0.9295474,-0.92766565,-0.9241709,-0.9226924,-0.9228268,-0.92336446,-0.9247086,-0.9265904,-0.92753124,-0.927128,-0.9253807,-0.9226924,-0.91919774,-0.91610634,-0.91476214,-0.91543424,-0.9169128,-0.91798806,-0.9187945,-0.91960096,-0.9206763,-0.92188597,-0.92309564,-0.9239021,-0.9243054,-0.9241709,-0.9239021,-0.9240365,-0.9245742,-0.9248431,-0.9245742,-0.9244398,-0.9244398,-0.9241709,-0.9240365,-0.9241709,-0.9241709,-0.9243054,-0.9243054,-0.9240365,-0.9236333,-0.92336446,-0.9236333,-0.9237677,-0.9237677,-0.9239021,-0.9236333,-0.92323005,-0.9241709,-0.92578393,-0.9265904,-0.92605275,-0.9248431,-0.9239021,-0.92349887,-0.9236333,-0.9240365,-0.9244398,-0.9243054,-0.9239021,-0.9236333,-0.9237677,-0.9240365,-0.9241709,-0.9248431,-0.9255151,-0.9248431,-0.9237677,-0.9239021,-0.9247086,-0.9248431,-0.9247086,-0.9249775,-0.9251119,-0.9251119,-0.9251119,-0.9249775,-0.9244398,-0.9245742,-0.9255151,-0.92591834,-0.9251119,-0.9241709,-0.9237677,-0.9237677,-0.9244398,-0.9248431,-0.9248431,-0.9247086,-0.9244398,-0.9244398,-0.9248431,-0.9253807,-0.92605275,-0.92632157,-0.92632157,-0.926456,-0.9265904,-0.9268592,-0.9269936,-0.927128,-0.9269936,-0.9267248,-0.92618716,-0.9256495,-0.9253807,-0.9249775,-0.9240365,-0.9226924,-0.9212139,-0.92000425,-0.9190633,-0.91785365,-0.916644,-0.9158375,-0.91624075,-0.91798806,-0.92134833,-0.9248431,-0.92618716,-0.9249775,-0.92336446,-0.92323005,-0.9237677,-0.9243054,-0.9253807,-0.92753124,-0.9295474,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.92981625,-0.92981625,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.92981625,-0.92968184,-0.92968184,-0.92995065,-0.9302195,-0.9302195,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.93008506,-0.92981625,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.92981625,-0.92995065,-0.92995065,-0.93008506,-0.9303539,-0.93008506,-0.92981625,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.92981625,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.93008506,-0.9290098,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.92995065,-0.92981625,-0.92981625,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9302195,-0.92995065,-0.929413,-0.9288754,-0.92578393,-0.92309564,-0.922558,-0.92309564,-0.9243054,-0.926456,-0.92793447,-0.92780006,-0.9268592,-0.9256495,-0.92336446,-0.91960096,-0.91597193,-0.91462773,-0.91556865,-0.9167784,-0.91758484,-0.9186601,-0.92000425,-0.9209451,-0.92161715,-0.9222892,-0.92309564,-0.92349887,-0.92349887,-0.92349887,-0.9237677,-0.9241709,-0.9244398,-0.9244398,-0.9241709,-0.9239021,-0.9239021,-0.9239021,-0.9237677,-0.9236333,-0.9237677,-0.9240365,-0.9237677,-0.92309564,-0.92309564,-0.9237677,-0.9237677,-0.9236333,-0.92349887,-0.92309564,-0.92309564,-0.9243054,-0.92578393,-0.926456,-0.92591834,-0.9247086,-0.92349887,-0.92309564,-0.92336446,-0.9237677,-0.9240365,-0.9239021,-0.9237677,-0.9239021,-0.9240365,-0.9240365,-0.9244398,-0.9251119,-0.9253807,-0.9247086,-0.9239021,-0.9239021,-0.9241709,-0.9241709,-0.9243054,-0.9244398,-0.9244398,-0.9244398,-0.9245742,-0.9244398,-0.9240365,-0.9243054,-0.9252463,-0.92591834,-0.9251119,-0.9237677,-0.92323005,-0.92336446,-0.9240365,-0.9243054,-0.9240365,-0.9241709,-0.9244398,-0.9243054,-0.9243054,-0.9249775,-0.9256495,-0.92605275,-0.92605275,-0.92605275,-0.92618716,-0.92632157,-0.9265904,-0.9267248,-0.9265904,-0.92618716,-0.92591834,-0.9256495,-0.9252463,-0.9247086,-0.9237677,-0.922558,-0.9210795,-0.9198698,-0.9189289,-0.91758484,-0.91650957,-0.91597193,-0.91624075,-0.91785365,-0.92134833,-0.9252463,-0.9272624,-0.9268592,-0.9252463,-0.9239021,-0.9237677,-0.9239021,-0.9241709,-0.92578393,-0.9284721,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.92981625,-0.92981625,-0.92981625,-0.92981625,-0.92981625,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.92981625,-0.92981625,-0.92981625,-0.92981625,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.92968184,-0.9295474,-0.92995065,-0.92995065,-0.93008506,-0.92995065,-0.92981625,-0.92968184,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92968184,-0.9288754,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.92995065,-0.9292786,-0.92739683,-0.9244398,-0.92296124,-0.9228268,-0.9236333,-0.9256495,-0.9280689,-0.9292786,-0.92860657,-0.92753124,-0.926456,-0.9241709,-0.9198698,-0.91597193,-0.91476214,-0.9157031,-0.9169128,-0.9174504,-0.9181225,-0.91919774,-0.92013866,-0.9209451,-0.92188597,-0.9228268,-0.92323005,-0.92323005,-0.92309564,-0.92349887,-0.9240365,-0.9240365,-0.9237677,-0.92336446,-0.92336446,-0.9237677,-0.9239021,-0.9236333,-0.92349887,-0.92349887,-0.92336446,-0.92309564,-0.9226924,-0.92309564,-0.9237677,-0.92349887,-0.9236333,-0.9239021,-0.92349887,-0.92336446,-0.9244398,-0.9256495,-0.92591834,-0.9253807,-0.9243054,-0.9236333,-0.92349887,-0.92349887,-0.92349887,-0.9237677,-0.92349887,-0.92349887,-0.9240365,-0.9241709,-0.9239021,-0.9244398,-0.9255151,-0.9255151,-0.9245742,-0.9240365,-0.9240365,-0.9239021,-0.9237677,-0.9239021,-0.9239021,-0.9240365,-0.9240365,-0.9241709,-0.9240365,-0.9236333,-0.92349887,-0.9241709,-0.9251119,-0.9244398,-0.9228268,-0.9224236,-0.92336446,-0.9239021,-0.9236333,-0.92349887,-0.9239021,-0.9243054,-0.9243054,-0.9240365,-0.9241709,-0.9247086,-0.9253807,-0.92591834,-0.92605275,-0.92591834,-0.92591834,-0.92605275,-0.92605275,-0.92605275,-0.92578393,-0.9253807,-0.9251119,-0.9248431,-0.9243054,-0.92349887,-0.9224236,-0.9209451,-0.91933215,-0.9181225,-0.917316,-0.9167784,-0.91650957,-0.91637516,-0.91758484,-0.9212139,-0.9255151,-0.92793447,-0.9282033,-0.927128,-0.9248431,-0.92336446,-0.92349887,-0.9236333,-0.9241709,-0.9267248,-0.92968184,-0.92995065,-0.9302195,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.93008506,-0.92995065,-0.92981625,-0.92981625,-0.92968184,-0.92968184,-0.92981625,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.92995065,-0.92981625,-0.92981625,-0.93008506,-0.9303539,-0.92995065,-0.92981625,-0.92981625,-0.929413,-0.9295474,-0.92981625,-0.93008506,-0.93008506,-0.9302195,-0.92981625,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9295474,-0.9290098,-0.92981625,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.92981625,-0.93008506,-0.93008506,-0.92981625,-0.92981625,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.92968184,-0.9284721,-0.9255151,-0.92323005,-0.9226924,-0.92323005,-0.9245742,-0.9268592,-0.9290098,-0.929413,-0.928741,-0.92793447,-0.9269936,-0.9245742,-0.9204075,-0.91637516,-0.91503096,-0.9157031,-0.916644,-0.917316,-0.91798806,-0.9185257,-0.91919774,-0.9206763,-0.9220204,-0.922558,-0.9228268,-0.92309564,-0.92323005,-0.92336446,-0.92349887,-0.92336446,-0.92309564,-0.92309564,-0.92336446,-0.92336446,-0.9236333,-0.9236333,-0.92323005,-0.9226924,-0.9224236,-0.9224236,-0.9228268,-0.92349887,-0.9236333,-0.9237677,-0.9241709,-0.9241709,-0.92336446,-0.92309564,-0.9243054,-0.9255151,-0.9255151,-0.9245742,-0.9236333,-0.92323005,-0.92309564,-0.9228268,-0.9228268,-0.92323005,-0.92309564,-0.92309564,-0.9240365,-0.9244398,-0.9241709,-0.9249775,-0.92632157,-0.92605275,-0.9248431,-0.9241709,-0.9243054,-0.9243054,-0.9240365,-0.9239021,-0.9240365,-0.9240365,-0.9239021,-0.9239021,-0.9241709,-0.9237677,-0.9224236,-0.9226924,-0.9241709,-0.9240365,-0.9222892,-0.92161715,-0.92309564,-0.9244398,-0.9239021,-0.92323005,-0.9237677,-0.9241709,-0.9240365,-0.9237677,-0.9237677,-0.9239021,-0.9244398,-0.9252463,-0.9255151,-0.9255151,-0.9255151,-0.9255151,-0.9255151,-0.9255151,-0.9251119,-0.9247086,-0.9244398,-0.9244398,-0.9239021,-0.92296124,-0.92188597,-0.9204075,-0.9185257,-0.917316,-0.9167784,-0.91650957,-0.91624075,-0.91624075,-0.917316,-0.9204075,-0.9247086,-0.92766565,-0.9284721,-0.92793447,-0.92618716,-0.9237677,-0.92296124,-0.92336446,-0.92349887,-0.9247086,-0.92766565,-0.92995065,-0.92995065,-0.92981625,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9304883,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.92995065,-0.92995065,-0.92995065,-0.92968184,-0.92981625,-0.92995065,-0.92995065,-0.93008506,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.93008506,-0.92995065,-0.92981625,-0.92981625,-0.92968184,-0.92981625,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.92981625,-0.92995065,-0.92995065,-0.92995065,-0.9295474,-0.92968184,-0.92981625,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92968184,-0.9295474,-0.92995065,-0.93008506,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.92995065,-0.92981625,-0.93008506,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9303539,-0.9302195,-0.92995065,-0.92995065,-0.93008506,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.92995065,-0.9291442,-0.9268592,-0.9240365,-0.9228268,-0.92296124,-0.9237677,-0.9253807,-0.9272624,-0.9284721,-0.9288754,-0.92860657,-0.9282033,-0.92753124,-0.9253807,-0.9212139,-0.9169128,-0.91503096,-0.91556865,-0.91650957,-0.9171816,-0.91771924,-0.9182569,-0.91919774,-0.9206763,-0.92188597,-0.9224236,-0.9228268,-0.92309564,-0.92296124,-0.92296124,-0.92296124,-0.9228268,-0.9228268,-0.92296124,-0.92296124,-0.92323005,-0.9237677,-0.9237677,-0.9228268,-0.92175156,-0.92134833,-0.92188597,-0.922558,-0.92309564,-0.9239021,-0.9240365,-0.9239021,-0.92323005,-0.9222892,-0.9226924,-0.9247086,-0.92591834,-0.9248431,-0.92336446,-0.9228268,-0.9228268,-0.9226924,-0.9222892,-0.9222892,-0.9226924,-0.92296124,-0.92323005,-0.9240365,-0.9244398,-0.9245742,-0.92578393,-0.9269936,-0.92632157,-0.9249775,-0.9243054,-0.9243054,-0.9241709,-0.9236333,-0.92349887,-0.9239021,-0.9239021,-0.92309564,-0.9228268,-0.92349887,-0.9236333,-0.92161715,-0.9206763,-0.92309564,-0.9240365,-0.92161715,-0.92027307,-0.92188597,-0.9241709,-0.9244398,-0.92309564,-0.922558,-0.92309564,-0.92323005,-0.92309564,-0.92349887,-0.9236333,-0.9236333,-0.9241709,-0.9247086,-0.9248431,-0.9247086,-0.9247086,-0.9247086,-0.9245742,-0.9244398,-0.9241709,-0.9240365,-0.9237677,-0.92336446,-0.9226924,-0.92148274,-0.91946656,-0.91758484,-0.9167784,-0.91637516,-0.91610634,-0.91624075,-0.91650957,-0.917316,-0.92027307,-0.9245742,-0.92739683,-0.9280689,-0.9280689,-0.927128,-0.9251119,-0.92323005,-0.92309564,-0.9236333,-0.9241709,-0.92591834,-0.928741,-0.92968184,-0.92981625,-0.92995065,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.9303539,-0.9304883,-0.9302195,-0.92995065,-0.9302195,-0.93008506,-0.93008506,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.92995065,-0.92995065,-0.9302195,-0.92981625,-0.92968184,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.92981625,-0.92968184,-0.9295474,-0.9290098,-0.9290098,-0.92995065,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9291442,-0.9292786,-0.92981625,-0.92995065,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.9302195,-0.9303539,-0.9303539,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.93008506,-0.92981625,-0.92981625,-0.9282033,-0.9251119,-0.92309564,-0.92296124,-0.9236333,-0.9247086,-0.92632157,-0.92753124,-0.92753124,-0.92753124,-0.9282033,-0.928741,-0.9284721,-0.927128,-0.92349887,-0.9186601,-0.9158375,-0.9157031,-0.91650957,-0.9170472,-0.91758484,-0.9181225,-0.91933215,-0.9206763,-0.92175156,-0.922558,-0.92336446,-0.92349887,-0.92309564,-0.9226924,-0.9226924,-0.9228268,-0.92296124,-0.92296124,-0.92296124,-0.92336446,-0.9236333,-0.92323005,-0.9220204,-0.9209451,-0.9209451,-0.92175156,-0.922558,-0.9236333,-0.9241709,-0.9240365,-0.92336446,-0.9220204,-0.92148274,-0.92296124,-0.9255151,-0.92591834,-0.9247086,-0.9244398,-0.9247086,-0.9240365,-0.92323005,-0.9228268,-0.9228268,-0.9228268,-0.92296124,-0.92349887,-0.9243054,-0.9244398,-0.9245742,-0.92591834,-0.927128,-0.9265904,-0.9251119,-0.9245742,-0.9244398,-0.9243054,-0.9240365,-0.9236333,-0.9236333,-0.9236333,-0.92323005,-0.9224236,-0.9222892,-0.92296124,-0.92296124,-0.9226924,-0.9239021,-0.9241709,-0.92148274,-0.9197354,-0.92134833,-0.9236333,-0.9245742,-0.92349887,-0.92134833,-0.9212139,-0.922558,-0.92296124,-0.9228268,-0.92309564,-0.92309564,-0.92323005,-0.9237677,-0.9243054,-0.9243054,-0.9243054,-0.9241709,-0.9241709,-0.9241709,-0.9240365,-0.9236333,-0.92336446,-0.92309564,-0.922558,-0.9210795,-0.9187945,-0.917316,-0.916644,-0.91624075,-0.91624075,-0.91650957,-0.916644,-0.9174504,-0.9205419,-0.9251119,-0.92780006,-0.9282033,-0.9283377,-0.9283377,-0.9269936,-0.9247086,-0.92336446,-0.9236333,-0.9239021,-0.9245742,-0.9268592,-0.92968184,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.92981625,-0.92968184,-0.92995065,-0.92995065,-0.9295474,-0.9290098,-0.9295474,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9283377,-0.9295474,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.9303539,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.92981625,-0.92995065,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.93008506,-0.93008506,-0.93008506,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.92995065,-0.9295474,-0.9291442,-0.926456,-0.9236333,-0.9228268,-0.92336446,-0.9241709,-0.92578393,-0.92739683,-0.92739683,-0.92632157,-0.92632157,-0.927128,-0.92766565,-0.9283377,-0.9288754,-0.9268592,-0.92175156,-0.917316,-0.91597193,-0.91624075,-0.91650957,-0.9171816,-0.91798806,-0.9190633,-0.9204075,-0.92175156,-0.9228268,-0.9236333,-0.9236333,-0.92323005,-0.922558,-0.9224236,-0.9228268,-0.92323005,-0.92309564,-0.92309564,-0.92323005,-0.9228268,-0.9220204,-0.9209451,-0.9205419,-0.92148274,-0.92296124,-0.9241709,-0.9245742,-0.9241709,-0.92309564,-0.92148274,-0.92027307,-0.9209451,-0.92349887,-0.9256495,-0.9253807,-0.9247086,-0.9249775,-0.9247086,-0.9237677,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92323005,-0.9237677,-0.9244398,-0.9244398,-0.9244398,-0.9255151,-0.9268592,-0.926456,-0.9251119,-0.9245742,-0.9244398,-0.9240365,-0.9237677,-0.9237677,-0.92349887,-0.9236333,-0.9236333,-0.92336446,-0.92323005,-0.9239021,-0.9248431,-0.9247086,-0.9243054,-0.92349887,-0.9212139,-0.91960096,-0.9209451,-0.92309564,-0.9237677,-0.92336446,-0.92148274,-0.92027307,-0.9212139,-0.92188597,-0.92175156,-0.922558,-0.92323005,-0.92309564,-0.92309564,-0.92349887,-0.92349887,-0.92323005,-0.92336446,-0.9237677,-0.9241709,-0.9240365,-0.9237677,-0.9236333,-0.92336446,-0.9224236,-0.9208107,-0.9187945,-0.9174504,-0.916644,-0.91610634,-0.91597193,-0.91624075,-0.91610634,-0.9174504,-0.92161715,-0.926456,-0.928741,-0.9288754,-0.92860657,-0.9288754,-0.9280689,-0.92591834,-0.9239021,-0.92336446,-0.9237677,-0.9239021,-0.9251119,-0.9282033,-0.93008506,-0.92995065,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.92995065,-0.92981625,-0.92981625,-0.92981625,-0.92981625,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.9302195,-0.92995065,-0.92981625,-0.92981625,-0.92968184,-0.9295474,-0.92981625,-0.92995065,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9269936,-0.92860657,-0.9295474,-0.92995065,-0.9302195,-0.92995065,-0.9302195,-0.9302195,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.92981625,-0.92995065,-0.9302195,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.92968184,-0.9295474,-0.92793447,-0.9244398,-0.9226924,-0.9228268,-0.92349887,-0.9248431,-0.9268592,-0.92739683,-0.92632157,-0.9252463,-0.9256495,-0.926456,-0.926456,-0.9267248,-0.92860657,-0.928741,-0.9248431,-0.91919774,-0.91624075,-0.91597193,-0.91597193,-0.91650957,-0.91785365,-0.9190633,-0.92027307,-0.92188597,-0.92296124,-0.92336446,-0.92336446,-0.92296124,-0.9222892,-0.9222892,-0.922558,-0.9228268,-0.9226924,-0.9226924,-0.9220204,-0.9212139,-0.9206763,-0.9209451,-0.92175156,-0.9228268,-0.9239021,-0.9247086,-0.9247086,-0.9237677,-0.92148274,-0.91919774,-0.9187945,-0.9209451,-0.9239021,-0.9253807,-0.9253807,-0.9251119,-0.9245742,-0.9236333,-0.92296124,-0.9228268,-0.92296124,-0.9228268,-0.92323005,-0.9239021,-0.9241709,-0.9243054,-0.9241709,-0.9244398,-0.9252463,-0.92618716,-0.92605275,-0.9251119,-0.9245742,-0.9241709,-0.9237677,-0.92349887,-0.9236333,-0.9236333,-0.9237677,-0.9239021,-0.9240365,-0.9243054,-0.9248431,-0.9247086,-0.9239021,-0.9237677,-0.9236333,-0.92134833,-0.9190633,-0.92027307,-0.9226924,-0.92336446,-0.92323005,-0.9224236,-0.9210795,-0.9206763,-0.9210795,-0.9208107,-0.9212139,-0.922558,-0.92296124,-0.9228268,-0.92309564,-0.92309564,-0.9228268,-0.9226924,-0.92309564,-0.9236333,-0.9239021,-0.9240365,-0.9241709,-0.9239021,-0.922558,-0.9205419,-0.9189289,-0.91771924,-0.91637516,-0.91556865,-0.9157031,-0.9158375,-0.9157031,-0.9181225,-0.92336446,-0.92753124,-0.92860657,-0.928741,-0.9288754,-0.9288754,-0.9283377,-0.926456,-0.9240365,-0.9226924,-0.92323005,-0.9237677,-0.9241709,-0.92632157,-0.9290098,-0.92995065,-0.9302195,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.92995065,-0.92981625,-0.92981625,-0.92968184,-0.92968184,-0.92981625,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.92981625,-0.92968184,-0.92981625,-0.92968184,-0.9295474,-0.92968184,-0.92995065,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9272624,-0.9292786,-0.93008506,-0.9302195,-0.9302195,-0.9295474,-0.92995065,-0.92995065,-0.92981625,-0.93008506,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9303539,-0.93008506,-0.9302195,-0.9303539,-0.93008506,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.929413,-0.929413,-0.92632157,-0.92309564,-0.9224236,-0.92296124,-0.9240365,-0.92591834,-0.92739683,-0.9267248,-0.9249775,-0.9245742,-0.9255151,-0.92632157,-0.92618716,-0.92605275,-0.9272624,-0.9290098,-0.92753124,-0.9220204,-0.9174504,-0.91610634,-0.9158375,-0.91637516,-0.91771924,-0.91933215,-0.9206763,-0.9221548,-0.92309564,-0.92336446,-0.92323005,-0.9228268,-0.9222892,-0.9222892,-0.922558,-0.922558,-0.92296124,-0.9224236,-0.9209451,-0.9198698,-0.91960096,-0.9208107,-0.9224236,-0.9236333,-0.9247086,-0.9255151,-0.9249775,-0.92336446,-0.9209451,-0.9189289,-0.9186601,-0.9210795,-0.9237677,-0.9247086,-0.9248431,-0.9249775,-0.9245742,-0.92323005,-0.9226924,-0.92296124,-0.92309564,-0.92309564,-0.9236333,-0.9241709,-0.9241709,-0.9237677,-0.9240365,-0.9245742,-0.9251119,-0.9253807,-0.9255151,-0.9251119,-0.9245742,-0.9241709,-0.9239021,-0.9237677,-0.9236333,-0.9236333,-0.9236333,-0.9237677,-0.9237677,-0.9240365,-0.9245742,-0.9247086,-0.9241709,-0.9240365,-0.9236333,-0.9212139,-0.9185257,-0.91919774,-0.9222892,-0.9236333,-0.9236333,-0.9237677,-0.922558,-0.92027307,-0.92000425,-0.92013866,-0.9197354,-0.9206763,-0.9222892,-0.9228268,-0.92296124,-0.92323005,-0.92323005,-0.92309564,-0.92309564,-0.92336446,-0.9237677,-0.9240365,-0.9244398,-0.9244398,-0.92309564,-0.9206763,-0.9187945,-0.91758484,-0.91610634,-0.9157031,-0.91624075,-0.91637516,-0.916644,-0.92027307,-0.9256495,-0.9284721,-0.9283377,-0.9280689,-0.9280689,-0.92793447,-0.92766565,-0.9267248,-0.9245742,-0.9226924,-0.922558,-0.92349887,-0.9237677,-0.9243054,-0.92739683,-0.929413,-0.93008506,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.92981625,-0.92981625,-0.92968184,-0.92981625,-0.92995065,-0.92995065,-0.92981625,-0.92995065,-0.93008506,-0.93008506,-0.92995065,-0.92981625,-0.92981625,-0.92995065,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.92995065,-0.92968184,-0.92968184,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9303539,-0.9283377,-0.92968184,-0.9302195,-0.9302195,-0.9302195,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.92995065,-0.9302195,-0.93008506,-0.92968184,-0.92968184,-0.9283377,-0.9245742,-0.92309564,-0.92296124,-0.9236333,-0.9251119,-0.9268592,-0.92753124,-0.92632157,-0.9243054,-0.9236333,-0.9244398,-0.9247086,-0.9241709,-0.9241709,-0.9256495,-0.92860657,-0.929413,-0.92605275,-0.9198698,-0.91624075,-0.91503096,-0.91543424,-0.9171816,-0.91933215,-0.92134833,-0.92323005,-0.9239021,-0.9237677,-0.92349887,-0.92309564,-0.9228268,-0.9226924,-0.9224236,-0.922558,-0.9228268,-0.92161715,-0.92000425,-0.9190633,-0.91919774,-0.92027307,-0.92188597,-0.9239021,-0.9252463,-0.9251119,-0.9243054,-0.92296124,-0.9208107,-0.9189289,-0.9189289,-0.92134833,-0.9239021,-0.9247086,-0.9245742,-0.9244398,-0.9241709,-0.92349887,-0.92296124,-0.92296124,-0.92323005,-0.92349887,-0.9239021,-0.9243054,-0.9241709,-0.9239021,-0.9240365,-0.9245742,-0.9247086,-0.9247086,-0.9249775,-0.9248431,-0.9243054,-0.9239021,-0.9243054,-0.9244398,-0.9243054,-0.9239021,-0.92349887,-0.92336446,-0.9236333,-0.9239021,-0.9241709,-0.9244398,-0.9243054,-0.9241709,-0.92336446,-0.9209451,-0.9182569,-0.9186601,-0.92175156,-0.9237677,-0.9239021,-0.9240365,-0.92349887,-0.9212139,-0.9197354,-0.91960096,-0.9189289,-0.91919774,-0.92134833,-0.9226924,-0.922558,-0.9222892,-0.9222892,-0.922558,-0.92323005,-0.9236333,-0.9239021,-0.9243054,-0.9245742,-0.9247086,-0.9237677,-0.9210795,-0.9185257,-0.9174504,-0.916644,-0.91610634,-0.91637516,-0.916644,-0.9183913,-0.92309564,-0.92753124,-0.92860657,-0.927128,-0.92632157,-0.92618716,-0.92591834,-0.92618716,-0.9265904,-0.92605275,-0.9244398,-0.92296124,-0.92309564,-0.9239021,-0.9236333,-0.9251119,-0.92860657,-0.92981625,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.92981625,-0.92981625,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.93008506,-0.92995065,-0.92981625,-0.92968184,-0.92995065,-0.93008506,-0.93008506,-0.92981625,-0.92968184,-0.92995065,-0.92995065,-0.92981625,-0.92981625,-0.92995065,-0.92995065,-0.92981625,-0.92981625,-0.92995065,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.92981625,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.93008506,-0.93008506,-0.92995065,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9302195,-0.9288754,-0.92968184,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.93008506,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.93008506,-0.929413,-0.9292786,-0.92591834,-0.9236333,-0.92336446,-0.92323005,-0.9239021,-0.92578393,-0.9272624,-0.927128,-0.9255151,-0.92323005,-0.922558,-0.92309564,-0.92296124,-0.9220204,-0.9220204,-0.92336446,-0.9267248,-0.92981625,-0.928741,-0.92323005,-0.917316,-0.9144933,-0.91489655,-0.9170472,-0.91960096,-0.9221548,-0.9240365,-0.9245742,-0.9241709,-0.9239021,-0.9236333,-0.92336446,-0.92296124,-0.9224236,-0.9228268,-0.9224236,-0.92000425,-0.9182569,-0.9182569,-0.9190633,-0.92000425,-0.92161715,-0.9241709,-0.9255151,-0.9248431,-0.92349887,-0.9224236,-0.9206763,-0.9187945,-0.9190633,-0.9220204,-0.9245742,-0.9252463,-0.9248431,-0.9244398,-0.9240365,-0.92336446,-0.92296124,-0.9228268,-0.92323005,-0.9236333,-0.9239021,-0.9240365,-0.9240365,-0.9237677,-0.9237677,-0.9241709,-0.9243054,-0.9244398,-0.9247086,-0.9247086,-0.9240365,-0.9237677,-0.9243054,-0.9245742,-0.9241709,-0.9239021,-0.9236333,-0.9236333,-0.9237677,-0.9239021,-0.9241709,-0.9244398,-0.9247086,-0.9244398,-0.92336446,-0.9209451,-0.9182569,-0.9185257,-0.92175156,-0.9241709,-0.9243054,-0.9239021,-0.9236333,-0.9224236,-0.9205419,-0.91933215,-0.9182569,-0.9181225,-0.92013866,-0.9221548,-0.9222892,-0.92188597,-0.9221548,-0.9226924,-0.92323005,-0.9237677,-0.9237677,-0.9239021,-0.9243054,-0.9245742,-0.9239021,-0.92134833,-0.91798806,-0.9167784,-0.9171816,-0.9167784,-0.91556865,-0.91624075,-0.9205419,-0.92618716,-0.92860657,-0.92780006,-0.9253807,-0.9247086,-0.9253807,-0.9251119,-0.9251119,-0.92618716,-0.9268592,-0.92578393,-0.9236333,-0.9226924,-0.9237677,-0.9240365,-0.92349887,-0.92605275,-0.9295474,-0.92981625,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.92981625,-0.92981625,-0.92995065,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.92995065,-0.93008506,-0.9302195,-0.92995065,-0.92981625,-0.92968184,-0.92981625,-0.93008506,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.92995065,-0.92981625,-0.92968184,-0.9295474,-0.92968184,-0.92981625,-0.92981625,-0.92968184,-0.92968184,-0.92981625,-0.92968184,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92981625,-0.928741,-0.929413,-0.93008506,-0.9303539,-0.92995065,-0.92981625,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.92981625,-0.92995065,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.92995065,-0.9292786,-0.9272624,-0.9239021,-0.92296124,-0.9228268,-0.9228268,-0.9241709,-0.92618716,-0.9269936,-0.92618716,-0.9241709,-0.9221548,-0.92188597,-0.9226924,-0.9226924,-0.9222892,-0.9222892,-0.9226924,-0.9244398,-0.92766565,-0.9291442,-0.9265904,-0.9209451,-0.916644,-0.91597193,-0.91771924,-0.92013866,-0.922558,-0.9243054,-0.9247086,-0.9245742,-0.9243054,-0.9240365,-0.9237677,-0.92309564,-0.9224236,-0.9221548,-0.9210795,-0.9189289,-0.91785365,-0.91798806,-0.9185257,-0.91960096,-0.92148274,-0.9243054,-0.9256495,-0.9247086,-0.92296124,-0.92175156,-0.9204075,-0.9190633,-0.9197354,-0.922558,-0.9248431,-0.9253807,-0.9248431,-0.9244398,-0.9239021,-0.92336446,-0.92296124,-0.92309564,-0.92349887,-0.9237677,-0.9239021,-0.9237677,-0.9239021,-0.9239021,-0.9237677,-0.9239021,-0.9243054,-0.9245742,-0.9245742,-0.9247086,-0.9243054,-0.9239021,-0.9241709,-0.9244398,-0.9241709,-0.9237677,-0.9237677,-0.9239021,-0.9237677,-0.9237677,-0.9241709,-0.9247086,-0.9248431,-0.9244398,-0.9237677,-0.92161715,-0.9185257,-0.9182569,-0.92148274,-0.9241709,-0.9244398,-0.9239021,-0.92349887,-0.9226924,-0.9210795,-0.9189289,-0.917316,-0.91758484,-0.91946656,-0.92161715,-0.9222892,-0.9221548,-0.9226924,-0.92336446,-0.9236333,-0.9239021,-0.9239021,-0.9237677,-0.9240365,-0.9245742,-0.9239021,-0.92148274,-0.91785365,-0.91556865,-0.916644,-0.9174504,-0.91637516,-0.91771924,-0.9237677,-0.9284721,-0.9288754,-0.92618716,-0.9244398,-0.9243054,-0.9248431,-0.9248431,-0.9245742,-0.9256495,-0.9269936,-0.926456,-0.9247086,-0.92296124,-0.9226924,-0.92349887,-0.9228268,-0.92349887,-0.92766565,-0.9295474,-0.92995065,-0.9302195,-0.93008506,-0.93008506,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.92981625,-0.92968184,-0.92981625,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.92981625,-0.92981625,-0.92968184,-0.9295474,-0.92981625,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.92995065,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9284721,-0.9267248,-0.928741,-0.92981625,-0.93008506,-0.92995065,-0.92981625,-0.92995065,-0.92995065,-0.93008506,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.92981625,-0.929413,-0.9280689,-0.9249775,-0.92336446,-0.9226924,-0.9221548,-0.9226924,-0.9245742,-0.92618716,-0.92632157,-0.9249775,-0.9228268,-0.92148274,-0.92148274,-0.92188597,-0.92188597,-0.92188597,-0.92175156,-0.92134833,-0.922558,-0.92578393,-0.92780006,-0.9269936,-0.9243054,-0.9209451,-0.9186601,-0.9189289,-0.9209451,-0.92296124,-0.9241709,-0.9247086,-0.9247086,-0.9244398,-0.9240365,-0.9239021,-0.92336446,-0.9222892,-0.9212139,-0.92013866,-0.9189289,-0.9183913,-0.9181225,-0.91798806,-0.9189289,-0.9210795,-0.9237677,-0.9251119,-0.9243054,-0.92296124,-0.92188597,-0.9204075,-0.91946656,-0.9208107,-0.92323005,-0.9247086,-0.9247086,-0.9243054,-0.9240365,-0.9239021,-0.92336446,-0.92296124,-0.92336446,-0.9236333,-0.9237677,-0.9236333,-0.9237677,-0.9240365,-0.9240365,-0.9236333,-0.9237677,-0.9241709,-0.9245742,-0.9245742,-0.9247086,-0.9247086,-0.9245742,-0.9245742,-0.9247086,-0.9244398,-0.9237677,-0.92349887,-0.92349887,-0.92336446,-0.92336446,-0.9240365,-0.9244398,-0.9244398,-0.9245742,-0.9241709,-0.92188597,-0.9187945,-0.9183913,-0.9212139,-0.9237677,-0.9240365,-0.92349887,-0.92309564,-0.9224236,-0.9210795,-0.9186601,-0.9167784,-0.917316,-0.91946656,-0.9210795,-0.9220204,-0.9226924,-0.92336446,-0.9237677,-0.9240365,-0.9244398,-0.9244398,-0.9241709,-0.9240365,-0.9243054,-0.9236333,-0.9208107,-0.9174504,-0.9157031,-0.9158375,-0.9169128,-0.9185257,-0.9220204,-0.927128,-0.9290098,-0.9269936,-0.92309564,-0.9221548,-0.92323005,-0.9240365,-0.9240365,-0.9236333,-0.9247086,-0.9267248,-0.9269936,-0.9256495,-0.9236333,-0.92175156,-0.92134833,-0.92188597,-0.92188597,-0.9245742,-0.928741,-0.92981625,-0.9302195,-0.9302195,-0.9302195,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.92981625,-0.92968184,-0.92981625,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.92981625,-0.92995065,-0.92981625,-0.92981625,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.92981625,-0.92981625,-0.93008506,-0.93008506,-0.92995065,-0.92968184,-0.9295474,-0.92968184,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9292786,-0.928741,-0.92981625,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.92981625,-0.92860657,-0.9256495,-0.9237677,-0.9239021,-0.92309564,-0.9222892,-0.9239021,-0.92605275,-0.9265904,-0.92578393,-0.9240365,-0.92175156,-0.9208107,-0.9210795,-0.9210795,-0.9209451,-0.92161715,-0.9221548,-0.92175156,-0.92188597,-0.9239021,-0.9255151,-0.9249775,-0.9240365,-0.92336446,-0.92161715,-0.9198698,-0.9209451,-0.92323005,-0.9240365,-0.9241709,-0.9244398,-0.9244398,-0.9241709,-0.9239021,-0.92309564,-0.92161715,-0.9205419,-0.9198698,-0.91919774,-0.9185257,-0.91798806,-0.91758484,-0.9183913,-0.9205419,-0.92309564,-0.9244398,-0.9244398,-0.92349887,-0.9220204,-0.9204075,-0.92000425,-0.92188597,-0.9240365,-0.9241709,-0.9236333,-0.92349887,-0.92349887,-0.92349887,-0.92323005,-0.92296124,-0.92309564,-0.92349887,-0.9236333,-0.92349887,-0.9236333,-0.9239021,-0.9239021,-0.9236333,-0.9236333,-0.9241709,-0.9244398,-0.9244398,-0.9244398,-0.9244398,-0.9243054,-0.9241709,-0.9240365,-0.9237677,-0.92336446,-0.92309564,-0.92309564,-0.92309564,-0.92336446,-0.9236333,-0.9237677,-0.9237677,-0.9241709,-0.9239021,-0.9220204,-0.91946656,-0.9187945,-0.9209451,-0.92323005,-0.9236333,-0.92296124,-0.9222892,-0.92134833,-0.92027307,-0.9183913,-0.9167784,-0.9170472,-0.9189289,-0.9204075,-0.92148274,-0.922558,-0.9236333,-0.9241709,-0.9240365,-0.9241709,-0.9244398,-0.9243054,-0.9237677,-0.9237677,-0.92349887,-0.9209451,-0.91758484,-0.9167784,-0.917316,-0.9182569,-0.92134833,-0.92591834,-0.9283377,-0.92766565,-0.9244398,-0.92161715,-0.9210795,-0.9224236,-0.92323005,-0.92323005,-0.92309564,-0.9241709,-0.92618716,-0.927128,-0.92605275,-0.9243054,-0.9220204,-0.9209451,-0.9221548,-0.9228268,-0.92296124,-0.92591834,-0.9291442,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.93008506,-0.92995065,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.92981625,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.92995065,-0.92995065,-0.92995065,-0.92981625,-0.92981625,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.92995065,-0.92995065,-0.9302195,-0.9302195,-0.92995065,-0.92981625,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.92995065,-0.93008506,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.92981625,-0.92981625,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9292786,-0.9295474,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.93008506,-0.92995065,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.92981625,-0.9290098,-0.92632157,-0.92349887,-0.9236333,-0.9240365,-0.92296124,-0.92309564,-0.9253807,-0.9267248,-0.92632157,-0.9251119,-0.92296124,-0.9208107,-0.92027307,-0.9209451,-0.92134833,-0.92148274,-0.92161715,-0.92188597,-0.92188597,-0.9221548,-0.9236333,-0.9255151,-0.9255151,-0.9241709,-0.9237677,-0.92309564,-0.9212139,-0.9205419,-0.9221548,-0.92323005,-0.92336446,-0.9237677,-0.9241709,-0.9241709,-0.9236333,-0.9222892,-0.9205419,-0.91946656,-0.91919774,-0.9186601,-0.9181225,-0.917316,-0.9171816,-0.9182569,-0.92013866,-0.9222892,-0.9236333,-0.9240365,-0.92349887,-0.92188597,-0.92013866,-0.92027307,-0.922558,-0.9241709,-0.9237677,-0.92309564,-0.92296124,-0.92309564,-0.9228268,-0.9226924,-0.9226924,-0.9228268,-0.92323005,-0.92349887,-0.92349887,-0.92336446,-0.92349887,-0.9236333,-0.92349887,-0.92349887,-0.9239021,-0.9243054,-0.9244398,-0.9243054,-0.9243054,-0.9240365,-0.9239021,-0.9236333,-0.92349887,-0.92336446,-0.92323005,-0.92296124,-0.92296124,-0.92323005,-0.92349887,-0.9236333,-0.9236333,-0.9240365,-0.9239021,-0.9222892,-0.92013866,-0.91919774,-0.9205419,-0.9228268,-0.9236333,-0.9228268,-0.92188597,-0.9206763,-0.9189289,-0.91758484,-0.9167784,-0.916644,-0.91785365,-0.91946656,-0.9206763,-0.92161715,-0.9228268,-0.9236333,-0.9240365,-0.9243054,-0.9244398,-0.9241709,-0.9236333,-0.92336446,-0.922558,-0.9208107,-0.91933215,-0.9189289,-0.9197354,-0.92148274,-0.9241709,-0.9269936,-0.92780006,-0.92578393,-0.92296124,-0.92175156,-0.92161715,-0.92148274,-0.92161715,-0.9220204,-0.922558,-0.9236333,-0.9256495,-0.927128,-0.9267248,-0.9251119,-0.92296124,-0.9212139,-0.9221548,-0.9240365,-0.92336446,-0.92336446,-0.9268592,-0.9295474,-0.92995065,-0.93008506,-0.92995065,-0.92995065,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.92995065,-0.92995065,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.9303539,-0.9303539,-0.93008506,-0.92995065,-0.92995065,-0.92981625,-0.92995065,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.9303539,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.9302195,-0.9302195,-0.92995065,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9306227,-0.9304883,-0.9303539,-0.9302195,-0.92995065,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.929413,-0.9295474,-0.92995065,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.92753124,-0.9236333,-0.9220204,-0.9228268,-0.92296124,-0.9226924,-0.9241709,-0.92618716,-0.926456,-0.9256495,-0.9241709,-0.9221548,-0.92027307,-0.92027307,-0.92148274,-0.9221548,-0.9220204,-0.9220204,-0.92188597,-0.92188597,-0.9224236,-0.9240365,-0.92591834,-0.9267248,-0.92618716,-0.9248431,-0.9228268,-0.9205419,-0.9190633,-0.92000425,-0.92148274,-0.9221548,-0.92296124,-0.9236333,-0.9237677,-0.92349887,-0.9222892,-0.9205419,-0.9189289,-0.9183913,-0.91798806,-0.9174504,-0.91650957,-0.91650957,-0.91785365,-0.9198698,-0.92148274,-0.9224236,-0.92309564,-0.92309564,-0.92134833,-0.9197354,-0.92027307,-0.9222892,-0.92349887,-0.92349887,-0.92323005,-0.92296124,-0.922558,-0.9224236,-0.9222892,-0.9222892,-0.922558,-0.92309564,-0.92336446,-0.92336446,-0.92323005,-0.92349887,-0.92349887,-0.92336446,-0.92349887,-0.9240365,-0.9243054,-0.9243054,-0.9243054,-0.9241709,-0.9240365,-0.9237677,-0.92349887,-0.92336446,-0.92336446,-0.92323005,-0.92296124,-0.9228268,-0.9228268,-0.92296124,-0.92309564,-0.92336446,-0.9236333,-0.92349887,-0.9224236,-0.9208107,-0.9198698,-0.9206763,-0.9226924,-0.9237677,-0.92309564,-0.92161715,-0.92000425,-0.9181225,-0.9169128,-0.916644,-0.916644,-0.9171816,-0.9187945,-0.92000425,-0.9210795,-0.922558,-0.9240365,-0.9245742,-0.9245742,-0.9243054,-0.9239021,-0.92349887,-0.92296124,-0.92134833,-0.91919774,-0.91933215,-0.9212139,-0.922558,-0.9236333,-0.9248431,-0.92632157,-0.92632157,-0.9237677,-0.9208107,-0.92013866,-0.9212139,-0.92161715,-0.92148274,-0.92161715,-0.92161715,-0.9222892,-0.9245742,-0.9268592,-0.9268592,-0.9256495,-0.9239021,-0.9220204,-0.92175156,-0.9237677,-0.9247086,-0.92349887,-0.9243054,-0.92793447,-0.92968184,-0.93008506,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.92995065,-0.92995065,-0.9302195,-0.9302195,-0.92995065,-0.92981625,-0.92995065,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.92981625,-0.92981625,-0.92981625,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9304883,-0.9304883,-0.9302195,-0.93008506,-0.93008506,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9280689,-0.9290098,-0.9295474,-0.93008506,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.92995065,-0.93008506,-0.9288754,-0.9251119,-0.92161715,-0.9206763,-0.92161715,-0.9222892,-0.92336446,-0.9252463,-0.92632157,-0.92591834,-0.9249775,-0.92336446,-0.92148274,-0.9204075,-0.9206763,-0.92161715,-0.9221548,-0.92161715,-0.92134833,-0.9221548,-0.922558,-0.9226924,-0.9239021,-0.9253807,-0.92618716,-0.9267248,-0.9267248,-0.9249775,-0.92161715,-0.9189289,-0.91960096,-0.9209451,-0.92148274,-0.9220204,-0.92309564,-0.9239021,-0.9239021,-0.92296124,-0.9205419,-0.9181225,-0.9171816,-0.917316,-0.9170472,-0.91624075,-0.91610634,-0.91771924,-0.92000425,-0.9212139,-0.92175156,-0.922558,-0.922558,-0.9208107,-0.91946656,-0.92013866,-0.9220204,-0.92336446,-0.9236333,-0.92349887,-0.92296124,-0.9221548,-0.92188597,-0.9220204,-0.9220204,-0.9222892,-0.9228268,-0.92323005,-0.92296124,-0.9228268,-0.92323005,-0.92349887,-0.92336446,-0.92349887,-0.9240365,-0.9241709,-0.9241709,-0.9241709,-0.9240365,-0.9239021,-0.9236333,-0.92336446,-0.92336446,-0.92323005,-0.92296124,-0.922558,-0.9224236,-0.922558,-0.9226924,-0.9228268,-0.92309564,-0.92336446,-0.92309564,-0.9224236,-0.92134833,-0.9204075,-0.9206763,-0.9222892,-0.9236333,-0.92323005,-0.92148274,-0.91946656,-0.91758484,-0.91624075,-0.91610634,-0.91650957,-0.9171816,-0.9182569,-0.91933215,-0.9204075,-0.9222892,-0.9240365,-0.9245742,-0.9244398,-0.9241709,-0.9236333,-0.92296124,-0.922558,-0.9212139,-0.91933215,-0.91960096,-0.92188597,-0.92349887,-0.9241709,-0.9245742,-0.9249775,-0.9240365,-0.92148274,-0.9197354,-0.9208107,-0.9224236,-0.9222892,-0.92161715,-0.92175156,-0.92134833,-0.92134833,-0.9236333,-0.92618716,-0.9267248,-0.9256495,-0.9241709,-0.922558,-0.92148274,-0.9220204,-0.9228268,-0.9222892,-0.9221548,-0.9255151,-0.9290098,-0.92968184,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.92981625,-0.92995065,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.93008506,-0.9302195,-0.93008506,-0.92981625,-0.92981625,-0.92981625,-0.92981625,-0.92995065,-0.9302195,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.93008506,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9280689,-0.9295474,-0.92981625,-0.9302195,-0.9303539,-0.9303539,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.9265904,-0.9228268,-0.9210795,-0.9210795,-0.92161715,-0.9224236,-0.9243054,-0.92618716,-0.926456,-0.9253807,-0.9241709,-0.92296124,-0.9212139,-0.9206763,-0.9210795,-0.92161715,-0.92188597,-0.92134833,-0.92013866,-0.92013866,-0.92175156,-0.9226924,-0.9236333,-0.9249775,-0.92578393,-0.92632157,-0.9269936,-0.9268592,-0.9248431,-0.92161715,-0.9205419,-0.92148274,-0.9220204,-0.92148274,-0.9224236,-0.9241709,-0.9245742,-0.92323005,-0.92027307,-0.917316,-0.91650957,-0.9169128,-0.9169128,-0.91650957,-0.91637516,-0.91758484,-0.9198698,-0.9212139,-0.9220204,-0.92296124,-0.9226924,-0.9206763,-0.91960096,-0.9205419,-0.922558,-0.9237677,-0.9236333,-0.92323005,-0.92296124,-0.922558,-0.92188597,-0.92188597,-0.9220204,-0.9221548,-0.9226924,-0.92309564,-0.9228268,-0.9226924,-0.92296124,-0.92309564,-0.92336446,-0.9237677,-0.9240365,-0.9240365,-0.9239021,-0.9237677,-0.9236333,-0.9236333,-0.92349887,-0.92323005,-0.92309564,-0.92296124,-0.922558,-0.9221548,-0.9222892,-0.9226924,-0.9228268,-0.9226924,-0.9228268,-0.92309564,-0.9228268,-0.9221548,-0.92161715,-0.9208107,-0.9206763,-0.9221548,-0.9236333,-0.92309564,-0.9212139,-0.91919774,-0.917316,-0.91624075,-0.91610634,-0.916644,-0.9174504,-0.9182569,-0.9187945,-0.9197354,-0.92188597,-0.9240365,-0.9244398,-0.9239021,-0.9239021,-0.92349887,-0.9226924,-0.9224236,-0.9224236,-0.92175156,-0.92161715,-0.92296124,-0.9247086,-0.9251119,-0.9245742,-0.9237677,-0.922558,-0.92148274,-0.92148274,-0.92188597,-0.9210795,-0.9209451,-0.92175156,-0.92161715,-0.9205419,-0.9205419,-0.9228268,-0.9253807,-0.92605275,-0.9248431,-0.92309564,-0.92175156,-0.9212139,-0.91946656,-0.916644,-0.91610634,-0.9185257,-0.92309564,-0.92793447,-0.92968184,-0.92968184,-0.93008506,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.92981625,-0.92981625,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.92981625,-0.92995065,-0.92995065,-0.93008506,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9304883,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9303539,-0.92618716,-0.9268592,-0.9280689,-0.92968184,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.92995065,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.93008506,-0.93008506,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.93008506,-0.92995065,-0.92793447,-0.9241709,-0.9220204,-0.92148274,-0.92134833,-0.92175156,-0.92296124,-0.9252463,-0.9268592,-0.92605275,-0.9236333,-0.9226924,-0.9224236,-0.92134833,-0.9208107,-0.92134833,-0.92188597,-0.9221548,-0.9222892,-0.9208107,-0.9198698,-0.92134833,-0.9226924,-0.9237677,-0.9251119,-0.9255151,-0.9251119,-0.92578393,-0.9269936,-0.92618716,-0.9237677,-0.9220204,-0.9220204,-0.9222892,-0.92148274,-0.92161715,-0.92349887,-0.9247086,-0.92309564,-0.9197354,-0.917316,-0.916644,-0.9167784,-0.916644,-0.9167784,-0.9171816,-0.91798806,-0.91933215,-0.9209451,-0.9221548,-0.92309564,-0.922558,-0.9209451,-0.9204075,-0.92134833,-0.9228268,-0.9237677,-0.92349887,-0.92296124,-0.922558,-0.9221548,-0.92188597,-0.92188597,-0.9220204,-0.9222892,-0.9226924,-0.92296124,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.92323005,-0.9237677,-0.9240365,-0.9239021,-0.9237677,-0.9236333,-0.92336446,-0.92323005,-0.92323005,-0.92309564,-0.9228268,-0.9226924,-0.922558,-0.9224236,-0.9226924,-0.92296124,-0.92296124,-0.922558,-0.9224236,-0.9228268,-0.9228268,-0.9222892,-0.92175156,-0.9212139,-0.9210795,-0.9221548,-0.92349887,-0.9228268,-0.9206763,-0.9186601,-0.917316,-0.916644,-0.9167784,-0.9171816,-0.91785365,-0.9182569,-0.9182569,-0.9190633,-0.92175156,-0.9240365,-0.9243054,-0.9237677,-0.9236333,-0.92309564,-0.9224236,-0.92296124,-0.92349887,-0.92296124,-0.92336446,-0.92605275,-0.92753124,-0.9267248,-0.9248431,-0.92336446,-0.9224236,-0.9224236,-0.9222892,-0.9210795,-0.92000425,-0.9209451,-0.9222892,-0.92161715,-0.9198698,-0.91933215,-0.92188597,-0.9248431,-0.9252463,-0.9240365,-0.92323005,-0.9226924,-0.9220204,-0.91933215,-0.91476214,-0.91341805,-0.9171816,-0.9221548,-0.9265904,-0.9290098,-0.929413,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.92995065,-0.92981625,-0.92968184,-0.92968184,-0.92981625,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.9303539,-0.93008506,-0.92981625,-0.92995065,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.92981625,-0.92995065,-0.9302195,-0.92995065,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92981625,-0.9256495,-0.9269936,-0.9283377,-0.929413,-0.93008506,-0.92981625,-0.9302195,-0.93008506,-0.93008506,-0.92981625,-0.93008506,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.92981625,-0.9291442,-0.9256495,-0.92323005,-0.9228268,-0.9220204,-0.9212139,-0.9221548,-0.9243054,-0.92632157,-0.9268592,-0.9251119,-0.92309564,-0.922558,-0.9221548,-0.92134833,-0.9212139,-0.9220204,-0.9226924,-0.9228268,-0.9222892,-0.92161715,-0.92175156,-0.9224236,-0.9228268,-0.9236333,-0.9251119,-0.9248431,-0.92336446,-0.9244398,-0.927128,-0.9269936,-0.9245742,-0.922558,-0.9221548,-0.9222892,-0.92175156,-0.9210795,-0.9222892,-0.9241709,-0.92349887,-0.92027307,-0.91758484,-0.9171816,-0.9170472,-0.9167784,-0.917316,-0.9182569,-0.9186601,-0.91946656,-0.9210795,-0.922558,-0.92323005,-0.922558,-0.92161715,-0.92148274,-0.9221548,-0.92296124,-0.9236333,-0.92336446,-0.9228268,-0.9222892,-0.92188597,-0.92161715,-0.92161715,-0.9220204,-0.9222892,-0.9226924,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.92296124,-0.92309564,-0.92349887,-0.9239021,-0.9240365,-0.9239021,-0.92349887,-0.92336446,-0.92323005,-0.92309564,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.92296124,-0.92309564,-0.9228268,-0.922558,-0.922558,-0.9226924,-0.9226924,-0.9224236,-0.9220204,-0.92161715,-0.9212139,-0.92188597,-0.9228268,-0.9222892,-0.92027307,-0.9183913,-0.9174504,-0.9174504,-0.91758484,-0.91785365,-0.9182569,-0.9182569,-0.91798806,-0.9187945,-0.92161715,-0.9237677,-0.9237677,-0.92336446,-0.92309564,-0.9226924,-0.9228268,-0.9236333,-0.9236333,-0.92296124,-0.9243054,-0.9269936,-0.92793447,-0.9268592,-0.9248431,-0.92323005,-0.9226924,-0.9226924,-0.9220204,-0.9206763,-0.9205419,-0.92161715,-0.9224236,-0.9220204,-0.9208107,-0.91919774,-0.92000425,-0.92336446,-0.9251119,-0.9236333,-0.92336446,-0.9241709,-0.92323005,-0.9209451,-0.9190633,-0.9189289,-0.9208107,-0.9222892,-0.9241709,-0.9282033,-0.9295474,-0.92981625,-0.93008506,-0.93008506,-0.9303539,-0.9303539,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.92995065,-0.9295474,-0.9295474,-0.92981625,-0.92995065,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.93008506,-0.92981625,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9303539,-0.9302195,-0.9302195,-0.92995065,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.93008506,-0.9288754,-0.9290098,-0.929413,-0.92981625,-0.93008506,-0.92995065,-0.9302195,-0.9303539,-0.93008506,-0.92968184,-0.92981625,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.93008506,-0.9290098,-0.92753124,-0.9239021,-0.92296124,-0.92323005,-0.9224236,-0.9220204,-0.92349887,-0.9256495,-0.9268592,-0.92632157,-0.9245742,-0.9228268,-0.9220204,-0.92148274,-0.92134833,-0.9221548,-0.92309564,-0.92296124,-0.92188597,-0.92134833,-0.92134833,-0.92188597,-0.9221548,-0.9221548,-0.92309564,-0.9244398,-0.9239021,-0.9226924,-0.9237677,-0.926456,-0.927128,-0.9256495,-0.9237677,-0.9228268,-0.9226924,-0.9224236,-0.92148274,-0.9212139,-0.922558,-0.92309564,-0.9212139,-0.9186601,-0.91771924,-0.91758484,-0.9174504,-0.9181225,-0.91919774,-0.9197354,-0.92000425,-0.9212139,-0.9226924,-0.92323005,-0.9228268,-0.9222892,-0.9222892,-0.922558,-0.92296124,-0.92336446,-0.92309564,-0.9226924,-0.9220204,-0.92161715,-0.92148274,-0.92148274,-0.92175156,-0.92188597,-0.9224236,-0.9226924,-0.9228268,-0.9226924,-0.9228268,-0.92309564,-0.92336446,-0.9236333,-0.9237677,-0.9240365,-0.9239021,-0.92336446,-0.92309564,-0.92336446,-0.92309564,-0.922558,-0.9224236,-0.9226924,-0.9228268,-0.9228268,-0.92309564,-0.92309564,-0.922558,-0.9224236,-0.922558,-0.922558,-0.9224236,-0.9224236,-0.9222892,-0.92188597,-0.92161715,-0.9220204,-0.9228268,-0.922558,-0.9208107,-0.9189289,-0.9182569,-0.9183913,-0.9183913,-0.9185257,-0.9189289,-0.9185257,-0.91798806,-0.9190633,-0.9220204,-0.9239021,-0.9236333,-0.92296124,-0.9226924,-0.92296124,-0.92349887,-0.9237677,-0.92336446,-0.9240365,-0.92605275,-0.92766565,-0.92753124,-0.92618716,-0.9243054,-0.92296124,-0.9228268,-0.92309564,-0.9220204,-0.92027307,-0.92027307,-0.9220204,-0.9226924,-0.9224236,-0.9220204,-0.92027307,-0.9186601,-0.9209451,-0.9244398,-0.9244398,-0.92309564,-0.9243054,-0.9243054,-0.9220204,-0.92161715,-0.9237677,-0.9244398,-0.9224236,-0.9221548,-0.9265904,-0.9291442,-0.92968184,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.93008506,-0.93008506,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.92981625,-0.9295474,-0.92968184,-0.92995065,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.9303539,-0.9302195,-0.92995065,-0.92995065,-0.92981625,-0.92981625,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.92995065,-0.92995065,-0.9302195,-0.93008506,-0.92981625,-0.92995065,-0.9303539,-0.9302195,-0.93008506,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.929413,-0.92766565,-0.9288754,-0.92968184,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.92981625,-0.9282033,-0.92578393,-0.92296124,-0.92349887,-0.9240365,-0.92309564,-0.9228268,-0.9244398,-0.92618716,-0.9265904,-0.9251119,-0.92296124,-0.9220204,-0.92188597,-0.9210795,-0.9210795,-0.9228268,-0.92309564,-0.92027307,-0.9174504,-0.91758484,-0.9198698,-0.92188597,-0.9222892,-0.9220204,-0.9226924,-0.9237677,-0.92336446,-0.922558,-0.9237677,-0.92578393,-0.926456,-0.92632157,-0.9255151,-0.9243054,-0.92349887,-0.92309564,-0.9221548,-0.9209451,-0.9210795,-0.9221548,-0.92188597,-0.9198698,-0.9185257,-0.9183913,-0.9183913,-0.9189289,-0.92000425,-0.9206763,-0.9206763,-0.92134833,-0.9224236,-0.92309564,-0.92323005,-0.92309564,-0.9228268,-0.922558,-0.9228268,-0.92309564,-0.9228268,-0.9224236,-0.9221548,-0.92175156,-0.92148274,-0.92134833,-0.92148274,-0.92161715,-0.9220204,-0.9224236,-0.922558,-0.922558,-0.9226924,-0.92296124,-0.92323005,-0.92349887,-0.9237677,-0.9240365,-0.9237677,-0.92323005,-0.92296124,-0.92309564,-0.92309564,-0.922558,-0.9224236,-0.9226924,-0.9228268,-0.92296124,-0.92309564,-0.92296124,-0.9226924,-0.922558,-0.9228268,-0.92296124,-0.9228268,-0.922558,-0.9224236,-0.9222892,-0.9222892,-0.9226924,-0.92309564,-0.922558,-0.9210795,-0.9198698,-0.91960096,-0.91946656,-0.9190633,-0.9190633,-0.91933215,-0.9185257,-0.9181225,-0.9198698,-0.9226924,-0.9236333,-0.92309564,-0.9228268,-0.92336446,-0.92349887,-0.92323005,-0.9228268,-0.92349887,-0.9253807,-0.9267248,-0.927128,-0.9265904,-0.9251119,-0.92323005,-0.9224236,-0.9228268,-0.92296124,-0.92188597,-0.9198698,-0.9187945,-0.92013866,-0.9220204,-0.9226924,-0.9228268,-0.92175156,-0.91933215,-0.9197354,-0.92336446,-0.9252463,-0.9240365,-0.9240365,-0.9247086,-0.9228268,-0.92161715,-0.9237677,-0.9253807,-0.92336446,-0.92161715,-0.9251119,-0.929413,-0.929413,-0.9302195,-0.9303539,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.93008506,-0.9295474,-0.929413,-0.92981625,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.9302195,-0.9304883,-0.9303539,-0.9303539,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.92981625,-0.92968184,-0.92981625,-0.92981625,-0.92968184,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92968184,-0.9288754,-0.9290098,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.929413,-0.927128,-0.9236333,-0.9226924,-0.9243054,-0.9249775,-0.9239021,-0.92349887,-0.9248431,-0.92618716,-0.9256495,-0.92349887,-0.9220204,-0.9220204,-0.92148274,-0.9206763,-0.92134833,-0.9224236,-0.9210795,-0.9174504,-0.91489655,-0.91637516,-0.9198698,-0.92188597,-0.92188597,-0.92175156,-0.922558,-0.92349887,-0.92296124,-0.92175156,-0.922558,-0.9245742,-0.9253807,-0.9255151,-0.9256495,-0.9248431,-0.9239021,-0.92349887,-0.92309564,-0.9221548,-0.92161715,-0.92148274,-0.92148274,-0.9206763,-0.91960096,-0.91919774,-0.9190633,-0.91960096,-0.9208107,-0.92148274,-0.92148274,-0.92188597,-0.9226924,-0.92323005,-0.92349887,-0.92349887,-0.92296124,-0.922558,-0.9226924,-0.92296124,-0.9228268,-0.922558,-0.9224236,-0.9220204,-0.92161715,-0.92148274,-0.92175156,-0.92188597,-0.9220204,-0.9222892,-0.922558,-0.922558,-0.922558,-0.9226924,-0.92296124,-0.92349887,-0.9239021,-0.9240365,-0.9236333,-0.92309564,-0.92296124,-0.92296124,-0.9226924,-0.9222892,-0.9222892,-0.922558,-0.922558,-0.9224236,-0.9226924,-0.9228268,-0.9226924,-0.9226924,-0.9226924,-0.92296124,-0.92296124,-0.9228268,-0.9228268,-0.9228268,-0.92296124,-0.92323005,-0.92323005,-0.9224236,-0.9212139,-0.9204075,-0.92027307,-0.92013866,-0.9197354,-0.9197354,-0.9197354,-0.9187945,-0.9187945,-0.9208107,-0.9228268,-0.92296124,-0.9228268,-0.92349887,-0.9240365,-0.92323005,-0.9220204,-0.922558,-0.9248431,-0.9265904,-0.926456,-0.92578393,-0.9255151,-0.9248431,-0.92323005,-0.9221548,-0.9226924,-0.9226924,-0.92148274,-0.9197354,-0.9169128,-0.91543424,-0.917316,-0.9208107,-0.92309564,-0.9226924,-0.9205419,-0.9197354,-0.9221548,-0.9248431,-0.9251119,-0.9244398,-0.9247086,-0.9237677,-0.9220204,-0.9228268,-0.9251119,-0.9245742,-0.9221548,-0.9236333,-0.9288754,-0.9290098,-0.93008506,-0.9303539,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.93008506,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.93008506,-0.92968184,-0.92981625,-0.93008506,-0.92995065,-0.92995065,-0.9303539,-0.9304883,-0.9302195,-0.92995065,-0.9302195,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.93008506,-0.92995065,-0.92995065,-0.92981625,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.92995065,-0.93008506,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.927128,-0.92578393,-0.92793447,-0.929413,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.92981625,-0.9283377,-0.9253807,-0.92296124,-0.92349887,-0.9249775,-0.9247086,-0.9237677,-0.9241709,-0.9253807,-0.92605275,-0.9249775,-0.92323005,-0.9222892,-0.92175156,-0.9209451,-0.9212139,-0.9221548,-0.9220204,-0.92027307,-0.9189289,-0.9189289,-0.9198698,-0.9208107,-0.92161715,-0.92175156,-0.92175156,-0.922558,-0.92336446,-0.9226924,-0.92134833,-0.9220204,-0.9239021,-0.9248431,-0.9247086,-0.9244398,-0.9241709,-0.9239021,-0.9240365,-0.9237677,-0.92336446,-0.92309564,-0.9222892,-0.92134833,-0.9210795,-0.9205419,-0.9198698,-0.91960096,-0.92013866,-0.92134833,-0.9221548,-0.9221548,-0.9222892,-0.92296124,-0.92336446,-0.92349887,-0.9236333,-0.92323005,-0.922558,-0.9226924,-0.92309564,-0.92296124,-0.922558,-0.9222892,-0.9220204,-0.9220204,-0.9220204,-0.9221548,-0.9221548,-0.9221548,-0.9221548,-0.9224236,-0.9224236,-0.9222892,-0.9224236,-0.9228268,-0.92349887,-0.9240365,-0.9239021,-0.92323005,-0.9228268,-0.9228268,-0.9228268,-0.922558,-0.9221548,-0.9221548,-0.9221548,-0.9221548,-0.9221548,-0.9222892,-0.922558,-0.922558,-0.922558,-0.9228268,-0.92296124,-0.92296124,-0.9228268,-0.9228268,-0.92309564,-0.92323005,-0.92336446,-0.92309564,-0.9222892,-0.92134833,-0.9209451,-0.9210795,-0.9209451,-0.9208107,-0.9206763,-0.92013866,-0.9190633,-0.91946656,-0.92148274,-0.9228268,-0.9228268,-0.92349887,-0.9245742,-0.9237677,-0.9224236,-0.922558,-0.9243054,-0.92618716,-0.9265904,-0.92591834,-0.9252463,-0.9252463,-0.9249775,-0.92349887,-0.922558,-0.9228268,-0.9224236,-0.92148274,-0.92134833,-0.9198698,-0.91624075,-0.91556865,-0.91933215,-0.9226924,-0.92296124,-0.9210795,-0.91960096,-0.9206763,-0.92323005,-0.9244398,-0.9245742,-0.9248431,-0.9243054,-0.9226924,-0.922558,-0.9247086,-0.9255151,-0.92336446,-0.9226924,-0.9265904,-0.92968184,-0.93008506,-0.93008506,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.92968184,-0.92995065,-0.9304883,-0.9304883,-0.9302195,-0.93008506,-0.9303539,-0.9304883,-0.93008506,-0.93008506,-0.9303539,-0.9302195,-0.92995065,-0.93008506,-0.92981625,-0.92968184,-0.93008506,-0.93008506,-0.92981625,-0.9295474,-0.93008506,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.93008506,-0.92995065,-0.9303539,-0.9304883,-0.9302195,-0.9302195,-0.93008506,-0.92981625,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92968184,-0.929413,-0.9292786,-0.9295474,-0.92995065,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.92981625,-0.929413,-0.9272624,-0.9239021,-0.9228268,-0.9241709,-0.9251119,-0.9244398,-0.9239021,-0.9248431,-0.92578393,-0.9255151,-0.9240365,-0.92309564,-0.9222892,-0.9209451,-0.9204075,-0.92175156,-0.92323005,-0.9226924,-0.9212139,-0.9206763,-0.9205419,-0.9204075,-0.9209451,-0.9220204,-0.9221548,-0.92188597,-0.9221548,-0.922558,-0.9221548,-0.92161715,-0.9222892,-0.92349887,-0.9240365,-0.9239021,-0.92349887,-0.92323005,-0.9236333,-0.9239021,-0.92349887,-0.92296124,-0.92323005,-0.92349887,-0.922558,-0.9220204,-0.92148274,-0.9206763,-0.9204075,-0.9206763,-0.92161715,-0.922558,-0.9226924,-0.9226924,-0.92309564,-0.92349887,-0.92349887,-0.92349887,-0.92309564,-0.9228268,-0.9228268,-0.92309564,-0.92296124,-0.9224236,-0.9222892,-0.9222892,-0.9222892,-0.9222892,-0.9222892,-0.9222892,-0.9222892,-0.9222892,-0.9224236,-0.9224236,-0.9222892,-0.9224236,-0.9228268,-0.92336446,-0.9239021,-0.9236333,-0.9228268,-0.922558,-0.9228268,-0.9226924,-0.9224236,-0.9220204,-0.9220204,-0.9221548,-0.9222892,-0.9222892,-0.9221548,-0.9220204,-0.9221548,-0.922558,-0.9228268,-0.92296124,-0.9226924,-0.9224236,-0.9222892,-0.9224236,-0.9226924,-0.92296124,-0.9226924,-0.9222892,-0.9221548,-0.9221548,-0.92188597,-0.92161715,-0.92161715,-0.92134833,-0.9204075,-0.91960096,-0.92027307,-0.9220204,-0.9228268,-0.92296124,-0.9240365,-0.9248431,-0.9239021,-0.92296124,-0.9243054,-0.92618716,-0.92618716,-0.9255151,-0.9255151,-0.9253807,-0.9249775,-0.9245742,-0.9239021,-0.92323005,-0.92336446,-0.92296124,-0.92188597,-0.92134833,-0.9206763,-0.91919774,-0.9189289,-0.9205419,-0.9221548,-0.922558,-0.92134833,-0.91960096,-0.9198698,-0.9221548,-0.9239021,-0.9243054,-0.9245742,-0.9245742,-0.92349887,-0.9228268,-0.9241709,-0.92578393,-0.9241709,-0.9222892,-0.9245742,-0.9288754,-0.92968184,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.92968184,-0.92981625,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.93008506,-0.92995065,-0.92981625,-0.92981625,-0.92995065,-0.9302195,-0.93008506,-0.92968184,-0.9302195,-0.93008506,-0.9302195,-0.93008506,-0.9303539,-0.9303539,-0.93008506,-0.9302195,-0.9304883,-0.93008506,-0.92968184,-0.92981625,-0.92968184,-0.92968184,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92860657,-0.9291442,-0.92981625,-0.92981625,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.92968184,-0.928741,-0.9256495,-0.92309564,-0.9236333,-0.9251119,-0.9249775,-0.9243054,-0.9244398,-0.9253807,-0.9255151,-0.9243054,-0.92309564,-0.92309564,-0.92188597,-0.9197354,-0.9204075,-0.92323005,-0.9241709,-0.9228268,-0.92134833,-0.92027307,-0.92000425,-0.9205419,-0.9209451,-0.9209451,-0.9210795,-0.92134833,-0.92175156,-0.9222892,-0.9222892,-0.9221548,-0.922558,-0.92296124,-0.92309564,-0.92349887,-0.9236333,-0.92349887,-0.9236333,-0.9236333,-0.92323005,-0.9228268,-0.92296124,-0.9237677,-0.9240365,-0.92349887,-0.9222892,-0.92134833,-0.9212139,-0.92148274,-0.9220204,-0.92296124,-0.92336446,-0.92309564,-0.92309564,-0.92323005,-0.92296124,-0.9226924,-0.9226924,-0.922558,-0.9226924,-0.92296124,-0.92296124,-0.9226924,-0.9224236,-0.9222892,-0.9222892,-0.9222892,-0.9222892,-0.9224236,-0.9224236,-0.9224236,-0.9222892,-0.9222892,-0.9222892,-0.9222892,-0.9226924,-0.92323005,-0.9237677,-0.92349887,-0.9228268,-0.922558,-0.9228268,-0.9226924,-0.9222892,-0.9220204,-0.9221548,-0.9224236,-0.9224236,-0.9222892,-0.9221548,-0.92188597,-0.92188597,-0.9220204,-0.9224236,-0.9226924,-0.9226924,-0.9224236,-0.9220204,-0.92188597,-0.9220204,-0.9221548,-0.922558,-0.9228268,-0.92296124,-0.9228268,-0.9224236,-0.9220204,-0.92188597,-0.92161715,-0.9206763,-0.9204075,-0.92134833,-0.9226924,-0.92323005,-0.92349887,-0.9243054,-0.9248431,-0.9244398,-0.9239021,-0.9244398,-0.9255151,-0.9256495,-0.9249775,-0.9247086,-0.9247086,-0.9244398,-0.9240365,-0.9237677,-0.9236333,-0.9236333,-0.92309564,-0.92188597,-0.9212139,-0.92134833,-0.9212139,-0.9210795,-0.9212139,-0.92161715,-0.9224236,-0.9221548,-0.9205419,-0.92013866,-0.92175156,-0.92349887,-0.9243054,-0.9248431,-0.9248431,-0.9241709,-0.92323005,-0.9236333,-0.9251119,-0.9247086,-0.9224236,-0.92349887,-0.92753124,-0.929413,-0.92995065,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.92981625,-0.92968184,-0.93008506,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.93008506,-0.92995065,-0.92995065,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9247086,-0.92753124,-0.9282033,-0.92981625,-0.9303539,-0.93008506,-0.9303539,-0.93008506,-0.92981625,-0.92981625,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.9304883,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.92968184,-0.92739683,-0.9239021,-0.9228268,-0.9244398,-0.9255151,-0.9245742,-0.9236333,-0.9243054,-0.9255151,-0.9249775,-0.9236333,-0.92349887,-0.92336446,-0.92148274,-0.92013866,-0.9222892,-0.9247086,-0.9241709,-0.92188597,-0.9206763,-0.92027307,-0.9204075,-0.9204075,-0.9198698,-0.91960096,-0.92013866,-0.9209451,-0.92175156,-0.9228268,-0.92336446,-0.92296124,-0.92296124,-0.92336446,-0.92323005,-0.92296124,-0.9236333,-0.9241709,-0.9240365,-0.9236333,-0.92349887,-0.92336446,-0.92323005,-0.92349887,-0.9237677,-0.92349887,-0.9226924,-0.9220204,-0.92188597,-0.9221548,-0.922558,-0.92296124,-0.92323005,-0.92323005,-0.92309564,-0.92296124,-0.9226924,-0.9224236,-0.9224236,-0.9224236,-0.9224236,-0.9228268,-0.92309564,-0.92296124,-0.922558,-0.9222892,-0.9222892,-0.9224236,-0.922558,-0.9224236,-0.9222892,-0.9221548,-0.9221548,-0.9221548,-0.9222892,-0.9222892,-0.922558,-0.92309564,-0.9236333,-0.92336446,-0.9228268,-0.922558,-0.922558,-0.9224236,-0.9222892,-0.9221548,-0.9222892,-0.9224236,-0.9224236,-0.9222892,-0.9221548,-0.9221548,-0.92188597,-0.92175156,-0.9220204,-0.922558,-0.9228268,-0.922558,-0.9222892,-0.9220204,-0.9220204,-0.9220204,-0.9224236,-0.9228268,-0.92336446,-0.92349887,-0.92309564,-0.9224236,-0.9220204,-0.92161715,-0.9210795,-0.9212139,-0.9221548,-0.92296124,-0.92349887,-0.9241709,-0.9245742,-0.9245742,-0.9243054,-0.9240365,-0.9236333,-0.9239021,-0.9243054,-0.9241709,-0.9239021,-0.9243054,-0.9245742,-0.9243054,-0.9237677,-0.9237677,-0.9239021,-0.92323005,-0.9220204,-0.92161715,-0.92161715,-0.9212139,-0.9208107,-0.9212139,-0.92175156,-0.9226924,-0.92309564,-0.92175156,-0.9205419,-0.9209451,-0.9224236,-0.9237677,-0.9247086,-0.9247086,-0.9241709,-0.92349887,-0.92323005,-0.9241709,-0.9243054,-0.9224236,-0.9221548,-0.92618716,-0.9291442,-0.92968184,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.92981625,-0.92995065,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.92349887,-0.9267248,-0.92766565,-0.93008506,-0.93008506,-0.92981625,-0.9303539,-0.93008506,-0.9295474,-0.92968184,-0.92981625,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.93008506,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.93008506,-0.929413,-0.92605275,-0.9226924,-0.9228268,-0.9248431,-0.9252463,-0.9236333,-0.9228268,-0.9240365,-0.9253807,-0.9244398,-0.92309564,-0.9236333,-0.92349887,-0.9212139,-0.9212139,-0.9239021,-0.9248431,-0.92309564,-0.9212139,-0.9204075,-0.92013866,-0.9206763,-0.9210795,-0.92013866,-0.91933215,-0.9197354,-0.9205419,-0.92161715,-0.92309564,-0.9239021,-0.92336446,-0.92323005,-0.9237677,-0.92349887,-0.92296124,-0.92349887,-0.9243054,-0.9243054,-0.9237677,-0.92323005,-0.92323005,-0.92323005,-0.92296124,-0.92309564,-0.92349887,-0.92336446,-0.9228268,-0.9224236,-0.9224236,-0.9228268,-0.92296124,-0.9226924,-0.9226924,-0.9226924,-0.92296124,-0.9228268,-0.922558,-0.922558,-0.9226924,-0.9226924,-0.92296124,-0.92309564,-0.92296124,-0.9224236,-0.9224236,-0.922558,-0.922558,-0.922558,-0.9224236,-0.9221548,-0.9220204,-0.9221548,-0.9222892,-0.9222892,-0.9222892,-0.9222892,-0.9226924,-0.92323005,-0.92323005,-0.9226924,-0.922558,-0.9224236,-0.9221548,-0.9221548,-0.9222892,-0.9221548,-0.9222892,-0.9222892,-0.9221548,-0.9221548,-0.9222892,-0.9221548,-0.92188597,-0.92175156,-0.9220204,-0.922558,-0.9226924,-0.9224236,-0.9222892,-0.9222892,-0.9224236,-0.9226924,-0.92309564,-0.92336446,-0.9236333,-0.92349887,-0.9226924,-0.9220204,-0.92175156,-0.92161715,-0.92175156,-0.9222892,-0.92296124,-0.9239021,-0.9244398,-0.9244398,-0.9241709,-0.9240365,-0.9240365,-0.92349887,-0.92323005,-0.92336446,-0.9240365,-0.9243054,-0.9241709,-0.9241709,-0.9241709,-0.9240365,-0.9240365,-0.9239021,-0.92336446,-0.9220204,-0.9209451,-0.9208107,-0.92134833,-0.92134833,-0.92134833,-0.92188597,-0.92309564,-0.9236333,-0.9224236,-0.9206763,-0.9204075,-0.92134833,-0.92309564,-0.9247086,-0.9251119,-0.9241709,-0.92336446,-0.92323005,-0.9240365,-0.9248431,-0.92349887,-0.9222892,-0.9247086,-0.9283377,-0.92968184,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.92995065,-0.92995065,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.92981625,-0.93008506,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.92995065,-0.92981625,-0.92968184,-0.93008506,-0.9302195,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.929413,-0.929413,-0.9291442,-0.9302195,-0.93008506,-0.92995065,-0.9302195,-0.92981625,-0.9295474,-0.92981625,-0.93008506,-0.9302195,-0.9304883,-0.9303539,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9302195,-0.93008506,-0.9302195,-0.9304883,-0.9303539,-0.92968184,-0.92860657,-0.9248431,-0.9226924,-0.9239021,-0.9253807,-0.9248431,-0.92323005,-0.9228268,-0.9243054,-0.9252463,-0.9241709,-0.92323005,-0.9237677,-0.92309564,-0.92175156,-0.92296124,-0.9249775,-0.9243054,-0.9221548,-0.9208107,-0.92013866,-0.92013866,-0.9209451,-0.92148274,-0.9206763,-0.91933215,-0.9190633,-0.92027307,-0.9221548,-0.9237677,-0.9243054,-0.9240365,-0.9236333,-0.9240365,-0.9240365,-0.92336446,-0.92336446,-0.9239021,-0.9240365,-0.92349887,-0.9228268,-0.92309564,-0.9236333,-0.92309564,-0.922558,-0.92309564,-0.9236333,-0.92336446,-0.9228268,-0.9226924,-0.92296124,-0.92296124,-0.9226924,-0.9224236,-0.9226924,-0.92309564,-0.9228268,-0.9226924,-0.9228268,-0.92296124,-0.92296124,-0.92296124,-0.92309564,-0.9228268,-0.922558,-0.922558,-0.9226924,-0.9226924,-0.9224236,-0.9224236,-0.9222892,-0.9221548,-0.9221548,-0.9220204,-0.9220204,-0.9222892,-0.9221548,-0.9222892,-0.92309564,-0.92323005,-0.9226924,-0.9224236,-0.9224236,-0.9220204,-0.92188597,-0.9220204,-0.9220204,-0.9222892,-0.9222892,-0.92188597,-0.92188597,-0.9222892,-0.9224236,-0.9221548,-0.92188597,-0.92175156,-0.9222892,-0.922558,-0.922558,-0.9224236,-0.9224236,-0.922558,-0.92296124,-0.92349887,-0.92349887,-0.92323005,-0.92323005,-0.9228268,-0.9222892,-0.9220204,-0.9220204,-0.9222892,-0.9228268,-0.92336446,-0.9239021,-0.9241709,-0.9243054,-0.9240365,-0.9241709,-0.9241709,-0.92349887,-0.92296124,-0.92336446,-0.9241709,-0.9245742,-0.9241709,-0.9237677,-0.9239021,-0.9243054,-0.9243054,-0.9236333,-0.922558,-0.92161715,-0.9209451,-0.9210795,-0.92161715,-0.9220204,-0.92175156,-0.92188597,-0.92309564,-0.9243054,-0.92336446,-0.9209451,-0.92000425,-0.9208107,-0.92161715,-0.92309564,-0.9247086,-0.9244398,-0.92323005,-0.92309564,-0.9240365,-0.9251119,-0.9241709,-0.9222892,-0.9239021,-0.9282033,-0.9295474,-0.93008506,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.93008506,-0.93008506,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.92995065,-0.92981625,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92981625,-0.92766565,-0.9288754,-0.92968184,-0.93008506,-0.92995065,-0.93008506,-0.93008506,-0.92981625,-0.92995065,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.92995065,-0.9291442,-0.92753124,-0.9240365,-0.92296124,-0.9244398,-0.9255151,-0.9249775,-0.9239021,-0.9241709,-0.9251119,-0.9248431,-0.9236333,-0.92336446,-0.92336446,-0.9220204,-0.92188597,-0.9241709,-0.9251119,-0.92323005,-0.92134833,-0.9204075,-0.9198698,-0.92027307,-0.9210795,-0.92134833,-0.9205419,-0.9190633,-0.9187945,-0.9209451,-0.92336446,-0.9245742,-0.9248431,-0.9249775,-0.9247086,-0.9240365,-0.92349887,-0.9236333,-0.9241709,-0.9237677,-0.92309564,-0.9228268,-0.9226924,-0.92296124,-0.9236333,-0.9236333,-0.9228268,-0.9228268,-0.92336446,-0.92323005,-0.92309564,-0.92309564,-0.92296124,-0.92309564,-0.92309564,-0.92296124,-0.92296124,-0.92309564,-0.9228268,-0.922558,-0.9228268,-0.92296124,-0.9228268,-0.9228268,-0.92309564,-0.9228268,-0.9222892,-0.922558,-0.9228268,-0.9226924,-0.9224236,-0.9224236,-0.9224236,-0.9221548,-0.9221548,-0.9220204,-0.92188597,-0.9221548,-0.9222892,-0.9220204,-0.9226924,-0.92323005,-0.9226924,-0.9221548,-0.9222892,-0.9220204,-0.92161715,-0.92175156,-0.9220204,-0.9222892,-0.9222892,-0.92188597,-0.92161715,-0.9220204,-0.9222892,-0.9221548,-0.92188597,-0.92188597,-0.9221548,-0.922558,-0.922558,-0.9226924,-0.9228268,-0.9226924,-0.92296124,-0.92349887,-0.9237677,-0.92349887,-0.92296124,-0.9226924,-0.922558,-0.9224236,-0.922558,-0.922558,-0.92309564,-0.9237677,-0.9240365,-0.9240365,-0.9239021,-0.9236333,-0.9237677,-0.9239021,-0.9236333,-0.92323005,-0.92336446,-0.9240365,-0.9243054,-0.9241709,-0.9239021,-0.9239021,-0.9244398,-0.9243054,-0.92309564,-0.92161715,-0.9210795,-0.9210795,-0.92161715,-0.92188597,-0.92188597,-0.92188597,-0.9220204,-0.9228268,-0.9244398,-0.9245742,-0.9220204,-0.9198698,-0.91946656,-0.9197354,-0.9210795,-0.9237677,-0.9247086,-0.92336446,-0.92296124,-0.9239021,-0.9248431,-0.9243054,-0.9226924,-0.92349887,-0.92739683,-0.9292786,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9302195,-0.93008506,-0.93008506,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.92995065,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.929413,-0.9280689,-0.9295474,-0.929413,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9302195,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9304883,-0.9304883,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.92995065,-0.92981625,-0.92995065,-0.9288754,-0.92632157,-0.92323005,-0.92309564,-0.9251119,-0.92605275,-0.9251119,-0.9244398,-0.9248431,-0.9252463,-0.9244398,-0.92336446,-0.92296124,-0.9221548,-0.92148274,-0.9228268,-0.9247086,-0.9243054,-0.9220204,-0.9205419,-0.9198698,-0.9198698,-0.9205419,-0.92134833,-0.9212139,-0.92000425,-0.9186601,-0.91933215,-0.9220204,-0.9243054,-0.9251119,-0.9252463,-0.9252463,-0.9251119,-0.9241709,-0.9236333,-0.9245742,-0.9249775,-0.9239021,-0.9228268,-0.922558,-0.9228268,-0.92296124,-0.92336446,-0.9239021,-0.92349887,-0.922558,-0.9228268,-0.92323005,-0.92336446,-0.92336446,-0.92323005,-0.92309564,-0.92323005,-0.92309564,-0.9228268,-0.92296124,-0.9228268,-0.922558,-0.922558,-0.9228268,-0.9228268,-0.922558,-0.922558,-0.9224236,-0.9222892,-0.9224236,-0.922558,-0.9224236,-0.9222892,-0.9222892,-0.9222892,-0.9220204,-0.9220204,-0.9220204,-0.92188597,-0.9220204,-0.9221548,-0.9220204,-0.9222892,-0.92296124,-0.922558,-0.9220204,-0.9221548,-0.9221548,-0.9220204,-0.92188597,-0.9220204,-0.9221548,-0.9220204,-0.92175156,-0.92148274,-0.92188597,-0.9222892,-0.9221548,-0.92188597,-0.92188597,-0.9221548,-0.9224236,-0.922558,-0.9228268,-0.92296124,-0.9228268,-0.9226924,-0.92323005,-0.9236333,-0.92336446,-0.9228268,-0.922558,-0.922558,-0.9226924,-0.9226924,-0.9226924,-0.92309564,-0.9237677,-0.9240365,-0.9237677,-0.92323005,-0.92323005,-0.9236333,-0.9241709,-0.9241709,-0.9237677,-0.92336446,-0.92349887,-0.9239021,-0.9245742,-0.9247086,-0.9241709,-0.9239021,-0.9241709,-0.92309564,-0.9212139,-0.9204075,-0.9209451,-0.92188597,-0.9221548,-0.92148274,-0.9210795,-0.92148274,-0.9221548,-0.92349887,-0.9248431,-0.92349887,-0.9205419,-0.9187945,-0.9183913,-0.9197354,-0.92323005,-0.9249775,-0.9236333,-0.92296124,-0.9240365,-0.9251119,-0.9249775,-0.92336446,-0.9228268,-0.92591834,-0.929413,-0.93008506,-0.93008506,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9302195,-0.93008506,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9302195,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.93008506,-0.93008506,-0.9302195,-0.92995065,-0.9303539,-0.9303539,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92860657,-0.92753124,-0.92860657,-0.9290098,-0.93008506,-0.92981625,-0.92995065,-0.92995065,-0.92981625,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.92995065,-0.92981625,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.92968184,-0.9283377,-0.9251119,-0.922558,-0.92349887,-0.9253807,-0.92578393,-0.9249775,-0.9247086,-0.9249775,-0.9249775,-0.9244398,-0.92349887,-0.9224236,-0.92134833,-0.9210795,-0.92188597,-0.92323005,-0.92296124,-0.9210795,-0.91946656,-0.91933215,-0.92013866,-0.9206763,-0.9204075,-0.91946656,-0.9183913,-0.9187945,-0.9212139,-0.9237677,-0.9248431,-0.9247086,-0.9240365,-0.9236333,-0.9237677,-0.9243054,-0.9247086,-0.9247086,-0.9247086,-0.9240365,-0.92323005,-0.92296124,-0.92309564,-0.92336446,-0.92349887,-0.9237677,-0.92349887,-0.9228268,-0.9226924,-0.92309564,-0.92349887,-0.92336446,-0.92309564,-0.92309564,-0.92309564,-0.92296124,-0.9228268,-0.9228268,-0.9228268,-0.922558,-0.922558,-0.9226924,-0.922558,-0.9222892,-0.9221548,-0.9220204,-0.9220204,-0.9221548,-0.9224236,-0.9222892,-0.9220204,-0.9221548,-0.9221548,-0.92188597,-0.92188597,-0.92188597,-0.9220204,-0.9221548,-0.9221548,-0.92188597,-0.9221548,-0.9226924,-0.9224236,-0.92175156,-0.92175156,-0.9220204,-0.92175156,-0.92161715,-0.92175156,-0.92175156,-0.92161715,-0.92161715,-0.92188597,-0.9221548,-0.9220204,-0.92188597,-0.92188597,-0.9220204,-0.9222892,-0.922558,-0.9226924,-0.922558,-0.9226924,-0.9228268,-0.92309564,-0.92323005,-0.92336446,-0.92336446,-0.92296124,-0.9226924,-0.9226924,-0.9228268,-0.9228268,-0.9228268,-0.92336446,-0.9239021,-0.9240365,-0.9237677,-0.92336446,-0.92336446,-0.9239021,-0.9243054,-0.9244398,-0.9240365,-0.9236333,-0.9236333,-0.9239021,-0.9245742,-0.9251119,-0.9247086,-0.9239021,-0.9237677,-0.92336446,-0.92161715,-0.9206763,-0.92148274,-0.92175156,-0.92175156,-0.92161715,-0.9212139,-0.9212139,-0.92148274,-0.9222892,-0.9243054,-0.9248431,-0.9221548,-0.92013866,-0.9190633,-0.9189289,-0.92188597,-0.9249775,-0.9241709,-0.9226924,-0.9236333,-0.9249775,-0.9251119,-0.9239021,-0.922558,-0.9245742,-0.9290098,-0.92968184,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9306227,-0.9302195,-0.93008506,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9304883,-0.9304883,-0.9302195,-0.93008506,-0.9303539,-0.9303539,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.93008506,-0.9302195,-0.93008506,-0.9303539,-0.92995065,-0.92995065,-0.9302195,-0.9303539,-0.9303539,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92766565,-0.9267248,-0.92793447,-0.9291442,-0.92995065,-0.92968184,-0.92995065,-0.93008506,-0.92995065,-0.92968184,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.92995065,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.92981625,-0.929413,-0.92753124,-0.9239021,-0.922558,-0.9241709,-0.9253807,-0.9247086,-0.9240365,-0.9247086,-0.9251119,-0.9248431,-0.9243054,-0.92296124,-0.9212139,-0.92027307,-0.9212139,-0.9222892,-0.922558,-0.92161715,-0.91933215,-0.9169128,-0.91650957,-0.9183913,-0.91933215,-0.9174504,-0.9158375,-0.91758484,-0.92188597,-0.9245742,-0.9249775,-0.9241709,-0.9228268,-0.9220204,-0.9222892,-0.92323005,-0.9237677,-0.9240365,-0.9245742,-0.9247086,-0.9241709,-0.92349887,-0.92336446,-0.92349887,-0.9237677,-0.9240365,-0.9240365,-0.9240365,-0.92323005,-0.922558,-0.9228268,-0.92336446,-0.92323005,-0.92296124,-0.92296124,-0.92296124,-0.9228268,-0.9226924,-0.9226924,-0.9226924,-0.922558,-0.922558,-0.9224236,-0.9221548,-0.9220204,-0.9220204,-0.92188597,-0.92175156,-0.9220204,-0.9222892,-0.9221548,-0.9221548,-0.9221548,-0.9220204,-0.92175156,-0.92148274,-0.92148274,-0.92175156,-0.9220204,-0.9220204,-0.92188597,-0.9224236,-0.92296124,-0.9226924,-0.92188597,-0.92148274,-0.92148274,-0.92134833,-0.9212139,-0.92134833,-0.92148274,-0.92148274,-0.92175156,-0.9221548,-0.9222892,-0.9221548,-0.92188597,-0.9220204,-0.9220204,-0.9221548,-0.922558,-0.9226924,-0.922558,-0.922558,-0.92296124,-0.92323005,-0.92323005,-0.92323005,-0.92336446,-0.92336446,-0.92309564,-0.9228268,-0.9228268,-0.92296124,-0.92323005,-0.92349887,-0.9237677,-0.9240365,-0.9241709,-0.9239021,-0.92349887,-0.92349887,-0.9240365,-0.9243054,-0.9241709,-0.9240365,-0.9239021,-0.9237677,-0.9241709,-0.9248431,-0.9249775,-0.9241709,-0.9236333,-0.92336446,-0.92188597,-0.9205419,-0.9208107,-0.9212139,-0.9212139,-0.92161715,-0.92175156,-0.92148274,-0.92148274,-0.92148274,-0.92296124,-0.9251119,-0.9244398,-0.9220204,-0.9205419,-0.9189289,-0.9198698,-0.9237677,-0.9248431,-0.92309564,-0.92309564,-0.9245742,-0.9253807,-0.9244398,-0.9224236,-0.9236333,-0.9282033,-0.9295474,-0.93008506,-0.9302195,-0.9302195,-0.9306227,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.93008506,-0.92995065,-0.9302195,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9303539,-0.9304883,-0.9302195,-0.93008506,-0.9302195,-0.92995065,-0.9304883,-0.92995065,-0.9302195,-0.93008506,-0.9302195,-0.93008506,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9282033,-0.9280689,-0.928741,-0.92981625,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.92995065,-0.92968184,-0.92968184,-0.92995065,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.929413,-0.9288754,-0.92605275,-0.9226924,-0.92296124,-0.9251119,-0.9256495,-0.9244398,-0.9240365,-0.9245742,-0.9247086,-0.9245742,-0.9239021,-0.9222892,-0.9205419,-0.9209451,-0.92309564,-0.9237677,-0.9220204,-0.9204075,-0.9187945,-0.91597193,-0.9139557,-0.91462773,-0.91556865,-0.9151654,-0.9170472,-0.9221548,-0.92578393,-0.9251119,-0.92296124,-0.92175156,-0.92148274,-0.9221548,-0.92336446,-0.9241709,-0.9237677,-0.92349887,-0.9241709,-0.9244398,-0.9236333,-0.92296124,-0.92309564,-0.92336446,-0.92336446,-0.92336446,-0.92349887,-0.9236333,-0.92309564,-0.922558,-0.9226924,-0.92309564,-0.92336446,-0.92309564,-0.92296124,-0.92309564,-0.92296124,-0.9226924,-0.922558,-0.9226924,-0.922558,-0.9222892,-0.9221548,-0.9221548,-0.9221548,-0.9220204,-0.92188597,-0.92175156,-0.92161715,-0.92175156,-0.9220204,-0.9221548,-0.9220204,-0.92161715,-0.9210795,-0.9209451,-0.9212139,-0.92175156,-0.9220204,-0.92175156,-0.92175156,-0.9224236,-0.92309564,-0.9226924,-0.92188597,-0.92148274,-0.92148274,-0.9212139,-0.9210795,-0.92134833,-0.92148274,-0.92161715,-0.92175156,-0.92188597,-0.9221548,-0.9222892,-0.9221548,-0.92188597,-0.92175156,-0.92188597,-0.9224236,-0.9228268,-0.9228268,-0.9228268,-0.92309564,-0.92323005,-0.92323005,-0.92309564,-0.92323005,-0.92336446,-0.92323005,-0.9228268,-0.9226924,-0.9228268,-0.92336446,-0.9236333,-0.9236333,-0.9239021,-0.9241709,-0.9240365,-0.9236333,-0.92349887,-0.9237677,-0.9241709,-0.9244398,-0.9245742,-0.9241709,-0.9239021,-0.9241709,-0.9244398,-0.9241709,-0.92349887,-0.92349887,-0.9237677,-0.9222892,-0.91960096,-0.9186601,-0.92013866,-0.9210795,-0.92134833,-0.92161715,-0.92148274,-0.92161715,-0.92161715,-0.9220204,-0.9241709,-0.92605275,-0.9247086,-0.9221548,-0.91960096,-0.9186601,-0.92148274,-0.9245742,-0.92349887,-0.9224236,-0.9237677,-0.9245742,-0.9239021,-0.9222892,-0.92323005,-0.9272624,-0.92968184,-0.92981625,-0.93008506,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9306227,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9304883,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9304883,-0.9304883,-0.9304883,-0.9302195,-0.92981625,-0.9292786,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92793447,-0.9284721,-0.9290098,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.929413,-0.9282033,-0.9244398,-0.92188597,-0.92336446,-0.9251119,-0.9249775,-0.9244398,-0.9245742,-0.9245742,-0.9241709,-0.9240365,-0.9239021,-0.922558,-0.92161715,-0.9221548,-0.92309564,-0.9228268,-0.92161715,-0.9204075,-0.9197354,-0.9185257,-0.91650957,-0.91543424,-0.91597193,-0.9183913,-0.922558,-0.92618716,-0.92578393,-0.9224236,-0.9204075,-0.9209451,-0.922558,-0.9237677,-0.9247086,-0.9248431,-0.9239021,-0.92296124,-0.92296124,-0.92296124,-0.9222892,-0.92188597,-0.9221548,-0.9222892,-0.9220204,-0.92188597,-0.9224236,-0.92296124,-0.9228268,-0.922558,-0.922558,-0.9228268,-0.92323005,-0.92323005,-0.92296124,-0.92296124,-0.92296124,-0.9228268,-0.9226924,-0.9226924,-0.922558,-0.9222892,-0.9221548,-0.9222892,-0.9220204,-0.92161715,-0.9212139,-0.9210795,-0.9212139,-0.92161715,-0.9220204,-0.9222892,-0.9221548,-0.92161715,-0.9210795,-0.9210795,-0.92134833,-0.92161715,-0.92175156,-0.92175156,-0.9220204,-0.92296124,-0.92336446,-0.9224236,-0.92148274,-0.92148274,-0.92134833,-0.9208107,-0.9208107,-0.92134833,-0.92161715,-0.92175156,-0.92188597,-0.9220204,-0.9221548,-0.9222892,-0.9224236,-0.9220204,-0.92188597,-0.9220204,-0.922558,-0.9228268,-0.9228268,-0.9228268,-0.92296124,-0.92309564,-0.92309564,-0.92323005,-0.92323005,-0.92309564,-0.92296124,-0.9228268,-0.9226924,-0.92296124,-0.92336446,-0.9236333,-0.9237677,-0.9240365,-0.9243054,-0.9243054,-0.9241709,-0.9240365,-0.9241709,-0.9243054,-0.9244398,-0.9247086,-0.9249775,-0.9247086,-0.9241709,-0.9239021,-0.92336446,-0.922558,-0.9226924,-0.92349887,-0.92323005,-0.9212139,-0.91933215,-0.9197354,-0.9208107,-0.92134833,-0.92134833,-0.92134833,-0.92148274,-0.92175156,-0.92148274,-0.9228268,-0.9253807,-0.9255151,-0.92349887,-0.9212139,-0.9185257,-0.9183913,-0.9221548,-0.9239021,-0.92309564,-0.9236333,-0.9247086,-0.9239021,-0.9222892,-0.9228268,-0.9265904,-0.92968184,-0.92981625,-0.9302195,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.92995065,-0.9302195,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.93008506,-0.92995065,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.93008506,-0.9302195,-0.9302195,-0.92981625,-0.929413,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9292786,-0.93008506,-0.92995065,-0.93008506,-0.92981625,-0.92995065,-0.92981625,-0.92981625,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9302195,-0.93008506,-0.9303539,-0.9304883,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9304883,-0.9303539,-0.93008506,-0.92981625,-0.9295474,-0.92739683,-0.92336446,-0.9221548,-0.9240365,-0.9251119,-0.9244398,-0.9243054,-0.9247086,-0.9240365,-0.9236333,-0.9241709,-0.9240365,-0.9228268,-0.9224236,-0.92309564,-0.92336446,-0.922558,-0.92148274,-0.9208107,-0.9204075,-0.9204075,-0.9205419,-0.9198698,-0.92000425,-0.922558,-0.92618716,-0.9268592,-0.9237677,-0.92134833,-0.9220204,-0.9237677,-0.9244398,-0.9243054,-0.9237677,-0.92296124,-0.92188597,-0.9205419,-0.9197354,-0.91960096,-0.92000425,-0.9205419,-0.9210795,-0.92134833,-0.92148274,-0.92134833,-0.92161715,-0.9222892,-0.9228268,-0.9226924,-0.9224236,-0.9224236,-0.9226924,-0.9228268,-0.9226924,-0.922558,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9226924,-0.9224236,-0.9222892,-0.9222892,-0.9220204,-0.92148274,-0.9210795,-0.9210795,-0.92161715,-0.9220204,-0.9221548,-0.9222892,-0.9222892,-0.92188597,-0.92148274,-0.9212139,-0.92148274,-0.92161715,-0.92161715,-0.92175156,-0.9222892,-0.9226924,-0.9226924,-0.92188597,-0.9212139,-0.92134833,-0.92134833,-0.9206763,-0.9205419,-0.9210795,-0.92161715,-0.92175156,-0.92188597,-0.9220204,-0.9221548,-0.9221548,-0.9220204,-0.9220204,-0.92188597,-0.9221548,-0.9226924,-0.9228268,-0.9226924,-0.922558,-0.9228268,-0.92296124,-0.92309564,-0.92309564,-0.92296124,-0.9228268,-0.9228268,-0.9228268,-0.9226924,-0.92309564,-0.92349887,-0.9236333,-0.9236333,-0.9239021,-0.9241709,-0.9243054,-0.9243054,-0.9241709,-0.9240365,-0.9239021,-0.92349887,-0.92349887,-0.9243054,-0.9249775,-0.9245742,-0.9241709,-0.9239021,-0.92309564,-0.9224236,-0.92296124,-0.9241709,-0.9243054,-0.9222892,-0.91919774,-0.91771924,-0.9182569,-0.9197354,-0.9208107,-0.9205419,-0.92000425,-0.92013866,-0.92188597,-0.9244398,-0.9252463,-0.9240365,-0.9222892,-0.91933215,-0.917316,-0.9197354,-0.92336446,-0.9236333,-0.9239021,-0.9251119,-0.9244398,-0.9222892,-0.9222892,-0.92591834,-0.9292786,-0.92995065,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.92995065,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9282033,-0.92981625,-0.9291442,-0.93008506,-0.92995065,-0.93008506,-0.9295474,-0.929413,-0.93008506,-0.93008506,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.92968184,-0.92968184,-0.92632157,-0.9226924,-0.9226924,-0.9248431,-0.9253807,-0.9245742,-0.9244398,-0.9241709,-0.92309564,-0.92323005,-0.9239021,-0.9228268,-0.92148274,-0.92323005,-0.9253807,-0.9244398,-0.9221548,-0.9210795,-0.9206763,-0.9204075,-0.9208107,-0.9210795,-0.9209451,-0.9221548,-0.9253807,-0.92739683,-0.9253807,-0.9226924,-0.9236333,-0.9256495,-0.9253807,-0.9236333,-0.9220204,-0.9204075,-0.9187945,-0.91758484,-0.91650957,-0.91637516,-0.91758484,-0.9197354,-0.9212139,-0.92148274,-0.92161715,-0.9220204,-0.9221548,-0.9220204,-0.9220204,-0.9222892,-0.9221548,-0.9220204,-0.9220204,-0.9224236,-0.9226924,-0.9228268,-0.9228268,-0.9228268,-0.9226924,-0.9226924,-0.9228268,-0.9228268,-0.922558,-0.9222892,-0.9221548,-0.9221548,-0.9220204,-0.9220204,-0.92188597,-0.92188597,-0.9220204,-0.9221548,-0.9220204,-0.9220204,-0.92175156,-0.92134833,-0.9212139,-0.92148274,-0.92175156,-0.92175156,-0.92134833,-0.9209451,-0.9210795,-0.9210795,-0.9210795,-0.9210795,-0.92148274,-0.92134833,-0.9209451,-0.9206763,-0.9210795,-0.92161715,-0.9220204,-0.92188597,-0.92188597,-0.9220204,-0.9221548,-0.9221548,-0.9222892,-0.9222892,-0.9222892,-0.922558,-0.9228268,-0.922558,-0.9222892,-0.922558,-0.92296124,-0.92296124,-0.9228268,-0.9228268,-0.92296124,-0.92296124,-0.9228268,-0.9228268,-0.92309564,-0.92323005,-0.92336446,-0.9236333,-0.9237677,-0.9237677,-0.92349887,-0.9236333,-0.9236333,-0.92336446,-0.92296124,-0.9228268,-0.92296124,-0.9236333,-0.9244398,-0.9247086,-0.9243054,-0.9243054,-0.9245742,-0.9236333,-0.9222892,-0.92309564,-0.9251119,-0.9255151,-0.92336446,-0.92013866,-0.9182569,-0.9189289,-0.92013866,-0.9185257,-0.91529983,-0.91529983,-0.91933215,-0.9237677,-0.9251119,-0.9241709,-0.92296124,-0.9210795,-0.9187945,-0.91960096,-0.922558,-0.9236333,-0.9237677,-0.9247086,-0.9244398,-0.9222892,-0.9220204,-0.9253807,-0.928741,-0.92981625,-0.93008506,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.93008506,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9304883,-0.9303539,-0.93008506,-0.93008506,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.92995065,-0.92995065,-0.9302195,-0.92995065,-0.92995065,-0.93008506,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9292786,-0.93008506,-0.9295474,-0.92981625,-0.9302195,-0.92995065,-0.9292786,-0.929413,-0.93008506,-0.92981625,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.93008506,-0.92995065,-0.92981625,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.92981625,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.9304883,-0.9304883,-0.9304883,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9295474,-0.9295474,-0.9253807,-0.9222892,-0.92323005,-0.9252463,-0.9253807,-0.9247086,-0.9245742,-0.9241709,-0.92349887,-0.92336446,-0.922558,-0.9205419,-0.9209451,-0.9247086,-0.9267248,-0.9241709,-0.9210795,-0.9197354,-0.91960096,-0.9206763,-0.9212139,-0.9205419,-0.92134833,-0.9245742,-0.9269936,-0.9255151,-0.9228268,-0.92349887,-0.9253807,-0.9248431,-0.922558,-0.9206763,-0.9187945,-0.91637516,-0.91462773,-0.9144933,-0.91610634,-0.9181225,-0.91946656,-0.9212139,-0.922558,-0.922558,-0.9221548,-0.922558,-0.92336446,-0.92323005,-0.9224236,-0.9220204,-0.92175156,-0.9220204,-0.9222892,-0.922558,-0.922558,-0.922558,-0.922558,-0.922558,-0.9224236,-0.9224236,-0.9226924,-0.92296124,-0.9228268,-0.922558,-0.9221548,-0.9220204,-0.9220204,-0.9220204,-0.92175156,-0.92175156,-0.92188597,-0.9221548,-0.92188597,-0.92175156,-0.92188597,-0.9212139,-0.9209451,-0.92148274,-0.92161715,-0.92134833,-0.9222892,-0.922558,-0.9226924,-0.92175156,-0.92134833,-0.9210795,-0.9212139,-0.9210795,-0.9208107,-0.9208107,-0.9210795,-0.92148274,-0.92188597,-0.9221548,-0.9220204,-0.9221548,-0.9222892,-0.9222892,-0.9221548,-0.9222892,-0.9220204,-0.9221548,-0.9226924,-0.922558,-0.92188597,-0.92188597,-0.9224236,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.92296124,-0.92323005,-0.92349887,-0.9237677,-0.9239021,-0.9237677,-0.92323005,-0.922558,-0.92188597,-0.9220204,-0.9226924,-0.9236333,-0.9244398,-0.9237677,-0.92309564,-0.9244398,-0.9245742,-0.92175156,-0.9204075,-0.92349887,-0.9269936,-0.9269936,-0.9245742,-0.92188597,-0.9210795,-0.9208107,-0.9174504,-0.9122084,-0.91126746,-0.91624075,-0.9221548,-0.9245742,-0.9243054,-0.9236333,-0.9221548,-0.91960096,-0.91919774,-0.92161715,-0.9237677,-0.9241709,-0.9247086,-0.9244398,-0.9226924,-0.9221548,-0.9251119,-0.9284721,-0.9295474,-0.92995065,-0.9303539,-0.9303539,-0.9304883,-0.9302195,-0.92995065,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.93008506,-0.92995065,-0.92981625,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9303539,-0.929413,-0.92981625,-0.9302195,-0.93008506,-0.93008506,-0.92995065,-0.929413,-0.92968184,-0.92995065,-0.92981625,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.92981625,-0.93008506,-0.92968184,-0.93008506,-0.93008506,-0.92995065,-0.9303539,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.9304883,-0.9304883,-0.9302195,-0.93008506,-0.9303539,-0.92995065,-0.9295474,-0.9291442,-0.9248431,-0.9221548,-0.92336446,-0.9253807,-0.9255151,-0.9247086,-0.9241709,-0.9245742,-0.9251119,-0.9239021,-0.9212139,-0.92027307,-0.92309564,-0.926456,-0.92632157,-0.9224236,-0.91798806,-0.9167784,-0.9190633,-0.9212139,-0.9210795,-0.9210795,-0.9239021,-0.927128,-0.9267248,-0.9240365,-0.92349887,-0.9244398,-0.92336446,-0.9208107,-0.9197354,-0.9187945,-0.91597193,-0.91328365,-0.9144933,-0.91758484,-0.9198698,-0.9206763,-0.9205419,-0.9210795,-0.9221548,-0.9226924,-0.9222892,-0.9224236,-0.92336446,-0.9236333,-0.92309564,-0.9226924,-0.9222892,-0.9221548,-0.922558,-0.9228268,-0.922558,-0.9222892,-0.9222892,-0.9224236,-0.922558,-0.9224236,-0.9224236,-0.922558,-0.9228268,-0.9226924,-0.9221548,-0.92175156,-0.92175156,-0.92188597,-0.92175156,-0.92175156,-0.9220204,-0.9221548,-0.9220204,-0.92188597,-0.92188597,-0.92134833,-0.9206763,-0.92134833,-0.92161715,-0.92148274,-0.92323005,-0.9251119,-0.9249775,-0.92296124,-0.92175156,-0.92148274,-0.9212139,-0.9206763,-0.9204075,-0.9206763,-0.92134833,-0.92175156,-0.92188597,-0.92188597,-0.9220204,-0.9221548,-0.9221548,-0.92188597,-0.92175156,-0.9220204,-0.9220204,-0.9221548,-0.9224236,-0.922558,-0.9220204,-0.92161715,-0.9221548,-0.922558,-0.922558,-0.9226924,-0.9228268,-0.9228268,-0.92296124,-0.92296124,-0.9226924,-0.922558,-0.922558,-0.9228268,-0.92349887,-0.9240365,-0.9245742,-0.9247086,-0.9244398,-0.9243054,-0.9236333,-0.9224236,-0.9212139,-0.9206763,-0.92134833,-0.9226924,-0.92349887,-0.92296124,-0.92309564,-0.9241709,-0.92323005,-0.9209451,-0.92175156,-0.9251119,-0.9269936,-0.92618716,-0.9240365,-0.922558,-0.9220204,-0.91919774,-0.9140901,-0.9128804,-0.9171816,-0.92161715,-0.9237677,-0.9243054,-0.9237677,-0.9224236,-0.92013866,-0.9187945,-0.9205419,-0.92323005,-0.9240365,-0.9244398,-0.9245742,-0.92323005,-0.9220204,-0.9241709,-0.9282033,-0.929413,-0.92995065,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9302195,-0.92995065,-0.93008506,-0.9302195,-0.93008506,-0.92981625,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92968184,-0.9280689,-0.929413,-0.929413,-0.9303539,-0.93008506,-0.92995065,-0.92968184,-0.92968184,-0.92981625,-0.92968184,-0.92981625,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9295474,-0.9282033,-0.9239021,-0.92188597,-0.92336446,-0.9253807,-0.9255151,-0.9240365,-0.92336446,-0.9244398,-0.9252463,-0.92349887,-0.9212139,-0.922558,-0.92605275,-0.92618716,-0.9221548,-0.9170472,-0.9143589,-0.91637516,-0.9198698,-0.9209451,-0.9209451,-0.92296124,-0.92591834,-0.9268592,-0.9253807,-0.9244398,-0.9247086,-0.9236333,-0.9209451,-0.91919774,-0.9190633,-0.91771924,-0.91503096,-0.91529983,-0.9198698,-0.92296124,-0.922558,-0.92134833,-0.92148274,-0.9224236,-0.92323005,-0.92296124,-0.9220204,-0.9220204,-0.9228268,-0.9237677,-0.9237677,-0.92323005,-0.9226924,-0.922558,-0.9226924,-0.92296124,-0.9228268,-0.9222892,-0.9222892,-0.922558,-0.9226924,-0.9226924,-0.9224236,-0.9221548,-0.9222892,-0.9224236,-0.9222892,-0.9220204,-0.92188597,-0.92175156,-0.92188597,-0.9220204,-0.9221548,-0.9222892,-0.9221548,-0.92188597,-0.92175156,-0.92134833,-0.9209451,-0.9210795,-0.92161715,-0.9221548,-0.9226924,-0.9236333,-0.9241709,-0.92336446,-0.9220204,-0.92134833,-0.9210795,-0.9206763,-0.9204075,-0.9206763,-0.92134833,-0.9220204,-0.9220204,-0.92175156,-0.92161715,-0.92188597,-0.9220204,-0.92175156,-0.92148274,-0.92161715,-0.9220204,-0.9224236,-0.922558,-0.922558,-0.9222892,-0.9221548,-0.9222892,-0.9221548,-0.9221548,-0.9224236,-0.92296124,-0.92309564,-0.92309564,-0.92309564,-0.92323005,-0.9236333,-0.9240365,-0.9244398,-0.9247086,-0.9247086,-0.9248431,-0.9249775,-0.9248431,-0.9247086,-0.9248431,-0.9245742,-0.9236333,-0.9224236,-0.9212139,-0.9208107,-0.92148274,-0.922558,-0.92296124,-0.9237677,-0.9251119,-0.9252463,-0.92336446,-0.92309564,-0.9255151,-0.9269936,-0.9256495,-0.92323005,-0.9220204,-0.9212139,-0.9182569,-0.9158375,-0.91771924,-0.92134833,-0.92349887,-0.9247086,-0.9245742,-0.92323005,-0.92148274,-0.92013866,-0.9204075,-0.9221548,-0.92349887,-0.9236333,-0.92323005,-0.9220204,-0.9212139,-0.92323005,-0.92766565,-0.9295474,-0.92995065,-0.9303539,-0.9302195,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.93008506,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9292786,-0.92793447,-0.929413,-0.929413,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.92981625,-0.92995065,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9302195,-0.92981625,-0.9290098,-0.9267248,-0.92309564,-0.9224236,-0.9240365,-0.9252463,-0.9248431,-0.9236333,-0.92336446,-0.9240365,-0.9236333,-0.9221548,-0.92188597,-0.9249775,-0.9267248,-0.92323005,-0.9170472,-0.91341805,-0.9144933,-0.91798806,-0.9204075,-0.9210795,-0.9222892,-0.9249775,-0.92605275,-0.9249775,-0.9244398,-0.9248431,-0.9243054,-0.9224236,-0.9205419,-0.9198698,-0.91960096,-0.9185257,-0.91798806,-0.9198698,-0.9226924,-0.9237677,-0.92296124,-0.9228268,-0.9243054,-0.9256495,-0.92605275,-0.9249775,-0.92296124,-0.92188597,-0.9220204,-0.922558,-0.92296124,-0.92309564,-0.92296124,-0.9228268,-0.9228268,-0.92296124,-0.9228268,-0.9224236,-0.9221548,-0.9224236,-0.922558,-0.922558,-0.9224236,-0.9222892,-0.9221548,-0.9222892,-0.9221548,-0.9220204,-0.92175156,-0.92161715,-0.92175156,-0.9221548,-0.9222892,-0.9221548,-0.9220204,-0.92188597,-0.92175156,-0.92134833,-0.9210795,-0.92148274,-0.92188597,-0.92188597,-0.9221548,-0.922558,-0.92323005,-0.92336446,-0.9220204,-0.9206763,-0.9206763,-0.9208107,-0.9204075,-0.9205419,-0.9212139,-0.9220204,-0.9220204,-0.92161715,-0.92134833,-0.92161715,-0.92188597,-0.92161715,-0.92134833,-0.92161715,-0.9221548,-0.9226924,-0.9228268,-0.9226924,-0.9224236,-0.922558,-0.9226924,-0.922558,-0.9224236,-0.9224236,-0.92296124,-0.92323005,-0.9228268,-0.9226924,-0.92349887,-0.9244398,-0.9248431,-0.9251119,-0.92578393,-0.9256495,-0.9245742,-0.9237677,-0.92349887,-0.92336446,-0.92336446,-0.9237677,-0.9239021,-0.92349887,-0.922558,-0.9212139,-0.91946656,-0.91919774,-0.92148274,-0.9240365,-0.9253807,-0.926456,-0.92632157,-0.9239021,-0.92349887,-0.9256495,-0.926456,-0.9244398,-0.9220204,-0.92148274,-0.9212139,-0.9189289,-0.917316,-0.92000425,-0.92336446,-0.9245742,-0.9249775,-0.9245742,-0.9226924,-0.9205419,-0.9197354,-0.9210795,-0.9228268,-0.92336446,-0.92309564,-0.9226924,-0.92161715,-0.9224236,-0.9265904,-0.92995065,-0.92981625,-0.9303539,-0.9304883,-0.9304883,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.9302195,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9302195,-0.93008506,-0.9302195,-0.9304883,-0.9302195,-0.92995065,-0.92981625,-0.9302195,-0.9304883,-0.9303539,-0.9302195,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9291442,-0.928741,-0.92968184,-0.92968184,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.92995065,-0.92860657,-0.9253807,-0.9226924,-0.92336446,-0.9248431,-0.9251119,-0.9247086,-0.9245742,-0.9241709,-0.92296124,-0.92134833,-0.9208107,-0.922558,-0.9251119,-0.9251119,-0.92161715,-0.91758484,-0.9158375,-0.91637516,-0.9185257,-0.9206763,-0.9222892,-0.9245742,-0.92632157,-0.9255151,-0.9241709,-0.9244398,-0.9244398,-0.92323005,-0.92175156,-0.9212139,-0.92134833,-0.92148274,-0.9210795,-0.92148274,-0.922558,-0.92309564,-0.9228268,-0.922558,-0.92349887,-0.9251119,-0.92618716,-0.9265904,-0.926456,-0.9253807,-0.9237677,-0.922558,-0.9221548,-0.9222892,-0.9226924,-0.9228268,-0.922558,-0.9226924,-0.92296124,-0.9228268,-0.9224236,-0.9224236,-0.9224236,-0.9221548,-0.9221548,-0.9221548,-0.9220204,-0.9221548,-0.9222892,-0.9221548,-0.92188597,-0.92175156,-0.92175156,-0.92175156,-0.9220204,-0.9221548,-0.92188597,-0.92175156,-0.92188597,-0.92175156,-0.92134833,-0.9210795,-0.92161715,-0.9221548,-0.92188597,-0.92175156,-0.9224236,-0.92296124,-0.922558,-0.92148274,-0.9209451,-0.9210795,-0.9210795,-0.9208107,-0.9208107,-0.92134833,-0.92175156,-0.92188597,-0.92175156,-0.92161715,-0.92188597,-0.92188597,-0.92148274,-0.92134833,-0.92175156,-0.9224236,-0.9226924,-0.9228268,-0.9226924,-0.922558,-0.9224236,-0.922558,-0.9226924,-0.9226924,-0.9226924,-0.9228268,-0.92336446,-0.92323005,-0.9222892,-0.92296124,-0.9248431,-0.92605275,-0.9256495,-0.9245742,-0.9237677,-0.92296124,-0.922558,-0.9228268,-0.92309564,-0.9228268,-0.9222892,-0.9221548,-0.9221548,-0.9224236,-0.922558,-0.9212139,-0.9187945,-0.9182569,-0.92134833,-0.9244398,-0.9256495,-0.92618716,-0.9252463,-0.92336446,-0.9240365,-0.92605275,-0.92578393,-0.92336446,-0.92148274,-0.92148274,-0.92148274,-0.9187945,-0.916644,-0.9197354,-0.9240365,-0.9253807,-0.9251119,-0.9236333,-0.9209451,-0.9190633,-0.92000425,-0.9221548,-0.92296124,-0.92349887,-0.9241709,-0.92296124,-0.92188597,-0.9252463,-0.9302195,-0.9295474,-0.9304883,-0.9304883,-0.9304883,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9302195,-0.92995065,-0.92981625,-0.93008506,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.92995065,-0.93008506,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9302195,-0.93008506,-0.9302195,-0.93008506,-0.92981625,-0.92981625,-0.9302195,-0.9303539,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9290098,-0.9291442,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.92995065,-0.93008506,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9302195,-0.92995065,-0.9282033,-0.9244398,-0.9220204,-0.92323005,-0.9249775,-0.9252463,-0.9248431,-0.9251119,-0.9245742,-0.9224236,-0.9209451,-0.92134833,-0.9228268,-0.9241709,-0.9241709,-0.9224236,-0.9198698,-0.9181225,-0.9185257,-0.9198698,-0.9212139,-0.92336446,-0.92605275,-0.927128,-0.92618716,-0.9249775,-0.9243054,-0.92323005,-0.9222892,-0.9220204,-0.9224236,-0.9228268,-0.92309564,-0.92296124,-0.92309564,-0.92336446,-0.92323005,-0.92309564,-0.92309564,-0.92349887,-0.9241709,-0.9249775,-0.92578393,-0.92618716,-0.9251119,-0.9237677,-0.92296124,-0.9226924,-0.9224236,-0.9224236,-0.9224236,-0.9222892,-0.9224236,-0.9228268,-0.9228268,-0.922558,-0.9224236,-0.9224236,-0.9222892,-0.9221548,-0.9221548,-0.9220204,-0.92188597,-0.9220204,-0.9220204,-0.92188597,-0.92188597,-0.92161715,-0.92148274,-0.92175156,-0.92188597,-0.92161715,-0.92134833,-0.92161715,-0.92175156,-0.92134833,-0.9212139,-0.92161715,-0.9220204,-0.92188597,-0.9220204,-0.9224236,-0.9226924,-0.9222892,-0.92161715,-0.92134833,-0.9212139,-0.9210795,-0.9209451,-0.9209451,-0.92134833,-0.92175156,-0.9220204,-0.9220204,-0.92188597,-0.9220204,-0.9220204,-0.92175156,-0.92161715,-0.9220204,-0.922558,-0.922558,-0.922558,-0.9226924,-0.9226924,-0.9224236,-0.9222892,-0.9224236,-0.9228268,-0.92296124,-0.92296124,-0.92296124,-0.9221548,-0.9209451,-0.92175156,-0.9228268,-0.92349887,-0.92309564,-0.9226924,-0.92323005,-0.9237677,-0.9243054,-0.9248431,-0.9245742,-0.9236333,-0.9222892,-0.92188597,-0.9222892,-0.92296124,-0.92336446,-0.92349887,-0.9220204,-0.9187945,-0.9181225,-0.92148274,-0.9251119,-0.926456,-0.9267248,-0.9255151,-0.9243054,-0.9251119,-0.92618716,-0.9248431,-0.9224236,-0.92148274,-0.92161715,-0.91933215,-0.9143589,-0.9139557,-0.9197354,-0.9248431,-0.9253807,-0.9241709,-0.9220204,-0.91960096,-0.91933215,-0.9212139,-0.9228268,-0.92336446,-0.9240365,-0.92323005,-0.92175156,-0.9240365,-0.9291442,-0.9295474,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.9303539,-0.92981625,-0.92968184,-0.92968184,-0.92981625,-0.9302195,-0.9303539,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9282033,-0.9291442,-0.9295474,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.93008506,-0.92981625,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.93008506,-0.93008506,-0.92780006,-0.9236333,-0.92134833,-0.9224236,-0.9244398,-0.9248431,-0.9244398,-0.9241709,-0.92349887,-0.9222892,-0.92148274,-0.92188597,-0.9228268,-0.9241709,-0.9244398,-0.9220204,-0.9186601,-0.91798806,-0.91960096,-0.92013866,-0.9210795,-0.9241709,-0.927128,-0.9272624,-0.9256495,-0.9241709,-0.92323005,-0.9226924,-0.9228268,-0.92296124,-0.92309564,-0.92336446,-0.92349887,-0.92336446,-0.92323005,-0.92309564,-0.92309564,-0.92336446,-0.92349887,-0.9236333,-0.9244398,-0.9252463,-0.9256495,-0.9249775,-0.92323005,-0.92161715,-0.92148274,-0.9224236,-0.9228268,-0.9224236,-0.9220204,-0.92188597,-0.9220204,-0.9222892,-0.9224236,-0.9224236,-0.9221548,-0.9221548,-0.9224236,-0.9224236,-0.9222892,-0.9222892,-0.9221548,-0.92188597,-0.92188597,-0.92188597,-0.92188597,-0.92188597,-0.9220204,-0.9222892,-0.9221548,-0.92175156,-0.92134833,-0.92161715,-0.92188597,-0.92175156,-0.92134833,-0.92161715,-0.9220204,-0.9221548,-0.9222892,-0.9226924,-0.9226924,-0.9222892,-0.92188597,-0.92161715,-0.92134833,-0.9209451,-0.9210795,-0.9212139,-0.92134833,-0.92188597,-0.9224236,-0.9222892,-0.92188597,-0.92188597,-0.9220204,-0.92188597,-0.92175156,-0.9220204,-0.9221548,-0.9222892,-0.9222892,-0.9226924,-0.9226924,-0.9224236,-0.9222892,-0.922558,-0.92296124,-0.92309564,-0.92296124,-0.9224236,-0.92134833,-0.9210795,-0.9226924,-0.92309564,-0.9224236,-0.92323005,-0.9245742,-0.9255151,-0.92591834,-0.92578393,-0.92578393,-0.9252463,-0.9244398,-0.9239021,-0.9236333,-0.9236333,-0.9237677,-0.9239021,-0.9241709,-0.9240365,-0.9220204,-0.9197354,-0.9205419,-0.92336446,-0.9255151,-0.927128,-0.92739683,-0.92591834,-0.9248431,-0.9256495,-0.9256495,-0.92336446,-0.92161715,-0.92148274,-0.9205419,-0.91597193,-0.91167074,-0.9142245,-0.92175156,-0.9256495,-0.9247086,-0.9224236,-0.9198698,-0.9189289,-0.9205419,-0.9226924,-0.9236333,-0.9239021,-0.92309564,-0.92161715,-0.92309564,-0.92780006,-0.92968184,-0.93008506,-0.9302195,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.92995065,-0.92995065,-0.9303539,-0.9303539,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.92981625,-0.92981625,-0.93008506,-0.92981625,-0.9302195,-0.93008506,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92753124,-0.9288754,-0.9290098,-0.92981625,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.92981625,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.9304883,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.92981625,-0.92995065,-0.9268592,-0.9226924,-0.9210795,-0.9222892,-0.9241709,-0.9248431,-0.9240365,-0.92323005,-0.9226924,-0.9220204,-0.92148274,-0.92175156,-0.92323005,-0.9248431,-0.9240365,-0.9206763,-0.9187945,-0.9198698,-0.9204075,-0.9198698,-0.9221548,-0.926456,-0.92753124,-0.9245742,-0.9221548,-0.9221548,-0.92296124,-0.92336446,-0.92349887,-0.92349887,-0.92323005,-0.92323005,-0.92349887,-0.92349887,-0.92323005,-0.92309564,-0.92323005,-0.92323005,-0.92336446,-0.92349887,-0.9240365,-0.9248431,-0.9252463,-0.9244398,-0.9228268,-0.92148274,-0.9212139,-0.9221548,-0.9228268,-0.9226924,-0.9222892,-0.92188597,-0.92175156,-0.92175156,-0.9220204,-0.9221548,-0.9221548,-0.9224236,-0.9226924,-0.9224236,-0.9220204,-0.9221548,-0.9221548,-0.92175156,-0.92148274,-0.92175156,-0.9220204,-0.9224236,-0.9224236,-0.9224236,-0.9222892,-0.92188597,-0.92161715,-0.92175156,-0.9221548,-0.9220204,-0.92161715,-0.92175156,-0.9222892,-0.9224236,-0.9221548,-0.9222892,-0.922558,-0.9222892,-0.92188597,-0.92175156,-0.92161715,-0.9212139,-0.9210795,-0.92134833,-0.92161715,-0.9222892,-0.9226924,-0.9224236,-0.9220204,-0.9220204,-0.9220204,-0.92175156,-0.92161715,-0.92175156,-0.92188597,-0.9220204,-0.9222892,-0.9226924,-0.9228268,-0.922558,-0.922558,-0.9226924,-0.9226924,-0.922558,-0.922558,-0.9226924,-0.9228268,-0.92323005,-0.9239021,-0.9241709,-0.9236333,-0.9237677,-0.9256495,-0.92739683,-0.927128,-0.92591834,-0.9251119,-0.9249775,-0.9247086,-0.9245742,-0.9244398,-0.9240365,-0.9239021,-0.9240365,-0.9241709,-0.9241709,-0.9236333,-0.92296124,-0.92309564,-0.9236333,-0.92349887,-0.9243054,-0.9265904,-0.927128,-0.9255151,-0.9253807,-0.92632157,-0.9253807,-0.9226924,-0.92134833,-0.92134833,-0.91960096,-0.9151654,-0.91341805,-0.9185257,-0.9243054,-0.9251119,-0.922558,-0.9198698,-0.9189289,-0.9204075,-0.9224236,-0.92323005,-0.92349887,-0.92309564,-0.92175156,-0.9221548,-0.926456,-0.92981625,-0.92981625,-0.9304883,-0.9306227,-0.9304883,-0.9303539,-0.9304883,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9304883,-0.9304883,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.92981625,-0.92981625,-0.92995065,-0.9302195,-0.9303539,-0.9303539,-0.92995065,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9269936,-0.93008506,-0.9290098,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.93008506,-0.9303539,-0.93008506,-0.92995065,-0.93008506,-0.9303539,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9302195,-0.93008506,-0.92995065,-0.9295474,-0.9253807,-0.92188597,-0.92134833,-0.922558,-0.9243054,-0.9251119,-0.9239021,-0.9220204,-0.92161715,-0.92188597,-0.92161715,-0.9221548,-0.9243054,-0.9252463,-0.92309564,-0.9205419,-0.92013866,-0.9205419,-0.92027307,-0.92161715,-0.92578393,-0.9284721,-0.9251119,-0.91946656,-0.9186601,-0.92188597,-0.9237677,-0.92323005,-0.92309564,-0.92336446,-0.92323005,-0.92309564,-0.92323005,-0.92336446,-0.92336446,-0.92336446,-0.92349887,-0.92336446,-0.9236333,-0.9236333,-0.92323005,-0.9240365,-0.92578393,-0.92618716,-0.9245742,-0.92296124,-0.9222892,-0.9222892,-0.9226924,-0.9228268,-0.9226924,-0.9224236,-0.9221548,-0.9220204,-0.9220204,-0.92188597,-0.92188597,-0.9221548,-0.9222892,-0.92188597,-0.92161715,-0.92175156,-0.92188597,-0.92161715,-0.92161715,-0.92188597,-0.9221548,-0.9222892,-0.9221548,-0.92188597,-0.92188597,-0.9220204,-0.92188597,-0.9220204,-0.9221548,-0.92188597,-0.92161715,-0.92175156,-0.9221548,-0.9222892,-0.9220204,-0.9220204,-0.9222892,-0.9222892,-0.9220204,-0.92175156,-0.92161715,-0.92134833,-0.9212139,-0.92148274,-0.92175156,-0.9221548,-0.922558,-0.9224236,-0.9220204,-0.9220204,-0.9221548,-0.9220204,-0.92188597,-0.92188597,-0.92188597,-0.9220204,-0.9222892,-0.9226924,-0.9228268,-0.9226924,-0.9228268,-0.9226924,-0.9224236,-0.9222892,-0.9224236,-0.9228268,-0.92309564,-0.92309564,-0.92309564,-0.92296124,-0.922558,-0.922558,-0.9243054,-0.9267248,-0.9272624,-0.92618716,-0.9252463,-0.9249775,-0.9247086,-0.9244398,-0.9243054,-0.9240365,-0.9239021,-0.9241709,-0.9241709,-0.9241709,-0.9240365,-0.9241709,-0.9243054,-0.9241709,-0.9236333,-0.92323005,-0.9245742,-0.92632157,-0.9267248,-0.926456,-0.9269936,-0.927128,-0.9247086,-0.9220204,-0.9212139,-0.9210795,-0.9187945,-0.91637516,-0.91798806,-0.922558,-0.9248431,-0.92336446,-0.9208107,-0.91919774,-0.92027307,-0.922558,-0.9236333,-0.92336446,-0.9228268,-0.92134833,-0.9212139,-0.9251119,-0.9290098,-0.92981625,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.93008506,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9303539,-0.9282033,-0.92995065,-0.9292786,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.93008506,-0.93008506,-0.92968184,-0.92981625,-0.9295474,-0.92981625,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9304883,-0.93008506,-0.93008506,-0.929413,-0.9292786,-0.9241709,-0.92148274,-0.92188597,-0.92296124,-0.9244398,-0.9253807,-0.9239021,-0.92175156,-0.92161715,-0.92188597,-0.92188597,-0.92336446,-0.9252463,-0.9245742,-0.9220204,-0.9209451,-0.9208107,-0.92013866,-0.92134833,-0.9248431,-0.92793447,-0.92766565,-0.9228268,-0.9181225,-0.91933215,-0.92323005,-0.9239021,-0.9228268,-0.92309564,-0.92349887,-0.92336446,-0.92336446,-0.92309564,-0.92296124,-0.92323005,-0.92336446,-0.92336446,-0.92323005,-0.92349887,-0.92349887,-0.92296124,-0.92349887,-0.92591834,-0.927128,-0.92578393,-0.9237677,-0.92309564,-0.92296124,-0.9226924,-0.922558,-0.922558,-0.9226924,-0.9226924,-0.922558,-0.9222892,-0.92188597,-0.92175156,-0.9220204,-0.9220204,-0.92161715,-0.92161715,-0.9220204,-0.9220204,-0.92175156,-0.92161715,-0.92188597,-0.9220204,-0.92188597,-0.92175156,-0.92175156,-0.92188597,-0.9221548,-0.9221548,-0.9221548,-0.9221548,-0.9220204,-0.92161715,-0.92175156,-0.9222892,-0.922558,-0.9224236,-0.9221548,-0.9222892,-0.9222892,-0.9220204,-0.9220204,-0.92175156,-0.92148274,-0.92148274,-0.92175156,-0.92188597,-0.9220204,-0.9222892,-0.9222892,-0.92188597,-0.92175156,-0.9221548,-0.9222892,-0.9220204,-0.92188597,-0.9220204,-0.9221548,-0.9221548,-0.9224236,-0.9224236,-0.9221548,-0.9222892,-0.9224236,-0.92188597,-0.92161715,-0.9221548,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.9228268,-0.92296124,-0.9236333,-0.9248431,-0.92605275,-0.92618716,-0.9256495,-0.9251119,-0.9247086,-0.9243054,-0.9241709,-0.9240365,-0.9240365,-0.9240365,-0.9241709,-0.9240365,-0.9240365,-0.9240365,-0.9240365,-0.9239021,-0.9241709,-0.9243054,-0.92349887,-0.9236333,-0.9256495,-0.927128,-0.927128,-0.9269936,-0.92605275,-0.9236333,-0.92188597,-0.9212139,-0.9205419,-0.91933215,-0.91933215,-0.92134833,-0.9240365,-0.9248431,-0.922558,-0.9197354,-0.91960096,-0.9221548,-0.92349887,-0.92296124,-0.9221548,-0.9209451,-0.9206763,-0.9241709,-0.9284721,-0.92981625,-0.93008506,-0.9302195,-0.93008506,-0.9302195,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.92995065,-0.92995065,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9302195,-0.92860657,-0.92981625,-0.92981625,-0.92981625,-0.92981625,-0.9302195,-0.9302195,-0.92995065,-0.92968184,-0.9295474,-0.92995065,-0.93008506,-0.9302195,-0.9304883,-0.9303539,-0.93008506,-0.93008506,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.92995065,-0.9302195,-0.9303539,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.9292786,-0.9290098,-0.9236333,-0.9212139,-0.9220204,-0.92309564,-0.9245742,-0.9251119,-0.92309564,-0.92161715,-0.9224236,-0.922558,-0.9228268,-0.9247086,-0.9251119,-0.9228268,-0.9209451,-0.9210795,-0.9212139,-0.9212139,-0.9237677,-0.9272624,-0.9283377,-0.9267248,-0.92349887,-0.92134833,-0.9224236,-0.9239021,-0.92336446,-0.9228268,-0.92323005,-0.92336446,-0.92309564,-0.92309564,-0.9228268,-0.92296124,-0.92309564,-0.92309564,-0.92323005,-0.92336446,-0.92349887,-0.92349887,-0.92296124,-0.92323005,-0.9252463,-0.92605275,-0.9241709,-0.922558,-0.9228268,-0.9228268,-0.922558,-0.922558,-0.922558,-0.922558,-0.9226924,-0.9226924,-0.9221548,-0.92175156,-0.92175156,-0.92188597,-0.9220204,-0.9221548,-0.9222892,-0.9222892,-0.9222892,-0.9221548,-0.92188597,-0.92175156,-0.92188597,-0.92188597,-0.92188597,-0.9222892,-0.9224236,-0.9222892,-0.9221548,-0.9220204,-0.9221548,-0.9220204,-0.92161715,-0.9222892,-0.92296124,-0.9224236,-0.922558,-0.9245742,-0.9252463,-0.92349887,-0.9221548,-0.9221548,-0.9222892,-0.92188597,-0.92161715,-0.92188597,-0.92188597,-0.92188597,-0.9221548,-0.9222892,-0.92175156,-0.92175156,-0.9221548,-0.9224236,-0.92188597,-0.92175156,-0.9220204,-0.9222892,-0.9221548,-0.9221548,-0.9221548,-0.9220204,-0.92188597,-0.9220204,-0.92175156,-0.92134833,-0.9220204,-0.92309564,-0.92309564,-0.922558,-0.9226924,-0.92309564,-0.92336446,-0.92323005,-0.9236333,-0.9247086,-0.92578393,-0.92618716,-0.92578393,-0.9249775,-0.9245742,-0.9245742,-0.9245742,-0.9243054,-0.9240365,-0.9239021,-0.9239021,-0.9237677,-0.9236333,-0.9239021,-0.9240365,-0.9239021,-0.9239021,-0.9247086,-0.9239021,-0.92161715,-0.9226924,-0.92605275,-0.927128,-0.9267248,-0.9267248,-0.9252463,-0.9226924,-0.92134833,-0.9208107,-0.92027307,-0.92013866,-0.9209451,-0.92296124,-0.9245742,-0.92349887,-0.9206763,-0.9198698,-0.92175156,-0.92323005,-0.92309564,-0.9226924,-0.92161715,-0.9206763,-0.92349887,-0.9283377,-0.92981625,-0.92995065,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9302195,-0.92995065,-0.9302195,-0.9303539,-0.9302195,-0.92995065,-0.92981625,-0.92995065,-0.93008506,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9302195,-0.9292786,-0.93008506,-0.9303539,-0.9302195,-0.92995065,-0.92995065,-0.93008506,-0.92995065,-0.92981625,-0.92968184,-0.9302195,-0.9303539,-0.93008506,-0.92995065,-0.92981625,-0.92968184,-0.92995065,-0.9303539,-0.9302195,-0.9303539,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.93008506,-0.92981625,-0.9302195,-0.9295474,-0.92766565,-0.92296124,-0.92134833,-0.9222892,-0.9236333,-0.9249775,-0.9245742,-0.9220204,-0.9212139,-0.92296124,-0.9240365,-0.9243054,-0.9245742,-0.92349887,-0.92134833,-0.9208107,-0.92134833,-0.92188597,-0.9236333,-0.92591834,-0.92739683,-0.92780006,-0.9265904,-0.9243054,-0.92323005,-0.9236333,-0.9239021,-0.92323005,-0.9228268,-0.92309564,-0.92336446,-0.92309564,-0.9226924,-0.922558,-0.9228268,-0.92309564,-0.92323005,-0.92309564,-0.92296124,-0.92323005,-0.92349887,-0.92309564,-0.92323005,-0.9249775,-0.92591834,-0.9241709,-0.9224236,-0.9226924,-0.9236333,-0.92309564,-0.922558,-0.9222892,-0.9222892,-0.922558,-0.922558,-0.9221548,-0.9220204,-0.9220204,-0.92188597,-0.92188597,-0.9221548,-0.9222892,-0.9222892,-0.9222892,-0.9222892,-0.9221548,-0.92188597,-0.92188597,-0.92188597,-0.9220204,-0.9222892,-0.9222892,-0.9220204,-0.9220204,-0.92188597,-0.92175156,-0.92188597,-0.92161715,-0.9220204,-0.92309564,-0.9221548,-0.9222892,-0.92591834,-0.9267248,-0.92605275,-0.9221548,-0.92188597,-0.9224236,-0.92175156,-0.92175156,-0.9220204,-0.92188597,-0.92175156,-0.9220204,-0.9221548,-0.9220204,-0.92188597,-0.9220204,-0.9222892,-0.9221548,-0.92175156,-0.92175156,-0.9221548,-0.9221548,-0.92188597,-0.9220204,-0.9221548,-0.92188597,-0.9220204,-0.9224236,-0.9224236,-0.922558,-0.92296124,-0.92296124,-0.9224236,-0.922558,-0.92309564,-0.92349887,-0.9239021,-0.92336446,-0.9224236,-0.92336446,-0.9253807,-0.92591834,-0.9249775,-0.9249775,-0.92591834,-0.92578393,-0.9243054,-0.92349887,-0.9237677,-0.9240365,-0.9237677,-0.92349887,-0.9236333,-0.9239021,-0.9240365,-0.9237677,-0.9241709,-0.9243054,-0.9222892,-0.9209451,-0.9237677,-0.9267248,-0.9272624,-0.92753124,-0.9268592,-0.9236333,-0.9210795,-0.92013866,-0.9197354,-0.92027307,-0.92148274,-0.9222892,-0.9226924,-0.9228268,-0.92175156,-0.9208107,-0.92148274,-0.9228268,-0.92336446,-0.92349887,-0.922558,-0.9210795,-0.92309564,-0.9280689,-0.929413,-0.92995065,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.92995065,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.92981625,-0.92995065,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.92995065,-0.92995065,-0.9302195,-0.9302195,-0.92995065,-0.92968184,-0.92981625,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.92995065,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92995065,-0.9291442,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.92995065,-0.92968184,-0.93008506,-0.9303539,-0.9303539,-0.93008506,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.92981625,-0.9295474,-0.9302195,-0.9288754,-0.92605275,-0.9221548,-0.92188597,-0.92309564,-0.9243054,-0.9256495,-0.9245742,-0.92148274,-0.9210795,-0.92349887,-0.9249775,-0.9247086,-0.9237677,-0.9221548,-0.9212139,-0.9212139,-0.92161715,-0.92309564,-0.92591834,-0.92739683,-0.927128,-0.9268592,-0.92605275,-0.9241709,-0.92336446,-0.9236333,-0.9237677,-0.92336446,-0.92309564,-0.92309564,-0.92323005,-0.92309564,-0.9226924,-0.922558,-0.9228268,-0.92296124,-0.9226924,-0.92296124,-0.92323005,-0.92323005,-0.92336446,-0.92323005,-0.92349887,-0.9249775,-0.92578393,-0.9244398,-0.9224236,-0.92148274,-0.92175156,-0.9224236,-0.922558,-0.9222892,-0.9221548,-0.9224236,-0.922558,-0.9224236,-0.9222892,-0.9221548,-0.92188597,-0.9220204,-0.9222892,-0.9222892,-0.9221548,-0.9221548,-0.9221548,-0.9221548,-0.9220204,-0.92161715,-0.92161715,-0.92175156,-0.92188597,-0.92188597,-0.92188597,-0.9220204,-0.9220204,-0.92175156,-0.92188597,-0.9220204,-0.92188597,-0.9224236,-0.922558,-0.9221548,-0.9236333,-0.9241709,-0.92618716,-0.922558,-0.92188597,-0.9224236,-0.9220204,-0.92188597,-0.9220204,-0.92175156,-0.92175156,-0.9220204,-0.9221548,-0.9220204,-0.92188597,-0.92188597,-0.9221548,-0.9221548,-0.92188597,-0.92188597,-0.9221548,-0.9221548,-0.92188597,-0.9220204,-0.9222892,-0.9221548,-0.9220204,-0.9222892,-0.9228268,-0.9228268,-0.922558,-0.9222892,-0.9220204,-0.9220204,-0.922558,-0.92309564,-0.9236333,-0.92296124,-0.92027307,-0.9206763,-0.9237677,-0.9253807,-0.9249775,-0.9244398,-0.9253807,-0.92578393,-0.9245742,-0.9236333,-0.9237677,-0.9240365,-0.9239021,-0.9236333,-0.92336446,-0.92349887,-0.9237677,-0.9239021,-0.9236333,-0.9240365,-0.9236333,-0.92161715,-0.92175156,-0.9244398,-0.926456,-0.92739683,-0.92780006,-0.92605275,-0.9224236,-0.9204075,-0.9198698,-0.9204075,-0.9220204,-0.922558,-0.92161715,-0.92161715,-0.9221548,-0.92148274,-0.9212139,-0.9224236,-0.92323005,-0.92323005,-0.9224236,-0.9210795,-0.922558,-0.92780006,-0.9292786,-0.92995065,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.92968184,-0.92968184,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.93008506,-0.9302195,-0.9304883,-0.9304883,-0.9303539,-0.92995065,-0.92981625,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.9303539,-0.9303539,-0.9302195,-0.92995065,-0.9303539,-0.9302195,-0.92995065,-0.92981625,-0.92995065,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.93008506,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9290098,-0.9283377,-0.92968184,-0.92981625,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.92981625,-0.92995065,-0.92995065,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.92995065,-0.9295474,-0.92968184,-0.92995065,-0.9282033,-0.9249775,-0.9220204,-0.9221548,-0.92323005,-0.9244398,-0.9255151,-0.9244398,-0.92134833,-0.9205419,-0.92309564,-0.9248431,-0.9243054,-0.92296124,-0.92188597,-0.9210795,-0.9206763,-0.92161715,-0.9243054,-0.92739683,-0.9282033,-0.92753124,-0.926456,-0.9249775,-0.9237677,-0.92336446,-0.92349887,-0.92336446,-0.92323005,-0.92323005,-0.92296124,-0.9226924,-0.9226924,-0.9226924,-0.922558,-0.9228268,-0.9228268,-0.9228268,-0.92296124,-0.92323005,-0.92349887,-0.92336446,-0.92309564,-0.9237677,-0.9255151,-0.9255151,-0.92323005,-0.9209451,-0.9206763,-0.92161715,-0.9220204,-0.9220204,-0.9220204,-0.9220204,-0.92188597,-0.92188597,-0.9221548,-0.9220204,-0.92175156,-0.92161715,-0.92188597,-0.9224236,-0.9224236,-0.9221548,-0.9221548,-0.9221548,-0.9221548,-0.9221548,-0.9220204,-0.92161715,-0.92148274,-0.92175156,-0.9220204,-0.92188597,-0.92188597,-0.9220204,-0.9221548,-0.9221548,-0.9221548,-0.9220204,-0.9222892,-0.922558,-0.9222892,-0.9222892,-0.92309564,-0.9237677,-0.9226924,-0.9221548,-0.9222892,-0.9222892,-0.9220204,-0.9220204,-0.92188597,-0.92188597,-0.9220204,-0.9220204,-0.9220204,-0.92188597,-0.92175156,-0.92175156,-0.9220204,-0.9220204,-0.9220204,-0.92188597,-0.9220204,-0.9220204,-0.9220204,-0.9224236,-0.9224236,-0.9220204,-0.92188597,-0.9224236,-0.9226924,-0.9221548,-0.92188597,-0.92188597,-0.9220204,-0.9224236,-0.92296124,-0.92323005,-0.92336446,-0.9226924,-0.922558,-0.9237677,-0.9248431,-0.9253807,-0.9249775,-0.9249775,-0.9251119,-0.9247086,-0.9241709,-0.9237677,-0.9240365,-0.9241709,-0.9236333,-0.92309564,-0.92323005,-0.92349887,-0.9236333,-0.92349887,-0.92349887,-0.9239021,-0.92309564,-0.92188597,-0.922558,-0.9248431,-0.9269936,-0.9283377,-0.9283377,-0.9248431,-0.92161715,-0.9208107,-0.9209451,-0.9220204,-0.92309564,-0.9221548,-0.9212139,-0.92134833,-0.9210795,-0.9210795,-0.922558,-0.92349887,-0.92296124,-0.92188597,-0.9206763,-0.92188597,-0.9272624,-0.9292786,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.92995065,-0.93008506,-0.92981625,-0.9295474,-0.92968184,-0.92968184,-0.92995065,-0.9302195,-0.92995065,-0.9295474,-0.9302195,-0.92995065,-0.92981625,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.93008506,-0.92995065,-0.9303539,-0.9304883,-0.92995065,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.92780006,-0.9272624,-0.9292786,-0.92995065,-0.93008506,-0.92981625,-0.92995065,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.92981625,-0.92995065,-0.93008506,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.93008506,-0.92981625,-0.92995065,-0.9302195,-0.93008506,-0.92968184,-0.929413,-0.92981625,-0.92995065,-0.92780006,-0.9243054,-0.92148274,-0.9210795,-0.9221548,-0.9239021,-0.9251119,-0.9240365,-0.92175156,-0.9209451,-0.9226924,-0.9243054,-0.9239021,-0.922558,-0.92148274,-0.9208107,-0.9205419,-0.9222892,-0.9256495,-0.9282033,-0.9283377,-0.9269936,-0.9251119,-0.9237677,-0.92349887,-0.9236333,-0.92336446,-0.92323005,-0.92349887,-0.9236333,-0.92309564,-0.922558,-0.9224236,-0.9224236,-0.922558,-0.922558,-0.9226924,-0.92296124,-0.92309564,-0.92309564,-0.92309564,-0.9228268,-0.92309564,-0.9244398,-0.9256495,-0.9245742,-0.9222892,-0.92148274,-0.9222892,-0.92296124,-0.9226924,-0.9222892,-0.9220204,-0.92175156,-0.92161715,-0.92148274,-0.92175156,-0.9220204,-0.9220204,-0.92175156,-0.92175156,-0.9221548,-0.9224236,-0.9222892,-0.9221548,-0.9222892,-0.9222892,-0.9220204,-0.92175156,-0.92134833,-0.9212139,-0.92175156,-0.9221548,-0.9220204,-0.92175156,-0.9220204,-0.9221548,-0.9220204,-0.92175156,-0.92175156,-0.92188597,-0.9221548,-0.9224236,-0.9224236,-0.922558,-0.922558,-0.9222892,-0.9220204,-0.9221548,-0.9221548,-0.9221548,-0.9220204,-0.92188597,-0.92188597,-0.9220204,-0.9220204,-0.92188597,-0.92188597,-0.92175156,-0.92175156,-0.92188597,-0.92188597,-0.92175156,-0.92175156,-0.9221548,-0.9222892,-0.9220204,-0.92188597,-0.9221548,-0.9221548,-0.92188597,-0.9220204,-0.9221548,-0.9222892,-0.9221548,-0.9222892,-0.9220204,-0.92175156,-0.92188597,-0.92296124,-0.9240365,-0.9247086,-0.9249775,-0.9255151,-0.92578393,-0.92605275,-0.92605275,-0.92605275,-0.9265904,-0.92618716,-0.9248431,-0.9239021,-0.9237677,-0.9237677,-0.92309564,-0.9226924,-0.92296124,-0.92336446,-0.92336446,-0.92323005,-0.92336446,-0.9236333,-0.9237677,-0.92336446,-0.92336446,-0.9244398,-0.92618716,-0.92753124,-0.9284721,-0.9267248,-0.92296124,-0.9210795,-0.9212139,-0.92161715,-0.9224236,-0.9226924,-0.9220204,-0.9208107,-0.9198698,-0.92027307,-0.9221548,-0.9236333,-0.92336446,-0.9222892,-0.9206763,-0.92148274,-0.926456,-0.92968184,-0.93008506,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.92995065,-0.92968184,-0.92981625,-0.9302195,-0.9303539,-0.92981625,-0.9291442,-0.92981625,-0.929413,-0.9295474,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.93008506,-0.92981625,-0.92995065,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.9303539,-0.9302195,-0.9303539,-0.92981625,-0.929413,-0.9303539,-0.9304883,-0.9292786,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92995065,-0.92968184,-0.93008506,-0.9302195,-0.93008506,-0.92995065,-0.92981625,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.93008506,-0.92995065,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.9303539,-0.93008506,-0.92968184,-0.92981625,-0.93008506,-0.92995065,-0.929413,-0.929413,-0.92981625,-0.92968184,-0.9267248,-0.9226924,-0.92013866,-0.91960096,-0.9209451,-0.92349887,-0.9247086,-0.9239021,-0.9224236,-0.92161715,-0.9224236,-0.9237677,-0.9236333,-0.9221548,-0.9210795,-0.9205419,-0.9212139,-0.9239021,-0.927128,-0.9284721,-0.92739683,-0.9253807,-0.9239021,-0.9236333,-0.9239021,-0.9237677,-0.92336446,-0.92336446,-0.9236333,-0.92336446,-0.92309564,-0.9228268,-0.922558,-0.9224236,-0.922558,-0.922558,-0.9226924,-0.9228268,-0.92296124,-0.92309564,-0.92323005,-0.92323005,-0.92349887,-0.9244398,-0.9248431,-0.9239021,-0.9226924,-0.9224236,-0.9226924,-0.9226924,-0.9228268,-0.9226924,-0.9222892,-0.92188597,-0.92175156,-0.92134833,-0.9212139,-0.92148274,-0.92188597,-0.9222892,-0.9224236,-0.9222892,-0.9222892,-0.9222892,-0.9222892,-0.9222892,-0.9221548,-0.9220204,-0.9220204,-0.92148274,-0.9210795,-0.92134833,-0.9221548,-0.9221548,-0.92175156,-0.92161715,-0.92188597,-0.9220204,-0.92188597,-0.92188597,-0.9221548,-0.9222892,-0.9222892,-0.9222892,-0.9224236,-0.9224236,-0.9221548,-0.9221548,-0.922558,-0.92309564,-0.9224236,-0.92175156,-0.92175156,-0.9221548,-0.9221548,-0.92188597,-0.92188597,-0.92188597,-0.92175156,-0.92175156,-0.92188597,-0.92188597,-0.92161715,-0.92175156,-0.9221548,-0.9222892,-0.9222892,-0.9220204,-0.92188597,-0.9220204,-0.9221548,-0.9222892,-0.9222892,-0.922558,-0.9226924,-0.922558,-0.9222892,-0.92188597,-0.9209451,-0.9205419,-0.92148274,-0.92323005,-0.9240365,-0.9248431,-0.92618716,-0.9265904,-0.9256495,-0.9240365,-0.92336446,-0.9244398,-0.9247086,-0.9241709,-0.9236333,-0.92336446,-0.9228268,-0.9226924,-0.92309564,-0.92336446,-0.92323005,-0.92349887,-0.9236333,-0.9236333,-0.9239021,-0.9243054,-0.9243054,-0.9247086,-0.92605275,-0.92739683,-0.9283377,-0.92739683,-0.9241709,-0.92148274,-0.9210795,-0.92134833,-0.92134833,-0.92188597,-0.9224236,-0.92175156,-0.9198698,-0.9190633,-0.9205419,-0.9228268,-0.9236333,-0.9228268,-0.9209451,-0.9210795,-0.9255151,-0.92981625,-0.92995065,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.92981625,-0.92995065,-0.9304883,-0.9304883,-0.9302195,-0.92981625,-0.92981625,-0.92995065,-0.9295474,-0.93008506,-0.93008506,-0.92981625,-0.93008506,-0.92995065,-0.92968184,-0.92995065,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9303539,-0.9302195,-0.92981625,-0.93008506,-0.9303539,-0.9304883,-0.9302195,-0.92995065,-0.9302195,-0.9302195,-0.929413,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.929413,-0.9290098,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.93008506,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.93008506,-0.92995065,-0.93008506,-0.92995065,-0.929413,-0.9256495,-0.9210795,-0.91933215,-0.9198698,-0.92188597,-0.9240365,-0.9245742,-0.92309564,-0.92175156,-0.92175156,-0.9226924,-0.92336446,-0.9228268,-0.9212139,-0.92013866,-0.9205419,-0.9228268,-0.92618716,-0.92860657,-0.9283377,-0.92591834,-0.9236333,-0.92296124,-0.9237677,-0.9241709,-0.9239021,-0.92336446,-0.92309564,-0.92323005,-0.92323005,-0.92309564,-0.92296124,-0.9228268,-0.9226924,-0.922558,-0.922558,-0.9226924,-0.92309564,-0.92323005,-0.92336446,-0.9236333,-0.92349887,-0.9236333,-0.9244398,-0.9251119,-0.9249775,-0.9241709,-0.9236333,-0.92309564,-0.9228268,-0.9226924,-0.9224236,-0.9220204,-0.9220204,-0.92188597,-0.92161715,-0.92148274,-0.92175156,-0.92161715,-0.92134833,-0.92134833,-0.92175156,-0.9221548,-0.9224236,-0.9224236,-0.9224236,-0.9220204,-0.92188597,-0.9220204,-0.92188597,-0.9212139,-0.9212139,-0.92188597,-0.9220204,-0.92188597,-0.92161715,-0.92175156,-0.92188597,-0.9220204,-0.9220204,-0.9222892,-0.9222892,-0.9222892,-0.9221548,-0.9221548,-0.9221548,-0.92188597,-0.92175156,-0.9222892,-0.9228268,-0.9224236,-0.92188597,-0.9220204,-0.9222892,-0.9221548,-0.92188597,-0.9220204,-0.92188597,-0.92175156,-0.92175156,-0.92161715,-0.92148274,-0.92134833,-0.92175156,-0.9220204,-0.9221548,-0.9221548,-0.9222892,-0.9221548,-0.9222892,-0.922558,-0.9226924,-0.922558,-0.9226924,-0.9226924,-0.922558,-0.922558,-0.922558,-0.9220204,-0.9212139,-0.9210795,-0.92175156,-0.92188597,-0.9221548,-0.9240365,-0.92605275,-0.92578393,-0.9239021,-0.92175156,-0.92175156,-0.92309564,-0.9239021,-0.9236333,-0.92309564,-0.9228268,-0.9228268,-0.92336446,-0.9236333,-0.92349887,-0.9236333,-0.9237677,-0.9236333,-0.9237677,-0.9245742,-0.9245742,-0.9247086,-0.926456,-0.9284721,-0.928741,-0.9280689,-0.92605275,-0.92309564,-0.92134833,-0.9212139,-0.9210795,-0.9212139,-0.9222892,-0.9226924,-0.92161715,-0.9204075,-0.9204075,-0.9220204,-0.92336446,-0.9228268,-0.9209451,-0.9209451,-0.9247086,-0.9290098,-0.92995065,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.92981625,-0.92981625,-0.92995065,-0.9303539,-0.9303539,-0.9303539,-0.93008506,-0.93008506,-0.9302195,-0.92968184,-0.93008506,-0.9302195,-0.92981625,-0.92968184,-0.92995065,-0.92981625,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9304883,-0.9303539,-0.9302195,-0.93008506,-0.92981625,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9303539,-0.9303539,-0.93008506,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9295474,-0.9295474,-0.92995065,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.92995065,-0.9292786,-0.9249775,-0.9208107,-0.92013866,-0.92188597,-0.9236333,-0.9251119,-0.9252463,-0.9240365,-0.9226924,-0.922558,-0.92309564,-0.92296124,-0.92161715,-0.92027307,-0.9197354,-0.9212139,-0.9245742,-0.92780006,-0.9288754,-0.92780006,-0.9253807,-0.92296124,-0.9221548,-0.9228268,-0.92349887,-0.92336446,-0.92296124,-0.9226924,-0.922558,-0.9226924,-0.9226924,-0.9226924,-0.92296124,-0.9228268,-0.9226924,-0.9226924,-0.92296124,-0.92323005,-0.9237677,-0.9240365,-0.9239021,-0.9240365,-0.9247086,-0.92578393,-0.92618716,-0.9256495,-0.9248431,-0.9239021,-0.92309564,-0.9226924,-0.922558,-0.9221548,-0.92175156,-0.92175156,-0.9220204,-0.9220204,-0.9220204,-0.9221548,-0.9220204,-0.92134833,-0.9208107,-0.9209451,-0.92134833,-0.92161715,-0.92188597,-0.9220204,-0.9220204,-0.92188597,-0.9220204,-0.9221548,-0.92161715,-0.9210795,-0.92134833,-0.92161715,-0.92161715,-0.92161715,-0.92188597,-0.9221548,-0.9222892,-0.9221548,-0.9221548,-0.9222892,-0.9221548,-0.92188597,-0.92161715,-0.9220204,-0.9222892,-0.9221548,-0.9220204,-0.9222892,-0.922558,-0.9224236,-0.9224236,-0.9222892,-0.9220204,-0.92188597,-0.92175156,-0.92161715,-0.92161715,-0.92175156,-0.92188597,-0.92161715,-0.92148274,-0.92175156,-0.9221548,-0.9221548,-0.9221548,-0.9221548,-0.9224236,-0.922558,-0.9226924,-0.9228268,-0.9226924,-0.9224236,-0.9222892,-0.9222892,-0.9224236,-0.9228268,-0.92296124,-0.922558,-0.9224236,-0.92309564,-0.92309564,-0.9222892,-0.922558,-0.9247086,-0.926456,-0.92632157,-0.9253807,-0.9243054,-0.9239021,-0.9239021,-0.92349887,-0.92323005,-0.92309564,-0.92323005,-0.92336446,-0.92349887,-0.9236333,-0.9236333,-0.9237677,-0.9237677,-0.9237677,-0.9247086,-0.9249775,-0.9244398,-0.9252463,-0.92780006,-0.9292786,-0.9291442,-0.92780006,-0.9247086,-0.92188597,-0.9209451,-0.9210795,-0.92148274,-0.9222892,-0.92296124,-0.9226924,-0.9221548,-0.92175156,-0.9221548,-0.92309564,-0.92296124,-0.9212139,-0.9208107,-0.9241709,-0.9282033,-0.92968184,-0.9302195,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.92968184,-0.92981625,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9303539,-0.9303539,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.92995065,-0.92981625,-0.92995065,-0.93008506,-0.9302195,-0.93008506,-0.92995065,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9290098,-0.9288754,-0.93008506,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9302195,-0.93008506,-0.9303539,-0.9302195,-0.93008506,-0.9292786,-0.9247086,-0.9209451,-0.9209451,-0.9228268,-0.9245742,-0.92591834,-0.92632157,-0.9255151,-0.92323005,-0.9224236,-0.92309564,-0.9228268,-0.92134833,-0.92013866,-0.92027307,-0.9222892,-0.92605275,-0.9288754,-0.928741,-0.9265904,-0.9245742,-0.92323005,-0.9222892,-0.9224236,-0.92309564,-0.92309564,-0.9228268,-0.9226924,-0.922558,-0.9224236,-0.922558,-0.9228268,-0.92296124,-0.9228268,-0.9228268,-0.9228268,-0.92296124,-0.92349887,-0.9239021,-0.9240365,-0.9247086,-0.9255151,-0.92578393,-0.9255151,-0.9251119,-0.9243054,-0.9237677,-0.92349887,-0.92296124,-0.9224236,-0.9221548,-0.9220204,-0.92188597,-0.92188597,-0.9221548,-0.9224236,-0.9222892,-0.9221548,-0.9222892,-0.9220204,-0.92134833,-0.9210795,-0.9209451,-0.9204075,-0.9205419,-0.92148274,-0.92188597,-0.92175156,-0.92175156,-0.92175156,-0.92134833,-0.9205419,-0.9205419,-0.9209451,-0.9212139,-0.92148274,-0.92188597,-0.9220204,-0.9220204,-0.9221548,-0.9221548,-0.9220204,-0.92188597,-0.92148274,-0.92134833,-0.92148274,-0.92175156,-0.92161715,-0.92148274,-0.92148274,-0.92175156,-0.92188597,-0.92188597,-0.92175156,-0.92175156,-0.92175156,-0.92161715,-0.92161715,-0.92161715,-0.92175156,-0.92161715,-0.92148274,-0.92161715,-0.92188597,-0.9220204,-0.9221548,-0.9221548,-0.9220204,-0.9221548,-0.9221548,-0.9224236,-0.9228268,-0.922558,-0.9220204,-0.92188597,-0.9220204,-0.9224236,-0.9228268,-0.9226924,-0.9222892,-0.9224236,-0.92349887,-0.9244398,-0.9240365,-0.9226924,-0.92336446,-0.9253807,-0.92632157,-0.92605275,-0.9255151,-0.9248431,-0.9239021,-0.92349887,-0.92349887,-0.92349887,-0.92336446,-0.92336446,-0.92336446,-0.9236333,-0.9237677,-0.9237677,-0.9237677,-0.9237677,-0.9243054,-0.9248431,-0.9245742,-0.9244398,-0.92632157,-0.9284721,-0.9290098,-0.9284721,-0.92605275,-0.922558,-0.9206763,-0.9206763,-0.9212139,-0.92188597,-0.9224236,-0.922558,-0.922558,-0.9222892,-0.9222892,-0.92309564,-0.92336446,-0.92175156,-0.9204075,-0.92296124,-0.92753124,-0.92968184,-0.93008506,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.92995065,-0.92995065,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.92995065,-0.92981625,-0.92995065,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.92968184,-0.929413,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9291442,-0.929413,-0.92995065,-0.9304883,-0.9304883,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9304883,-0.9303539,-0.92995065,-0.9295474,-0.9249775,-0.9206763,-0.9197354,-0.9220204,-0.9247086,-0.92591834,-0.92578393,-0.9251119,-0.92323005,-0.9224236,-0.9228268,-0.922558,-0.9212139,-0.92013866,-0.9206763,-0.9239021,-0.92793447,-0.929413,-0.9272624,-0.9241709,-0.92336446,-0.9236333,-0.92336446,-0.92296124,-0.92336446,-0.92349887,-0.92309564,-0.92309564,-0.92323005,-0.92296124,-0.9226924,-0.9228268,-0.92309564,-0.92296124,-0.9228268,-0.9226924,-0.92309564,-0.9240365,-0.9248431,-0.9253807,-0.9253807,-0.9249775,-0.9244398,-0.9239021,-0.9237677,-0.9237677,-0.9239021,-0.92349887,-0.92296124,-0.9226924,-0.9226924,-0.9226924,-0.9224236,-0.9221548,-0.9221548,-0.9222892,-0.9221548,-0.9221548,-0.9220204,-0.92175156,-0.92134833,-0.9208107,-0.91960096,-0.9182569,-0.9189289,-0.9210795,-0.9221548,-0.92188597,-0.92188597,-0.92161715,-0.9208107,-0.92000425,-0.92027307,-0.9209451,-0.92148274,-0.92175156,-0.92175156,-0.92134833,-0.9212139,-0.92161715,-0.9220204,-0.9220204,-0.92188597,-0.92188597,-0.92175156,-0.92161715,-0.92134833,-0.9210795,-0.9206763,-0.9204075,-0.9208107,-0.9212139,-0.92148274,-0.92148274,-0.92161715,-0.92161715,-0.92134833,-0.92148274,-0.92188597,-0.92134833,-0.92027307,-0.91960096,-0.92013866,-0.9212139,-0.92188597,-0.9220204,-0.92188597,-0.92175156,-0.92188597,-0.9220204,-0.9222892,-0.9224236,-0.9224236,-0.9221548,-0.9220204,-0.9221548,-0.9222892,-0.922558,-0.9228268,-0.922558,-0.9224236,-0.92336446,-0.9245742,-0.9247086,-0.9237677,-0.92296124,-0.9236333,-0.9252463,-0.92591834,-0.9255151,-0.9248431,-0.9240365,-0.92349887,-0.92336446,-0.92336446,-0.92323005,-0.92323005,-0.92349887,-0.9237677,-0.9236333,-0.92336446,-0.92349887,-0.9236333,-0.9236333,-0.9241709,-0.9248431,-0.9245742,-0.9249775,-0.9268592,-0.9282033,-0.92860657,-0.92739683,-0.9243054,-0.92161715,-0.9209451,-0.9210795,-0.9209451,-0.92148274,-0.9224236,-0.9228268,-0.922558,-0.9222892,-0.9228268,-0.92309564,-0.92175156,-0.92013866,-0.9221548,-0.927128,-0.92968184,-0.93008506,-0.9302195,-0.92995065,-0.92981625,-0.92981625,-0.92981625,-0.92995065,-0.9302195,-0.9304883,-0.9304883,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.92981625,-0.92981625,-0.9302195,-0.9303539,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.92995065,-0.92981625,-0.92981625,-0.93008506,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.929413,-0.929413,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9303539,-0.928741,-0.9283377,-0.92981625,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9306227,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.93008506,-0.9292786,-0.9251119,-0.92027307,-0.9186601,-0.92148274,-0.9247086,-0.9245742,-0.92323005,-0.9236333,-0.9237677,-0.9226924,-0.9228268,-0.922558,-0.9208107,-0.9198698,-0.92188597,-0.92618716,-0.9292786,-0.9280689,-0.9247086,-0.92296124,-0.92336446,-0.9239021,-0.92349887,-0.9228268,-0.9228268,-0.92309564,-0.92309564,-0.92309564,-0.92336446,-0.92336446,-0.92309564,-0.9228268,-0.9228268,-0.92309564,-0.92309564,-0.92323005,-0.9239021,-0.9248431,-0.9252463,-0.9247086,-0.9237677,-0.92336446,-0.92336446,-0.9236333,-0.9237677,-0.9237677,-0.9239021,-0.9240365,-0.9236333,-0.92309564,-0.92296124,-0.9228268,-0.9224236,-0.9220204,-0.9220204,-0.9220204,-0.9220204,-0.9220204,-0.9221548,-0.9222892,-0.92188597,-0.9204075,-0.9182569,-0.916644,-0.91758484,-0.92000425,-0.9210795,-0.9209451,-0.9210795,-0.9205419,-0.9197354,-0.92027307,-0.92134833,-0.9220204,-0.92188597,-0.92148274,-0.9212139,-0.92148274,-0.92188597,-0.92188597,-0.92188597,-0.92188597,-0.9220204,-0.9224236,-0.9226924,-0.9224236,-0.9220204,-0.92175156,-0.9212139,-0.9208107,-0.9212139,-0.92148274,-0.92161715,-0.92175156,-0.92175156,-0.92161715,-0.92134833,-0.9209451,-0.9204075,-0.9204075,-0.9204075,-0.9198698,-0.91946656,-0.92000425,-0.9209451,-0.9212139,-0.9206763,-0.9205419,-0.92134833,-0.9220204,-0.9221548,-0.9221548,-0.9222892,-0.9221548,-0.9221548,-0.9221548,-0.9221548,-0.9222892,-0.9222892,-0.9221548,-0.9221548,-0.92296124,-0.9241709,-0.9243054,-0.9240365,-0.9240365,-0.9241709,-0.9243054,-0.9249775,-0.9252463,-0.9249775,-0.9244398,-0.9237677,-0.92336446,-0.92323005,-0.92323005,-0.92309564,-0.92336446,-0.9236333,-0.9236333,-0.9236333,-0.9236333,-0.9237677,-0.9236333,-0.9239021,-0.9247086,-0.9248431,-0.9240365,-0.9251119,-0.92739683,-0.9284721,-0.9283377,-0.9265904,-0.9236333,-0.92188597,-0.92134833,-0.9210795,-0.9212139,-0.9220204,-0.922558,-0.9228268,-0.922558,-0.9224236,-0.9224236,-0.92161715,-0.9205419,-0.92175156,-0.92618716,-0.9292786,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.92981625,-0.92968184,-0.92995065,-0.93008506,-0.93008506,-0.92968184,-0.9295474,-0.9295474,-0.92995065,-0.9302195,-0.92995065,-0.92981625,-0.92995065,-0.9302195,-0.9302195,-0.92995065,-0.92995065,-0.9302195,-0.9304883,-0.9303539,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.92968184,-0.92968184,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9303539,-0.92968184,-0.92968184,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.93008506,-0.9291442,-0.9252463,-0.9204075,-0.9185257,-0.9209451,-0.9239021,-0.92323005,-0.92148274,-0.922558,-0.9241709,-0.92349887,-0.9228268,-0.9222892,-0.9209451,-0.9208107,-0.9239021,-0.9280689,-0.9291442,-0.92632157,-0.92349887,-0.92296124,-0.9236333,-0.9236333,-0.92323005,-0.92296124,-0.92296124,-0.92323005,-0.92323005,-0.92323005,-0.92336446,-0.92336446,-0.92323005,-0.92309564,-0.92296124,-0.92296124,-0.92309564,-0.9236333,-0.9244398,-0.9247086,-0.9236333,-0.9226924,-0.9226924,-0.92309564,-0.92323005,-0.9236333,-0.9239021,-0.9240365,-0.9243054,-0.9243054,-0.9237677,-0.92309564,-0.9226924,-0.9226924,-0.9222892,-0.92188597,-0.92188597,-0.9220204,-0.92188597,-0.9220204,-0.9222892,-0.9221548,-0.92134833,-0.9204075,-0.91960096,-0.9186601,-0.9187945,-0.9197354,-0.9197354,-0.91933215,-0.91960096,-0.9210795,-0.922558,-0.92309564,-0.92309564,-0.922558,-0.92188597,-0.92148274,-0.92161715,-0.92188597,-0.92161715,-0.92134833,-0.92161715,-0.92175156,-0.92188597,-0.9228268,-0.9239021,-0.92323005,-0.92175156,-0.92134833,-0.92175156,-0.92175156,-0.92161715,-0.92161715,-0.92148274,-0.92148274,-0.92161715,-0.92161715,-0.92161715,-0.9210795,-0.92027307,-0.92000425,-0.92027307,-0.9209451,-0.9209451,-0.9198698,-0.9190633,-0.91933215,-0.9197354,-0.9204075,-0.92161715,-0.9221548,-0.9221548,-0.9221548,-0.9220204,-0.9220204,-0.9220204,-0.9221548,-0.9220204,-0.92188597,-0.9221548,-0.9224236,-0.9222892,-0.922558,-0.9237677,-0.9240365,-0.92296124,-0.92323005,-0.9244398,-0.9248431,-0.9247086,-0.9252463,-0.9253807,-0.9247086,-0.9240365,-0.92349887,-0.92323005,-0.92309564,-0.92323005,-0.92336446,-0.9236333,-0.9237677,-0.9237677,-0.9236333,-0.9236333,-0.9237677,-0.9237677,-0.9241709,-0.9248431,-0.9243054,-0.9240365,-0.92605275,-0.9282033,-0.928741,-0.92793447,-0.9253807,-0.922558,-0.92148274,-0.92161715,-0.92188597,-0.9220204,-0.9222892,-0.9226924,-0.9228268,-0.9224236,-0.9222892,-0.9220204,-0.9209451,-0.9212139,-0.9248431,-0.9291442,-0.93008506,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.92981625,-0.92981625,-0.92995065,-0.93008506,-0.92995065,-0.92968184,-0.93008506,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.92995065,-0.9302195,-0.9303539,-0.92995065,-0.93008506,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9302195,-0.92968184,-0.92995065,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.9290098,-0.9248431,-0.9204075,-0.9183913,-0.9197354,-0.9228268,-0.9241709,-0.92296124,-0.9220204,-0.9226924,-0.92309564,-0.9228268,-0.9220204,-0.9210795,-0.9220204,-0.92591834,-0.9288754,-0.92780006,-0.9247086,-0.92309564,-0.92336446,-0.9237677,-0.92349887,-0.92323005,-0.92323005,-0.92349887,-0.9237677,-0.92349887,-0.92309564,-0.92296124,-0.92309564,-0.92309564,-0.92296124,-0.92296124,-0.92309564,-0.92349887,-0.9240365,-0.9243054,-0.9236333,-0.9228268,-0.92309564,-0.92349887,-0.9236333,-0.92349887,-0.9237677,-0.9241709,-0.9241709,-0.9240365,-0.9239021,-0.9237677,-0.92336446,-0.9228268,-0.9226924,-0.9222892,-0.9220204,-0.92188597,-0.92188597,-0.92188597,-0.9222892,-0.922558,-0.92188597,-0.9208107,-0.9204075,-0.9206763,-0.9208107,-0.9209451,-0.9212139,-0.92148274,-0.9220204,-0.9237677,-0.9249775,-0.9244398,-0.9241709,-0.92309564,-0.9221548,-0.92175156,-0.92161715,-0.92134833,-0.92134833,-0.92148274,-0.92148274,-0.92161715,-0.92161715,-0.92175156,-0.92296124,-0.9241709,-0.92349887,-0.92188597,-0.92148274,-0.92175156,-0.92175156,-0.9220204,-0.9221548,-0.92188597,-0.92175156,-0.92175156,-0.92175156,-0.92161715,-0.92161715,-0.9212139,-0.9204075,-0.9206763,-0.92175156,-0.9220204,-0.9209451,-0.91933215,-0.91946656,-0.9209451,-0.9209451,-0.92027307,-0.9208107,-0.92175156,-0.92188597,-0.92175156,-0.92175156,-0.9220204,-0.9221548,-0.9220204,-0.92188597,-0.92188597,-0.9221548,-0.9220204,-0.9220204,-0.92323005,-0.9243054,-0.9222892,-0.9205419,-0.92134833,-0.92309564,-0.9243054,-0.9248431,-0.9253807,-0.9248431,-0.9241709,-0.9237677,-0.92336446,-0.92323005,-0.92323005,-0.92323005,-0.92309564,-0.92323005,-0.92349887,-0.9236333,-0.92349887,-0.9236333,-0.9237677,-0.9239021,-0.9244398,-0.9245742,-0.9239021,-0.9245742,-0.9268592,-0.92860657,-0.928741,-0.9268592,-0.9236333,-0.92148274,-0.92134833,-0.92188597,-0.9220204,-0.9220204,-0.922558,-0.92336446,-0.92323005,-0.9226924,-0.9224236,-0.92148274,-0.9210795,-0.9239021,-0.9284721,-0.92981625,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9302195,-0.93008506,-0.9303539,-0.92995065,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.92981625,-0.92981625,-0.92995065,-0.9302195,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.92995065,-0.92981625,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92995065,-0.9291442,-0.9295474,-0.92995065,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.928741,-0.9249775,-0.92148274,-0.9205419,-0.9208107,-0.9221548,-0.9243054,-0.9247086,-0.9222892,-0.9205419,-0.92175156,-0.9228268,-0.9220204,-0.9212139,-0.92336446,-0.927128,-0.9284721,-0.92618716,-0.9236333,-0.92323005,-0.9236333,-0.92349887,-0.92349887,-0.92336446,-0.92323005,-0.92336446,-0.9236333,-0.9236333,-0.92323005,-0.9228268,-0.9228268,-0.92296124,-0.92296124,-0.92296124,-0.92336446,-0.9237677,-0.9239021,-0.92349887,-0.92296124,-0.9226924,-0.92309564,-0.9236333,-0.9239021,-0.9237677,-0.9240365,-0.9241709,-0.9243054,-0.9241709,-0.9239021,-0.9236333,-0.92309564,-0.9228268,-0.922558,-0.9222892,-0.9221548,-0.9221548,-0.9221548,-0.9222892,-0.9224236,-0.9221548,-0.92161715,-0.9210795,-0.9210795,-0.9212139,-0.9212139,-0.9212139,-0.92148274,-0.9226924,-0.9239021,-0.9237677,-0.9228268,-0.9226924,-0.9226924,-0.9222892,-0.92161715,-0.92161715,-0.92161715,-0.9212139,-0.9210795,-0.92161715,-0.92175156,-0.92148274,-0.92148274,-0.92188597,-0.92296124,-0.9239021,-0.92336446,-0.9221548,-0.92161715,-0.92148274,-0.92148274,-0.92188597,-0.922558,-0.92309564,-0.92309564,-0.922558,-0.92175156,-0.9210795,-0.9206763,-0.9208107,-0.92175156,-0.922558,-0.922558,-0.9221548,-0.92134833,-0.9204075,-0.9197354,-0.92027307,-0.9208107,-0.92000425,-0.91960096,-0.9209451,-0.92188597,-0.92175156,-0.92175156,-0.92188597,-0.9220204,-0.9221548,-0.9222892,-0.9220204,-0.92188597,-0.92188597,-0.92175156,-0.9224236,-0.92349887,-0.9224236,-0.92000425,-0.9189289,-0.91919774,-0.92027307,-0.9220204,-0.9237677,-0.9243054,-0.9240365,-0.9237677,-0.92349887,-0.92323005,-0.92323005,-0.92336446,-0.92323005,-0.92309564,-0.92323005,-0.92336446,-0.92349887,-0.92349887,-0.9236333,-0.9237677,-0.9241709,-0.9244398,-0.9239021,-0.92349887,-0.9252463,-0.92793447,-0.9291442,-0.9280689,-0.9252463,-0.9221548,-0.9209451,-0.92148274,-0.92148274,-0.92148274,-0.9228268,-0.9243054,-0.9241709,-0.92309564,-0.9226924,-0.9222892,-0.92161715,-0.92349887,-0.92753124,-0.92995065,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.93008506,-0.9304883,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.92995065,-0.93008506,-0.93008506,-0.92968184,-0.92995065,-0.92995065,-0.92968184,-0.9304883,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9304883,-0.9303539,-0.9303539,-0.92981625,-0.92968184,-0.92981625,-0.93008506,-0.93008506,-0.9302195,-0.92981625,-0.92981625,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92981625,-0.9291442,-0.92981625,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.92995065,-0.928741,-0.9255151,-0.922558,-0.922558,-0.92309564,-0.9221548,-0.9224236,-0.9237677,-0.92323005,-0.92148274,-0.92148274,-0.9224236,-0.92188597,-0.9221548,-0.9249775,-0.9280689,-0.92766565,-0.9248431,-0.92309564,-0.92309564,-0.92336446,-0.92323005,-0.92336446,-0.92309564,-0.92296124,-0.92323005,-0.9236333,-0.92349887,-0.9228268,-0.922558,-0.9228268,-0.92309564,-0.92296124,-0.92309564,-0.92336446,-0.92336446,-0.92323005,-0.92309564,-0.9228268,-0.9226924,-0.92296124,-0.92336446,-0.9237677,-0.9240365,-0.9241709,-0.9240365,-0.9240365,-0.9241709,-0.9240365,-0.92349887,-0.92309564,-0.9226924,-0.9224236,-0.9222892,-0.9222892,-0.9222892,-0.9221548,-0.9220204,-0.9220204,-0.92161715,-0.92134833,-0.92134833,-0.92161715,-0.92175156,-0.92161715,-0.92134833,-0.92161715,-0.9226924,-0.92336446,-0.9222892,-0.92134833,-0.92148274,-0.9220204,-0.92175156,-0.92148274,-0.92148274,-0.92148274,-0.9209451,-0.9208107,-0.9210795,-0.92134833,-0.92161715,-0.92175156,-0.9220204,-0.9228268,-0.9237677,-0.92336446,-0.9221548,-0.92175156,-0.92175156,-0.9212139,-0.9210795,-0.9220204,-0.92309564,-0.92349887,-0.92309564,-0.9221548,-0.92148274,-0.92148274,-0.9220204,-0.922558,-0.922558,-0.9221548,-0.92161715,-0.92134833,-0.9208107,-0.92013866,-0.92013866,-0.9205419,-0.9205419,-0.9205419,-0.9210795,-0.92175156,-0.92188597,-0.92188597,-0.92175156,-0.92161715,-0.92175156,-0.9221548,-0.92188597,-0.92148274,-0.92161715,-0.9220204,-0.9224236,-0.9228268,-0.922558,-0.92161715,-0.9206763,-0.9197354,-0.91919774,-0.92027307,-0.92175156,-0.9226924,-0.92323005,-0.9236333,-0.92349887,-0.92309564,-0.92296124,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92323005,-0.92349887,-0.92349887,-0.92336446,-0.92336446,-0.9236333,-0.9240365,-0.9237677,-0.92309564,-0.9241709,-0.9268592,-0.9290098,-0.928741,-0.92618716,-0.92296124,-0.92148274,-0.92134833,-0.9212139,-0.92148274,-0.92336446,-0.9241709,-0.9239021,-0.9226924,-0.9222892,-0.9222892,-0.92161715,-0.9222892,-0.92605275,-0.92968184,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.9304883,-0.92981625,-0.93008506,-0.92995065,-0.92981625,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.92995065,-0.92995065,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.92981625,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9295474,-0.9291442,-0.92995065,-0.9304883,-0.9303539,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9306227,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.92995065,-0.9291442,-0.92618716,-0.92296124,-0.922558,-0.9237677,-0.9236333,-0.922558,-0.9228268,-0.92323005,-0.922558,-0.92188597,-0.92188597,-0.92188597,-0.92323005,-0.9265904,-0.9280689,-0.92618716,-0.9237677,-0.92323005,-0.92336446,-0.92309564,-0.92296124,-0.92309564,-0.92296124,-0.9228268,-0.92309564,-0.92336446,-0.92323005,-0.9228268,-0.92296124,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92309564,-0.92296124,-0.92296124,-0.92296124,-0.9228268,-0.9228268,-0.92323005,-0.9236333,-0.9239021,-0.9241709,-0.9243054,-0.9241709,-0.9240365,-0.9241709,-0.9241709,-0.9237677,-0.92323005,-0.9226924,-0.9224236,-0.9224236,-0.9224236,-0.9224236,-0.9221548,-0.9220204,-0.92175156,-0.92134833,-0.9212139,-0.92148274,-0.92175156,-0.92175156,-0.92175156,-0.92161715,-0.92134833,-0.92161715,-0.9220204,-0.9222892,-0.9221548,-0.9220204,-0.9220204,-0.92175156,-0.92161715,-0.92148274,-0.9212139,-0.9209451,-0.9209451,-0.92134833,-0.92161715,-0.92161715,-0.92161715,-0.92188597,-0.9226924,-0.9236333,-0.92336446,-0.9222892,-0.92161715,-0.92134833,-0.9210795,-0.9210795,-0.92161715,-0.9222892,-0.9224236,-0.9224236,-0.922558,-0.9228268,-0.9228268,-0.9224236,-0.9220204,-0.92175156,-0.92148274,-0.92134833,-0.92134833,-0.9210795,-0.9208107,-0.9206763,-0.9208107,-0.9210795,-0.9210795,-0.9212139,-0.92161715,-0.9220204,-0.9221548,-0.92175156,-0.92161715,-0.92175156,-0.9220204,-0.92148274,-0.9212139,-0.92148274,-0.9220204,-0.9222892,-0.922558,-0.9224236,-0.9224236,-0.92309564,-0.92336446,-0.9226924,-0.92188597,-0.92188597,-0.9224236,-0.92296124,-0.92336446,-0.92336446,-0.92296124,-0.922558,-0.922558,-0.9228268,-0.92296124,-0.92309564,-0.92323005,-0.9236333,-0.9236333,-0.92323005,-0.92309564,-0.92336446,-0.9239021,-0.9240365,-0.9236333,-0.9237677,-0.9256495,-0.92793447,-0.9288754,-0.9272624,-0.9241709,-0.9220204,-0.92148274,-0.9212139,-0.92161715,-0.9228268,-0.92336446,-0.92323005,-0.9222892,-0.92134833,-0.9208107,-0.9212139,-0.9221548,-0.9251119,-0.9290098,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.92995065,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.92995065,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9295474,-0.929413,-0.93008506,-0.93008506,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.92995065,-0.929413,-0.9267248,-0.92323005,-0.92188597,-0.92349887,-0.9247086,-0.92349887,-0.92188597,-0.9220204,-0.922558,-0.9222892,-0.92161715,-0.9220204,-0.9247086,-0.92793447,-0.92766565,-0.9248431,-0.92323005,-0.92336446,-0.92349887,-0.92309564,-0.92309564,-0.92309564,-0.92323005,-0.92309564,-0.92296124,-0.92309564,-0.92336446,-0.92323005,-0.92296124,-0.9226924,-0.9228268,-0.92323005,-0.92323005,-0.92296124,-0.9228268,-0.92296124,-0.9228268,-0.922558,-0.9226924,-0.92323005,-0.9237677,-0.9241709,-0.9244398,-0.9244398,-0.9243054,-0.9243054,-0.9241709,-0.9240365,-0.9237677,-0.92323005,-0.9226924,-0.922558,-0.922558,-0.9226924,-0.922558,-0.9222892,-0.92188597,-0.92175156,-0.92161715,-0.92161715,-0.92188597,-0.92175156,-0.92161715,-0.92161715,-0.92161715,-0.92148274,-0.92134833,-0.92161715,-0.92175156,-0.92175156,-0.92161715,-0.92175156,-0.92175156,-0.92161715,-0.92134833,-0.9212139,-0.9212139,-0.92134833,-0.92148274,-0.92161715,-0.92175156,-0.92161715,-0.92175156,-0.922558,-0.92349887,-0.92336446,-0.9221548,-0.92134833,-0.9210795,-0.9212139,-0.92134833,-0.92148274,-0.92148274,-0.92148274,-0.92161715,-0.92175156,-0.92161715,-0.92161715,-0.92175156,-0.92161715,-0.92134833,-0.92134833,-0.92134833,-0.9212139,-0.9209451,-0.9208107,-0.9212139,-0.92175156,-0.9220204,-0.92161715,-0.9212139,-0.9212139,-0.92161715,-0.9221548,-0.9222892,-0.9220204,-0.92175156,-0.92175156,-0.92148274,-0.92148274,-0.92175156,-0.92175156,-0.92188597,-0.9224236,-0.9226924,-0.9226924,-0.92309564,-0.9236333,-0.9236333,-0.92323005,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92296124,-0.9226924,-0.922558,-0.922558,-0.9226924,-0.9226924,-0.92296124,-0.92323005,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92349887,-0.9236333,-0.9237677,-0.9237677,-0.9239021,-0.9249775,-0.9269936,-0.92860657,-0.9282033,-0.9255151,-0.9226924,-0.92148274,-0.9210795,-0.9210795,-0.9220204,-0.92323005,-0.92349887,-0.9222892,-0.9197354,-0.9171816,-0.9174504,-0.92027307,-0.9243054,-0.9282033,-0.92981625,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.92995065,-0.93008506,-0.9304883,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.92995065,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92981625,-0.92968184,-0.9302195,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.92995065,-0.93008506,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.92981625,-0.92968184,-0.9272624,-0.92349887,-0.92161715,-0.92309564,-0.9249775,-0.9237677,-0.9209451,-0.9204075,-0.92188597,-0.9221548,-0.92148274,-0.92296124,-0.9265904,-0.928741,-0.9269936,-0.9239021,-0.9228268,-0.92323005,-0.92323005,-0.9228268,-0.9228268,-0.92309564,-0.92309564,-0.92296124,-0.92296124,-0.92309564,-0.92296124,-0.9228268,-0.9226924,-0.9228268,-0.9228268,-0.92309564,-0.92309564,-0.92296124,-0.92296124,-0.92323005,-0.92309564,-0.9226924,-0.9228268,-0.92336446,-0.9239021,-0.9241709,-0.9243054,-0.9244398,-0.9244398,-0.9243054,-0.9241709,-0.9239021,-0.9236333,-0.92336446,-0.92296124,-0.9226924,-0.922558,-0.9226924,-0.922558,-0.9221548,-0.92188597,-0.92175156,-0.92188597,-0.92188597,-0.92188597,-0.92175156,-0.92161715,-0.92161715,-0.92175156,-0.92175156,-0.92175156,-0.92175156,-0.92188597,-0.92175156,-0.92134833,-0.9212139,-0.92134833,-0.92161715,-0.92148274,-0.92134833,-0.92134833,-0.92134833,-0.92134833,-0.92148274,-0.92175156,-0.92175156,-0.92161715,-0.9224236,-0.92336446,-0.92323005,-0.9220204,-0.92134833,-0.92148274,-0.92148274,-0.9212139,-0.9212139,-0.9212139,-0.9212139,-0.9212139,-0.9212139,-0.9209451,-0.9208107,-0.9208107,-0.9210795,-0.9212139,-0.92148274,-0.92134833,-0.9212139,-0.9212139,-0.92161715,-0.92188597,-0.9220204,-0.9221548,-0.9220204,-0.92161715,-0.92148274,-0.92161715,-0.9220204,-0.9222892,-0.92175156,-0.9212139,-0.92161715,-0.9221548,-0.9220204,-0.92175156,-0.92161715,-0.92188597,-0.922558,-0.9228268,-0.9226924,-0.92323005,-0.9237677,-0.9236333,-0.92323005,-0.92309564,-0.92309564,-0.92323005,-0.92323005,-0.92296124,-0.9226924,-0.922558,-0.9226924,-0.9228268,-0.92296124,-0.92309564,-0.92309564,-0.92323005,-0.92349887,-0.9237677,-0.9237677,-0.9237677,-0.9236333,-0.9237677,-0.9240365,-0.9241709,-0.9247086,-0.92632157,-0.9283377,-0.9288754,-0.9269936,-0.9239021,-0.92175156,-0.9209451,-0.9208107,-0.92175156,-0.92323005,-0.92336446,-0.9220204,-0.91946656,-0.91624075,-0.91529983,-0.9186601,-0.9239021,-0.92780006,-0.92968184,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.92981625,-0.929413,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92981625,-0.92968184,-0.9302195,-0.92995065,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9302195,-0.92995065,-0.92981625,-0.9282033,-0.9244398,-0.92175156,-0.92296124,-0.9248431,-0.922558,-0.9189289,-0.9190633,-0.92161715,-0.9221548,-0.92175156,-0.9243054,-0.9282033,-0.928741,-0.92578393,-0.92323005,-0.92309564,-0.92323005,-0.92296124,-0.9228268,-0.92296124,-0.92309564,-0.92309564,-0.92296124,-0.92296124,-0.92323005,-0.92309564,-0.9226924,-0.9228268,-0.92323005,-0.92323005,-0.92309564,-0.92296124,-0.92296124,-0.92296124,-0.92323005,-0.92296124,-0.9226924,-0.9228268,-0.92349887,-0.9239021,-0.9240365,-0.9243054,-0.9244398,-0.9244398,-0.9243054,-0.9243054,-0.9239021,-0.92349887,-0.92336446,-0.92309564,-0.9228268,-0.9226924,-0.9226924,-0.9224236,-0.9220204,-0.92188597,-0.92175156,-0.92175156,-0.92175156,-0.92161715,-0.92175156,-0.92175156,-0.92175156,-0.92175156,-0.92175156,-0.92175156,-0.92188597,-0.92188597,-0.9220204,-0.92175156,-0.92134833,-0.92134833,-0.92148274,-0.92148274,-0.92134833,-0.92134833,-0.92134833,-0.92148274,-0.92161715,-0.92175156,-0.92175156,-0.92161715,-0.9224236,-0.92349887,-0.92336446,-0.9221548,-0.9212139,-0.92134833,-0.92134833,-0.92134833,-0.9212139,-0.92134833,-0.92134833,-0.92134833,-0.9212139,-0.9210795,-0.9206763,-0.9206763,-0.9210795,-0.92134833,-0.92148274,-0.92148274,-0.92148274,-0.92161715,-0.9220204,-0.9222892,-0.9222892,-0.9221548,-0.92175156,-0.92188597,-0.9221548,-0.9220204,-0.92161715,-0.92148274,-0.92134833,-0.92134833,-0.92175156,-0.9220204,-0.9220204,-0.92188597,-0.92188597,-0.9221548,-0.9226924,-0.9226924,-0.9224236,-0.92309564,-0.9237677,-0.9236333,-0.92309564,-0.92296124,-0.92323005,-0.92349887,-0.92349887,-0.92336446,-0.92296124,-0.9226924,-0.922558,-0.9222892,-0.9222892,-0.9226924,-0.92309564,-0.92336446,-0.9237677,-0.9240365,-0.9239021,-0.9236333,-0.9236333,-0.9239021,-0.9243054,-0.9241709,-0.9240365,-0.9255151,-0.92780006,-0.9290098,-0.9280689,-0.9251119,-0.9224236,-0.9212139,-0.9209451,-0.92148274,-0.922558,-0.9228268,-0.9221548,-0.92148274,-0.9209451,-0.92027307,-0.9210795,-0.9239021,-0.9272624,-0.929413,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9302195,-0.92981625,-0.92981625,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.92995065,-0.92968184,-0.929413,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9295474,-0.9295474,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.92981625,-0.9295474,-0.9288754,-0.9255151,-0.9220204,-0.92309564,-0.9245742,-0.92027307,-0.91543424,-0.91758484,-0.9221548,-0.922558,-0.9221548,-0.9253807,-0.9288754,-0.92793447,-0.9245742,-0.9228268,-0.92309564,-0.92336446,-0.92296124,-0.92296124,-0.92309564,-0.92309564,-0.92309564,-0.92296124,-0.92296124,-0.92309564,-0.92296124,-0.9226924,-0.922558,-0.92296124,-0.92296124,-0.92296124,-0.9228268,-0.9228268,-0.92296124,-0.92309564,-0.9226924,-0.9224236,-0.9228268,-0.92349887,-0.9239021,-0.9241709,-0.9245742,-0.9247086,-0.9244398,-0.9241709,-0.9243054,-0.9241709,-0.92349887,-0.92309564,-0.92296124,-0.9228268,-0.9228268,-0.9226924,-0.9224236,-0.9220204,-0.92188597,-0.92175156,-0.92175156,-0.92175156,-0.92175156,-0.92175156,-0.92175156,-0.92175156,-0.92188597,-0.92188597,-0.92188597,-0.92188597,-0.9220204,-0.92188597,-0.92161715,-0.92148274,-0.92148274,-0.92148274,-0.9209451,-0.92027307,-0.9204075,-0.9212139,-0.92148274,-0.92134833,-0.92134833,-0.92148274,-0.92148274,-0.9222892,-0.92349887,-0.92323005,-0.9220204,-0.92148274,-0.92148274,-0.92148274,-0.92134833,-0.9212139,-0.9210795,-0.9210795,-0.9212139,-0.92148274,-0.92148274,-0.92134833,-0.9210795,-0.9210795,-0.9209451,-0.9210795,-0.92148274,-0.92175156,-0.92188597,-0.9221548,-0.9220204,-0.92188597,-0.92175156,-0.92175156,-0.92188597,-0.92188597,-0.92175156,-0.9212139,-0.9210795,-0.92134833,-0.92161715,-0.92161715,-0.92175156,-0.92188597,-0.92188597,-0.92188597,-0.9222892,-0.9228268,-0.9228268,-0.9226924,-0.92323005,-0.9236333,-0.92349887,-0.92323005,-0.92309564,-0.92336446,-0.9236333,-0.9236333,-0.92336446,-0.9226924,-0.9224236,-0.9221548,-0.92161715,-0.92175156,-0.9226924,-0.92336446,-0.9236333,-0.9239021,-0.9241709,-0.9241709,-0.9240365,-0.9239021,-0.9240365,-0.9243054,-0.9241709,-0.9239021,-0.9247086,-0.9269936,-0.9288754,-0.92860657,-0.92632157,-0.92336446,-0.92134833,-0.9206763,-0.9212139,-0.922558,-0.92309564,-0.9224236,-0.9221548,-0.9224236,-0.9222892,-0.92175156,-0.92296124,-0.92632157,-0.9288754,-0.92995065,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.92995065,-0.92968184,-0.92995065,-0.92995065,-0.92995065,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.92995065,-0.92995065,-0.92995065,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9303539,-0.9292786,-0.9292786,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.93008506,-0.92981625,-0.929413,-0.92860657,-0.9255151,-0.9222892,-0.92309564,-0.9243054,-0.9198698,-0.91556865,-0.9181225,-0.9222892,-0.9226924,-0.92323005,-0.9268592,-0.9288754,-0.9265904,-0.9236333,-0.92296124,-0.92323005,-0.92323005,-0.92296124,-0.92309564,-0.92309564,-0.92323005,-0.92323005,-0.92309564,-0.9228268,-0.92296124,-0.92309564,-0.92296124,-0.9228268,-0.9226924,-0.92296124,-0.92309564,-0.9228268,-0.9226924,-0.92296124,-0.92296124,-0.9222892,-0.9222892,-0.92323005,-0.9237677,-0.9237677,-0.9240365,-0.9245742,-0.9247086,-0.9244398,-0.9240365,-0.9240365,-0.9240365,-0.9237677,-0.92336446,-0.92309564,-0.9228268,-0.9228268,-0.9226924,-0.9224236,-0.9220204,-0.9220204,-0.9220204,-0.92188597,-0.92175156,-0.92188597,-0.92175156,-0.92175156,-0.92188597,-0.9220204,-0.9221548,-0.92188597,-0.92175156,-0.92175156,-0.92175156,-0.92175156,-0.92175156,-0.92161715,-0.92148274,-0.9210795,-0.9208107,-0.9209451,-0.92134833,-0.92148274,-0.9212139,-0.9210795,-0.9212139,-0.92134833,-0.9221548,-0.92323005,-0.92309564,-0.9221548,-0.92161715,-0.92161715,-0.92148274,-0.9212139,-0.9210795,-0.9209451,-0.9209451,-0.9212139,-0.92148274,-0.92148274,-0.9212139,-0.92134833,-0.92148274,-0.92134833,-0.9212139,-0.92161715,-0.92188597,-0.92188597,-0.92188597,-0.92175156,-0.92161715,-0.92175156,-0.9220204,-0.92188597,-0.92148274,-0.92134833,-0.9212139,-0.9212139,-0.92134833,-0.92148274,-0.92161715,-0.92175156,-0.92188597,-0.92188597,-0.92175156,-0.9222892,-0.9228268,-0.9226924,-0.922558,-0.92336446,-0.9241709,-0.9240365,-0.92349887,-0.92323005,-0.92309564,-0.92323005,-0.92336446,-0.92296124,-0.9224236,-0.92188597,-0.92188597,-0.9224236,-0.9228268,-0.92309564,-0.92323005,-0.9236333,-0.9239021,-0.9239021,-0.9237677,-0.9241709,-0.9245742,-0.9244398,-0.9243054,-0.9240365,-0.9236333,-0.9241709,-0.92618716,-0.92860657,-0.9290098,-0.9269936,-0.9240365,-0.92161715,-0.92027307,-0.9209451,-0.9226924,-0.92323005,-0.9222892,-0.92134833,-0.9212139,-0.9212139,-0.9212139,-0.9224236,-0.9253807,-0.9282033,-0.92968184,-0.93008506,-0.92995065,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.93008506,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.9295474,-0.9291442,-0.9295474,-0.92968184,-0.929413,-0.92981625,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9303539,-0.93008506,-0.92995065,-0.92981625,-0.9295474,-0.92968184,-0.92981625,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9302195,-0.9292786,-0.929413,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9295474,-0.9292786,-0.9284721,-0.9255151,-0.922558,-0.92309564,-0.9241709,-0.9210795,-0.91771924,-0.91933215,-0.9224236,-0.9228268,-0.9243054,-0.92793447,-0.928741,-0.92578393,-0.92336446,-0.92309564,-0.92349887,-0.92323005,-0.92309564,-0.92323005,-0.92323005,-0.92309564,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.92309564,-0.92296124,-0.9228268,-0.9228268,-0.92296124,-0.92309564,-0.9228268,-0.9226924,-0.9228268,-0.9226924,-0.9224236,-0.9228268,-0.92349887,-0.9237677,-0.9237677,-0.9241709,-0.9244398,-0.9245742,-0.9244398,-0.9241709,-0.9240365,-0.9239021,-0.9237677,-0.92349887,-0.92323005,-0.92309564,-0.9228268,-0.9226924,-0.9224236,-0.9221548,-0.92188597,-0.92188597,-0.92188597,-0.92175156,-0.92175156,-0.92175156,-0.92188597,-0.9221548,-0.9222892,-0.9222892,-0.9221548,-0.92188597,-0.92188597,-0.92188597,-0.92188597,-0.92188597,-0.92188597,-0.92161715,-0.92148274,-0.92148274,-0.92148274,-0.92134833,-0.9212139,-0.9212139,-0.92134833,-0.9212139,-0.9212139,-0.92188597,-0.9228268,-0.92296124,-0.9221548,-0.92148274,-0.92134833,-0.9212139,-0.9208107,-0.9208107,-0.9210795,-0.92134833,-0.92134833,-0.9210795,-0.9209451,-0.9208107,-0.9210795,-0.92161715,-0.92188597,-0.92188597,-0.92188597,-0.92188597,-0.92175156,-0.92161715,-0.92161715,-0.92188597,-0.9220204,-0.92188597,-0.92148274,-0.92148274,-0.92148274,-0.92134833,-0.9212139,-0.9212139,-0.92134833,-0.92134833,-0.92161715,-0.9220204,-0.9221548,-0.9220204,-0.9221548,-0.9226924,-0.922558,-0.922558,-0.92349887,-0.9244398,-0.9243054,-0.9237677,-0.92336446,-0.92309564,-0.92296124,-0.92296124,-0.9226924,-0.9221548,-0.9220204,-0.9221548,-0.92296124,-0.92349887,-0.9236333,-0.9236333,-0.9237677,-0.9239021,-0.9240365,-0.9240365,-0.9240365,-0.9239021,-0.9236333,-0.9239021,-0.9239021,-0.92349887,-0.9240365,-0.92591834,-0.9280689,-0.9291442,-0.92780006,-0.9247086,-0.92188597,-0.9205419,-0.9209451,-0.9222892,-0.9224236,-0.92148274,-0.9210795,-0.9209451,-0.9208107,-0.92148274,-0.9224236,-0.9243054,-0.9272624,-0.9292786,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.92995065,-0.92995065,-0.9295474,-0.9292786,-0.92968184,-0.92981625,-0.92981625,-0.93008506,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.9303539,-0.92995065,-0.93008506,-0.92981625,-0.9295474,-0.92968184,-0.92981625,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.93008506,-0.929413,-0.92968184,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9302195,-0.9295474,-0.9292786,-0.92860657,-0.92591834,-0.92309564,-0.92309564,-0.9241709,-0.922558,-0.92013866,-0.9205419,-0.9222892,-0.92336446,-0.9253807,-0.9283377,-0.9282033,-0.9253807,-0.92349887,-0.92336446,-0.92336446,-0.92309564,-0.92296124,-0.92309564,-0.92323005,-0.92309564,-0.92296124,-0.9226924,-0.9226924,-0.92296124,-0.92309564,-0.92309564,-0.92296124,-0.92296124,-0.92296124,-0.9228268,-0.922558,-0.922558,-0.9226924,-0.922558,-0.9224236,-0.9228268,-0.92349887,-0.9237677,-0.9237677,-0.9240365,-0.9243054,-0.9244398,-0.9244398,-0.9241709,-0.9239021,-0.9239021,-0.9236333,-0.92323005,-0.92296124,-0.92296124,-0.9228268,-0.9226924,-0.922558,-0.9222892,-0.9220204,-0.92188597,-0.92175156,-0.92161715,-0.92161715,-0.92175156,-0.9220204,-0.9222892,-0.922558,-0.9224236,-0.9220204,-0.92188597,-0.92188597,-0.92175156,-0.92188597,-0.92175156,-0.92161715,-0.92148274,-0.92148274,-0.92148274,-0.92134833,-0.9212139,-0.9212139,-0.92134833,-0.92134833,-0.92134833,-0.92148274,-0.92175156,-0.9224236,-0.9226924,-0.9220204,-0.92134833,-0.92134833,-0.92134833,-0.9208107,-0.9206763,-0.9210795,-0.92148274,-0.92148274,-0.9212139,-0.9210795,-0.9209451,-0.9210795,-0.92134833,-0.92148274,-0.92175156,-0.92188597,-0.92188597,-0.92188597,-0.92175156,-0.92188597,-0.9221548,-0.9221548,-0.92161715,-0.92161715,-0.92175156,-0.92161715,-0.92134833,-0.92134833,-0.92134833,-0.92134833,-0.92134833,-0.92148274,-0.92161715,-0.92188597,-0.9220204,-0.9221548,-0.922558,-0.922558,-0.9226924,-0.92336446,-0.9236333,-0.92323005,-0.92296124,-0.92309564,-0.92309564,-0.92296124,-0.9228268,-0.922558,-0.9224236,-0.922558,-0.9228268,-0.92309564,-0.92323005,-0.92349887,-0.9237677,-0.9237677,-0.9240365,-0.9245742,-0.9247086,-0.9239021,-0.92323005,-0.92323005,-0.9237677,-0.9240365,-0.9237677,-0.9239021,-0.9255151,-0.92766565,-0.9290098,-0.928741,-0.92591834,-0.9224236,-0.9209451,-0.92134833,-0.9220204,-0.9210795,-0.9198698,-0.92027307,-0.9206763,-0.9204075,-0.9212139,-0.9221548,-0.92309564,-0.92578393,-0.9288754,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.9303539,-0.9303539,-0.9304883,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.9304883,-0.92995065,-0.92981625,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.92995065,-0.92995065,-0.92968184,-0.93008506,-0.92995065,-0.92981625,-0.92981625,-0.929413,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9302195,-0.92995065,-0.9302195,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.93008506,-0.92968184,-0.9292786,-0.92860657,-0.92605275,-0.92296124,-0.922558,-0.9239021,-0.9240365,-0.92296124,-0.9222892,-0.9222892,-0.9236333,-0.926456,-0.928741,-0.92780006,-0.9249775,-0.92349887,-0.92323005,-0.92309564,-0.92296124,-0.92296124,-0.92309564,-0.92323005,-0.92323005,-0.92309564,-0.9228268,-0.9226924,-0.9228268,-0.92309564,-0.92309564,-0.9228268,-0.9228268,-0.92296124,-0.9228268,-0.9224236,-0.9224236,-0.9226924,-0.9226924,-0.9224236,-0.9226924,-0.92336446,-0.9237677,-0.9239021,-0.9240365,-0.9241709,-0.9241709,-0.9241709,-0.9241709,-0.9240365,-0.9237677,-0.9237677,-0.92349887,-0.92309564,-0.9228268,-0.922558,-0.922558,-0.922558,-0.9224236,-0.9220204,-0.92161715,-0.92175156,-0.92175156,-0.92175156,-0.92188597,-0.9221548,-0.9224236,-0.9224236,-0.9224236,-0.9221548,-0.9220204,-0.92188597,-0.92188597,-0.92188597,-0.92175156,-0.92148274,-0.92148274,-0.92148274,-0.92161715,-0.92148274,-0.92148274,-0.92134833,-0.92134833,-0.92134833,-0.92148274,-0.92161715,-0.92175156,-0.9220204,-0.9222892,-0.92188597,-0.92148274,-0.92134833,-0.92134833,-0.9212139,-0.9209451,-0.9212139,-0.92148274,-0.92148274,-0.92134833,-0.92134833,-0.92148274,-0.92161715,-0.92148274,-0.92134833,-0.92148274,-0.92175156,-0.9220204,-0.9220204,-0.92188597,-0.9220204,-0.9222892,-0.9221548,-0.92175156,-0.92161715,-0.92161715,-0.92148274,-0.92148274,-0.92148274,-0.92148274,-0.92134833,-0.92134833,-0.92148274,-0.92148274,-0.92175156,-0.9220204,-0.9221548,-0.9222892,-0.9222892,-0.9222892,-0.922558,-0.9222892,-0.92148274,-0.92161715,-0.922558,-0.92309564,-0.9228268,-0.9224236,-0.9224236,-0.922558,-0.9226924,-0.9228268,-0.92296124,-0.92296124,-0.92296124,-0.92309564,-0.9236333,-0.9237677,-0.9237677,-0.9236333,-0.92349887,-0.92349887,-0.92349887,-0.9236333,-0.9240365,-0.9236333,-0.9236333,-0.9251119,-0.92739683,-0.9288754,-0.9290098,-0.9269936,-0.92349887,-0.92148274,-0.92134833,-0.92148274,-0.9205419,-0.91933215,-0.91960096,-0.92013866,-0.9198698,-0.9206763,-0.9221548,-0.92296124,-0.9248431,-0.9280689,-0.92995065,-0.9303539,-0.9303539,-0.93008506,-0.92981625,-0.93008506,-0.9302195,-0.9303539,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.93008506,-0.9302195,-0.9304883,-0.9304883,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.9303539,-0.9302195,-0.92995065,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.9303539,-0.9304883,-0.9303539,-0.92981625,-0.92981625,-0.93008506,-0.9302195,-0.92995065,-0.92968184,-0.92995065,-0.9295474,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.929413,-0.9288754,-0.92995065,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.92981625,-0.9292786,-0.928741,-0.92632157,-0.92323005,-0.9224236,-0.9236333,-0.9244398,-0.9239021,-0.9226924,-0.9222892,-0.9240365,-0.927128,-0.9288754,-0.9272624,-0.9244398,-0.92309564,-0.92309564,-0.92296124,-0.9228268,-0.9228268,-0.92296124,-0.92309564,-0.92323005,-0.92323005,-0.92309564,-0.92296124,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.92296124,-0.9228268,-0.922558,-0.9224236,-0.9226924,-0.9226924,-0.922558,-0.9228268,-0.92336446,-0.9237677,-0.9239021,-0.9240365,-0.9241709,-0.9240365,-0.9240365,-0.9240365,-0.9240365,-0.9237677,-0.92349887,-0.92336446,-0.92309564,-0.9228268,-0.922558,-0.9224236,-0.9224236,-0.9222892,-0.9221548,-0.9220204,-0.9220204,-0.9220204,-0.92188597,-0.9220204,-0.9221548,-0.9222892,-0.9222892,-0.9221548,-0.92188597,-0.92188597,-0.9220204,-0.92188597,-0.92161715,-0.92161715,-0.92175156,-0.92161715,-0.92161715,-0.92148274,-0.92148274,-0.92148274,-0.92134833,-0.9212139,-0.92134833,-0.92148274,-0.92161715,-0.92175156,-0.92188597,-0.92188597,-0.92188597,-0.92148274,-0.9212139,-0.9210795,-0.9212139,-0.92134833,-0.92148274,-0.92148274,-0.92161715,-0.92148274,-0.92148274,-0.92148274,-0.92148274,-0.92161715,-0.92148274,-0.92148274,-0.92161715,-0.92188597,-0.9221548,-0.9222892,-0.9221548,-0.9221548,-0.9221548,-0.9220204,-0.92188597,-0.92175156,-0.92161715,-0.92148274,-0.92148274,-0.92148274,-0.92134833,-0.9212139,-0.92134833,-0.92148274,-0.92161715,-0.92188597,-0.9220204,-0.9222892,-0.9222892,-0.9222892,-0.9221548,-0.9224236,-0.9224236,-0.9224236,-0.9226924,-0.92296124,-0.922558,-0.9222892,-0.9224236,-0.9226924,-0.9228268,-0.92296124,-0.92309564,-0.92309564,-0.92296124,-0.92323005,-0.9237677,-0.9237677,-0.92349887,-0.92323005,-0.92336446,-0.92349887,-0.92336446,-0.92336446,-0.92349887,-0.92349887,-0.9236333,-0.9251119,-0.9272624,-0.92860657,-0.9288754,-0.92753124,-0.9245742,-0.9221548,-0.92134833,-0.92134833,-0.92161715,-0.92148274,-0.9209451,-0.92000425,-0.91919774,-0.9197354,-0.92175156,-0.92296124,-0.9243054,-0.927128,-0.9295474,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9303539,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.92995065,-0.92995065,-0.9302195,-0.9303539,-0.9302195,-0.92995065,-0.9302195,-0.9302195,-0.9303539,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.92981625,-0.92995065,-0.92968184,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9283377,-0.9272624,-0.929413,-0.92981625,-0.9302195,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.92995065,-0.929413,-0.9288754,-0.926456,-0.9236333,-0.92296124,-0.9240365,-0.9244398,-0.92349887,-0.9224236,-0.9224236,-0.9245742,-0.92780006,-0.9290098,-0.9268592,-0.9240365,-0.92309564,-0.92323005,-0.92309564,-0.9228268,-0.92296124,-0.92323005,-0.92323005,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92296124,-0.92309564,-0.92309564,-0.9228268,-0.9228268,-0.92296124,-0.92296124,-0.9226924,-0.922558,-0.9228268,-0.92296124,-0.922558,-0.922558,-0.92323005,-0.9236333,-0.9236333,-0.9237677,-0.9240365,-0.9241709,-0.9240365,-0.9239021,-0.9239021,-0.9237677,-0.92349887,-0.92323005,-0.92309564,-0.9228268,-0.9226924,-0.9226924,-0.922558,-0.9222892,-0.9220204,-0.92188597,-0.92188597,-0.9220204,-0.92188597,-0.92188597,-0.9220204,-0.9221548,-0.9221548,-0.9220204,-0.92188597,-0.92188597,-0.9220204,-0.92188597,-0.92175156,-0.92175156,-0.92175156,-0.92175156,-0.92161715,-0.92148274,-0.92148274,-0.92134833,-0.9212139,-0.9212139,-0.9212139,-0.92134833,-0.92148274,-0.92175156,-0.92188597,-0.92188597,-0.92175156,-0.92161715,-0.92134833,-0.9210795,-0.9210795,-0.9212139,-0.92134833,-0.92134833,-0.92134833,-0.92148274,-0.92161715,-0.92161715,-0.92175156,-0.92175156,-0.92175156,-0.92148274,-0.92148274,-0.92161715,-0.92188597,-0.9221548,-0.9222892,-0.9221548,-0.9221548,-0.9220204,-0.9220204,-0.92188597,-0.92161715,-0.92148274,-0.9212139,-0.92134833,-0.92134833,-0.9212139,-0.92134833,-0.92161715,-0.92175156,-0.92175156,-0.92188597,-0.9221548,-0.9222892,-0.9221548,-0.9221548,-0.9226924,-0.92296124,-0.9228268,-0.922558,-0.922558,-0.9224236,-0.9222892,-0.9224236,-0.9228268,-0.92309564,-0.92323005,-0.92296124,-0.92309564,-0.92323005,-0.92336446,-0.92349887,-0.9236333,-0.9236333,-0.9236333,-0.9236333,-0.92349887,-0.92336446,-0.92336446,-0.92349887,-0.9236333,-0.9240365,-0.9251119,-0.927128,-0.92860657,-0.9290098,-0.92793447,-0.9252463,-0.9226924,-0.92148274,-0.92134833,-0.92188597,-0.9226924,-0.9220204,-0.9198698,-0.9185257,-0.9190633,-0.9209451,-0.9226924,-0.9240365,-0.926456,-0.9291442,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.92995065,-0.92981625,-0.9302195,-0.9303539,-0.93008506,-0.92981625,-0.92995065,-0.92981625,-0.93008506,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.92981625,-0.9302195,-0.9303539,-0.9302195,-0.92995065,-0.92995065,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.92968184,-0.9290098,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9282033,-0.92753124,-0.92995065,-0.92968184,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.92995065,-0.93008506,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.92995065,-0.9292786,-0.928741,-0.92605275,-0.92336446,-0.92323005,-0.9243054,-0.9245742,-0.92336446,-0.9221548,-0.922558,-0.9253807,-0.928741,-0.9292786,-0.926456,-0.9237677,-0.92309564,-0.92336446,-0.92309564,-0.92296124,-0.9228268,-0.9228268,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.92309564,-0.92323005,-0.92309564,-0.9228268,-0.9228268,-0.92296124,-0.9226924,-0.922558,-0.9228268,-0.92309564,-0.92296124,-0.9226924,-0.92309564,-0.9236333,-0.9236333,-0.9236333,-0.9239021,-0.9239021,-0.9239021,-0.9237677,-0.9237677,-0.92349887,-0.92336446,-0.92336446,-0.92296124,-0.9226924,-0.9226924,-0.922558,-0.9224236,-0.9222892,-0.9220204,-0.92188597,-0.92188597,-0.9220204,-0.9220204,-0.9220204,-0.9220204,-0.9221548,-0.9221548,-0.9221548,-0.9220204,-0.9220204,-0.9220204,-0.9220204,-0.9220204,-0.92188597,-0.92175156,-0.92161715,-0.92148274,-0.92134833,-0.9212139,-0.9212139,-0.9212139,-0.9212139,-0.92134833,-0.92134833,-0.92134833,-0.92148274,-0.92175156,-0.92188597,-0.92175156,-0.92161715,-0.92161715,-0.92134833,-0.9210795,-0.9210795,-0.9212139,-0.9212139,-0.9212139,-0.92134833,-0.92148274,-0.92175156,-0.92188597,-0.92188597,-0.92188597,-0.92161715,-0.92161715,-0.92175156,-0.92175156,-0.92188597,-0.9220204,-0.9221548,-0.9221548,-0.9220204,-0.92188597,-0.92161715,-0.92148274,-0.92148274,-0.92148274,-0.92134833,-0.92134833,-0.92134833,-0.92148274,-0.92175156,-0.92188597,-0.92175156,-0.92175156,-0.9220204,-0.9222892,-0.9222892,-0.9222892,-0.922558,-0.9228268,-0.9226924,-0.9224236,-0.9224236,-0.9224236,-0.9224236,-0.9226924,-0.9228268,-0.92296124,-0.92309564,-0.92309564,-0.92323005,-0.92336446,-0.92336446,-0.92323005,-0.92323005,-0.92349887,-0.9236333,-0.9236333,-0.92349887,-0.9236333,-0.9236333,-0.9237677,-0.9239021,-0.9240365,-0.9251119,-0.9269936,-0.92860657,-0.9291442,-0.9284721,-0.92591834,-0.92296124,-0.92161715,-0.9209451,-0.9206763,-0.9212139,-0.9212139,-0.9197354,-0.9182569,-0.9186601,-0.9206763,-0.9226924,-0.9240365,-0.92605275,-0.928741,-0.9302195,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.93008506,-0.92995065,-0.9302195,-0.9303539,-0.93008506,-0.92981625,-0.92995065,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.92981625,-0.92981625,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.93008506,-0.9295474,-0.9292786,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92793447,-0.92739683,-0.9302195,-0.929413,-0.9302195,-0.9303539,-0.93008506,-0.9303539,-0.9303539,-0.93008506,-0.93008506,-0.9302195,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.92995065,-0.9292786,-0.9283377,-0.9252463,-0.9228268,-0.92309564,-0.9244398,-0.9247086,-0.92336446,-0.92188597,-0.92296124,-0.92632157,-0.9288754,-0.92860657,-0.92618716,-0.9239021,-0.92336446,-0.92349887,-0.92323005,-0.92309564,-0.92309564,-0.9228268,-0.9226924,-0.9228268,-0.9228268,-0.9226924,-0.9228268,-0.9228268,-0.9226924,-0.922558,-0.922558,-0.922558,-0.9226924,-0.92296124,-0.92296124,-0.9226924,-0.9226924,-0.92309564,-0.92296124,-0.9226924,-0.92296124,-0.92336446,-0.9236333,-0.9236333,-0.9237677,-0.9237677,-0.9236333,-0.9236333,-0.9236333,-0.92349887,-0.92336446,-0.92323005,-0.92296124,-0.922558,-0.9224236,-0.9224236,-0.9222892,-0.9221548,-0.9220204,-0.92188597,-0.92188597,-0.92188597,-0.92161715,-0.92161715,-0.92175156,-0.92188597,-0.9221548,-0.9221548,-0.9221548,-0.9220204,-0.9220204,-0.9221548,-0.9222892,-0.9220204,-0.92175156,-0.92161715,-0.92148274,-0.92134833,-0.92134833,-0.92134833,-0.92134833,-0.9212139,-0.92134833,-0.92148274,-0.92134833,-0.9212139,-0.92134833,-0.92148274,-0.92134833,-0.92134833,-0.92148274,-0.92134833,-0.9212139,-0.9210795,-0.9212139,-0.9212139,-0.9212139,-0.9212139,-0.92134833,-0.92148274,-0.92161715,-0.92175156,-0.92188597,-0.92188597,-0.92188597,-0.92188597,-0.92188597,-0.92188597,-0.92161715,-0.92161715,-0.92188597,-0.9220204,-0.92188597,-0.92148274,-0.92134833,-0.92134833,-0.92148274,-0.92148274,-0.92148274,-0.92148274,-0.92148274,-0.92148274,-0.92175156,-0.92188597,-0.92188597,-0.9221548,-0.9222892,-0.9222892,-0.9222892,-0.922558,-0.9226924,-0.922558,-0.9224236,-0.9224236,-0.922558,-0.9226924,-0.9228268,-0.92309564,-0.92309564,-0.92309564,-0.92323005,-0.92323005,-0.92323005,-0.92309564,-0.92323005,-0.92323005,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92349887,-0.9237677,-0.9240365,-0.9239021,-0.9247086,-0.9265904,-0.9284721,-0.9291442,-0.92860657,-0.926456,-0.9236333,-0.9220204,-0.9208107,-0.91933215,-0.91946656,-0.9205419,-0.92013866,-0.9187945,-0.9187945,-0.9206763,-0.9226924,-0.9240365,-0.92578393,-0.9284721,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.92995065,-0.92968184,-0.92968184,-0.9295474,-0.928741,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.92780006,-0.92793447,-0.92981625,-0.9291442,-0.9302195,-0.9303539,-0.93008506,-0.9303539,-0.9302195,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9304883,-0.9303539,-0.9304883,-0.92981625,-0.9290098,-0.9280689,-0.9245742,-0.9222892,-0.92336446,-0.9251119,-0.9248431,-0.92309564,-0.9220204,-0.92309564,-0.926456,-0.9292786,-0.92766565,-0.9236333,-0.9221548,-0.92309564,-0.9236333,-0.92349887,-0.92336446,-0.92323005,-0.92309564,-0.9228268,-0.922558,-0.9228268,-0.92296124,-0.92296124,-0.92296124,-0.9228268,-0.922558,-0.9224236,-0.9224236,-0.922558,-0.92296124,-0.92309564,-0.9226924,-0.922558,-0.9228268,-0.9228268,-0.922558,-0.9228268,-0.92336446,-0.92349887,-0.92349887,-0.9236333,-0.9237677,-0.92349887,-0.92349887,-0.92349887,-0.92349887,-0.92336446,-0.92309564,-0.9228268,-0.922558,-0.9224236,-0.9222892,-0.9221548,-0.9220204,-0.92188597,-0.92188597,-0.92175156,-0.92148274,-0.9210795,-0.9209451,-0.9209451,-0.9210795,-0.92161715,-0.92188597,-0.92175156,-0.92175156,-0.9221548,-0.9222892,-0.9221548,-0.9220204,-0.92175156,-0.92161715,-0.92148274,-0.92134833,-0.92134833,-0.92134833,-0.9212139,-0.9212139,-0.92134833,-0.92148274,-0.92148274,-0.9212139,-0.9210795,-0.9210795,-0.9212139,-0.9212139,-0.92148274,-0.92134833,-0.9210795,-0.9210795,-0.9212139,-0.9210795,-0.9210795,-0.9210795,-0.92134833,-0.92161715,-0.92175156,-0.92175156,-0.92188597,-0.9220204,-0.9221548,-0.9221548,-0.9220204,-0.92188597,-0.92161715,-0.92148274,-0.92148274,-0.92161715,-0.92161715,-0.92148274,-0.9212139,-0.9212139,-0.92134833,-0.92148274,-0.92148274,-0.92148274,-0.92148274,-0.92148274,-0.92161715,-0.92188597,-0.9221548,-0.9221548,-0.9221548,-0.9222892,-0.9224236,-0.922558,-0.922558,-0.9224236,-0.9224236,-0.9224236,-0.9226924,-0.9228268,-0.92296124,-0.92296124,-0.92296124,-0.92309564,-0.92309564,-0.92309564,-0.92296124,-0.92296124,-0.92309564,-0.92336446,-0.92349887,-0.92349887,-0.92336446,-0.92323005,-0.92323005,-0.92349887,-0.9239021,-0.9241709,-0.9237677,-0.9240365,-0.92605275,-0.9282033,-0.9291442,-0.9290098,-0.927128,-0.9241709,-0.9224236,-0.9209451,-0.9187945,-0.9185257,-0.92027307,-0.9206763,-0.91919774,-0.9186601,-0.92027307,-0.9222892,-0.92349887,-0.9252463,-0.9280689,-0.92995065,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.92995065,-0.9295474,-0.9295474,-0.92968184,-0.9280689,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9302195,-0.9280689,-0.9280689,-0.92995065,-0.92981625,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.93008506,-0.9302195,-0.9304883,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.92968184,-0.9290098,-0.9280689,-0.9249775,-0.9226924,-0.9236333,-0.9253807,-0.9249775,-0.92309564,-0.9222892,-0.92349887,-0.9268592,-0.9295474,-0.9269936,-0.9209451,-0.91946656,-0.922558,-0.9241709,-0.92323005,-0.92296124,-0.92323005,-0.92309564,-0.9228268,-0.922558,-0.9226924,-0.92309564,-0.92323005,-0.92309564,-0.92296124,-0.92296124,-0.9228268,-0.9226924,-0.922558,-0.9228268,-0.92309564,-0.9226924,-0.9224236,-0.922558,-0.9226924,-0.9226924,-0.92296124,-0.92323005,-0.92323005,-0.92336446,-0.9236333,-0.9236333,-0.92349887,-0.92336446,-0.92336446,-0.92309564,-0.92296124,-0.92296124,-0.9228268,-0.9226924,-0.9224236,-0.9221548,-0.9221548,-0.9221548,-0.92188597,-0.92161715,-0.92161715,-0.92148274,-0.9210795,-0.9208107,-0.9206763,-0.9208107,-0.9212139,-0.92175156,-0.92188597,-0.92188597,-0.9222892,-0.922558,-0.9222892,-0.92188597,-0.92188597,-0.92175156,-0.92134833,-0.9210795,-0.9210795,-0.9212139,-0.92134833,-0.92134833,-0.92148274,-0.92161715,-0.92161715,-0.92161715,-0.92148274,-0.92134833,-0.92134833,-0.92134833,-0.92148274,-0.92134833,-0.9210795,-0.9212139,-0.92134833,-0.9212139,-0.9209451,-0.9210795,-0.9212139,-0.92161715,-0.92188597,-0.92188597,-0.92188597,-0.9220204,-0.9222892,-0.9224236,-0.9222892,-0.9220204,-0.92161715,-0.92134833,-0.9212139,-0.9212139,-0.92134833,-0.92134833,-0.9212139,-0.9210795,-0.92134833,-0.92161715,-0.92161715,-0.92148274,-0.92148274,-0.92148274,-0.92161715,-0.92188597,-0.9221548,-0.9221548,-0.9221548,-0.9224236,-0.9224236,-0.9222892,-0.9224236,-0.9224236,-0.9222892,-0.9224236,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.92296124,-0.92309564,-0.92309564,-0.92296124,-0.92296124,-0.92296124,-0.92309564,-0.92309564,-0.92323005,-0.92336446,-0.92336446,-0.92323005,-0.92336446,-0.9236333,-0.9239021,-0.9240365,-0.9237677,-0.9237677,-0.92578393,-0.92780006,-0.9284721,-0.928741,-0.92739683,-0.9244398,-0.922558,-0.9212139,-0.9186601,-0.91771924,-0.9197354,-0.9210795,-0.91960096,-0.9185257,-0.9197354,-0.92188597,-0.92323005,-0.9245742,-0.92753124,-0.92981625,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.93008506,-0.92981625,-0.92981625,-0.92981625,-0.92780006,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9302195,-0.9292786,-0.9295474,-0.9302195,-0.92995065,-0.93008506,-0.93008506,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.93008506,-0.93008506,-0.9303539,-0.9304883,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.93008506,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.92995065,-0.92995065,-0.92995065,-0.9291442,-0.9282033,-0.9255151,-0.92296124,-0.92309564,-0.9244398,-0.9244398,-0.92309564,-0.9224236,-0.9241709,-0.92753124,-0.9291442,-0.9268592,-0.922558,-0.92134833,-0.92323005,-0.9239021,-0.92296124,-0.922558,-0.92296124,-0.92296124,-0.92296124,-0.9226924,-0.922558,-0.9228268,-0.92309564,-0.92309564,-0.9228268,-0.922558,-0.9226924,-0.92296124,-0.9228268,-0.92296124,-0.92309564,-0.9226924,-0.9222892,-0.9224236,-0.9228268,-0.92296124,-0.9228268,-0.92296124,-0.92309564,-0.92323005,-0.92349887,-0.92349887,-0.92349887,-0.92349887,-0.92336446,-0.92323005,-0.92296124,-0.9228268,-0.9226924,-0.922558,-0.9224236,-0.9222892,-0.9222892,-0.9220204,-0.92188597,-0.9220204,-0.92175156,-0.9212139,-0.9208107,-0.9205419,-0.9206763,-0.9212139,-0.92148274,-0.92161715,-0.9220204,-0.922558,-0.922558,-0.9224236,-0.9221548,-0.9220204,-0.92175156,-0.92161715,-0.92134833,-0.92134833,-0.92148274,-0.92134833,-0.92134833,-0.92134833,-0.92148274,-0.92148274,-0.92161715,-0.92148274,-0.9212139,-0.9212139,-0.92148274,-0.92175156,-0.92161715,-0.92134833,-0.9212139,-0.9212139,-0.92148274,-0.92134833,-0.9212139,-0.9212139,-0.92134833,-0.92134833,-0.92161715,-0.92175156,-0.92188597,-0.9221548,-0.9224236,-0.9224236,-0.9221548,-0.9220204,-0.92188597,-0.92175156,-0.92148274,-0.92134833,-0.9212139,-0.9212139,-0.9210795,-0.9210795,-0.92148274,-0.92175156,-0.92161715,-0.92148274,-0.92161715,-0.92161715,-0.92161715,-0.92175156,-0.9220204,-0.9221548,-0.9221548,-0.9224236,-0.922558,-0.9222892,-0.9221548,-0.9221548,-0.9222892,-0.922558,-0.9226924,-0.9224236,-0.9224236,-0.9226924,-0.92309564,-0.92309564,-0.92296124,-0.92296124,-0.92296124,-0.92309564,-0.92323005,-0.92323005,-0.92309564,-0.92336446,-0.92336446,-0.92336446,-0.92349887,-0.9236333,-0.9239021,-0.9241709,-0.9236333,-0.92323005,-0.9251119,-0.92780006,-0.9283377,-0.92860657,-0.9280689,-0.9252463,-0.9228268,-0.92148274,-0.9187945,-0.9170472,-0.9189289,-0.9208107,-0.9198698,-0.9182569,-0.9187945,-0.9209451,-0.9226924,-0.9241709,-0.9269936,-0.92968184,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9302195,-0.92995065,-0.92995065,-0.92995065,-0.9292786,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9302195,-0.9295474,-0.92981625,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9303539,-0.9303539,-0.93008506,-0.9302195,-0.9302195,-0.92995065,-0.92995065,-0.92995065,-0.9292786,-0.9282033,-0.9253807,-0.92296124,-0.92296124,-0.9241709,-0.9243054,-0.92323005,-0.9226924,-0.9245742,-0.92780006,-0.9288754,-0.926456,-0.9239021,-0.92323005,-0.9236333,-0.92349887,-0.92323005,-0.92309564,-0.92296124,-0.92309564,-0.92309564,-0.92296124,-0.922558,-0.9226924,-0.9228268,-0.9228268,-0.92296124,-0.92296124,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.92296124,-0.9228268,-0.922558,-0.9224236,-0.9226924,-0.92296124,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92323005,-0.92349887,-0.92349887,-0.92349887,-0.92336446,-0.92309564,-0.92296124,-0.9228268,-0.9226924,-0.9226924,-0.922558,-0.9224236,-0.9222892,-0.9222892,-0.9221548,-0.92188597,-0.92148274,-0.92134833,-0.9212139,-0.9208107,-0.9206763,-0.9212139,-0.92175156,-0.92161715,-0.92175156,-0.9222892,-0.922558,-0.9224236,-0.9222892,-0.9221548,-0.92188597,-0.92161715,-0.92148274,-0.92148274,-0.92148274,-0.92134833,-0.9212139,-0.92134833,-0.92134833,-0.92134833,-0.92148274,-0.92148274,-0.9210795,-0.9210795,-0.92161715,-0.92175156,-0.92148274,-0.92134833,-0.92134833,-0.92134833,-0.92134833,-0.92134833,-0.92134833,-0.9212139,-0.92134833,-0.92134833,-0.92148274,-0.92175156,-0.92188597,-0.9221548,-0.922558,-0.9224236,-0.9222892,-0.9220204,-0.9220204,-0.9220204,-0.92161715,-0.9212139,-0.9210795,-0.9212139,-0.9210795,-0.9212139,-0.92134833,-0.92148274,-0.92148274,-0.92161715,-0.92175156,-0.92161715,-0.92175156,-0.92188597,-0.9220204,-0.9221548,-0.9222892,-0.9224236,-0.9222892,-0.9220204,-0.92188597,-0.9220204,-0.9221548,-0.922558,-0.9226924,-0.922558,-0.9224236,-0.9226924,-0.92296124,-0.92309564,-0.92309564,-0.92309564,-0.92323005,-0.92323005,-0.92336446,-0.92336446,-0.92309564,-0.92323005,-0.92336446,-0.92323005,-0.92336446,-0.92336446,-0.9237677,-0.9244398,-0.92349887,-0.92175156,-0.9237677,-0.92780006,-0.9288754,-0.92860657,-0.9284721,-0.92591834,-0.92296124,-0.92188597,-0.9197354,-0.9174504,-0.9185257,-0.92027307,-0.91946656,-0.91798806,-0.9181225,-0.92027307,-0.9224236,-0.9239021,-0.9267248,-0.92968184,-0.9302195,-0.9302195,-0.9302195,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.93008506,-0.9290098,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9295474,-0.928741,-0.9295474,-0.92981625,-0.92995065,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.93008506,-0.93008506,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.93008506,-0.92981625,-0.9291442,-0.92793447,-0.9252463,-0.92296124,-0.92309564,-0.9243054,-0.9244398,-0.92336446,-0.92309564,-0.9252463,-0.9280689,-0.9283377,-0.92591834,-0.92349887,-0.92323005,-0.9237677,-0.9236333,-0.92336446,-0.92323005,-0.92309564,-0.92309564,-0.92309564,-0.92296124,-0.9228268,-0.9226924,-0.9228268,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9226924,-0.922558,-0.922558,-0.9228268,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.92323005,-0.92349887,-0.92349887,-0.92336446,-0.92323005,-0.92309564,-0.9228268,-0.9228268,-0.9226924,-0.9226924,-0.922558,-0.9224236,-0.9224236,-0.9224236,-0.9220204,-0.92161715,-0.92148274,-0.92134833,-0.9210795,-0.9209451,-0.9209451,-0.92134833,-0.92161715,-0.92175156,-0.92161715,-0.92188597,-0.9222892,-0.9224236,-0.9222892,-0.9221548,-0.9220204,-0.92175156,-0.92148274,-0.92134833,-0.92134833,-0.92148274,-0.92134833,-0.92134833,-0.92134833,-0.92134833,-0.92148274,-0.92148274,-0.92134833,-0.9212139,-0.92161715,-0.92161715,-0.92134833,-0.92134833,-0.92148274,-0.92134833,-0.92134833,-0.92148274,-0.92148274,-0.92134833,-0.92134833,-0.92148274,-0.92134833,-0.92161715,-0.9220204,-0.9224236,-0.922558,-0.9224236,-0.9222892,-0.9220204,-0.92175156,-0.92175156,-0.92175156,-0.92134833,-0.9210795,-0.9212139,-0.9212139,-0.9212139,-0.92134833,-0.92148274,-0.92161715,-0.92161715,-0.92148274,-0.92161715,-0.92175156,-0.9220204,-0.9220204,-0.9220204,-0.9222892,-0.9224236,-0.9222892,-0.9220204,-0.92188597,-0.92188597,-0.9221548,-0.9224236,-0.922558,-0.9224236,-0.922558,-0.9226924,-0.9228268,-0.92309564,-0.92309564,-0.92309564,-0.92323005,-0.92323005,-0.92323005,-0.92309564,-0.92309564,-0.92323005,-0.92309564,-0.92296124,-0.92336446,-0.92349887,-0.92349887,-0.9244398,-0.9236333,-0.9205419,-0.9212139,-0.926456,-0.9290098,-0.928741,-0.9282033,-0.92578393,-0.9228268,-0.9221548,-0.9210795,-0.9185257,-0.9185257,-0.9204075,-0.92013866,-0.9185257,-0.9186601,-0.9206763,-0.922558,-0.9239021,-0.9265904,-0.92968184,-0.9302195,-0.9303539,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9304883,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.9291442,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9292786,-0.9282033,-0.9292786,-0.92995065,-0.92995065,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.92968184,-0.9291442,-0.92753124,-0.9247086,-0.9226924,-0.92296124,-0.9241709,-0.9240365,-0.92296124,-0.92296124,-0.9253807,-0.9283377,-0.9280689,-0.9252463,-0.92336446,-0.92336446,-0.9237677,-0.92349887,-0.92323005,-0.92323005,-0.92309564,-0.92296124,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.92296124,-0.92296124,-0.9228268,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.922558,-0.9224236,-0.9226924,-0.9228268,-0.9228268,-0.9228268,-0.92296124,-0.92296124,-0.92309564,-0.92336446,-0.92349887,-0.92336446,-0.92323005,-0.92309564,-0.9228268,-0.9226924,-0.9226924,-0.922558,-0.9224236,-0.9224236,-0.9222892,-0.9221548,-0.9220204,-0.92188597,-0.92134833,-0.9208107,-0.9205419,-0.9209451,-0.92134833,-0.92148274,-0.92148274,-0.92161715,-0.92188597,-0.9221548,-0.9222892,-0.9222892,-0.9221548,-0.9220204,-0.92175156,-0.92175156,-0.92148274,-0.92148274,-0.92148274,-0.92148274,-0.92134833,-0.9212139,-0.92134833,-0.92148274,-0.92148274,-0.92148274,-0.92134833,-0.92134833,-0.92148274,-0.92148274,-0.92134833,-0.9212139,-0.9212139,-0.9212139,-0.9212139,-0.92134833,-0.92148274,-0.92134833,-0.92134833,-0.92134833,-0.92134833,-0.92175156,-0.9221548,-0.9222892,-0.9221548,-0.9221548,-0.9221548,-0.92188597,-0.92161715,-0.92148274,-0.92161715,-0.92161715,-0.92134833,-0.9212139,-0.9212139,-0.9212139,-0.92134833,-0.92161715,-0.92161715,-0.92161715,-0.92161715,-0.92161715,-0.92175156,-0.92188597,-0.92188597,-0.9220204,-0.9222892,-0.9224236,-0.9221548,-0.9220204,-0.9220204,-0.9220204,-0.9221548,-0.9224236,-0.9224236,-0.922558,-0.9226924,-0.9228268,-0.9228268,-0.92296124,-0.92296124,-0.92296124,-0.92309564,-0.92309564,-0.92296124,-0.92296124,-0.92309564,-0.92323005,-0.92309564,-0.92323005,-0.92349887,-0.92349887,-0.92336446,-0.9241709,-0.9237677,-0.9205419,-0.92027307,-0.9253807,-0.9290098,-0.9291442,-0.9284721,-0.92618716,-0.92296124,-0.9221548,-0.92175156,-0.91960096,-0.9190633,-0.9204075,-0.92013866,-0.9185257,-0.9185257,-0.9204075,-0.9222892,-0.9236333,-0.926456,-0.9295474,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.92981625,-0.928741,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9292786,-0.928741,-0.92968184,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9303539,-0.92981625,-0.9291442,-0.927128,-0.9240365,-0.9224236,-0.92296124,-0.9240365,-0.9239021,-0.9226924,-0.92309564,-0.92618716,-0.9288754,-0.92793447,-0.9248431,-0.92323005,-0.92336446,-0.92349887,-0.92336446,-0.92336446,-0.92336446,-0.92323005,-0.92309564,-0.92296124,-0.9226924,-0.9226924,-0.9228268,-0.9228268,-0.9226924,-0.922558,-0.9224236,-0.9220204,-0.9221548,-0.922558,-0.922558,-0.9222892,-0.9224236,-0.9224236,-0.9224236,-0.9224236,-0.9226924,-0.92296124,-0.92296124,-0.92309564,-0.92323005,-0.92323005,-0.92323005,-0.92336446,-0.92323005,-0.92309564,-0.92296124,-0.9228268,-0.9228268,-0.9226924,-0.9224236,-0.9224236,-0.9224236,-0.9222892,-0.9220204,-0.92175156,-0.92148274,-0.9210795,-0.9206763,-0.9208107,-0.9212139,-0.92148274,-0.92134833,-0.9212139,-0.92134833,-0.92175156,-0.9220204,-0.9221548,-0.9222892,-0.9221548,-0.9220204,-0.92175156,-0.92161715,-0.92148274,-0.92134833,-0.9212139,-0.9212139,-0.92134833,-0.9212139,-0.92134833,-0.92148274,-0.92148274,-0.92148274,-0.92148274,-0.92148274,-0.92148274,-0.92148274,-0.92148274,-0.92148274,-0.92134833,-0.9212139,-0.92134833,-0.92148274,-0.92148274,-0.92161715,-0.92161715,-0.92148274,-0.92148274,-0.9220204,-0.9222892,-0.9221548,-0.92188597,-0.92188597,-0.92188597,-0.92188597,-0.92161715,-0.92148274,-0.92134833,-0.92148274,-0.92134833,-0.9212139,-0.9212139,-0.9212139,-0.92134833,-0.92161715,-0.92175156,-0.92161715,-0.92175156,-0.92188597,-0.9220204,-0.92188597,-0.9220204,-0.9222892,-0.9224236,-0.9222892,-0.9221548,-0.9220204,-0.9220204,-0.9220204,-0.9221548,-0.9222892,-0.9224236,-0.922558,-0.9226924,-0.9226924,-0.9228268,-0.92309564,-0.92323005,-0.92323005,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.92309564,-0.92323005,-0.92323005,-0.92336446,-0.92349887,-0.9236333,-0.9236333,-0.9240365,-0.9237677,-0.92161715,-0.9212139,-0.9251119,-0.928741,-0.9291442,-0.92860657,-0.9267248,-0.92336446,-0.9221548,-0.92188597,-0.9204075,-0.9197354,-0.9205419,-0.9205419,-0.91933215,-0.9190633,-0.92013866,-0.92161715,-0.92336446,-0.926456,-0.9295474,-0.93008506,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.93008506,-0.9302195,-0.92995065,-0.9292786,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9288754,-0.9283377,-0.92981625,-0.92968184,-0.92981625,-0.92995065,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.9302195,-0.93008506,-0.9292786,-0.927128,-0.9240365,-0.922558,-0.92323005,-0.9241709,-0.9236333,-0.922558,-0.9237677,-0.92739683,-0.9292786,-0.9272624,-0.9243054,-0.92323005,-0.92349887,-0.92349887,-0.92323005,-0.92323005,-0.92336446,-0.92323005,-0.92309564,-0.9228268,-0.9226924,-0.9226924,-0.9226924,-0.9228268,-0.9228268,-0.922558,-0.9221548,-0.9221548,-0.9226924,-0.92296124,-0.9226924,-0.9222892,-0.9222892,-0.922558,-0.9222892,-0.9222892,-0.9228268,-0.92336446,-0.92323005,-0.92309564,-0.92309564,-0.92323005,-0.92323005,-0.92323005,-0.92309564,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.922558,-0.9224236,-0.9224236,-0.9222892,-0.92175156,-0.92161715,-0.92148274,-0.9212139,-0.9212139,-0.9212139,-0.9212139,-0.9212139,-0.9212139,-0.9210795,-0.92134833,-0.92161715,-0.92175156,-0.9220204,-0.92188597,-0.92175156,-0.92161715,-0.92161715,-0.92161715,-0.92161715,-0.92148274,-0.92148274,-0.92134833,-0.92134833,-0.92134833,-0.92148274,-0.92134833,-0.92134833,-0.92134833,-0.92148274,-0.92148274,-0.92161715,-0.92148274,-0.92148274,-0.92148274,-0.92134833,-0.92134833,-0.92134833,-0.92148274,-0.92161715,-0.92175156,-0.92175156,-0.92161715,-0.92148274,-0.92175156,-0.9220204,-0.9220204,-0.92188597,-0.92175156,-0.92148274,-0.92148274,-0.92161715,-0.92161715,-0.92134833,-0.92134833,-0.9212139,-0.9210795,-0.9210795,-0.9212139,-0.92134833,-0.92148274,-0.92148274,-0.92148274,-0.92161715,-0.9220204,-0.9221548,-0.9221548,-0.9222892,-0.922558,-0.922558,-0.9222892,-0.9220204,-0.92188597,-0.9220204,-0.9220204,-0.9221548,-0.9222892,-0.922558,-0.922558,-0.922558,-0.9226924,-0.9228268,-0.92309564,-0.92309564,-0.92309564,-0.92296124,-0.92296124,-0.92309564,-0.92309564,-0.92309564,-0.92323005,-0.92336446,-0.92349887,-0.9236333,-0.9237677,-0.9237677,-0.9239021,-0.9239021,-0.92323005,-0.9236333,-0.92618716,-0.928741,-0.929413,-0.9288754,-0.9269936,-0.9237677,-0.9222892,-0.9221548,-0.9210795,-0.92027307,-0.9205419,-0.9208107,-0.9208107,-0.9205419,-0.9205419,-0.9212139,-0.92323005,-0.9265904,-0.929413,-0.93008506,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.9303539,-0.92995065,-0.9295474,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9282033,-0.92793447,-0.93008506,-0.92981625,-0.9302195,-0.9304883,-0.93008506,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9304883,-0.92995065,-0.9288754,-0.9269936,-0.9236333,-0.9224236,-0.9236333,-0.9245742,-0.92349887,-0.9224236,-0.9244398,-0.9284721,-0.929413,-0.926456,-0.9236333,-0.92323005,-0.92349887,-0.92349887,-0.92323005,-0.92309564,-0.92336446,-0.92336446,-0.92296124,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.9228268,-0.9228268,-0.9226924,-0.922558,-0.922558,-0.9226924,-0.9228268,-0.9228268,-0.922558,-0.9224236,-0.9222892,-0.9222892,-0.922558,-0.92296124,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92296124,-0.92296124,-0.92309564,-0.92309564,-0.92296124,-0.9228268,-0.9228268,-0.9228268,-0.9226924,-0.922558,-0.9224236,-0.9222892,-0.9221548,-0.92161715,-0.9212139,-0.92148274,-0.92188597,-0.92175156,-0.92161715,-0.92161715,-0.92175156,-0.92161715,-0.92134833,-0.92134833,-0.92161715,-0.92175156,-0.92175156,-0.92175156,-0.92148274,-0.92134833,-0.92148274,-0.92175156,-0.92175156,-0.92175156,-0.92161715,-0.92148274,-0.92134833,-0.92134833,-0.92148274,-0.92134833,-0.92134833,-0.92134833,-0.92134833,-0.92161715,-0.92175156,-0.92161715,-0.92148274,-0.92134833,-0.92134833,-0.92134833,-0.92148274,-0.92148274,-0.92134833,-0.92148274,-0.92148274,-0.92148274,-0.92148274,-0.92148274,-0.92175156,-0.92175156,-0.92175156,-0.92175156,-0.92134833,-0.9212139,-0.92134833,-0.92148274,-0.92134833,-0.92134833,-0.92148274,-0.9212139,-0.9210795,-0.9210795,-0.92134833,-0.92148274,-0.92148274,-0.92161715,-0.92188597,-0.9220204,-0.9220204,-0.9220204,-0.9224236,-0.922558,-0.9222892,-0.92188597,-0.92175156,-0.92188597,-0.9220204,-0.9220204,-0.9220204,-0.9222892,-0.922558,-0.922558,-0.922558,-0.9226924,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.92296124,-0.92309564,-0.92323005,-0.92323005,-0.92309564,-0.92296124,-0.92336446,-0.9237677,-0.9239021,-0.9237677,-0.9236333,-0.9237677,-0.9240365,-0.9240365,-0.9247086,-0.926456,-0.9284721,-0.92968184,-0.929413,-0.927128,-0.9240365,-0.922558,-0.9222892,-0.9210795,-0.92027307,-0.9210795,-0.9212139,-0.9204075,-0.92013866,-0.9206763,-0.92148274,-0.92349887,-0.9268592,-0.929413,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.92995065,-0.9295474,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9280689,-0.92753124,-0.92995065,-0.9292786,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9302195,-0.93008506,-0.93008506,-0.9303539,-0.93008506,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.92995065,-0.9288754,-0.9265904,-0.92309564,-0.9220204,-0.92349887,-0.9245742,-0.9236333,-0.9226924,-0.9248431,-0.928741,-0.9292786,-0.92591834,-0.92323005,-0.92323005,-0.9236333,-0.92349887,-0.92336446,-0.92323005,-0.92296124,-0.92296124,-0.92296124,-0.9226924,-0.922558,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.922558,-0.9226924,-0.9226924,-0.922558,-0.922558,-0.9228268,-0.9228268,-0.9226924,-0.9224236,-0.9224236,-0.922558,-0.9226924,-0.9228268,-0.92296124,-0.92309564,-0.92309564,-0.92296124,-0.9228268,-0.92296124,-0.92309564,-0.92296124,-0.9228268,-0.922558,-0.922558,-0.922558,-0.922558,-0.9222892,-0.9220204,-0.9220204,-0.92175156,-0.9212139,-0.92175156,-0.9222892,-0.92175156,-0.92175156,-0.9228268,-0.92323005,-0.9221548,-0.92134833,-0.92134833,-0.92161715,-0.92161715,-0.92161715,-0.92175156,-0.92175156,-0.92148274,-0.92161715,-0.92175156,-0.92175156,-0.92161715,-0.92161715,-0.92148274,-0.92134833,-0.92134833,-0.92134833,-0.92148274,-0.92148274,-0.92148274,-0.92148274,-0.92175156,-0.9220204,-0.92175156,-0.92148274,-0.92148274,-0.92161715,-0.92148274,-0.92148274,-0.92161715,-0.92161715,-0.92148274,-0.92148274,-0.92161715,-0.92148274,-0.92161715,-0.92175156,-0.92175156,-0.92161715,-0.92161715,-0.92134833,-0.9210795,-0.9210795,-0.9212139,-0.92134833,-0.92161715,-0.92175156,-0.92161715,-0.9212139,-0.9210795,-0.9212139,-0.92134833,-0.92148274,-0.92161715,-0.92188597,-0.92188597,-0.92188597,-0.9220204,-0.9222892,-0.9224236,-0.9220204,-0.92175156,-0.92175156,-0.92188597,-0.92188597,-0.92188597,-0.9220204,-0.9224236,-0.922558,-0.922558,-0.922558,-0.9228268,-0.92309564,-0.92309564,-0.92296124,-0.92296124,-0.92296124,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92323005,-0.9236333,-0.9236333,-0.9236333,-0.92349887,-0.9236333,-0.9239021,-0.9239021,-0.9243054,-0.92591834,-0.9282033,-0.9295474,-0.9292786,-0.9269936,-0.9239021,-0.922558,-0.9222892,-0.9212139,-0.9205419,-0.9212139,-0.9212139,-0.92013866,-0.9197354,-0.9205419,-0.92188597,-0.9241709,-0.9272624,-0.9295474,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.92995065,-0.9302195,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.929413,-0.9292786,-0.93008506,-0.92995065,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.93008506,-0.93008506,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.9295474,-0.928741,-0.9256495,-0.9222892,-0.92175156,-0.9236333,-0.9251119,-0.9243054,-0.9228268,-0.9247086,-0.9288754,-0.9295474,-0.92591834,-0.92309564,-0.92336446,-0.9237677,-0.92349887,-0.92336446,-0.92336446,-0.92336446,-0.92323005,-0.92309564,-0.92296124,-0.9228268,-0.9228268,-0.9228268,-0.9226924,-0.9226924,-0.9226924,-0.922558,-0.9226924,-0.9228268,-0.922558,-0.922558,-0.9228268,-0.9228268,-0.9224236,-0.9221548,-0.9222892,-0.9226924,-0.9228268,-0.9228268,-0.92296124,-0.9228268,-0.9228268,-0.9228268,-0.92296124,-0.92296124,-0.92296124,-0.9226924,-0.922558,-0.922558,-0.9224236,-0.9222892,-0.9220204,-0.92161715,-0.92161715,-0.92175156,-0.92161715,-0.9221548,-0.9224236,-0.92161715,-0.92188597,-0.9237677,-0.9241709,-0.9228268,-0.9212139,-0.9210795,-0.92134833,-0.92148274,-0.92148274,-0.92161715,-0.92161715,-0.92175156,-0.92175156,-0.92175156,-0.92161715,-0.92161715,-0.92175156,-0.92175156,-0.92161715,-0.92175156,-0.92175156,-0.92161715,-0.92161715,-0.92148274,-0.92175156,-0.9220204,-0.92188597,-0.92161715,-0.92161715,-0.92161715,-0.92161715,-0.92161715,-0.92161715,-0.92175156,-0.92175156,-0.92175156,-0.92161715,-0.92161715,-0.92175156,-0.92175156,-0.92148274,-0.92148274,-0.92148274,-0.92148274,-0.92134833,-0.9212139,-0.9212139,-0.92134833,-0.92134833,-0.92175156,-0.9220204,-0.92161715,-0.9212139,-0.9212139,-0.9210795,-0.9209451,-0.92134833,-0.92188597,-0.92188597,-0.92175156,-0.92188597,-0.9221548,-0.9222892,-0.9222892,-0.9220204,-0.9220204,-0.92188597,-0.92175156,-0.92175156,-0.92175156,-0.9220204,-0.9224236,-0.922558,-0.922558,-0.922558,-0.9226924,-0.92296124,-0.92309564,-0.92296124,-0.9228268,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.92336446,-0.9236333,-0.9236333,-0.9236333,-0.9236333,-0.9237677,-0.9239021,-0.9240365,-0.9241709,-0.9255151,-0.92793447,-0.92968184,-0.929413,-0.9267248,-0.9236333,-0.9224236,-0.922558,-0.92188597,-0.9210795,-0.9210795,-0.9210795,-0.9204075,-0.9198698,-0.92027307,-0.92188597,-0.9245742,-0.92780006,-0.92968184,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9306227,-0.9306227,-0.9306227,-0.93008506,-0.9284721,-0.92860657,-0.92981625,-0.92981625,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9292786,-0.9282033,-0.9251119,-0.9222892,-0.9221548,-0.9240365,-0.9255151,-0.9245742,-0.92323005,-0.9252463,-0.9291442,-0.929413,-0.92605275,-0.92349887,-0.92349887,-0.9237677,-0.9236333,-0.92349887,-0.92336446,-0.92336446,-0.92336446,-0.92323005,-0.92309564,-0.92296124,-0.92296124,-0.9228268,-0.9228268,-0.9228268,-0.9226924,-0.922558,-0.922558,-0.9226924,-0.9226924,-0.9224236,-0.922558,-0.9226924,-0.9224236,-0.9222892,-0.9222892,-0.9222892,-0.9224236,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.9228268,-0.92296124,-0.9228268,-0.9228268,-0.92296124,-0.9226924,-0.9224236,-0.9222892,-0.9220204,-0.92175156,-0.92148274,-0.92134833,-0.92161715,-0.9221548,-0.9224236,-0.9224236,-0.92161715,-0.92175156,-0.92349887,-0.9239021,-0.92336446,-0.9220204,-0.9212139,-0.9208107,-0.9208107,-0.9210795,-0.92134833,-0.92161715,-0.92175156,-0.92161715,-0.92161715,-0.92175156,-0.92175156,-0.92188597,-0.9220204,-0.92188597,-0.92188597,-0.92188597,-0.92175156,-0.92148274,-0.92134833,-0.92175156,-0.9221548,-0.9220204,-0.92161715,-0.92148274,-0.92175156,-0.92188597,-0.92188597,-0.92188597,-0.92175156,-0.92175156,-0.92188597,-0.92175156,-0.92161715,-0.92161715,-0.92148274,-0.9212139,-0.9212139,-0.92148274,-0.92134833,-0.9212139,-0.92134833,-0.92148274,-0.92134833,-0.92148274,-0.92175156,-0.92188597,-0.92161715,-0.9210795,-0.9210795,-0.9212139,-0.9209451,-0.9208107,-0.92161715,-0.9221548,-0.9220204,-0.92188597,-0.9220204,-0.9220204,-0.92188597,-0.92188597,-0.9220204,-0.92188597,-0.92175156,-0.92175156,-0.92188597,-0.9221548,-0.9224236,-0.9224236,-0.9224236,-0.9226924,-0.9228268,-0.9226924,-0.9226924,-0.9228268,-0.9228268,-0.92296124,-0.92296124,-0.9228268,-0.9228268,-0.92296124,-0.92309564,-0.92323005,-0.92349887,-0.9236333,-0.9236333,-0.9236333,-0.9237677,-0.9237677,-0.9239021,-0.9241709,-0.9251119,-0.927128,-0.929413,-0.92968184,-0.9268592,-0.92336446,-0.9222892,-0.9228268,-0.9228268,-0.9222892,-0.9220204,-0.92148274,-0.9209451,-0.9208107,-0.9206763,-0.92148274,-0.9245742,-0.9280689,-0.92981625,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.93008506,-0.93008506,-0.93008506,-0.9295474,-0.93008506,-0.9306227,-0.9306227,-0.9306227,-0.9295474,-0.9272624,-0.92766565,-0.92968184,-0.92968184,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9302195,-0.9291442,-0.92780006,-0.9247086,-0.922558,-0.9226924,-0.9241709,-0.9252463,-0.9244398,-0.9236333,-0.9256495,-0.9291442,-0.9292786,-0.92632157,-0.9236333,-0.92323005,-0.92349887,-0.9236333,-0.9236333,-0.92349887,-0.92336446,-0.92336446,-0.92336446,-0.92296124,-0.9228268,-0.92309564,-0.92309564,-0.92296124,-0.9226924,-0.9226924,-0.9228268,-0.9228268,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.9224236,-0.9221548,-0.9221548,-0.9222892,-0.9222892,-0.9224236,-0.922558,-0.922558,-0.9226924,-0.9226924,-0.9228268,-0.92296124,-0.9228268,-0.9228268,-0.922558,-0.9222892,-0.9220204,-0.92188597,-0.92188597,-0.92175156,-0.92161715,-0.92188597,-0.9222892,-0.9221548,-0.9220204,-0.92188597,-0.92188597,-0.9228268,-0.92336446,-0.92323005,-0.9228268,-0.9221548,-0.9208107,-0.92000425,-0.9205419,-0.9210795,-0.92134833,-0.92148274,-0.92148274,-0.92161715,-0.92188597,-0.92175156,-0.92175156,-0.92188597,-0.92175156,-0.92148274,-0.92161715,-0.92188597,-0.92148274,-0.9212139,-0.92161715,-0.9222892,-0.9220204,-0.92148274,-0.92148274,-0.92175156,-0.92175156,-0.92175156,-0.92188597,-0.92188597,-0.92188597,-0.92188597,-0.92175156,-0.92161715,-0.92148274,-0.92134833,-0.9210795,-0.9212139,-0.92161715,-0.92161715,-0.9212139,-0.9210795,-0.9210795,-0.9212139,-0.92161715,-0.9220204,-0.9220204,-0.92175156,-0.9212139,-0.9209451,-0.9210795,-0.9210795,-0.9206763,-0.9209451,-0.92175156,-0.9221548,-0.92188597,-0.92175156,-0.92175156,-0.92188597,-0.9220204,-0.92188597,-0.92175156,-0.92175156,-0.92188597,-0.9220204,-0.9220204,-0.9222892,-0.9222892,-0.9224236,-0.922558,-0.9228268,-0.9228268,-0.9226924,-0.9226924,-0.9226924,-0.9228268,-0.9228268,-0.92296124,-0.92296124,-0.92296124,-0.92309564,-0.92309564,-0.92323005,-0.92336446,-0.92336446,-0.92349887,-0.92349887,-0.9236333,-0.9240365,-0.9243054,-0.9248431,-0.9267248,-0.9292786,-0.92995065,-0.9269936,-0.92336446,-0.9222892,-0.9228268,-0.9228268,-0.9226924,-0.922558,-0.9221548,-0.92188597,-0.92175156,-0.9210795,-0.9212139,-0.9243054,-0.9283377,-0.92981625,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.92995065,-0.93008506,-0.92995065,-0.9292786,-0.9302195,-0.9306227,-0.9306227,-0.9306227,-0.929413,-0.92753124,-0.9283377,-0.92981625,-0.92995065,-0.9303539,-0.9304883,-0.9304883,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.92981625,-0.9290098,-0.92739683,-0.9243054,-0.9222892,-0.9226924,-0.9243054,-0.9252463,-0.9244398,-0.9241709,-0.9267248,-0.92968184,-0.9292786,-0.92632157,-0.9240365,-0.92336446,-0.92323005,-0.92323005,-0.92323005,-0.92349887,-0.92349887,-0.92323005,-0.92296124,-0.92296124,-0.92296124,-0.92309564,-0.92323005,-0.9228268,-0.922558,-0.922558,-0.9226924,-0.9226924,-0.9226924,-0.922558,-0.922558,-0.9226924,-0.9226924,-0.9224236,-0.9221548,-0.9221548,-0.9222892,-0.9222892,-0.9222892,-0.9224236,-0.922558,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.922558,-0.922558,-0.9224236,-0.9220204,-0.92175156,-0.92188597,-0.92188597,-0.92175156,-0.92175156,-0.9220204,-0.9221548,-0.9221548,-0.9220204,-0.9220204,-0.9220204,-0.9221548,-0.922558,-0.9222892,-0.9222892,-0.922558,-0.92161715,-0.9198698,-0.9197354,-0.9206763,-0.9209451,-0.9210795,-0.92148274,-0.92175156,-0.92188597,-0.92188597,-0.92161715,-0.92161715,-0.92148274,-0.92134833,-0.92148274,-0.92161715,-0.92134833,-0.9212139,-0.92161715,-0.9222892,-0.9221548,-0.92175156,-0.92161715,-0.92175156,-0.92161715,-0.92148274,-0.92161715,-0.92161715,-0.92175156,-0.92175156,-0.92161715,-0.92148274,-0.92148274,-0.92134833,-0.9210795,-0.9212139,-0.92188597,-0.9221548,-0.92148274,-0.9208107,-0.9208107,-0.9210795,-0.92175156,-0.9220204,-0.92188597,-0.92175156,-0.92134833,-0.9208107,-0.9209451,-0.92134833,-0.9209451,-0.9208107,-0.92161715,-0.9221548,-0.9220204,-0.92175156,-0.92175156,-0.92188597,-0.92188597,-0.92188597,-0.92175156,-0.92175156,-0.92175156,-0.92188597,-0.9221548,-0.9222892,-0.9224236,-0.9224236,-0.9224236,-0.9224236,-0.9226924,-0.9228268,-0.9228268,-0.922558,-0.922558,-0.9228268,-0.92309564,-0.92309564,-0.9228268,-0.9228268,-0.92323005,-0.92323005,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92349887,-0.9240365,-0.9244398,-0.9249775,-0.9265904,-0.9291442,-0.93008506,-0.9269936,-0.92323005,-0.9222892,-0.922558,-0.9222892,-0.922558,-0.9228268,-0.9222892,-0.92188597,-0.92175156,-0.9209451,-0.9212139,-0.9247086,-0.9291442,-0.92968184,-0.9302195,-0.9302195,-0.9302195,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.93008506,-0.9290098,-0.9303539,-0.9306227,-0.9306227,-0.9306227,-0.9288754,-0.92739683,-0.9288754,-0.92995065,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.93008506,-0.9290098,-0.927128,-0.9241709,-0.9221548,-0.9224236,-0.9241709,-0.9249775,-0.9243054,-0.9243054,-0.927128,-0.92981625,-0.9288754,-0.92605275,-0.9243054,-0.9237677,-0.92349887,-0.92309564,-0.9228268,-0.9226924,-0.92309564,-0.92309564,-0.92296124,-0.9228268,-0.92296124,-0.92309564,-0.92296124,-0.9228268,-0.9228268,-0.9226924,-0.9224236,-0.9224236,-0.922558,-0.922558,-0.922558,-0.9226924,-0.9226924,-0.922558,-0.922558,-0.9224236,-0.9222892,-0.9222892,-0.9222892,-0.9222892,-0.9224236,-0.9226924,-0.9226924,-0.922558,-0.922558,-0.922558,-0.9224236,-0.9222892,-0.92188597,-0.92161715,-0.92175156,-0.92188597,-0.92161715,-0.92175156,-0.9221548,-0.9224236,-0.9221548,-0.92188597,-0.92188597,-0.9220204,-0.92188597,-0.92134833,-0.9208107,-0.9210795,-0.9220204,-0.92148274,-0.91946656,-0.9190633,-0.9205419,-0.92134833,-0.9212139,-0.92148274,-0.92188597,-0.92188597,-0.92175156,-0.92148274,-0.92134833,-0.92134833,-0.92134833,-0.92134833,-0.92134833,-0.92134833,-0.92134833,-0.92175156,-0.9220204,-0.92161715,-0.9212139,-0.92148274,-0.92161715,-0.92161715,-0.92148274,-0.92148274,-0.92161715,-0.92188597,-0.92188597,-0.92175156,-0.92161715,-0.92161715,-0.92134833,-0.9209451,-0.92148274,-0.922558,-0.9226924,-0.92148274,-0.9206763,-0.9206763,-0.9212139,-0.92161715,-0.92161715,-0.92161715,-0.92175156,-0.92148274,-0.9209451,-0.9210795,-0.92134833,-0.9210795,-0.9210795,-0.92175156,-0.9222892,-0.9220204,-0.92175156,-0.92175156,-0.92161715,-0.92161715,-0.92188597,-0.9220204,-0.92188597,-0.92175156,-0.9220204,-0.9221548,-0.9222892,-0.9222892,-0.9222892,-0.9224236,-0.9224236,-0.9224236,-0.9224236,-0.922558,-0.9226924,-0.9226924,-0.9228268,-0.92296124,-0.92296124,-0.92296124,-0.9228268,-0.92296124,-0.92309564,-0.92323005,-0.92323005,-0.92336446,-0.92336446,-0.9236333,-0.9239021,-0.9240365,-0.9244398,-0.92591834,-0.9290098,-0.93008506,-0.92739683,-0.92349887,-0.9221548,-0.9220204,-0.92175156,-0.9224236,-0.9228268,-0.9221548,-0.92175156,-0.92175156,-0.9210795,-0.9220204,-0.92591834,-0.92981625,-0.92981625,-0.9304883,-0.9303539,-0.9302195,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9295474,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9288754,-0.92739683,-0.9290098,-0.92995065,-0.92995065,-0.93008506,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.92995065,-0.9290098,-0.9268592,-0.9240365,-0.9224236,-0.9226924,-0.9241709,-0.9248431,-0.9243054,-0.9245742,-0.92739683,-0.92981625,-0.92860657,-0.92578393,-0.9241709,-0.9239021,-0.9236333,-0.92349887,-0.92349887,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92296124,-0.92309564,-0.92323005,-0.92309564,-0.9226924,-0.9224236,-0.9224236,-0.922558,-0.922558,-0.9224236,-0.9222892,-0.9224236,-0.9224236,-0.9224236,-0.9224236,-0.9222892,-0.9222892,-0.9224236,-0.922558,-0.922558,-0.922558,-0.922558,-0.9224236,-0.9224236,-0.9221548,-0.92188597,-0.92175156,-0.92188597,-0.92175156,-0.92148274,-0.92175156,-0.9222892,-0.9224236,-0.9220204,-0.92188597,-0.92188597,-0.9220204,-0.92188597,-0.92148274,-0.9208107,-0.9204075,-0.9206763,-0.9212139,-0.92027307,-0.91933215,-0.9198698,-0.9210795,-0.92134833,-0.92134833,-0.92161715,-0.92175156,-0.92161715,-0.92161715,-0.92148274,-0.92134833,-0.92134833,-0.92148274,-0.92148274,-0.92148274,-0.92175156,-0.92188597,-0.92161715,-0.9212139,-0.9212139,-0.92134833,-0.92161715,-0.92161715,-0.92161715,-0.92161715,-0.92175156,-0.92188597,-0.92188597,-0.92175156,-0.92175156,-0.92148274,-0.92134833,-0.92161715,-0.9221548,-0.9222892,-0.9221548,-0.92161715,-0.9212139,-0.92134833,-0.92161715,-0.92175156,-0.92161715,-0.92161715,-0.92175156,-0.92161715,-0.9209451,-0.9209451,-0.92134833,-0.9212139,-0.9210795,-0.92148274,-0.9220204,-0.92188597,-0.92161715,-0.92161715,-0.92175156,-0.92175156,-0.92175156,-0.92188597,-0.92175156,-0.92161715,-0.92175156,-0.9221548,-0.9222892,-0.9222892,-0.9222892,-0.9224236,-0.9224236,-0.9224236,-0.922558,-0.9226924,-0.9226924,-0.9226924,-0.9228268,-0.92296124,-0.92296124,-0.92309564,-0.92309564,-0.92323005,-0.92323005,-0.92336446,-0.92349887,-0.9236333,-0.9236333,-0.9239021,-0.9239021,-0.9239021,-0.9243054,-0.92591834,-0.928741,-0.92995065,-0.92753124,-0.9237677,-0.9222892,-0.9220204,-0.92161715,-0.9222892,-0.9228268,-0.922558,-0.9224236,-0.9222892,-0.92188597,-0.92296124,-0.9265904,-0.92995065,-0.92981625,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.93008506,-0.93008506,-0.92968184,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92860657,-0.92793447,-0.92968184,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9292786,-0.9269936,-0.9243054,-0.9228268,-0.92296124,-0.9243054,-0.9249775,-0.9243054,-0.9247086,-0.92766565,-0.92968184,-0.9283377,-0.9255151,-0.9241709,-0.9239021,-0.9237677,-0.9236333,-0.9236333,-0.9236333,-0.92336446,-0.92296124,-0.92296124,-0.92309564,-0.92309564,-0.92309564,-0.92323005,-0.92323005,-0.92309564,-0.92309564,-0.92309564,-0.9228268,-0.9226924,-0.922558,-0.9224236,-0.9224236,-0.9224236,-0.9222892,-0.9222892,-0.9224236,-0.9224236,-0.9224236,-0.9222892,-0.9222892,-0.9224236,-0.9224236,-0.9224236,-0.922558,-0.9224236,-0.9224236,-0.9224236,-0.9221548,-0.92188597,-0.92188597,-0.92188597,-0.92175156,-0.92134833,-0.92148274,-0.9220204,-0.9222892,-0.9221548,-0.9220204,-0.92188597,-0.92188597,-0.92188597,-0.92175156,-0.92161715,-0.9210795,-0.92027307,-0.9205419,-0.9210795,-0.92013866,-0.91933215,-0.92013866,-0.9212139,-0.92161715,-0.92148274,-0.92148274,-0.92148274,-0.92134833,-0.92134833,-0.92134833,-0.92134833,-0.92148274,-0.92161715,-0.92175156,-0.9220204,-0.9220204,-0.92175156,-0.92148274,-0.92148274,-0.92175156,-0.92175156,-0.92161715,-0.92161715,-0.92175156,-0.92175156,-0.92175156,-0.92175156,-0.92188597,-0.92161715,-0.92161715,-0.9221548,-0.9222892,-0.92175156,-0.9210795,-0.9209451,-0.92134833,-0.92148274,-0.92148274,-0.92148274,-0.92148274,-0.92148274,-0.92148274,-0.92175156,-0.92161715,-0.9212139,-0.9208107,-0.9210795,-0.92134833,-0.9210795,-0.92134833,-0.92175156,-0.92188597,-0.92188597,-0.92188597,-0.92175156,-0.92161715,-0.92161715,-0.92161715,-0.92161715,-0.92175156,-0.9220204,-0.9222892,-0.9224236,-0.9224236,-0.9224236,-0.9222892,-0.9222892,-0.922558,-0.9228268,-0.9228268,-0.9226924,-0.9226924,-0.92296124,-0.92309564,-0.92309564,-0.92309564,-0.92323005,-0.92336446,-0.92336446,-0.92336446,-0.9236333,-0.9237677,-0.9237677,-0.9240365,-0.9241709,-0.9239021,-0.9241709,-0.92591834,-0.928741,-0.92995065,-0.92739683,-0.92349887,-0.9220204,-0.9224236,-0.922558,-0.9226924,-0.92296124,-0.922558,-0.922558,-0.9228268,-0.922558,-0.92336446,-0.9265904,-0.92968184,-0.92981625,-0.9303539,-0.9303539,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.92995065,-0.92981625,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92739683,-0.9265904,-0.9295474,-0.92968184,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.929413,-0.9268592,-0.9240365,-0.9226924,-0.92309564,-0.9244398,-0.9252463,-0.9243054,-0.9248431,-0.9280689,-0.92968184,-0.92793447,-0.9253807,-0.9243054,-0.9240365,-0.9237677,-0.9236333,-0.9236333,-0.92349887,-0.92323005,-0.92296124,-0.9228268,-0.9228268,-0.92296124,-0.92296124,-0.92309564,-0.92323005,-0.92323005,-0.92296124,-0.9228268,-0.9228268,-0.9226924,-0.922558,-0.922558,-0.922558,-0.922558,-0.9224236,-0.9224236,-0.922558,-0.922558,-0.9224236,-0.9222892,-0.9222892,-0.9224236,-0.9224236,-0.9224236,-0.922558,-0.922558,-0.9222892,-0.9220204,-0.92188597,-0.92175156,-0.92175156,-0.92175156,-0.92148274,-0.9212139,-0.92161715,-0.9221548,-0.9221548,-0.9221548,-0.9221548,-0.9220204,-0.92188597,-0.92188597,-0.92188597,-0.92175156,-0.92134833,-0.9209451,-0.9209451,-0.92134833,-0.9209451,-0.91960096,-0.91933215,-0.9204075,-0.92148274,-0.92148274,-0.9212139,-0.9212139,-0.9212139,-0.9212139,-0.92134833,-0.92161715,-0.92175156,-0.92175156,-0.92188597,-0.92188597,-0.92175156,-0.92134833,-0.9208107,-0.9208107,-0.92134833,-0.92161715,-0.92161715,-0.92161715,-0.92175156,-0.92161715,-0.92161715,-0.92148274,-0.92134833,-0.92148274,-0.9220204,-0.9221548,-0.92134833,-0.9205419,-0.9205419,-0.9210795,-0.92148274,-0.92148274,-0.9212139,-0.92134833,-0.92148274,-0.92148274,-0.92161715,-0.92175156,-0.92175156,-0.92134833,-0.9208107,-0.9208107,-0.9209451,-0.9208107,-0.9209451,-0.92161715,-0.9220204,-0.9220204,-0.92175156,-0.92175156,-0.92148274,-0.92134833,-0.92148274,-0.92161715,-0.92175156,-0.9221548,-0.9226924,-0.9226924,-0.922558,-0.9224236,-0.9222892,-0.9222892,-0.9224236,-0.922558,-0.9226924,-0.9228268,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.92309564,-0.92323005,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92349887,-0.9236333,-0.9240365,-0.9243054,-0.9240365,-0.9243054,-0.92618716,-0.9288754,-0.93008506,-0.92739683,-0.92323005,-0.92161715,-0.922558,-0.92309564,-0.92323005,-0.92323005,-0.9226924,-0.9224236,-0.9226924,-0.9226924,-0.9237677,-0.9269936,-0.92968184,-0.92995065,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.92981625,-0.92981625,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9272624,-0.9269936,-0.93008506,-0.9292786,-0.9302195,-0.9302195,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9295474,-0.9268592,-0.9237677,-0.922558,-0.92296124,-0.9241709,-0.9249775,-0.9243054,-0.9247086,-0.92793447,-0.92981625,-0.92793447,-0.9251119,-0.9244398,-0.9241709,-0.9239021,-0.9236333,-0.9236333,-0.92349887,-0.92336446,-0.92309564,-0.92296124,-0.92296124,-0.92309564,-0.9228268,-0.9226924,-0.9228268,-0.92296124,-0.92309564,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.9228268,-0.9226924,-0.9226924,-0.922558,-0.922558,-0.922558,-0.9226924,-0.9224236,-0.9221548,-0.9222892,-0.9224236,-0.9224236,-0.9224236,-0.9224236,-0.922558,-0.922558,-0.9220204,-0.92134833,-0.9212139,-0.92148274,-0.92161715,-0.92134833,-0.9212139,-0.92175156,-0.9222892,-0.9222892,-0.9220204,-0.9220204,-0.9220204,-0.9220204,-0.92188597,-0.92175156,-0.92161715,-0.92148274,-0.92148274,-0.92134833,-0.92134833,-0.92175156,-0.92134833,-0.92027307,-0.9197354,-0.92027307,-0.9208107,-0.9210795,-0.9210795,-0.92134833,-0.92148274,-0.92148274,-0.92148274,-0.92175156,-0.9220204,-0.92161715,-0.9209451,-0.9208107,-0.9208107,-0.92000425,-0.91960096,-0.9206763,-0.92148274,-0.92148274,-0.92134833,-0.92148274,-0.92134833,-0.9206763,-0.9205419,-0.92148274,-0.9226924,-0.9221548,-0.9208107,-0.92013866,-0.9205419,-0.9210795,-0.92148274,-0.92148274,-0.92134833,-0.92134833,-0.92148274,-0.92161715,-0.92175156,-0.92161715,-0.92175156,-0.92188597,-0.92161715,-0.9210795,-0.9210795,-0.9212139,-0.9208107,-0.9206763,-0.92134833,-0.9220204,-0.92188597,-0.92175156,-0.92175156,-0.92161715,-0.92161715,-0.92175156,-0.92175156,-0.92175156,-0.9221548,-0.9226924,-0.9228268,-0.9226924,-0.9226924,-0.9224236,-0.9222892,-0.9224236,-0.922558,-0.9226924,-0.9228268,-0.92296124,-0.92296124,-0.92296124,-0.92309564,-0.92309564,-0.92323005,-0.92323005,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.9236333,-0.9240365,-0.9243054,-0.9241709,-0.9247086,-0.9265904,-0.9291442,-0.93008506,-0.92753124,-0.92336446,-0.92148274,-0.922558,-0.92336446,-0.92336446,-0.92309564,-0.9228268,-0.9224236,-0.9222892,-0.922558,-0.9241709,-0.92753124,-0.92968184,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.92981625,-0.92995065,-0.9306227,-0.9306227,-0.9306227,-0.9303539,-0.9269936,-0.9269936,-0.93008506,-0.92968184,-0.9302195,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9302195,-0.93008506,-0.9302195,-0.92968184,-0.9272624,-0.9237677,-0.9221548,-0.9224236,-0.9237677,-0.9251119,-0.9245742,-0.9247086,-0.92793447,-0.93008506,-0.9282033,-0.9251119,-0.9243054,-0.9244398,-0.9239021,-0.92336446,-0.92349887,-0.9237677,-0.9236333,-0.92336446,-0.92309564,-0.92296124,-0.92309564,-0.92323005,-0.92309564,-0.9228268,-0.9226924,-0.9228268,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92296124,-0.9226924,-0.922558,-0.9226924,-0.922558,-0.9224236,-0.9224236,-0.9224236,-0.9221548,-0.9221548,-0.9224236,-0.9224236,-0.9224236,-0.922558,-0.922558,-0.922558,-0.922558,-0.92175156,-0.9209451,-0.9212139,-0.92161715,-0.92148274,-0.92134833,-0.92161715,-0.9220204,-0.9221548,-0.9220204,-0.92188597,-0.9220204,-0.9220204,-0.92188597,-0.92175156,-0.92175156,-0.92161715,-0.92148274,-0.92134833,-0.9212139,-0.92175156,-0.9222892,-0.9220204,-0.9208107,-0.9197354,-0.9197354,-0.9208107,-0.92161715,-0.92161715,-0.92148274,-0.92134833,-0.92134833,-0.92175156,-0.92188597,-0.9209451,-0.91933215,-0.9190633,-0.91960096,-0.9189289,-0.9187945,-0.9208107,-0.92175156,-0.92161715,-0.92148274,-0.92148274,-0.9209451,-0.92027307,-0.92134833,-0.92323005,-0.9226924,-0.9206763,-0.92000425,-0.9206763,-0.92134833,-0.92134833,-0.92148274,-0.92161715,-0.92175156,-0.92161715,-0.92148274,-0.92161715,-0.92175156,-0.92175156,-0.92175156,-0.92188597,-0.92175156,-0.92134833,-0.9210795,-0.9208107,-0.92027307,-0.9206763,-0.92161715,-0.9221548,-0.92188597,-0.92161715,-0.92175156,-0.92188597,-0.92175156,-0.92175156,-0.92175156,-0.92175156,-0.92188597,-0.9224236,-0.9226924,-0.9228268,-0.9226924,-0.9224236,-0.9224236,-0.9228268,-0.9228268,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.92296124,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92336446,-0.92349887,-0.92323005,-0.92323005,-0.92336446,-0.9237677,-0.9239021,-0.9239021,-0.9245742,-0.9267248,-0.9292786,-0.92995065,-0.92739683,-0.92349887,-0.92175156,-0.9226924,-0.92349887,-0.92349887,-0.92336446,-0.92296124,-0.9224236,-0.9220204,-0.9226924,-0.9251119,-0.9282033,-0.92981625,-0.93008506,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.92981625,-0.93008506,-0.9306227,-0.9306227,-0.9306227,-0.93008506,-0.92739683,-0.92739683,-0.92981625,-0.92968184,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9295474,-0.92739683,-0.9236333,-0.9221548,-0.9226924,-0.9241709,-0.9252463,-0.9245742,-0.9247086,-0.92793447,-0.93008506,-0.9284721,-0.9253807,-0.9241709,-0.9239021,-0.9236333,-0.92349887,-0.9236333,-0.92349887,-0.92336446,-0.92323005,-0.92309564,-0.92296124,-0.92296124,-0.92323005,-0.92336446,-0.92323005,-0.92296124,-0.9226924,-0.922558,-0.9228268,-0.9228268,-0.9226924,-0.9226924,-0.922558,-0.922558,-0.9226924,-0.9226924,-0.9224236,-0.9224236,-0.922558,-0.9224236,-0.9224236,-0.9224236,-0.9224236,-0.922558,-0.922558,-0.9224236,-0.9224236,-0.922558,-0.9221548,-0.9210795,-0.9205419,-0.9212139,-0.92175156,-0.92188597,-0.9221548,-0.9222892,-0.9220204,-0.9220204,-0.9221548,-0.9220204,-0.92188597,-0.92188597,-0.92175156,-0.92161715,-0.92134833,-0.92134833,-0.92161715,-0.92175156,-0.92161715,-0.92188597,-0.9221548,-0.9220204,-0.9212139,-0.9204075,-0.9204075,-0.9212139,-0.92175156,-0.92148274,-0.9212139,-0.9212139,-0.92175156,-0.92188597,-0.9209451,-0.9185257,-0.91771924,-0.9185257,-0.9189289,-0.91960096,-0.92148274,-0.92188597,-0.92161715,-0.92161715,-0.92188597,-0.92188597,-0.9222892,-0.92309564,-0.922558,-0.9206763,-0.92013866,-0.9209451,-0.92161715,-0.92161715,-0.92148274,-0.92148274,-0.92175156,-0.92188597,-0.92175156,-0.92161715,-0.92161715,-0.92175156,-0.92188597,-0.92188597,-0.92175156,-0.92175156,-0.92175156,-0.9210795,-0.92000425,-0.9198698,-0.9206763,-0.92161715,-0.92188597,-0.92175156,-0.92175156,-0.92188597,-0.9220204,-0.92188597,-0.92175156,-0.92175156,-0.92188597,-0.92175156,-0.9221548,-0.922558,-0.9228268,-0.9226924,-0.922558,-0.922558,-0.9226924,-0.9226924,-0.9226924,-0.922558,-0.9226924,-0.9228268,-0.92296124,-0.92336446,-0.92349887,-0.92349887,-0.92349887,-0.92336446,-0.92309564,-0.92309564,-0.92336446,-0.9236333,-0.9237677,-0.9236333,-0.9236333,-0.9245742,-0.926456,-0.9288754,-0.92968184,-0.927128,-0.92349887,-0.9222892,-0.92309564,-0.9236333,-0.92349887,-0.92323005,-0.92309564,-0.922558,-0.92188597,-0.9226924,-0.9256495,-0.9290098,-0.92981625,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.92995065,-0.9303539,-0.9306227,-0.9306227,-0.9306227,-0.92968184,-0.92739683,-0.92780006,-0.92995065,-0.92995065,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.9303539,-0.92995065,-0.9272624,-0.92336446,-0.9220204,-0.9228268,-0.9243054,-0.9251119,-0.9247086,-0.9249775,-0.92780006,-0.92995065,-0.928741,-0.92578393,-0.9240365,-0.9236333,-0.9236333,-0.9236333,-0.9236333,-0.92349887,-0.92336446,-0.92336446,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92296124,-0.92296124,-0.92309564,-0.92336446,-0.92336446,-0.92309564,-0.92296124,-0.9228268,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.922558,-0.9224236,-0.9224236,-0.922558,-0.9224236,-0.9222892,-0.9224236,-0.922558,-0.9222892,-0.9222892,-0.922558,-0.9221548,-0.9212139,-0.9205419,-0.9209451,-0.92175156,-0.9221548,-0.9222892,-0.9222892,-0.9222892,-0.9220204,-0.9220204,-0.9220204,-0.9220204,-0.92188597,-0.92188597,-0.92175156,-0.92188597,-0.92175156,-0.92175156,-0.92188597,-0.92175156,-0.92161715,-0.92175156,-0.9220204,-0.9220204,-0.92175156,-0.9208107,-0.92000425,-0.92027307,-0.92134833,-0.92161715,-0.92148274,-0.92175156,-0.92188597,-0.9212139,-0.9186601,-0.9174504,-0.9187945,-0.92013866,-0.9212139,-0.9221548,-0.92188597,-0.92161715,-0.9220204,-0.92296124,-0.9237677,-0.92323005,-0.92148274,-0.9198698,-0.92013866,-0.9210795,-0.92188597,-0.9220204,-0.92175156,-0.92161715,-0.92161715,-0.92161715,-0.92161715,-0.92161715,-0.92148274,-0.92161715,-0.92175156,-0.9220204,-0.9220204,-0.92188597,-0.92188597,-0.92175156,-0.92161715,-0.9210795,-0.9205419,-0.9208107,-0.92148274,-0.92175156,-0.92175156,-0.92188597,-0.92188597,-0.92188597,-0.9220204,-0.9221548,-0.9221548,-0.9221548,-0.9221548,-0.9222892,-0.9224236,-0.9224236,-0.9224236,-0.9224236,-0.922558,-0.922558,-0.9226924,-0.9228268,-0.9228268,-0.9228268,-0.92296124,-0.92309564,-0.92323005,-0.92336446,-0.92336446,-0.92309564,-0.92309564,-0.9236333,-0.9239021,-0.9237677,-0.9239021,-0.9239021,-0.9236333,-0.9236333,-0.9245742,-0.9265904,-0.9292786,-0.92995065,-0.9268592,-0.9236333,-0.92309564,-0.92349887,-0.92349887,-0.92323005,-0.9228268,-0.9221548,-0.92175156,-0.92175156,-0.9228268,-0.92605275,-0.929413,-0.92981625,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9302195,-0.9302195,-0.93008506,-0.9292786,-0.93008506,-0.9306227,-0.9306227,-0.9306227,-0.9291442,-0.926456,-0.92753124,-0.92968184,-0.92968184,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.92968184,-0.9268592,-0.92309564,-0.92175156,-0.9226924,-0.9241709,-0.9251119,-0.9248431,-0.9251119,-0.92780006,-0.92981625,-0.928741,-0.92591834,-0.9241709,-0.9237677,-0.9236333,-0.9236333,-0.92349887,-0.92349887,-0.92336446,-0.92323005,-0.92309564,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.92309564,-0.92323005,-0.92336446,-0.92336446,-0.92323005,-0.92309564,-0.92309564,-0.9228268,-0.9226924,-0.9226924,-0.9226924,-0.922558,-0.922558,-0.9224236,-0.922558,-0.922558,-0.9224236,-0.9222892,-0.9221548,-0.9222892,-0.9224236,-0.9221548,-0.9220204,-0.9224236,-0.9222892,-0.92134833,-0.9208107,-0.9210795,-0.92134833,-0.92175156,-0.9220204,-0.9222892,-0.9222892,-0.9221548,-0.9220204,-0.9220204,-0.9220204,-0.92188597,-0.92188597,-0.92188597,-0.9220204,-0.9220204,-0.9220204,-0.92188597,-0.92175156,-0.92175156,-0.92188597,-0.9220204,-0.9220204,-0.9222892,-0.9221548,-0.92134833,-0.92013866,-0.92000425,-0.9205419,-0.9212139,-0.92161715,-0.92161715,-0.9208107,-0.9186601,-0.91758484,-0.9190633,-0.9208107,-0.92175156,-0.9221548,-0.92175156,-0.9220204,-0.92296124,-0.9239021,-0.92323005,-0.9210795,-0.9197354,-0.9205419,-0.92148274,-0.92188597,-0.9220204,-0.92188597,-0.92175156,-0.92161715,-0.92161715,-0.92161715,-0.92161715,-0.92175156,-0.92188597,-0.92188597,-0.9220204,-0.9221548,-0.9220204,-0.9220204,-0.92188597,-0.92188597,-0.92148274,-0.9206763,-0.92027307,-0.9206763,-0.92148274,-0.92175156,-0.92161715,-0.92175156,-0.92188597,-0.92175156,-0.92188597,-0.9221548,-0.9221548,-0.9222892,-0.9222892,-0.9224236,-0.9224236,-0.9222892,-0.9222892,-0.9224236,-0.922558,-0.922558,-0.9228268,-0.92296124,-0.92296124,-0.9228268,-0.92309564,-0.92323005,-0.92323005,-0.92309564,-0.92309564,-0.9236333,-0.9243054,-0.9243054,-0.9239021,-0.92349887,-0.92349887,-0.9240365,-0.9240365,-0.9236333,-0.9241709,-0.9265904,-0.9295474,-0.92995065,-0.9267248,-0.92349887,-0.92309564,-0.9237677,-0.9236333,-0.92349887,-0.92323005,-0.9222892,-0.92188597,-0.92175156,-0.92323005,-0.9268592,-0.92981625,-0.92995065,-0.9302195,-0.9302195,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9302195,-0.92995065,-0.93008506,-0.93008506,-0.9288754,-0.93008506,-0.9306227,-0.9306227,-0.9306227,-0.9290098,-0.9265904,-0.92793447,-0.92968184,-0.92981625,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.92968184,-0.927128,-0.92349887,-0.9222892,-0.92296124,-0.9240365,-0.9248431,-0.9248431,-0.9253807,-0.92793447,-0.92995065,-0.928741,-0.92605275,-0.9244398,-0.9239021,-0.9237677,-0.92349887,-0.92336446,-0.92323005,-0.92323005,-0.92323005,-0.92309564,-0.92309564,-0.92296124,-0.92296124,-0.92296124,-0.92309564,-0.92323005,-0.92309564,-0.92296124,-0.92296124,-0.92309564,-0.92309564,-0.92296124,-0.9228268,-0.9228268,-0.9228268,-0.922558,-0.9224236,-0.9224236,-0.922558,-0.922558,-0.9224236,-0.9224236,-0.9224236,-0.9222892,-0.9222892,-0.9221548,-0.9220204,-0.9221548,-0.9222892,-0.92148274,-0.9208107,-0.9210795,-0.92148274,-0.92148274,-0.92161715,-0.9220204,-0.9222892,-0.9221548,-0.92188597,-0.92188597,-0.92188597,-0.9220204,-0.9220204,-0.92188597,-0.92175156,-0.92148274,-0.92134833,-0.92134833,-0.92148274,-0.92161715,-0.92175156,-0.92175156,-0.92188597,-0.9220204,-0.9221548,-0.9220204,-0.92148274,-0.9205419,-0.92000425,-0.92013866,-0.9208107,-0.9210795,-0.9205419,-0.9189289,-0.9182569,-0.9197354,-0.9212139,-0.92188597,-0.9221548,-0.9222892,-0.9222892,-0.9221548,-0.92188597,-0.9209451,-0.9205419,-0.92134833,-0.9220204,-0.9220204,-0.92175156,-0.92161715,-0.92161715,-0.92161715,-0.92148274,-0.92148274,-0.92161715,-0.92175156,-0.92175156,-0.92188597,-0.9221548,-0.9221548,-0.9220204,-0.92188597,-0.9220204,-0.9220204,-0.9220204,-0.92161715,-0.9206763,-0.92027307,-0.9205419,-0.92148274,-0.92188597,-0.92188597,-0.92188597,-0.9220204,-0.9220204,-0.9220204,-0.9221548,-0.9222892,-0.9221548,-0.9221548,-0.9222892,-0.9224236,-0.9224236,-0.9224236,-0.9224236,-0.922558,-0.9226924,-0.9228268,-0.92309564,-0.92323005,-0.92309564,-0.92296124,-0.92296124,-0.92323005,-0.9236333,-0.9243054,-0.9247086,-0.9241709,-0.9237677,-0.9236333,-0.92349887,-0.92349887,-0.9240365,-0.9240365,-0.9236333,-0.9244398,-0.9269936,-0.92968184,-0.92981625,-0.926456,-0.92323005,-0.92296124,-0.9237677,-0.9240365,-0.9236333,-0.92296124,-0.9224236,-0.9221548,-0.92175156,-0.92323005,-0.92739683,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.92995065,-0.9302195,-0.9302195,-0.9290098,-0.9303539,-0.9306227,-0.9306227,-0.9306227,-0.9290098,-0.92753124,-0.928741,-0.92968184,-0.93008506,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.92995065,-0.92766565,-0.9239021,-0.9222892,-0.9226924,-0.9239021,-0.9248431,-0.9248431,-0.9252463,-0.92780006,-0.92981625,-0.9290098,-0.926456,-0.9245742,-0.9240365,-0.9239021,-0.9236333,-0.92349887,-0.92349887,-0.92336446,-0.92336446,-0.92323005,-0.92323005,-0.92309564,-0.92296124,-0.92296124,-0.92309564,-0.92323005,-0.92323005,-0.92309564,-0.92296124,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9226924,-0.922558,-0.922558,-0.922558,-0.922558,-0.922558,-0.922558,-0.9224236,-0.9222892,-0.9221548,-0.9222892,-0.9222892,-0.9224236,-0.922558,-0.92188597,-0.9208107,-0.9205419,-0.9210795,-0.92161715,-0.92188597,-0.9221548,-0.9221548,-0.92188597,-0.92161715,-0.92148274,-0.92148274,-0.92175156,-0.92175156,-0.92175156,-0.92175156,-0.92175156,-0.92175156,-0.92175156,-0.92161715,-0.92161715,-0.92161715,-0.92175156,-0.92188597,-0.9220204,-0.9221548,-0.9222892,-0.9221548,-0.92175156,-0.9210795,-0.9204075,-0.9205419,-0.9212139,-0.9209451,-0.9198698,-0.91946656,-0.9205419,-0.92161715,-0.9222892,-0.9228268,-0.92296124,-0.9224236,-0.9212139,-0.92027307,-0.9205419,-0.92134833,-0.92161715,-0.92148274,-0.92148274,-0.92148274,-0.92148274,-0.92161715,-0.92175156,-0.92175156,-0.92148274,-0.92161715,-0.92175156,-0.92175156,-0.92188597,-0.9220204,-0.9220204,-0.92175156,-0.92188597,-0.9221548,-0.9221548,-0.92188597,-0.92148274,-0.9209451,-0.9206763,-0.9210795,-0.92175156,-0.9220204,-0.9220204,-0.92188597,-0.92188597,-0.9220204,-0.9221548,-0.9222892,-0.9222892,-0.9221548,-0.9221548,-0.9224236,-0.922558,-0.922558,-0.922558,-0.922558,-0.922558,-0.9228268,-0.92296124,-0.92309564,-0.92323005,-0.92323005,-0.92296124,-0.92296124,-0.9237677,-0.9244398,-0.9243054,-0.9239021,-0.9239021,-0.9237677,-0.9236333,-0.92349887,-0.9236333,-0.9240365,-0.9236333,-0.92309564,-0.9244398,-0.92739683,-0.92995065,-0.92968184,-0.9265904,-0.92323005,-0.9228268,-0.9236333,-0.9240365,-0.9236333,-0.9226924,-0.92188597,-0.92175156,-0.92161715,-0.92323005,-0.92753124,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.93008506,-0.9303539,-0.92995065,-0.92860657,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9280689,-0.9265904,-0.928741,-0.92968184,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9283377,-0.9247086,-0.9222892,-0.9221548,-0.92336446,-0.9247086,-0.9251119,-0.9252463,-0.9272624,-0.929413,-0.9291442,-0.9267248,-0.9247086,-0.9240365,-0.9240365,-0.9237677,-0.92349887,-0.92349887,-0.92349887,-0.92323005,-0.92309564,-0.92296124,-0.9228268,-0.9228268,-0.92296124,-0.92296124,-0.92296124,-0.9226924,-0.9228268,-0.92296124,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.922558,-0.922558,-0.9226924,-0.9226924,-0.922558,-0.922558,-0.9224236,-0.9222892,-0.9221548,-0.9221548,-0.9221548,-0.9222892,-0.9224236,-0.9221548,-0.9210795,-0.9204075,-0.9208107,-0.92161715,-0.9221548,-0.9221548,-0.92188597,-0.92188597,-0.92188597,-0.92161715,-0.92134833,-0.92134833,-0.92148274,-0.92161715,-0.92175156,-0.92188597,-0.9220204,-0.9220204,-0.9220204,-0.9220204,-0.92188597,-0.92188597,-0.9220204,-0.9221548,-0.9222892,-0.9224236,-0.9221548,-0.92175156,-0.92148274,-0.92148274,-0.92175156,-0.9221548,-0.9221548,-0.92148274,-0.9209451,-0.92134833,-0.9222892,-0.92309564,-0.92323005,-0.9226924,-0.9222892,-0.92175156,-0.9212139,-0.9212139,-0.92148274,-0.92161715,-0.92148274,-0.92148274,-0.92161715,-0.92161715,-0.92161715,-0.92175156,-0.92175156,-0.92175156,-0.92188597,-0.9220204,-0.92188597,-0.92175156,-0.92161715,-0.92161715,-0.92161715,-0.92188597,-0.9220204,-0.9220204,-0.92188597,-0.92148274,-0.9210795,-0.9210795,-0.92148274,-0.92188597,-0.9220204,-0.9220204,-0.9220204,-0.92188597,-0.92188597,-0.9220204,-0.9222892,-0.9222892,-0.9222892,-0.9224236,-0.9226924,-0.9226924,-0.9226924,-0.9228268,-0.92296124,-0.92309564,-0.92296124,-0.92296124,-0.92296124,-0.92309564,-0.92323005,-0.92349887,-0.9236333,-0.9239021,-0.9237677,-0.9237677,-0.9239021,-0.9237677,-0.9236333,-0.9236333,-0.92349887,-0.9237677,-0.9243054,-0.92296124,-0.92134833,-0.92323005,-0.92753124,-0.93008506,-0.92968184,-0.92632157,-0.92323005,-0.9228268,-0.9239021,-0.9241709,-0.9236333,-0.9226924,-0.9220204,-0.92134833,-0.9210795,-0.92336446,-0.92780006,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.92995065,-0.9302195,-0.92968184,-0.92860657,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92766565,-0.92578393,-0.928741,-0.929413,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9291442,-0.9256495,-0.9226924,-0.9221548,-0.92323005,-0.9248431,-0.9255151,-0.9253807,-0.9268592,-0.9291442,-0.92968184,-0.92753124,-0.9249775,-0.9240365,-0.9239021,-0.9237677,-0.92349887,-0.9236333,-0.9236333,-0.92336446,-0.92296124,-0.9226924,-0.9226924,-0.92296124,-0.92296124,-0.92296124,-0.9228268,-0.92296124,-0.92309564,-0.92309564,-0.92296124,-0.9228268,-0.9228268,-0.9226924,-0.9226924,-0.9228268,-0.92296124,-0.9226924,-0.922558,-0.9226924,-0.9228268,-0.9226924,-0.922558,-0.9224236,-0.9222892,-0.9221548,-0.9221548,-0.9221548,-0.9221548,-0.9222892,-0.9222892,-0.92175156,-0.9209451,-0.9206763,-0.9212139,-0.92188597,-0.9220204,-0.9220204,-0.92175156,-0.92161715,-0.92148274,-0.92148274,-0.92148274,-0.92175156,-0.92188597,-0.9220204,-0.92188597,-0.92175156,-0.92188597,-0.9220204,-0.9221548,-0.9220204,-0.92188597,-0.92188597,-0.9220204,-0.9221548,-0.9222892,-0.9220204,-0.92161715,-0.92161715,-0.9224236,-0.92323005,-0.92349887,-0.92296124,-0.9221548,-0.92161715,-0.9220204,-0.92349887,-0.9240365,-0.92336446,-0.9224236,-0.9221548,-0.9221548,-0.92188597,-0.92148274,-0.92175156,-0.92175156,-0.92175156,-0.92175156,-0.92161715,-0.92161715,-0.92175156,-0.92175156,-0.92188597,-0.9220204,-0.9221548,-0.9220204,-0.92188597,-0.92175156,-0.92161715,-0.92175156,-0.92175156,-0.92188597,-0.9220204,-0.9220204,-0.92188597,-0.92134833,-0.9210795,-0.92134833,-0.92161715,-0.92188597,-0.92188597,-0.92188597,-0.92188597,-0.9220204,-0.9221548,-0.9222892,-0.9221548,-0.9222892,-0.9222892,-0.9224236,-0.922558,-0.9226924,-0.9226924,-0.922558,-0.9224236,-0.9221548,-0.9221548,-0.9226924,-0.92309564,-0.92323005,-0.92336446,-0.9236333,-0.9236333,-0.92336446,-0.92323005,-0.92336446,-0.92349887,-0.92336446,-0.92336446,-0.92349887,-0.92349887,-0.9239021,-0.9240365,-0.9221548,-0.92027307,-0.9224236,-0.92739683,-0.92981625,-0.9291442,-0.92578393,-0.92323005,-0.92323005,-0.9243054,-0.9243054,-0.92323005,-0.9221548,-0.92148274,-0.9212139,-0.92175156,-0.9243054,-0.9280689,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.93008506,-0.9302195,-0.92981625,-0.9291442,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92860657,-0.92766565,-0.92981625,-0.92995065,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.92968184,-0.926456,-0.92309564,-0.9224236,-0.92323005,-0.9245742,-0.9252463,-0.9251119,-0.926456,-0.9290098,-0.92995065,-0.9282033,-0.9251119,-0.92309564,-0.92309564,-0.9236333,-0.9237677,-0.9237677,-0.92349887,-0.92323005,-0.92296124,-0.9226924,-0.9228268,-0.92309564,-0.92323005,-0.92309564,-0.92309564,-0.92309564,-0.92296124,-0.92296124,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9226924,-0.9226924,-0.9228268,-0.9228268,-0.9226924,-0.9224236,-0.9224236,-0.9222892,-0.9222892,-0.9221548,-0.9221548,-0.9222892,-0.9224236,-0.9224236,-0.9224236,-0.92161715,-0.9209451,-0.9212139,-0.92175156,-0.9221548,-0.9221548,-0.92175156,-0.92148274,-0.92134833,-0.92134833,-0.92148274,-0.92175156,-0.92175156,-0.92188597,-0.92188597,-0.92188597,-0.92188597,-0.9220204,-0.9220204,-0.92188597,-0.92175156,-0.92175156,-0.92175156,-0.9220204,-0.92188597,-0.92134833,-0.92134833,-0.92175156,-0.922558,-0.9239021,-0.9244398,-0.92323005,-0.92161715,-0.92161715,-0.92309564,-0.9240365,-0.9236333,-0.9222892,-0.9208107,-0.9206763,-0.92161715,-0.9220204,-0.9220204,-0.9221548,-0.9222892,-0.9221548,-0.9220204,-0.92188597,-0.92188597,-0.9220204,-0.9221548,-0.9221548,-0.9222892,-0.9222892,-0.9222892,-0.9221548,-0.92188597,-0.92188597,-0.92188597,-0.92188597,-0.92188597,-0.9221548,-0.9221548,-0.92188597,-0.92134833,-0.9212139,-0.92148274,-0.92175156,-0.92188597,-0.92188597,-0.92188597,-0.92188597,-0.9220204,-0.9221548,-0.9222892,-0.9222892,-0.9222892,-0.9222892,-0.9222892,-0.9224236,-0.922558,-0.9224236,-0.9220204,-0.92175156,-0.92175156,-0.9220204,-0.9224236,-0.9228268,-0.92309564,-0.92336446,-0.92349887,-0.92349887,-0.92323005,-0.92296124,-0.92309564,-0.92349887,-0.9236333,-0.92349887,-0.92336446,-0.92349887,-0.9239021,-0.9237677,-0.9222892,-0.92148274,-0.9240365,-0.92780006,-0.92968184,-0.928741,-0.9255151,-0.92323005,-0.92336446,-0.9243054,-0.9243054,-0.92349887,-0.922558,-0.92175156,-0.92148274,-0.922558,-0.9252463,-0.9283377,-0.92995065,-0.9302195,-0.93008506,-0.9302195,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.92995065,-0.9295474,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.929413,-0.9291442,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.9303539,-0.92981625,-0.9269936,-0.92323005,-0.9224236,-0.9236333,-0.9248431,-0.9253807,-0.9251119,-0.92605275,-0.92860657,-0.93008506,-0.92860657,-0.9255151,-0.9228268,-0.9222892,-0.92309564,-0.92349887,-0.92336446,-0.92336446,-0.92336446,-0.92309564,-0.9228268,-0.92296124,-0.92309564,-0.92309564,-0.92323005,-0.92323005,-0.92323005,-0.92309564,-0.9228268,-0.9226924,-0.9228268,-0.9228268,-0.92296124,-0.92296124,-0.92296124,-0.9228268,-0.9228268,-0.9228268,-0.92296124,-0.9228268,-0.922558,-0.9224236,-0.9224236,-0.9224236,-0.9222892,-0.9222892,-0.9222892,-0.9224236,-0.9224236,-0.9224236,-0.922558,-0.9224236,-0.92175156,-0.92148274,-0.92175156,-0.9221548,-0.9220204,-0.92175156,-0.92134833,-0.92134833,-0.92134833,-0.92134833,-0.92148274,-0.92161715,-0.92175156,-0.92175156,-0.92175156,-0.92175156,-0.92188597,-0.92175156,-0.92148274,-0.92161715,-0.92175156,-0.92188597,-0.9222892,-0.9224236,-0.92175156,-0.92148274,-0.9220204,-0.9224236,-0.92336446,-0.9241709,-0.92296124,-0.92134833,-0.92188597,-0.9236333,-0.9237677,-0.9224236,-0.9206763,-0.9197354,-0.92013866,-0.9212139,-0.9220204,-0.9224236,-0.9222892,-0.9222892,-0.9221548,-0.9221548,-0.9221548,-0.9220204,-0.9220204,-0.9221548,-0.9224236,-0.922558,-0.922558,-0.9224236,-0.9221548,-0.92188597,-0.92188597,-0.92188597,-0.92188597,-0.9220204,-0.9221548,-0.9221548,-0.92188597,-0.92175156,-0.92161715,-0.92161715,-0.92161715,-0.92175156,-0.92188597,-0.92188597,-0.92188597,-0.92188597,-0.9220204,-0.9222892,-0.9224236,-0.9222892,-0.9221548,-0.9224236,-0.9228268,-0.92296124,-0.9228268,-0.9226924,-0.9226924,-0.92296124,-0.92296124,-0.9228268,-0.92296124,-0.92309564,-0.92323005,-0.92336446,-0.92336446,-0.92323005,-0.92309564,-0.92323005,-0.92349887,-0.92349887,-0.92349887,-0.92336446,-0.92349887,-0.9237677,-0.9237677,-0.92323005,-0.9239021,-0.92605275,-0.9283377,-0.929413,-0.9283377,-0.9253807,-0.92323005,-0.92336446,-0.9241709,-0.9241709,-0.92349887,-0.9221548,-0.9212139,-0.92134833,-0.9228268,-0.9256495,-0.92860657,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.92981625,-0.92995065,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.92981625,-0.92968184,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.92981625,-0.92995065,-0.9302195,-0.92981625,-0.92753124,-0.92349887,-0.9220204,-0.9228268,-0.9241709,-0.9252463,-0.9255151,-0.92591834,-0.9282033,-0.9302195,-0.929413,-0.92632157,-0.9239021,-0.92309564,-0.92309564,-0.92323005,-0.92349887,-0.9239021,-0.9236333,-0.92336446,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92323005,-0.92323005,-0.92309564,-0.92296124,-0.92296124,-0.9228268,-0.9228268,-0.9226924,-0.92296124,-0.92323005,-0.92296124,-0.9224236,-0.922558,-0.92296124,-0.9228268,-0.9226924,-0.9226924,-0.922558,-0.9224236,-0.9222892,-0.9222892,-0.9224236,-0.922558,-0.9224236,-0.9224236,-0.922558,-0.9226924,-0.9222892,-0.92188597,-0.92175156,-0.92161715,-0.92148274,-0.92148274,-0.9212139,-0.9209451,-0.9210795,-0.92134833,-0.92148274,-0.92175156,-0.92188597,-0.92161715,-0.92161715,-0.92188597,-0.9220204,-0.92161715,-0.92148274,-0.92161715,-0.92188597,-0.9221548,-0.922558,-0.9226924,-0.92188597,-0.92148274,-0.9221548,-0.9226924,-0.92296124,-0.92309564,-0.92188597,-0.9206763,-0.92134833,-0.92323005,-0.92309564,-0.92161715,-0.9205419,-0.9209451,-0.92188597,-0.9220204,-0.92175156,-0.92188597,-0.9222892,-0.9224236,-0.9221548,-0.9221548,-0.9221548,-0.9221548,-0.9221548,-0.9222892,-0.922558,-0.9228268,-0.9228268,-0.9224236,-0.9220204,-0.92175156,-0.92188597,-0.9220204,-0.9221548,-0.9224236,-0.9224236,-0.9222892,-0.9220204,-0.9221548,-0.9222892,-0.9220204,-0.92188597,-0.92188597,-0.9220204,-0.92188597,-0.92188597,-0.9220204,-0.9221548,-0.9222892,-0.9222892,-0.9222892,-0.9224236,-0.92296124,-0.92336446,-0.92323005,-0.92296124,-0.92296124,-0.92309564,-0.92309564,-0.92296124,-0.92296124,-0.92296124,-0.92309564,-0.92296124,-0.92309564,-0.92323005,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92349887,-0.92349887,-0.9237677,-0.9239021,-0.9240365,-0.9247086,-0.9265904,-0.928741,-0.92968184,-0.9282033,-0.9251119,-0.92309564,-0.92336446,-0.9240365,-0.9237677,-0.92296124,-0.92188597,-0.9210795,-0.9212139,-0.92296124,-0.92618716,-0.9288754,-0.92995065,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.9295474,-0.92981625,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.92995065,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.92995065,-0.9295474,-0.92780006,-0.9248431,-0.9222892,-0.9221548,-0.92336446,-0.9249775,-0.9255151,-0.92578393,-0.92739683,-0.92968184,-0.92968184,-0.9269936,-0.9244398,-0.9236333,-0.9239021,-0.9239021,-0.9237677,-0.9237677,-0.92349887,-0.92336446,-0.92336446,-0.92336446,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92296124,-0.9228268,-0.9226924,-0.9228268,-0.92296124,-0.9226924,-0.9222892,-0.922558,-0.9228268,-0.9226924,-0.9226924,-0.9226924,-0.922558,-0.9221548,-0.9220204,-0.9222892,-0.9224236,-0.922558,-0.922558,-0.9224236,-0.9224236,-0.922558,-0.9224236,-0.9222892,-0.9220204,-0.92148274,-0.92134833,-0.92161715,-0.92134833,-0.9208107,-0.9205419,-0.9209451,-0.9212139,-0.9210795,-0.9209451,-0.9210795,-0.92134833,-0.92175156,-0.9221548,-0.9220204,-0.92188597,-0.92175156,-0.92188597,-0.9222892,-0.922558,-0.9221548,-0.9212139,-0.9205419,-0.92161715,-0.92336446,-0.92309564,-0.9206763,-0.9189289,-0.91960096,-0.92148274,-0.92336446,-0.9224236,-0.9209451,-0.9209451,-0.92188597,-0.9222892,-0.9222892,-0.92188597,-0.92148274,-0.92148274,-0.92175156,-0.9221548,-0.9222892,-0.9221548,-0.9221548,-0.9222892,-0.9224236,-0.922558,-0.9226924,-0.9226924,-0.9228268,-0.9226924,-0.9221548,-0.92188597,-0.9220204,-0.9224236,-0.9226924,-0.9226924,-0.9222892,-0.9221548,-0.9222892,-0.9222892,-0.9222892,-0.9222892,-0.9221548,-0.9220204,-0.92188597,-0.9220204,-0.9220204,-0.9221548,-0.9221548,-0.9221548,-0.9222892,-0.9228268,-0.92336446,-0.92336446,-0.92296124,-0.9228268,-0.92296124,-0.92296124,-0.92296124,-0.92309564,-0.92309564,-0.92296124,-0.92296124,-0.92296124,-0.92309564,-0.92309564,-0.92323005,-0.92336446,-0.92349887,-0.92336446,-0.92336446,-0.92336446,-0.92349887,-0.9236333,-0.9239021,-0.9239021,-0.9239021,-0.9245742,-0.9268592,-0.9292786,-0.93008506,-0.9280689,-0.9247086,-0.92309564,-0.92349887,-0.9240365,-0.9237677,-0.92296124,-0.9221548,-0.92134833,-0.92148274,-0.92336446,-0.9265904,-0.928741,-0.92981625,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.9292786,-0.92981625,-0.9306227,-0.9306227,-0.9306227,-0.9303539,-0.92981625,-0.92995065,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.92995065,-0.9292786,-0.9282033,-0.92605275,-0.92349887,-0.9224236,-0.92296124,-0.9240365,-0.9249775,-0.9255151,-0.9268592,-0.9290098,-0.92968184,-0.92766565,-0.9249775,-0.9237677,-0.9239021,-0.9240365,-0.9236333,-0.9236333,-0.92349887,-0.92336446,-0.92336446,-0.92349887,-0.92336446,-0.92336446,-0.92336446,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.9228268,-0.9226924,-0.9226924,-0.9226924,-0.922558,-0.9226924,-0.9226924,-0.9222892,-0.9221548,-0.9222892,-0.9224236,-0.9224236,-0.922558,-0.922558,-0.9224236,-0.9224236,-0.922558,-0.922558,-0.9222892,-0.9220204,-0.9220204,-0.9220204,-0.92161715,-0.9209451,-0.9206763,-0.9206763,-0.9206763,-0.9204075,-0.9204075,-0.9206763,-0.92134833,-0.92188597,-0.92188597,-0.92175156,-0.92161715,-0.9212139,-0.9209451,-0.92148274,-0.92188597,-0.92161715,-0.9210795,-0.9198698,-0.92000425,-0.92148274,-0.92134833,-0.9171816,-0.91462773,-0.9181225,-0.92188597,-0.922558,-0.9210795,-0.9205419,-0.92148274,-0.922558,-0.9222892,-0.9220204,-0.9221548,-0.92161715,-0.9209451,-0.9209451,-0.92148274,-0.92188597,-0.9221548,-0.9222892,-0.9222892,-0.9224236,-0.922558,-0.9228268,-0.9228268,-0.92296124,-0.9228268,-0.9222892,-0.92161715,-0.92188597,-0.922558,-0.92296124,-0.92296124,-0.922558,-0.9221548,-0.92175156,-0.92188597,-0.9222892,-0.9224236,-0.9221548,-0.9220204,-0.9220204,-0.9220204,-0.9221548,-0.9222892,-0.9222892,-0.9222892,-0.9224236,-0.92296124,-0.92336446,-0.92309564,-0.9228268,-0.92296124,-0.92296124,-0.9228268,-0.9226924,-0.9228268,-0.92296124,-0.9228268,-0.9228268,-0.92296124,-0.92323005,-0.92323005,-0.92296124,-0.92309564,-0.92336446,-0.92349887,-0.92349887,-0.9236333,-0.92349887,-0.92349887,-0.9239021,-0.9239021,-0.9237677,-0.9245742,-0.9268592,-0.929413,-0.92981625,-0.92739683,-0.9243054,-0.92309564,-0.9237677,-0.9240365,-0.92349887,-0.9226924,-0.92148274,-0.9208107,-0.92148274,-0.9239021,-0.9267248,-0.9284721,-0.92981625,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.929413,-0.9302195,-0.9306227,-0.9306227,-0.9306227,-0.92981625,-0.9288754,-0.929413,-0.93008506,-0.93008506,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.92995065,-0.9291442,-0.9283377,-0.9268592,-0.9247086,-0.9226924,-0.922558,-0.9237677,-0.9251119,-0.9256495,-0.9267248,-0.92860657,-0.92968184,-0.9283377,-0.92578393,-0.9239021,-0.9236333,-0.9237677,-0.9236333,-0.9236333,-0.9236333,-0.92323005,-0.92323005,-0.92336446,-0.92336446,-0.92336446,-0.92323005,-0.92323005,-0.92296124,-0.92296124,-0.92296124,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.92296124,-0.92296124,-0.92296124,-0.9228268,-0.9228268,-0.9228268,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.922558,-0.9222892,-0.9222892,-0.9224236,-0.9224236,-0.922558,-0.9226924,-0.9224236,-0.9222892,-0.9224236,-0.9228268,-0.9228268,-0.9224236,-0.9222892,-0.9222892,-0.92175156,-0.9210795,-0.9210795,-0.9210795,-0.9206763,-0.9204075,-0.9209451,-0.92175156,-0.9221548,-0.9220204,-0.92175156,-0.92161715,-0.92134833,-0.9206763,-0.92013866,-0.9208107,-0.92161715,-0.9221548,-0.92161715,-0.9205419,-0.9198698,-0.9198698,-0.9189289,-0.91597193,-0.91489655,-0.9186601,-0.9220204,-0.92161715,-0.9197354,-0.92000425,-0.92161715,-0.9228268,-0.92309564,-0.9228268,-0.9222892,-0.92175156,-0.92148274,-0.92188597,-0.9221548,-0.9220204,-0.92188597,-0.9222892,-0.9224236,-0.9224236,-0.9228268,-0.92309564,-0.92309564,-0.9226924,-0.9221548,-0.92161715,-0.92148274,-0.9221548,-0.92296124,-0.92309564,-0.9226924,-0.922558,-0.9224236,-0.9220204,-0.9220204,-0.9224236,-0.9224236,-0.9221548,-0.9221548,-0.9221548,-0.9221548,-0.9221548,-0.9222892,-0.922558,-0.922558,-0.922558,-0.9228268,-0.92309564,-0.9228268,-0.9226924,-0.9228268,-0.9228268,-0.9228268,-0.92296124,-0.9228268,-0.9228268,-0.92296124,-0.92296124,-0.92296124,-0.92309564,-0.92336446,-0.92323005,-0.92309564,-0.92309564,-0.92323005,-0.92336446,-0.92349887,-0.92349887,-0.92349887,-0.9237677,-0.9239021,-0.9237677,-0.9247086,-0.927128,-0.929413,-0.929413,-0.9267248,-0.9239021,-0.92336446,-0.9240365,-0.9239021,-0.92336446,-0.92309564,-0.9224236,-0.9210795,-0.92134833,-0.9241709,-0.9268592,-0.9284721,-0.92981625,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9304883,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9303539,-0.93008506,-0.9291442,-0.9303539,-0.9306227,-0.9306227,-0.9306227,-0.92981625,-0.9280689,-0.928741,-0.92981625,-0.92995065,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.92981625,-0.9290098,-0.9282033,-0.9272624,-0.9256495,-0.92349887,-0.9226924,-0.9236333,-0.9248431,-0.9253807,-0.92632157,-0.9283377,-0.92968184,-0.9288754,-0.9267248,-0.9245742,-0.9237677,-0.9237677,-0.9239021,-0.9237677,-0.92349887,-0.92336446,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92309564,-0.92296124,-0.92296124,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.92296124,-0.92296124,-0.9228268,-0.9226924,-0.9226924,-0.9226924,-0.922558,-0.922558,-0.922558,-0.922558,-0.9224236,-0.9224236,-0.9224236,-0.9224236,-0.9224236,-0.922558,-0.922558,-0.9224236,-0.9224236,-0.9226924,-0.92296124,-0.92309564,-0.9228268,-0.9222892,-0.92175156,-0.9212139,-0.92134833,-0.92161715,-0.92148274,-0.92148274,-0.9221548,-0.9226924,-0.922558,-0.9221548,-0.9220204,-0.9221548,-0.92161715,-0.9209451,-0.92134833,-0.922558,-0.92323005,-0.92336446,-0.92296124,-0.92175156,-0.92000425,-0.91919774,-0.9182569,-0.91624075,-0.91610634,-0.9189289,-0.9208107,-0.92027307,-0.9187945,-0.9185257,-0.92027307,-0.9221548,-0.92323005,-0.92309564,-0.9221548,-0.9212139,-0.9210795,-0.92175156,-0.9224236,-0.9224236,-0.9221548,-0.9221548,-0.9224236,-0.9226924,-0.92296124,-0.92323005,-0.9226924,-0.92134833,-0.9204075,-0.9204075,-0.9208107,-0.92161715,-0.922558,-0.92296124,-0.922558,-0.922558,-0.9226924,-0.922558,-0.922558,-0.922558,-0.9222892,-0.9221548,-0.9221548,-0.9220204,-0.92188597,-0.9220204,-0.9222892,-0.9224236,-0.9224236,-0.9224236,-0.9228268,-0.92309564,-0.92296124,-0.9226924,-0.9226924,-0.9228268,-0.9228268,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.92309564,-0.92323005,-0.92336446,-0.92323005,-0.92323005,-0.92309564,-0.92309564,-0.92336446,-0.9236333,-0.9236333,-0.9236333,-0.9239021,-0.9239021,-0.9239021,-0.9248431,-0.92739683,-0.9295474,-0.9291442,-0.92632157,-0.9239021,-0.9236333,-0.9243054,-0.9240365,-0.92336446,-0.9228268,-0.92175156,-0.9208107,-0.92188597,-0.9248431,-0.9272624,-0.92860657,-0.92968184,-0.9302195,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.92981625,-0.9302195,-0.92981625,-0.9288754,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9295474,-0.92780006,-0.9290098,-0.92995065,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.92968184,-0.9290098,-0.9282033,-0.927128,-0.92578393,-0.9239021,-0.922558,-0.9226924,-0.9237677,-0.9247086,-0.92578393,-0.92780006,-0.929413,-0.929413,-0.92753124,-0.9249775,-0.9237677,-0.9236333,-0.9236333,-0.92349887,-0.92349887,-0.92336446,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92296124,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.922558,-0.922558,-0.922558,-0.922558,-0.922558,-0.9224236,-0.922558,-0.922558,-0.922558,-0.922558,-0.922558,-0.922558,-0.9226924,-0.92309564,-0.92349887,-0.92349887,-0.92296124,-0.9224236,-0.9220204,-0.9220204,-0.9220204,-0.9221548,-0.9222892,-0.922558,-0.922558,-0.9221548,-0.9220204,-0.9221548,-0.9220204,-0.92148274,-0.9212139,-0.9220204,-0.92296124,-0.922558,-0.9221548,-0.9224236,-0.9212139,-0.9183913,-0.9174504,-0.91758484,-0.91637516,-0.91637516,-0.9187945,-0.92027307,-0.91946656,-0.9185257,-0.91933215,-0.9210795,-0.9224236,-0.9228268,-0.9224236,-0.92161715,-0.9210795,-0.92148274,-0.92188597,-0.92188597,-0.9220204,-0.9222892,-0.9221548,-0.9221548,-0.9226924,-0.92323005,-0.92323005,-0.922558,-0.9210795,-0.91946656,-0.9189289,-0.91960096,-0.9206763,-0.92188597,-0.92309564,-0.92336446,-0.9228268,-0.922558,-0.9226924,-0.9228268,-0.9226924,-0.9222892,-0.9220204,-0.9220204,-0.9220204,-0.9221548,-0.9222892,-0.9224236,-0.9224236,-0.9222892,-0.9224236,-0.9226924,-0.92296124,-0.92296124,-0.9226924,-0.9226924,-0.9228268,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.92309564,-0.92323005,-0.92336446,-0.92336446,-0.92336446,-0.92323005,-0.92349887,-0.9236333,-0.92349887,-0.9236333,-0.9237677,-0.9237677,-0.9239021,-0.9240365,-0.9239021,-0.9240365,-0.9253807,-0.92766565,-0.9292786,-0.9284721,-0.92591834,-0.9239021,-0.9240365,-0.9244398,-0.9239021,-0.92296124,-0.92188597,-0.9208107,-0.9206763,-0.9224236,-0.9251119,-0.927128,-0.9284721,-0.92968184,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.92995065,-0.9302195,-0.92981625,-0.92860657,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.928741,-0.92753124,-0.9291442,-0.92995065,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.93008506,-0.9295474,-0.9288754,-0.92793447,-0.9268592,-0.92591834,-0.9244398,-0.9226924,-0.9224236,-0.9236333,-0.9247086,-0.9253807,-0.9268592,-0.9288754,-0.92968184,-0.9283377,-0.92591834,-0.9240365,-0.9236333,-0.9237677,-0.9237677,-0.9236333,-0.92349887,-0.92336446,-0.92336446,-0.92323005,-0.92323005,-0.92323005,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.9228268,-0.9226924,-0.9226924,-0.9228268,-0.9226924,-0.922558,-0.9226924,-0.9226924,-0.9226924,-0.922558,-0.922558,-0.922558,-0.9224236,-0.9224236,-0.9224236,-0.9224236,-0.922558,-0.9224236,-0.922558,-0.9226924,-0.92296124,-0.92323005,-0.9236333,-0.9237677,-0.92349887,-0.92323005,-0.92309564,-0.9228268,-0.922558,-0.9222892,-0.9222892,-0.9222892,-0.9222892,-0.9221548,-0.9220204,-0.9220204,-0.92188597,-0.92148274,-0.92134833,-0.92188597,-0.9222892,-0.9221548,-0.92161715,-0.92148274,-0.9206763,-0.9189289,-0.91758484,-0.9170472,-0.91650957,-0.9169128,-0.9182569,-0.9186601,-0.9182569,-0.9183913,-0.9197354,-0.92148274,-0.9224236,-0.9224236,-0.9221548,-0.92175156,-0.92161715,-0.92161715,-0.9221548,-0.9224236,-0.9224236,-0.9224236,-0.9221548,-0.9220204,-0.922558,-0.92336446,-0.92349887,-0.92296124,-0.9221548,-0.9206763,-0.91960096,-0.9197354,-0.9209451,-0.9224236,-0.92349887,-0.9236333,-0.92309564,-0.9228268,-0.92309564,-0.92309564,-0.922558,-0.9221548,-0.92188597,-0.9220204,-0.9221548,-0.9221548,-0.9222892,-0.9222892,-0.9224236,-0.9224236,-0.922558,-0.9226924,-0.9226924,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.92309564,-0.92323005,-0.92323005,-0.92336446,-0.92349887,-0.92349887,-0.92336446,-0.92349887,-0.92349887,-0.92349887,-0.92349887,-0.9237677,-0.9239021,-0.9237677,-0.9237677,-0.9239021,-0.9237677,-0.9241709,-0.92591834,-0.9283377,-0.929413,-0.9280689,-0.9255151,-0.9241709,-0.9244398,-0.9244398,-0.92349887,-0.922558,-0.9220204,-0.9212139,-0.9209451,-0.9224236,-0.9249775,-0.9268592,-0.9282033,-0.92968184,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.92968184,-0.929413,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9288754,-0.9280689,-0.929413,-0.92968184,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.92981625,-0.9292786,-0.9284721,-0.92753124,-0.9267248,-0.92605275,-0.9247086,-0.92296124,-0.9221548,-0.92336446,-0.9245742,-0.9249775,-0.92618716,-0.9283377,-0.9295474,-0.9290098,-0.9269936,-0.9247086,-0.9236333,-0.9236333,-0.9237677,-0.9236333,-0.92349887,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92323005,-0.92323005,-0.92323005,-0.92309564,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.9228268,-0.9228268,-0.9228268,-0.9226924,-0.9226924,-0.9226924,-0.9228268,-0.9226924,-0.922558,-0.922558,-0.922558,-0.922558,-0.9224236,-0.9222892,-0.9222892,-0.9224236,-0.922558,-0.922558,-0.9228268,-0.92296124,-0.9228268,-0.92296124,-0.92349887,-0.9237677,-0.92349887,-0.92336446,-0.92323005,-0.9228268,-0.9222892,-0.9222892,-0.9226924,-0.922558,-0.9221548,-0.9220204,-0.9221548,-0.9220204,-0.92175156,-0.92175156,-0.9220204,-0.9224236,-0.922558,-0.922558,-0.9221548,-0.92188597,-0.92134833,-0.9198698,-0.91758484,-0.91624075,-0.916644,-0.917316,-0.91758484,-0.9182569,-0.9185257,-0.91933215,-0.9210795,-0.9222892,-0.9222892,-0.9220204,-0.9221548,-0.9221548,-0.9220204,-0.9220204,-0.9224236,-0.9226924,-0.9226924,-0.922558,-0.9221548,-0.9222892,-0.92309564,-0.9236333,-0.92349887,-0.92323005,-0.9228268,-0.9222892,-0.92188597,-0.9224236,-0.92336446,-0.9240365,-0.9239021,-0.92336446,-0.92296124,-0.92296124,-0.9228268,-0.9222892,-0.9220204,-0.9220204,-0.9221548,-0.9221548,-0.9222892,-0.9222892,-0.9224236,-0.9224236,-0.9224236,-0.9226924,-0.9228268,-0.9228268,-0.9228268,-0.9226924,-0.92296124,-0.92323005,-0.92323005,-0.92323005,-0.92336446,-0.92349887,-0.92349887,-0.92349887,-0.92349887,-0.92336446,-0.92323005,-0.92336446,-0.9236333,-0.9237677,-0.9236333,-0.9236333,-0.9237677,-0.9236333,-0.9236333,-0.9239021,-0.9239021,-0.9244398,-0.92632157,-0.928741,-0.929413,-0.92739683,-0.9251119,-0.9244398,-0.9247086,-0.9240365,-0.92296124,-0.9220204,-0.9212139,-0.9208107,-0.9212139,-0.9228268,-0.9251119,-0.9267248,-0.9280689,-0.9295474,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.92981625,-0.9292786,-0.9292786,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9292786,-0.9291442,-0.93008506,-0.93008506,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.92981625,-0.9292786,-0.9282033,-0.9269936,-0.9265904,-0.92618716,-0.9248431,-0.92296124,-0.92161715,-0.9222892,-0.9243054,-0.9251119,-0.9256495,-0.92753124,-0.9292786,-0.9292786,-0.92766565,-0.9252463,-0.9237677,-0.9236333,-0.9237677,-0.9236333,-0.92349887,-0.92336446,-0.92349887,-0.92349887,-0.92349887,-0.92349887,-0.92349887,-0.92349887,-0.92336446,-0.92323005,-0.92309564,-0.92296124,-0.92296124,-0.92296124,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9226924,-0.922558,-0.922558,-0.9226924,-0.9226924,-0.922558,-0.9222892,-0.9222892,-0.9222892,-0.9224236,-0.922558,-0.92296124,-0.92323005,-0.92323005,-0.92309564,-0.92349887,-0.9236333,-0.92349887,-0.92336446,-0.92309564,-0.922558,-0.9221548,-0.9224236,-0.922558,-0.9224236,-0.9221548,-0.9221548,-0.9221548,-0.92188597,-0.92175156,-0.92175156,-0.92188597,-0.92175156,-0.92175156,-0.9220204,-0.9221548,-0.9221548,-0.9221548,-0.9209451,-0.91771924,-0.91556865,-0.9157031,-0.9157031,-0.91543424,-0.916644,-0.91919774,-0.92148274,-0.9224236,-0.9226924,-0.9224236,-0.9220204,-0.9220204,-0.9220204,-0.92175156,-0.92175156,-0.9220204,-0.9222892,-0.922558,-0.9226924,-0.9224236,-0.9221548,-0.9226924,-0.92336446,-0.9236333,-0.9236333,-0.9237677,-0.9237677,-0.9236333,-0.9237677,-0.9241709,-0.9243054,-0.9240365,-0.92336446,-0.92309564,-0.9228268,-0.922558,-0.9222892,-0.9221548,-0.9221548,-0.9220204,-0.9220204,-0.9221548,-0.9224236,-0.9224236,-0.9222892,-0.9224236,-0.922558,-0.9226924,-0.92296124,-0.92296124,-0.9226924,-0.922558,-0.9226924,-0.9226924,-0.922558,-0.9226924,-0.92296124,-0.92309564,-0.92309564,-0.92336446,-0.92349887,-0.92349887,-0.92349887,-0.92349887,-0.92349887,-0.9236333,-0.9236333,-0.9236333,-0.9236333,-0.9237677,-0.9239021,-0.9241709,-0.9249775,-0.927128,-0.9291442,-0.9291442,-0.9269936,-0.9251119,-0.9245742,-0.9244398,-0.9236333,-0.9226924,-0.9220204,-0.92148274,-0.9210795,-0.92134833,-0.92296124,-0.9251119,-0.9265904,-0.92793447,-0.9295474,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.93008506,-0.92995065,-0.92981625,-0.9290098,-0.9292786,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92981625,-0.92968184,-0.9302195,-0.93008506,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.92995065,-0.9290098,-0.92780006,-0.9267248,-0.926456,-0.92632157,-0.9245742,-0.9226924,-0.92175156,-0.9224236,-0.9243054,-0.9252463,-0.9252463,-0.9265904,-0.928741,-0.929413,-0.9283377,-0.9255151,-0.9226924,-0.9224236,-0.9236333,-0.9239021,-0.92336446,-0.92323005,-0.92336446,-0.9236333,-0.9236333,-0.9236333,-0.9236333,-0.92349887,-0.92349887,-0.92336446,-0.92323005,-0.92309564,-0.92296124,-0.9228268,-0.9228268,-0.9228268,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.9228268,-0.9228268,-0.9226924,-0.9226924,-0.922558,-0.922558,-0.922558,-0.922558,-0.9224236,-0.9224236,-0.9224236,-0.9224236,-0.9224236,-0.9228268,-0.92323005,-0.9236333,-0.9239021,-0.9237677,-0.9237677,-0.9236333,-0.92323005,-0.9228268,-0.9222892,-0.9221548,-0.9224236,-0.9224236,-0.9224236,-0.9222892,-0.9221548,-0.9220204,-0.92188597,-0.92161715,-0.92148274,-0.92134833,-0.92148274,-0.92188597,-0.9221548,-0.9221548,-0.9224236,-0.9226924,-0.92161715,-0.9187945,-0.9169128,-0.91650957,-0.91543424,-0.91476214,-0.9171816,-0.9208107,-0.922558,-0.9226924,-0.922558,-0.9224236,-0.9222892,-0.9221548,-0.9220204,-0.92161715,-0.92148274,-0.92188597,-0.9221548,-0.9222892,-0.922558,-0.9226924,-0.9224236,-0.9224236,-0.9228268,-0.92336446,-0.92349887,-0.9237677,-0.9239021,-0.9240365,-0.9241709,-0.9243054,-0.9243054,-0.9240365,-0.9236333,-0.92323005,-0.9228268,-0.922558,-0.9222892,-0.9221548,-0.9220204,-0.9220204,-0.9220204,-0.9224236,-0.922558,-0.922558,-0.9222892,-0.9222892,-0.922558,-0.9226924,-0.9226924,-0.9228268,-0.9228268,-0.9224236,-0.9221548,-0.9220204,-0.9220204,-0.9221548,-0.9222892,-0.9224236,-0.9224236,-0.922558,-0.92296124,-0.92349887,-0.9236333,-0.9236333,-0.9236333,-0.9239021,-0.9239021,-0.9239021,-0.9237677,-0.9237677,-0.9241709,-0.9244398,-0.9252463,-0.9272624,-0.9291442,-0.928741,-0.9265904,-0.9251119,-0.9247086,-0.9241709,-0.92323005,-0.9224236,-0.92175156,-0.92134833,-0.9212139,-0.92161715,-0.92323005,-0.9251119,-0.92632157,-0.92766565,-0.929413,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.9290098,-0.929413,-0.9306227,-0.9306227,-0.9306227,-0.9303539,-0.9290098,-0.9291442,-0.93008506,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.92995065,-0.92860657,-0.92739683,-0.9267248,-0.926456,-0.92605275,-0.9241709,-0.9221548,-0.92148274,-0.9220204,-0.9237677,-0.9251119,-0.9249775,-0.9255151,-0.92793447,-0.92968184,-0.9288754,-0.92578393,-0.9224236,-0.9221548,-0.9237677,-0.9241709,-0.92349887,-0.92336446,-0.92349887,-0.9236333,-0.92336446,-0.92323005,-0.92336446,-0.92349887,-0.92336446,-0.92323005,-0.92323005,-0.92323005,-0.92309564,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.92309564,-0.92296124,-0.92296124,-0.92296124,-0.9228268,-0.9228268,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.922558,-0.9224236,-0.9224236,-0.9224236,-0.922558,-0.9228268,-0.92323005,-0.9236333,-0.9237677,-0.9239021,-0.9237677,-0.92349887,-0.92309564,-0.922558,-0.9224236,-0.9224236,-0.9226924,-0.9226924,-0.922558,-0.9224236,-0.9222892,-0.9220204,-0.92188597,-0.92161715,-0.92148274,-0.92148274,-0.92175156,-0.9221548,-0.9222892,-0.9220204,-0.9222892,-0.9228268,-0.9222892,-0.9208107,-0.9206763,-0.9212139,-0.9210795,-0.9209451,-0.9212139,-0.92148274,-0.9220204,-0.922558,-0.922558,-0.9221548,-0.9220204,-0.92188597,-0.9220204,-0.92188597,-0.92175156,-0.92175156,-0.9220204,-0.9221548,-0.9222892,-0.922558,-0.922558,-0.9222892,-0.9224236,-0.92323005,-0.9237677,-0.9240365,-0.9240365,-0.9240365,-0.9243054,-0.9243054,-0.9241709,-0.9239021,-0.9236333,-0.92323005,-0.9228268,-0.922558,-0.9222892,-0.9221548,-0.9220204,-0.9220204,-0.9221548,-0.9222892,-0.9224236,-0.9224236,-0.9222892,-0.9224236,-0.9226924,-0.922558,-0.922558,-0.9226924,-0.9228268,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.9228268,-0.922558,-0.9224236,-0.92296124,-0.9236333,-0.9240365,-0.9239021,-0.9236333,-0.92349887,-0.9236333,-0.9237677,-0.9240365,-0.9241709,-0.9243054,-0.9252463,-0.92739683,-0.9292786,-0.92860657,-0.926456,-0.9247086,-0.9239021,-0.92349887,-0.92309564,-0.9222892,-0.9212139,-0.9208107,-0.9210795,-0.9220204,-0.9237677,-0.9253807,-0.92618716,-0.92766565,-0.929413,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.92995065,-0.93008506,-0.92981625,-0.92860657,-0.929413,-0.9306227,-0.9306227,-0.9306227,-0.9302195,-0.9288754,-0.92860657,-0.92995065,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.92981625,-0.9284721,-0.9272624,-0.9267248,-0.92632157,-0.9256495,-0.9240365,-0.9221548,-0.92148274,-0.9220204,-0.92336446,-0.9247086,-0.9248431,-0.9247086,-0.9269936,-0.9292786,-0.9292786,-0.92739683,-0.9252463,-0.9236333,-0.92349887,-0.9239021,-0.9237677,-0.9236333,-0.9236333,-0.92349887,-0.92323005,-0.92323005,-0.92349887,-0.9237677,-0.92349887,-0.92323005,-0.92309564,-0.92309564,-0.92309564,-0.92296124,-0.92296124,-0.92323005,-0.92323005,-0.92309564,-0.92296124,-0.9228268,-0.92296124,-0.92296124,-0.92296124,-0.9228268,-0.9226924,-0.922558,-0.9226924,-0.9226924,-0.922558,-0.9224236,-0.922558,-0.922558,-0.9224236,-0.922558,-0.92296124,-0.9236333,-0.9239021,-0.9239021,-0.9236333,-0.92336446,-0.92296124,-0.922558,-0.922558,-0.922558,-0.922558,-0.922558,-0.922558,-0.9224236,-0.9222892,-0.9221548,-0.92188597,-0.92175156,-0.92175156,-0.92188597,-0.9220204,-0.9221548,-0.9222892,-0.9220204,-0.9220204,-0.9224236,-0.9221548,-0.9212139,-0.92148274,-0.9224236,-0.922558,-0.92175156,-0.9212139,-0.92175156,-0.922558,-0.9228268,-0.9226924,-0.9221548,-0.92188597,-0.92148274,-0.92148274,-0.92188597,-0.9221548,-0.9220204,-0.9220204,-0.9221548,-0.9221548,-0.9224236,-0.9226924,-0.922558,-0.9224236,-0.92296124,-0.9236333,-0.9237677,-0.9239021,-0.9241709,-0.9243054,-0.9243054,-0.9240365,-0.9237677,-0.92349887,-0.92336446,-0.9228268,-0.9222892,-0.9221548,-0.9222892,-0.9222892,-0.9221548,-0.9222892,-0.9222892,-0.9222892,-0.9224236,-0.9224236,-0.922558,-0.9226924,-0.9226924,-0.9226924,-0.9228268,-0.92296124,-0.92296124,-0.92309564,-0.92296124,-0.92296124,-0.92309564,-0.92323005,-0.92323005,-0.92349887,-0.92349887,-0.92349887,-0.92336446,-0.92349887,-0.92349887,-0.9237677,-0.9239021,-0.9237677,-0.92349887,-0.9239021,-0.9241709,-0.9241709,-0.9245742,-0.92632157,-0.928741,-0.9295474,-0.9282033,-0.92605275,-0.9240365,-0.9228268,-0.9224236,-0.922558,-0.9224236,-0.92188597,-0.9210795,-0.9208107,-0.92175156,-0.9237677,-0.9253807,-0.92618716,-0.92766565,-0.9295474,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.92981625,-0.92860657,-0.92968184,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.92968184,-0.9292786,-0.93008506,-0.9302195,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.92968184,-0.9284721,-0.92739683,-0.9267248,-0.92605275,-0.9252463,-0.9240365,-0.922558,-0.92188597,-0.92188597,-0.9228268,-0.9243054,-0.9249775,-0.9245742,-0.92578393,-0.9283377,-0.9291442,-0.928741,-0.92753124,-0.9251119,-0.92349887,-0.92349887,-0.9237677,-0.9236333,-0.92349887,-0.92349887,-0.92349887,-0.92349887,-0.9236333,-0.9236333,-0.92349887,-0.92336446,-0.92323005,-0.92323005,-0.92323005,-0.92309564,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.92323005,-0.92309564,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.9228268,-0.9226924,-0.9226924,-0.9226924,-0.922558,-0.9224236,-0.922558,-0.922558,-0.922558,-0.9226924,-0.92323005,-0.9236333,-0.9237677,-0.9237677,-0.92349887,-0.92309564,-0.9226924,-0.922558,-0.922558,-0.9224236,-0.9222892,-0.9224236,-0.922558,-0.9224236,-0.9222892,-0.9221548,-0.9220204,-0.92188597,-0.92188597,-0.9220204,-0.9220204,-0.9221548,-0.9221548,-0.9220204,-0.9221548,-0.922558,-0.9222892,-0.92161715,-0.9212139,-0.9210795,-0.9209451,-0.92134833,-0.9220204,-0.9224236,-0.9226924,-0.92296124,-0.9228268,-0.922558,-0.9220204,-0.92134833,-0.92134833,-0.92188597,-0.9221548,-0.9222892,-0.9222892,-0.9222892,-0.9222892,-0.9224236,-0.9226924,-0.9226924,-0.9224236,-0.922558,-0.92309564,-0.9236333,-0.9240365,-0.9241709,-0.9241709,-0.9241709,-0.9241709,-0.9239021,-0.9236333,-0.92323005,-0.9228268,-0.9224236,-0.9221548,-0.9222892,-0.9222892,-0.9224236,-0.9224236,-0.922558,-0.9224236,-0.9221548,-0.9222892,-0.922558,-0.9226924,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.92296124,-0.92296124,-0.92296124,-0.92309564,-0.92323005,-0.92323005,-0.92323005,-0.92336446,-0.92349887,-0.9236333,-0.9237677,-0.9236333,-0.92349887,-0.9237677,-0.9241709,-0.9240365,-0.9237677,-0.9239021,-0.9240365,-0.9240365,-0.9251119,-0.92753124,-0.929413,-0.9291442,-0.9272624,-0.9255151,-0.9244398,-0.92336446,-0.9226924,-0.9224236,-0.9221548,-0.92175156,-0.9209451,-0.92027307,-0.92148274,-0.9239021,-0.9253807,-0.92618716,-0.92753124,-0.9295474,-0.9303539,-0.9304883,-0.9304883,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.9302195,-0.92995065,-0.92860657,-0.93008506,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92968184,-0.929413,-0.93008506,-0.9302195,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9302195,-0.9295474,-0.9283377,-0.9272624,-0.9265904,-0.92578393,-0.9247086,-0.9236333,-0.9226924,-0.9220204,-0.92188597,-0.9224236,-0.9237677,-0.9249775,-0.9247086,-0.9249775,-0.92739683,-0.9291442,-0.9291442,-0.9290098,-0.92739683,-0.9244398,-0.92296124,-0.92323005,-0.9237677,-0.9236333,-0.92349887,-0.92349887,-0.92349887,-0.9236333,-0.9236333,-0.92349887,-0.92336446,-0.92336446,-0.92323005,-0.92323005,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92323005,-0.92323005,-0.92323005,-0.92296124,-0.9228268,-0.9228268,-0.9228268,-0.9226924,-0.922558,-0.922558,-0.9226924,-0.922558,-0.922558,-0.922558,-0.922558,-0.922558,-0.9228268,-0.92323005,-0.92349887,-0.92349887,-0.92349887,-0.92336446,-0.9228268,-0.922558,-0.922558,-0.9226924,-0.922558,-0.9224236,-0.9224236,-0.9224236,-0.9224236,-0.9222892,-0.9221548,-0.9221548,-0.9220204,-0.92188597,-0.92188597,-0.9221548,-0.9222892,-0.9222892,-0.9222892,-0.9224236,-0.9226924,-0.9228268,-0.9222892,-0.92134833,-0.9209451,-0.92161715,-0.922558,-0.9226924,-0.922558,-0.9228268,-0.92296124,-0.9228268,-0.9224236,-0.92188597,-0.9210795,-0.9212139,-0.92188597,-0.9222892,-0.9221548,-0.9221548,-0.9224236,-0.9224236,-0.9224236,-0.9224236,-0.9226924,-0.922558,-0.9224236,-0.9226924,-0.92323005,-0.9237677,-0.9240365,-0.9239021,-0.9237677,-0.9237677,-0.9237677,-0.92349887,-0.92323005,-0.9228268,-0.9224236,-0.9222892,-0.9222892,-0.9224236,-0.922558,-0.9226924,-0.9226924,-0.922558,-0.922558,-0.922558,-0.922558,-0.922558,-0.9226924,-0.9228268,-0.9228268,-0.9226924,-0.92296124,-0.92309564,-0.92309564,-0.92296124,-0.92296124,-0.92296124,-0.92309564,-0.92323005,-0.92323005,-0.92336446,-0.92349887,-0.9236333,-0.9236333,-0.9236333,-0.9237677,-0.9237677,-0.9237677,-0.9240365,-0.9240365,-0.9244398,-0.92591834,-0.9283377,-0.92968184,-0.9290098,-0.9269936,-0.92578393,-0.9249775,-0.9240365,-0.92323005,-0.922558,-0.92148274,-0.9209451,-0.9206763,-0.9204075,-0.92148274,-0.9240365,-0.9253807,-0.92618716,-0.92780006,-0.92968184,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.92968184,-0.9302195,-0.92995065,-0.92753124,-0.9302195,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9290098,-0.9291442,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9302195,-0.9292786,-0.9280689,-0.9269936,-0.92632157,-0.9255151,-0.9244398,-0.92349887,-0.9228268,-0.9221548,-0.92188597,-0.92188597,-0.92309564,-0.9247086,-0.9248431,-0.9244398,-0.92632157,-0.928741,-0.9291442,-0.9288754,-0.92860657,-0.92605275,-0.92296124,-0.9224236,-0.92349887,-0.9239021,-0.9236333,-0.92349887,-0.9236333,-0.9236333,-0.9236333,-0.92349887,-0.92323005,-0.92323005,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92323005,-0.92323005,-0.92336446,-0.92323005,-0.92296124,-0.92296124,-0.9228268,-0.9226924,-0.9224236,-0.922558,-0.9226924,-0.9226924,-0.922558,-0.922558,-0.922558,-0.9226924,-0.9226924,-0.92296124,-0.92323005,-0.92336446,-0.92336446,-0.92309564,-0.9228268,-0.9226924,-0.9226924,-0.9226924,-0.9224236,-0.9222892,-0.9221548,-0.9221548,-0.9222892,-0.9222892,-0.9221548,-0.9221548,-0.9221548,-0.92188597,-0.92188597,-0.9220204,-0.9222892,-0.9221548,-0.9221548,-0.9222892,-0.922558,-0.922558,-0.9220204,-0.9208107,-0.9206763,-0.9220204,-0.92309564,-0.9226924,-0.9221548,-0.9228268,-0.92323005,-0.9228268,-0.9224236,-0.9220204,-0.9210795,-0.9210795,-0.9220204,-0.9224236,-0.9224236,-0.9224236,-0.9224236,-0.9224236,-0.922558,-0.922558,-0.922558,-0.9226924,-0.922558,-0.922558,-0.92296124,-0.92349887,-0.9237677,-0.9237677,-0.92349887,-0.92336446,-0.92336446,-0.92336446,-0.92309564,-0.9226924,-0.9224236,-0.9222892,-0.9224236,-0.922558,-0.922558,-0.9226924,-0.9226924,-0.922558,-0.922558,-0.9224236,-0.922558,-0.922558,-0.9226924,-0.9228268,-0.9228268,-0.92296124,-0.92309564,-0.92309564,-0.92309564,-0.92296124,-0.9228268,-0.9228268,-0.92296124,-0.92323005,-0.92323005,-0.92349887,-0.9236333,-0.9236333,-0.9237677,-0.9239021,-0.9237677,-0.9237677,-0.9239021,-0.9240365,-0.9243054,-0.9252463,-0.927128,-0.9288754,-0.929413,-0.92860657,-0.9267248,-0.9251119,-0.9241709,-0.92349887,-0.92309564,-0.9224236,-0.9212139,-0.9204075,-0.9205419,-0.9204075,-0.92161715,-0.9241709,-0.9253807,-0.92632157,-0.9280689,-0.92981625,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.92981625,-0.9302195,-0.92968184,-0.92753124,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92793447,-0.928741,-0.92968184,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9302195,-0.9292786,-0.92793447,-0.9268592,-0.92618716,-0.9256495,-0.9245742,-0.92323005,-0.9221548,-0.92161715,-0.92134833,-0.92148274,-0.9224236,-0.9240365,-0.9245742,-0.9237677,-0.9248431,-0.92780006,-0.9291442,-0.9290098,-0.9290098,-0.92766565,-0.9243054,-0.9224236,-0.92296124,-0.9239021,-0.9237677,-0.9236333,-0.9236333,-0.9236333,-0.92349887,-0.92349887,-0.92336446,-0.92323005,-0.92336446,-0.92349887,-0.92336446,-0.92323005,-0.92309564,-0.92309564,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92309564,-0.92296124,-0.92296124,-0.9228268,-0.9226924,-0.922558,-0.922558,-0.922558,-0.922558,-0.922558,-0.922558,-0.9226924,-0.9226924,-0.9228268,-0.92296124,-0.92323005,-0.92323005,-0.92296124,-0.9226924,-0.9226924,-0.9228268,-0.9226924,-0.9224236,-0.9222892,-0.9222892,-0.9224236,-0.9222892,-0.9220204,-0.9221548,-0.9221548,-0.9221548,-0.9220204,-0.92188597,-0.92188597,-0.9222892,-0.9226924,-0.9226924,-0.9224236,-0.9224236,-0.9224236,-0.92148274,-0.9206763,-0.92175156,-0.92336446,-0.92336446,-0.9220204,-0.92175156,-0.92323005,-0.9237677,-0.92296124,-0.9224236,-0.9220204,-0.92134833,-0.92134833,-0.9220204,-0.9224236,-0.922558,-0.9224236,-0.9224236,-0.9224236,-0.922558,-0.922558,-0.922558,-0.922558,-0.922558,-0.922558,-0.9228268,-0.92336446,-0.9236333,-0.9237677,-0.92349887,-0.92309564,-0.92309564,-0.92323005,-0.92296124,-0.922558,-0.9222892,-0.9222892,-0.9224236,-0.922558,-0.9226924,-0.922558,-0.922558,-0.9224236,-0.922558,-0.922558,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.9228268,-0.92296124,-0.92296124,-0.9228268,-0.9228268,-0.92296124,-0.92296124,-0.92296124,-0.92309564,-0.92336446,-0.92349887,-0.92349887,-0.9236333,-0.9236333,-0.9236333,-0.9236333,-0.9236333,-0.9237677,-0.9240365,-0.9240365,-0.9243054,-0.92578393,-0.9280689,-0.9295474,-0.929413,-0.9280689,-0.92605275,-0.9243054,-0.92336446,-0.92296124,-0.9228268,-0.9222892,-0.92134833,-0.9208107,-0.9206763,-0.9204075,-0.92148274,-0.9239021,-0.9252463,-0.92632157,-0.9282033,-0.92995065,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.92968184,-0.9302195,-0.9292786,-0.92753124,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9284721,-0.9291442,-0.9292786,-0.92995065,-0.9303539,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.929413,-0.92793447,-0.9267248,-0.92618716,-0.9253807,-0.9241709,-0.9226924,-0.92161715,-0.92148274,-0.92188597,-0.9220204,-0.9224236,-0.9237677,-0.9247086,-0.92349887,-0.92323005,-0.92618716,-0.9291442,-0.9291442,-0.928741,-0.9284721,-0.92632157,-0.9237677,-0.92323005,-0.9236333,-0.9237677,-0.9237677,-0.9237677,-0.9237677,-0.9236333,-0.92349887,-0.92336446,-0.92336446,-0.92349887,-0.92349887,-0.92349887,-0.92336446,-0.92349887,-0.92349887,-0.92336446,-0.92323005,-0.92309564,-0.92309564,-0.92309564,-0.92296124,-0.92296124,-0.92296124,-0.9228268,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.922558,-0.9226924,-0.922558,-0.9224236,-0.922558,-0.92296124,-0.92323005,-0.92323005,-0.92296124,-0.9226924,-0.922558,-0.9226924,-0.922558,-0.922558,-0.922558,-0.922558,-0.9222892,-0.9222892,-0.9222892,-0.9221548,-0.9221548,-0.9221548,-0.9221548,-0.9220204,-0.9220204,-0.9221548,-0.922558,-0.9226924,-0.922558,-0.9226924,-0.922558,-0.92148274,-0.92148274,-0.9228268,-0.92349887,-0.9228268,-0.92161715,-0.9221548,-0.9237677,-0.9237677,-0.9226924,-0.9222892,-0.9221548,-0.92175156,-0.92161715,-0.9220204,-0.9222892,-0.9224236,-0.9224236,-0.9224236,-0.9224236,-0.9224236,-0.9224236,-0.922558,-0.9226924,-0.922558,-0.9224236,-0.9226924,-0.92309564,-0.92336446,-0.92349887,-0.92336446,-0.92309564,-0.92296124,-0.92309564,-0.9228268,-0.9222892,-0.9221548,-0.9222892,-0.922558,-0.9226924,-0.9226924,-0.922558,-0.922558,-0.922558,-0.922558,-0.922558,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.9228268,-0.92296124,-0.92296124,-0.92309564,-0.92309564,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92336446,-0.92349887,-0.9236333,-0.9236333,-0.9236333,-0.9239021,-0.9237677,-0.9236333,-0.9239021,-0.9241709,-0.9241709,-0.9245742,-0.926456,-0.92860657,-0.92968184,-0.9291442,-0.92739683,-0.9255151,-0.9239021,-0.92296124,-0.9226924,-0.922558,-0.9221548,-0.92161715,-0.9210795,-0.9204075,-0.92013866,-0.92148274,-0.9239021,-0.9252463,-0.9265904,-0.9284721,-0.93008506,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.92981625,-0.9290098,-0.9283377,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9292786,-0.92995065,-0.92981625,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9295474,-0.92793447,-0.9265904,-0.92578393,-0.9245742,-0.92296124,-0.9220204,-0.92161715,-0.92161715,-0.9220204,-0.9222892,-0.922558,-0.9237677,-0.9248431,-0.92323005,-0.92161715,-0.9241709,-0.9284721,-0.9291442,-0.92753124,-0.92739683,-0.92766565,-0.92605275,-0.9241709,-0.9237677,-0.9239021,-0.9237677,-0.9237677,-0.9236333,-0.9236333,-0.9236333,-0.92349887,-0.92336446,-0.92349887,-0.92349887,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92323005,-0.92309564,-0.92309564,-0.92309564,-0.92296124,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.922558,-0.9226924,-0.9228268,-0.92296124,-0.9228268,-0.9226924,-0.9226924,-0.922558,-0.922558,-0.922558,-0.922558,-0.922558,-0.922558,-0.9224236,-0.9224236,-0.922558,-0.9224236,-0.9221548,-0.9221548,-0.9222892,-0.9221548,-0.92188597,-0.92175156,-0.92188597,-0.9220204,-0.9224236,-0.92296124,-0.9226924,-0.92134833,-0.9220204,-0.92296124,-0.9228268,-0.92296124,-0.9221548,-0.9228268,-0.9240365,-0.92349887,-0.9224236,-0.9221548,-0.9222892,-0.9220204,-0.92161715,-0.92188597,-0.9224236,-0.9224236,-0.9224236,-0.9224236,-0.9224236,-0.9224236,-0.9224236,-0.9226924,-0.9228268,-0.9228268,-0.922558,-0.922558,-0.92296124,-0.92309564,-0.92323005,-0.92323005,-0.92309564,-0.9228268,-0.922558,-0.9224236,-0.9222892,-0.9224236,-0.922558,-0.9226924,-0.9226924,-0.922558,-0.922558,-0.922558,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.922558,-0.9226924,-0.9228268,-0.92296124,-0.92296124,-0.92309564,-0.92323005,-0.92349887,-0.92336446,-0.92323005,-0.92323005,-0.92336446,-0.92349887,-0.9236333,-0.9236333,-0.9236333,-0.9237677,-0.9237677,-0.9236333,-0.9237677,-0.9240365,-0.9240365,-0.9243054,-0.9255151,-0.92739683,-0.928741,-0.9291442,-0.9282033,-0.92632157,-0.9247086,-0.9237677,-0.92309564,-0.9226924,-0.9222892,-0.92161715,-0.9210795,-0.9208107,-0.92000425,-0.9197354,-0.92148274,-0.9239021,-0.9253807,-0.9267248,-0.928741,-0.93008506,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.92981625,-0.928741,-0.9291442,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9283377,-0.92981625,-0.92981625,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.92968184,-0.92780006,-0.926456,-0.9253807,-0.9237677,-0.9221548,-0.92188597,-0.92188597,-0.92161715,-0.92175156,-0.9221548,-0.922558,-0.92349887,-0.9244398,-0.9228268,-0.92000425,-0.92175156,-0.9272624,-0.9295474,-0.927128,-0.9253807,-0.9268592,-0.92780006,-0.92618716,-0.9243054,-0.9239021,-0.9239021,-0.9237677,-0.9239021,-0.9237677,-0.9236333,-0.92349887,-0.92349887,-0.92349887,-0.92349887,-0.92336446,-0.92349887,-0.9236333,-0.9236333,-0.92349887,-0.92336446,-0.92323005,-0.92323005,-0.92323005,-0.92309564,-0.92296124,-0.92296124,-0.9228268,-0.9228268,-0.9228268,-0.9226924,-0.9226924,-0.9228268,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.922558,-0.922558,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.922558,-0.922558,-0.922558,-0.922558,-0.9224236,-0.922558,-0.9228268,-0.922558,-0.9222892,-0.9222892,-0.9222892,-0.9222892,-0.9222892,-0.9222892,-0.9220204,-0.92175156,-0.9222892,-0.92309564,-0.922558,-0.9210795,-0.9221548,-0.92309564,-0.92323005,-0.9236333,-0.922558,-0.92349887,-0.9243054,-0.92336446,-0.9221548,-0.9220204,-0.9222892,-0.9221548,-0.92161715,-0.92188597,-0.922558,-0.9226924,-0.9224236,-0.9222892,-0.9224236,-0.9224236,-0.922558,-0.9228268,-0.92296124,-0.9228268,-0.9226924,-0.922558,-0.9226924,-0.92296124,-0.92309564,-0.92309564,-0.92309564,-0.92296124,-0.9226924,-0.9222892,-0.9222892,-0.9222892,-0.922558,-0.9226924,-0.9226924,-0.922558,-0.922558,-0.9226924,-0.9228268,-0.9228268,-0.9228268,-0.9226924,-0.9226924,-0.9226924,-0.92296124,-0.92309564,-0.92309564,-0.92309564,-0.92323005,-0.92336446,-0.92336446,-0.92323005,-0.92323005,-0.92336446,-0.92349887,-0.9236333,-0.9237677,-0.9239021,-0.9240365,-0.9239021,-0.9239021,-0.9240365,-0.9241709,-0.9240365,-0.9248431,-0.9267248,-0.9283377,-0.9291442,-0.9290098,-0.92766565,-0.9256495,-0.9241709,-0.92349887,-0.92296124,-0.9226924,-0.9221548,-0.9210795,-0.9204075,-0.9204075,-0.92000425,-0.9198698,-0.92148274,-0.9239021,-0.9253807,-0.9268592,-0.9290098,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.92968184,-0.92981625,-0.92968184,-0.9284721,-0.9288754,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9303539,-0.92860657,-0.92995065,-0.92968184,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.93008506,-0.93008506,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9295474,-0.92753124,-0.92618716,-0.9252463,-0.92336446,-0.92175156,-0.92175156,-0.9220204,-0.92161715,-0.92134833,-0.9221548,-0.9228268,-0.92336446,-0.9241709,-0.9237677,-0.92148274,-0.9209451,-0.9247086,-0.9291442,-0.9288754,-0.9253807,-0.9249775,-0.92766565,-0.9282033,-0.92578393,-0.9239021,-0.9237677,-0.9239021,-0.9239021,-0.9237677,-0.9236333,-0.92336446,-0.92336446,-0.92349887,-0.92349887,-0.92336446,-0.92336446,-0.92336446,-0.92349887,-0.92336446,-0.92323005,-0.92309564,-0.92309564,-0.92323005,-0.92323005,-0.92323005,-0.92309564,-0.92296124,-0.92296124,-0.92296124,-0.9226924,-0.9226924,-0.9228268,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.922558,-0.922558,-0.9228268,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.922558,-0.9226924,-0.9226924,-0.922558,-0.922558,-0.9226924,-0.9226924,-0.922558,-0.9224236,-0.9222892,-0.9224236,-0.9222892,-0.92175156,-0.9209451,-0.9212139,-0.9222892,-0.92309564,-0.9224236,-0.9212139,-0.92296124,-0.9243054,-0.9243054,-0.9240365,-0.9226924,-0.9236333,-0.9241709,-0.92309564,-0.9221548,-0.9220204,-0.9222892,-0.9222892,-0.92175156,-0.92161715,-0.922558,-0.9228268,-0.9224236,-0.9221548,-0.9224236,-0.922558,-0.922558,-0.92296124,-0.92296124,-0.9228268,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.92296124,-0.92309564,-0.92309564,-0.9228268,-0.922558,-0.9224236,-0.9224236,-0.922558,-0.922558,-0.9226924,-0.922558,-0.9224236,-0.922558,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.9228268,-0.92296124,-0.92296124,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92323005,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92349887,-0.9236333,-0.9237677,-0.9239021,-0.9239021,-0.9237677,-0.9239021,-0.9240365,-0.9240365,-0.9243054,-0.9256495,-0.92753124,-0.9288754,-0.9292786,-0.9288754,-0.927128,-0.9251119,-0.9237677,-0.92309564,-0.9228268,-0.9226924,-0.9222892,-0.9212139,-0.92027307,-0.9198698,-0.9198698,-0.9204075,-0.9221548,-0.9241709,-0.9252463,-0.9268592,-0.9291442,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.9295474,-0.92860657,-0.9292786,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9302195,-0.9291442,-0.92981625,-0.92995065,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9295474,-0.92753124,-0.92605275,-0.9249775,-0.92336446,-0.92175156,-0.92148274,-0.92175156,-0.92161715,-0.92148274,-0.9221548,-0.92309564,-0.92349887,-0.9240365,-0.9244398,-0.92309564,-0.92134833,-0.9226924,-0.9269936,-0.929413,-0.9280689,-0.9248431,-0.9249775,-0.92766565,-0.92766565,-0.9249775,-0.92349887,-0.9236333,-0.9239021,-0.9239021,-0.9237677,-0.92349887,-0.92349887,-0.92349887,-0.9236333,-0.92349887,-0.92323005,-0.92309564,-0.92323005,-0.92336446,-0.92323005,-0.92309564,-0.92323005,-0.92323005,-0.92309564,-0.92296124,-0.92309564,-0.92309564,-0.92309564,-0.92296124,-0.9228268,-0.9226924,-0.9228268,-0.9228268,-0.9226924,-0.9226924,-0.9228268,-0.9228268,-0.9226924,-0.9228268,-0.9226924,-0.922558,-0.9226924,-0.9226924,-0.9226924,-0.922558,-0.9226924,-0.9228268,-0.9228268,-0.9226924,-0.9222892,-0.9221548,-0.922558,-0.9224236,-0.9222892,-0.9226924,-0.9221548,-0.92027307,-0.91960096,-0.9209451,-0.9222892,-0.92296124,-0.9222892,-0.92134833,-0.92309564,-0.9256495,-0.92591834,-0.9236333,-0.9222892,-0.9236333,-0.9240365,-0.92296124,-0.9222892,-0.9222892,-0.922558,-0.9224236,-0.92161715,-0.92161715,-0.922558,-0.92296124,-0.922558,-0.9222892,-0.9224236,-0.9226924,-0.922558,-0.9226924,-0.92296124,-0.92296124,-0.9228268,-0.9228268,-0.9226924,-0.922558,-0.9228268,-0.92309564,-0.92309564,-0.9226924,-0.9224236,-0.9222892,-0.9224236,-0.9226924,-0.9228268,-0.9226924,-0.922558,-0.9224236,-0.922558,-0.9226924,-0.9228268,-0.9228268,-0.92296124,-0.92296124,-0.92309564,-0.92323005,-0.92323005,-0.92309564,-0.92309564,-0.92309564,-0.92336446,-0.92336446,-0.92336446,-0.92349887,-0.92349887,-0.92349887,-0.9236333,-0.9236333,-0.9237677,-0.9239021,-0.9237677,-0.9236333,-0.9237677,-0.9239021,-0.9240365,-0.9249775,-0.9265904,-0.9280689,-0.9290098,-0.9292786,-0.9282033,-0.92591834,-0.9241709,-0.92336446,-0.92309564,-0.92296124,-0.9228268,-0.9224236,-0.92161715,-0.9208107,-0.92013866,-0.9198698,-0.9208107,-0.9228268,-0.9243054,-0.9249775,-0.9268592,-0.929413,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.92981625,-0.928741,-0.92968184,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9302195,-0.9295474,-0.92981625,-0.92995065,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.92968184,-0.92766565,-0.92605275,-0.9247086,-0.92296124,-0.92161715,-0.92148274,-0.92188597,-0.9221548,-0.9220204,-0.9221548,-0.9228268,-0.92349887,-0.92336446,-0.92336446,-0.92296124,-0.9221548,-0.9224236,-0.9249775,-0.9283377,-0.928741,-0.92578393,-0.92134833,-0.92336446,-0.92766565,-0.9272624,-0.9243054,-0.92336446,-0.9239021,-0.9241709,-0.9239021,-0.9236333,-0.9236333,-0.9237677,-0.9237677,-0.9236333,-0.9236333,-0.9236333,-0.9236333,-0.92349887,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92323005,-0.92309564,-0.92309564,-0.92336446,-0.92336446,-0.92309564,-0.9228268,-0.9228268,-0.92296124,-0.92296124,-0.9228268,-0.9226924,-0.9226924,-0.9226924,-0.9228268,-0.9228268,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.922558,-0.9226924,-0.9226924,-0.9226924,-0.9228268,-0.922558,-0.92188597,-0.92175156,-0.92175156,-0.92148274,-0.92134833,-0.92134833,-0.9212139,-0.92134833,-0.92175156,-0.9220204,-0.9222892,-0.9220204,-0.92134833,-0.9226924,-0.9255151,-0.92578393,-0.9228268,-0.9220204,-0.92336446,-0.92349887,-0.9226924,-0.922558,-0.922558,-0.922558,-0.922558,-0.92188597,-0.92161715,-0.9222892,-0.922558,-0.9221548,-0.9222892,-0.9228268,-0.9228268,-0.922558,-0.9226924,-0.92296124,-0.92309564,-0.92296124,-0.9228268,-0.9226924,-0.922558,-0.9226924,-0.92296124,-0.9228268,-0.922558,-0.922558,-0.9224236,-0.9224236,-0.9226924,-0.92296124,-0.9228268,-0.922558,-0.922558,-0.9226924,-0.92296124,-0.92296124,-0.92309564,-0.92309564,-0.92323005,-0.92336446,-0.92323005,-0.92309564,-0.92309564,-0.92323005,-0.92323005,-0.92336446,-0.92349887,-0.9236333,-0.9236333,-0.9236333,-0.9236333,-0.9236333,-0.92349887,-0.9236333,-0.9237677,-0.9237677,-0.9237677,-0.9237677,-0.9237677,-0.9244398,-0.92618716,-0.9272624,-0.92780006,-0.928741,-0.9290098,-0.9272624,-0.9248431,-0.9236333,-0.92309564,-0.92296124,-0.92296124,-0.92296124,-0.9224236,-0.92161715,-0.9208107,-0.92000425,-0.9197354,-0.9204075,-0.9222892,-0.9241709,-0.9249775,-0.9269936,-0.9295474,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.92995065,-0.92968184,-0.92995065,-0.9292786,-0.92766565,-0.92968184,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92981625,-0.9292786,-0.92981625,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.92981625,-0.92793447,-0.92605275,-0.9244398,-0.9222892,-0.9208107,-0.9209451,-0.92161715,-0.92188597,-0.92188597,-0.9220204,-0.922558,-0.9228268,-0.9224236,-0.9224236,-0.92336446,-0.92349887,-0.9228268,-0.9237677,-0.927128,-0.9295474,-0.9272624,-0.9205419,-0.91919774,-0.9251119,-0.9284721,-0.92618716,-0.9237677,-0.9240365,-0.9243054,-0.9240365,-0.9237677,-0.9237677,-0.9239021,-0.9237677,-0.92349887,-0.9236333,-0.9236333,-0.9236333,-0.92336446,-0.92336446,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92309564,-0.92309564,-0.92323005,-0.92309564,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.9228268,-0.9226924,-0.9226924,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.92296124,-0.9228268,-0.9222892,-0.92188597,-0.92175156,-0.92161715,-0.92161715,-0.92175156,-0.9221548,-0.9222892,-0.9222892,-0.9221548,-0.9221548,-0.92175156,-0.92148274,-0.922558,-0.9244398,-0.9243054,-0.9224236,-0.9220204,-0.9226924,-0.92296124,-0.9228268,-0.9228268,-0.9226924,-0.9224236,-0.9224236,-0.9224236,-0.9224236,-0.922558,-0.9226924,-0.9222892,-0.9222892,-0.92296124,-0.92296124,-0.9226924,-0.9226924,-0.92296124,-0.92296124,-0.9228268,-0.9228268,-0.9228268,-0.922558,-0.9226924,-0.9228268,-0.9228268,-0.9224236,-0.9224236,-0.922558,-0.922558,-0.9228268,-0.92296124,-0.9228268,-0.922558,-0.9226924,-0.9228268,-0.92309564,-0.92309564,-0.92296124,-0.92296124,-0.92323005,-0.92349887,-0.92336446,-0.92296124,-0.92309564,-0.92349887,-0.9236333,-0.92349887,-0.92349887,-0.9236333,-0.9236333,-0.9237677,-0.9239021,-0.9237677,-0.9236333,-0.9236333,-0.9236333,-0.92349887,-0.9239021,-0.9239021,-0.9239021,-0.9256495,-0.92766565,-0.927128,-0.926456,-0.9280689,-0.92860657,-0.92618716,-0.9240365,-0.9236333,-0.92336446,-0.92296124,-0.92296124,-0.92296124,-0.922558,-0.92148274,-0.9206763,-0.92013866,-0.9197354,-0.92013866,-0.9221548,-0.9241709,-0.9252463,-0.92739683,-0.92995065,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.92981625,-0.93008506,-0.9288754,-0.927128,-0.92995065,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92968184,-0.9291442,-0.92968184,-0.93008506,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.92981625,-0.9280689,-0.92605275,-0.9241709,-0.92188597,-0.92027307,-0.92027307,-0.9208107,-0.9212139,-0.92175156,-0.9222892,-0.9226924,-0.9226924,-0.922558,-0.9228268,-0.9236333,-0.9237677,-0.92323005,-0.92336446,-0.92578393,-0.9288754,-0.9288754,-0.9241709,-0.92027307,-0.92323005,-0.9282033,-0.92793447,-0.9251119,-0.9243054,-0.9244398,-0.9241709,-0.9239021,-0.9237677,-0.9237677,-0.9237677,-0.92349887,-0.92336446,-0.92336446,-0.92336446,-0.92323005,-0.92336446,-0.92323005,-0.92309564,-0.92309564,-0.92323005,-0.92323005,-0.92309564,-0.92323005,-0.92336446,-0.92336446,-0.92323005,-0.92309564,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.9228268,-0.9226924,-0.9228268,-0.92296124,-0.92296124,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.9228268,-0.9228268,-0.922558,-0.922558,-0.922558,-0.922558,-0.922558,-0.9224236,-0.9224236,-0.9222892,-0.9222892,-0.9224236,-0.9224236,-0.92175156,-0.92148274,-0.922558,-0.9241709,-0.9237677,-0.9222892,-0.9220204,-0.9226924,-0.9228268,-0.92296124,-0.92323005,-0.9226924,-0.9222892,-0.922558,-0.9228268,-0.9226924,-0.9220204,-0.92161715,-0.92175156,-0.9222892,-0.9228268,-0.9228268,-0.9226924,-0.9228268,-0.92309564,-0.92309564,-0.9226924,-0.9226924,-0.9226924,-0.922558,-0.922558,-0.9226924,-0.922558,-0.9224236,-0.922558,-0.922558,-0.9226924,-0.9228268,-0.9228268,-0.9228268,-0.9226924,-0.9226924,-0.92296124,-0.92323005,-0.92336446,-0.92309564,-0.92309564,-0.92336446,-0.92349887,-0.92336446,-0.92309564,-0.92296124,-0.92336446,-0.9237677,-0.9237677,-0.92349887,-0.92349887,-0.9236333,-0.9239021,-0.9240365,-0.9237677,-0.9236333,-0.9236333,-0.92349887,-0.9237677,-0.9239021,-0.9236333,-0.9247086,-0.92753124,-0.9283377,-0.9267248,-0.9265904,-0.9283377,-0.92766565,-0.9249775,-0.9236333,-0.92349887,-0.92323005,-0.92296124,-0.92296124,-0.92296124,-0.9224236,-0.92134833,-0.9208107,-0.9204075,-0.9198698,-0.92013866,-0.9220204,-0.9239021,-0.9252463,-0.92766565,-0.9302195,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.92995065,-0.9303539,-0.9295474,-0.9283377,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92995065,-0.92968184,-0.92995065,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.93008506,-0.9283377,-0.92591834,-0.9237677,-0.92148274,-0.92013866,-0.92013866,-0.9208107,-0.9212139,-0.92161715,-0.9220204,-0.922558,-0.92296124,-0.92323005,-0.92349887,-0.9236333,-0.92336446,-0.92296124,-0.92296124,-0.9243054,-0.9269936,-0.9290098,-0.9284721,-0.9256495,-0.9244398,-0.9265904,-0.9283377,-0.9265904,-0.9245742,-0.9243054,-0.9243054,-0.9240365,-0.9239021,-0.9237677,-0.9237677,-0.9236333,-0.92349887,-0.92349887,-0.92336446,-0.92336446,-0.92349887,-0.92336446,-0.92323005,-0.92323005,-0.92336446,-0.92349887,-0.92336446,-0.92309564,-0.92309564,-0.92336446,-0.92336446,-0.92309564,-0.92296124,-0.92309564,-0.92309564,-0.9228268,-0.9226924,-0.9228268,-0.92296124,-0.92309564,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.922558,-0.9222892,-0.9222892,-0.9224236,-0.922558,-0.922558,-0.922558,-0.9226924,-0.9224236,-0.92148274,-0.9210795,-0.9220204,-0.92336446,-0.92336446,-0.9222892,-0.92188597,-0.9222892,-0.922558,-0.92296124,-0.92309564,-0.922558,-0.92188597,-0.92188597,-0.9220204,-0.92161715,-0.9205419,-0.92000425,-0.9209451,-0.9224236,-0.9228268,-0.9226924,-0.9226924,-0.92296124,-0.92309564,-0.92296124,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.922558,-0.922558,-0.922558,-0.9224236,-0.922558,-0.9226924,-0.9226924,-0.9226924,-0.9228268,-0.92296124,-0.9228268,-0.9228268,-0.92296124,-0.92323005,-0.92323005,-0.92309564,-0.92309564,-0.92323005,-0.92336446,-0.92336446,-0.92336446,-0.92323005,-0.92309564,-0.92349887,-0.9236333,-0.9236333,-0.92349887,-0.9236333,-0.9239021,-0.9237677,-0.9236333,-0.92349887,-0.92349887,-0.9237677,-0.9240365,-0.9236333,-0.9237677,-0.92632157,-0.92860657,-0.92780006,-0.9267248,-0.92793447,-0.9284721,-0.92632157,-0.9241709,-0.9237677,-0.92349887,-0.92296124,-0.9226924,-0.9228268,-0.9228268,-0.9222892,-0.9210795,-0.9205419,-0.9204075,-0.91960096,-0.9197354,-0.92161715,-0.92349887,-0.9252463,-0.92780006,-0.9302195,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9302195,-0.9303539,-0.93008506,-0.9292786,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9302195,-0.93008506,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9288754,-0.92591834,-0.92323005,-0.9212139,-0.92000425,-0.92000425,-0.9210795,-0.92161715,-0.92175156,-0.9221548,-0.9228268,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.9228268,-0.9224236,-0.922558,-0.92336446,-0.9255151,-0.9282033,-0.92981625,-0.92860657,-0.9252463,-0.9241709,-0.9268592,-0.92793447,-0.9256495,-0.9241709,-0.9243054,-0.9241709,-0.9239021,-0.9237677,-0.9237677,-0.9237677,-0.9237677,-0.9236333,-0.9236333,-0.9236333,-0.9236333,-0.92336446,-0.92309564,-0.92309564,-0.92336446,-0.92349887,-0.92336446,-0.92309564,-0.92309564,-0.92336446,-0.92323005,-0.92296124,-0.92296124,-0.92309564,-0.92309564,-0.92296124,-0.9228268,-0.9228268,-0.92309564,-0.92309564,-0.92296124,-0.9228268,-0.9228268,-0.9228268,-0.922558,-0.922558,-0.922558,-0.9228268,-0.92296124,-0.9228268,-0.9226924,-0.9228268,-0.92296124,-0.9228268,-0.9226924,-0.9226924,-0.9226924,-0.9224236,-0.9224236,-0.9226924,-0.9226924,-0.9222892,-0.92134833,-0.9210795,-0.92188597,-0.92296124,-0.9228268,-0.92175156,-0.92161715,-0.9221548,-0.922558,-0.9228268,-0.92296124,-0.9228268,-0.9224236,-0.9222892,-0.9222892,-0.9220204,-0.92161715,-0.92148274,-0.92188597,-0.9224236,-0.9226924,-0.922558,-0.9226924,-0.9228268,-0.9226924,-0.922558,-0.922558,-0.9226924,-0.9228268,-0.9226924,-0.9226924,-0.922558,-0.922558,-0.922558,-0.922558,-0.9226924,-0.9226924,-0.9226924,-0.9228268,-0.92296124,-0.9228268,-0.9228268,-0.92296124,-0.92309564,-0.92323005,-0.92309564,-0.92323005,-0.92323005,-0.92323005,-0.92336446,-0.92349887,-0.92349887,-0.92336446,-0.92336446,-0.92349887,-0.9236333,-0.92349887,-0.9236333,-0.9236333,-0.92336446,-0.92336446,-0.92349887,-0.9237677,-0.9237677,-0.9239021,-0.9243054,-0.92591834,-0.9282033,-0.9284721,-0.9269936,-0.927128,-0.92860657,-0.92753124,-0.9247086,-0.9236333,-0.9239021,-0.92349887,-0.92296124,-0.9226924,-0.9226924,-0.9226924,-0.9222892,-0.9212139,-0.9205419,-0.9204075,-0.9198698,-0.92013866,-0.92175156,-0.92349887,-0.9253807,-0.9280689,-0.93008506,-0.9302195,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9302195,-0.9303539,-0.9302195,-0.92981625,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.929413,-0.93008506,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9306227,-0.9303539,-0.9303539,-0.929413,-0.92618716,-0.92296124,-0.92134833,-0.92027307,-0.91960096,-0.92027307,-0.9212139,-0.92188597,-0.9224236,-0.92296124,-0.92309564,-0.92296124,-0.92296124,-0.92296124,-0.9221548,-0.92161715,-0.9222892,-0.92309564,-0.9244398,-0.9269936,-0.929413,-0.9292786,-0.92632157,-0.9243054,-0.926456,-0.9288754,-0.92739683,-0.9247086,-0.9241709,-0.9241709,-0.9239021,-0.9239021,-0.9239021,-0.9237677,-0.9237677,-0.9239021,-0.9237677,-0.9236333,-0.9237677,-0.9236333,-0.92296124,-0.9224236,-0.9228268,-0.92336446,-0.92349887,-0.9236333,-0.92349887,-0.92336446,-0.92323005,-0.92296124,-0.92296124,-0.92309564,-0.92309564,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.92323005,-0.92323005,-0.92296124,-0.9228268,-0.9228268,-0.922558,-0.9222892,-0.9224236,-0.9226924,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9226924,-0.922558,-0.922558,-0.922558,-0.9224236,-0.922558,-0.9226924,-0.9228268,-0.922558,-0.92161715,-0.9212139,-0.9220204,-0.9228268,-0.9228268,-0.92161715,-0.92148274,-0.9222892,-0.9228268,-0.9228268,-0.92296124,-0.92296124,-0.92309564,-0.92296124,-0.9228268,-0.9226924,-0.9221548,-0.92188597,-0.92188597,-0.9221548,-0.9222892,-0.9224236,-0.9224236,-0.922558,-0.9226924,-0.9228268,-0.9228268,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.9228268,-0.92296124,-0.9228268,-0.9228268,-0.92296124,-0.92323005,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92349887,-0.9236333,-0.92349887,-0.9236333,-0.9237677,-0.9236333,-0.92323005,-0.92323005,-0.92336446,-0.9236333,-0.9239021,-0.9239021,-0.9237677,-0.9249775,-0.92753124,-0.9288754,-0.92793447,-0.92739683,-0.9283377,-0.9284721,-0.92605275,-0.9237677,-0.92349887,-0.9239021,-0.92349887,-0.92309564,-0.92296124,-0.92296124,-0.9226924,-0.9220204,-0.9210795,-0.9204075,-0.92000425,-0.9198698,-0.9204075,-0.92175156,-0.92336446,-0.9255151,-0.9282033,-0.93008506,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9290098,-0.92981625,-0.92981625,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.93008506,-0.9267248,-0.9226924,-0.9212139,-0.9209451,-0.9198698,-0.91933215,-0.9205419,-0.92188597,-0.9226924,-0.92296124,-0.9228268,-0.9228268,-0.92296124,-0.92296124,-0.9221548,-0.92134833,-0.92188597,-0.9228268,-0.92349887,-0.9255151,-0.9283377,-0.92981625,-0.9288754,-0.927128,-0.9272624,-0.9291442,-0.9290098,-0.92632157,-0.9245742,-0.9241709,-0.9240365,-0.9239021,-0.9240365,-0.9240365,-0.9240365,-0.9236333,-0.92336446,-0.92323005,-0.92336446,-0.92349887,-0.92309564,-0.9222892,-0.9224236,-0.92323005,-0.9236333,-0.92349887,-0.92349887,-0.92336446,-0.92323005,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.92323005,-0.92323005,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92296124,-0.92296124,-0.92296124,-0.9226924,-0.9226924,-0.9226924,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9226924,-0.922558,-0.9226924,-0.9226924,-0.9224236,-0.9221548,-0.9224236,-0.9226924,-0.92296124,-0.9228268,-0.92161715,-0.9212139,-0.92188597,-0.92188597,-0.9226924,-0.92188597,-0.92161715,-0.922558,-0.92296124,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9226924,-0.9224236,-0.9222892,-0.9220204,-0.92175156,-0.92175156,-0.9220204,-0.9222892,-0.9224236,-0.9224236,-0.9224236,-0.922558,-0.9228268,-0.9228268,-0.9226924,-0.922558,-0.9226924,-0.9226924,-0.9228268,-0.9228268,-0.92296124,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.92296124,-0.92296124,-0.92296124,-0.92309564,-0.92309564,-0.92323005,-0.92323005,-0.92336446,-0.92349887,-0.92349887,-0.92349887,-0.92349887,-0.92336446,-0.92349887,-0.9236333,-0.9237677,-0.9239021,-0.9239021,-0.92349887,-0.92323005,-0.92309564,-0.92336446,-0.9236333,-0.9237677,-0.9236333,-0.9245742,-0.9268592,-0.92766565,-0.9267248,-0.9267248,-0.9283377,-0.9291442,-0.9272624,-0.9247086,-0.9240365,-0.9241709,-0.9237677,-0.92323005,-0.92309564,-0.92309564,-0.92309564,-0.9228268,-0.9220204,-0.9210795,-0.9205419,-0.92013866,-0.9197354,-0.92013866,-0.92148274,-0.92323005,-0.9255151,-0.9283377,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9302195,-0.93008506,-0.9302195,-0.92995065,-0.92995065,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9283377,-0.9292786,-0.92968184,-0.93008506,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.92780006,-0.92296124,-0.9210795,-0.92148274,-0.9206763,-0.91946656,-0.9204075,-0.9220204,-0.9226924,-0.9226924,-0.922558,-0.922558,-0.92296124,-0.92323005,-0.92296124,-0.9220204,-0.92175156,-0.9224236,-0.92323005,-0.9243054,-0.9267248,-0.9292786,-0.92995065,-0.928741,-0.92739683,-0.9282033,-0.92968184,-0.9284721,-0.9256495,-0.9243054,-0.9241709,-0.9241709,-0.9240365,-0.9240365,-0.9240365,-0.9239021,-0.92349887,-0.92349887,-0.92349887,-0.92336446,-0.92336446,-0.92323005,-0.92309564,-0.92336446,-0.9236333,-0.92349887,-0.92349887,-0.92336446,-0.92323005,-0.92309564,-0.92309564,-0.92296124,-0.92309564,-0.92323005,-0.92336446,-0.92323005,-0.92309564,-0.92309564,-0.92296124,-0.9228268,-0.92296124,-0.92309564,-0.92296124,-0.9226924,-0.9224236,-0.922558,-0.9228268,-0.92296124,-0.92296124,-0.9228268,-0.9226924,-0.9226924,-0.9228268,-0.9228268,-0.9224236,-0.9222892,-0.9224236,-0.922558,-0.92309564,-0.92309564,-0.92175156,-0.92148274,-0.92188597,-0.9205419,-0.9226924,-0.92188597,-0.92148274,-0.9226924,-0.92296124,-0.9228268,-0.92296124,-0.9228268,-0.9226924,-0.9224236,-0.9222892,-0.9222892,-0.9222892,-0.9220204,-0.9220204,-0.9221548,-0.9224236,-0.9224236,-0.9224236,-0.9222892,-0.9224236,-0.9226924,-0.92296124,-0.92296124,-0.9228268,-0.9226924,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.9226924,-0.9226924,-0.9228268,-0.9228268,-0.92296124,-0.92296124,-0.92309564,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92336446,-0.92349887,-0.92349887,-0.92349887,-0.9236333,-0.9236333,-0.9236333,-0.9239021,-0.9239021,-0.9237677,-0.92349887,-0.92336446,-0.92336446,-0.9236333,-0.9239021,-0.9237677,-0.9241709,-0.9265904,-0.92860657,-0.92618716,-0.92349887,-0.9255151,-0.9290098,-0.928741,-0.9255151,-0.9236333,-0.9240365,-0.9243054,-0.92349887,-0.92309564,-0.92323005,-0.92323005,-0.92309564,-0.92296124,-0.9222892,-0.92161715,-0.9209451,-0.92013866,-0.91946656,-0.9198698,-0.92134833,-0.92336446,-0.92591834,-0.928741,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9302195,-0.93008506,-0.9302195,-0.929413,-0.9295474,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9283377,-0.9290098,-0.9295474,-0.92981625,-0.93008506,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.93008506,-0.928741,-0.9241709,-0.9212139,-0.92134833,-0.9212139,-0.92027307,-0.9205419,-0.92148274,-0.9220204,-0.9224236,-0.9226924,-0.9226924,-0.92296124,-0.92336446,-0.92336446,-0.92296124,-0.9222892,-0.9224236,-0.92309564,-0.92349887,-0.9248431,-0.92780006,-0.92995065,-0.92981625,-0.9280689,-0.92739683,-0.928741,-0.9295474,-0.92766565,-0.9251119,-0.9243054,-0.9241709,-0.9240365,-0.9240365,-0.9241709,-0.9241709,-0.9240365,-0.9240365,-0.9240365,-0.9239021,-0.9236333,-0.92349887,-0.92336446,-0.9236333,-0.9236333,-0.92349887,-0.92336446,-0.92336446,-0.92323005,-0.92309564,-0.92309564,-0.92309564,-0.92296124,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92309564,-0.92296124,-0.92296124,-0.92309564,-0.92323005,-0.92309564,-0.9228268,-0.922558,-0.922558,-0.922558,-0.9228268,-0.92296124,-0.9228268,-0.9226924,-0.922558,-0.9226924,-0.9228268,-0.9226924,-0.9226924,-0.92296124,-0.92296124,-0.92323005,-0.92336446,-0.9220204,-0.9221548,-0.9222892,-0.9205419,-0.92336446,-0.9220204,-0.92188597,-0.92296124,-0.9228268,-0.9228268,-0.92296124,-0.9228268,-0.9224236,-0.9222892,-0.9221548,-0.9224236,-0.922558,-0.9222892,-0.9220204,-0.9220204,-0.9222892,-0.9224236,-0.9224236,-0.9224236,-0.9224236,-0.922558,-0.9228268,-0.92296124,-0.9228268,-0.9226924,-0.9226924,-0.9228268,-0.9228268,-0.92296124,-0.9228268,-0.9226924,-0.9226924,-0.9228268,-0.9228268,-0.92296124,-0.92309564,-0.92323005,-0.92323005,-0.92336446,-0.92349887,-0.9236333,-0.92349887,-0.92336446,-0.92323005,-0.92323005,-0.92336446,-0.9236333,-0.9237677,-0.9237677,-0.9237677,-0.9237677,-0.9237677,-0.9237677,-0.9236333,-0.9237677,-0.9241709,-0.9241709,-0.9244398,-0.92605275,-0.92793447,-0.9269936,-0.9243054,-0.9243054,-0.9272624,-0.9292786,-0.92739683,-0.9241709,-0.92336446,-0.9239021,-0.9237677,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92309564,-0.9226924,-0.92188597,-0.9209451,-0.9197354,-0.91933215,-0.92000425,-0.92148274,-0.9236333,-0.92632157,-0.9291442,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.929413,-0.92981625,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9292786,-0.92968184,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9291442,-0.9253807,-0.9220204,-0.9210795,-0.9210795,-0.9208107,-0.92013866,-0.92027307,-0.9212139,-0.9220204,-0.9226924,-0.92296124,-0.92309564,-0.92309564,-0.92309564,-0.92296124,-0.9228268,-0.9226924,-0.9228268,-0.92323005,-0.9239021,-0.92578393,-0.928741,-0.93008506,-0.929413,-0.9280689,-0.92780006,-0.9288754,-0.9291442,-0.927128,-0.9248431,-0.9240365,-0.9241709,-0.9241709,-0.9241709,-0.9241709,-0.9240365,-0.9239021,-0.9239021,-0.9239021,-0.9239021,-0.9237677,-0.9237677,-0.9236333,-0.9236333,-0.92349887,-0.92336446,-0.92323005,-0.92323005,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92323005,-0.92323005,-0.92323005,-0.92309564,-0.92296124,-0.92296124,-0.92309564,-0.92309564,-0.92309564,-0.92296124,-0.9228268,-0.9228268,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.9224236,-0.9224236,-0.9226924,-0.9228268,-0.92296124,-0.92296124,-0.92296124,-0.9226924,-0.92296124,-0.92296124,-0.92188597,-0.9222892,-0.92296124,-0.92188597,-0.9243054,-0.9221548,-0.9222892,-0.92309564,-0.9228268,-0.9228268,-0.92309564,-0.9228268,-0.922558,-0.9224236,-0.922558,-0.9226924,-0.922558,-0.9222892,-0.9221548,-0.9220204,-0.9220204,-0.9222892,-0.922558,-0.9224236,-0.9222892,-0.9224236,-0.9226924,-0.92296124,-0.9228268,-0.9226924,-0.9228268,-0.9228268,-0.92296124,-0.92309564,-0.92296124,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.92296124,-0.92309564,-0.92336446,-0.92336446,-0.92336446,-0.92349887,-0.9237677,-0.9239021,-0.9236333,-0.92336446,-0.92323005,-0.92323005,-0.92349887,-0.9237677,-0.9239021,-0.9237677,-0.9237677,-0.9239021,-0.9239021,-0.9239021,-0.9240365,-0.9243054,-0.9244398,-0.9255151,-0.9280689,-0.92793447,-0.9241709,-0.92336446,-0.927128,-0.929413,-0.92860657,-0.9256495,-0.9239021,-0.9237677,-0.9237677,-0.92349887,-0.92336446,-0.92349887,-0.92349887,-0.92323005,-0.92323005,-0.92309564,-0.922558,-0.92161715,-0.9205419,-0.9197354,-0.9197354,-0.92027307,-0.92161715,-0.9240365,-0.9268592,-0.9295474,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.92981625,-0.92968184,-0.9303539,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9288754,-0.9295474,-0.92995065,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.929413,-0.92632157,-0.92323005,-0.92175156,-0.9205419,-0.9190633,-0.9189289,-0.9198698,-0.9209451,-0.92161715,-0.9222892,-0.92296124,-0.92309564,-0.9228268,-0.9228268,-0.92296124,-0.9228268,-0.9226924,-0.9228268,-0.92323005,-0.9237677,-0.9245742,-0.9267248,-0.9292786,-0.92995065,-0.928741,-0.92780006,-0.9280689,-0.9292786,-0.9290098,-0.92632157,-0.9240365,-0.9239021,-0.9243054,-0.9241709,-0.9240365,-0.9241709,-0.9240365,-0.9239021,-0.9239021,-0.9239021,-0.9239021,-0.9239021,-0.9237677,-0.9236333,-0.92349887,-0.92336446,-0.92323005,-0.92323005,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92323005,-0.92336446,-0.92323005,-0.92309564,-0.92296124,-0.92309564,-0.92309564,-0.92323005,-0.92309564,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.92309564,-0.9228268,-0.9224236,-0.9221548,-0.9224236,-0.92296124,-0.92309564,-0.92296124,-0.9226924,-0.9226924,-0.922558,-0.9228268,-0.92296124,-0.9224236,-0.9226924,-0.92349887,-0.92336446,-0.9240365,-0.9224236,-0.922558,-0.92309564,-0.92296124,-0.92296124,-0.92296124,-0.922558,-0.9224236,-0.922558,-0.9226924,-0.9226924,-0.9224236,-0.9222892,-0.9224236,-0.9224236,-0.9220204,-0.9221548,-0.9226924,-0.9226924,-0.9224236,-0.922558,-0.92296124,-0.92309564,-0.92296124,-0.9228268,-0.92296124,-0.92296124,-0.92309564,-0.92309564,-0.92309564,-0.92296124,-0.9228268,-0.9228268,-0.92296124,-0.92309564,-0.92309564,-0.92336446,-0.92349887,-0.92349887,-0.9236333,-0.9237677,-0.9239021,-0.9237677,-0.9236333,-0.92323005,-0.92309564,-0.92336446,-0.9239021,-0.9243054,-0.9239021,-0.9236333,-0.9239021,-0.9240365,-0.9241709,-0.9241709,-0.9241709,-0.9251119,-0.9272624,-0.9292786,-0.9283377,-0.92578393,-0.92618716,-0.9291442,-0.92968184,-0.9268592,-0.9243054,-0.9240365,-0.9243054,-0.9239021,-0.9236333,-0.92349887,-0.92349887,-0.92336446,-0.92323005,-0.92323005,-0.92296124,-0.9222892,-0.92148274,-0.9206763,-0.9198698,-0.91960096,-0.9204075,-0.92175156,-0.9243054,-0.9272624,-0.92995065,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.93008506,-0.93008506,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.92995065,-0.93008506,-0.92968184,-0.9292786,-0.9303539,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9291442,-0.9295474,-0.92995065,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.92968184,-0.9272624,-0.9245742,-0.9226924,-0.9206763,-0.91919774,-0.9197354,-0.9210795,-0.9212139,-0.9210795,-0.92161715,-0.9222892,-0.922558,-0.9226924,-0.9228268,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.92336446,-0.9237677,-0.9240365,-0.9251119,-0.92766565,-0.92968184,-0.92968184,-0.928741,-0.9283377,-0.928741,-0.929413,-0.9284721,-0.92591834,-0.9243054,-0.9243054,-0.9241709,-0.9239021,-0.9239021,-0.9240365,-0.9239021,-0.9239021,-0.9237677,-0.9237677,-0.9237677,-0.9236333,-0.92349887,-0.92336446,-0.92336446,-0.92336446,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92309564,-0.92309564,-0.92336446,-0.92336446,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92323005,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92296124,-0.9226924,-0.9224236,-0.922558,-0.9228268,-0.9228268,-0.9228268,-0.9228268,-0.92296124,-0.92296124,-0.92309564,-0.92309564,-0.92296124,-0.92309564,-0.92309564,-0.92309564,-0.92323005,-0.9228268,-0.9228268,-0.92296124,-0.9228268,-0.9226924,-0.922558,-0.9222892,-0.922558,-0.92296124,-0.92296124,-0.9226924,-0.9226924,-0.9224236,-0.9222892,-0.9224236,-0.9224236,-0.9221548,-0.9222892,-0.9222892,-0.9222892,-0.922558,-0.92296124,-0.92309564,-0.92309564,-0.92296124,-0.92296124,-0.92309564,-0.92323005,-0.92309564,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.92309564,-0.92323005,-0.92323005,-0.92336446,-0.92349887,-0.9237677,-0.9237677,-0.9236333,-0.9236333,-0.9236333,-0.92336446,-0.92336446,-0.9237677,-0.9240365,-0.9243054,-0.9244398,-0.9241709,-0.9237677,-0.9239021,-0.9240365,-0.9240365,-0.9245742,-0.9265904,-0.9290098,-0.9292786,-0.9280689,-0.92766565,-0.9291442,-0.92981625,-0.9282033,-0.9251119,-0.9239021,-0.9241709,-0.9243054,-0.9236333,-0.92336446,-0.92349887,-0.92336446,-0.92323005,-0.92323005,-0.92336446,-0.92296124,-0.9220204,-0.9212139,-0.9209451,-0.92027307,-0.91960096,-0.92027307,-0.9220204,-0.9247086,-0.92753124,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.93008506,-0.9303539,-0.92981625,-0.9291442,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92995065,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.93008506,-0.9283377,-0.92578393,-0.9236333,-0.92188597,-0.9206763,-0.9206763,-0.92148274,-0.92161715,-0.9210795,-0.9208107,-0.9210795,-0.92188597,-0.922558,-0.9228268,-0.92296124,-0.92309564,-0.92309564,-0.92309564,-0.92336446,-0.9236333,-0.9239021,-0.9241709,-0.9255151,-0.9282033,-0.92981625,-0.92968184,-0.9290098,-0.92860657,-0.9291442,-0.92968184,-0.92860657,-0.92605275,-0.9244398,-0.9241709,-0.9241709,-0.9240365,-0.9240365,-0.9240365,-0.9240365,-0.9239021,-0.9237677,-0.9237677,-0.9237677,-0.9236333,-0.92349887,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92349887,-0.92336446,-0.92323005,-0.92309564,-0.92309564,-0.92323005,-0.92336446,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.9228268,-0.922558,-0.922558,-0.9228268,-0.9228268,-0.9228268,-0.92309564,-0.92323005,-0.92309564,-0.92296124,-0.92309564,-0.92309564,-0.92296124,-0.922558,-0.9221548,-0.9221548,-0.9222892,-0.9224236,-0.9224236,-0.9224236,-0.922558,-0.922558,-0.9226924,-0.92296124,-0.92296124,-0.92296124,-0.9228268,-0.9226924,-0.9224236,-0.9222892,-0.9224236,-0.9222892,-0.92175156,-0.92161715,-0.9221548,-0.9228268,-0.9228268,-0.92296124,-0.92323005,-0.92296124,-0.9228268,-0.9228268,-0.92309564,-0.92323005,-0.92309564,-0.92309564,-0.92309564,-0.92296124,-0.92309564,-0.92323005,-0.92309564,-0.92323005,-0.92336446,-0.92349887,-0.92349887,-0.9236333,-0.9237677,-0.92349887,-0.92349887,-0.9236333,-0.9237677,-0.9237677,-0.9239021,-0.9240365,-0.9243054,-0.9247086,-0.9247086,-0.9241709,-0.9239021,-0.9240365,-0.9245742,-0.92618716,-0.9283377,-0.929413,-0.9283377,-0.92739683,-0.92860657,-0.92995065,-0.9288754,-0.92605275,-0.9241709,-0.9241709,-0.9244398,-0.9237677,-0.92309564,-0.92323005,-0.92336446,-0.92323005,-0.92309564,-0.92309564,-0.92323005,-0.9228268,-0.9221548,-0.92148274,-0.9209451,-0.92027307,-0.92000425,-0.9205419,-0.9221548,-0.9251119,-0.9282033,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9302195,-0.9302195,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.92995065,-0.9292786,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9295474,-0.92995065,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9292786,-0.9268592,-0.9247086,-0.92336446,-0.92175156,-0.9208107,-0.9210795,-0.92148274,-0.9212139,-0.9206763,-0.9205419,-0.9212139,-0.9222892,-0.9228268,-0.92296124,-0.92296124,-0.92309564,-0.92296124,-0.92296124,-0.92336446,-0.9239021,-0.9240365,-0.9241709,-0.9256495,-0.9283377,-0.92968184,-0.92968184,-0.9291442,-0.9288754,-0.9292786,-0.9295474,-0.9280689,-0.9255151,-0.9243054,-0.9241709,-0.9241709,-0.9240365,-0.9240365,-0.9241709,-0.9240365,-0.9239021,-0.9237677,-0.9237677,-0.9237677,-0.92349887,-0.92336446,-0.92336446,-0.92349887,-0.92349887,-0.92349887,-0.92336446,-0.92323005,-0.92309564,-0.92296124,-0.92296124,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.9228268,-0.922558,-0.9226924,-0.92309564,-0.92309564,-0.92296124,-0.92309564,-0.92323005,-0.92323005,-0.92309564,-0.92323005,-0.92309564,-0.9228268,-0.9224236,-0.9222892,-0.922558,-0.9226924,-0.922558,-0.922558,-0.922558,-0.922558,-0.9226924,-0.9228268,-0.92296124,-0.92296124,-0.9228268,-0.9228268,-0.9228268,-0.9226924,-0.922558,-0.9224236,-0.92188597,-0.9210795,-0.9209451,-0.92188597,-0.9228268,-0.92309564,-0.92309564,-0.92323005,-0.92309564,-0.9228268,-0.92296124,-0.92309564,-0.92323005,-0.92323005,-0.92336446,-0.92323005,-0.92309564,-0.92323005,-0.92336446,-0.92323005,-0.92323005,-0.92336446,-0.92349887,-0.92349887,-0.9236333,-0.9236333,-0.92349887,-0.92349887,-0.9236333,-0.9237677,-0.9237677,-0.9237677,-0.9239021,-0.9240365,-0.9243054,-0.9244398,-0.9243054,-0.9240365,-0.9243054,-0.92578393,-0.92793447,-0.9291442,-0.92860657,-0.92793447,-0.928741,-0.92981625,-0.9292786,-0.9269936,-0.9248431,-0.9243054,-0.9244398,-0.9240365,-0.92349887,-0.92336446,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92309564,-0.92309564,-0.9228268,-0.9224236,-0.92175156,-0.9205419,-0.9198698,-0.92013866,-0.9209451,-0.922558,-0.9256495,-0.928741,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.93008506,-0.92968184,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9292786,-0.92981625,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.92995065,-0.92793447,-0.92578393,-0.9249775,-0.9239021,-0.9222892,-0.9212139,-0.9210795,-0.9209451,-0.9209451,-0.9206763,-0.9205419,-0.92148274,-0.9226924,-0.92323005,-0.92309564,-0.92309564,-0.92296124,-0.9228268,-0.92309564,-0.9239021,-0.9244398,-0.9241709,-0.9241709,-0.92578393,-0.9282033,-0.9295474,-0.92968184,-0.9291442,-0.928741,-0.9292786,-0.9291442,-0.9272624,-0.9248431,-0.9241709,-0.9241709,-0.9241709,-0.9241709,-0.9241709,-0.9240365,-0.9239021,-0.9239021,-0.9239021,-0.9237677,-0.9236333,-0.92336446,-0.92349887,-0.9236333,-0.92349887,-0.92336446,-0.92336446,-0.92349887,-0.92349887,-0.92336446,-0.92323005,-0.92323005,-0.92336446,-0.92323005,-0.92309564,-0.92309564,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92309564,-0.92296124,-0.92309564,-0.92323005,-0.92309564,-0.92296124,-0.92296124,-0.92309564,-0.92309564,-0.92309564,-0.92309564,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92309564,-0.92296124,-0.9226924,-0.9228268,-0.92309564,-0.92323005,-0.92296124,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.9226924,-0.9228268,-0.92296124,-0.92296124,-0.9228268,-0.9228268,-0.9226924,-0.922558,-0.9224236,-0.92188597,-0.9212139,-0.9210795,-0.92188597,-0.92296124,-0.92323005,-0.92323005,-0.92309564,-0.92296124,-0.92309564,-0.92323005,-0.92323005,-0.92336446,-0.92336446,-0.92323005,-0.92309564,-0.92323005,-0.92336446,-0.92336446,-0.92323005,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92349887,-0.92349887,-0.92349887,-0.9236333,-0.9236333,-0.9237677,-0.9239021,-0.9239021,-0.9239021,-0.9239021,-0.9240365,-0.9243054,-0.9240365,-0.9237677,-0.9248431,-0.927128,-0.9288754,-0.9288754,-0.9282033,-0.9284721,-0.92968184,-0.9295474,-0.92753124,-0.9252463,-0.9245742,-0.9245742,-0.9240365,-0.92349887,-0.92336446,-0.92349887,-0.92349887,-0.92336446,-0.92309564,-0.92309564,-0.92323005,-0.92309564,-0.92309564,-0.922558,-0.92134833,-0.92000425,-0.9198698,-0.9204075,-0.9210795,-0.92309564,-0.9267248,-0.929413,-0.93008506,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9302195,-0.92995065,-0.9302195,-0.92995065,-0.92968184,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.929413,-0.93008506,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9292786,-0.927128,-0.92578393,-0.92578393,-0.9247086,-0.9226924,-0.92134833,-0.9209451,-0.9208107,-0.9205419,-0.92013866,-0.9206763,-0.9222892,-0.92323005,-0.92309564,-0.92309564,-0.92296124,-0.92296124,-0.92296124,-0.92349887,-0.9241709,-0.9243054,-0.9239021,-0.9239021,-0.9253807,-0.92766565,-0.9292786,-0.92968184,-0.9288754,-0.92860657,-0.9292786,-0.9288754,-0.926456,-0.9244398,-0.9241709,-0.9243054,-0.9241709,-0.9241709,-0.9240365,-0.9240365,-0.9240365,-0.9239021,-0.9239021,-0.9237677,-0.9236333,-0.9236333,-0.9236333,-0.9236333,-0.92349887,-0.92349887,-0.9237677,-0.9237677,-0.9236333,-0.92349887,-0.92349887,-0.92349887,-0.92349887,-0.92323005,-0.92309564,-0.92323005,-0.92336446,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92309564,-0.92309564,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92336446,-0.92336446,-0.92323005,-0.92323005,-0.92323005,-0.92309564,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.92309564,-0.92309564,-0.92309564,-0.92323005,-0.92323005,-0.92309564,-0.9228268,-0.9228268,-0.9228268,-0.9226924,-0.922558,-0.9224236,-0.9221548,-0.9221548,-0.9222892,-0.9228268,-0.92323005,-0.92323005,-0.92323005,-0.92309564,-0.92309564,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92336446,-0.92336446,-0.92323005,-0.92336446,-0.92349887,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92349887,-0.9236333,-0.9237677,-0.9237677,-0.9236333,-0.9236333,-0.9236333,-0.9236333,-0.9237677,-0.9239021,-0.9239021,-0.9239021,-0.9241709,-0.9243054,-0.9248431,-0.926456,-0.9283377,-0.9290098,-0.92860657,-0.928741,-0.92968184,-0.92981625,-0.9280689,-0.9256495,-0.9243054,-0.9240365,-0.9239021,-0.92349887,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92309564,-0.9228268,-0.92309564,-0.92323005,-0.92296124,-0.92188597,-0.92027307,-0.91960096,-0.92013866,-0.9206763,-0.92148274,-0.9241709,-0.9280689,-0.92995065,-0.93008506,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9295474,-0.9295474,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9290098,-0.92995065,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9290098,-0.927128,-0.92605275,-0.9256495,-0.9245742,-0.9226924,-0.92134833,-0.9206763,-0.9205419,-0.92013866,-0.9198698,-0.9208107,-0.9224236,-0.92296124,-0.92296124,-0.92296124,-0.92309564,-0.9228268,-0.9228268,-0.92336446,-0.9237677,-0.9236333,-0.92336446,-0.92349887,-0.9247086,-0.927128,-0.9292786,-0.9295474,-0.92860657,-0.928741,-0.9295474,-0.92860657,-0.92591834,-0.9244398,-0.9244398,-0.9244398,-0.9243054,-0.9241709,-0.9241709,-0.9240365,-0.9239021,-0.9237677,-0.9236333,-0.9236333,-0.9237677,-0.9239021,-0.9239021,-0.9239021,-0.9237677,-0.9237677,-0.9237677,-0.9236333,-0.9236333,-0.9236333,-0.92349887,-0.92349887,-0.92349887,-0.92336446,-0.92336446,-0.92336446,-0.92323005,-0.92323005,-0.92349887,-0.92349887,-0.92323005,-0.92323005,-0.92336446,-0.92323005,-0.92323005,-0.92336446,-0.92323005,-0.92323005,-0.92336446,-0.92336446,-0.92336446,-0.92323005,-0.92309564,-0.92309564,-0.92323005,-0.92309564,-0.92336446,-0.9237677,-0.9236333,-0.92336446,-0.92323005,-0.92336446,-0.92323005,-0.92309564,-0.92336446,-0.92349887,-0.92323005,-0.9228268,-0.9226924,-0.9226924,-0.9226924,-0.9224236,-0.9222892,-0.9224236,-0.9226924,-0.92296124,-0.92309564,-0.92309564,-0.92309564,-0.92323005,-0.92323005,-0.92336446,-0.92336446,-0.92323005,-0.92323005,-0.92349887,-0.92349887,-0.92349887,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92349887,-0.9236333,-0.9237677,-0.9237677,-0.9237677,-0.9237677,-0.9237677,-0.9236333,-0.9236333,-0.9237677,-0.9240365,-0.9241709,-0.9243054,-0.9243054,-0.9251119,-0.9265904,-0.9283377,-0.9290098,-0.928741,-0.928741,-0.929413,-0.92995065,-0.9283377,-0.92605275,-0.9248431,-0.9244398,-0.9237677,-0.92336446,-0.92323005,-0.92336446,-0.92336446,-0.92309564,-0.92309564,-0.92323005,-0.92323005,-0.92296124,-0.92309564,-0.92336446,-0.9228268,-0.9209451,-0.91933215,-0.91960096,-0.9205419,-0.9208107,-0.9221548,-0.92578393,-0.9290098,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.93008506,-0.9295474,-0.92995065,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9283377,-0.92981625,-0.93008506,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.93008506,-0.9291442,-0.9272624,-0.92618716,-0.92578393,-0.9244398,-0.92188597,-0.9209451,-0.9210795,-0.9205419,-0.91933215,-0.91946656,-0.92134833,-0.92296124,-0.92309564,-0.92296124,-0.92296124,-0.9228268,-0.9224236,-0.92296124,-0.9237677,-0.9239021,-0.92323005,-0.9226924,-0.92296124,-0.9243054,-0.9269936,-0.9292786,-0.929413,-0.9283377,-0.928741,-0.92995065,-0.9284721,-0.9256495,-0.9245742,-0.9245742,-0.9245742,-0.9244398,-0.9243054,-0.9240365,-0.9239021,-0.9239021,-0.9239021,-0.9237677,-0.9237677,-0.9239021,-0.9239021,-0.9239021,-0.9239021,-0.9237677,-0.9237677,-0.9237677,-0.9236333,-0.9236333,-0.92349887,-0.92349887,-0.9236333,-0.92349887,-0.92323005,-0.92323005,-0.92336446,-0.92336446,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92336446,-0.92323005,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92349887,-0.92349887,-0.92336446,-0.92336446,-0.92323005,-0.92309564,-0.92336446,-0.92336446,-0.92309564,-0.92336446,-0.92323005,-0.92296124,-0.92296124,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92309564,-0.92296124,-0.9226924,-0.922558,-0.9224236,-0.9224236,-0.922558,-0.9228268,-0.92309564,-0.92336446,-0.92336446,-0.92323005,-0.92323005,-0.92336446,-0.92349887,-0.92349887,-0.92336446,-0.92336446,-0.92349887,-0.9236333,-0.92349887,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92349887,-0.92349887,-0.9236333,-0.9237677,-0.9237677,-0.9237677,-0.9237677,-0.9239021,-0.9240365,-0.9240365,-0.9240365,-0.9240365,-0.9241709,-0.9241709,-0.9243054,-0.9249775,-0.9267248,-0.9284721,-0.9291442,-0.9288754,-0.928741,-0.9292786,-0.92968184,-0.92860657,-0.92618716,-0.9249775,-0.9249775,-0.9245742,-0.92349887,-0.92309564,-0.92349887,-0.92349887,-0.92309564,-0.9226924,-0.9228268,-0.92309564,-0.92336446,-0.92336446,-0.92323005,-0.9226924,-0.92148274,-0.92000425,-0.91960096,-0.92027307,-0.92027307,-0.9204075,-0.92336446,-0.92766565,-0.92981625,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.92981625,-0.93008506,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9282033,-0.92981625,-0.92995065,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.929413,-0.9280689,-0.9272624,-0.92591834,-0.92349887,-0.9212139,-0.9212139,-0.92148274,-0.92027307,-0.9189289,-0.9197354,-0.92188597,-0.92296124,-0.9228268,-0.9226924,-0.92296124,-0.9228268,-0.92296124,-0.9237677,-0.9243054,-0.9237677,-0.9228268,-0.922558,-0.92296124,-0.9241709,-0.9265904,-0.928741,-0.9292786,-0.92860657,-0.9291442,-0.92968184,-0.92780006,-0.9253807,-0.9245742,-0.9245742,-0.9244398,-0.9243054,-0.9240365,-0.9239021,-0.9240365,-0.9239021,-0.9239021,-0.9239021,-0.9239021,-0.9239021,-0.9240365,-0.9240365,-0.9239021,-0.9239021,-0.9237677,-0.9237677,-0.9237677,-0.9237677,-0.9236333,-0.9236333,-0.9237677,-0.92349887,-0.92336446,-0.92349887,-0.92349887,-0.92336446,-0.92336446,-0.92336446,-0.92323005,-0.92323005,-0.92309564,-0.92309564,-0.92323005,-0.92336446,-0.92336446,-0.92349887,-0.92336446,-0.92336446,-0.92336446,-0.92323005,-0.92309564,-0.92349887,-0.9237677,-0.9236333,-0.92296124,-0.9226924,-0.9224236,-0.9226924,-0.92323005,-0.92349887,-0.92349887,-0.92336446,-0.92336446,-0.92323005,-0.92323005,-0.92323005,-0.92296124,-0.9228268,-0.922558,-0.9226924,-0.92296124,-0.92309564,-0.92309564,-0.92336446,-0.92323005,-0.92309564,-0.92323005,-0.92336446,-0.92349887,-0.92336446,-0.92349887,-0.9236333,-0.9237677,-0.9237677,-0.9237677,-0.92349887,-0.92349887,-0.92349887,-0.92349887,-0.92349887,-0.92349887,-0.9236333,-0.9236333,-0.9239021,-0.9241709,-0.9241709,-0.9240365,-0.9239021,-0.9240365,-0.9241709,-0.9241709,-0.9239021,-0.9240365,-0.9243054,-0.9252463,-0.927128,-0.9288754,-0.929413,-0.9290098,-0.9290098,-0.9295474,-0.92968184,-0.9282033,-0.9256495,-0.9243054,-0.9245742,-0.9244398,-0.9236333,-0.92309564,-0.92323005,-0.92349887,-0.92309564,-0.922558,-0.9224236,-0.9226924,-0.9228268,-0.92296124,-0.9226924,-0.9220204,-0.9208107,-0.91946656,-0.91933215,-0.9204075,-0.9205419,-0.91960096,-0.9210795,-0.92591834,-0.9291442,-0.93008506,-0.93008506,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.93008506,-0.9302195,-0.93008506,-0.9292786,-0.92995065,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9291442,-0.92995065,-0.93008506,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.9295474,-0.9290098,-0.92793447,-0.92578393,-0.9226924,-0.9212139,-0.92161715,-0.9209451,-0.9187945,-0.9181225,-0.9198698,-0.92188597,-0.9224236,-0.9224236,-0.92296124,-0.92323005,-0.92309564,-0.92309564,-0.9239021,-0.9245742,-0.9239021,-0.9226924,-0.9226924,-0.92323005,-0.9239021,-0.92591834,-0.92860657,-0.929413,-0.92860657,-0.9290098,-0.929413,-0.92753124,-0.9252463,-0.9244398,-0.9245742,-0.9245742,-0.9243054,-0.9240365,-0.9239021,-0.9240365,-0.9240365,-0.9240365,-0.9240365,-0.9241709,-0.9243054,-0.9241709,-0.9240365,-0.9240365,-0.9240365,-0.9239021,-0.9237677,-0.9237677,-0.9237677,-0.9236333,-0.9237677,-0.9237677,-0.9236333,-0.92336446,-0.92336446,-0.92349887,-0.92349887,-0.92336446,-0.92323005,-0.92323005,-0.92309564,-0.92296124,-0.92309564,-0.92336446,-0.92336446,-0.92323005,-0.92323005,-0.92323005,-0.92336446,-0.92323005,-0.92309564,-0.92336446,-0.9239021,-0.9239021,-0.9236333,-0.92336446,-0.92309564,-0.92309564,-0.92336446,-0.9236333,-0.92349887,-0.92336446,-0.92349887,-0.92349887,-0.92336446,-0.92323005,-0.92309564,-0.92296124,-0.92296124,-0.92309564,-0.92323005,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92323005,-0.92349887,-0.9236333,-0.9237677,-0.9237677,-0.9236333,-0.9236333,-0.9236333,-0.9236333,-0.92349887,-0.92336446,-0.92349887,-0.9236333,-0.9236333,-0.9237677,-0.9240365,-0.9241709,-0.9240365,-0.9240365,-0.9243054,-0.9243054,-0.9239021,-0.9236333,-0.9243054,-0.92605275,-0.9280689,-0.9292786,-0.9290098,-0.928741,-0.9291442,-0.9295474,-0.929413,-0.92780006,-0.9255151,-0.9243054,-0.9247086,-0.9245742,-0.92349887,-0.92296124,-0.92309564,-0.92323005,-0.92309564,-0.9226924,-0.9226924,-0.92323005,-0.92336446,-0.9226924,-0.92161715,-0.9205419,-0.9197354,-0.91933215,-0.91960096,-0.9204075,-0.9206763,-0.9197354,-0.9204075,-0.9245742,-0.9288754,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.93008506,-0.9302195,-0.92968184,-0.9284721,-0.92995065,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9291442,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.92995065,-0.9295474,-0.9280689,-0.9252463,-0.92188597,-0.9209451,-0.9210795,-0.92013866,-0.9186601,-0.9189289,-0.9209451,-0.9224236,-0.9226924,-0.92296124,-0.92309564,-0.92296124,-0.92296124,-0.92349887,-0.9240365,-0.9239021,-0.92323005,-0.92296124,-0.92336446,-0.92323005,-0.9237677,-0.92605275,-0.9288754,-0.929413,-0.9290098,-0.9295474,-0.9292786,-0.9272624,-0.9252463,-0.9247086,-0.9248431,-0.9245742,-0.9243054,-0.9241709,-0.9243054,-0.9243054,-0.9241709,-0.9241709,-0.9241709,-0.9243054,-0.9241709,-0.9241709,-0.9240365,-0.9240365,-0.9237677,-0.9239021,-0.9239021,-0.9237677,-0.9236333,-0.9236333,-0.9237677,-0.9237677,-0.9236333,-0.92349887,-0.9236333,-0.9236333,-0.92349887,-0.92336446,-0.92323005,-0.92309564,-0.92296124,-0.92309564,-0.92349887,-0.92349887,-0.92336446,-0.92336446,-0.92349887,-0.92349887,-0.92336446,-0.92323005,-0.92336446,-0.92349887,-0.92349887,-0.92336446,-0.92349887,-0.92349887,-0.92336446,-0.92349887,-0.9236333,-0.92349887,-0.92349887,-0.92349887,-0.9236333,-0.9236333,-0.92336446,-0.92323005,-0.92323005,-0.92323005,-0.92336446,-0.92323005,-0.92336446,-0.92349887,-0.92336446,-0.92336446,-0.92349887,-0.92336446,-0.92323005,-0.92323005,-0.92336446,-0.9237677,-0.9237677,-0.9237677,-0.9236333,-0.9237677,-0.9239021,-0.9237677,-0.9236333,-0.9236333,-0.92349887,-0.92349887,-0.9237677,-0.9237677,-0.9237677,-0.9237677,-0.9239021,-0.9241709,-0.9244398,-0.9244398,-0.9237677,-0.92323005,-0.9243054,-0.9267248,-0.9290098,-0.9288754,-0.9267248,-0.9268592,-0.928741,-0.92981625,-0.9290098,-0.9269936,-0.9248431,-0.9240365,-0.9248431,-0.9249775,-0.9237677,-0.92296124,-0.92323005,-0.92323005,-0.9228268,-0.9224236,-0.9222892,-0.9222892,-0.92336446,-0.92349887,-0.92134833,-0.91919774,-0.9186601,-0.9190633,-0.9197354,-0.9206763,-0.9209451,-0.92000425,-0.9205419,-0.9248431,-0.9291442,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.92995065,-0.9290098,-0.9302195,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9290098,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.92968184,-0.92793447,-0.9240365,-0.9210795,-0.9210795,-0.9212139,-0.9198698,-0.9190633,-0.9204075,-0.922558,-0.92323005,-0.92296124,-0.92296124,-0.92309564,-0.92323005,-0.92296124,-0.92296124,-0.9237677,-0.9241709,-0.9239021,-0.9236333,-0.92336446,-0.92309564,-0.9236333,-0.92605275,-0.928741,-0.929413,-0.9292786,-0.9295474,-0.9291442,-0.9269936,-0.9251119,-0.9245742,-0.9245742,-0.9243054,-0.9241709,-0.9241709,-0.9241709,-0.9243054,-0.9243054,-0.9243054,-0.9243054,-0.9241709,-0.9240365,-0.9237677,-0.92349887,-0.92349887,-0.9237677,-0.9239021,-0.9237677,-0.9236333,-0.9236333,-0.9236333,-0.9236333,-0.9237677,-0.9237677,-0.9239021,-0.9237677,-0.9236333,-0.9236333,-0.92349887,-0.92349887,-0.92323005,-0.92309564,-0.92336446,-0.9236333,-0.9236333,-0.92349887,-0.92349887,-0.9236333,-0.9236333,-0.92349887,-0.9236333,-0.9237677,-0.92349887,-0.92336446,-0.92349887,-0.92349887,-0.92349887,-0.92349887,-0.92349887,-0.9236333,-0.92349887,-0.92349887,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92323005,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92336446,-0.92349887,-0.92349887,-0.92336446,-0.92336446,-0.92349887,-0.9239021,-0.9241709,-0.9240365,-0.9239021,-0.9239021,-0.9240365,-0.9239021,-0.9237677,-0.9236333,-0.9236333,-0.9237677,-0.9237677,-0.9237677,-0.9237677,-0.9239021,-0.9239021,-0.9241709,-0.9244398,-0.9241709,-0.92336446,-0.9243054,-0.92739683,-0.929413,-0.9283377,-0.9256495,-0.9256495,-0.9280689,-0.9295474,-0.9290098,-0.926456,-0.9245742,-0.9243054,-0.9249775,-0.9249775,-0.9240365,-0.92336446,-0.92323005,-0.92309564,-0.9228268,-0.9224236,-0.92188597,-0.9220204,-0.922558,-0.9221548,-0.9204075,-0.9186601,-0.9183913,-0.91933215,-0.92013866,-0.9205419,-0.9212139,-0.92148274,-0.9224236,-0.92591834,-0.9291442,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.929413,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.929413,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.92995065,-0.93008506,-0.92968184,-0.9268592,-0.9224236,-0.9209451,-0.92148274,-0.9206763,-0.9190633,-0.91960096,-0.92188597,-0.92323005,-0.92323005,-0.92309564,-0.92323005,-0.92309564,-0.92296124,-0.92309564,-0.92349887,-0.9241709,-0.9243054,-0.9240365,-0.9236333,-0.92309564,-0.9226924,-0.92336446,-0.92605275,-0.92860657,-0.9292786,-0.9291442,-0.929413,-0.928741,-0.9265904,-0.9247086,-0.9244398,-0.9244398,-0.9241709,-0.9243054,-0.9244398,-0.9244398,-0.9244398,-0.9244398,-0.9243054,-0.9241709,-0.9241709,-0.9240365,-0.9237677,-0.92349887,-0.92349887,-0.9236333,-0.9237677,-0.9237677,-0.9236333,-0.9236333,-0.9236333,-0.9237677,-0.9239021,-0.9240365,-0.9239021,-0.9237677,-0.9237677,-0.9237677,-0.9237677,-0.92349887,-0.92309564,-0.92296124,-0.92349887,-0.9237677,-0.9236333,-0.92349887,-0.9236333,-0.9236333,-0.9237677,-0.9239021,-0.9239021,-0.9237677,-0.92349887,-0.92349887,-0.9236333,-0.92349887,-0.92349887,-0.92349887,-0.92349887,-0.9236333,-0.92349887,-0.92349887,-0.92349887,-0.92349887,-0.92336446,-0.92323005,-0.92336446,-0.92349887,-0.92349887,-0.92349887,-0.92349887,-0.92349887,-0.92349887,-0.92336446,-0.92323005,-0.92336446,-0.92349887,-0.9236333,-0.9239021,-0.9241709,-0.9241709,-0.9240365,-0.9240365,-0.9241709,-0.9240365,-0.9237677,-0.9236333,-0.9236333,-0.9236333,-0.9237677,-0.9239021,-0.9240365,-0.9240365,-0.9240365,-0.9241709,-0.9243054,-0.9243054,-0.9252463,-0.92766565,-0.92968184,-0.9288754,-0.926456,-0.92618716,-0.9283377,-0.92968184,-0.928741,-0.9265904,-0.9247086,-0.9244398,-0.9251119,-0.9248431,-0.9237677,-0.92296124,-0.92296124,-0.9228268,-0.922558,-0.922558,-0.9228268,-0.9228268,-0.9226924,-0.92188597,-0.91960096,-0.91771924,-0.9185257,-0.92027307,-0.9208107,-0.9206763,-0.9212139,-0.9228268,-0.9251119,-0.92753124,-0.9295474,-0.93008506,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.92995065,-0.9303539,-0.92981625,-0.9291442,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.929413,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.92981625,-0.92995065,-0.93008506,-0.92995065,-0.92995065,-0.92981625,-0.92995065,-0.93008506,-0.9290098,-0.9248431,-0.9212139,-0.9212139,-0.9210795,-0.91919774,-0.9185257,-0.9205419,-0.9226924,-0.92323005,-0.92309564,-0.92296124,-0.92296124,-0.92309564,-0.92323005,-0.92323005,-0.92349887,-0.9240365,-0.9244398,-0.9241709,-0.92349887,-0.92309564,-0.92296124,-0.9236333,-0.92578393,-0.92780006,-0.9283377,-0.9284721,-0.9288754,-0.9283377,-0.92618716,-0.9247086,-0.9245742,-0.9247086,-0.9245742,-0.9244398,-0.9244398,-0.9244398,-0.9244398,-0.9243054,-0.9243054,-0.9244398,-0.9243054,-0.9240365,-0.9239021,-0.9239021,-0.9237677,-0.9237677,-0.9237677,-0.9236333,-0.9236333,-0.9237677,-0.9237677,-0.9239021,-0.9239021,-0.9237677,-0.9237677,-0.9237677,-0.9237677,-0.9236333,-0.92349887,-0.92336446,-0.92323005,-0.92323005,-0.9236333,-0.9237677,-0.92349887,-0.92349887,-0.92349887,-0.9237677,-0.9240365,-0.9240365,-0.9237677,-0.92349887,-0.92349887,-0.92349887,-0.92349887,-0.92349887,-0.92349887,-0.92349887,-0.9236333,-0.9236333,-0.9236333,-0.9236333,-0.92349887,-0.92336446,-0.92336446,-0.92349887,-0.92349887,-0.92349887,-0.92349887,-0.92349887,-0.92349887,-0.92349887,-0.92336446,-0.92323005,-0.92336446,-0.92349887,-0.9236333,-0.9239021,-0.9240365,-0.9241709,-0.9240365,-0.9240365,-0.9240365,-0.9241709,-0.9239021,-0.9236333,-0.9236333,-0.9237677,-0.9240365,-0.9241709,-0.9241709,-0.9241709,-0.9244398,-0.9245742,-0.9244398,-0.9253807,-0.92766565,-0.9295474,-0.9290098,-0.927128,-0.9268592,-0.92860657,-0.9295474,-0.9284721,-0.926456,-0.9251119,-0.9247086,-0.9247086,-0.9243054,-0.92349887,-0.92296124,-0.922558,-0.9220204,-0.9220204,-0.9224236,-0.92296124,-0.92323005,-0.92296124,-0.92161715,-0.91946656,-0.9181225,-0.9187945,-0.9204075,-0.9212139,-0.9210795,-0.9220204,-0.9244398,-0.9269936,-0.9288754,-0.92995065,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9302195,-0.93008506,-0.9303539,-0.92981625,-0.9292786,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.92981625,-0.9302195,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.93008506,-0.92995065,-0.92981625,-0.92981625,-0.92995065,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.9272624,-0.9221548,-0.9204075,-0.92134833,-0.92027307,-0.9185257,-0.9197354,-0.9221548,-0.92296124,-0.9226924,-0.9228268,-0.92309564,-0.92296124,-0.9228268,-0.92296124,-0.92336446,-0.9239021,-0.9243054,-0.9244398,-0.9241709,-0.92349887,-0.92309564,-0.92309564,-0.92336446,-0.9248431,-0.9268592,-0.92780006,-0.9282033,-0.92860657,-0.9282033,-0.92632157,-0.9248431,-0.9244398,-0.9245742,-0.9245742,-0.9244398,-0.9243054,-0.9243054,-0.9243054,-0.9243054,-0.9243054,-0.9243054,-0.9240365,-0.9241709,-0.9241709,-0.9240365,-0.9237677,-0.9239021,-0.9239021,-0.9237677,-0.9239021,-0.9239021,-0.9239021,-0.9239021,-0.9239021,-0.9237677,-0.9237677,-0.9237677,-0.9236333,-0.9236333,-0.9236333,-0.92349887,-0.92336446,-0.92349887,-0.9237677,-0.9236333,-0.92349887,-0.92349887,-0.9237677,-0.9240365,-0.9240365,-0.9240365,-0.9239021,-0.9237677,-0.9236333,-0.92349887,-0.92349887,-0.9236333,-0.9236333,-0.9236333,-0.92349887,-0.9236333,-0.9237677,-0.9237677,-0.92349887,-0.92349887,-0.92349887,-0.92349887,-0.92349887,-0.92349887,-0.92349887,-0.9236333,-0.92349887,-0.92336446,-0.92336446,-0.9236333,-0.9237677,-0.9237677,-0.9239021,-0.9240365,-0.9241709,-0.9240365,-0.9237677,-0.9237677,-0.9240365,-0.9240365,-0.9237677,-0.9237677,-0.9240365,-0.9241709,-0.9241709,-0.9243054,-0.9245742,-0.9245742,-0.9244398,-0.9252463,-0.92739683,-0.9290098,-0.9288754,-0.92753124,-0.9268592,-0.9280689,-0.9292786,-0.9283377,-0.92632157,-0.9248431,-0.9240365,-0.92336446,-0.9226924,-0.9224236,-0.9226924,-0.92309564,-0.92296124,-0.9222892,-0.9221548,-0.922558,-0.92309564,-0.92309564,-0.92161715,-0.91946656,-0.9182569,-0.9189289,-0.92027307,-0.9206763,-0.9212139,-0.92309564,-0.92605275,-0.92860657,-0.92981625,-0.93008506,-0.93008506,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.92995065,-0.92981625,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.93008506,-0.92995065,-0.92995065,-0.92981625,-0.92968184,-0.92981625,-0.92981625,-0.92995065,-0.93008506,-0.93008506,-0.92995065,-0.929413,-0.9243054,-0.92000425,-0.9205419,-0.9209451,-0.9190633,-0.9187945,-0.9208107,-0.9222892,-0.922558,-0.9228268,-0.92309564,-0.9228268,-0.9226924,-0.92296124,-0.92336446,-0.9236333,-0.9236333,-0.9240365,-0.9244398,-0.9243054,-0.9239021,-0.9236333,-0.92336446,-0.92349887,-0.9248431,-0.9265904,-0.92739683,-0.92793447,-0.9290098,-0.928741,-0.9267248,-0.9251119,-0.9245742,-0.9245742,-0.9244398,-0.9241709,-0.9239021,-0.9241709,-0.9244398,-0.9244398,-0.9243054,-0.9241709,-0.9241709,-0.9241709,-0.9240365,-0.9239021,-0.9239021,-0.9240365,-0.9239021,-0.9237677,-0.9239021,-0.9239021,-0.9239021,-0.9240365,-0.9239021,-0.9239021,-0.9237677,-0.9237677,-0.9237677,-0.9237677,-0.9237677,-0.92349887,-0.92336446,-0.92349887,-0.9237677,-0.9236333,-0.9237677,-0.9239021,-0.9240365,-0.9240365,-0.9240365,-0.9237677,-0.9236333,-0.9237677,-0.9236333,-0.92349887,-0.9236333,-0.9237677,-0.9237677,-0.9237677,-0.9237677,-0.9237677,-0.9236333,-0.9236333,-0.9236333,-0.9236333,-0.92349887,-0.92336446,-0.92349887,-0.9236333,-0.9236333,-0.92336446,-0.92336446,-0.9236333,-0.9239021,-0.9239021,-0.9239021,-0.9240365,-0.9241709,-0.9243054,-0.9241709,-0.9240365,-0.9239021,-0.9240365,-0.9240365,-0.9239021,-0.9239021,-0.9241709,-0.9241709,-0.9243054,-0.9247086,-0.9248431,-0.9243054,-0.9251119,-0.9272624,-0.928741,-0.9282033,-0.927128,-0.927128,-0.92860657,-0.9295474,-0.9282033,-0.92632157,-0.9251119,-0.92336446,-0.9205419,-0.9186601,-0.9190633,-0.9206763,-0.9221548,-0.92296124,-0.92323005,-0.92323005,-0.92296124,-0.92296124,-0.92309564,-0.9224236,-0.9205419,-0.9186601,-0.9190633,-0.9204075,-0.9205419,-0.92134833,-0.9243054,-0.92753124,-0.9295474,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.93008506,-0.92995065,-0.92981625,-0.92968184,-0.92981625,-0.92981625,-0.92995065,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.92739683,-0.9212139,-0.91946656,-0.9206763,-0.9197354,-0.91798806,-0.9186601,-0.9208107,-0.9222892,-0.9228268,-0.9226924,-0.92323005,-0.9237677,-0.9226924,-0.92161715,-0.92188597,-0.922558,-0.922558,-0.92309564,-0.9241709,-0.9247086,-0.9244398,-0.9240365,-0.92336446,-0.92336446,-0.9245742,-0.92618716,-0.92753124,-0.92860657,-0.9292786,-0.9288754,-0.92753124,-0.92618716,-0.9255151,-0.9251119,-0.9243054,-0.9237677,-0.9240365,-0.9244398,-0.9243054,-0.9241709,-0.9240365,-0.9240365,-0.9239021,-0.9240365,-0.9240365,-0.9240365,-0.9239021,-0.9239021,-0.9236333,-0.9236333,-0.9237677,-0.9237677,-0.9239021,-0.9239021,-0.9239021,-0.9237677,-0.9239021,-0.9239021,-0.9239021,-0.9237677,-0.9236333,-0.92336446,-0.92336446,-0.9236333,-0.9237677,-0.9239021,-0.9240365,-0.9241709,-0.9241709,-0.9241709,-0.9239021,-0.9237677,-0.9237677,-0.9237677,-0.9236333,-0.9237677,-0.9239021,-0.9237677,-0.9239021,-0.9240365,-0.9237677,-0.9236333,-0.9236333,-0.9237677,-0.9237677,-0.9236333,-0.92349887,-0.92349887,-0.9236333,-0.9236333,-0.92336446,-0.92336446,-0.9236333,-0.9237677,-0.9239021,-0.9239021,-0.9239021,-0.9241709,-0.9245742,-0.9244398,-0.9241709,-0.9240365,-0.9240365,-0.9240365,-0.9239021,-0.9240365,-0.9241709,-0.9243054,-0.9244398,-0.9247086,-0.9244398,-0.9252463,-0.92766565,-0.9290098,-0.92753124,-0.92605275,-0.927128,-0.9291442,-0.9295474,-0.92780006,-0.92591834,-0.9252463,-0.9240365,-0.92000425,-0.91529983,-0.91462773,-0.9182569,-0.9220204,-0.92336446,-0.92336446,-0.9236333,-0.9236333,-0.92336446,-0.92323005,-0.922558,-0.9212139,-0.9197354,-0.91946656,-0.92013866,-0.9205419,-0.9220204,-0.9252463,-0.9284721,-0.92995065,-0.92995065,-0.92981625,-0.92981625,-0.92995065,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.9295474,-0.92995065,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.93008506,-0.93008506,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.93008506,-0.92981625,-0.92981625,-0.92981625,-0.92981625,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.92981625,-0.9245742,-0.9197354,-0.9198698,-0.9206763,-0.9189289,-0.91771924,-0.91933215,-0.92148274,-0.9221548,-0.9228268,-0.9241709,-0.922558,-0.9181225,-0.9171816,-0.92013866,-0.92175156,-0.9212139,-0.9212139,-0.9226924,-0.9243054,-0.9248431,-0.9248431,-0.9247086,-0.9239021,-0.92336446,-0.9244398,-0.926456,-0.92780006,-0.9282033,-0.9284721,-0.92860657,-0.9282033,-0.92739683,-0.9267248,-0.92578393,-0.9245742,-0.9243054,-0.9245742,-0.9244398,-0.9243054,-0.9241709,-0.9240365,-0.9239021,-0.9240365,-0.9240365,-0.9240365,-0.9239021,-0.9239021,-0.9240365,-0.9240365,-0.9239021,-0.9239021,-0.9239021,-0.9240365,-0.9240365,-0.9239021,-0.9239021,-0.9240365,-0.9239021,-0.9237677,-0.9239021,-0.9236333,-0.92349887,-0.9236333,-0.9237677,-0.9240365,-0.9239021,-0.92349887,-0.9237677,-0.9243054,-0.9241709,-0.9239021,-0.9237677,-0.9237677,-0.9237677,-0.9239021,-0.9240365,-0.9237677,-0.9236333,-0.9237677,-0.9237677,-0.9236333,-0.9237677,-0.9237677,-0.9236333,-0.9236333,-0.9236333,-0.9237677,-0.9239021,-0.9239021,-0.9237677,-0.9237677,-0.9239021,-0.9239021,-0.9237677,-0.9237677,-0.9237677,-0.9241709,-0.9245742,-0.9247086,-0.9243054,-0.9243054,-0.9241709,-0.9241709,-0.9241709,-0.9241709,-0.9241709,-0.9243054,-0.9247086,-0.9247086,-0.9255151,-0.92793447,-0.9292786,-0.92753124,-0.9252463,-0.92578393,-0.9284721,-0.929413,-0.9272624,-0.9248431,-0.9245742,-0.9243054,-0.9221548,-0.91758484,-0.9140901,-0.91610634,-0.9212139,-0.9241709,-0.9241709,-0.9239021,-0.9237677,-0.9237677,-0.9236333,-0.9228268,-0.9212139,-0.91960096,-0.91946656,-0.92013866,-0.92013866,-0.92134833,-0.9253807,-0.9288754,-0.92995065,-0.92981625,-0.92968184,-0.92981625,-0.92981625,-0.92981625,-0.92995065,-0.93008506,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.9295474,-0.93008506,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9303539,-0.9302195,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.92981625,-0.92981625,-0.92995065,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.92981625,-0.92860657,-0.9224236,-0.9189289,-0.9198698,-0.92027307,-0.9189289,-0.9189289,-0.92000425,-0.9212139,-0.92309564,-0.92323005,-0.9186601,-0.9151654,-0.91758484,-0.92161715,-0.922558,-0.92175156,-0.92148274,-0.92175156,-0.9224236,-0.92336446,-0.9241709,-0.9248431,-0.9247086,-0.92336446,-0.92309564,-0.9245742,-0.92605275,-0.9267248,-0.92739683,-0.92780006,-0.9272624,-0.9269936,-0.9267248,-0.92618716,-0.9253807,-0.9247086,-0.9245742,-0.9245742,-0.9244398,-0.9241709,-0.9239021,-0.9239021,-0.9241709,-0.9241709,-0.9240365,-0.9240365,-0.9240365,-0.9239021,-0.9239021,-0.9240365,-0.9239021,-0.9239021,-0.9240365,-0.9241709,-0.9240365,-0.9240365,-0.9239021,-0.9237677,-0.9239021,-0.9240365,-0.9237677,-0.92349887,-0.92349887,-0.9240365,-0.9244398,-0.92296124,-0.92027307,-0.92000425,-0.9226924,-0.9244398,-0.9240365,-0.9236333,-0.9239021,-0.9240365,-0.9240365,-0.9243054,-0.9241709,-0.92349887,-0.92336446,-0.9236333,-0.9237677,-0.9237677,-0.9237677,-0.9237677,-0.9237677,-0.9237677,-0.9239021,-0.9239021,-0.9237677,-0.9236333,-0.9239021,-0.9240365,-0.9239021,-0.9239021,-0.9239021,-0.9239021,-0.9239021,-0.9243054,-0.9245742,-0.9244398,-0.9244398,-0.9244398,-0.9244398,-0.9243054,-0.9243054,-0.9243054,-0.9244398,-0.9249775,-0.92618716,-0.9284721,-0.9292786,-0.92753124,-0.9255151,-0.92591834,-0.92766565,-0.92780006,-0.92605275,-0.9247086,-0.9247086,-0.9240365,-0.922558,-0.92175156,-0.92000425,-0.9183913,-0.91960096,-0.9224236,-0.9237677,-0.9237677,-0.9237677,-0.9236333,-0.92349887,-0.92296124,-0.9210795,-0.9190633,-0.9186601,-0.91960096,-0.92000425,-0.9206763,-0.9241709,-0.9284721,-0.93008506,-0.92995065,-0.92968184,-0.92981625,-0.92995065,-0.92981625,-0.92981625,-0.92995065,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.93008506,-0.92981625,-0.92981625,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.92968184,-0.9265904,-0.9210795,-0.9190633,-0.92000425,-0.92013866,-0.91933215,-0.91919774,-0.9198698,-0.9212139,-0.92188597,-0.9206763,-0.92027307,-0.9220204,-0.9236333,-0.92323005,-0.92296124,-0.92309564,-0.9222892,-0.92161715,-0.9220204,-0.9220204,-0.9220204,-0.92296124,-0.92349887,-0.92296124,-0.92309564,-0.9244398,-0.9255151,-0.9255151,-0.92578393,-0.9267248,-0.9268592,-0.92591834,-0.9249775,-0.9247086,-0.9247086,-0.9245742,-0.9245742,-0.9244398,-0.9243054,-0.9240365,-0.9240365,-0.9240365,-0.9241709,-0.9241709,-0.9241709,-0.9240365,-0.9240365,-0.9239021,-0.9239021,-0.9240365,-0.9240365,-0.9240365,-0.9240365,-0.9240365,-0.9239021,-0.9240365,-0.9240365,-0.9241709,-0.9241709,-0.9240365,-0.9237677,-0.9236333,-0.9241709,-0.9237677,-0.92027307,-0.9157031,-0.9158375,-0.9212139,-0.9247086,-0.9240365,-0.92336446,-0.9239021,-0.9243054,-0.9243054,-0.9243054,-0.9241709,-0.9239021,-0.9237677,-0.9237677,-0.9237677,-0.9236333,-0.9237677,-0.9239021,-0.9239021,-0.9237677,-0.9237677,-0.9237677,-0.9237677,-0.9236333,-0.9236333,-0.9237677,-0.9237677,-0.9239021,-0.9240365,-0.9241709,-0.9240365,-0.9240365,-0.9243054,-0.9245742,-0.9247086,-0.9245742,-0.9244398,-0.9244398,-0.9244398,-0.9247086,-0.9253807,-0.9268592,-0.92860657,-0.9282033,-0.92618716,-0.9256495,-0.927128,-0.928741,-0.9280689,-0.9249775,-0.92296124,-0.9239021,-0.9245742,-0.9220204,-0.9208107,-0.9224236,-0.9236333,-0.9226924,-0.92175156,-0.9222892,-0.92323005,-0.92349887,-0.92323005,-0.92296124,-0.9224236,-0.9209451,-0.9189289,-0.9181225,-0.9190633,-0.92000425,-0.92027307,-0.922558,-0.9269936,-0.93008506,-0.93008506,-0.92981625,-0.92981625,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9306227,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.93008506,-0.92981625,-0.92981625,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9292786,-0.9255151,-0.9210795,-0.9198698,-0.9204075,-0.92027307,-0.91960096,-0.9189289,-0.9186601,-0.92000425,-0.9222892,-0.9236333,-0.9239021,-0.92349887,-0.92309564,-0.92336446,-0.92349887,-0.92309564,-0.92296124,-0.92296124,-0.92148274,-0.9197354,-0.9205419,-0.92323005,-0.9240365,-0.9228268,-0.9226924,-0.9245742,-0.92618716,-0.9272624,-0.9280689,-0.92766565,-0.9265904,-0.9256495,-0.9252463,-0.9249775,-0.9247086,-0.9247086,-0.9247086,-0.9244398,-0.9243054,-0.9241709,-0.9241709,-0.9241709,-0.9241709,-0.9241709,-0.9241709,-0.9241709,-0.9241709,-0.9239021,-0.9239021,-0.9240365,-0.9240365,-0.9240365,-0.9241709,-0.9241709,-0.9243054,-0.9243054,-0.9240365,-0.9240365,-0.9241709,-0.9237677,-0.9237677,-0.9237677,-0.9221548,-0.9182569,-0.91489655,-0.9157031,-0.9205419,-0.9239021,-0.9241709,-0.9236333,-0.9240365,-0.9244398,-0.9244398,-0.9241709,-0.9239021,-0.9237677,-0.9239021,-0.9237677,-0.9236333,-0.9237677,-0.9239021,-0.9239021,-0.9239021,-0.9237677,-0.9237677,-0.9239021,-0.9237677,-0.9236333,-0.9236333,-0.9237677,-0.9237677,-0.9237677,-0.9239021,-0.9241709,-0.9243054,-0.9241709,-0.9243054,-0.9248431,-0.9251119,-0.9248431,-0.9244398,-0.9244398,-0.9247086,-0.92591834,-0.92753124,-0.9284721,-0.927128,-0.9253807,-0.92578393,-0.9272624,-0.9282033,-0.92766565,-0.9256495,-0.9236333,-0.9236333,-0.9239021,-0.9222892,-0.9206763,-0.92134833,-0.92309564,-0.9240365,-0.9237677,-0.92296124,-0.922558,-0.92296124,-0.9226924,-0.92161715,-0.9209451,-0.9204075,-0.9190633,-0.9185257,-0.91933215,-0.92000425,-0.92000425,-0.9210795,-0.9248431,-0.9288754,-0.9302195,-0.93008506,-0.92981625,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.93008506,-0.929413,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9288754,-0.9252463,-0.9220204,-0.9208107,-0.9206763,-0.92027307,-0.91960096,-0.9187945,-0.9183913,-0.91960096,-0.92175156,-0.92296124,-0.92296124,-0.92296124,-0.92323005,-0.92309564,-0.92323005,-0.9237677,-0.92296124,-0.92027307,-0.9183913,-0.9198698,-0.92323005,-0.9248431,-0.9236333,-0.9220204,-0.92296124,-0.92618716,-0.92793447,-0.9272624,-0.92632157,-0.9265904,-0.9272624,-0.9268592,-0.9256495,-0.9248431,-0.9248431,-0.9247086,-0.9244398,-0.9244398,-0.9243054,-0.9241709,-0.9240365,-0.9241709,-0.9243054,-0.9243054,-0.9241709,-0.9241709,-0.9240365,-0.9239021,-0.9240365,-0.9241709,-0.9243054,-0.9244398,-0.9244398,-0.9243054,-0.9240365,-0.9237677,-0.9239021,-0.9240365,-0.9239021,-0.9236333,-0.9228268,-0.92000425,-0.9167784,-0.9151654,-0.91624075,-0.91933215,-0.9222892,-0.9239021,-0.9240365,-0.9240365,-0.9241709,-0.9240365,-0.9239021,-0.9239021,-0.9240365,-0.9239021,-0.9237677,-0.9237677,-0.9237677,-0.9239021,-0.9239021,-0.9239021,-0.9237677,-0.9237677,-0.9237677,-0.9237677,-0.9237677,-0.9239021,-0.9239021,-0.9237677,-0.9237677,-0.9239021,-0.9239021,-0.9241709,-0.9241709,-0.9243054,-0.9248431,-0.9253807,-0.9251119,-0.9245742,-0.9244398,-0.9247086,-0.926456,-0.9284721,-0.928741,-0.92766565,-0.92753124,-0.92766565,-0.927128,-0.92578393,-0.9248431,-0.9245742,-0.9249775,-0.9249775,-0.9237677,-0.9221548,-0.92148274,-0.9221548,-0.9228268,-0.9228268,-0.9228268,-0.9224236,-0.92175156,-0.9210795,-0.92027307,-0.91946656,-0.91919774,-0.91919774,-0.91919774,-0.9197354,-0.92013866,-0.91960096,-0.92013866,-0.92336446,-0.92766565,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9304883,-0.9304883,-0.93008506,-0.9302195,-0.93008506,-0.9292786,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9302195,-0.928741,-0.92578393,-0.92296124,-0.92134833,-0.9208107,-0.9206763,-0.92013866,-0.9190633,-0.9183913,-0.9190633,-0.9206763,-0.9221548,-0.92296124,-0.92323005,-0.92323005,-0.9236333,-0.9237677,-0.92027307,-0.91597193,-0.91624075,-0.9204075,-0.92349887,-0.9245742,-0.9247086,-0.9237677,-0.922558,-0.92349887,-0.92578393,-0.92605275,-0.9256495,-0.9265904,-0.92793447,-0.9280689,-0.9267248,-0.9253807,-0.9247086,-0.9247086,-0.9248431,-0.9247086,-0.9244398,-0.9243054,-0.9241709,-0.9241709,-0.9241709,-0.9243054,-0.9244398,-0.9244398,-0.9243054,-0.9241709,-0.9241709,-0.9243054,-0.9244398,-0.9245742,-0.9244398,-0.9243054,-0.9239021,-0.9237677,-0.9239021,-0.9240365,-0.9236333,-0.9228268,-0.9206763,-0.9174504,-0.91462773,-0.91355246,-0.91476214,-0.91771924,-0.9206763,-0.92296124,-0.9237677,-0.9237677,-0.9239021,-0.9239021,-0.9239021,-0.9241709,-0.9243054,-0.9243054,-0.9240365,-0.9239021,-0.9237677,-0.9237677,-0.9237677,-0.9239021,-0.9240365,-0.9240365,-0.9240365,-0.9239021,-0.9239021,-0.9239021,-0.9240365,-0.9240365,-0.9240365,-0.9240365,-0.9239021,-0.9240365,-0.9241709,-0.9243054,-0.9245742,-0.9249775,-0.9251119,-0.9256495,-0.92591834,-0.9255151,-0.92578393,-0.92753124,-0.92860657,-0.9283377,-0.92766565,-0.9265904,-0.9249775,-0.9243054,-0.9245742,-0.9248431,-0.9244398,-0.9237677,-0.92309564,-0.9228268,-0.922558,-0.922558,-0.9224236,-0.92188597,-0.9212139,-0.9204075,-0.91933215,-0.9186601,-0.9185257,-0.9190633,-0.91933215,-0.91933215,-0.91960096,-0.9198698,-0.91933215,-0.91960096,-0.922558,-0.9272624,-0.93008506,-0.9302195,-0.93008506,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.92995065,-0.92995065,-0.9295474,-0.9292786,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9288754,-0.9265904,-0.9239021,-0.92188597,-0.9208107,-0.9206763,-0.9204075,-0.91960096,-0.9185257,-0.9186601,-0.9205419,-0.9226924,-0.92323005,-0.92336446,-0.9239021,-0.922558,-0.9183913,-0.91597193,-0.9183913,-0.9220204,-0.92336446,-0.9237677,-0.9248431,-0.9253807,-0.9244398,-0.92309564,-0.9236333,-0.9255151,-0.9272624,-0.9282033,-0.92860657,-0.928741,-0.9283377,-0.9269936,-0.9253807,-0.9245742,-0.9245742,-0.9247086,-0.9244398,-0.9243054,-0.9241709,-0.9241709,-0.9243054,-0.9244398,-0.9243054,-0.9241709,-0.9241709,-0.9241709,-0.9243054,-0.9243054,-0.9245742,-0.9245742,-0.9243054,-0.9241709,-0.9240365,-0.9236333,-0.9239021,-0.9241709,-0.9222892,-0.9189289,-0.91624075,-0.9144933,-0.9126116,-0.91180515,-0.91341805,-0.91597193,-0.9183913,-0.9210795,-0.92323005,-0.9239021,-0.9240365,-0.9241709,-0.9241709,-0.9243054,-0.9243054,-0.9243054,-0.9241709,-0.9239021,-0.9237677,-0.9237677,-0.9237677,-0.9239021,-0.9240365,-0.9240365,-0.9240365,-0.9240365,-0.9239021,-0.9239021,-0.9240365,-0.9241709,-0.9243054,-0.9243054,-0.9243054,-0.9243054,-0.9241709,-0.9241709,-0.9244398,-0.9255151,-0.9267248,-0.9280689,-0.928741,-0.92793447,-0.92632157,-0.9252463,-0.9247086,-0.9245742,-0.9251119,-0.9249775,-0.9244398,-0.9244398,-0.9247086,-0.9241709,-0.92336446,-0.9228268,-0.9224236,-0.9222892,-0.9226924,-0.92296124,-0.9221548,-0.9206763,-0.91919774,-0.9183913,-0.9182569,-0.9183913,-0.9187945,-0.9190633,-0.91933215,-0.92000425,-0.9205419,-0.9206763,-0.92134833,-0.9240365,-0.92780006,-0.93008506,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.92968184,-0.9295474,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.929413,-0.92793447,-0.9252463,-0.9220204,-0.9205419,-0.9209451,-0.9208107,-0.91946656,-0.9183913,-0.91933215,-0.92161715,-0.92309564,-0.92349887,-0.92349887,-0.9222892,-0.9212139,-0.92161715,-0.9226924,-0.92296124,-0.92296124,-0.92336446,-0.9241709,-0.9249775,-0.9252463,-0.9244398,-0.92336446,-0.9241709,-0.9265904,-0.92860657,-0.9291442,-0.9290098,-0.9290098,-0.928741,-0.9272624,-0.9255151,-0.9245742,-0.9245742,-0.9245742,-0.9245742,-0.9244398,-0.9244398,-0.9245742,-0.9245742,-0.9244398,-0.9243054,-0.9244398,-0.9244398,-0.9244398,-0.9244398,-0.9244398,-0.9245742,-0.9244398,-0.9244398,-0.9244398,-0.9240365,-0.9240365,-0.9244398,-0.92188597,-0.91610634,-0.9124772,-0.91180515,-0.9105954,-0.9100578,-0.9123428,-0.91556865,-0.9182569,-0.9212139,-0.92349887,-0.9243054,-0.9243054,-0.9243054,-0.9243054,-0.9243054,-0.9243054,-0.9241709,-0.9241709,-0.9240365,-0.9240365,-0.9239021,-0.9239021,-0.9239021,-0.9239021,-0.9239021,-0.9240365,-0.9240365,-0.9239021,-0.9237677,-0.9240365,-0.9243054,-0.9243054,-0.9243054,-0.9244398,-0.9245742,-0.9244398,-0.9247086,-0.92618716,-0.92793447,-0.9288754,-0.9292786,-0.9291442,-0.92793447,-0.92618716,-0.9249775,-0.9244398,-0.9241709,-0.9240365,-0.9241709,-0.9244398,-0.9243054,-0.9237677,-0.92309564,-0.9224236,-0.92148274,-0.9206763,-0.9212139,-0.9224236,-0.9222892,-0.9208107,-0.91919774,-0.9185257,-0.9186601,-0.9190633,-0.91933215,-0.9190633,-0.91960096,-0.92148274,-0.92323005,-0.9241709,-0.9249775,-0.9267248,-0.9290098,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9302195,-0.9302195,-0.92995065,-0.92981625,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9302195,-0.9303539,-0.9304883,-0.9306227,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.93008506,-0.9291442,-0.9265904,-0.922558,-0.9205419,-0.9206763,-0.9205419,-0.91933215,-0.9187945,-0.92013866,-0.9224236,-0.92349887,-0.92309564,-0.92336446,-0.9240365,-0.9243054,-0.9236333,-0.92296124,-0.92309564,-0.9236333,-0.9236333,-0.9236333,-0.9244398,-0.9252463,-0.9249775,-0.9243054,-0.9249775,-0.927128,-0.9288754,-0.9290098,-0.92860657,-0.9288754,-0.9290098,-0.92793447,-0.92632157,-0.9253807,-0.9249775,-0.9245742,-0.9243054,-0.9244398,-0.9247086,-0.9248431,-0.9248431,-0.9248431,-0.9247086,-0.9245742,-0.9245742,-0.9244398,-0.9244398,-0.9245742,-0.9245742,-0.9244398,-0.9245742,-0.9244398,-0.9241709,-0.9243054,-0.92175156,-0.9157031,-0.9114019,-0.9103266,-0.90925133,-0.90925133,-0.9114019,-0.91462773,-0.9183913,-0.92175156,-0.92349887,-0.9241709,-0.9244398,-0.9245742,-0.9244398,-0.9243054,-0.9243054,-0.9244398,-0.9244398,-0.9241709,-0.9241709,-0.9241709,-0.9240365,-0.9240365,-0.9240365,-0.9240365,-0.9241709,-0.9241709,-0.9240365,-0.9240365,-0.9241709,-0.9241709,-0.9243054,-0.9244398,-0.9247086,-0.9251119,-0.92605275,-0.92753124,-0.9288754,-0.929413,-0.9290098,-0.9284721,-0.92793447,-0.9269936,-0.926456,-0.926456,-0.92605275,-0.9245742,-0.9240365,-0.9243054,-0.9239021,-0.92323005,-0.9228268,-0.9224236,-0.92148274,-0.9206763,-0.9212139,-0.9221548,-0.92175156,-0.92027307,-0.9189289,-0.9185257,-0.9189289,-0.91933215,-0.91946656,-0.92013866,-0.92175156,-0.9239021,-0.92578393,-0.9269936,-0.92793447,-0.9290098,-0.92995065,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.92995065,-0.9292786,-0.9295474,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9304883,-0.9303539,-0.9302195,-0.92995065,-0.9283377,-0.92323005,-0.92013866,-0.9204075,-0.9204075,-0.9189289,-0.9190633,-0.92148274,-0.92309564,-0.92309564,-0.92336446,-0.9240365,-0.9240365,-0.92349887,-0.92323005,-0.92309564,-0.92309564,-0.92296124,-0.92309564,-0.92336446,-0.9237677,-0.9244398,-0.9248431,-0.9248431,-0.9255151,-0.9272624,-0.9288754,-0.928741,-0.92860657,-0.9290098,-0.929413,-0.9288754,-0.92753124,-0.9256495,-0.9240365,-0.92336446,-0.9237677,-0.9244398,-0.9247086,-0.9248431,-0.9248431,-0.9247086,-0.9245742,-0.9245742,-0.9244398,-0.9244398,-0.9244398,-0.9245742,-0.9245742,-0.9244398,-0.9241709,-0.9241709,-0.9240365,-0.9209451,-0.9151654,-0.91180515,-0.91193956,-0.91167074,-0.9114019,-0.912746,-0.91624075,-0.9204075,-0.9226924,-0.9236333,-0.9241709,-0.9247086,-0.9247086,-0.9245742,-0.9244398,-0.9243054,-0.9244398,-0.9247086,-0.9244398,-0.9240365,-0.9237677,-0.9239021,-0.9240365,-0.9241709,-0.9243054,-0.9241709,-0.9240365,-0.9241709,-0.9240365,-0.9240365,-0.9243054,-0.9248431,-0.9255151,-0.9265904,-0.92766565,-0.928741,-0.9291442,-0.928741,-0.9280689,-0.92766565,-0.92780006,-0.9283377,-0.9280689,-0.9267248,-0.9251119,-0.9243054,-0.9244398,-0.9244398,-0.9239021,-0.9228268,-0.9220204,-0.9221548,-0.9222892,-0.92188597,-0.92188597,-0.9226924,-0.9221548,-0.92000425,-0.9185257,-0.9185257,-0.9189289,-0.91919774,-0.9198698,-0.92134833,-0.9239021,-0.9265904,-0.9282033,-0.9290098,-0.92968184,-0.92995065,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.93008506,-0.92968184,-0.92995065,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9282033,-0.92309564,-0.92013866,-0.9204075,-0.92000425,-0.9190633,-0.92027307,-0.9222892,-0.92309564,-0.92336446,-0.92349887,-0.92349887,-0.92349887,-0.92309564,-0.92188597,-0.9210795,-0.92175156,-0.9228268,-0.92296124,-0.9224236,-0.9226924,-0.9239021,-0.9249775,-0.9251119,-0.9255151,-0.92739683,-0.9291442,-0.9291442,-0.92860657,-0.92860657,-0.9290098,-0.928741,-0.92739683,-0.92578393,-0.9245742,-0.9239021,-0.9237677,-0.9239021,-0.9240365,-0.9241709,-0.9243054,-0.9244398,-0.9245742,-0.9245742,-0.9244398,-0.9244398,-0.9245742,-0.9247086,-0.9247086,-0.9247086,-0.9248431,-0.9245742,-0.9226924,-0.9197354,-0.9186601,-0.92000425,-0.9206763,-0.9206763,-0.9222892,-0.9247086,-0.92578393,-0.9256495,-0.9251119,-0.9248431,-0.9248431,-0.9245742,-0.9244398,-0.9245742,-0.9245742,-0.9245742,-0.9248431,-0.9245742,-0.9236333,-0.92309564,-0.9236333,-0.9241709,-0.9241709,-0.9241709,-0.9243054,-0.9244398,-0.9247086,-0.9247086,-0.9248431,-0.9255151,-0.9265904,-0.92766565,-0.92860657,-0.9292786,-0.9291442,-0.9283377,-0.92753124,-0.9272624,-0.92780006,-0.928741,-0.9290098,-0.92766565,-0.9248431,-0.9228268,-0.92336446,-0.9243054,-0.9239021,-0.92336446,-0.922558,-0.92161715,-0.92148274,-0.9220204,-0.9222892,-0.9224236,-0.9221548,-0.9204075,-0.9186601,-0.9185257,-0.9190633,-0.91933215,-0.92027307,-0.92296124,-0.92591834,-0.92793447,-0.9292786,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.93008506,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.92766565,-0.9226924,-0.92013866,-0.92027307,-0.91946656,-0.91919774,-0.9212139,-0.92309564,-0.92336446,-0.92309564,-0.92323005,-0.92323005,-0.9224236,-0.9210795,-0.9205419,-0.92161715,-0.9226924,-0.9226924,-0.9222892,-0.922558,-0.92296124,-0.9239021,-0.9251119,-0.9253807,-0.9256495,-0.9272624,-0.928741,-0.9290098,-0.9284721,-0.9280689,-0.9283377,-0.9284721,-0.9283377,-0.92780006,-0.9265904,-0.9252463,-0.9245742,-0.9245742,-0.9244398,-0.9244398,-0.9245742,-0.9245742,-0.9245742,-0.9245742,-0.9245742,-0.9248431,-0.9249775,-0.9252463,-0.9253807,-0.9253807,-0.92578393,-0.926456,-0.927128,-0.92780006,-0.9284721,-0.928741,-0.9288754,-0.9292786,-0.9288754,-0.92780006,-0.927128,-0.926456,-0.9256495,-0.9249775,-0.9247086,-0.9247086,-0.9248431,-0.9249775,-0.9247086,-0.9244398,-0.9247086,-0.9247086,-0.9243054,-0.9244398,-0.9247086,-0.9247086,-0.9247086,-0.9253807,-0.92591834,-0.92632157,-0.9267248,-0.9269936,-0.92753124,-0.9283377,-0.928741,-0.928741,-0.9284721,-0.9282033,-0.92766565,-0.92766565,-0.9284721,-0.9291442,-0.92860657,-0.9267248,-0.9245742,-0.92336446,-0.92323005,-0.92336446,-0.92336446,-0.92323005,-0.92309564,-0.9226924,-0.9220204,-0.92148274,-0.9220204,-0.9224236,-0.92188597,-0.92013866,-0.9186601,-0.9186601,-0.91919774,-0.91919774,-0.9204075,-0.9236333,-0.9272624,-0.9288754,-0.92995065,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.92995065,-0.9302195,-0.9303539,-0.92995065,-0.9303539,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.9295474,-0.926456,-0.92175156,-0.92013866,-0.9198698,-0.9190633,-0.92013866,-0.922558,-0.92349887,-0.92309564,-0.92296124,-0.92296124,-0.922558,-0.9221548,-0.9222892,-0.9226924,-0.9228268,-0.922558,-0.9224236,-0.9226924,-0.9226924,-0.9228268,-0.9237677,-0.9248431,-0.9245742,-0.9244398,-0.92578393,-0.92766565,-0.928741,-0.92860657,-0.9282033,-0.9280689,-0.92860657,-0.9291442,-0.9288754,-0.92780006,-0.9268592,-0.92632157,-0.9256495,-0.9249775,-0.9248431,-0.9247086,-0.9247086,-0.9247086,-0.9247086,-0.9248431,-0.9251119,-0.9252463,-0.9255151,-0.9267248,-0.9280689,-0.9288754,-0.9290098,-0.9290098,-0.9288754,-0.9290098,-0.9290098,-0.9288754,-0.9284721,-0.92793447,-0.92739683,-0.9272624,-0.9268592,-0.92618716,-0.92578393,-0.92578393,-0.9255151,-0.9251119,-0.9252463,-0.9255151,-0.92591834,-0.92632157,-0.92618716,-0.92578393,-0.92578393,-0.92605275,-0.926456,-0.927128,-0.92766565,-0.92793447,-0.9280689,-0.9280689,-0.9282033,-0.9284721,-0.92860657,-0.9282033,-0.9280689,-0.9283377,-0.928741,-0.9290098,-0.9290098,-0.92766565,-0.9255151,-0.9236333,-0.92336446,-0.9243054,-0.9248431,-0.9236333,-0.9226924,-0.92296124,-0.92296124,-0.922558,-0.9221548,-0.9220204,-0.9222892,-0.9224236,-0.9205419,-0.91785365,-0.91798806,-0.91933215,-0.9190633,-0.91960096,-0.92323005,-0.92780006,-0.92968184,-0.92995065,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9304883,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.92995065,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.92981625,-0.92981625,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.92860657,-0.9243054,-0.9206763,-0.9198698,-0.91946656,-0.9197354,-0.92161715,-0.92296124,-0.92296124,-0.9228268,-0.92296124,-0.92296124,-0.92323005,-0.92336446,-0.92309564,-0.9224236,-0.9222892,-0.9224236,-0.9224236,-0.9221548,-0.9221548,-0.9224236,-0.92323005,-0.9237677,-0.9240365,-0.9245742,-0.9256495,-0.9269936,-0.9280689,-0.9282033,-0.92780006,-0.92780006,-0.9284721,-0.9288754,-0.9288754,-0.92860657,-0.9282033,-0.92766565,-0.9267248,-0.92578393,-0.9255151,-0.9253807,-0.9252463,-0.9251119,-0.9252463,-0.9256495,-0.92632157,-0.92753124,-0.92860657,-0.92860657,-0.92780006,-0.9272624,-0.927128,-0.9267248,-0.926456,-0.9269936,-0.92766565,-0.92780006,-0.92793447,-0.92793447,-0.92793447,-0.92780006,-0.92739683,-0.9269936,-0.9268592,-0.9265904,-0.926456,-0.9267248,-0.9269936,-0.9272624,-0.92739683,-0.9272624,-0.927128,-0.927128,-0.92739683,-0.92780006,-0.9282033,-0.9283377,-0.9280689,-0.92793447,-0.92793447,-0.92793447,-0.92793447,-0.9280689,-0.9283377,-0.928741,-0.9292786,-0.9291442,-0.92793447,-0.92618716,-0.9247086,-0.9239021,-0.9237677,-0.9241709,-0.9243054,-0.9237677,-0.92336446,-0.92323005,-0.92309564,-0.9228268,-0.922558,-0.9221548,-0.9222892,-0.9222892,-0.9209451,-0.9189289,-0.91798806,-0.9189289,-0.91933215,-0.91946656,-0.9222892,-0.927128,-0.92995065,-0.93008506,-0.92981625,-0.93008506,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.93008506,-0.9303539,-0.92995065,-0.92995065,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.93008506,-0.9302195,-0.9303539,-0.93008506,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.92995065,-0.92995065,-0.92995065,-0.92981625,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.9295474,-0.92632157,-0.92188597,-0.9198698,-0.91960096,-0.91933215,-0.92027307,-0.9220204,-0.9228268,-0.9228268,-0.92296124,-0.92309564,-0.92323005,-0.92323005,-0.9228268,-0.9222892,-0.9221548,-0.9221548,-0.9221548,-0.92188597,-0.92188597,-0.9220204,-0.9224236,-0.92309564,-0.9241709,-0.9249775,-0.9252463,-0.9253807,-0.92605275,-0.9269936,-0.92766565,-0.92780006,-0.92793447,-0.92793447,-0.9282033,-0.92860657,-0.9290098,-0.9291442,-0.928741,-0.92793447,-0.92739683,-0.927128,-0.9267248,-0.926456,-0.926456,-0.9269936,-0.9280689,-0.928741,-0.9284721,-0.92766565,-0.92632157,-0.92618716,-0.9267248,-0.9240365,-0.91933215,-0.91933215,-0.9237677,-0.9268592,-0.9267248,-0.92578393,-0.9253807,-0.9253807,-0.92591834,-0.92632157,-0.926456,-0.9265904,-0.9268592,-0.9268592,-0.9269936,-0.9272624,-0.92753124,-0.92753124,-0.92753124,-0.92766565,-0.92766565,-0.92766565,-0.92753124,-0.92739683,-0.92753124,-0.92780006,-0.9280689,-0.9280689,-0.9282033,-0.92860657,-0.9291442,-0.929413,-0.928741,-0.9267248,-0.9249775,-0.9241709,-0.9243054,-0.9245742,-0.9244398,-0.9240365,-0.92336446,-0.92296124,-0.92296124,-0.92309564,-0.92296124,-0.9228268,-0.9226924,-0.922558,-0.9224236,-0.92161715,-0.91933215,-0.91771924,-0.9185257,-0.91919774,-0.91933215,-0.92161715,-0.92632157,-0.92968184,-0.9302195,-0.92981625,-0.92981625,-0.92995065,-0.92968184,-0.92995065,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.92968184,-0.92981625,-0.93008506,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.93008506,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.92995065,-0.92981625,-0.92968184,-0.92968184,-0.92981625,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.9280689,-0.9236333,-0.9204075,-0.9197354,-0.9190633,-0.9187945,-0.9206763,-0.922558,-0.92296124,-0.92296124,-0.92296124,-0.92296124,-0.9228268,-0.9222892,-0.92188597,-0.92161715,-0.92134833,-0.92148274,-0.92175156,-0.9220204,-0.9222892,-0.9222892,-0.9224236,-0.9228268,-0.9236333,-0.9244398,-0.9249775,-0.9253807,-0.92578393,-0.926456,-0.927128,-0.92780006,-0.92793447,-0.92793447,-0.92793447,-0.9282033,-0.928741,-0.9290098,-0.928741,-0.92860657,-0.9284721,-0.9282033,-0.92793447,-0.9280689,-0.9283377,-0.9284721,-0.9280689,-0.92753124,-0.9268592,-0.92578393,-0.92578393,-0.92605275,-0.92161715,-0.9136869,-0.91328365,-0.92161715,-0.9267248,-0.9239021,-0.9209451,-0.92027307,-0.9206763,-0.92175156,-0.92336446,-0.9240365,-0.9245742,-0.9251119,-0.9256495,-0.92605275,-0.926456,-0.9268592,-0.927128,-0.9272624,-0.9272624,-0.9272624,-0.927128,-0.9272624,-0.92780006,-0.9282033,-0.9284721,-0.92860657,-0.9290098,-0.9292786,-0.929413,-0.928741,-0.9272624,-0.9252463,-0.9243054,-0.9241709,-0.9243054,-0.9244398,-0.9243054,-0.9239021,-0.92349887,-0.92323005,-0.92296124,-0.9228268,-0.92296124,-0.92309564,-0.92296124,-0.9226924,-0.9226924,-0.9224236,-0.9208107,-0.9187945,-0.9181225,-0.9185257,-0.9186601,-0.9205419,-0.9252463,-0.9292786,-0.9302195,-0.92995065,-0.92981625,-0.92981625,-0.92981625,-0.92981625,-0.92981625,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.92995065,-0.92968184,-0.92995065,-0.93008506,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.93008506,-0.93008506,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.93008506,-0.92995065,-0.92995065,-0.9302195,-0.92981625,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.92995065,-0.92981625,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.93008506,-0.929413,-0.9256495,-0.9212139,-0.91960096,-0.91946656,-0.9186601,-0.9186601,-0.92000425,-0.92134833,-0.92188597,-0.92188597,-0.92148274,-0.9209451,-0.9204075,-0.9198698,-0.91933215,-0.91919774,-0.91946656,-0.92013866,-0.9210795,-0.92175156,-0.9220204,-0.9220204,-0.9220204,-0.9222892,-0.92296124,-0.9239021,-0.9247086,-0.9251119,-0.9255151,-0.92591834,-0.9265904,-0.92753124,-0.9282033,-0.928741,-0.9290098,-0.9291442,-0.9288754,-0.92860657,-0.9283377,-0.9283377,-0.9284721,-0.9284721,-0.9284721,-0.9282033,-0.92780006,-0.92753124,-0.9269936,-0.926456,-0.92632157,-0.92632157,-0.92618716,-0.9240365,-0.92027307,-0.9204075,-0.9248431,-0.9269936,-0.9247086,-0.9224236,-0.92175156,-0.92134833,-0.92188597,-0.92349887,-0.9249775,-0.9256495,-0.92578393,-0.92618716,-0.9267248,-0.9268592,-0.9268592,-0.927128,-0.92739683,-0.92739683,-0.92739683,-0.92780006,-0.9283377,-0.928741,-0.9290098,-0.929413,-0.9295474,-0.929413,-0.928741,-0.92766565,-0.92591834,-0.9243054,-0.9237677,-0.9241709,-0.9244398,-0.9241709,-0.92349887,-0.922558,-0.9221548,-0.922558,-0.9228268,-0.9226924,-0.9224236,-0.922558,-0.92309564,-0.92309564,-0.9228268,-0.92296124,-0.9222892,-0.92000425,-0.9182569,-0.9185257,-0.9189289,-0.9197354,-0.92336446,-0.9280689,-0.9302195,-0.93008506,-0.92995065,-0.92981625,-0.92968184,-0.92968184,-0.92968184,-0.92968184,-0.92981625,-0.92995065,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9302195,-0.93008506,-0.93008506,-0.92968184,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.93008506,-0.92766565,-0.92296124,-0.92000425,-0.9198698,-0.91946656,-0.9182569,-0.91785365,-0.9183913,-0.9190633,-0.91946656,-0.9190633,-0.9185257,-0.9183913,-0.9182569,-0.9181225,-0.9182569,-0.9186601,-0.9187945,-0.9189289,-0.9197354,-0.9205419,-0.9209451,-0.9212139,-0.92148274,-0.9220204,-0.922558,-0.92323005,-0.9240365,-0.9248431,-0.9252463,-0.9255151,-0.92578393,-0.92632157,-0.92739683,-0.928741,-0.92968184,-0.92981625,-0.9295474,-0.9292786,-0.9290098,-0.928741,-0.92860657,-0.9283377,-0.92793447,-0.92753124,-0.92739683,-0.92753124,-0.92753124,-0.92766565,-0.92766565,-0.92739683,-0.9272624,-0.9272624,-0.9269936,-0.9269936,-0.92739683,-0.9272624,-0.9267248,-0.926456,-0.92618716,-0.92605275,-0.926456,-0.9269936,-0.9272624,-0.92739683,-0.92753124,-0.92780006,-0.92780006,-0.92780006,-0.92793447,-0.9282033,-0.9282033,-0.9282033,-0.9284721,-0.928741,-0.9292786,-0.9295474,-0.929413,-0.92860657,-0.92753124,-0.92618716,-0.9249775,-0.9245742,-0.9247086,-0.9245742,-0.9240365,-0.9236333,-0.92336446,-0.9222892,-0.9212139,-0.9212139,-0.9220204,-0.922558,-0.9224236,-0.9220204,-0.9221548,-0.9226924,-0.92296124,-0.92309564,-0.92323005,-0.92175156,-0.91933215,-0.9182569,-0.9185257,-0.9189289,-0.92134833,-0.92605275,-0.9295474,-0.9302195,-0.93008506,-0.93008506,-0.92981625,-0.9295474,-0.9295474,-0.92968184,-0.92968184,-0.92981625,-0.93008506,-0.9302195,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.9302195,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.92968184,-0.929413,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.929413,-0.92591834,-0.9210795,-0.91946656,-0.92027307,-0.92013866,-0.91919774,-0.9186601,-0.9185257,-0.9186601,-0.9187945,-0.9186601,-0.9187945,-0.91919774,-0.91946656,-0.91919774,-0.9189289,-0.9189289,-0.9187945,-0.9187945,-0.9190633,-0.91919774,-0.91946656,-0.92013866,-0.9209451,-0.92161715,-0.9221548,-0.9228268,-0.92349887,-0.9243054,-0.9247086,-0.9249775,-0.9249775,-0.9249775,-0.9255151,-0.92632157,-0.9272624,-0.9283377,-0.9290098,-0.9291442,-0.9291442,-0.9291442,-0.9291442,-0.9292786,-0.929413,-0.9292786,-0.9292786,-0.9292786,-0.9291442,-0.928741,-0.9284721,-0.9284721,-0.92860657,-0.9284721,-0.9283377,-0.9283377,-0.9284721,-0.9284721,-0.92860657,-0.92860657,-0.9282033,-0.92766565,-0.92739683,-0.92766565,-0.9282033,-0.92860657,-0.92860657,-0.92860657,-0.928741,-0.9288754,-0.9288754,-0.9288754,-0.9290098,-0.9291442,-0.929413,-0.9290098,-0.9283377,-0.9272624,-0.92618716,-0.9253807,-0.9249775,-0.9245742,-0.9244398,-0.9240365,-0.9236333,-0.92296124,-0.922558,-0.9222892,-0.9221548,-0.92188597,-0.9220204,-0.9224236,-0.922558,-0.9224236,-0.9224236,-0.9226924,-0.9228268,-0.9226924,-0.92323005,-0.92309564,-0.9210795,-0.9186601,-0.9182569,-0.9186601,-0.91946656,-0.92309564,-0.9280689,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.92981625,-0.92968184,-0.92968184,-0.92968184,-0.92981625,-0.92995065,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.92968184,-0.92981625,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.93008506,-0.93008506,-0.9302195,-0.9304883,-0.9304883,-0.9303539,-0.93008506,-0.929413,-0.9252463,-0.92027307,-0.9183913,-0.9190633,-0.91933215,-0.91919774,-0.9190633,-0.9190633,-0.91933215,-0.91960096,-0.9197354,-0.91933215,-0.9187945,-0.9190633,-0.91919774,-0.9189289,-0.9186601,-0.9185257,-0.9185257,-0.9182569,-0.91798806,-0.9185257,-0.91933215,-0.92000425,-0.9209451,-0.9220204,-0.9224236,-0.9226924,-0.92336446,-0.9241709,-0.9248431,-0.9249775,-0.9248431,-0.9245742,-0.9245742,-0.9252463,-0.92605275,-0.9265904,-0.9268592,-0.92739683,-0.92766565,-0.92793447,-0.9282033,-0.9283377,-0.9283377,-0.9283377,-0.9282033,-0.9280689,-0.9280689,-0.9282033,-0.9283377,-0.9283377,-0.9283377,-0.9283377,-0.9284721,-0.92860657,-0.928741,-0.928741,-0.92860657,-0.9284721,-0.92860657,-0.9288754,-0.9291442,-0.9292786,-0.9291442,-0.9291442,-0.9288754,-0.92860657,-0.9284721,-0.9283377,-0.9282033,-0.92793447,-0.927128,-0.926456,-0.92605275,-0.9255151,-0.9249775,-0.9244398,-0.9243054,-0.9237677,-0.92296124,-0.922558,-0.9224236,-0.9222892,-0.9220204,-0.92175156,-0.9220204,-0.922558,-0.9228268,-0.9226924,-0.9226924,-0.922558,-0.9224236,-0.9228268,-0.92296124,-0.9226924,-0.92296124,-0.9226924,-0.9205419,-0.9185257,-0.9183913,-0.9186601,-0.92013866,-0.9247086,-0.9292786,-0.9303539,-0.93008506,-0.93008506,-0.93008506,-0.92981625,-0.92981625,-0.92981625,-0.92968184,-0.92981625,-0.93008506,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9302195,-0.92981625,-0.93008506,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.92981625,-0.9268592,-0.9224236,-0.91946656,-0.9185257,-0.9183913,-0.9186601,-0.91933215,-0.92000425,-0.9206763,-0.92161715,-0.92296124,-0.9240365,-0.9248431,-0.9249775,-0.9240365,-0.9220204,-0.92000425,-0.9189289,-0.9186601,-0.9185257,-0.9181225,-0.91771924,-0.91771924,-0.9185257,-0.92027307,-0.92161715,-0.9221548,-0.9222892,-0.92296124,-0.9236333,-0.9241709,-0.9249775,-0.9253807,-0.9252463,-0.9251119,-0.9251119,-0.9251119,-0.9248431,-0.9248431,-0.9248431,-0.9248431,-0.9247086,-0.9251119,-0.92578393,-0.92618716,-0.92632157,-0.92632157,-0.92632157,-0.926456,-0.9265904,-0.926456,-0.92605275,-0.92632157,-0.9267248,-0.9269936,-0.927128,-0.9272624,-0.9272624,-0.927128,-0.9268592,-0.9267248,-0.927128,-0.92739683,-0.92739683,-0.92739683,-0.927128,-0.9268592,-0.9268592,-0.92618716,-0.9249775,-0.9248431,-0.9252463,-0.9251119,-0.9247086,-0.9244398,-0.9239021,-0.92309564,-0.9224236,-0.9220204,-0.92188597,-0.92161715,-0.92161715,-0.92175156,-0.92161715,-0.92148274,-0.92161715,-0.9221548,-0.9226924,-0.9226924,-0.922558,-0.922558,-0.9226924,-0.9228268,-0.9228268,-0.9228268,-0.92296124,-0.92188597,-0.9197354,-0.9187945,-0.9186601,-0.9183913,-0.92027307,-0.9256495,-0.92981625,-0.9303539,-0.93008506,-0.93008506,-0.93008506,-0.92981625,-0.92981625,-0.93008506,-0.92995065,-0.92995065,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9302195,-0.9302195,-0.929413,-0.93008506,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.92981625,-0.92766565,-0.9253807,-0.9241709,-0.9240365,-0.9245742,-0.9252463,-0.92618716,-0.92780006,-0.9291442,-0.92968184,-0.9295474,-0.9292786,-0.9288754,-0.92766565,-0.9255151,-0.92296124,-0.9210795,-0.9197354,-0.9187945,-0.9182569,-0.91798806,-0.91785365,-0.9185257,-0.92000425,-0.92148274,-0.9220204,-0.92188597,-0.9220204,-0.9224236,-0.92309564,-0.9237677,-0.9244398,-0.9249775,-0.9252463,-0.9253807,-0.9252463,-0.9252463,-0.9253807,-0.9255151,-0.9256495,-0.9255151,-0.92591834,-0.92591834,-0.92578393,-0.92578393,-0.9256495,-0.9252463,-0.9253807,-0.92578393,-0.92578393,-0.92578393,-0.92591834,-0.92618716,-0.92618716,-0.92605275,-0.92591834,-0.92578393,-0.9252463,-0.9249775,-0.9255151,-0.92605275,-0.92605275,-0.92591834,-0.92578393,-0.9256495,-0.92578393,-0.9248431,-0.9226924,-0.9224236,-0.9240365,-0.9240365,-0.9228268,-0.9224236,-0.9224236,-0.92175156,-0.9212139,-0.9212139,-0.9212139,-0.9210795,-0.9209451,-0.9210795,-0.9212139,-0.9212139,-0.92148274,-0.92175156,-0.9221548,-0.9222892,-0.9222892,-0.9221548,-0.9224236,-0.922558,-0.922558,-0.92296124,-0.922558,-0.92027307,-0.9181225,-0.9183913,-0.9187945,-0.91798806,-0.9206763,-0.9268592,-0.92995065,-0.9303539,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.93008506,-0.9303539,-0.9292786,-0.9302195,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.92968184,-0.9291442,-0.9291442,-0.9295474,-0.92981625,-0.92995065,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.92981625,-0.92968184,-0.929413,-0.9284721,-0.9268592,-0.9245742,-0.92188597,-0.9197354,-0.9190633,-0.9185257,-0.91798806,-0.9185257,-0.92013866,-0.92148274,-0.92161715,-0.92134833,-0.92175156,-0.9221548,-0.9222892,-0.9226924,-0.92323005,-0.92349887,-0.9237677,-0.9237677,-0.9239021,-0.9240365,-0.9241709,-0.9243054,-0.9241709,-0.9241709,-0.9241709,-0.9239021,-0.9241709,-0.9241709,-0.922558,-0.92134833,-0.92296124,-0.9248431,-0.9248431,-0.9245742,-0.9249775,-0.9252463,-0.9251119,-0.9252463,-0.9255151,-0.9256495,-0.9256495,-0.9256495,-0.9253807,-0.9252463,-0.9251119,-0.9249775,-0.9245742,-0.9244398,-0.9239021,-0.9226924,-0.92188597,-0.9220204,-0.9222892,-0.92175156,-0.92148274,-0.92161715,-0.92161715,-0.9212139,-0.9212139,-0.9212139,-0.9212139,-0.9212139,-0.9212139,-0.92148274,-0.92175156,-0.92175156,-0.92175156,-0.92175156,-0.9221548,-0.9224236,-0.9222892,-0.9221548,-0.9224236,-0.9224236,-0.92188597,-0.9206763,-0.9186601,-0.91758484,-0.9185257,-0.9186601,-0.91771924,-0.9210795,-0.9280689,-0.92981625,-0.9304883,-0.92995065,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.93008506,-0.93008506,-0.928741,-0.9303539,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.92981625,-0.92995065,-0.93008506,-0.93008506,-0.9295474,-0.9280689,-0.9252463,-0.92175156,-0.91946656,-0.9185257,-0.9182569,-0.9190633,-0.9204075,-0.92134833,-0.92161715,-0.92175156,-0.92161715,-0.92148274,-0.92161715,-0.92161715,-0.92161715,-0.92161715,-0.92148274,-0.9212139,-0.92134833,-0.92148274,-0.92134833,-0.9212139,-0.9212139,-0.92134833,-0.92148274,-0.92188597,-0.9220204,-0.92134833,-0.92027307,-0.9205419,-0.92175156,-0.9221548,-0.9222892,-0.9226924,-0.92296124,-0.92309564,-0.92336446,-0.9236333,-0.9237677,-0.9239021,-0.9237677,-0.92349887,-0.92323005,-0.92323005,-0.92309564,-0.922558,-0.9221548,-0.9221548,-0.9222892,-0.92188597,-0.9212139,-0.9210795,-0.9210795,-0.9208107,-0.9206763,-0.9204075,-0.92027307,-0.92027307,-0.9205419,-0.9206763,-0.9206763,-0.9209451,-0.92148274,-0.92188597,-0.9220204,-0.92188597,-0.92188597,-0.9221548,-0.9222892,-0.92188597,-0.9212139,-0.9208107,-0.9204075,-0.91960096,-0.9185257,-0.91798806,-0.9183913,-0.9183913,-0.9174504,-0.9183913,-0.9237677,-0.9292786,-0.92995065,-0.9302195,-0.93008506,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.92995065,-0.92995065,-0.9280689,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.92995065,-0.92995065,-0.92981625,-0.92981625,-0.92981625,-0.92981625,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.92981625,-0.927128,-0.922558,-0.91946656,-0.9185257,-0.9182569,-0.9187945,-0.92027307,-0.92134833,-0.92188597,-0.92188597,-0.92161715,-0.9212139,-0.9209451,-0.9209451,-0.9209451,-0.9206763,-0.92027307,-0.92027307,-0.92027307,-0.9204075,-0.9204075,-0.92027307,-0.9204075,-0.9208107,-0.9212139,-0.92148274,-0.92188597,-0.9220204,-0.92148274,-0.9209451,-0.9210795,-0.92134833,-0.9212139,-0.9212139,-0.92134833,-0.92175156,-0.92175156,-0.92175156,-0.92161715,-0.92161715,-0.92175156,-0.92175156,-0.92175156,-0.92161715,-0.92134833,-0.9209451,-0.9208107,-0.9204075,-0.91946656,-0.9187945,-0.9185257,-0.9183913,-0.9182569,-0.9181225,-0.9181225,-0.91785365,-0.91771924,-0.91771924,-0.91758484,-0.91758484,-0.91798806,-0.9186601,-0.91933215,-0.9198698,-0.9205419,-0.9209451,-0.9209451,-0.9208107,-0.92000425,-0.9189289,-0.9181225,-0.91798806,-0.91785365,-0.91785365,-0.9182569,-0.9186601,-0.91798806,-0.91798806,-0.92161715,-0.9272624,-0.92995065,-0.93008506,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9302195,-0.9302195,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.92995065,-0.92995065,-0.9291442,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.92981625,-0.92981625,-0.92968184,-0.92968184,-0.92981625,-0.93008506,-0.93008506,-0.92981625,-0.92995065,-0.92981625,-0.927128,-0.922558,-0.91960096,-0.9185257,-0.9181225,-0.9189289,-0.9206763,-0.92175156,-0.92175156,-0.92161715,-0.92148274,-0.9210795,-0.9209451,-0.9209451,-0.9208107,-0.9206763,-0.9205419,-0.9206763,-0.9206763,-0.9205419,-0.9204075,-0.92013866,-0.92013866,-0.92027307,-0.92027307,-0.9208107,-0.92134833,-0.9212139,-0.9208107,-0.9206763,-0.9208107,-0.9208107,-0.9209451,-0.9212139,-0.92134833,-0.9212139,-0.9210795,-0.9212139,-0.92134833,-0.92134833,-0.92134833,-0.92134833,-0.9210795,-0.9205419,-0.9198698,-0.9189289,-0.91785365,-0.9169128,-0.9167784,-0.9171816,-0.9174504,-0.9174504,-0.91758484,-0.91771924,-0.91758484,-0.917316,-0.917316,-0.9174504,-0.9171816,-0.9167784,-0.91650957,-0.9167784,-0.9171816,-0.91785365,-0.9183913,-0.9182569,-0.91771924,-0.917316,-0.9171816,-0.9171816,-0.91758484,-0.9181225,-0.9183913,-0.9182569,-0.9181225,-0.9186601,-0.92161715,-0.9265904,-0.9295474,-0.93008506,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.92995065,-0.929413,-0.9290098,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.92968184,-0.929413,-0.9295474,-0.9295474,-0.929413,-0.9295474,-0.92995065,-0.9302195,-0.93008506,-0.9302195,-0.92981625,-0.9265904,-0.9221548,-0.91960096,-0.9185257,-0.9181225,-0.91933215,-0.9212139,-0.92175156,-0.92148274,-0.92148274,-0.92134833,-0.9209451,-0.9209451,-0.9209451,-0.9208107,-0.9204075,-0.9198698,-0.91933215,-0.9189289,-0.9185257,-0.91798806,-0.91785365,-0.91798806,-0.91798806,-0.9182569,-0.9186601,-0.9190633,-0.9190633,-0.91933215,-0.91933215,-0.91946656,-0.9198698,-0.9205419,-0.9209451,-0.9212139,-0.92134833,-0.92134833,-0.9210795,-0.92134833,-0.92134833,-0.9206763,-0.9197354,-0.9189289,-0.9182569,-0.91758484,-0.917316,-0.9174504,-0.91758484,-0.91771924,-0.91785365,-0.91798806,-0.9181225,-0.9185257,-0.9185257,-0.9183913,-0.91798806,-0.91771924,-0.91758484,-0.91771924,-0.91771924,-0.91758484,-0.9174504,-0.917316,-0.917316,-0.9170472,-0.9169128,-0.917316,-0.91771924,-0.91758484,-0.91758484,-0.91798806,-0.9182569,-0.9189289,-0.9205419,-0.9236333,-0.92739683,-0.92981625,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9306227,-0.9306227,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.92968184,-0.9283377,-0.9283377,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.93008506,-0.92995065,-0.92995065,-0.92981625,-0.92981625,-0.92968184,-0.929413,-0.929413,-0.9295474,-0.9295474,-0.92968184,-0.92981625,-0.93008506,-0.9302195,-0.93008506,-0.9303539,-0.9292786,-0.9253807,-0.9212139,-0.91919774,-0.9181225,-0.91798806,-0.9198698,-0.92175156,-0.92175156,-0.92148274,-0.92148274,-0.9209451,-0.92027307,-0.92000425,-0.91960096,-0.9186601,-0.91758484,-0.9170472,-0.9167784,-0.9167784,-0.9167784,-0.9167784,-0.9170472,-0.9171816,-0.9171816,-0.917316,-0.9174504,-0.9174504,-0.9174504,-0.91758484,-0.91771924,-0.91785365,-0.9183913,-0.91933215,-0.92027307,-0.9209451,-0.92148274,-0.92175156,-0.92161715,-0.9204075,-0.9187945,-0.91771924,-0.91771924,-0.91798806,-0.9185257,-0.9190633,-0.9189289,-0.9186601,-0.91946656,-0.9204075,-0.9212139,-0.92175156,-0.9222892,-0.9224236,-0.9224236,-0.92161715,-0.9197354,-0.9181225,-0.91758484,-0.91771924,-0.91758484,-0.9174504,-0.91758484,-0.91798806,-0.9183913,-0.9183913,-0.91798806,-0.91785365,-0.9181225,-0.9186601,-0.9197354,-0.92161715,-0.9239021,-0.9267248,-0.9290098,-0.93008506,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.92995065,-0.9288754,-0.9290098,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9302195,-0.93008506,-0.92981625,-0.92968184,-0.92981625,-0.92981625,-0.9295474,-0.9295474,-0.92968184,-0.92968184,-0.92968184,-0.92968184,-0.92995065,-0.92995065,-0.92981625,-0.9302195,-0.92995065,-0.9284721,-0.92349887,-0.9198698,-0.9187945,-0.91798806,-0.9181225,-0.9197354,-0.9206763,-0.9208107,-0.9206763,-0.9197354,-0.9183913,-0.91785365,-0.91771924,-0.9174504,-0.9170472,-0.9170472,-0.91758484,-0.91785365,-0.91785365,-0.91771924,-0.91785365,-0.9182569,-0.9183913,-0.9182569,-0.9181225,-0.9181225,-0.91785365,-0.91758484,-0.91771924,-0.9174504,-0.9171816,-0.9174504,-0.9181225,-0.9190633,-0.92013866,-0.9205419,-0.9197354,-0.9183913,-0.91771924,-0.91771924,-0.91798806,-0.9185257,-0.91946656,-0.9209451,-0.9228268,-0.9252463,-0.9267248,-0.9272624,-0.92739683,-0.92753124,-0.9280689,-0.9283377,-0.92860657,-0.9284721,-0.92753124,-0.9252463,-0.92296124,-0.9210795,-0.91933215,-0.91798806,-0.9174504,-0.9174504,-0.9174504,-0.9174504,-0.91798806,-0.92013866,-0.922558,-0.9243054,-0.92578393,-0.92739683,-0.9290098,-0.92995065,-0.9302195,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.92995065,-0.9288754,-0.929413,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.92981625,-0.92968184,-0.9295474,-0.9295474,-0.92968184,-0.92968184,-0.92968184,-0.92968184,-0.93008506,-0.9302195,-0.92995065,-0.93008506,-0.92995065,-0.926456,-0.9209451,-0.9189289,-0.9185257,-0.9171816,-0.9171816,-0.9182569,-0.9186601,-0.9185257,-0.91771924,-0.9169128,-0.9167784,-0.917316,-0.91785365,-0.9183913,-0.9185257,-0.9185257,-0.9187945,-0.91960096,-0.92027307,-0.9209451,-0.9210795,-0.9206763,-0.91960096,-0.9186601,-0.9187945,-0.91919774,-0.9189289,-0.9185257,-0.9182569,-0.91771924,-0.917316,-0.9171816,-0.9170472,-0.9174504,-0.9182569,-0.91785365,-0.91771924,-0.9183913,-0.9185257,-0.9186601,-0.9204075,-0.9237677,-0.9272624,-0.92968184,-0.93008506,-0.92968184,-0.92968184,-0.92968184,-0.92968184,-0.92968184,-0.92981625,-0.92981625,-0.93008506,-0.93008506,-0.92981625,-0.92860657,-0.9272624,-0.9255151,-0.9237677,-0.9224236,-0.92188597,-0.9222892,-0.9237677,-0.92578393,-0.9272624,-0.9280689,-0.9290098,-0.9295474,-0.92995065,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.93008506,-0.9302195,-0.92981625,-0.928741,-0.92968184,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.93008506,-0.92995065,-0.92995065,-0.92981625,-0.92981625,-0.92968184,-0.92981625,-0.92981625,-0.92981625,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.93008506,-0.93008506,-0.9288754,-0.9241709,-0.91960096,-0.91933215,-0.91919774,-0.9171816,-0.91650957,-0.9167784,-0.9169128,-0.9171816,-0.91771924,-0.91798806,-0.9186601,-0.91919774,-0.9197354,-0.9208107,-0.922558,-0.9241709,-0.9255151,-0.92618716,-0.9267248,-0.9269936,-0.9268592,-0.92578393,-0.9247086,-0.9245742,-0.9244398,-0.92349887,-0.92161715,-0.92013866,-0.91919774,-0.9183913,-0.9181225,-0.91771924,-0.9170472,-0.9174504,-0.9186601,-0.91933215,-0.9189289,-0.9190633,-0.92134833,-0.9256495,-0.9295474,-0.9302195,-0.9295474,-0.9292786,-0.92968184,-0.92968184,-0.92981625,-0.92968184,-0.92968184,-0.92995065,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.92968184,-0.92968184,-0.9295474,-0.9291442,-0.928741,-0.9288754,-0.9292786,-0.9295474,-0.92981625,-0.92995065,-0.92995065,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.92995065,-0.9288754,-0.93008506,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.92981625,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.92995065,-0.9282033,-0.92349887,-0.9198698,-0.91933215,-0.91946656,-0.9187945,-0.9183913,-0.9183913,-0.9185257,-0.9190633,-0.91946656,-0.92013866,-0.9222892,-0.9253807,-0.92793447,-0.9288754,-0.9292786,-0.929413,-0.92968184,-0.92968184,-0.92968184,-0.92968184,-0.92981625,-0.92981625,-0.929413,-0.9288754,-0.9282033,-0.9267248,-0.9249775,-0.92296124,-0.9206763,-0.91919774,-0.9189289,-0.9190633,-0.91933215,-0.91960096,-0.9187945,-0.9189289,-0.9220204,-0.9267248,-0.92981625,-0.9302195,-0.929413,-0.929413,-0.92968184,-0.929413,-0.9292786,-0.9295474,-0.9295474,-0.92968184,-0.92981625,-0.92995065,-0.93008506,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.92995065,-0.9303539,-0.92995065,-0.928741,-0.9302195,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.93008506,-0.9284721,-0.9243054,-0.9204075,-0.91919774,-0.91919774,-0.91919774,-0.91933215,-0.9197354,-0.9205419,-0.9220204,-0.9247086,-0.9280689,-0.92995065,-0.93008506,-0.92995065,-0.93008506,-0.93008506,-0.92995065,-0.92981625,-0.92968184,-0.9295474,-0.9295474,-0.92981625,-0.92968184,-0.9295474,-0.92968184,-0.9295474,-0.9290098,-0.92793447,-0.9255151,-0.9222892,-0.92000425,-0.91946656,-0.91946656,-0.91919774,-0.92013866,-0.92323005,-0.9272624,-0.92995065,-0.93008506,-0.92968184,-0.92968184,-0.92968184,-0.9292786,-0.9290098,-0.9291442,-0.9292786,-0.929413,-0.9295474,-0.92981625,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9288754,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.92981625,-0.92793447,-0.9249775,-0.92309564,-0.9224236,-0.9228268,-0.9240365,-0.9256495,-0.92766565,-0.929413,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.93008506,-0.92995065,-0.92981625,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.92995065,-0.929413,-0.9282033,-0.92632157,-0.9247086,-0.9243054,-0.9253807,-0.9269936,-0.928741,-0.92995065,-0.93008506,-0.92968184,-0.929413,-0.929413,-0.9291442,-0.9291442,-0.9290098,-0.9290098,-0.9292786,-0.929413,-0.92968184,-0.92981625,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9304883,-0.9304883,-0.9302195,-0.9302195,-0.9304883,-0.9304883,-0.9304883,-0.9302195,-0.9303539,-0.9304883,-0.9302195,-0.92995065,-0.93008506,-0.9291442,-0.92780006,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.92981625,-0.9292786,-0.92860657,-0.9283377,-0.9290098,-0.92981625,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.92981625,-0.92968184,-0.92968184,-0.92981625,-0.92981625,-0.9295474,-0.9295474,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.92968184,-0.9295474,-0.92995065,-0.9302195,-0.93008506,-0.92995065,-0.92981625,-0.9295474,-0.9292786,-0.9290098,-0.9288754,-0.9288754,-0.9291442,-0.929413,-0.92968184,-0.92981625,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9306227,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.92981625,-0.9292786,-0.92766565,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.92995065,-0.92995065,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.92981625,-0.92968184,-0.92968184,-0.92968184,-0.92981625,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.93008506,-0.93008506,-0.92995065,-0.92981625,-0.92968184,-0.92968184,-0.9295474,-0.9295474,-0.9295474,-0.92968184,-0.92981625,-0.92995065,-0.92995065,-0.93008506,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.93008506,-0.9295474,-0.929413,-0.92793447,-0.9267248,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.92981625,-0.92968184,-0.92968184,-0.9295474,-0.929413,-0.929413,-0.92968184,-0.92981625,-0.92968184,-0.92981625,-0.92995065,-0.92995065,-0.92995065,-0.92981625,-0.92995065,-0.93008506,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.92995065,-0.92981625,-0.92981625,-0.92995065,-0.93008506,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.93008506,-0.92995065,-0.93008506,-0.92860657,-0.9282033,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9306227,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.92981625,-0.92968184,-0.929413,-0.929413,-0.9295474,-0.92968184,-0.92995065,-0.93008506,-0.93008506,-0.92995065,-0.92981625,-0.92981625,-0.92995065,-0.93008506,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.93008506,-0.92995065,-0.92981625,-0.9282033,-0.92860657,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9303539,-0.9304883,-0.9306227,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9303539,-0.9303539,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.92995065,-0.92981625,-0.92968184,-0.92968184,-0.92981625,-0.92995065,-0.93008506,-0.93008506,-0.92995065,-0.92995065,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9302195,-0.93008506,-0.93008506,-0.93008506,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9302195,-0.9302195,-0.92995065,-0.928741,-0.929413,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.93008506,-0.92995065,-0.93008506,-0.93008506,-0.92995065,-0.92981625,-0.92981625,-0.93008506,-0.93008506,-0.93008506,-0.92995065,-0.93008506,-0.9302195,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9302195,-0.9302195,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9302195,-0.93008506,-0.9290098,-0.92995065,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.93008506,-0.92995065,-0.9302195,-0.9304883,-0.9303539,-0.9302195,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9302195,-0.93008506,-0.92968184,-0.9288754,-0.9302195,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9302195,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9302195,-0.9304883,-0.93008506,-0.9290098,-0.9303539,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9302195,-0.9303539,-0.9302195,-0.929413,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9304883,-0.9302195,-0.9295474,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.93008506,-0.92981625,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9306227,-0.9306227,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9302195,-0.9302195,-0.92968184,-0.9295474,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.93008506,-0.92995065,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9306227,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9302195,-0.9303539,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9302195,-0.9304883,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9303539,-0.9303539,-0.9306227,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9306227,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9306227,-0.9306227,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9304883,-0.9303539,-0.9304883,-0.9303539,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227,-0.9306227]},"out":{"output":[[[0.0000142915,0.000014762122,0.000014074442,0.000013313269,0.000014010605,0.00001425967,0.000014514797,0.0000142631925,0.000014614832,0.000014049794,0.000015220159,0.00001469452,0.00001512322,0.000014468526,0.000014938282,0.000015305046,0.000015251907,0.000016253649,0.000014930263,0.000015074004,0.000015058155,0.000014304698,0.0000148119025,0.0000157794,0.000015303733,0.000016918106,0.000014741456,0.000015191953,0.000014993373,0.000014085037,0.000014906802,0.000015662521,0.000015510224,0.00001633721,0.000015610078,0.000015005804,0.00001517918,0.0000141496475,0.000014959138,0.000014919844,0.00001563606,0.00001605227,0.00001608465,0.000014598409,0.000014836047,0.0000139566355,0.000014716032,0.00001462752,0.000015705373,0.000015675774,0.000016186546,0.000014343823,0.000014280749,0.000014276651,0.000014498568,0.000014256516,0.000015431719,0.000014774517,0.00001569862,0.000014214579,0.000014324602,0.000014104419,0.000014536323,0.000014171835,0.000015613128,0.00001486396,0.00001574109,0.000014030554,0.000014122939,0.000014198539,0.000014417647,0.000014162336,0.000015368332,0.000014636687,0.000015526712,0.000014127359,0.000014260594,0.000014108726,0.000014518741,0.000014179053,0.000015619935,0.000014869179,0.000015771397,0.000014038891,0.000014132384,0.000014176038,0.00001444261,0.000014123667,0.000015376703,0.000014632054,0.000015512443,0.000014124206,0.000014240806,0.000014116948,0.000014505152,0.000014168483,0.000015600448,0.000014854891,0.000015763053,0.000014027316,0.000014130202,0.0000141709015,0.000014447197,0.00001411742,0.000015378111,0.000014628022,0.000015510032,0.000014118752,0.000014234168,0.000014120463,0.000014499371,0.000014171469,0.000015595107,0.0000148461395,0.000015757267,0.000014020387,0.000014129218,0.000014167874,0.0000144499945,0.000014114323,0.000015380443,0.000014627228,0.000015510077,0.000014117123,0.000014232308,0.00001412088,0.000014497808,0.000014172321,0.000015593576,0.000014845289,0.000015756514,0.000014020896,0.000014129811,0.00001416805,0.000014449236,0.000014114054,0.000015378682,0.000014626599,0.000015508791,0.000014118011,0.000014233706,0.00001411921,0.0000144992055,0.000014170983,0.000015595539,0.000014849098,0.00001575901,0.000014024614,0.000014130632,0.0000141700775,0.000014448024,0.000014115453,0.000015377393,0.000014627102,0.000015508434,0.000014118726,0.000014234114,0.000014119102,0.0000144997575,0.000014170146,0.000015595733,0.000014848857,0.000015758498,0.00001402226,0.000014129635,0.0000141693345,0.000014448712,0.000014114714,0.00001537858,0.000014625972,0.000015508094,0.000014108954,0.000014218783,0.000014127965,0.000014482524,0.000014171915,0.000015575237,0.000014824083,0.000015735732,0.000013958778,0.000014102214,0.000014138963,0.000014475773,0.000014084016,0.000015417289,0.000014607878,0.000015517904,0.000013872597,0.00001410859,0.000014162119,0.000014318988,0.0000141339615,0.000015410747,0.000014572314,0.00001529279,0.0000133941485,0.000014071182,0.000014251839,0.000014311699,0.00001405919,0.000015014564,0.000014484445,0.000015490032,0.000013962545,0.000014217603,0.000014079718,0.0000143480365,0.000014204172,0.000015537613,0.000014772431,0.000015517962,0.000013477998,0.0000139864405,0.000013967273,0.000014301507,0.000013998651,0.000015105908,0.000014789035,0.000015547024,0.00001349401,0.000014035759,0.000014100869,0.000014209361,0.00001408176,0.0000150221695,0.000014562645,0.000014810827,0.000013515377,0.000014143967,0.000014300129,0.000014337764,0.000014119115,0.000015277325,0.000014763079,0.000015324178,0.000013477317,0.0000143126545,0.0000142818935,0.000014157326,0.000013960881,0.000014392343,0.000014080242,0.000014090411,0.0000134326,0.000014072336,0.000014499412,0.000014009188,0.000013935582,0.00001389675,0.000014175537,0.000014381709,0.000014939236,0.000015430496,0.000015357578,0.000013678825,0.000017707282],[0.000015045396,0.000015627727,0.000017600896,0.000014991329,0.000014521748,0.0000163058,0.000013865826,0.000014571479,0.000012690903,0.000014541051,0.000012885825,0.000013434932,0.000012788731,0.000013174729,0.00001304121,0.000013450803,0.000011752455,0.000013198609,0.000011868352,0.000012931249,0.000013074585,0.00001266596,0.000012670091,0.000013099558,0.000011328799,0.00001263775,0.00001151607,0.000012534717,0.00001284732,0.000012480111,0.000012978766,0.000013329632,0.000011522497,0.000012859173,0.000012557042,0.00001365095,0.000013369353,0.0000131615925,0.0000133705635,0.000013912357,0.000012654357,0.000014705566,0.000013924595,0.000013576946,0.000013055184,0.000013083502,0.000013342247,0.000013597847,0.000013045042,0.000014225293,0.000014498652,0.000013382415,0.000012776406,0.000014330067,0.000013709553,0.000013767503,0.00001341208,0.000013579251,0.0000139409785,0.000013113595,0.000012670913,0.000014251377,0.0000135427035,0.000013661382,0.000013411608,0.000013466308,0.00001402551,0.000013104282,0.000012956419,0.000015128384,0.000014015362,0.000014272458,0.000013387023,0.000013620079,0.000013816313,0.000013013531,0.000012677887,0.0000144862,0.000013476881,0.000013755966,0.000013405405,0.000013476278,0.0000140478505,0.000013130852,0.0000129822065,0.000015232313,0.000014030099,0.0000143997,0.000013366191,0.000013605526,0.000013809674,0.000012977256,0.000012665875,0.000014515836,0.000013455409,0.000013756899,0.000013397687,0.000013466153,0.000014044946,0.000013127033,0.000012998325,0.00001526317,0.000014047557,0.000014440103,0.000013368192,0.000013610782,0.000013814509,0.000012978679,0.000012667917,0.000014529587,0.000013462006,0.000013764641,0.000013394761,0.000013468195,0.000014040726,0.000013128511,0.000013005566,0.000015279451,0.000014057126,0.000014464347,0.000013369836,0.000013615053,0.000013818027,0.000012979979,0.000012667808,0.000014536199,0.000013462301,0.000013766688,0.000013393227,0.000013468093,0.000014040392,0.000013127521,0.0000130049075,0.000015278985,0.000014055369,0.000014461369,0.000013368944,0.000013612159,0.0000138175255,0.000012977998,0.000012666552,0.000014532179,0.000013458963,0.000013762975,0.000013394364,0.00001346668,0.000014042788,0.00001312627,0.00001300166,0.000015271964,0.000014050464,0.000014449111,0.000013368192,0.000013609303,0.000013815759,0.000012976464,0.000012666201,0.000014528674,0.00001345836,0.000013760822,0.000013394991,0.000013465165,0.00001404256,0.000013125656,0.00001300316,0.000015275225,0.000014053908,0.00001445355,0.0000133691865,0.000013610184,0.000013817498,0.000012970339,0.000012666358,0.000014548929,0.000013469056,0.0000137635,0.000013385771,0.000013458398,0.00001403675,0.000013122101,0.0000130714425,0.000015423804,0.000014177188,0.000014688018,0.000013402887,0.000013652799,0.000013866633,0.000012920944,0.000012849036,0.000015020007,0.0000139144,0.000014085803,0.000013430282,0.000013588993,0.000013746145,0.000013652772,0.000013804973,0.000016476006,0.000015074133,0.0000160129,0.00001373016,0.000013888919,0.000013905976,0.000013270917,0.000012894417,0.000015022585,0.000013859983,0.000014644967,0.000013416124,0.000013883927,0.0000136533845,0.000013774398,0.000013429628,0.000016753906,0.000014710251,0.00001616922,0.000013539436,0.000014173011,0.0000136073295,0.000013733343,0.0000135126575,0.000016376425,0.000014930619,0.000015847989,0.000013641815,0.00001372342,0.000013545881,0.000014357782,0.000014686926,0.00001695039,0.000015219505,0.000016116632,0.000013752137,0.000014031744,0.000013830077,0.000014073221,0.000014956328,0.000019136745,0.000017340968,0.000017850636,0.000014558826,0.000015327685,0.000013626563,0.000015087826,0.000015434838,0.000018322631,0.000016095451,0.000016376049,0.000014320505,0.0000137994975,0.000015008653,0.000015803467,0.000015632215,0.000015970045,8.557365e-6,0.000014042856],[0.000013599053,0.000019625313,0.000016651644,0.00001718618,0.000015678152,0.00001720804,0.000015545187,0.000015157469,0.000015398466,0.000016424643,0.000015322454,0.00001751702,0.000015038137,0.00001789792,0.000016191627,0.00001779173,0.000016180806,0.000018728746,0.00001683376,0.000017898861,0.0000149908565,0.000016732509,0.000014479101,0.00001772186,0.000015006175,0.000018699227,0.000015961214,0.000017394648,0.000014317023,0.000016394753,0.000014627366,0.000018824438,0.00001528413,0.000019594512,0.000017663668,0.000020115263,0.000016147585,0.00001797517,0.000016093472,0.000018702545,0.000016859336,0.000021354439,0.000019385154,0.000019031479,0.000014692992,0.000016636135,0.000015017227,0.000018034063,0.000016322072,0.000020387162,0.000018357085,0.000018148397,0.000014318101,0.000015415862,0.000015497599,0.00001832083,0.000015644711,0.000018700888,0.000016807195,0.00001717566,0.000013953028,0.000015486916,0.000015158856,0.000018253235,0.000015738824,0.000018822015,0.000016933747,0.00001677976,0.000013804605,0.000015382306,0.00001578923,0.000018322806,0.000015491421,0.000018628229,0.000016469518,0.0000166205,0.000013749449,0.00001547422,0.000015312331,0.00001820758,0.000015737638,0.000018792725,0.00001690814,0.000016529153,0.000013739592,0.000015496653,0.000015696389,0.00001828151,0.000015426349,0.000018592236,0.000016381891,0.000016471513,0.000013683365,0.000015438358,0.000015321928,0.000018187988,0.0000157044,0.000018762157,0.000016884904,0.000016466849,0.0000137234065,0.000015524787,0.000015686244,0.00001826856,0.000015432912,0.000018596456,0.00001638758,0.000016462798,0.000013682634,0.000015442156,0.000015340029,0.000018193694,0.000015701944,0.000018762283,0.000016883036,0.000016446587,0.000013721234,0.000015538206,0.000015685031,0.00001826255,0.00001543852,0.000018600786,0.0000163918,0.000016455326,0.000013679294,0.000015444306,0.000015346393,0.00001819425,0.000015700462,0.000018759545,0.000016881022,0.000016440425,0.000013719284,0.00001553828,0.000015682444,0.000018259503,0.000015435795,0.000018598621,0.000016387328,0.000016451875,0.000013677729,0.000015442994,0.000015339077,0.000018190069,0.000015700132,0.000018758903,0.000016880234,0.000016447058,0.000013719441,0.000015532902,0.000015681562,0.000018261888,0.000015432322,0.00001859566,0.000016384642,0.000016455027,0.000013678759,0.000015442303,0.000015335712,0.000018188837,0.000015700925,0.000018759492,0.00001688017,0.000016446947,0.000013718146,0.000015534324,0.000015680695,0.000018262359,0.000015435708,0.000018596102,0.000016385377,0.000016436083,0.000013664418,0.000015433632,0.000015358912,0.000018188994,0.000015682894,0.000018746276,0.000016847298,0.000016293736,0.000013638861,0.00001562278,0.000015633228,0.000018240566,0.000015532738,0.000018648581,0.000016460568,0.000016148433,0.000013482189,0.000015163208,0.000015699234,0.000018181363,0.00001563536,0.00001873023,0.000016675798,0.000015264814,0.000013970844,0.000016021286,0.00001604015,0.00001773388,0.000015614693,0.000018932567,0.000016707969,0.000016479575,0.0000137200295,0.000015318072,0.00001602156,0.000017997589,0.000015361782,0.000018292461,0.000015885696,0.000014248401,0.00001461295,0.000016288282,0.000016811298,0.00001684823,0.000016020827,0.00001847958,0.00001666734,0.000015113863,0.000013699751,0.000015818727,0.000015874097,0.000017512977,0.00001587022,0.00001852721,0.000016685884,0.000015429467,0.000014443257,0.000016052514,0.000016427119,0.000017677503,0.000016173353,0.000018391325,0.000015890319,0.000013487102,0.000015194301,0.000017833367,0.0000180853,0.000017377388,0.000016157861,0.00001621131,0.000015509308,0.000014893076,0.000015911335,0.000017056602,0.000017137636,0.000017619739,0.000016785347,0.000018179144,0.000017406197,0.000017283233,0.000016488078,0.000015347885,0.000011269953,0.000012532242],[0.000015103229,0.000019991188,0.000017444054,0.000013181702,0.000015489988,0.000015932897,0.000015717014,0.000013874569,0.00001745655,0.000015439358,0.000015077628,0.000014032869,0.000014990871,0.0000149926145,0.000015979582,0.000015578147,0.000017236076,0.000017599705,0.000016216243,0.000014686884,0.0000141619585,0.000013528169,0.000014720552,0.00001494361,0.0000168258,0.000017940953,0.00001575405,0.000013722686,0.000013418031,0.000013221021,0.000015489575,0.000016493708,0.000018156377,0.000019063884,0.00001822914,0.00001666513,0.000015857271,0.000015371996,0.00001646341,0.000016477561,0.000018784538,0.000019357094,0.000018670236,0.000015482323,0.000014366233,0.000013869806,0.000015180397,0.000015092214,0.000017599166,0.000017498052,0.00001698194,0.000014417468,0.000013431716,0.000013290663,0.00001479039,0.000014516236,0.000015974721,0.000015845028,0.000016042384,0.000013820306,0.000013398632,0.000013097622,0.000014801875,0.000014449415,0.000016129856,0.000015941,0.000016033988,0.000013307442,0.000013278197,0.000013176815,0.000015125253,0.000014071665,0.000015890984,0.00001546646,0.000015635018,0.000013430846,0.000013389844,0.000013058609,0.000014754184,0.000014377939,0.000016077718,0.000015771639,0.000015879563,0.000013038164,0.000013208897,0.00001319033,0.000015354342,0.000013917532,0.000015852236,0.000015330523,0.000015495618,0.0000133005915,0.000013351808,0.00001302504,0.000014732939,0.000014328019,0.000016051075,0.000015708983,0.000015838259,0.000012976018,0.000013187713,0.00001320124,0.000015413216,0.0000139091735,0.000015851345,0.000015328402,0.000015491732,0.000013300325,0.000013356582,0.000013032918,0.00001473984,0.000014331652,0.000016049606,0.000015703741,0.000015835072,0.000012962834,0.000013180698,0.00001320479,0.00001544005,0.000013905406,0.000015850725,0.000015326501,0.000015486134,0.000013297903,0.000013357717,0.000013035702,0.000014739052,0.000014330656,0.00001604751,0.00001569865,0.000015830377,0.000012956679,0.000013178021,0.000013204338,0.000015438092,0.000013902621,0.000015849077,0.000015322088,0.000015481777,0.000013294542,0.0000133557805,0.000013031389,0.0000147362,0.000014327512,0.000016046744,0.000015697975,0.0000158295,0.000012959583,0.000013180646,0.0000132027635,0.000015426318,0.00001390343,0.000015848686,0.000015321446,0.000015484036,0.000013295062,0.0000133556405,0.000013029761,0.00001473648,0.000014328031,0.000016048887,0.000015701045,0.000015831432,0.000012959324,0.000013179428,0.000013202903,0.00001542982,0.000013905354,0.000015851285,0.000015322556,0.000015481319,0.0000132813875,0.000013346906,0.000013030371,0.000014736494,0.000014314551,0.000016038437,0.000015664582,0.00001578929,0.000012815382,0.0000130935,0.000013195501,0.000015647323,0.000013909809,0.000015896578,0.00001536801,0.000015476124,0.000012942761,0.00001308309,0.000013203166,0.000014804883,0.000014265735,0.000016047754,0.000015648353,0.000015709418,0.000012230851,0.000013135549,0.000013432062,0.000016004105,0.000013958751,0.000016001679,0.000015733602,0.00001559771,0.000013233117,0.00001327707,0.000013204389,0.000015107737,0.000013826569,0.00001559371,0.0000151385875,0.000014706535,0.000011220556,0.000013849663,0.000015622587,0.00001714975,0.0000145028,0.000015093092,0.000015544001,0.000015299005,0.000012009281,0.000012804289,0.000013279578,0.00001582603,0.000013864833,0.000015610553,0.000015534146,0.000015596966,0.000012667216,0.000013306515,0.000013447609,0.00001607373,0.000014298656,0.000016165783,0.000015448386,0.000014371549,0.000010683278,0.000014753424,0.000016989165,0.000018461827,0.000015899777,0.000017329958,0.000015319561,0.000013709868,0.000012804082,0.000015837308,0.00001671232,0.00001831552,0.000015374122,0.000015764572,0.000016008013,0.00001650787,0.000015958323,0.000015572963,0.00001560646,0.000013231615,0.000011363912],[0.000014631775,0.000016232536,0.00001599672,0.000012053938,0.000014899399,0.000015472951,0.000014852794,0.000013167292,0.000014556147,0.000013096685,0.00001416304,0.000013192367,0.000015383554,0.00001599126,0.000017034039,0.000016082395,0.00001749852,0.000017256585,0.000016387376,0.000015961808,0.0000139323265,0.000013627979,0.00001441333,0.0000148991985,0.000016980757,0.000018325374,0.000017726476,0.000016243283,0.000014181272,0.0000143654925,0.000015464248,0.000015771879,0.000017108356,0.00001762458,0.00001604947,0.000016338612,0.000015121764,0.000015137866,0.000015571686,0.000015814669,0.000017318773,0.000017902274,0.00001609031,0.00001553385,0.0000140489365,0.000014378116,0.0000149646885,0.000015052916,0.000017154249,0.000017755747,0.000015078489,0.000014094053,0.000012806329,0.000013021116,0.000013795037,0.000014298861,0.000016650818,0.000016558593,0.000014977182,0.000014074108,0.000013344692,0.000013355348,0.000014012235,0.00001453843,0.00001654554,0.000016617932,0.0000148809095,0.00001428951,0.000012702575,0.00001257286,0.000014094591,0.000014029149,0.00001641298,0.000016674034,0.000014846974,0.000014101622,0.000013473629,0.0000131990755,0.000014118496,0.000014378966,0.000016523716,0.00001658456,0.000014793452,0.000014144748,0.000012613404,0.000012525934,0.000014025296,0.000013924249,0.00001623393,0.000016530335,0.000014743327,0.000014018596,0.0000134113525,0.000013083041,0.000014087629,0.000014261942,0.000016472613,0.000016549926,0.000014763418,0.00001409244,0.000012596538,0.000012518577,0.00001400673,0.000013934106,0.000016220465,0.000016533835,0.000014746799,0.000014027222,0.0000134151,0.000013081443,0.000014096123,0.000014253293,0.000016472692,0.000016553684,0.000014763557,0.00001408603,0.000012597428,0.000012520631,0.000014002616,0.000013940699,0.000016214171,0.000016538235,0.000014749189,0.000014035317,0.000013417672,0.000013075606,0.000014100963,0.000014248101,0.000016474074,0.00001655463,0.000014761249,0.000014084163,0.000012595734,0.000012518768,0.000014001801,0.000013940166,0.000016213939,0.000016533771,0.0000147464625,0.000014032106,0.000013416879,0.00001307547,0.0000140982875,0.0000142502495,0.00001647244,0.000016553084,0.000014760124,0.000014085763,0.000012594953,0.00001251668,0.000014002803,0.000013935435,0.000016215594,0.000016531818,0.000014744155,0.000014027743,0.000013416738,0.000013077478,0.000014096836,0.000014255401,0.000016472786,0.000016551805,0.000014760025,0.000014084312,0.000012593752,0.000012516643,0.000014003737,0.000013937788,0.000016215223,0.000016532038,0.0000147396295,0.00001402448,0.000013404562,0.00001305252,0.000014098152,0.000014217481,0.000016449709,0.000016529688,0.000014715345,0.000013958697,0.00001252708,0.000012482396,0.000013942892,0.000014010738,0.000016167109,0.000016604388,0.000014696018,0.000014056025,0.000013113632,0.000012739321,0.0000142379695,0.00001401901,0.000016654789,0.000016651944,0.000014841226,0.000013738583,0.000012254564,0.000012585251,0.00001395782,0.0000144236565,0.000016273625,0.000016608585,0.000015112997,0.000014213902,0.00001306561,0.000012435856,0.00001365242,0.000013037021,0.000014881776,0.000015323432,0.000014054659,0.00001102552,0.000012734851,0.000013493381,0.000013968473,0.000013064352,0.000015210698,0.00001627569,0.000015191809,0.000013826422,0.000012616797,0.000012729424,0.00001385636,0.000014454501,0.00001684092,0.000017063694,0.00001526745,0.000015109798,0.000013639276,0.0000135699565,0.000014592673,0.000014604855,0.000015994432,0.000016044618,0.000014296421,0.0000105570025,0.000012810824,0.000013988136,0.000014012195,0.000013513933,0.000015115334,0.000013862441,0.000012949625,0.000012143983,0.000014209523,0.0000151334925,0.000016175576,0.00001477615,0.000015751197,0.000017337661,0.000016935686,0.000016523589,0.000014983753,0.000014783762,0.000012156567,0.000011996599],[0.000014859355,0.000017625856,0.000014447308,0.000011207275,0.000012195606,0.000012680149,0.0000111638055,0.0000107773285,9.786375e-6,0.000011106377,0.000012283886,0.000013969685,0.00001533662,0.000017641041,0.000017478706,0.000018751587,0.000019538198,0.000021257094,0.000021207567,0.000021613141,0.00001914171,0.000019475041,0.000019663961,0.000021747614,0.000022237147,0.000023395738,0.000022446866,0.000022406743,0.000022082919,0.000022745638,0.000021783897,0.000022001885,0.000020556936,0.0000200074,0.00001861562,0.000018888293,0.000017803832,0.000018407625,0.000018233644,0.000018883971,0.000019297597,0.000019292978,0.000018646038,0.00001907667,0.00001824335,0.000019686215,0.000018594932,0.000019359899,0.000019219413,0.00001946845,0.000018432342,0.000016578519,0.000014835382,0.000015408586,0.000015499298,0.000017317947,0.00001832352,0.000017539836,0.000017259646,0.00001668011,0.000015365387,0.00001666521,0.000016293223,0.000017832159,0.000018223702,0.000017493181,0.000016491285,0.000015020007,0.0000135092305,0.00001409404,0.00001404335,0.00001598263,0.000017116892,0.00001722096,0.000016579372,0.000016163487,0.000014892977,0.000016242833,0.000015951826,0.000017627186,0.000018014725,0.000017295732,0.000016213351,0.000014797556,0.000013370486,0.000013861924,0.000013845067,0.000015749154,0.000016980775,0.000017284157,0.000016585507,0.00001619788,0.000014885593,0.00001619663,0.000015879108,0.000017558514,0.00001798899,0.000017278338,0.00001615937,0.000014731324,0.000013338787,0.000013805527,0.000013806395,0.000015686423,0.000016941436,0.00001726773,0.000016560993,0.000016174341,0.000014861679,0.000016172322,0.000015851752,0.000017534669,0.000017972015,0.000017258857,0.00001613067,0.000014703842,0.000013322934,0.000013784779,0.000013785371,0.00001565498,0.000016913073,0.000017257902,0.00001654172,0.000016155118,0.000014842514,0.000016155365,0.000015836673,0.000017525525,0.000017965263,0.000017251896,0.00001612438,0.00001470293,0.000013322947,0.000013785253,0.000013786817,0.000015658368,0.00001691827,0.000017258215,0.00001654385,0.000016160497,0.000014851662,0.000016163363,0.000015848564,0.000017536007,0.00001797114,0.000017260963,0.000016137565,0.00001471672,0.0000133300755,0.000013794932,0.000013796129,0.000015673488,0.00001692871,0.000017262411,0.000016549626,0.000016169453,0.000014859029,0.000016173184,0.000015857151,0.000017543969,0.00001797594,0.00001726317,0.000016140304,0.000014715639,0.000013328461,0.000013792591,0.000013794893,0.000015671694,0.00001692721,0.000017262297,0.000016544529,0.000016150389,0.000014833473,0.000016141981,0.000015811667,0.000017509221,0.00001795795,0.000017254628,0.00001605201,0.000014576205,0.000013224853,0.000013640787,0.000013651184,0.00001546177,0.000016745998,0.000017212473,0.000016307804,0.000015627817,0.000014172293,0.000015334133,0.00001489829,0.000016539354,0.000017199689,0.000017064835,0.000015375135,0.000013681472,0.000012788059,0.000012972418,0.000013376175,0.000014520404,0.000015941241,0.00001685162,0.000015863881,0.00001468652,0.000013424378,0.000014369945,0.0000135858445,0.000014556203,0.000014876143,0.000015651605,0.000012851168,0.000012469036,0.00001035782,0.000010821738,0.000010258248,0.000012407673,0.000014241391,0.0000163642,0.000015225777,0.00001387973,0.000012876832,0.000013435149,0.000013200925,0.000015058127,0.000016375221,0.000016233806,0.00001540894,0.0000137705365,0.000012671264,0.000012924456,0.0000125196275,0.0000133252215,0.000014110689,0.000015085379,0.000012268175,0.000011822567,9.174799e-6,0.000010082121,8.9577115e-6,9.448186e-6,0.000010660968,0.000011185237,0.000010792869,9.0244985e-6,9.377084e-6,0.0000104215105,0.000010514851,0.000012326461,0.000013485726,0.000014914909,0.000015731875,0.00001407416,0.000013875269,0.000012795195,0.00001019232,0.000010462808],[0.00001579057,0.000015825259,0.000013454665,0.000010511292,0.000010674255,0.000010296757,0.000010496888,9.753151e-6,0.0000126148,0.000015702917,0.000019606887,0.000020573016,0.000022724867,0.000022769533,0.000023737974,0.000023704357,0.000024691051,0.000023233053,0.00002306259,0.000021475647,0.000026095504,0.000025278303,0.000025643185,0.000022074602,0.00002353432,0.000021497408,0.000021616726,0.00002046346,0.000025172263,0.000024553217,0.000025067411,0.000022643355,0.000024108955,0.000022877666,0.00002398544,0.000022543294,0.000025532767,0.000025289128,0.000026217807,0.000023983906,0.000024344823,0.000023460441,0.000024294333,0.000023116318,0.000025956933,0.000025685136,0.000026348544,0.000023638575,0.00002448319,0.000023489496,0.00002458351,0.000023632962,0.000026229634,0.000026471982,0.000026452903,0.000024129127,0.00002414448,0.00002402099,0.00002487049,0.000024883655,0.00002651804,0.00002596513,0.000025875994,0.0000244781,0.000024218574,0.000023718761,0.00002437493,0.000024005485,0.00002478887,0.00002573103,0.000025945277,0.000023802104,0.000023429653,0.000023601297,0.000024343986,0.00002457955,0.000026012714,0.000025749883,0.000025622969,0.00002436921,0.000023962806,0.000023647031,0.000024180265,0.000023876011,0.000024623776,0.000025680994,0.00002610078,0.000023813001,0.000023427396,0.000023627803,0.000024428567,0.000024662106,0.00002605055,0.000025780866,0.000025652382,0.000024358013,0.00002394387,0.000023642184,0.000024174802,0.000023836925,0.000024587967,0.000025660993,0.000026099186,0.000023792207,0.000023403012,0.00002360929,0.000024406261,0.000024641135,0.000026023534,0.000025767838,0.00002563294,0.000024342107,0.00002392392,0.000023626384,0.000024154637,0.000023816543,0.000024564928,0.000025646194,0.000026085328,0.000023781433,0.00002338349,0.000023594253,0.000024388462,0.00002462523,0.000026001679,0.000025760713,0.000025623582,0.000024333356,0.000023914863,0.000023623432,0.000024146942,0.00002381518,0.000024563195,0.000025645557,0.000026081596,0.00002378082,0.000023384182,0.000023596727,0.000024391136,0.000024630444,0.000026009491,0.000025764275,0.000025630814,0.00002433983,0.000023923965,0.000023631295,0.000024156227,0.000023826495,0.000024573761,0.000025654781,0.000026087167,0.000023789553,0.000023392748,0.000023603616,0.000024397534,0.000024639701,0.000026018472,0.000025768208,0.000025633746,0.000024345427,0.000023926978,0.000023632761,0.000024157885,0.000023824836,0.000024573832,0.00002565358,0.000026093488,0.000023787192,0.00002339181,0.000023601093,0.000024399304,0.000024629435,0.000026002821,0.000025771795,0.000025631327,0.000024330433,0.000023918672,0.000023629154,0.000024157538,0.000023738608,0.000024523897,0.000025658326,0.00002626052,0.000023750245,0.00002336256,0.000023493485,0.000024294379,0.000024367724,0.000025495174,0.000025815554,0.000025372832,0.000023871342,0.000023482173,0.000023276676,0.00002409599,0.000023213739,0.000024148349,0.00002540426,0.00002621268,0.000023451537,0.000022725864,0.000023136783,0.000023968405,0.000024254792,0.00002469324,0.00002559015,0.000026448715,0.000024048746,0.000024414034,0.000023180026,0.000023063207,0.000021073178,0.000021198022,0.0000208002,0.000021953028,0.000023121123,0.00002412823,0.00002201261,0.000023431372,0.000022603419,0.00002408841,0.000024766254,0.000025172312,0.000022480948,0.000021486381,0.000021406433,0.00002135391,0.000021057547,0.000020980035,0.000022010046,0.000021493843,0.000020992366,0.000020579884,0.000022392816,0.000021823986,0.000020071993,0.000018299806,0.000016948854,0.00001646809,0.00001697399,0.00001701785,0.000017710323,0.000015910031,0.00001349248,0.0000120212335,0.000011725252,0.000013324447,0.000013848448,0.000013211354,0.000014786667,0.00001616008,0.00001630768,0.000014535229,0.000014789601,0.000010100078,0.000011042682],[0.000016932538,0.000015178413,0.000013163877,0.000010076574,8.651525e-6,9.494966e-6,8.746046e-6,0.000012441906,0.000016985861,0.00002528175,0.000022644976,0.000024080278,0.000022228814,0.000025509256,0.00002291627,0.000022764734,0.000019494646,0.00002080518,0.000018332943,0.0000193344,0.00001884344,0.000021657272,0.000019096182,0.000019976209,0.000018258163,0.000019951876,0.000017926175,0.000019011235,0.000018545965,0.000020952783,0.000019373641,0.000020239124,0.000018989527,0.000021226891,0.000019196314,0.000020098236,0.000019633493,0.000022529646,0.00002138093,0.00002159019,0.0000200516,0.000021826276,0.000019769766,0.000020318104,0.000019283469,0.0000217181,0.000020388328,0.000021223956,0.000019819186,0.000021919956,0.000019931718,0.000020786836,0.000020251653,0.000022948352,0.000021959268,0.000022874938,0.000021734759,0.000023812092,0.000021661961,0.000022467382,0.00002120055,0.000023655715,0.000022367482,0.000023392411,0.000021992024,0.000024215204,0.000021805512,0.00002264085,0.000021859938,0.000024517956,0.000023449122,0.000024347353,0.00002293352,0.000024972232,0.000022678581,0.000023529923,0.00002211084,0.000024485336,0.000023038892,0.000023957848,0.000022442093,0.000024567811,0.000022033757,0.000022800106,0.000021957572,0.00002457955,0.000023494873,0.000024313662,0.000022819117,0.00002479705,0.000022554024,0.00002337201,0.000021975064,0.00002434849,0.000022976077,0.00002391986,0.000022416169,0.000024546755,0.000022029471,0.000022799672,0.000021976048,0.000024614008,0.000023536946,0.000024354691,0.000022857797,0.000024835008,0.00002258476,0.000023404084,0.000022003416,0.000024379206,0.000023003986,0.000023952181,0.000022450484,0.000024583067,0.000022061344,0.00002283283,0.000022008117,0.00002464433,0.000023564524,0.00002438523,0.000022886916,0.00002486321,0.000022608638,0.00002342992,0.000022027687,0.00002440256,0.00002302431,0.000023968336,0.000022465198,0.000024596526,0.000022070646,0.000022839997,0.000022013344,0.000024647808,0.000023565895,0.000024386369,0.000022889188,0.000024862806,0.000022607968,0.000023426994,0.00002202548,0.000024395418,0.000023016933,0.000023959126,0.00002245331,0.000024580606,0.000022055916,0.000022825625,0.000022001926,0.00002463472,0.000023556348,0.00002437372,0.000022876682,0.00002485221,0.000022599173,0.000023417366,0.000022016618,0.00002438802,0.000023011731,0.000023951863,0.000022446822,0.000024576106,0.000022052005,0.00002282151,0.000021999136,0.000024633875,0.000023554527,0.000024370489,0.000022872167,0.000024848441,0.000022591523,0.000023414752,0.000022016093,0.00002439195,0.000023020753,0.000023966348,0.000022455622,0.000024585623,0.00002203876,0.000022817136,0.00002201958,0.000024695948,0.000023607734,0.000024458637,0.00002292274,0.000024941528,0.000022568162,0.000023543882,0.00002232733,0.00002488527,0.00002369274,0.000024734485,0.000022948267,0.000024735757,0.000022753838,0.000023659753,0.000022798518,0.000025372348,0.000024552515,0.000025437277,0.000023446504,0.000025279483,0.000023323159,0.000023819382,0.000021809527,0.00002376418,0.000021896032,0.00002274219,0.000020745583,0.000022709983,0.000020031339,0.000022601782,0.00002273306,0.000027710606,0.00002436094,0.000024896568,0.000021870404,0.000024153533,0.000021446196,0.000023155966,0.000022500359,0.000025585756,0.00002336236,0.000024912291,0.000022302516,0.000024307403,0.00002238976,0.000024417062,0.00002316659,0.000025705302,0.00002448842,0.000025674188,0.000022938026,0.000024872932,0.000022503085,0.00002450753,0.000023963172,0.000027919867,0.000024631125,0.000025320453,0.00002188643,0.000023622599,0.000020745583,0.000021759915,0.000019946607,0.000020734627,0.000017562836,0.000014950852,0.000012763058,0.000013549705,0.000014825228,0.000016636057,0.000016251897,0.000015244418,9.568158e-6,0.000013025662],[0.000016903125,0.00001373286,0.000013996554,0.000010828923,0.000010586128,0.000010964577,0.000014593257,0.000020652846,0.000027266646,0.000023634857,0.000022762455,0.00002102889,0.000021696176,0.000021477634,0.000021351467,0.000020151685,0.00002066313,0.000020419326,0.000020525278,0.00002007634,0.000021092095,0.000021276097,0.000021413598,0.000020107169,0.000020695768,0.000020406516,0.000020651074,0.00002001904,0.000020856036,0.000021154001,0.000021075266,0.00001990467,0.000020677007,0.000020470583,0.000020676376,0.000019743653,0.000020606534,0.00002106012,0.000021131254,0.000020214298,0.000020593607,0.000021030575,0.000020930114,0.000020577098,0.000020931173,0.000021453603,0.000021369535,0.000020447658,0.000020934069,0.000021128315,0.000021031197,0.000020861187,0.000021390271,0.00002190424,0.000021349757,0.000020663405,0.000020971873,0.000021532249,0.00002139474,0.000021652542,0.00002193683,0.000022314003,0.000021839163,0.000021040363,0.000021280805,0.0000215685,0.000021389576,0.000021492468,0.000021794016,0.000022377808,0.000021609554,0.000021281921,0.00002131007,0.000022046454,0.000021668076,0.000022132339,0.000022240327,0.000022797669,0.000022008517,0.000021322878,0.000021407106,0.000021778953,0.000021515272,0.000021654072,0.000021888518,0.000022426004,0.000021665577,0.000021296317,0.00002126768,0.000022017039,0.000021629141,0.000022090377,0.000022210019,0.000022775721,0.000022015527,0.000021321088,0.000021406659,0.000021777478,0.000021512133,0.000021645503,0.00002188741,0.000022419268,0.000021680044,0.00002130426,0.000021276748,0.000022030585,0.00002163737,0.00002210186,0.000022217306,0.000022783674,0.000022022981,0.00002133085,0.000021417562,0.000021790253,0.000021522495,0.000021657976,0.000021895907,0.000022425213,0.000021684427,0.000021311615,0.000021286529,0.000022038172,0.000021642285,0.00002211259,0.000022227205,0.000022790606,0.000022027707,0.000021336138,0.000021419808,0.000021794058,0.00002152457,0.000021660351,0.000021895865,0.000022426753,0.000021683518,0.00002131318,0.000021285474,0.000022038046,0.000021642325,0.000022110757,0.000022227183,0.000022792126,0.000022026026,0.000021336078,0.000021417194,0.0000217904,0.000021521613,0.000021656178,0.000021893988,0.000022425105,0.000021682443,0.000021312204,0.00002128326,0.000022036364,0.00002164121,0.000022107002,0.000022224958,0.000022790517,0.000022026215,0.000021333373,0.000021415437,0.000021788986,0.000021520034,0.0000216556,0.000021897808,0.0000224272,0.000021690033,0.00002131385,0.000021285758,0.00002203813,0.000021645295,0.000022109658,0.000022230171,0.000022793343,0.000022039369,0.000021347903,0.0000214289,0.000021804326,0.00002153309,0.000021683456,0.000021956967,0.000022443377,0.000021841539,0.000021370044,0.000021331378,0.000021976155,0.000021627058,0.000022076916,0.000022294627,0.000022866563,0.000022303433,0.000021656158,0.000021723694,0.000022157701,0.000021900063,0.000022122906,0.000022204704,0.00002271514,0.000021883154,0.000021544818,0.000021414355,0.000022049397,0.000021702634,0.00002198433,0.000021961969,0.0000221799,0.000021657645,0.000020767893,0.000021226364,0.000021203867,0.000021393209,0.000020877547,0.000021483718,0.000021749895,0.000021601538,0.000020042404,0.000020833473,0.0000204218,0.000021218795,0.000020671841,0.000021920268,0.000021989572,0.000022296945,0.000021322512,0.00002274566,0.000022412429,0.000023086643,0.000022717759,0.000023546667,0.000023908091,0.000023363653,0.000023478122,0.000023028855,0.000023570685,0.000022355433,0.000023000037,0.000022711996,0.000023674267,0.00002269987,0.000022302922,0.000022501948,0.000023113893,0.00002378286,0.00002474161,0.00002408432,0.000025440117,0.0000215954,0.000018417319,0.000013906069,0.000014505539,0.000014841907,0.000019232557,0.00001732829,0.000015598647,9.738196e-6,0.000013594125],[0.000016353359,0.000016120506,0.000013511704,9.401332e-6,9.735596e-6,0.000011016092,0.000016677643,0.000025470315,0.000024379648,0.000022587345,0.000021408148,0.000019799389,0.000020926245,0.000020123225,0.000020842197,0.000019624882,0.000020769558,0.00002040385,0.00002108753,0.000020024501,0.000021716422,0.00002141317,0.00002174023,0.000020311438,0.000020925325,0.000020271034,0.000020813257,0.000019857005,0.000021619797,0.000021144237,0.000021608193,0.000020170355,0.000020765478,0.000020168643,0.000020721836,0.000019529294,0.000021355356,0.000020687916,0.000021554704,0.000019922027,0.000020965175,0.000020309715,0.00002125677,0.000020134321,0.000021740356,0.000021194446,0.000021469996,0.000020235148,0.000020893222,0.000020277337,0.00002089105,0.00001985585,0.000021458838,0.000020868869,0.000021487365,0.000019762132,0.000020777838,0.000020114727,0.000021038379,0.000020122401,0.000021684014,0.000021112603,0.000021349228,0.000019965295,0.000020852834,0.00002007475,0.000020778749,0.00001988968,0.000021557662,0.000020788026,0.000021490152,0.00001976907,0.000020956539,0.00002012334,0.000021040907,0.00002012551,0.000021802622,0.000021110529,0.000021422626,0.000020022611,0.000020949707,0.000020142885,0.00002091184,0.000020002057,0.000021661734,0.000020844582,0.00002152925,0.000019777272,0.000020946887,0.000020100613,0.000021038519,0.000020112117,0.000021810254,0.000021124364,0.000021447075,0.000020032428,0.00002095516,0.000020145575,0.000020916268,0.00001999153,0.000021658181,0.000020842992,0.000021528325,0.000019776931,0.000020948786,0.000020100364,0.000021039523,0.000020111733,0.000021810316,0.000021123882,0.000021444928,0.000020033422,0.000020960177,0.000020148285,0.000020917643,0.00001999321,0.00002166006,0.000020840069,0.000021525922,0.000019775196,0.00002095474,0.000020104313,0.000021041067,0.000020114208,0.000021819013,0.000021127527,0.000021444417,0.000020034951,0.000020962616,0.00002015032,0.000020919939,0.000019993819,0.000021661053,0.00002083993,0.0000215266,0.000019776931,0.00002095528,0.000020103584,0.000021040145,0.00002011298,0.000021818014,0.000021128577,0.000021445683,0.000020034282,0.000020963775,0.000020149304,0.000020920417,0.000019993608,0.000021661403,0.000020842157,0.000021528243,0.000019777855,0.000020954461,0.00002010297,0.00002104161,0.000020114208,0.00002181764,0.000021128757,0.00002144908,0.000020035906,0.000020961937,0.000020150092,0.000020919797,0.000019993266,0.000021662416,0.00002084653,0.000021529722,0.000019781062,0.0000209545,0.000020105655,0.000021042993,0.00002011557,0.000021814705,0.000021132786,0.000021449325,0.000020041029,0.000020961357,0.00002015188,0.000020909509,0.000019996432,0.000021660846,0.00002089388,0.000021528573,0.000019828374,0.000020913276,0.00002004011,0.000020922413,0.000020031988,0.000021725225,0.000021112664,0.000021378013,0.000020067688,0.000020916546,0.00002015105,0.000020933809,0.000020161258,0.0000217595,0.000020791316,0.000021359083,0.000019611767,0.000020596062,0.000019804223,0.000020804466,0.000020016807,0.000021519252,0.000020835578,0.000021236892,0.000019923622,0.000020940217,0.000020168181,0.000021111173,0.000020324984,0.000021875538,0.000020944452,0.000021352422,0.000019941263,0.000020428635,0.000019753257,0.000020141964,0.000019959945,0.000021260501,0.00002076528,0.00002095594,0.000020509411,0.000021015177,0.000020652727,0.000021087571,0.000020514242,0.000022133603,0.000021461397,0.000022529754,0.000020812404,0.00002198934,0.000020880376,0.000021954369,0.000020940397,0.000022728334,0.000022075867,0.000022949687,0.000021349146,0.00002295503,0.00002204393,0.00002498817,0.000023828517,0.000026629903,0.000023497587,0.000022134342,0.000017406514,0.000014166849,0.000013321205,0.00001543871,0.000016647435,0.000017368227,0.00001554477,9.999217e-6,0.000013941963],[0.000016047525,0.000014253361,0.000013357398,9.43414e-6,9.8595e-6,0.000013072515,0.00002009421,0.00002678537,0.000023562143,0.000022739912,0.000020898382,0.000020059728,0.000019332207,0.000019862006,0.000019768277,0.000019865434,0.000020053627,0.000020754173,0.000020533678,0.000020783127,0.000020793696,0.000021746886,0.000021164109,0.000020775658,0.000020179474,0.0000203416,0.000020197207,0.00002045942,0.00002059842,0.00002169117,0.000020979855,0.000020661239,0.000019959356,0.000020091202,0.000019787252,0.000019874606,0.000020121537,0.000021136273,0.000020409085,0.000020103853,0.000019653444,0.000019989833,0.000020089441,0.000020566917,0.000020672138,0.000021791875,0.00002088557,0.00002081403,0.000020001618,0.000020254069,0.000019750018,0.000020211117,0.000020191565,0.00002116845,0.000019890096,0.000019622561,0.000019249348,0.000019665667,0.00001963061,0.000020245088,0.000020235282,0.00002123108,0.00002013916,0.000020129444,0.000019549065,0.00001984837,0.000019387484,0.000020017495,0.000019971809,0.000020928179,0.000019684301,0.00001956544,0.00001920611,0.000019584704,0.000019474708,0.000020124435,0.000020159297,0.000021128373,0.000020003354,0.000020049458,0.00001950828,0.000019829962,0.000019415516,0.000020091087,0.000020020856,0.000020974274,0.00001971261,0.000019576002,0.000019189689,0.000019573446,0.000019460895,0.000020111214,0.000020182497,0.000021159629,0.000020043646,0.000020067726,0.00001952542,0.000019844265,0.000019422496,0.000020081128,0.000020019403,0.000020974154,0.00001971558,0.000019575462,0.00001918912,0.00001957016,0.000019458908,0.000020110469,0.000020181264,0.0000211586,0.000020043359,0.000020069487,0.000019527823,0.000019846555,0.000019422941,0.000020081816,0.000020022593,0.000020973155,0.000019714846,0.000019574882,0.000019192286,0.00001957436,0.000019461397,0.000020109643,0.000020183015,0.000021160537,0.000020042251,0.000020068395,0.000019530169,0.000019847199,0.000019423127,0.000020081874,0.000020021085,0.000020971673,0.000019713212,0.000019573481,0.000019189634,0.000019572604,0.000019459187,0.000020108875,0.000020182959,0.000021160577,0.000020041754,0.000020067402,0.00001952894,0.000019846591,0.000019422183,0.000020081166,0.00002002076,0.000020973574,0.000019714564,0.00001957464,0.000019191464,0.00001957326,0.000019459058,0.000020108819,0.000020184018,0.000021160879,0.000020042271,0.000020067611,0.000019528567,0.000019846177,0.000019424164,0.000020081548,0.000020022479,0.000020977173,0.000019721692,0.000019580333,0.00001919941,0.000019577943,0.000019468338,0.000020115609,0.000020188098,0.000021167176,0.000020055233,0.00002007948,0.000019534677,0.000019847199,0.000019431574,0.000020088482,0.000020045061,0.000021018324,0.000019818224,0.000019687886,0.00001930021,0.000019615003,0.000019534154,0.00002014886,0.00002022693,0.000021218088,0.000020122861,0.000020118792,0.00001953045,0.000019760831,0.000019486077,0.000020262994,0.000020123553,0.00002094553,0.000019535812,0.000019176132,0.00001869092,0.000019170007,0.000019252488,0.000020088732,0.000020067055,0.00002117093,0.000020064395,0.000020084153,0.000019689951,0.000020266782,0.00002022992,0.000020963877,0.000020914553,0.000021819471,0.000021108799,0.000020834368,0.00002056878,0.000020097526,0.000020595395,0.000020837824,0.000021214668,0.000021729038,0.000021365378,0.000021395637,0.000021229665,0.000020786241,0.00002075734,0.00002080909,0.000021046706,0.000021530954,0.000020411246,0.000020165546,0.000019624058,0.000020296104,0.00001989852,0.000020776115,0.000020852078,0.000022274162,0.000021147363,0.000021336546,0.000021113228,0.000022685199,0.000023013004,0.000025267529,0.000024225112,0.000026356864,0.000019608962,0.000018219009,0.000013217642,0.000014785933,0.000014351183,0.000018956343,0.0000168975,0.000016847202,0.000010219942,0.000014248565],[0.000014998164,0.000014620658,0.000012309461,8.366137e-6,9.8700175e-6,0.000014829583,0.000025732601,0.000027468419,0.000023480272,0.000022532418,0.000021795679,0.00001943163,0.000019666699,0.000019436096,0.000020030117,0.00001903088,0.000020269468,0.000020351186,0.000021414538,0.00002010088,0.000021123356,0.000021430556,0.000021733204,0.000020314053,0.00002043604,0.000020128618,0.000020572761,0.000019831363,0.000020886886,0.000021206433,0.000021480766,0.000020260171,0.00002032508,0.000020064606,0.000020368409,0.000019629691,0.00002088342,0.000021168953,0.00002141846,0.000020026546,0.000020105079,0.00002014571,0.000020877069,0.00002016074,0.000021154887,0.00002131135,0.00002159466,0.000020511014,0.000020377889,0.000020078274,0.000020346102,0.00001973458,0.000020840347,0.000020885453,0.000020730435,0.000019507273,0.000019735784,0.00001993554,0.000020555543,0.000019815028,0.000020641053,0.000020766964,0.000020869425,0.000019859164,0.000019955243,0.000019850966,0.000020077621,0.000019463178,0.000020546117,0.000020628555,0.000020550173,0.00001938336,0.000019650839,0.000019823232,0.000020355516,0.000019644169,0.000020455342,0.000020608284,0.000020691072,0.000019680114,0.000019859448,0.000019745856,0.000020062196,0.000019438488,0.000020544725,0.000020618192,0.000020570742,0.000019358165,0.000019623272,0.0000197745,0.000020311962,0.000019613039,0.00002045224,0.000020615047,0.00002070331,0.000019694045,0.000019876274,0.000019757856,0.000020068721,0.000019437395,0.000020545254,0.000020623953,0.000020572761,0.000019359808,0.00001961912,0.000019774103,0.000020312058,0.000019614386,0.000020451891,0.00002061605,0.000020703073,0.000019696863,0.0000198776,0.000019759249,0.000020068454,0.000019437413,0.000020548234,0.000020626176,0.000020569898,0.000019358406,0.000019620373,0.000019776366,0.000020311769,0.000019613994,0.000020451656,0.000020617188,0.000020704178,0.000019696374,0.000019878416,0.000019758929,0.000020066118,0.000019436524,0.000020547901,0.00002062419,0.000020569565,0.000019355597,0.000019619605,0.000019773706,0.000020311883,0.00001961143,0.000020450661,0.00002061479,0.000020703763,0.000019692656,0.0000198754,0.000019757497,0.000020067955,0.000019435023,0.000020546275,0.000020623698,0.000020572174,0.000019357278,0.000019620727,0.000019773499,0.000020310781,0.00001961158,0.000020451773,0.000020614574,0.000020701671,0.00001969318,0.000019878471,0.000019757403,0.000020067362,0.000019435041,0.00002054594,0.000020625192,0.000020576214,0.00001936448,0.000019624564,0.000019781119,0.000020316089,0.000019620467,0.000020454328,0.000020620413,0.000020711406,0.000019704434,0.000019877942,0.000019754312,0.000020062158,0.00001943556,0.000020531055,0.000020638887,0.000020613059,0.000019483494,0.000019672063,0.000019901803,0.00002038236,0.000019762358,0.000020495334,0.000020736603,0.000020747564,0.000019749716,0.000019711331,0.000019601333,0.000019945122,0.000019503497,0.000020584419,0.000020563308,0.00002026512,0.000018987335,0.000019251129,0.000019439804,0.000020329055,0.000019552215,0.000020724525,0.000020705402,0.000020931473,0.000019710391,0.00002020817,0.00002020607,0.000020834326,0.000020268135,0.000021127365,0.000021513837,0.00002125531,0.000020635995,0.000020080897,0.000020687974,0.000020519898,0.000020866102,0.000020941636,0.000021486483,0.000021066044,0.000021097467,0.000020561602,0.000020714586,0.000020427,0.000020450856,0.000021047008,0.000020837726,0.000020526317,0.000019221337,0.000019955378,0.000019550462,0.00002009816,0.000019563162,0.00002084665,0.000021290387,0.00002130629,0.000020941676,0.00002158834,0.000022548391,0.000023492208,0.000024761413,0.000027081438,0.000025230736,0.000020958238,0.000016822925,0.000014189888,0.000013900316,0.00001548668,0.000016763015,0.000016838432,0.000015923373,0.00001021432,0.000014135349],[0.000014494767,0.000011796383,0.000012302889,8.976114e-6,0.000012472389,0.000019317684,0.00003153215,0.000023814044,0.00002238293,0.0000211345,0.000020442863,0.000018956198,0.00001913419,0.000018897628,0.000018946295,0.000018561906,0.000019091065,0.000019758514,0.000019619718,0.000019420959,0.000020153011,0.000020694486,0.000020245783,0.000019235695,0.000019313024,0.000019180907,0.000019238796,0.000018890636,0.000019768711,0.00002033838,0.000019664581,0.0000188267,0.000019030898,0.000018955781,0.00001906134,0.000018686214,0.000019902543,0.000020540867,0.00001980681,0.000018825336,0.000019082947,0.000019070994,0.000019229146,0.000018843855,0.000019785892,0.00002025343,0.000019604997,0.000018809329,0.000018880477,0.0000187857,0.000018755038,0.000018303734,0.000019326106,0.000019908637,0.0000191844,0.000018347424,0.00001875722,0.000018970033,0.000019288103,0.0000187407,0.000019470435,0.000019778818,0.000019149287,0.000018388835,0.000018663277,0.000018597839,0.000018648812,0.00001812292,0.000019123465,0.000019633699,0.000019034183,0.000018172157,0.000018676701,0.000018840872,0.000019187108,0.000018542534,0.00001926937,0.000019563648,0.000018986486,0.00001823328,0.000018548422,0.000018519595,0.000018626435,0.000018152776,0.000019118523,0.00001965708,0.000019022114,0.000018159564,0.000018640205,0.000018812127,0.000019151934,0.0000185188,0.000019257133,0.000019571151,0.000018996465,0.000018244482,0.000018568688,0.000018535831,0.000018648065,0.000018159286,0.00001912992,0.000019666755,0.000019028139,0.000018161296,0.000018641771,0.00001881202,0.00001915431,0.000018519859,0.000019258143,0.000019572493,0.000018998004,0.000018247005,0.000018569768,0.00001853647,0.000018646626,0.000018159755,0.00001912828,0.00001966638,0.00001902489,0.000018160395,0.000018641735,0.000018816685,0.000019155186,0.00001852136,0.000019258327,0.00001957449,0.000018999255,0.000018249057,0.000018568599,0.000018538149,0.000018646786,0.000018160083,0.000019127821,0.000019666568,0.000019023766,0.000018159997,0.000018642073,0.000018817564,0.000019156465,0.000018522085,0.00001925739,0.00001957421,0.000018999508,0.000018248815,0.000018568227,0.000018538785,0.000018648527,0.000018160325,0.000019127221,0.000019666193,0.0000190258,0.000018159859,0.000018640792,0.000018815608,0.000019154528,0.0000185197,0.000019257537,0.000019573146,0.000018998438,0.000018247927,0.000018569997,0.000018538183,0.000018648527,0.000018160083,0.000019130395,0.000019668107,0.00001903157,0.000018168623,0.000018650091,0.000018821962,0.000019165785,0.00001852871,0.000019268744,0.000019576413,0.000019007064,0.000018250901,0.000018569466,0.00001852719,0.00001864113,0.00001815958,0.000019146986,0.00001970233,0.000019118157,0.000018317405,0.0000187895,0.000018949475,0.00001931949,0.00001865792,0.000019438377,0.000019676061,0.000019105892,0.000018260043,0.000018463816,0.000018331526,0.00001855387,0.000018193487,0.00001911001,0.000019639918,0.000018839344,0.000017918466,0.000018332663,0.00001864803,0.00001918546,0.00001870763,0.000019477438,0.000019974226,0.000019304498,0.00001871375,0.000019034345,0.000019337518,0.00001935045,0.000019268009,0.000020225232,0.000021006303,0.000020224885,0.000019538327,0.000019861985,0.00001972423,0.00002021877,0.000019647336,0.000020834188,0.000020745565,0.000020603155,0.000019809908,0.000020056877,0.000019553538,0.000020017476,0.000019263525,0.000020211157,0.000020007763,0.000019216572,0.000018307837,0.00001867394,0.000018796578,0.000018831406,0.000019180174,0.000019978666,0.000021296175,0.00002000118,0.000020174779,0.000020016292,0.00002116849,0.000021360205,0.000023795747,0.00002514978,0.000026878946,0.000020178511,0.000018273351,0.000013964024,0.000014882428,0.000014725241,0.000017367463,0.000014984653,0.000015995043,0.000010380218,0.000014912547],[0.000014478824,0.000011890466,9.923296e-6,9.1568e-6,0.000014167739,0.000024456049,0.000030279474,0.000023933617,0.00002062643,0.000020403693,0.000019897912,0.000019208383,0.000019479668,0.000019316874,0.00002000742,0.000019051382,0.000019848561,0.000019483457,0.00001992328,0.0000193722,0.000020476245,0.000020599697,0.000020628615,0.000019507552,0.00001957294,0.000019388963,0.000019560233,0.000019170062,0.000019978608,0.0000202359,0.00002016697,0.000019127221,0.000019410238,0.000019267127,0.000019631958,0.000019237108,0.000020406807,0.000020545373,0.000020568817,0.00001950532,0.000019778308,0.00001956374,0.000019554322,0.000019299676,0.000020072357,0.000020325255,0.000020098007,0.000019225352,0.000019643307,0.000019469935,0.000019465739,0.000019107494,0.000020083808,0.00002040776,0.000020389767,0.000019521472,0.00001981057,0.000019708794,0.000019826653,0.000019640553,0.000020174626,0.00002008174,0.000019888996,0.000019095727,0.000019647203,0.000019355064,0.000019413275,0.00001904951,0.000020001924,0.000020208516,0.000020232717,0.00001940798,0.000019657118,0.000019733,0.000019757497,0.000019613693,0.000020002859,0.000019988918,0.000019768975,0.000019006684,0.00001953654,0.000019273815,0.000019437117,0.000019054778,0.000020020836,0.000020186866,0.000020230209,0.00001933881,0.000019621008,0.000019677957,0.00001972931,0.000019562975,0.000019980935,0.000019975047,0.000019761812,0.000018991139,0.000019535328,0.0000192749,0.00001945082,0.000019058341,0.000020023528,0.000020185902,0.000020223977,0.000019336043,0.000019619474,0.000019677636,0.000019728011,0.000019565625,0.000019979923,0.000019974912,0.00001976298,0.000018992298,0.00001953596,0.000019272858,0.000019446888,0.000019054598,0.000020022688,0.000020183632,0.000020225156,0.000019333516,0.000019621233,0.000019678857,0.000019733563,0.000019566949,0.000019981906,0.00001997598,0.000019766505,0.000018992188,0.000019536745,0.000019273044,0.000019448742,0.00001905385,0.000020021369,0.000020183246,0.000020226369,0.000019331139,0.000019623927,0.000019678275,0.000019735106,0.000019565532,0.000019983583,0.000019975445,0.000019766467,0.000018992027,0.000019536781,0.000019272327,0.0000194503,0.000019053961,0.000020021256,0.00002018109,0.000020223053,0.000019330142,0.000019619773,0.00001967456,0.000019732848,0.000019562583,0.000019980818,0.000019973828,0.000019764488,0.000018990124,0.000019536074,0.000019273466,0.000019450597,0.000019056086,0.000020022631,0.000020186117,0.00002022525,0.000019338366,0.000019620784,0.000019682555,0.000019733317,0.00001957253,0.000019980935,0.000019981351,0.000019760171,0.00001899065,0.00001952799,0.000019270085,0.00001943897,0.000019056068,0.000020039288,0.00002022936,0.000020262858,0.000019444124,0.000019667375,0.000019802372,0.000019758081,0.000019692805,0.000019992063,0.00002014131,0.000019780082,0.000019042789,0.000019401688,0.000019220091,0.00001942209,0.00001909396,0.00002009057,0.000020253934,0.000020254436,0.000019266907,0.000019535682,0.00001958519,0.000019977522,0.00001976215,0.000020357107,0.00002001673,0.000020164278,0.000019264886,0.00002015532,0.000019605875,0.000020065469,0.000019664149,0.000020951884,0.000020996167,0.000020867556,0.000020062522,0.000020281805,0.000020292136,0.000019773726,0.000020242831,0.000020517196,0.000021084214,0.000020360641,0.000019856703,0.000019641115,0.000019830757,0.000019696092,0.000019774858,0.000020435591,0.00002048107,0.000020186404,0.000018960773,0.000019229275,0.00001930448,0.000019633586,0.000019486468,0.00002044179,0.00002100588,0.000020767122,0.000019950165,0.000019994639,0.00002057808,0.000021453498,0.000023079576,0.000026163732,0.00002578153,0.000024189121,0.000018923758,0.000014590474,0.000014277073,0.000014913713,0.000014384631,0.00001451362,0.000015019462,0.000010514741,0.000014243374],[0.000016083774,0.000011480465,0.000010069398,0.000011416442,0.000019099316,0.000030194726,0.000029883682,0.00002410822,0.000020708976,0.000020092524,0.000019325294,0.000019094106,0.00001902912,0.000019265122,0.000019742994,0.00001953913,0.000019330068,0.000019508725,0.000019079944,0.00001941522,0.00001978195,0.00002061711,0.000020104791,0.000019655656,0.000019199022,0.000019335821,0.00001923575,0.000019299841,0.000019780911,0.00002054451,0.000020063899,0.00001956238,0.000019326253,0.000019192341,0.000019352516,0.000019117118,0.000019948471,0.000020486345,0.000020519585,0.000020107685,0.000020093867,0.000019838892,0.000019845553,0.00001952326,0.000020305397,0.000020531485,0.000020670008,0.00001996501,0.000019837225,0.000019510306,0.000019742844,0.000019382844,0.000019988824,0.000020485073,0.000020794649,0.00002040066,0.000020223399,0.000019866515,0.000020132054,0.000019797802,0.000020561934,0.000020366466,0.000020567819,0.000019807132,0.000019870777,0.000019323857,0.000019691415,0.000019288986,0.00002002435,0.000020337196,0.00002081145,0.000020355612,0.00002037651,0.000019952733,0.000020411655,0.00001995374,0.000020669535,0.000020324478,0.000020536127,0.000019690438,0.000019728503,0.000019191115,0.00001963147,0.00001926055,0.000019987412,0.00002030195,0.000020709096,0.000020249048,0.000020248159,0.000019894782,0.000020345657,0.000019914161,0.00002061646,0.000020310586,0.000020497893,0.000019665837,0.000019712385,0.00001918872,0.00001963411,0.000019258732,0.000019989053,0.000020302472,0.000020709154,0.000020243739,0.000020251538,0.000019895711,0.000020353185,0.000019917923,0.000020620002,0.000020310665,0.000020500494,0.00001966698,0.000019712628,0.0000191859,0.000019631547,0.000019255553,0.000019984343,0.000020297884,0.000020700505,0.000020242484,0.000020246054,0.000019895522,0.000020351768,0.000019920963,0.000020617621,0.00002031171,0.000020499849,0.000019668933,0.000019709996,0.00001918612,0.000019630497,0.00001925616,0.000019980876,0.000020295523,0.000020694662,0.000020238003,0.0000202392,0.000019893245,0.000020348334,0.000019918341,0.00002061603,0.000020312,0.000020494726,0.000019665049,0.000019708568,0.000019185754,0.000019629917,0.000019254912,0.000019980915,0.00002029407,0.000020693893,0.000020234704,0.000020238198,0.000019891044,0.00002034717,0.000019916994,0.000020617405,0.000020311149,0.000020497602,0.000019665405,0.000019710506,0.000019188352,0.000019633662,0.000019258126,0.000019986479,0.000020300344,0.000020704534,0.000020243988,0.000020251558,0.000019902924,0.000020364194,0.000019931396,0.0000206356,0.000020323452,0.0000205134,0.00001966912,0.0000197112,0.000019182991,0.000019631172,0.000019258712,0.000020009822,0.000020344842,0.000020790601,0.00002036897,0.000020414886,0.000020086585,0.000020602783,0.000020168394,0.000020927959,0.000020585283,0.000020784219,0.000019828374,0.000019720468,0.000019166004,0.00001965455,0.000019332023,0.000020059077,0.000020447795,0.000020728143,0.000020257892,0.00002007142,0.000019779327,0.00002006985,0.00001962026,0.00002023131,0.000019787005,0.00001974806,0.000019184054,0.000019411313,0.000019057086,0.000019214776,0.000019227478,0.000020052805,0.00002060972,0.00002088874,0.000020764644,0.000020897505,0.00002074788,0.000021177697,0.000020873467,0.000021553613,0.000021492304,0.000021797965,0.00002093305,0.000020378044,0.00001992841,0.000020454505,0.000020415606,0.000020980295,0.000021100506,0.000020495374,0.000019562995,0.000019289906,0.00001930426,0.000019215326,0.000019662499,0.000020131805,0.000021399941,0.000020339274,0.00002030582,0.000019757685,0.000020250282,0.000020342319,0.000021670867,0.000023558572,0.000026135851,0.000025293204,0.000022858147,0.00001560972,0.0000146311195,0.000014286853,0.000014608729,0.000014780083,0.000015684687,0.000011061126,0.000014128328],[0.000017022086,0.0000104940345,9.111973e-6,0.000012521658,0.000023434635,0.00003393648,0.000031092513,0.000024444438,0.000021641086,0.000020413387,0.000020368467,0.000019150364,0.000019421941,0.000019814708,0.00002061422,0.000019759493,0.000020718675,0.00002020422,0.000020599266,0.000019594512,0.000020577432,0.000020968015,0.00002143777,0.000019981848,0.0000202058,0.000020048636,0.000020299374,0.000019626043,0.000020503036,0.000021223754,0.000021477696,0.000020097008,0.000020074367,0.000019993551,0.000020226735,0.000019493475,0.00002033522,0.000021238677,0.000021910173,0.000020651034,0.000020736565,0.000020763635,0.00002088898,0.00002019584,0.00002068111,0.000021574631,0.000022137741,0.000021104632,0.000020571879,0.000020454992,0.00002080145,0.000020228317,0.000020568938,0.000021365724,0.000021960463,0.000021040967,0.000020756925,0.000020748334,0.000020937423,0.000020353671,0.000020762585,0.00002162514,0.000021919537,0.000020964755,0.00002038413,0.00002035695,0.000020621417,0.000020114476,0.000020456066,0.000021447097,0.00002188929,0.000021179736,0.000020699183,0.0000210055,0.000021113005,0.000020614376,0.00002083542,0.000021694585,0.000021851225,0.000020888321,0.000020243739,0.000020208767,0.000020518939,0.00002002477,0.000020422889,0.000021386171,0.000021849477,0.000021053791,0.000020604866,0.000020920137,0.000021070104,0.000020549036,0.000020807225,0.000021654918,0.000021812542,0.000020835718,0.000020220565,0.000020185595,0.000020503056,0.00002001154,0.000020412763,0.000021383092,0.000021838663,0.00002104512,0.00002059948,0.000020923528,0.000021070566,0.000020555583,0.000020806867,0.000021652893,0.000021813166,0.00002083683,0.000020220834,0.000020181324,0.000020499907,0.000020009173,0.0000204093,0.000021375447,0.000021834334,0.000021038337,0.000020596694,0.000020917743,0.000021071732,0.000020555995,0.00002080913,0.000021652915,0.000021816682,0.000020837704,0.000020219119,0.000020177838,0.000020500182,0.000020006788,0.000020409065,0.000021367254,0.000021829772,0.000021030375,0.000020594905,0.000020909327,0.00002106992,0.000020549467,0.000020808813,0.0000216505,0.000021813541,0.00002082942,0.000020216747,0.000020174395,0.00002049762,0.000020004098,0.000020406807,0.000021367803,0.000021828399,0.00002102877,0.000020591742,0.000020907633,0.000021066286,0.000020547664,0.000020808455,0.000021649756,0.00002181196,0.000020831505,0.000020217614,0.000020178742,0.000020499594,0.000020007552,0.000020410369,0.00002137614,0.000021834125,0.000021039703,0.00002059675,0.000020920856,0.000021074946,0.000020563562,0.000020816413,0.000021663243,0.000021818823,0.000020841322,0.000020214375,0.000020169471,0.000020484546,0.000020003527,0.000020416288,0.000021410679,0.000021897014,0.000021164633,0.00002067878,0.000021081598,0.000021203825,0.000020815422,0.000020931513,0.000021885262,0.000021973325,0.00002100394,0.00002023453,0.000020086163,0.000020431617,0.000020002286,0.000020564466,0.000021482017,0.000021930744,0.00002093846,0.000020631802,0.000020640264,0.0000206934,0.00001992427,0.000020490603,0.00002077853,0.00002101159,0.000019634785,0.00001985051,0.00001985019,0.000020233218,0.000019462603,0.00002024418,0.000021270662,0.000022039096,0.000021185351,0.000020921316,0.000021742304,0.000021787677,0.000021521593,0.00002115525,0.000022208325,0.000022421662,0.000021428817,0.00002046988,0.000019901918,0.000020182822,0.000020273934,0.00002080409,0.000021240357,0.000020875417,0.000019494199,0.0000194787,0.000019227442,0.000019456942,0.0000190348,0.000020337548,0.000021047608,0.000021367825,0.000019734636,0.000019701483,0.000019862156,0.000019780215,0.000020695848,0.000023151088,0.000025548721,0.000026000165,0.000024518471,0.000018341581,0.000015482441,0.000015584345,0.000014390365,0.000015868149,0.000015208074,0.0000109956245,0.00001411894],[0.000018561923,0.000011577394,0.000011867481,0.000017646089,0.000030518902,0.000029659419,0.000026225232,0.000023097851,0.000020746495,0.000020893958,0.000019558704,0.00001990613,0.00001908109,0.00001977218,0.000019114237,0.000019652676,0.000019660605,0.000020473357,0.000019482937,0.000020200308,0.000020190215,0.000021403412,0.000020017953,0.000019832629,0.000019348143,0.00001975906,0.000019141637,0.00001940474,0.000019927309,0.000021105277,0.00002005246,0.000019710486,0.000019520206,0.000019652058,0.000019318864,0.000019216388,0.000020106998,0.000021001233,0.000020429608,0.000020089192,0.000020232312,0.00002015726,0.000020022688,0.000019635141,0.000020683536,0.000021129825,0.000021237056,0.000020366893,0.000020463362,0.000019920335,0.00002001803,0.000019623796,0.000020685331,0.000021043294,0.000021059697,0.00002026228,0.000020658816,0.000020128176,0.000020171587,0.000019593223,0.000020857686,0.000021226628,0.00002136607,0.000020260733,0.000020436548,0.000019869962,0.000019935502,0.000019444422,0.000020713282,0.000021083248,0.00002134139,0.000020324733,0.000020843589,0.000020256193,0.000020413134,0.00001969673,0.000021008826,0.000021265367,0.000021446605,0.000020191526,0.000020344687,0.000019775009,0.000019844114,0.000019372883,0.00002062364,0.000021074444,0.000021289006,0.000020269488,0.000020732985,0.000020203603,0.000020340727,0.000019665855,0.000020959176,0.000021243659,0.000021402555,0.00002017099,0.00002031262,0.0000197745,0.000019830966,0.000019367784,0.00002061536,0.000021073338,0.000021288337,0.000020265215,0.00002073342,0.000020207108,0.000020347927,0.000019671803,0.000020964955,0.00002124297,0.00002140323,0.000020171625,0.000020312078,0.000019773424,0.000019834048,0.00001936858,0.000020614083,0.000021066186,0.000021280826,0.000020261063,0.000020727213,0.000020204643,0.000020348625,0.000019676174,0.000020965455,0.00002124692,0.000021406351,0.0000201773,0.000020308824,0.000019775933,0.000019831647,0.00001937137,0.000020608657,0.00002106759,0.00002126841,0.000020260095,0.000020719386,0.000020203506,0.000020337393,0.000019673134,0.000020958018,0.000021246495,0.000021398759,0.000020172087,0.00002030468,0.000019776271,0.000019829205,0.000019368303,0.000020606318,0.000021066406,0.000021270724,0.00002025886,0.000020717946,0.000020200017,0.000020334715,0.00001966805,0.00002095618,0.000021243639,0.000021398188,0.000020170817,0.000020307603,0.000019775272,0.000019829244,0.000019367822,0.000020610583,0.00002107153,0.000021284011,0.00002026713,0.000020730651,0.000020209016,0.00002035136,0.000019681222,0.000020971274,0.000021253407,0.000021412108,0.00002017986,0.000020307722,0.000019768238,0.000019818146,0.000019368708,0.00002062767,0.000021102498,0.00002138346,0.00002037892,0.00002085876,0.000020353204,0.000020542218,0.000019899337,0.000021150128,0.000021398493,0.000021520545,0.000020247657,0.000020267438,0.000019705898,0.000019754898,0.000019372717,0.00002061593,0.000021148171,0.000021152626,0.000020122745,0.000020563857,0.00002005659,0.000019984174,0.000019115314,0.000020382244,0.000020641544,0.00002017859,0.000019178877,0.000019677223,0.000019574865,0.00001942322,0.000018967157,0.000020218211,0.00002095436,0.000021367863,0.00002049119,0.000021220414,0.000020723635,0.000021574404,0.000020597006,0.000021514063,0.000021113992,0.000021369555,0.000020370371,0.00002022826,0.000019444587,0.000019512985,0.000019677374,0.000020428051,0.00002077974,0.000019842826,0.000018924444,0.000018903538,0.000018850864,0.000018431727,0.000018876768,0.000019623909,0.00002114353,0.000019845495,0.00001966957,0.00001955544,0.000020056037,0.000020081012,0.000021181311,0.000023099481,0.000025182228,0.000024932588,0.00002556856,0.000023925724,0.000020393578,0.000017847146,0.000017929868,0.00001768713,0.000016480642,0.000011310824,0.000014195262],[0.000018375775,0.000012244974,0.0000111195295,0.000019072486,0.000028253713,0.00002624412,0.000024276453,0.00002200413,0.00002112922,0.00002070797,0.000021021491,0.000019881089,0.000020631252,0.000019405594,0.000020047088,0.000019231826,0.000020599206,0.000020103373,0.000020499008,0.000020081663,0.00002156416,0.000020991904,0.000021185371,0.000019824556,0.000020453295,0.000020024712,0.00002027637,0.000019589037,0.000020887066,0.000021036474,0.000021183088,0.000019813253,0.000020301542,0.00001995711,0.000020114727,0.000019539148,0.000020750787,0.000020966254,0.000021079068,0.000020024712,0.000020296879,0.000020306617,0.000020107764,0.000019976398,0.00002059027,0.000021173739,0.00002090514,0.000020374742,0.000020358173,0.000020255922,0.000019877203,0.000019852878,0.000020557896,0.000020960599,0.000020764011,0.000020107438,0.00002009607,0.000020063477,0.000019783742,0.000019657737,0.00002035571,0.00002088169,0.000020792584,0.000020226891,0.000020270261,0.000020129157,0.00001966638,0.000019546174,0.000020242154,0.00002081163,0.0000207335,0.000020164702,0.000020008734,0.000020079462,0.000019703475,0.00001965605,0.000020277452,0.000020856214,0.000020770667,0.00002020497,0.000020226871,0.000020057068,0.000019626099,0.000019446017,0.000020211657,0.00002076898,0.000020763931,0.00002013361,0.00001999075,0.000020042404,0.000019688036,0.000019633513,0.000020276004,0.000020847147,0.000020778987,0.00002018856,0.000020228434,0.000020052843,0.00001962636,0.000019436226,0.000020207899,0.00002076421,0.000020762864,0.000020126814,0.000019983925,0.000020039957,0.000019688056,0.000019633007,0.000020275675,0.000020846788,0.000020771004,0.000020184401,0.000020224672,0.000020052688,0.000019626174,0.000019439043,0.000020210655,0.000020763675,0.000020757992,0.000020121362,0.000019980343,0.000020037758,0.000019689895,0.00001963617,0.000020280606,0.000020849791,0.000020776906,0.000020190313,0.000020228066,0.00002005135,0.00001962825,0.000019438006,0.000020212448,0.000020756786,0.000020755715,0.000020116146,0.000019980971,0.000020033518,0.000019686777,0.000019628831,0.000020276835,0.000020843589,0.0000207777,0.000020185711,0.000020226773,0.000020050777,0.000019627185,0.000019433093,0.000020209076,0.000020756965,0.000020756608,0.000020117795,0.000019981657,0.000020032945,0.00001968383,0.00001962595,0.000020274167,0.000020844702,0.000020775957,0.000020185267,0.000020226735,0.000020051064,0.000019626325,0.000019433706,0.000020209576,0.000020763655,0.00002076413,0.000020125184,0.000019985679,0.000020038638,0.000019687735,0.000019630985,0.000020276757,0.000020846688,0.000020772091,0.000020185442,0.000020224132,0.000020043703,0.000019608382,0.000019423424,0.000020200385,0.000020775005,0.000020785526,0.000020204778,0.000020031168,0.000020108244,0.000019738533,0.000019700545,0.000020276506,0.000020822607,0.000020606181,0.000020092852,0.000020085743,0.000019925903,0.000019491263,0.00001927038,0.000020182111,0.000020615224,0.00002060345,0.000019770125,0.000019858406,0.000019797066,0.000019530002,0.000019185645,0.000020257527,0.00002044142,0.000020409358,0.000019530988,0.000020064435,0.00002002118,0.000019795576,0.000019419478,0.000020225038,0.000020973974,0.000020943253,0.000020735793,0.00002024223,0.000020809783,0.000020313124,0.000020723084,0.000020580199,0.00002084476,0.000020126527,0.000020111638,0.00001999603,0.000019845344,0.000019384932,0.00001937813,0.000020503036,0.000020266163,0.000019986746,0.000018813133,0.000019254012,0.0000190806,0.000019304849,0.000018959543,0.000020384985,0.000020692887,0.000020427953,0.000019572231,0.000019626717,0.00002046098,0.000020753321,0.000021937687,0.000022951373,0.000024067054,0.000023467332,0.000024073253,0.000023241051,0.000023377963,0.000020393132,0.000018810782,0.000018241819,0.000016438527,0.000010912575,0.000013560345],[0.00001745114,0.000011778364,0.000011590728,0.000017999237,0.00002710614,0.000025283005,0.00002130879,0.000020909447,0.000018479475,0.000020335472,0.000019241585,0.00002041109,0.00001887812,0.000019545969,0.000018277691,0.000019109299,0.000018554474,0.000019733847,0.00001891932,0.00002020472,0.000019872483,0.000021204332,0.000019662424,0.00002016124,0.00001924876,0.000020121037,0.000019230523,0.000020022344,0.000019940691,0.000021220838,0.000019682853,0.00001990613,0.000018974195,0.00001982463,0.000019166771,0.000019947767,0.00001999254,0.000020941796,0.000019671033,0.000020047833,0.00001918149,0.000019936222,0.000019263709,0.000019985564,0.00001995867,0.00002106484,0.00002017532,0.000020618998,0.000019681916,0.000020328318,0.000019691133,0.000020296027,0.000020272697,0.000020926063,0.00002003264,0.000020037493,0.000019359475,0.00001959412,0.000019214465,0.000019664074,0.00001982136,0.000020713598,0.000020065812,0.000020467674,0.000019715617,0.000020209576,0.000019556615,0.000019988212,0.00002005288,0.000020728714,0.000020030307,0.000020019557,0.000019447165,0.00001959139,0.000019200763,0.000019577066,0.000019778554,0.000020678997,0.000020063077,0.000020423377,0.000019690984,0.00002014475,0.00001947638,0.000019900246,0.000019974093,0.00002069119,0.000019973064,0.000019992522,0.000019415182,0.000019581417,0.000019169916,0.000019568648,0.000019758176,0.000020681386,0.000020051504,0.000020425674,0.0000196694,0.000020141197,0.000019458112,0.000019888597,0.000019959927,0.00002068458,0.000019962457,0.000019988574,0.00001940539,0.000019578729,0.000019166187,0.000019567622,0.00001975192,0.000020679945,0.000020047297,0.000020421741,0.000019665593,0.000020140656,0.00001945798,0.00001988964,0.00001995947,0.000020685942,0.000019962363,0.000019984687,0.000019399524,0.000019576953,0.000019163444,0.000019566874,0.000019750678,0.000020682253,0.000020044889,0.000020425772,0.000019664712,0.00002013747,0.000019452787,0.000019885658,0.00001995066,0.000020680676,0.000019950583,0.000019979449,0.000019393643,0.000019574509,0.000019156703,0.000019562882,0.000019744952,0.000020680538,0.000020043532,0.000020425246,0.000019663192,0.000020137566,0.000019450894,0.000019885752,0.000019950032,0.00002068247,0.000019955018,0.000019983505,0.000019397361,0.000019575704,0.00001915884,0.00001956307,0.00001974791,0.000020681762,0.000020045672,0.000020423882,0.000019665444,0.000020139449,0.00001945327,0.000019886153,0.000019954121,0.000020685487,0.000019960478,0.000019989795,0.00001940167,0.000019580371,0.000019159479,0.000019563311,0.000019742542,0.000020682686,0.000020043972,0.000020425752,0.000019660905,0.000020137239,0.000019437506,0.000019868748,0.000019927462,0.000020669062,0.00001997236,0.000020032889,0.000019425128,0.000019652658,0.000019126162,0.000019589448,0.000019661973,0.00002065592,0.000019869507,0.000020224152,0.000019427183,0.000019933732,0.000019181472,0.000019595147,0.000019728388,0.000020426356,0.00001955626,0.000019462806,0.000019056559,0.000019202229,0.000018832554,0.0000191316,0.000019538571,0.000020179667,0.00001958917,0.000019881998,0.000019512334,0.000020054564,0.000019458574,0.000019854828,0.000020005471,0.000020518213,0.000020211368,0.00002036732,0.000020034702,0.000020265139,0.000020360058,0.000020643552,0.000020635562,0.000020879657,0.00002011438,0.000020411888,0.000019546287,0.000020112002,0.000019255553,0.000019863028,0.000019781157,0.000020316826,0.000018968676,0.000018890312,0.000018389746,0.000018995921,0.000018323644,0.000019266245,0.000019702498,0.00002114448,0.000019385468,0.00001962361,0.000019169896,0.000020354913,0.00002057849,0.000022076225,0.000022534115,0.000023844905,0.000023066526,0.00002284396,0.000023009296,0.000024015104,0.000025298175,0.00002150034,0.000019117373,0.00001598164,0.000011275489,0.0000130161],[0.000017459364,0.000011155281,0.000010782808,0.000015623586,0.000028392571,0.000026928825,0.000024560946,0.000020648868,0.000019958785,0.000020048425,0.00002059133,0.000019497471,0.00001981004,0.000018845958,0.000018794339,0.000018072733,0.000019286797,0.000019232228,0.000019910554,0.000019452991,0.000020607851,0.00002034587,0.00002059618,0.000019571093,0.000020473473,0.00001987197,0.000020387064,0.000019595484,0.000020859816,0.000020551035,0.000020778176,0.0000193623,0.000019956748,0.000019378593,0.000020120673,0.000019656894,0.000020692434,0.000020363223,0.000020690222,0.000019746401,0.000020307856,0.000019835505,0.000020431597,0.000019862082,0.000020792742,0.00002086618,0.000021290833,0.000020430001,0.000020717313,0.00002016174,0.000020786954,0.000020284957,0.000020919797,0.000020414223,0.000020736725,0.000019701258,0.000020181438,0.000019489979,0.000020283333,0.000019691812,0.000020644615,0.000020508864,0.00002115525,0.000020329055,0.000020816493,0.000020156433,0.000020749978,0.00002007498,0.000020738245,0.000020250225,0.000020628164,0.000019695828,0.000020205318,0.000019538178,0.00002022855,0.000019603242,0.000020582123,0.000020438749,0.000021058111,0.000020239915,0.000020759695,0.000020071133,0.000020644497,0.00001993227,0.000020646703,0.000020166239,0.000020563837,0.000019639523,0.000020180705,0.000019521696,0.000020209787,0.000019577086,0.000020569092,0.00002042511,0.000021057689,0.0000202299,0.000020747564,0.000020053665,0.000020627374,0.000019913497,0.000020631293,0.000020152973,0.000020556916,0.000019629357,0.000020169604,0.000019514717,0.000020203544,0.000019565103,0.000020561856,0.000020423746,0.000021054577,0.000020223804,0.000020740184,0.000020048425,0.000020621888,0.00001990877,0.00002062899,0.0000201484,0.000020555955,0.000019623685,0.000020163105,0.000019506846,0.00002020025,0.000019558554,0.000020559799,0.000020420688,0.000021051103,0.000020219022,0.000020739768,0.000020039977,0.000020609798,0.000019896243,0.00002061947,0.000020137968,0.000020547861,0.000019614778,0.00002016124,0.000019501394,0.000020196629,0.000019555757,0.000020557523,0.00002041621,0.000021054897,0.000020220159,0.000020740184,0.000020042422,0.000020612115,0.000019900815,0.000020621417,0.000020143367,0.000020552407,0.000019622355,0.000020165471,0.000019508761,0.000020201116,0.000019561858,0.000020559248,0.000020420708,0.000021055579,0.000020222607,0.000020742675,0.00002004703,0.000020618132,0.000019904575,0.000020623069,0.000020145575,0.000020554582,0.000019623349,0.00002016499,0.000019506808,0.000020199555,0.000019555124,0.00002055519,0.000020417145,0.00002105285,0.000020220372,0.000020740245,0.000020037034,0.000020590192,0.000019870682,0.000020583202,0.000020104428,0.000020524458,0.000019611076,0.000020183556,0.000019513245,0.000020162663,0.000019424218,0.000020471347,0.000020312174,0.000020835558,0.000019930216,0.000020434481,0.000019696054,0.000020157162,0.00001936134,0.000020245765,0.000019718364,0.00002008536,0.000019012958,0.00001974145,0.00001903313,0.000019852689,0.00001919375,0.00002036897,0.000020065105,0.00002071026,0.000020001848,0.000020665533,0.00002008879,0.000020658756,0.000020056495,0.000020559699,0.000020282461,0.000020525376,0.000020174086,0.000020538731,0.000020632373,0.000021260968,0.000020857131,0.000021365542,0.000021120275,0.00002129315,0.00002031202,0.000020613945,0.000019899962,0.00001994828,0.00001939797,0.000020191565,0.000019555479,0.000019431223,0.000018283845,0.000019115569,0.000018900439,0.00001932839,0.000018764164,0.000020434676,0.00002082086,0.000020449921,0.000018911274,0.000019496412,0.000020060379,0.000020468924,0.000020945192,0.00002271778,0.000022995651,0.000022190943,0.000021325215,0.000021190706,0.000022865821,0.000025228186,0.00002244479,0.000018896384,0.000015113344,0.000010909505,0.000012363404],[0.00001763418,0.0000110105875,0.000011357899,0.000015592654,0.000027946613,0.0000282112,0.000023156561,0.000021216225,0.000018459783,0.000020033824,0.000018667957,0.00001969551,0.000018495079,0.000019328429,0.000017702623,0.000018870776,0.000018414667,0.000020054029,0.000018717908,0.000020076148,0.000019680378,0.000020959538,0.000019227038,0.000020061507,0.000019347128,0.00002039183,0.000019045912,0.000019744839,0.000019563126,0.000020720967,0.0000189747,0.000019626399,0.00001889413,0.000020061889,0.000019068031,0.000020253257,0.000019906245,0.000020962396,0.00001927321,0.000020491309,0.000019636078,0.000020772548,0.000019477957,0.000020557503,0.000020179727,0.000021500606,0.000019885772,0.000021112422,0.000020094116,0.000021332984,0.00002005003,0.000021381195,0.000020564386,0.000021499232,0.000019734183,0.000020852018,0.000019883724,0.000020819709,0.000019655168,0.000020872729,0.000020298678,0.000021519314,0.000019956311,0.000021351994,0.000020390973,0.000021588627,0.00002009994,0.000021423015,0.000020509215,0.000021447871,0.00001964887,0.000020884756,0.000019894327,0.000020861247,0.000019635123,0.000020810161,0.000020192469,0.000021430535,0.000019860357,0.000021285352,0.000020327541,0.000021504791,0.000019988403,0.000021272426,0.000020386171,0.000021344218,0.00001955117,0.000020811174,0.00001982569,0.000020830155,0.000019593333,0.00002076528,0.000020158452,0.00002141074,0.000019848712,0.000021267599,0.000020307043,0.00002148169,0.000019968875,0.000021250122,0.000020368156,0.000021332153,0.00001954129,0.00002080159,0.000019814253,0.000020820304,0.000019583173,0.000020755853,0.000020149784,0.00002140876,0.000019846591,0.000021263077,0.000020302337,0.000021478636,0.000019966647,0.000021246677,0.000020363903,0.000021331582,0.000019540992,0.000020799369,0.000019808493,0.000020813475,0.000019578223,0.00002075542,0.00002014402,0.000021406433,0.000019842882,0.000021261372,0.000020297033,0.000021468071,0.000019956577,0.000021238839,0.000020352118,0.000021323345,0.000019534918,0.000020795163,0.000019806868,0.00002081282,0.000019575013,0.00002075156,0.000020143405,0.0000214058,0.000019844436,0.000021262975,0.00002030013,0.000021472431,0.000019959927,0.000021241896,0.000020357456,0.00002132845,0.000019538476,0.000020799369,0.000019811987,0.000020818577,0.000019581455,0.000020755537,0.000020147343,0.00002140778,0.000019846933,0.000021264475,0.000020301659,0.000021477284,0.00001996301,0.000021244326,0.000020360078,0.000021326538,0.000019534806,0.000020795422,0.000019806375,0.000020816095,0.000019575984,0.000020749067,0.000020137624,0.000021404658,0.000019845627,0.000021264514,0.000020298174,0.000021469852,0.000019943905,0.000021216549,0.000020318685,0.00002129256,0.000019524023,0.000020792962,0.000019774254,0.000020798298,0.000019456998,0.00002063629,0.000019939513,0.000021276666,0.000019655881,0.000021025182,0.000020023872,0.00002110089,0.00001954032,0.000020732432,0.00001993685,0.000020895175,0.000019136089,0.000020188983,0.000019373825,0.000020301854,0.000019176754,0.000020353185,0.000019993171,0.000021024802,0.00001953613,0.000020788957,0.000020142503,0.000021154221,0.000019844605,0.00002095322,0.000020420885,0.000021215721,0.000019575667,0.000020902928,0.000020022611,0.00002113843,0.000019919671,0.00002059954,0.00002000053,0.000020924348,0.000019566074,0.000020430836,0.000019535886,0.000020680023,0.000019202556,0.000020244086,0.000019395953,0.000020065698,0.000018266748,0.00001877809,0.0000182862,0.000019332649,0.000018113264,0.00001900895,0.000019022387,0.000020572035,0.000018796722,0.000018875024,0.00001889269,0.000020492187,0.000020446565,0.0000219233,0.000022434175,0.000023460529,0.000021616479,0.000022372069,0.000022218283,0.00002383688,0.000025216184,0.000025850539,0.000021664213,0.000015709942,0.000010453661,0.000012760405],[0.000017101636,0.000011393591,9.988323e-6,0.000015950867,0.000025902238,0.000031063053,0.000027061715,0.000022413902,0.000020389436,0.000020328976,0.000020506204,0.000019949022,0.000020513637,0.000019388075,0.0000196226,0.000019162093,0.000020449257,0.000019910383,0.00002038895,0.000020102798,0.0000213545,0.000020799369,0.000020903466,0.000019942288,0.000021018004,0.000020344105,0.000020521677,0.000019638419,0.000020737494,0.000020456242,0.000020614476,0.000019637726,0.000020560112,0.000020074693,0.000020593941,0.000020035466,0.000021210559,0.00002065403,0.000020887146,0.000020264792,0.000021327798,0.00002066853,0.000020848142,0.000020252388,0.000021378199,0.000020999352,0.000021254682,0.00002073706,0.00002179786,0.000021118281,0.000021323141,0.000020817644,0.000021780428,0.00002110433,0.000021219908,0.000020574862,0.00002144368,0.000020647667,0.000020868647,0.000020465606,0.000021507272,0.00002095602,0.000021312366,0.000020808731,0.000021955479,0.000021161444,0.000021361873,0.000020802245,0.000021746057,0.000020979975,0.000021142825,0.000020479118,0.000021408534,0.000020589288,0.000020823285,0.000020367477,0.000021406146,0.000020848936,0.000021245663,0.000020727213,0.00002188545,0.000021064076,0.000021259244,0.000020684107,0.000021623346,0.000020866997,0.00002106239,0.000020393714,0.000021345828,0.000020536263,0.00002078866,0.000020330954,0.00002137298,0.00002083387,0.000021235779,0.0000207151,0.000021870488,0.000021047708,0.000021243537,0.000020666068,0.000021608605,0.000020856573,0.000021058011,0.00002038901,0.000021342019,0.00002053303,0.000020786083,0.00002032382,0.000021369982,0.000020831505,0.000021235739,0.000020715277,0.00002186634,0.000021042371,0.000021239812,0.000020658992,0.00002160158,0.000020849711,0.000021052607,0.000020382282,0.000021335203,0.000020524574,0.000020778927,0.000020318646,0.000021364176,0.00002082366,0.000021229947,0.000020706706,0.000021859916,0.000021036352,0.000021232418,0.000020654363,0.000021595626,0.00002084661,0.00002105299,0.000020384634,0.000021334268,0.00002052295,0.000020777301,0.000020320254,0.00002136866,0.000020827414,0.000021233996,0.00002071342,0.000021866443,0.000021045282,0.000021240863,0.000020661791,0.000021604732,0.00002085359,0.000021056825,0.000020390215,0.000021343425,0.00002053219,0.000020783864,0.0000203263,0.000021372083,0.000020831825,0.000021237158,0.000020715712,0.000021870008,0.000021048352,0.000021242038,0.000020662008,0.000021604546,0.00002085005,0.000021053353,0.000020385081,0.000021340027,0.000020531075,0.000020782058,0.000020318703,0.000021365724,0.00002082676,0.000021236772,0.000020714073,0.00002186761,0.000021042411,0.000021224987,0.00002063188,0.000021561671,0.000020803138,0.000021020509,0.000020350759,0.000021316677,0.000020508609,0.000020708383,0.00002017047,0.000021218999,0.000020695768,0.00002115666,0.0000205823,0.000021682215,0.000020845657,0.000020949366,0.00002026889,0.0000212157,0.00002049942,0.000020762982,0.000019998413,0.00002092688,0.00002011321,0.000020436137,0.000020101475,0.00002123987,0.000020772151,0.000021027747,0.000020629697,0.000021721267,0.000021045884,0.000021163118,0.000020772488,0.000021669173,0.000021075368,0.000021117778,0.000020623087,0.00002150116,0.000020999752,0.000020897167,0.000020247368,0.000020945849,0.000020922571,0.000021037276,0.000020212507,0.000021315233,0.000020897087,0.000020832857,0.000020079768,0.000020685646,0.000019938296,0.000019848674,0.000018890618,0.000019925084,0.000019433133,0.000019747777,0.000018890581,0.000019718664,0.000020196398,0.000019669907,0.000018965256,0.000019462399,0.000020707792,0.000021012613,0.000021589449,0.000022211545,0.000022500726,0.000022166429,0.000021732416,0.0000223998,0.000022920489,0.000026270915,0.00002389175,0.000021094189,0.000016564247,0.000010423548,0.000012808051],[0.000016911315,0.000011661432,0.000010143245,0.000014214621,0.0000227136,0.000031367163,0.000026026637,0.000022909977,0.000019252837,0.000019987203,0.000018781457,0.000019767012,0.000018169369,0.000019216279,0.000018148363,0.000019273926,0.000018351135,0.00001973027,0.000018767849,0.000019969599,0.000019185827,0.00002063932,0.00001927275,0.000020100939,0.000018994779,0.00002019453,0.000018964389,0.000019784326,0.00001926088,0.000020550919,0.000019262974,0.000019804827,0.00001879328,0.000019803787,0.000019111067,0.000020162546,0.000019442734,0.000020598243,0.00001935774,0.000020378044,0.000019176334,0.000020332234,0.00001912952,0.000020216265,0.000019436096,0.000020877585,0.000019668707,0.000020750867,0.000019335213,0.000020696063,0.000019420737,0.000020692849,0.000019479965,0.000020973474,0.00001944557,0.000020643394,0.00001901002,0.000020317173,0.000018988278,0.000020418955,0.000019347719,0.000021030595,0.000019687079,0.000020963354,0.000019427758,0.000020912279,0.0000194023,0.00002079217,0.000019459614,0.000021025702,0.000019366566,0.000020643452,0.000018985833,0.00002036068,0.000018981487,0.000020422227,0.000019306486,0.000021013715,0.000019627296,0.000020913676,0.000019385228,0.000020840327,0.000019340321,0.000020693815,0.00001937826,0.000020923111,0.000019280636,0.000020551526,0.00001892228,0.000020294343,0.000018940225,0.000020369069,0.000019271243,0.000020975174,0.000019605803,0.000020884876,0.000019363131,0.00002081284,0.000019321682,0.000020672473,0.000019361063,0.000020914074,0.000019275378,0.000020548607,0.00001891867,0.000020295252,0.000018932424,0.000020359941,0.000019265399,0.000020973055,0.000019598605,0.000020879776,0.000019355857,0.000020807323,0.000019308329,0.000020662283,0.0000193451,0.000020904543,0.000019260347,0.000020533267,0.000018897357,0.00002028339,0.000018914232,0.000020347326,0.00001924821,0.000020963536,0.000019581978,0.000020863674,0.00001933844,0.000020798456,0.000019296198,0.000020655742,0.000019337498,0.000020904243,0.000019258767,0.000020532876,0.000018895698,0.000020278943,0.000018914954,0.00002034905,0.000019250798,0.000020967334,0.000019590065,0.000020874699,0.00001935115,0.0000208078,0.000019313264,0.00002066646,0.000019351593,0.000020912777,0.000019271702,0.000020543315,0.000018911924,0.000020291845,0.000018930798,0.000020360485,0.00001926448,0.000020972953,0.000019599578,0.00002088125,0.00001935809,0.000020812246,0.000019317573,0.000020667328,0.000019352665,0.000020909407,0.00001926889,0.000020538711,0.000018909688,0.000020291807,0.000018925924,0.000020350313,0.00001925379,0.000020971935,0.000019594401,0.00002087641,0.000019353512,0.000020810618,0.000019297137,0.000020634754,0.000019305475,0.000020868529,0.000019234209,0.000020504052,0.000018887717,0.000020302394,0.000018825658,0.00002019503,0.000019099532,0.000020878822,0.000019464254,0.000020699046,0.000019221978,0.000020638081,0.000019077324,0.000020262394,0.000019015224,0.000020533933,0.000019032548,0.000020150303,0.000018634519,0.000019822268,0.00001871871,0.00002009745,0.000019348954,0.000020869486,0.000019809739,0.000021008545,0.000019779063,0.0000208156,0.000019724532,0.00002084645,0.000019911902,0.000021123418,0.000019993819,0.000021191598,0.000020027175,0.000021011132,0.00001967895,0.000020344221,0.000019491912,0.000020657082,0.000019626325,0.000020255595,0.000019390813,0.000020626137,0.0000193551,0.000020013851,0.000018918436,0.000020031475,0.000018588567,0.000019214629,0.000018250641,0.000019531322,0.000018011926,0.000019033801,0.000018606728,0.00002032731,0.000018699406,0.00001905556,0.00001869101,0.000020161007,0.000019804487,0.000020449297,0.000019961926,0.000021085218,0.000021061785,0.000022047903,0.000022117694,0.000023930445,0.000025953865,0.000025799976,0.000021255453,0.000015730706,0.000010782192,0.000012938762],[0.00001704187,0.0000114329705,9.454929e-6,0.000013016088,0.00002264925,0.00003421246,0.000031217,0.000023995322,0.000021351365,0.00002008283,0.000020704869,0.0000188408,0.000020057967,0.000019018125,0.000019608233,0.000018031758,0.000019718645,0.000019159936,0.000020354564,0.000018890456,0.000020545529,0.000020177704,0.000020937321,0.00001936592,0.000020426045,0.000019554434,0.000020249954,0.000019208126,0.000020498912,0.000020224808,0.000020728241,0.00001928367,0.000020005185,0.000019393143,0.000020139583,0.0000192724,0.00002058067,0.000020367923,0.000020879796,0.000019685727,0.000020433916,0.000019727298,0.0000202063,0.00001919183,0.000020464202,0.000020274128,0.0000212515,0.000019706275,0.000020558091,0.000019809342,0.000020527727,0.00001922273,0.000020485522,0.000020162566,0.000020810161,0.000019430778,0.000020228066,0.000019436895,0.00001999954,0.000019009622,0.000020355827,0.000020300187,0.000021178666,0.000019707928,0.000020641486,0.000019831097,0.000020419093,0.000019109555,0.000020443447,0.00002006143,0.000020665593,0.000019325424,0.00002020237,0.00001943417,0.000020002304,0.000019006358,0.000020351341,0.000020239586,0.000021061905,0.000019598512,0.000020557289,0.000019741638,0.000020318414,0.000019035962,0.00002035633,0.000019981791,0.00002058707,0.000019254783,0.000020145,0.00001938266,0.000019966667,0.000018961802,0.000020312873,0.000020206935,0.000021043155,0.000019582258,0.000020546568,0.000019727411,0.00002030867,0.000019022387,0.000020351885,0.000019976475,0.00002059082,0.000019250578,0.000020145595,0.000019376099,0.000019966647,0.000018947867,0.000020307798,0.000020197378,0.000021044378,0.000019567324,0.000020538379,0.000019714866,0.000020299663,0.000019001935,0.00002034131,0.00001996202,0.00002057702,0.000019224288,0.0000201238,0.000019353125,0.000019948815,0.000018920024,0.000020290297,0.000020178224,0.000021030475,0.000019538476,0.00002051618,0.000019699435,0.000020294206,0.000018988603,0.000020334523,0.00001995867,0.000020580357,0.00001922119,0.00002012359,0.000019354196,0.000019956386,0.000018925328,0.000020295405,0.000020187366,0.000021047972,0.000019554825,0.000020534344,0.000019713323,0.000020312757,0.000019008097,0.000020348236,0.000019971256,0.000020592666,0.000019236391,0.000020140427,0.000019370776,0.000019969637,0.000018942988,0.000020308824,0.000020199037,0.00002105036,0.00001956863,0.000020541906,0.000019721128,0.000020311263,0.00001901352,0.000020349013,0.000019969219,0.000020589603,0.000019235364,0.000020139276,0.000019365476,0.000019966456,0.000018932693,0.000020302976,0.000020191621,0.00002105333,0.000019550853,0.000020537575,0.000019708868,0.000020294516,0.000018969979,0.000020311556,0.000019911125,0.000020549427,0.000019165454,0.000020131594,0.000019316634,0.000019952733,0.00001877372,0.000020243757,0.000020035084,0.000020980797,0.000019258474,0.000020330855,0.000019486337,0.000020112404,0.000018633558,0.00002004678,0.00001964505,0.00002036229,0.00001901321,0.00001987853,0.000019247494,0.000019853444,0.000019175162,0.000020444713,0.000020640364,0.000021365378,0.0000204151,0.000021103062,0.000020516765,0.000020921316,0.00002005883,0.000021018064,0.000020914275,0.00002158033,0.00002050108,0.00002127632,0.000020524438,0.000020942813,0.000019872728,0.000020582534,0.000020475269,0.00002099941,0.000019637875,0.0000205216,0.000019819281,0.000020470545,0.000018819575,0.000020122918,0.000019464069,0.00001986583,0.00001848383,0.000019594288,0.00001888561,0.000019364552,0.000018352535,0.000019837586,0.000020178897,0.000020215879,0.000018702456,0.000019402929,0.000019562753,0.000019765297,0.00001910039,0.000020091375,0.000020051504,0.000021198894,0.000020664944,0.000021408374,0.000022269829,0.000027055883,0.000024581403,0.000021497961,0.000015344505,0.000010501724,0.000012411887],[0.000016960932,0.000010976766,9.963625e-6,0.000012707071,0.00002376436,0.000031454903,0.000027124264,0.00002234486,0.000019739662,0.000019388777,0.00001835404,0.000018723444,0.000018194007,0.000019032857,0.0000176888,0.000018168848,0.000018069577,0.000019289022,0.000018251772,0.000018970612,0.000019135303,0.000020502233,0.000019152154,0.000019527673,0.000018947108,0.000019671332,0.000018486984,0.000019205689,0.000019084093,0.000020216265,0.00001889696,0.000019231624,0.00001878495,0.000019398747,0.000018518569,0.000019271445,0.000019420497,0.000020520503,0.000019174084,0.000019756197,0.000019187875,0.000019810852,0.000018369625,0.000018962055,0.00001882846,0.000020337022,0.000019173774,0.000019654493,0.00001896278,0.00001997798,0.00001855226,0.000019316156,0.000019080928,0.000020612606,0.000019159754,0.000019902713,0.000019027722,0.000020009173,0.000018304398,0.000019378205,0.00001908788,0.000020906475,0.000019362724,0.000019961508,0.000019136927,0.000020213141,0.000018486297,0.000019304407,0.000018943403,0.000020523223,0.000019008714,0.000019841898,0.00001904001,0.000020051235,0.0000182794,0.000019395085,0.000019032857,0.00002082674,0.000019237401,0.000019849962,0.000019063884,0.000020084344,0.000018406818,0.000019238925,0.000018909363,0.000020437541,0.000018951101,0.000019774989,0.000018978862,0.000019973866,0.00001823801,0.000019329276,0.000018994091,0.000020783664,0.000019227093,0.000019835865,0.000019050218,0.000020073641,0.000018402465,0.000019226763,0.00001890554,0.000020437366,0.000018952529,0.000019767805,0.000018969255,0.000019970303,0.000018231818,0.000019318164,0.000018981815,0.00002078089,0.000019217561,0.000019820754,0.000019031895,0.000020065832,0.00001838596,0.000019208932,0.000018886834,0.000020425949,0.00001893551,0.000019747664,0.000018947288,0.000019956635,0.00001820614,0.000019297413,0.000018956182,0.000020769972,0.000019196681,0.000019800862,0.000019007663,0.000020050089,0.000018373707,0.000019203053,0.000018877057,0.00002042698,0.00001893616,0.000019748924,0.000018949113,0.000019962878,0.000018217568,0.000019307077,0.000018965527,0.000020778452,0.000019215051,0.000019815823,0.00001902707,0.00002006855,0.000018396675,0.00001922042,0.000018894456,0.000020437501,0.000018950397,0.000019756724,0.000018960067,0.000019968762,0.000018232515,0.000019316654,0.00001898138,0.00002078392,0.000019221961,0.000019822779,0.000019037268,0.000020071706,0.000018401604,0.000019222676,0.000018898221,0.000020432766,0.000018948698,0.000019752899,0.000018953522,0.000019962134,0.000018224413,0.000019304553,0.000018967465,0.000020777343,0.00001921417,0.000019802315,0.00001901934,0.000020058313,0.000018374076,0.000019185334,0.000018860106,0.000020386346,0.000018915207,0.00001968351,0.000018912482,0.000019928297,0.000018152481,0.000019135578,0.000018770552,0.00002054502,0.000018974104,0.000019428518,0.00001871052,0.000019755518,0.000018178658,0.000018979334,0.00001868871,0.000020136547,0.000018834475,0.000019679232,0.000019047964,0.000019945523,0.000018576782,0.000019715711,0.000019637688,0.000021128113,0.000019933885,0.000020576745,0.000020128407,0.00002070943,0.000019439953,0.000019961486,0.000020009631,0.00002103621,0.000020115915,0.000020577332,0.000020232987,0.000020572073,0.000019343734,0.00001951265,0.000019311625,0.000020208729,0.000019264664,0.000018998438,0.000018643335,0.000019302253,0.000018300087,0.000018712215,0.000018652352,0.00001968002,0.000018363897,0.00001891692,0.000018436614,0.0000193297,0.000017912658,0.000018757059,0.000018614288,0.000020212718,0.000018732622,0.000018857589,0.00001882758,0.000019569543,0.000019622055,0.000019620224,0.000019758081,0.000020067688,0.000020003527,0.000021013693,0.000020822272,0.000023034674,0.000024959018,0.000027160815,0.000023706347,0.000016330356,0.000010296089,0.000012613404],[0.000017029555,0.000010873266,9.142996e-6,0.000013044234,0.000021750267,0.000033204156,0.000027140515,0.00002295676,0.000020269255,0.000019773255,0.000019764979,0.00001919948,0.000019952162,0.000019698648,0.000019762603,0.000018744935,0.000019878264,0.000019833293,0.000020218637,0.000019405039,0.000021092239,0.00002112376,0.000021108739,0.00001980326,0.000020820802,0.000020201946,0.000020510193,0.000019325904,0.000020630543,0.00002047402,0.000020561229,0.00001947755,0.000020341853,0.000020152147,0.000020286756,0.00001968216,0.000021008085,0.000020957179,0.000020854224,0.000019982954,0.000020928697,0.00002061471,0.000020472282,0.000019523799,0.000020447736,0.000020780217,0.000020755302,0.000019879439,0.000020736228,0.000020719504,0.000020639694,0.000019603502,0.000020947367,0.000020967675,0.00002095748,0.000019921361,0.000020867794,0.000020392801,0.000020372489,0.000019466333,0.000020873405,0.00002101191,0.00002107392,0.000019882322,0.000020867097,0.000020665357,0.000020519234,0.000019398321,0.000020750807,0.000020661297,0.00002074766,0.00001981896,0.000020821239,0.000020314073,0.00002026367,0.000019395731,0.000020783644,0.000020835938,0.000020929736,0.000019763622,0.000020743508,0.000020486441,0.0000203554,0.000019377429,0.000020692887,0.000020580179,0.000020706133,0.000019776631,0.000020751499,0.000020267476,0.000020236306,0.000019362189,0.000020748454,0.000020828686,0.00002092826,0.000019764073,0.00002074762,0.000020493437,0.000020368234,0.000019373938,0.000020690322,0.000020594314,0.000020713223,0.000019771878,0.000020750254,0.000020270976,0.000020242907,0.000019348512,0.000020741825,0.000020826817,0.000020926484,0.00001975047,0.000020728992,0.00002048533,0.000020361826,0.0000193544,0.000020677462,0.00002058601,0.000020701158,0.0000197617,0.000020738305,0.0000202526,0.000020224288,0.000019321942,0.000020721916,0.000020806134,0.0000209114,0.000019727919,0.000020695394,0.000020463793,0.000020347868,0.000019344325,0.000020670936,0.000020580945,0.000020701966,0.000019763773,0.000020736623,0.000020258569,0.000020233605,0.000019337906,0.000020734053,0.00002082362,0.000020928437,0.000019746514,0.000020721087,0.00002048779,0.000020370488,0.000019364203,0.000020685922,0.000020595728,0.000020711246,0.000019766749,0.000020742478,0.000020270416,0.00002024864,0.000019346262,0.000020743844,0.000020833235,0.000020930915,0.000019751806,0.000020732828,0.000020494317,0.000020373245,0.000019368857,0.000020687816,0.000020600286,0.000020710635,0.000019765921,0.000020737849,0.00002026854,0.000020247964,0.000019336761,0.00002073354,0.000020828486,0.000020928599,0.000019736386,0.000020704356,0.000020475642,0.000020353087,0.000019343217,0.000020641033,0.00002055282,0.000020667743,0.000019711952,0.000020675154,0.000020228974,0.000020199152,0.000019190275,0.00002044764,0.00002060461,0.00002065795,0.000019392846,0.00002020312,0.00002012426,0.000020152724,0.000019247274,0.000020454467,0.000020282037,0.000020545373,0.000019791025,0.000020709846,0.000020225616,0.000020341193,0.000019892144,0.000021255735,0.000021284297,0.000021237136,0.000020524672,0.00002138146,0.00002105343,0.000020863934,0.000020232717,0.000021356844,0.000021479087,0.000021344526,0.000020796493,0.000021565518,0.000021424896,0.000021074344,0.000020105923,0.000020376005,0.000020968595,0.0000203481,0.000019619736,0.000019889603,0.000020167181,0.000020054928,0.000019440695,0.000020491249,0.000020223786,0.000020191872,0.000019297227,0.00002031233,0.000019996945,0.000020152129,0.000019190695,0.000019905845,0.000020136318,0.000019349729,0.000018967103,0.000019142404,0.000020144576,0.000019985946,0.000020301446,0.000020266703,0.000020784339,0.000020293915,0.000020419131,0.00002064621,0.000021562619,0.00002497035,0.000024776838,0.000025821786,0.000017379161,0.000010733264,0.0000126534405],[0.000016387845,0.000010661598,9.675166e-6,0.0000119013,0.000021000253,0.000031756033,0.000025622652,0.000022356733,0.000019143006,0.000019473797,0.000018586103,0.000019341796,0.000018505876,0.000019392237,0.00001850293,0.000019116462,0.000018570034,0.000019960366,0.000018658631,0.000019606887,0.000019356448,0.00002087862,0.000019441213,0.000019646117,0.000018919518,0.0000200305,0.000018759081,0.00001938009,0.000019013609,0.00002038582,0.000019054232,0.000019417515,0.000018904982,0.000020091527,0.00001908018,0.00001980683,0.000019722387,0.000020808018,0.000019482955,0.000019667375,0.00001904504,0.000020262976,0.000019018724,0.000019418088,0.000018998058,0.000020331323,0.000019260457,0.000019565177,0.000018941742,0.000020273643,0.000018944722,0.00001947597,0.000019019195,0.000020461253,0.000019144776,0.00001949695,0.000018619225,0.000019942612,0.000018564331,0.00001927992,0.000018860017,0.000020620138,0.00001932347,0.000019705221,0.000018868077,0.0000203053,0.000018754268,0.000019353827,0.000018757775,0.00002033776,0.000018985833,0.000019478832,0.000018513556,0.000019925084,0.000018443085,0.000019255682,0.000018746794,0.000020563248,0.000019212523,0.000019632556,0.000018745024,0.00002018138,0.000018647177,0.000019349765,0.00001874667,0.000020346628,0.000018978899,0.000019463216,0.000018497847,0.000019898425,0.000018427667,0.000019211624,0.000018732873,0.000020527119,0.000019202229,0.000019616462,0.000018751909,0.000020176896,0.00001865502,0.000019336338,0.00001874708,0.000020335763,0.000018979334,0.00001945388,0.000018500248,0.000019898842,0.000018431268,0.000019199242,0.000018729746,0.000020522148,0.000019206678,0.000019610085,0.000018745435,0.000020166066,0.000018641522,0.000019314075,0.000018731766,0.000020314694,0.00001895365,0.000019433168,0.000018474455,0.0000198722,0.00001839587,0.000019162915,0.000018692239,0.00002049117,0.000019174944,0.000019581566,0.000018711198,0.000020140178,0.000018617413,0.000019307132,0.000018717872,0.000020315352,0.000018951281,0.000019440156,0.000018479388,0.000019888881,0.000018416651,0.00001919842,0.000018724531,0.00002053305,0.000019207942,0.000019616069,0.000018744739,0.000020178148,0.000018653027,0.000019338531,0.000018748797,0.000020339874,0.000018975841,0.000019452229,0.000018499171,0.000019902713,0.00001843431,0.000019206935,0.000018734107,0.00002053301,0.00001920981,0.000019613955,0.000018749386,0.000020176454,0.000018656763,0.000019337296,0.00001875148,0.000020333204,0.000018976873,0.00001944318,0.000018497443,0.000019895768,0.000018431268,0.000019189469,0.000018727837,0.000020522539,0.000019210764,0.000019605053,0.000018740968,0.000020163028,0.00001863626,0.000019308512,0.000018714712,0.000020275675,0.000018928054,0.000019372865,0.000018474595,0.000019856343,0.000018365105,0.000019032404,0.000018540535,0.000020346957,0.000018962492,0.000019269846,0.000018368677,0.000019880215,0.000018442293,0.000019331157,0.000018599083,0.00002026081,0.00001897121,0.000019570216,0.000018537901,0.000020059135,0.00001899918,0.000020085512,0.000019596848,0.000021110429,0.00001990298,0.00002045222,0.000019615527,0.00002095578,0.00001991935,0.000020680221,0.00002020763,0.000021302676,0.000020275791,0.000020585067,0.000019939342,0.000021087551,0.000020168047,0.000020349536,0.00001968997,0.000020781245,0.00001977069,0.00001970778,0.000019049672,0.000020112464,0.000019024184,0.000019595522,0.000019146328,0.000020393774,0.000019044352,0.000019421665,0.000018594683,0.000020020187,0.000018647033,0.000019573874,0.000018974539,0.000020340709,0.000018373199,0.000018703224,0.00001850743,0.000019587169,0.000019785213,0.000020074942,0.000020170086,0.000020630956,0.000020708008,0.000021066024,0.000020740066,0.00002139488,0.000022961816,0.00002560802,0.00002530995,0.000017488761,0.000010905563,0.000013017341],[0.000016565811,0.000010191688,9.965317e-6,0.000011836184,0.000022106751,0.00003512601,0.000029215844,0.000023117884,0.000020320642,0.00001973362,0.000020113286,0.00001885027,0.000019803487,0.000019418885,0.000020008622,0.00001864513,0.00002012384,0.000019918854,0.000020884756,0.000018949673,0.00002074766,0.000020296162,0.000020856492,0.000019329977,0.000020416444,0.000019628738,0.000020243486,0.000018681583,0.00002021987,0.00001957802,0.000020159068,0.000019085039,0.000020183343,0.00001970498,0.00002037045,0.000019362964,0.000021025424,0.000020562877,0.000020843368,0.000019574378,0.000020453237,0.000020016025,0.00002086634,0.000019248284,0.00002036934,0.000019998854,0.00002048269,0.000019228193,0.000020175703,0.0000197581,0.000020555915,0.000018793638,0.00002016328,0.00001954034,0.000020113286,0.000018700102,0.000019921208,0.000019360288,0.000020339972,0.000018410874,0.000019891973,0.000019543564,0.000020397896,0.000018972058,0.000020093867,0.000019605353,0.000020475289,0.000018479088,0.000019979847,0.00001936725,0.000020090092,0.000018548351,0.000019830379,0.000019250083,0.00002025459,0.0000182862,0.000019829678,0.000019442012,0.00002031756,0.000018843783,0.000020018297,0.000019488325,0.000020384576,0.000018468976,0.000020008754,0.000019387633,0.000020138295,0.000018570972,0.000019833915,0.000019267309,0.00002024669,0.000018289322,0.000019820358,0.000019443347,0.000020309366,0.00001885099,0.000020023337,0.000019496934,0.000020391537,0.00001847405,0.000020004727,0.000019391644,0.0000201353,0.000018578712,0.000019835901,0.000019275947,0.00002025289,0.000018287717,0.000019815689,0.00001944138,0.000020309462,0.000018854515,0.000020012552,0.000019489793,0.000020377947,0.00001844567,0.000019983678,0.000019375137,0.00002011185,0.000018549961,0.000019798708,0.000019232486,0.000020206126,0.000018236062,0.00001976281,0.000019403262,0.000020276273,0.000018818946,0.000019971521,0.000019459781,0.000020358464,0.00001842828,0.000019972265,0.000019363813,0.000020108204,0.000018547504,0.000019809966,0.000019255756,0.00002024063,0.000018276804,0.00001981212,0.000019447778,0.000020318606,0.000018858507,0.000020016081,0.00001950002,0.000020395368,0.000018468289,0.00002000469,0.000019394402,0.000020131345,0.000018577295,0.000019833953,0.000019280562,0.000020256386,0.000018289373,0.00001982066,0.000019452174,0.000020318006,0.000018857194,0.000020016863,0.000019501042,0.000020393889,0.000018470244,0.00001999851,0.000019394141,0.000020128657,0.000018578588,0.000019827316,0.000019281482,0.000020258201,0.000018287263,0.000019809266,0.000019447796,0.000020316185,0.00001886268,0.000020009917,0.000019493678,0.00002038065,0.000018453658,0.000019968247,0.000019341998,0.000020064646,0.000018540748,0.000019784251,0.000019268928,0.00002019087,0.000018180861,0.000019617903,0.000019328538,0.000020115263,0.000018616454,0.000019720883,0.00001926867,0.000020293935,0.00001836162,0.000020011368,0.000019385468,0.000020245456,0.00001863962,0.000019883799,0.000019487024,0.00002072077,0.00001924188,0.000020690835,0.000020176858,0.000020920876,0.000020147709,0.000020874899,0.000020613847,0.000021424037,0.00002033233,0.00002132473,0.000020705522,0.000021224725,0.0000202932,0.000021000213,0.000020783762,0.00002191634,0.000020315583,0.000020807185,0.000020579198,0.000020831367,0.00001987633,0.000020448088,0.000019998224,0.00002061302,0.000019017853,0.000020489255,0.000019776762,0.000020203814,0.000018896473,0.00002002796,0.000019512056,0.000020334774,0.000018805651,0.000020232195,0.000019942556,0.000019347792,0.000018083438,0.000018610028,0.000019022751,0.000019651663,0.000019458594,0.000020329771,0.0000200288,0.000020376023,0.000019976209,0.000019712515,0.000020040932,0.000022693985,0.000023539213,0.000026011028,0.000018132741,0.000011674306,0.000012728708],[0.000016930164,0.000011227675,0.000011223586,0.0000133762,0.000024931376,0.00003303644,0.00002630689,0.000021673326,0.000018960285,0.00001923564,0.000018347913,0.000018786543,0.00001834312,0.000019209554,0.000018106579,0.000018725514,0.000018479688,0.000020038295,0.000018555695,0.00001892347,0.00001891436,0.000020386986,0.000019203566,0.000019482304,0.000018622331,0.00001966353,0.000018001432,0.000018407047,0.00001812764,0.000019456293,0.00001834928,0.000018973597,0.00001839513,0.00001968017,0.00001846554,0.000019171634,0.000019255553,0.000020408463,0.000019090847,0.000019304058,0.000018590872,0.00001982066,0.000018744346,0.000018777318,0.000018622562,0.00001947729,0.00001864378,0.000018938761,0.000018405273,0.000019651026,0.000018484394,0.000018586263,0.00001824603,0.00001933735,0.000018257395,0.000018624729,0.000018166076,0.000019561969,0.000018302355,0.000018471865,0.000018116045,0.000019461284,0.000018414807,0.000018893626,0.000018353181,0.00001975938,0.000018386065,0.000018430883,0.000018080558,0.000019288986,0.000018162125,0.000018507872,0.00001807013,0.000019546977,0.000018198989,0.000018377896,0.000017980998,0.000019392144,0.000018280183,0.00001877041,0.00001822252,0.00001968659,0.0000183026,0.000018403483,0.000018069111,0.00001934554,0.000018198483,0.00001854225,0.000018077559,0.00001955643,0.000018211591,0.000018378105,0.00001799273,0.000019397232,0.000018299632,0.000018775529,0.000018229159,0.000019684207,0.000018315608,0.00001840889,0.0000180823,0.000019349398,0.000018213224,0.00001855373,0.000018088836,0.00001956085,0.000018223058,0.000018381015,0.000017996164,0.000019385025,0.000018292078,0.000018771465,0.00001822909,0.000019669476,0.000018303035,0.00001838545,0.000018065477,0.00001932349,0.00001818367,0.000018510043,0.000018045263,0.000019504167,0.000018169663,0.000018333816,0.000017954746,0.00001935259,0.000018257744,0.000018736142,0.000018196472,0.000019648965,0.000018282137,0.000018373532,0.000018048395,0.000019320854,0.000018180097,0.00001852076,0.000018060688,0.000019539968,0.000018204282,0.000018375704,0.000017989745,0.000019394585,0.000018299143,0.000018784018,0.000018238272,0.000019692956,0.000018321965,0.000018418355,0.000018083645,0.000019356188,0.000018214614,0.000018557694,0.000018091752,0.00001956988,0.000018227143,0.000018392815,0.000018001829,0.000019403133,0.000018303297,0.00001878006,0.000018237644,0.000019689913,0.000018321965,0.000018412296,0.000018086232,0.000019352627,0.000018221946,0.000018558614,0.000018098552,0.0000195632,0.000018238601,0.000018389956,0.00001800722,0.000019386096,0.000018302162,0.0000187732,0.000018239783,0.000019679946,0.000018318926,0.000018407134,0.000018075421,0.00001932607,0.000018226778,0.000018573204,0.00001813217,0.000019587113,0.000018209837,0.000018342105,0.000017888606,0.000019230083,0.000018095721,0.000018553199,0.00001802306,0.000019549567,0.00001815707,0.000018367453,0.000017946137,0.000019405094,0.000018306351,0.000018740377,0.000018196662,0.000019711651,0.000018646997,0.00001933986,0.000019020028,0.000020581514,0.000019558891,0.000020389767,0.000019751506,0.000020782278,0.00001956277,0.0000202674,0.000020041582,0.000021048794,0.000020020569,0.000020458445,0.000019739586,0.00002084997,0.00001975582,0.000019821096,0.000019397748,0.000020188638,0.000019323232,0.000019767918,0.00001918817,0.000020281186,0.00001883622,0.000019019593,0.000018643655,0.000019653182,0.000018589719,0.000019178071,0.000018566367,0.000019981238,0.000018306002,0.000018798712,0.000018326022,0.000019813782,0.000018207546,0.000018470051,0.000017904802,0.00001949751,0.000019277823,0.000020097334,0.00001990393,0.000020580454,0.000020347035,0.000021247122,0.00002065196,0.000021579506,0.000021934635,0.000024454068,0.00002547532,0.000019775613,0.000011551333,0.000013403898],[0.000015966558,0.000011779587,0.000010264238,0.000015033219,0.000024675937,0.000034821238,0.000027759777,0.000022232185,0.000019927005,0.000019659987,0.000019901443,0.00001912029,0.000019968817,0.000019607429,0.000020142905,0.00001914118,0.000020430603,0.000020215455,0.000020660333,0.000019023912,0.000020831249,0.000020708285,0.000021162796,0.000019951116,0.000020797463,0.000020277375,0.000020239935,0.000018587769,0.000019827126,0.000019648103,0.000020333127,0.000019353973,0.000020274709,0.000020219388,0.000020471658,0.000019577086,0.000020793,0.000020718793,0.00002076528,0.000020117335,0.000020572741,0.000020717433,0.000020823085,0.000019544552,0.000019863672,0.000020099558,0.000020338633,0.000019637444,0.000020434793,0.00002047771,0.0000206211,0.000019205085,0.00001981191,0.000019830248,0.000020200056,0.00001930656,0.000020121095,0.00002033526,0.000020447267,0.000018969273,0.000019633793,0.000019796538,0.000020304156,0.000019390942,0.000020344492,0.000020456417,0.000020533678,0.000019056904,0.000019707271,0.000019760399,0.000020132304,0.000019143516,0.000020029182,0.000020299878,0.000020409436,0.000018879542,0.000019568442,0.00001971983,0.000020212872,0.000019268486,0.00002025577,0.00002040385,0.000020513891,0.000019047257,0.000019753654,0.000019803354,0.000020191448,0.000019162531,0.000020040321,0.000020305415,0.000020414867,0.000018890041,0.000019572737,0.000019740075,0.00002022884,0.000019290015,0.000020259999,0.000020411324,0.00002051792,0.00001905456,0.000019755838,0.000019819205,0.00002020817,0.000019186102,0.00002005156,0.000020317424,0.000020425052,0.00001889923,0.00001956529,0.000019735106,0.000020216921,0.00001927902,0.000020245185,0.000020393638,0.000020491778,0.000019035162,0.000019723911,0.00001978376,0.00002015978,0.000019142568,0.000020001484,0.000020271633,0.00002037791,0.000018862158,0.000019532945,0.00001970265,0.0000201845,0.000019240593,0.000020214606,0.000020368487,0.000020473726,0.000019017072,0.000019716463,0.000019779403,0.00002017147,0.000019156081,0.000020030806,0.000020294381,0.000020411617,0.000018885106,0.000019564002,0.00001973283,0.000020228705,0.000019290328,0.000020269585,0.00002041656,0.000020525827,0.000019060975,0.000019761963,0.00001981484,0.000020206915,0.000019183613,0.000020053263,0.000020314481,0.00002042659,0.000018899627,0.000019572753,0.000019738098,0.000020223053,0.000019284002,0.000020255402,0.000020409863,0.000020515827,0.000019055833,0.000019754256,0.000019818903,0.000020207244,0.000019193092,0.00002005246,0.000020325662,0.000020428948,0.000018911418,0.0000195657,0.000019745536,0.000020224421,0.000019291414,0.00002025772,0.000020421,0.000020514948,0.000019061703,0.000019739831,0.000019794348,0.00002018417,0.00001921287,0.000020068166,0.00002035334,0.000020359495,0.000018838697,0.000019410516,0.00001961953,0.00002003841,0.000019123025,0.00002011722,0.000020344356,0.000020482947,0.0000189136,0.00001968306,0.000019757948,0.00002037307,0.000019444868,0.000020410447,0.000020450447,0.00002075045,0.000019589505,0.000020750947,0.000020823105,0.000021369455,0.00002080365,0.00002153274,0.000021207728,0.000021051766,0.00002017324,0.00002123181,0.000021124164,0.000021456117,0.000020793239,0.000021361364,0.000021298103,0.000021236245,0.000019978741,0.000020235766,0.000020609248,0.00002082372,0.000020346433,0.00002114476,0.000021268977,0.000020926564,0.000019450448,0.000020275038,0.000019944267,0.000020458076,0.000019656518,0.000020642981,0.00002042026,0.000020322212,0.000018825318,0.00001941507,0.000019703324,0.000019680134,0.000018767867,0.000019234558,0.000019555198,0.000019706162,0.00001984521,0.00002013989,0.000020520229,0.00002082954,0.000020974914,0.000020889795,0.000021039725,0.000023089835,0.00002361647,0.000026266178,0.000020760586,0.000012317389,0.000013225611],[0.000015380003,0.000013716799,0.0000110996325,0.000015676656,0.000025602867,0.000034047018,0.0000273871,0.00002259441,0.00001956725,0.00001977333,0.000019076906,0.00001953257,0.000018647568,0.000019371073,0.000018684452,0.000019516987,0.000018903791,0.000020126796,0.000019034727,0.00001928584,0.000019120052,0.00002045269,0.000019756893,0.000020421448,0.00001932559,0.000020311729,0.000018725728,0.000018630983,0.000018176994,0.000019583975,0.000019215637,0.000019905048,0.000019000214,0.000020197553,0.00001930866,0.000019863728,0.000019574865,0.000020817486,0.000019989015,0.000020588051,0.000019576824,0.00002077867,0.00001967364,0.00001941333,0.000018882674,0.000019592942,0.000019439452,0.000020008487,0.000019422183,0.000020533915,0.000019576506,0.000019357316,0.000018852104,0.000019553576,0.00001925425,0.000019865889,0.000019331157,0.000020526748,0.000019358016,0.000019072959,0.000018630255,0.000019639936,0.000019369338,0.000019990654,0.000019431409,0.000020679807,0.000019541701,0.000019337573,0.000018874736,0.000019654719,0.000019217121,0.000019760399,0.000019252597,0.000020528723,0.000019282512,0.000019011179,0.000018559587,0.000019611281,0.000019253002,0.000019877543,0.000019310539,0.000020624759,0.00001947389,0.000019333589,0.00001885189,0.00001969491,0.000019210085,0.000019768182,0.000019212212,0.000020516394,0.000019256417,0.000018993711,0.000018537636,0.000019605597,0.00001926189,0.000019885203,0.000019311587,0.000020619174,0.00001947389,0.00001932124,0.000018856672,0.000019700376,0.000019239475,0.000019789384,0.00001923841,0.0000205421,0.000019291929,0.000019015768,0.000018558278,0.000019611449,0.000019269386,0.000019884443,0.000019318844,0.000020614652,0.000019477771,0.000019312749,0.000018862122,0.000019677693,0.000019215728,0.000019748079,0.000019210122,0.000020475543,0.000019244007,0.000018953504,0.000018515391,0.000019545261,0.000019219651,0.000019835014,0.000019288269,0.000020574802,0.000019446368,0.000019283689,0.00001883541,0.000019668969,0.00001921967,0.000019763998,0.000019227442,0.000020517607,0.000019279238,0.000019004021,0.000018550616,0.000019608495,0.000019271574,0.000019894593,0.000019329165,0.000020635127,0.000019491912,0.000019340414,0.000018869121,0.000019709922,0.000019237292,0.000019794821,0.000019236228,0.000020539475,0.000019279056,0.000019015097,0.000018547504,0.00001960741,0.000019260751,0.000019880139,0.000019312103,0.00002062108,0.000019483457,0.000019330953,0.000018869912,0.000019706275,0.000019252782,0.000019802976,0.000019256784,0.000020552034,0.000019316047,0.000019029465,0.000018582115,0.000019622656,0.000019301351,0.00001990689,0.000019354251,0.000020650088,0.000019515608,0.000019349858,0.000018880028,0.000019693405,0.00001927729,0.000019846138,0.00001931516,0.000020609876,0.0000192838,0.0000189892,0.000018516257,0.000019553985,0.000019161618,0.000019753841,0.000019206698,0.000020585087,0.000019327894,0.000019131947,0.000018534047,0.000019648947,0.000019329203,0.000020046036,0.000019195875,0.000020556014,0.000019406723,0.000019822985,0.00001932406,0.000020942254,0.000020544725,0.000021424692,0.000020190793,0.00002129388,0.00002001904,0.000020517058,0.000019831117,0.000021046002,0.000020644338,0.000021487222,0.000020379037,0.000021494188,0.000019849527,0.000019732772,0.000019037723,0.000020292851,0.00001996996,0.00002088125,0.0000200995,0.000021435912,0.000019741223,0.000019692148,0.00001892116,0.000019913175,0.00001938593,0.000020216054,0.000019326824,0.000020687561,0.000018761157,0.000018869263,0.00001814004,0.000019411405,0.000018666302,0.00001915082,0.00001820265,0.000019298186,0.0000187496,0.000019459781,0.000019086187,0.00001999138,0.0000204277,0.00002136,0.000020806034,0.000021792062,0.000022597687,0.0000251139,0.000025369398,0.000019494813,0.000012158527,0.000013372425],[0.000015907877,0.0000151845825,0.000012486945,0.000017589604,0.000029920839,0.00003688526,0.00003172788,0.000023943228,0.000021160435,0.000020527666,0.000020765834,0.000019427036,0.000020092602,0.000019487452,0.000020383895,0.000018987645,0.000020282385,0.000020075056,0.000021149684,0.000019169258,0.000020625075,0.000020191006,0.0000216975,0.00002010694,0.00002120963,0.000020201907,0.000020824473,0.000018850955,0.000019893758,0.000019650972,0.0000210852,0.000019950601,0.000020728321,0.000020123014,0.000020916448,0.000019872425,0.000021173395,0.00002092371,0.000022081696,0.000020811649,0.00002137035,0.000020791911,0.000021582266,0.000019732866,0.000020360836,0.000020128713,0.000021269383,0.00002034259,0.000021031057,0.000020507201,0.000021267659,0.000019448724,0.00002010228,0.000019828489,0.000021148513,0.00001996817,0.000020871475,0.000020436704,0.000021135973,0.000019152994,0.000019979485,0.000019811061,0.000021231426,0.00002014865,0.000021076554,0.000020474761,0.000021277316,0.000019397341,0.000020152282,0.0000198293,0.000021164773,0.000019831155,0.000020827176,0.000020368738,0.000021106845,0.000019089974,0.000019953077,0.000019788156,0.000021206213,0.000020025285,0.000020995827,0.00002042365,0.000021277012,0.000019363519,0.000020187887,0.000019850455,0.000021205686,0.000019822437,0.000020816573,0.00002035668,0.000021094591,0.000019056795,0.000019922843,0.000019767995,0.000021198488,0.000020030346,0.000020991143,0.000020423397,0.000021272264,0.000019357796,0.00002018165,0.000019855528,0.000021224743,0.000019859752,0.000020844682,0.000020390682,0.00002112924,0.00001909458,0.000019949784,0.000019793537,0.000021210804,0.000020043743,0.000020991263,0.000020419715,0.00002125454,0.000019354547,0.000020172163,0.000019848809,0.000021186079,0.000019803732,0.000020773856,0.00002030927,0.000021030635,0.000019018305,0.000019879533,0.000019736404,0.000021160375,0.000019993495,0.000020954081,0.000020389476,0.000021241005,0.000019342055,0.00002015428,0.000019833858,0.000021201826,0.00001983647,0.000020821892,0.000020369438,0.000021111295,0.000019087553,0.000019946017,0.00001978346,0.000021206839,0.000020043493,0.000021006563,0.000020433448,0.000021283424,0.000019377723,0.000020198631,0.000019867082,0.000021227863,0.000019859903,0.00002084675,0.000020380805,0.000021111215,0.000019076488,0.000019936339,0.000019774914,0.000021196689,0.000020035064,0.00002098892,0.00002042024,0.000021269443,0.00001936821,0.000020187694,0.00001986138,0.000021228127,0.000019871837,0.000020849195,0.000020396496,0.000021131376,0.000019109626,0.000019957148,0.000019807301,0.000021231386,0.000020080475,0.000021022373,0.000020451911,0.000021285454,0.00001939318,0.000020187732,0.000019841407,0.000021225776,0.000019918283,0.000020909545,0.000020441887,0.000021091693,0.000019083913,0.00001986229,0.000019761077,0.000021089843,0.000019928468,0.000020840487,0.000020319789,0.00002114077,0.000019165493,0.000020004767,0.000019654344,0.000021352485,0.00002002372,0.000020967995,0.000020392801,0.000021371614,0.00001971842,0.000020813337,0.000020782158,0.00002215766,0.000021243333,0.000021723092,0.000021095737,0.000021568356,0.00002042741,0.000021079688,0.000020805259,0.000022146061,0.000021185959,0.000021840808,0.00002110749,0.000021698681,0.000019871686,0.000020350546,0.000020342786,0.000021463056,0.000020776906,0.000021484435,0.000020860252,0.000021247892,0.000019346813,0.000020248159,0.000019557903,0.000020991441,0.000019645406,0.000020837746,0.000020094076,0.000020628575,0.000018679355,0.00001958407,0.000019561969,0.000020278458,0.000019113419,0.000019331008,0.00001892578,0.00001950984,0.00001881455,0.000019478162,0.000019627501,0.000020649477,0.000020476129,0.00002058642,0.00002050544,0.000023334973,0.0000241329,0.000026481095,0.000018862534,0.000012112477,0.000013599598],[0.000015971964,0.000016319178,0.000015482028,0.00002210129,0.000032102875,0.000031497977,0.000026756035,0.000022076329,0.000020134476,0.000019698084,0.000019103594,0.000019216463,0.000018833487,0.000019295629,0.000018726192,0.000019195088,0.000019124156,0.000020230864,0.000019359604,0.00001928801,0.00001922264,0.000020116528,0.000019675366,0.000020038007,0.000019483476,0.000020055691,0.00001900875,0.00001867111,0.000018322264,0.000019241494,0.000018981542,0.000019675705,0.000019257664,0.000020000989,0.000019236575,0.000019652769,0.000019604455,0.00002060011,0.000020063499,0.000020421585,0.000019845078,0.000020592704,0.000019787458,0.000019401226,0.000019272602,0.000019695097,0.000019699924,0.000019865907,0.000019600737,0.000020195106,0.000019650932,0.00001927856,0.000019217048,0.000019527375,0.000019501693,0.00001970092,0.000019524452,0.00002022043,0.00001953952,0.000019005724,0.000018953306,0.000019444979,0.000019470232,0.000019793706,0.000019511013,0.0000202691,0.00001959713,0.000019284204,0.000019163317,0.000019533614,0.00001938251,0.0000195839,0.000019412071,0.000020171488,0.000019444551,0.000018948318,0.000018853614,0.000019390332,0.000019349416,0.000019654512,0.000019392754,0.00002020601,0.00001953844,0.00001925537,0.000019123938,0.000019562454,0.000019368412,0.000019568499,0.000019372957,0.000020157799,0.000019406112,0.00001891207,0.000018809991,0.00001937898,0.000019352092,0.00001965708,0.000019393734,0.000020208594,0.000019542074,0.000019249605,0.000019130377,0.000019568612,0.000019399524,0.00001959853,0.000019407165,0.00002018675,0.000019448595,0.000018947414,0.000018842524,0.000019399782,0.000019370962,0.000019668669,0.000019405297,0.000020205549,0.00001953695,0.000019243731,0.000019139283,0.00001954912,0.000019358682,0.000019524936,0.000019343954,0.000020102854,0.000019394456,0.000018902565,0.000018838231,0.000019366085,0.000019343863,0.000019618072,0.000019371424,0.000020162259,0.000019533483,0.000019238942,0.000019139958,0.000019549698,0.000019375913,0.000019569658,0.000019403762,0.000020175703,0.00001944355,0.000018945391,0.00001884716,0.000019394603,0.000019367802,0.000019672101,0.000019411702,0.00002021769,0.000019552344,0.000019269846,0.000019146823,0.000019583285,0.000019405148,0.000019608533,0.000019408999,0.000020185653,0.000019430816,0.000018936324,0.000018828281,0.00001939427,0.00001936073,0.000019671257,0.000019402225,0.000020214819,0.000019544888,0.000019262938,0.000019145944,0.000019582538,0.000019420719,0.000019623816,0.000019431594,0.000020198055,0.000019468895,0.00001896627,0.000018871027,0.000019410572,0.000019408684,0.000019700545,0.000019439396,0.00002022799,0.000019574865,0.000019287403,0.000019169258,0.000019569601,0.000019470064,0.000019687228,0.000019511068,0.000020271402,0.00001949117,0.0000189787,0.000018814782,0.00001934379,0.00001927512,0.000019552812,0.00001926077,0.000020092582,0.00001941533,0.00001907485,0.00001882548,0.00001944355,0.000019374713,0.000019730645,0.000019364497,0.000020220874,0.000019443643,0.000019410629,0.000019311477,0.00002046305,0.000020089976,0.000021089201,0.00002048062,0.000021228165,0.000020153973,0.000020352136,0.000020086642,0.000020710024,0.000020422149,0.00002092762,0.000020549664,0.000021029213,0.000019917525,0.000019535626,0.000019058141,0.000019746778,0.000019588684,0.00002016772,0.000019681447,0.000020449044,0.00001942939,0.000019287716,0.00001875087,0.00001942083,0.000019056923,0.000019435336,0.000019128755,0.00002005858,0.000019184456,0.000019067229,0.000018702029,0.000019479054,0.000019042553,0.00001901167,0.000018573752,0.00001898281,0.000019086516,0.000019345394,0.00001948552,0.000020301697,0.000020471443,0.000021139904,0.000020668136,0.000021689144,0.000022509115,0.000026148813,0.000025796484,0.000018658027,0.000011173977,0.00001360585],[0.000016389096,0.000016786484,0.000014991843,0.000025373438,0.000028748236,0.000029168103,0.000025567075,0.00002228453,0.000020431751,0.000020296124,0.000020115684,0.000019907953,0.000020345986,0.00001995749,0.00002027289,0.000019870511,0.00002073708,0.00002065192,0.000020948626,0.00001992993,0.000020830832,0.000020799605,0.000021288984,0.00002037783,0.00002127693,0.000020873347,0.00002130753,0.00001980428,0.000020220681,0.00002025125,0.000020723537,0.000020020321,0.000020885751,0.00002068602,0.000021059835,0.000020492773,0.000021173413,0.00002126776,0.00002130357,0.000020940997,0.00002132485,0.000021241996,0.000021493268,0.000020504816,0.000020673617,0.000020819987,0.00002079558,0.000020463265,0.0000208665,0.000020815936,0.000021111697,0.000020389243,0.00002074606,0.00002068393,0.000020849731,0.000020347967,0.000020811036,0.00002078079,0.000021108677,0.000020140964,0.000020528723,0.000020483376,0.00002079316,0.000020338071,0.000020873505,0.000020724643,0.000021106645,0.000020358155,0.000020782534,0.000020567857,0.000020783762,0.000020202928,0.0000207498,0.000020692492,0.00002107788,0.000020087906,0.000020478295,0.000020412608,0.000020740898,0.000020218906,0.000020789372,0.000020670994,0.000021094791,0.00002031977,0.000020790781,0.000020567368,0.00002079673,0.000020168758,0.00002072247,0.000020680498,0.000021075208,0.000020043111,0.000020431246,0.000020395952,0.0000207353,0.000020209673,0.00002077855,0.000020668253,0.000021100826,0.000020322832,0.000020800835,0.000020580552,0.000020816095,0.000020199268,0.000020751066,0.000020701216,0.000021099842,0.000020069085,0.000020451871,0.000020415471,0.00002074505,0.000020218444,0.000020779265,0.000020657375,0.00002106962,0.00002029055,0.000020763793,0.0000205374,0.000020745842,0.000020126776,0.000020687166,0.000020664864,0.000021077758,0.000020083176,0.000020461392,0.000020412492,0.000020706844,0.000020164644,0.000020718793,0.00002060968,0.000021048072,0.000020299105,0.000020771024,0.000020565563,0.000020795202,0.00002017274,0.00002072415,0.000020697544,0.000021094229,0.000020076435,0.000020457488,0.000020421156,0.000020760428,0.000020239066,0.000020803673,0.00002067898,0.000021103142,0.00002033334,0.000020804922,0.000020581141,0.000020816631,0.000020203215,0.00002075077,0.000020696438,0.00002108906,0.000020066884,0.00002045671,0.000020415762,0.000020751224,0.000020232466,0.000020792148,0.00002066847,0.000021094029,0.000020329404,0.000020810698,0.000020590702,0.000020827492,0.000020225849,0.000020776191,0.000020722175,0.000021116852,0.000020098849,0.000020479663,0.000020442823,0.000020776431,0.0000202657,0.000020817783,0.000020693735,0.000021109583,0.000020363766,0.000020823105,0.000020597576,0.000020859197,0.000020328609,0.000020878564,0.000020838143,0.00002116754,0.000020112137,0.00002035732,0.00002033877,0.000020622636,0.000020116318,0.000020578002,0.00002056423,0.000021009486,0.000020240435,0.000020641939,0.000020437696,0.000020926063,0.000020190235,0.000020969434,0.000020774647,0.000021400596,0.000020366699,0.00002125892,0.000021034868,0.00002143718,0.000021029873,0.000021837268,0.000021411883,0.000021585909,0.000021152264,0.000021788735,0.000021693219,0.000021646163,0.000021489905,0.000021960002,0.00002181431,0.00002184566,0.000020529606,0.000020559191,0.000020610976,0.000020790801,0.000020419131,0.000020851165,0.000020906178,0.000020930096,0.000020082582,0.000020496349,0.000020150514,0.000020499692,0.000019798086,0.000020698531,0.000020654106,0.00002122341,0.000020103756,0.000020123955,0.00002019819,0.00001994984,0.000019688148,0.000019476027,0.000020011272,0.000020233354,0.0000205508,0.000020701216,0.000021363177,0.000021222213,0.000021515643,0.00002111643,0.000021203989,0.000023308818,0.000024515175,0.000027098722,0.000019429277,0.000011671312,0.000013315478],[0.000015870766,0.000015584848,0.000015602367,0.000023826471,0.00002914541,0.000028226754,0.000023722043,0.000021728418,0.00001968783,0.000020190351,0.000019873543,0.000020538222,0.00001943126,0.000019714358,0.000019373492,0.000020139218,0.00001957294,0.00002065909,0.000019779798,0.000020371052,0.000019701352,0.000020670028,0.00002007383,0.00002043154,0.000019786572,0.000020877886,0.000019959889,0.000020110678,0.000019145435,0.000019944306,0.00001948288,0.000019960593,0.000019465218,0.000020728083,0.000020115971,0.00002092329,0.000020108379,0.000020858142,0.000020234222,0.00002063558,0.000019985982,0.000021057027,0.00002067823,0.000020874899,0.000020122054,0.000020473337,0.000020122035,0.000020332505,0.000019779818,0.000020645382,0.000020401749,0.000020701513,0.00002017047,0.000020338168,0.000020187943,0.000020236479,0.000019928963,0.000020649517,0.000020548467,0.000020395115,0.00001996379,0.000020185074,0.000020089668,0.00002031636,0.000019777253,0.000020645244,0.000020453432,0.000020790801,0.000020198035,0.000020354777,0.000020131902,0.000020173184,0.000019848316,0.000020628318,0.000020530486,0.000020411284,0.00001994887,0.000020164527,0.000020026146,0.000020214917,0.000019685427,0.000020566033,0.000020370313,0.000020719723,0.000020133592,0.000020311574,0.0000200648,0.00002010759,0.000019783309,0.000020587599,0.000020492558,0.000020373169,0.000019882473,0.00002011582,0.000019984021,0.000020177127,0.000019649846,0.00002055282,0.000020367419,0.000020723597,0.000020148247,0.000020335743,0.000020096395,0.000020126257,0.000019801824,0.000020607498,0.000020514359,0.000020393307,0.000019901936,0.000020128964,0.000019994563,0.000020183536,0.000019650972,0.000020539142,0.00002034003,0.000020682726,0.000020100822,0.000020278807,0.000020043168,0.000020085341,0.000019803845,0.00002062002,0.000020548214,0.000020407411,0.000019923926,0.00002012595,0.000020001029,0.000020153917,0.000019644975,0.000020513928,0.00002034841,0.000020701691,0.000020143481,0.000020303092,0.000020080992,0.000020109106,0.00001979378,0.000020599697,0.00002053182,0.0000204078,0.00001992822,0.000020149322,0.000020031302,0.000020227335,0.000019699473,0.00002057863,0.00002038998,0.000020737869,0.000020153531,0.000020324771,0.000020086336,0.00002012476,0.000019804545,0.00002059946,0.00002050198,0.000020384576,0.00001989945,0.000020130865,0.000019998453,0.000020198806,0.000019664487,0.000020558857,0.000020363748,0.000020730336,0.000020145902,0.00002033427,0.000020101226,0.00002015088,0.000019833557,0.000020635758,0.00002055225,0.00002043528,0.00001994982,0.000020170528,0.000020057814,0.000020242154,0.000019718853,0.000020603666,0.00002042846,0.000020791693,0.000020205684,0.000020366524,0.000020214105,0.00002026512,0.00001999727,0.000020771993,0.000020682333,0.000020484275,0.000019962286,0.000020147227,0.000020015757,0.000020148362,0.000019594363,0.000020487147,0.000020317948,0.000020605945,0.000020002859,0.000020306577,0.000020034684,0.00002012906,0.000019654193,0.00002048316,0.000020177107,0.000020471463,0.000019787421,0.000020457079,0.000020054258,0.000020700525,0.000019985146,0.0000210243,0.000020701493,0.000021395228,0.000020519095,0.000021059597,0.000020567348,0.000020852218,0.000020613157,0.000021473046,0.000021120135,0.00002093892,0.000019896945,0.000020304098,0.000020030022,0.000020372567,0.000019645648,0.000020576568,0.00001999893,0.000020499341,0.000019609206,0.000020096473,0.00001958041,0.000019856343,0.000019498382,0.000020633475,0.000020541434,0.000021034968,0.000020163181,0.000020571506,0.000020060894,0.000019915682,0.000019635478,0.000020034588,0.00002124463,0.000020752806,0.000020566955,0.000020767953,0.000021492344,0.000021853497,0.00002101602,0.000020796373,0.000021552833,0.000023107368,0.000024648703,0.000018812863,0.000011403504,0.00001347341],[0.000016096603,0.000014516057,0.000015022384,0.000022853701,0.000030642525,0.000030276413,0.000027102933,0.000022820204,0.000020691525,0.000020873307,0.000021126438,0.000020372197,0.000020578984,0.00001989262,0.000020541593,0.000019713963,0.000020748017,0.00002041148,0.000021577593,0.00001991365,0.000021023718,0.000020638789,0.00002144411,0.000020457412,0.000021136677,0.000020584635,0.000021585392,0.000019997422,0.000020628575,0.000020003947,0.00002069936,0.000020051579,0.000020775837,0.00002038131,0.000021525491,0.000020664214,0.000021429842,0.000021008405,0.000021449776,0.000020849811,0.000021011132,0.000020984817,0.000022211841,0.000021078766,0.000021588297,0.000020874142,0.000021499416,0.000020466467,0.000020954782,0.00002060284,0.00002177941,0.000020668767,0.000021169297,0.00002060353,0.000021144822,0.000020411304,0.000020893081,0.000020662854,0.000021707952,0.000020646092,0.000021112884,0.00002055676,0.000021292497,0.000020419733,0.000020971092,0.000020606023,0.00002183804,0.000020701986,0.000021248785,0.000020624288,0.000021197942,0.000020346142,0.000020881887,0.000020627042,0.000021771082,0.000020649202,0.000021123094,0.000020535126,0.000021270702,0.000020323705,0.000020894098,0.000020518273,0.000021789549,0.000020622478,0.00002120698,0.000020589523,0.000021189313,0.000020294323,0.00002083238,0.000020595102,0.000021787533,0.000020618507,0.000021080616,0.000020481713,0.000021247588,0.000020294961,0.000020871097,0.000020507532,0.000021799462,0.000020635127,0.00002122691,0.000020617405,0.000021214524,0.00002031694,0.000020847843,0.00002061475,0.000021809463,0.00002065137,0.000021111195,0.000020502624,0.000021252736,0.000020302821,0.000020876332,0.000020498443,0.000021778225,0.000020592586,0.000021177291,0.00002056515,0.00002117689,0.000020326845,0.000020870322,0.000020623895,0.000021784394,0.000020646467,0.000021086164,0.000020488864,0.000021229624,0.0000203029,0.000020873187,0.000020512562,0.000021760912,0.000020608382,0.000021189271,0.000020564974,0.000021149179,0.000020289699,0.000020815896,0.000020593607,0.000021777892,0.000020652531,0.000021099662,0.000020512423,0.000021259772,0.000020322503,0.000020899617,0.000020534246,0.000021811209,0.000020644102,0.00002122353,0.00002059844,0.00002118513,0.000020300924,0.000020837051,0.00002059948,0.000021770458,0.000020620353,0.000021085882,0.000020492049,0.000021252798,0.00002030586,0.000020885114,0.000020518957,0.00002180545,0.000020622556,0.00002120945,0.000020596082,0.000021199094,0.000020318801,0.00002085862,0.000020629539,0.000021818409,0.000020684167,0.000021136979,0.000020544743,0.000021302796,0.000020368816,0.00002094567,0.000020580532,0.000021854477,0.000020699874,0.000021269241,0.000020648002,0.00002124994,0.00002046024,0.000020974914,0.000020761378,0.000021872303,0.000020740796,0.000021078622,0.000020500063,0.000021157006,0.000020222878,0.000020742122,0.000020314132,0.000021596945,0.000020446645,0.000021089865,0.000020472458,0.000021266076,0.00002019399,0.000020973634,0.000020535204,0.000021985292,0.000020539084,0.000021234462,0.000020576568,0.000021360243,0.0000205073,0.00002105361,0.000020806889,0.00002193572,0.000021027305,0.000021543954,0.000020978434,0.000021564407,0.00002092421,0.000021491196,0.000021531261,0.000022757376,0.000021359776,0.000021281636,0.000020588188,0.00002121315,0.000020400914,0.000020746573,0.000020261583,0.000021204474,0.000019999063,0.0000206235,0.000019927462,0.000020718893,0.000019793952,0.000020615635,0.000020471676,0.00002196126,0.000020768766,0.000020999973,0.00002053732,0.00002062419,0.000019955702,0.000019775141,0.00001999624,0.000020604275,0.000020833117,0.000020808377,0.000020551643,0.000020904105,0.000020927979,0.000020015643,0.000019711613,0.000021216509,0.000021812792,0.000025583195,0.000019930483,0.000012182854,0.000012800237],[0.000016685774,0.000014005807,0.000015651083,0.000023044959,0.000032486674,0.000030427303,0.000025251487,0.000022054655,0.000019760699,0.000020075287,0.000019486095,0.00001994946,0.000019533969,0.000019792158,0.000019281777,0.00001976185,0.000019397063,0.000020573016,0.000019511534,0.00001993957,0.000019640665,0.000020820782,0.000020242365,0.000020896012,0.000019859563,0.000020711424,0.000019476603,0.000019743538,0.000019112926,0.000019923147,0.000019182826,0.000020010339,0.000019310666,0.00002054204,0.00001981259,0.000020735635,0.000020390798,0.000021146858,0.000020186,0.000020572194,0.000019810419,0.000020786341,0.000020322115,0.000020475387,0.00002019139,0.00002036806,0.000019873127,0.000020065565,0.00001972233,0.000020628418,0.000020221087,0.000020441263,0.000020199479,0.000020511621,0.000020078101,0.000020221296,0.000020004365,0.000020657062,0.000020374548,0.000020221742,0.000020113248,0.000020258742,0.000019869205,0.000020069965,0.000019782326,0.000020679336,0.00002028407,0.000020553582,0.000020255055,0.000020653515,0.000020152838,0.000020315274,0.00002003411,0.00002071105,0.000020377889,0.00002025573,0.00002008379,0.000020227739,0.000019785837,0.000020002459,0.00001969891,0.000020619605,0.00002023704,0.00002049414,0.00002020782,0.000020615242,0.00002012098,0.000020245707,0.000019976342,0.000020636564,0.000020343115,0.0000201922,0.000020033154,0.000020177262,0.000019770068,0.000019976722,0.000019672683,0.000020603862,0.000020231038,0.000020488395,0.000020213547,0.000020630523,0.000020142232,0.000020268946,0.000019990863,0.000020660056,0.000020373574,0.000020242327,0.000020081203,0.000020218404,0.000019796764,0.0000200028,0.000019690928,0.000020605532,0.000020222607,0.000020467909,0.00002018138,0.00002061416,0.000020162508,0.000020299743,0.000020022802,0.00002065781,0.000020370528,0.00002023926,0.000020094612,0.000020206897,0.00001980188,0.00002000036,0.000019706651,0.000020610742,0.000020234993,0.000020462972,0.000020182284,0.000020558524,0.000020078847,0.000020219659,0.00001998663,0.000020646998,0.000020360932,0.0000202239,0.000020082507,0.00002020127,0.000019790628,0.000019992198,0.000019698478,0.000020628477,0.000020255131,0.000020508021,0.000020225425,0.000020629697,0.000020136067,0.000020262936,0.00002000181,0.00002066313,0.000020359319,0.000020207726,0.00002005816,0.00002019788,0.000019785704,0.000019994142,0.000019690326,0.000020625506,0.000020237387,0.000020493359,0.000020202157,0.000020631724,0.000020142195,0.00002028755,0.00002001885,0.000020694544,0.00002040776,0.000020276351,0.000020112864,0.000020250824,0.000019841635,0.000020052958,0.000019746458,0.000020677462,0.00002030013,0.00002056931,0.000020283758,0.000020685746,0.000020260037,0.000020412199,0.000020151552,0.000020803613,0.000020476205,0.000020285712,0.000020076704,0.000020142292,0.000019701109,0.000019876654,0.000019499146,0.000020387513,0.000020003183,0.000020259766,0.000019962916,0.00002049541,0.00001999416,0.000020160547,0.00001979618,0.000020592057,0.000020148054,0.000020210078,0.000019745969,0.000020203699,0.000019550145,0.000019870738,0.000019581212,0.000020389514,0.000020019002,0.000020534833,0.000020419579,0.000020990561,0.00002051661,0.000020687461,0.00002036897,0.000021002696,0.000020645659,0.000020362077,0.00002000839,0.000019909661,0.000019621513,0.000019812913,0.000019315603,0.000020163567,0.00001947792,0.000019783874,0.000019251092,0.000020115436,0.000019683212,0.000020200441,0.000019628196,0.000020671567,0.000020201367,0.000020703448,0.00002005397,0.000020554073,0.000020155492,0.00002011818,0.000019606905,0.000019987508,0.000021053855,0.000020749956,0.000020740817,0.00002042515,0.000021037917,0.000021757176,0.000021234646,0.000021250122,0.000021006,0.000022441152,0.000025175,0.00002060903,0.000011804407,0.000013092127],[0.000016419946,0.000014196087,0.000013471381,0.000024184026,0.00003218334,0.000031289695,0.00002711074,0.000023506125,0.00002117711,0.000020845835,0.000020220255,0.000020222376,0.000020814092,0.00002044142,0.000020764664,0.000020440193,0.000021093021,0.000020813794,0.000021043455,0.000019938048,0.00002123181,0.000021199803,0.000021812666,0.000021103304,0.000021548105,0.000020949106,0.000020896949,0.00001981346,0.00002068681,0.000020554875,0.000020936843,0.000020529958,0.000020912677,0.000020933969,0.00002127202,0.00002080143,0.000021705657,0.00002145974,0.000021337768,0.00002111214,0.000021091835,0.000021451004,0.000021637414,0.000021035108,0.000021164473,0.000021046586,0.000020913296,0.000020661948,0.000021140992,0.000021378524,0.00002159503,0.00002091597,0.000021421667,0.000021176907,0.000021123318,0.000020877149,0.000021258493,0.000021405638,0.000021464284,0.000020766724,0.000021013775,0.000020932212,0.000020980075,0.000020573116,0.000021073298,0.000021221162,0.000021500236,0.000020813713,0.000021431497,0.000021155996,0.000021184504,0.000020820802,0.000021267213,0.000021257783,0.000021347943,0.000020623462,0.000020944111,0.000020776768,0.000020879477,0.00002046779,0.000021022153,0.000021166734,0.000021456037,0.000020748395,0.000021355945,0.000021114538,0.00002117176,0.00002076316,0.000021187434,0.000021218593,0.000021321333,0.000020588855,0.000020884538,0.000020775777,0.000020915031,0.000020459694,0.000020984398,0.000021146334,0.000021445398,0.00002073609,0.000021340982,0.000021132648,0.000021194182,0.000020792724,0.000021204574,0.00002125152,0.000021351934,0.000020636684,0.00002093245,0.000020824911,0.000020941994,0.000020496565,0.000021011692,0.000021166692,0.000021451064,0.000020733618,0.000021344891,0.000021152204,0.000021252616,0.000020858244,0.000021238757,0.000021276159,0.000021365848,0.000020662104,0.000020963196,0.000020841939,0.000020951204,0.000020516885,0.00002102899,0.00002117925,0.000021468215,0.00002075069,0.000021333128,0.000021061504,0.000021116972,0.000020752528,0.000021199074,0.00002125436,0.000021332153,0.00002062649,0.000020919439,0.000020797801,0.000020916188,0.00002048566,0.000021012072,0.000021175838,0.000021475422,0.000020756845,0.000021376058,0.000021127285,0.000021175818,0.00002077859,0.00002122098,0.000021254926,0.000021341002,0.00002061141,0.00002091128,0.000020797324,0.000020927162,0.000020475836,0.000021000973,0.000021162534,0.000021462543,0.000020739353,0.000021355743,0.000021125936,0.000021198104,0.000020806649,0.000021257298,0.00002128793,0.000021391983,0.000020687403,0.000020985539,0.000020867732,0.000020979554,0.000020536147,0.000021044698,0.00002122343,0.000021519028,0.000020809168,0.000021434194,0.000021189151,0.000021252716,0.000020932212,0.000021342958,0.000021367578,0.000021358188,0.00002063438,0.000020791118,0.000020642352,0.000020697644,0.000020285674,0.000020742142,0.000020808038,0.000021137343,0.000020442882,0.000021097307,0.000020976195,0.000021209245,0.000020668924,0.00002124153,0.000021051905,0.000021429043,0.000020637588,0.000021037496,0.000020848838,0.000020849911,0.000020553387,0.000020957938,0.000021042131,0.000020979314,0.000020601818,0.000021352975,0.000021287606,0.000021252068,0.000021186606,0.000021375672,0.000021540605,0.000021159487,0.000020612786,0.000020493047,0.00002056772,0.000020633672,0.000020201445,0.000020496465,0.000020694879,0.000020656667,0.000019818828,0.000020560248,0.000020602683,0.000021148491,0.000020525358,0.000021143673,0.000020801212,0.000021142825,0.000020243739,0.000020397256,0.000020419773,0.000020342493,0.000020017036,0.00001937924,0.00001980513,0.000019487787,0.000020589425,0.000019983563,0.000020716046,0.000020807145,0.00002155865,0.000021040125,0.000021062106,0.000021290996,0.000022148892,0.000025293253,0.000021350836,0.000012098116,0.00001329633],[0.000016016747,0.000014294321,0.00001349898,0.000020240495,0.00003103389,0.00003217125,0.000027028467,0.000024743851,0.000021529579,0.000021496997,0.0000199522,0.000020410409,0.000019401707,0.00001999706,0.000019787005,0.000020863117,0.000019866704,0.00002079094,0.000019466705,0.000019950203,0.000019406203,0.000020902968,0.000020216805,0.000021484782,0.000019822835,0.000021002237,0.000019360343,0.000020089057,0.000019391793,0.00002103206,0.00002014377,0.000021116288,0.000019433966,0.000020740363,0.00001983403,0.000020863057,0.000020243235,0.000021625963,0.000020702639,0.00002161883,0.000020136702,0.000021578006,0.000020505851,0.00002112376,0.000019990044,0.00002091894,0.000020214819,0.000021082966,0.000019969808,0.000021336627,0.000020218944,0.00002085021,0.000019898956,0.000020871037,0.000020214917,0.000021210339,0.000020228954,0.000021585145,0.0000204093,0.000020882784,0.000019903966,0.000020861067,0.000020155338,0.000020964875,0.000019852632,0.000021206617,0.0000200494,0.000020760664,0.000019863994,0.000020917685,0.000020064148,0.000021115444,0.000020037302,0.00002142093,0.000020103103,0.000020650425,0.000019743107,0.000020727412,0.000019969673,0.000020847843,0.000019774216,0.000021128577,0.000019949422,0.000020641033,0.000019752673,0.00002081945,0.00002001618,0.000021038099,0.000019996945,0.000021390617,0.000020098198,0.000020622145,0.000019690402,0.00002069784,0.000019986097,0.000020834128,0.000019728726,0.00002107963,0.000019912035,0.000020603273,0.000019733261,0.000020834546,0.000020044812,0.000021078242,0.000020011674,0.000021412967,0.000020110678,0.00002064926,0.00001972158,0.000020743566,0.000020024903,0.000020879557,0.0000197725,0.000021122049,0.000019954445,0.000020642352,0.000019782969,0.000020909289,0.000020137893,0.00002116314,0.000020078254,0.000021484824,0.000020192758,0.000020713973,0.000019779856,0.00002078416,0.000020072683,0.000020917165,0.000019823667,0.000021183594,0.00002000036,0.000020678348,0.000019768768,0.00002079806,0.000020004576,0.000021051523,0.000020026278,0.000021431251,0.000020143156,0.000020653635,0.00001972536,0.000020720494,0.000020027654,0.000020889478,0.000019789459,0.000021137766,0.000019961926,0.000020655682,0.000019766692,0.000020832736,0.000020025112,0.00002105789,0.000020025458,0.00002141744,0.000020121422,0.000020630523,0.000019717498,0.000020721698,0.000020018755,0.000020865922,0.000019758796,0.00002111516,0.00001993915,0.000020637608,0.000019750169,0.000020845695,0.000020037378,0.000021078924,0.00002003006,0.000021450409,0.000020165335,0.000020721423,0.000019793442,0.000020830612,0.000020096146,0.000020949527,0.000019805733,0.000021186888,0.000020000263,0.000020708067,0.00001982794,0.000020944273,0.000020174799,0.000021272832,0.00002018594,0.000021629387,0.000020236654,0.000020709096,0.000019679119,0.000020667012,0.000019895047,0.000020713322,0.000019561,0.000020876472,0.000019725321,0.000020422422,0.000019620578,0.00002082529,0.00002009747,0.000021102116,0.000019921248,0.00002122999,0.000020016503,0.00002075053,0.000019760831,0.000020855876,0.000020027901,0.000020984136,0.00001987398,0.000021054677,0.000019975256,0.000020625663,0.000019876348,0.000020960197,0.000020540436,0.000021656613,0.00002053738,0.000021684014,0.00002026342,0.000020494375,0.000019681898,0.000020490877,0.00002024451,0.00002070799,0.000019515031,0.000020625645,0.000019395196,0.000019860263,0.000019115168,0.000020453666,0.000019838079,0.000020979916,0.000019646623,0.000020989763,0.000019514213,0.000020344667,0.00001919009,0.00002051479,0.00002013382,0.000020741885,0.000019348512,0.000020110696,0.000020193509,0.000020434656,0.0000198915,0.000020409729,0.000021361853,0.000022041366,0.000021643935,0.000021555443,0.000021958202,0.000023148174,0.00002512528,0.000019133406,0.000011990308,0.000013374223],[0.000015839663,0.000013935103,0.000012099858,0.000018270652,0.000030701052,0.000035535675,0.00003182315,0.000026676747,0.00002364719,0.000022690932,0.000021803058,0.000020455578,0.000020641997,0.000019968533,0.000020926203,0.000020261235,0.000021247426,0.00002063135,0.000021099138,0.000019494888,0.000020698059,0.00002034979,0.000021711761,0.000020690126,0.000021369313,0.000020255537,0.000020593627,0.000019832176,0.000020972195,0.000020822132,0.000022017375,0.000020767398,0.000021099077,0.00002036967,0.000020982376,0.000020316165,0.000021601436,0.000021584756,0.000022568654,0.000021439735,0.00002180836,0.000021607924,0.000022231103,0.00002128663,0.000021713357,0.000021372063,0.000022208282,0.000021076312,0.000021711576,0.000021015678,0.000021475566,0.000020439138,0.000021196425,0.000020800935,0.00002172506,0.00002091174,0.000021752341,0.000021326336,0.0000219443,0.000020766467,0.000021328939,0.000020990801,0.000021689018,0.000020741885,0.000021368332,0.000020652551,0.000021146274,0.000020016236,0.000021042331,0.000020626,0.000021460886,0.000020579138,0.000021447791,0.000020948526,0.000021463384,0.000020359243,0.000021114836,0.00002080419,0.00002146195,0.000020550095,0.00002124378,0.000020548607,0.000020979774,0.00001991475,0.000020865484,0.000020526297,0.000021391312,0.00002055964,0.0000214184,0.000020991023,0.000021517468,0.00002039605,0.00002108725,0.000020784437,0.00002151045,0.000020565583,0.000021234848,0.000020502135,0.000020934845,0.000019886835,0.00002083997,0.000020530251,0.00002140576,0.000020596788,0.000021430391,0.000020984156,0.00002150116,0.000020411713,0.00002111923,0.000020828189,0.000021535103,0.000020595573,0.000021272668,0.000020547253,0.00002100482,0.000019960937,0.000020937661,0.000020632217,0.000021522434,0.00002067466,0.000021522845,0.000021087068,0.00002160941,0.000020485759,0.000021159347,0.000020865426,0.000021586218,0.000020660233,0.000021341757,0.000020637568,0.000021069158,0.000019973599,0.000020939098,0.000020564132,0.00002139276,0.000020573487,0.000021453192,0.000021034066,0.00002153467,0.000020423064,0.000021092521,0.000020798614,0.000021518637,0.000020600286,0.000021274089,0.000020551213,0.000020990283,0.000019915738,0.000020875774,0.00002052896,0.00002137991,0.000020562033,0.000021411965,0.000020978534,0.00002149216,0.000020392938,0.000021088355,0.00002079681,0.000021530912,0.000020601306,0.000021272606,0.000020551113,0.000021007923,0.000019924344,0.000020889358,0.000020549976,0.00002141113,0.000020572526,0.00002143724,0.000021007143,0.000021538284,0.000020454074,0.000021175718,0.000020898382,0.000021641768,0.000020701591,0.000021354213,0.000020610722,0.000021050058,0.000019969484,0.000020966754,0.00002065257,0.000021577674,0.000020773083,0.000021672293,0.000021217964,0.000021710644,0.000020512383,0.00002105809,0.000020770904,0.000021326008,0.000020511034,0.000020995525,0.000020366933,0.000020916666,0.000019711388,0.000020803076,0.000020589818,0.000021698806,0.000020707179,0.00002152303,0.000020964795,0.000021446585,0.000020566682,0.000021233916,0.000021010508,0.000021594844,0.00002088356,0.00002131009,0.000020761872,0.000021000073,0.000020142119,0.000020873566,0.000020751162,0.000021857146,0.000021375019,0.000021917196,0.00002169388,0.000021868174,0.000020830712,0.000020916905,0.000020867614,0.000021520034,0.00002079901,0.000020890253,0.000020055559,0.000020437132,0.000019099916,0.00002024559,0.00001998928,0.000021228327,0.000020374684,0.000021187696,0.000020438496,0.000020772706,0.000019929912,0.000020452962,0.000020487674,0.000021235659,0.000020708483,0.000020507161,0.00001999092,0.000020392354,0.000020039288,0.000020029946,0.000020376121,0.000020847565,0.00002110588,0.000020696794,0.000020416366,0.000022401273,0.00002359018,0.000025478526,0.000018210498,0.000011611329,0.000013294961],[0.00001596968,0.0000132278055,0.000012053341,0.000016582899,0.000030307034,0.00003400422,0.000028998888,0.000025383844,0.000022572875,0.000021702117,0.000020477593,0.00001998366,0.000019338275,0.000019548037,0.000019213476,0.000019990597,0.00001994908,0.00002068979,0.000019341574,0.000019448706,0.000019145962,0.000020508569,0.000019708868,0.000021056203,0.00001980581,0.000020802938,0.000019171232,0.00002006784,0.000019393698,0.000021027327,0.000019996887,0.000020925325,0.00001994769,0.000020943115,0.000019742052,0.000020667092,0.000020439587,0.000021731255,0.00002081423,0.00002151164,0.000021043636,0.000022170088,0.000021077358,0.00002136811,0.00002049121,0.000021089643,0.000020407217,0.000020769181,0.000020601032,0.000021322207,0.00002027844,0.000020683003,0.000020128944,0.000021058713,0.000020249008,0.00002110753,0.00002083683,0.000021872554,0.00002066583,0.000020990201,0.00002034164,0.00002105028,0.000020046762,0.000020573958,0.000020237656,0.000021046324,0.000019782157,0.000020307914,0.000019930027,0.000021118825,0.000020027672,0.000021052489,0.000020512754,0.000021684511,0.000020169027,0.000020697724,0.00002011183,0.000021037074,0.000019892354,0.000020529116,0.000020180052,0.000021063815,0.000019748906,0.000020314015,0.00001993784,0.00002109093,0.000020024618,0.000021048654,0.000020570427,0.000021733618,0.00002026456,0.00002073346,0.000020102549,0.00002098816,0.0000199056,0.000020529273,0.000020175723,0.000021017682,0.000019709376,0.000020264133,0.000019894838,0.000021064938,0.000020010148,0.00002104803,0.000020579962,0.00002173082,0.000020246014,0.000020743291,0.000020124626,0.000021034186,0.00001992292,0.000020548214,0.00002021106,0.0000210738,0.000019777817,0.000020356698,0.000020009136,0.000021183292,0.000020113652,0.000021117052,0.000020637548,0.000021801477,0.000020331845,0.000020794787,0.00002016153,0.000021051223,0.000019978075,0.00002060508,0.000020268308,0.000021132666,0.00001983645,0.000020362699,0.000019966019,0.00002111784,0.000020055253,0.000021038959,0.000020578804,0.000021741704,0.000020272078,0.000020722806,0.00002010391,0.000020984398,0.00001990839,0.000020524927,0.000020179878,0.00002102873,0.000019730816,0.000020288731,0.00001991724,0.000021076092,0.000020011254,0.000021030075,0.000020549016,0.000021703814,0.000020237714,0.000020708188,0.000020104428,0.000020993624,0.00001992271,0.000020544117,0.00002020154,0.000021059475,0.000019751958,0.000020300711,0.000019933505,0.000021100224,0.000020031244,0.000021063915,0.000020574802,0.000021746431,0.000020268038,0.000020773952,0.000020156242,0.000021095175,0.000020014726,0.000020671567,0.000020283487,0.000021145266,0.000019807396,0.000020362737,0.000019985202,0.000021200753,0.000020199286,0.000021290265,0.000020793934,0.000021986216,0.000020457372,0.000020826163,0.000020174106,0.000021025102,0.000019928772,0.000020395019,0.000019936222,0.000020844045,0.000019594008,0.000020030806,0.000019793084,0.000021136517,0.000020269663,0.0000211783,0.000020614809,0.000021666052,0.0000202796,0.00002085526,0.000020331381,0.000021254844,0.000020069621,0.00002076219,0.000020399997,0.0000212453,0.000020048712,0.000020547253,0.000020358368,0.000021382724,0.000020813575,0.000021881568,0.000021556203,0.00002237036,0.000020903704,0.000020847623,0.00002009609,0.00002059082,0.000019950145,0.000020119158,0.000019567156,0.00001998101,0.00001888797,0.000019218149,0.000018937497,0.000020561405,0.000019840158,0.000021254906,0.000020295329,0.000021342,0.000019808887,0.000020800657,0.000019920279,0.0000210694,0.00002026311,0.000020777838,0.000020009804,0.000020469648,0.000020952384,0.00002098926,0.000020773477,0.000021248987,0.000021279466,0.000021791813,0.000021353726,0.000021887785,0.000022400718,0.000025612855,0.00002582942,0.000017540873,0.000010722513,0.000013276639],[0.000015567945,0.000012792097,0.000010292978,0.00001637177,0.000027767031,0.000034511835,0.000029075261,0.0000258275,0.000023177729,0.0000222363,0.000020749443,0.000020474332,0.0000206096,0.000020197533,0.000020338071,0.000020207302,0.000021087953,0.000020977674,0.00002079655,0.000019724419,0.00002077223,0.00002079209,0.000021293068,0.00002061013,0.000021810753,0.000020920957,0.000021046906,0.000020172547,0.000020959716,0.000020972495,0.000021322532,0.00002058165,0.000021533211,0.000021127025,0.000021490665,0.00002093876,0.000021965803,0.000021748981,0.000021855789,0.000021381013,0.0000224042,0.000022351638,0.00002281235,0.000021917718,0.00002198911,0.000021723548,0.000021226546,0.00002067671,0.000021795388,0.000021791793,0.0000221629,0.000021130129,0.000021911554,0.000021569364,0.000021505773,0.000020938242,0.000022127337,0.000021982023,0.000022406442,0.000021305012,0.000021880878,0.000021504975,0.000021096965,0.000020374315,0.000021351323,0.000021311187,0.000021500648,0.00002047525,0.000021641932,0.000021360489,0.000021542579,0.000020770725,0.00002198737,0.000021601169,0.000021839664,0.000020825904,0.00002166349,0.000021354439,0.000021026282,0.00002025712,0.00002134717,0.000021229078,0.00002141015,0.000020524241,0.00002168931,0.000021310925,0.00002151597,0.000020783844,0.000022000584,0.000021645668,0.000021964293,0.00002092886,0.000021700089,0.00002138766,0.000021051084,0.00002026375,0.000021334226,0.00002120512,0.000021390579,0.000020473963,0.000021635866,0.000021260053,0.00002146412,0.00002075922,0.000021992486,0.00002161786,0.000021951271,0.000020896508,0.000021700916,0.000021411986,0.000021056423,0.000020279136,0.000021346683,0.000021265267,0.000021471304,0.000020582731,0.000021756388,0.000021403881,0.000021575124,0.000020825011,0.00002203939,0.00002171143,0.000022021994,0.0000209899,0.000021747695,0.000021447444,0.000021094911,0.000020327658,0.000021405842,0.000021308932,0.00002150239,0.000020580395,0.000021723154,0.000021379035,0.000021566053,0.000020804051,0.000021987433,0.0000216518,0.00002195711,0.000020938302,0.000021704434,0.000021396902,0.000021031437,0.000020246054,0.000021303264,0.00002119121,0.000021379177,0.000020484373,0.000021657355,0.000021286429,0.000021493062,0.00002076508,0.00002196798,0.000021621901,0.00002194451,0.000020929396,0.000021711474,0.000021411986,0.00002107374,0.000020301892,0.000021344646,0.00002125142,0.000021426755,0.000020501882,0.00002166942,0.000021302754,0.000021518657,0.000020781086,0.000021997814,0.000021638156,0.000021959206,0.00002094595,0.00002173451,0.000021439673,0.000021115744,0.000020371925,0.000021407453,0.00002131765,0.000021505015,0.000020576432,0.000021733744,0.000021391352,0.000021668326,0.00002100446,0.000022225677,0.000021899248,0.000022142049,0.000021039643,0.000021686787,0.00002145935,0.000021000373,0.000020233856,0.000020969113,0.000021074082,0.000021294367,0.00002026651,0.00002141652,0.00002141221,0.00002175454,0.000020879259,0.000022121661,0.000021695558,0.000021912305,0.000021048432,0.000022054339,0.000021519048,0.000021233209,0.00002052156,0.000021649177,0.000021230413,0.000021580927,0.00002095538,0.00002205661,0.000021658181,0.000021915148,0.000021589778,0.000022886503,0.000022540586,0.00002251283,0.000021488677,0.000021415151,0.000021260277,0.000020494648,0.000020082678,0.00002034785,0.000020446781,0.000020450896,0.000019490612,0.00002066518,0.00002077841,0.000021482263,0.000020810181,0.000022033086,0.000021118765,0.00002141797,0.000020831088,0.000021578744,0.000021216974,0.000020777066,0.000020642196,0.00002061536,0.000020783604,0.000021473865,0.000021854685,0.000021544345,0.000021900481,0.000021377404,0.000022032833,0.000021509692,0.000021572017,0.000023365546,0.00002511673,0.000027253285,0.00001850517,0.000011153835,0.000013302341],[0.000014964118,0.000012042725,0.000010549786,0.000014076053,0.000025719377,0.000033588272,0.00002685138,0.00002478213,0.000022033253,0.000021684014,0.000020363086,0.000020437072,0.000019258969,0.000019677524,0.000019348587,0.0000200516,0.000019736932,0.000020730435,0.000019524916,0.000019971922,0.00001923986,0.000020454467,0.000019422016,0.000020348198,0.000019224544,0.00002062763,0.000019116735,0.000020102396,0.000019082783,0.000020587304,0.00001923276,0.000020026793,0.000019186651,0.00002066644,0.000019680321,0.000020713895,0.000020028303,0.000021176766,0.000019962687,0.00002068247,0.000020087906,0.000021686681,0.000021072574,0.000021667602,0.000020711208,0.000021018264,0.000019651627,0.000019924364,0.00001949578,0.00002094611,0.000020346783,0.000021041129,0.000020276795,0.000021073982,0.000019568257,0.000020219042,0.000019695359,0.00002125517,0.000020420688,0.0000210603,0.000020333378,0.000020995607,0.000019347737,0.000019582649,0.000019057286,0.000020474683,0.00001952501,0.00002022043,0.000019615863,0.000020772291,0.000019242116,0.000020068663,0.000019299732,0.000020875557,0.000019732228,0.000020523616,0.000019837622,0.000020788799,0.000019082583,0.000019442326,0.000018887213,0.000020369574,0.000019425795,0.000020240803,0.000019626004,0.000020768111,0.000019252433,0.000020068492,0.000019316047,0.00002091583,0.000019869356,0.000020659643,0.000019970876,0.000020861964,0.000019130797,0.000019434428,0.000018869443,0.000020352816,0.000019425406,0.000020221818,0.000019594456,0.000020731444,0.000019218038,0.000020040721,0.000019287643,0.000020900956,0.000019855868,0.0000206368,0.000019941148,0.00002086843,0.000019145707,0.00001945468,0.00001889878,0.000020412628,0.000019513469,0.000020342532,0.0000197112,0.00002083719,0.000019304813,0.000020107553,0.000019365956,0.000020972535,0.000019957966,0.000020737849,0.000020029678,0.000020925485,0.000019205287,0.000019499425,0.00001894635,0.000020435944,0.00001952987,0.000020346044,0.000019713418,0.00002083991,0.000019320025,0.000020111102,0.000019344545,0.000020911342,0.00001988818,0.00002067129,0.00001999216,0.000020868887,0.000019136727,0.000019416257,0.00001884655,0.000020325584,0.000019405315,0.000020208054,0.000019594887,0.000020748017,0.00001924854,0.000020066713,0.000019309746,0.00002091208,0.000019892657,0.000020685804,0.000020000989,0.000020897687,0.00001918184,0.000019476249,0.000018911365,0.000020374975,0.00001942963,0.000020218211,0.000019605315,0.000020746138,0.000019236926,0.00002005728,0.000019298866,0.000020898242,0.000019859279,0.000020675569,0.000019997327,0.000020914154,0.000019165216,0.000019490575,0.000018919573,0.000020434325,0.000019498606,0.000020321126,0.000019677618,0.000020843687,0.00001936989,0.000020238642,0.00001953965,0.000021161788,0.00002007812,0.000020750867,0.0000200386,0.00002091136,0.000019229607,0.000019439043,0.000018822804,0.000020284804,0.000019301498,0.000020016389,0.000019484962,0.00002075162,0.00001938719,0.000020199286,0.000019457424,0.000021034366,0.000019958385,0.000020768051,0.000019950392,0.000020862859,0.000019227442,0.000019649695,0.000019144321,0.000020636939,0.000019929455,0.00002089135,0.000020106652,0.000021086284,0.000019972971,0.00002098722,0.00002057025,0.000022134702,0.00002125517,0.000021657024,0.00002042137,0.000020921694,0.00001959498,0.00001961143,0.000018896077,0.000019959394,0.000018920528,0.00001952421,0.000018952474,0.000020404977,0.000019194465,0.00002021399,0.000019104707,0.000020563857,0.00001934283,0.000020652531,0.00001973439,0.000020917863,0.000019368654,0.000019825879,0.000019210655,0.000020073161,0.00002100602,0.000021265429,0.000021105478,0.000021230799,0.000021459924,0.000022041471,0.000021065864,0.0000210387,0.000021769732,0.00002435634,0.000025469295,0.000017466275,0.00001083878,0.000013476534],[0.000015261947,0.000011202584,0.000010252029,0.0000138227315,0.000026558764,0.00003665282,0.000029702953,0.000024928926,0.000022789063,0.000022151722,0.000021547407,0.000020219426,0.000020324906,0.000019608924,0.000020088579,0.000019461044,0.000020750986,0.000020398655,0.000021300946,0.000019523186,0.000020584832,0.000019905487,0.000020564581,0.000019409017,0.000020572015,0.000019406316,0.000020365555,0.000018814064,0.000019969502,0.000019393994,0.00002002815,0.00001882758,0.000020156665,0.000019560643,0.000020746713,0.000019543098,0.000021139762,0.00002052665,0.00002107796,0.000019977904,0.000021103082,0.000020744674,0.000022115355,0.00002081798,0.000021711141,0.000020737732,0.00002090524,0.00001941035,0.00002033487,0.00001993056,0.000021441941,0.000020045787,0.000021429678,0.00002031694,0.000020677482,0.000019233237,0.000020477788,0.000020042651,0.000021421178,0.00002004986,0.000021133412,0.00002035468,0.000020346451,0.000018756898,0.000019718625,0.0000193807,0.000020593332,0.00001912361,0.000020516316,0.000019781892,0.000020222607,0.000018685003,0.000020086854,0.000019501304,0.000020777205,0.000019290494,0.000020548998,0.000019924972,0.000020018373,0.000018427947,0.000019526407,0.000019201952,0.000020483805,0.000019019577,0.000020573545,0.000019709114,0.000020286176,0.000018737357,0.000020136547,0.000019536035,0.000020946349,0.00001948825,0.000020724705,0.000020049361,0.000020096166,0.000018460049,0.000019534993,0.000019203784,0.00002049459,0.000019022606,0.000020565816,0.000019668782,0.000020243255,0.00001868144,0.000020099444,0.000019479332,0.000020941497,0.000019459336,0.000020698099,0.000020050758,0.000020142137,0.00001849767,0.000019560963,0.00001926191,0.000020585361,0.000019118103,0.000020653693,0.00001976594,0.000020320369,0.000018793264,0.000020184229,0.000019609373,0.000021018925,0.000019572699,0.000020800142,0.000020109777,0.000020154914,0.00001853546,0.00001960266,0.000019287772,0.000020601487,0.00001914085,0.000020659583,0.000019780535,0.000020327503,0.000018801276,0.000020168682,0.000019554078,0.000020931333,0.00001951762,0.00002074966,0.000020055157,0.000020090398,0.000018479828,0.000019549754,0.000019212064,0.000020489042,0.000019005434,0.000020545569,0.00001966837,0.000020274012,0.000018740036,0.000020143405,0.000019541478,0.000020971313,0.000019533038,0.00002076312,0.000020095533,0.000020149724,0.000018523144,0.00001957113,0.000019242741,0.000020490428,0.000019032912,0.000020546117,0.000019687266,0.000020240534,0.000018696981,0.00002009565,0.00001949721,0.000020904263,0.000019461693,0.000020726067,0.000020060665,0.000020123436,0.000018475088,0.000019550742,0.000019233861,0.000020543492,0.000019083984,0.000020638434,0.000019764168,0.0000203633,0.000018890365,0.000020246536,0.000019762321,0.000021071852,0.000019626266,0.000020684383,0.000019997671,0.000020019119,0.000018477309,0.000019417072,0.000019087734,0.000020288053,0.000018840135,0.000020236615,0.00001964441,0.000020303227,0.000018763178,0.000020337548,0.000019789006,0.000021205384,0.000019606568,0.000020879796,0.000019927082,0.00002009787,0.00001869049,0.000019934969,0.000019612311,0.000020914893,0.000019800937,0.000021062247,0.000020146383,0.000020764466,0.000019969619,0.000021246555,0.000021086345,0.000022505617,0.000021142323,0.000021397513,0.000020589014,0.000020474352,0.000019412497,0.000019817675,0.000019351408,0.000020052268,0.000018599578,0.000019847672,0.000019338606,0.000019948206,0.000018647264,0.00002012906,0.00001937035,0.000020224152,0.00001901283,0.000020250765,0.000019769031,0.00001962679,0.00001898368,0.000019252984,0.000019373014,0.000020405154,0.000020357242,0.000020739037,0.000020343174,0.000020814528,0.000020739335,0.000020124127,0.00001998238,0.000021656386,0.000023115106,0.00002625456,0.00001819026,0.000011576786,0.000012853521],[0.00001561353,0.000012157658,0.000011212941,0.000014623461,0.000027918244,0.000034574292,0.000026946625,0.00002328238,0.000020711683,0.00002089599,0.000019838079,0.000019829036,0.000019128407,0.00001932113,0.000018807606,0.000019295756,0.000019183522,0.000020093752,0.00001920708,0.000019135978,0.000019069084,0.000019763376,0.000019017853,0.000019476638,0.000018520337,0.000019570422,0.000018149747,0.000018654699,0.000017987653,0.000019251846,0.000018102126,0.000018805007,0.00001823521,0.000019840782,0.000018905288,0.000019726374,0.00001955229,0.000020791871,0.000019523706,0.000020019957,0.000019319767,0.000020592843,0.000019652189,0.000019872085,0.00001977003,0.000020228645,0.000019255553,0.00001922207,0.0000186576,0.000019720996,0.000018982339,0.000019356208,0.000019412497,0.000020153147,0.000019029918,0.00001925728,0.000018733088,0.000020132842,0.000019130468,0.000019433633,0.00001932959,0.000020048694,0.000018674511,0.000018581884,0.000018128885,0.0000193368,0.000018484376,0.000018728264,0.000018738054,0.000019782326,0.000018435805,0.000018770032,0.000018229472,0.000019762096,0.000018616276,0.000018980672,0.000018795432,0.000019822797,0.000018314646,0.000018341565,0.000017909617,0.000019278208,0.000018403536,0.00001876724,0.00001877673,0.000019869507,0.000018503688,0.000018851762,0.000018296892,0.000019830284,0.00001875148,0.000019109662,0.000018936666,0.00001987887,0.000018380892,0.000018356717,0.000017917167,0.000019249384,0.00001837581,0.000018724639,0.000018735587,0.000019804582,0.000018434153,0.000018771394,0.000018228951,0.000019766316,0.000018703919,0.000019077306,0.000018909705,0.000019871288,0.000018419989,0.000018410014,0.00001795247,0.000019312121,0.000018466317,0.000018815392,0.000018828478,0.000019926263,0.000018553023,0.00001889051,0.000018323557,0.000019851135,0.0000187816,0.0000191433,0.00001898958,0.00001991781,0.000018427543,0.000018416986,0.000017996335,0.00001933549,0.00001847486,0.00001882065,0.00001882485,0.00001991513,0.000018547786,0.000018891158,0.000018327733,0.000019828773,0.000018737857,0.000019095198,0.000018950504,0.000019854051,0.000018370885,0.000018369292,0.000017974706,0.00001927977,0.000018394518,0.000018738949,0.000018733552,0.000019817353,0.00001846681,0.000018832752,0.000018300016,0.000019840725,0.000018780811,0.00001914684,0.000018985469,0.000019922027,0.000018437564,0.000018411769,0.00001797786,0.000019294395,0.000018415738,0.000018749173,0.000018745382,0.000019832025,0.00001845204,0.000018793837,0.000018232671,0.000019772368,0.000018686285,0.000019064575,0.00001889887,0.000019872066,0.000018378298,0.00001835628,0.000017916485,0.00001926913,0.000018418108,0.000018788605,0.000018804038,0.000019932917,0.000018640401,0.000019030735,0.00001845225,0.000020011425,0.000018907615,0.000019237841,0.000018910696,0.00001979584,0.000018315328,0.000018330215,0.000017884067,0.000019213236,0.000018354005,0.00001871059,0.000018579243,0.000019901556,0.000018548812,0.000019039648,0.000018548988,0.000020134916,0.000019007952,0.000019416884,0.000018984836,0.000019972495,0.000018383591,0.000018575276,0.000018290088,0.000019765128,0.000018951028,0.000019720583,0.00001957225,0.00002068604,0.00001954899,0.000020412763,0.000019898254,0.000021339558,0.000020188041,0.000020344221,0.000019783176,0.000020090914,0.000019093724,0.000019000921,0.000018539386,0.000019334586,0.000018245802,0.000018272183,0.000018012235,0.00001925203,0.000018235001,0.000018962943,0.000018410541,0.000019864145,0.00001838859,0.000019018831,0.00001832817,0.000019720073,0.000018539544,0.000019008061,0.00001816384,0.000019404557,0.000019528996,0.00002015457,0.000020141773,0.000020365631,0.00002046469,0.000021516093,0.00002084488,0.000021159465,0.000021133736,0.000023425964,0.000025140716,0.000019171654,0.00001121432,0.000013302519],[0.00001529619,0.000012923286,0.000010240498,0.00001648003,0.000027862283,0.00003594789,0.000028356555,0.000023917692,0.00002167771,0.000021429147,0.000020550919,0.000020075095,0.000020414322,0.000020121863,0.00002019372,0.000019995154,0.000020541278,0.000020503621,0.000020219253,0.00001951868,0.00002046779,0.000020507494,0.000020726857,0.00001986265,0.000020320564,0.000020008316,0.000019861134,0.000018757024,0.000019510715,0.000019513152,0.000020003565,0.000019079545,0.000020065754,0.000020096913,0.000020836036,0.000019947787,0.000021144077,0.000020854066,0.000021114938,0.000020341815,0.000021030035,0.000020916765,0.000020929258,0.000019996716,0.000020492049,0.000020628298,0.000020591568,0.000019788118,0.000020437561,0.000020350002,0.000020573605,0.000019509858,0.000020550035,0.000020505187,0.000020796451,0.000019724475,0.000020566662,0.000020492831,0.000020644575,0.000019481116,0.00002014419,0.00002040595,0.000020235533,0.000019126346,0.000019922654,0.00001996598,0.000020213953,0.00001907234,0.000020127582,0.000020238911,0.000020397876,0.000019154528,0.00002016247,0.000020052365,0.000020315023,0.000019068031,0.00001990298,0.000020143367,0.000020078714,0.00001885108,0.000019823892,0.000019874018,0.000020264713,0.000019101592,0.00002033615,0.000020254454,0.000020504072,0.000019274128,0.000020269605,0.000020132153,0.000020427953,0.000019198456,0.000019973064,0.000020223322,0.00002012359,0.000018898347,0.000019835126,0.000019865794,0.000020230671,0.000019047548,0.000020271016,0.000020188196,0.000020427526,0.000019192872,0.00002020842,0.000020071668,0.000020368776,0.000019143736,0.000019933143,0.000020185922,0.000020119542,0.000018933579,0.00001986697,0.000019902582,0.000020303265,0.000019119434,0.000020357184,0.000020303518,0.000020535754,0.000019293439,0.00002025517,0.00002012904,0.000020418294,0.000019183632,0.000019967332,0.000020230422,0.000020135416,0.000018942663,0.000019907175,0.000019942023,0.000020313355,0.00001912113,0.000020347772,0.000020288053,0.000020540318,0.000019296143,0.000020262338,0.000020138257,0.00002040749,0.000019181802,0.000019959012,0.000020217325,0.000020095322,0.000018894852,0.000019866891,0.000019886322,0.000020242309,0.000019064375,0.000020291303,0.000020189811,0.00002046153,0.000019257739,0.000020267767,0.000020136664,0.000020442394,0.000019228175,0.00002000427,0.000020255266,0.000020156587,0.000018947667,0.000019883497,0.000019924762,0.00002028486,0.00001909394,0.00002029744,0.000020232195,0.00002044715,0.00001920558,0.000020184114,0.000020051486,0.000020330526,0.000019121968,0.000019906112,0.000020173837,0.000020071344,0.00001888098,0.000019809833,0.000019848996,0.000020218464,0.000019081946,0.000020310277,0.000020275926,0.000020587187,0.000019406094,0.000020326475,0.000020252097,0.000020431266,0.00001922011,0.000019836205,0.000020079537,0.000019943278,0.000018813527,0.000019652169,0.000019780082,0.000020133495,0.000018974086,0.000020115533,0.000020217789,0.000020593292,0.000019413534,0.000020541102,0.000020353671,0.00002064621,0.000019423831,0.000020413854,0.000020200116,0.000020246594,0.000019121877,0.000020176223,0.000020070309,0.000020372468,0.00001965382,0.000020975935,0.000020665317,0.000021070666,0.000020544276,0.00002150081,0.000021257298,0.000021079608,0.000020287705,0.00002044251,0.00002071502,0.000020352176,0.000019672701,0.000020079748,0.000020199768,0.000019878737,0.000018834673,0.000019625726,0.00001960627,0.000020339332,0.000019438228,0.000020647863,0.00002023459,0.000020308496,0.000019203582,0.000019750036,0.000020043703,0.000020044334,0.00001939538,0.000019096875,0.000019416497,0.000019392717,0.000020177993,0.000019988882,0.000020647863,0.000020753678,0.00002135391,0.000021166772,0.000021334105,0.000021785705,0.000022986464,0.000025464267,0.000020384285,0.000011737346,0.000013277449],[0.000015159217,0.000014993415,0.0000113675105,0.000016283142,0.000028127117,0.000034224795,0.000027675273,0.000024718709,0.000021251783,0.000021274554,0.000019663137,0.000020033118,0.000019009023,0.000019750527,0.000019516781,0.000020469373,0.000019750281,0.000020559524,0.000019448093,0.00001960769,0.00001947714,0.00002045275,0.000019652638,0.000020297748,0.000019013954,0.000020099846,0.000018561412,0.000018833633,0.000018262219,0.000019609672,0.000018803159,0.000019625388,0.0000185335,0.000020044296,0.000019176188,0.000020008296,0.000019403076,0.000020708563,0.000019748135,0.000020666992,0.000019495537,0.000020785925,0.00001939257,0.00001962288,0.000019025618,0.00002007992,0.000019475952,0.000020181362,0.00001929285,0.00002041183,0.000019237787,0.000019341336,0.000019018053,0.00002003413,0.000019438656,0.00002008988,0.000019260862,0.000020525122,0.00001908271,0.000019169587,0.000018769764,0.00001994499,0.000019028448,0.000019460671,0.000018758723,0.000019995592,0.000018825893,0.000018958983,0.000018765379,0.000019830683,0.000018923236,0.000019456442,0.000018756451,0.000020060952,0.000018673638,0.00001882433,0.000018449735,0.000019725847,0.00001874161,0.000019190054,0.000018555871,0.00001988196,0.000018789071,0.00001904495,0.000018827095,0.000019934056,0.000019008008,0.000019575535,0.000018841914,0.000020154203,0.000018776065,0.000018905414,0.00001852606,0.00001978325,0.000018800309,0.00001923586,0.000018581477,0.000019876235,0.000018760958,0.000018981144,0.000018760387,0.00001985606,0.000018943296,0.00001950054,0.00001877954,0.00002009126,0.000018705632,0.000018823594,0.000018464414,0.000019734918,0.000018781384,0.00001925357,0.0000186172,0.000019933106,0.00001882117,0.000019068413,0.000018850506,0.0000199796,0.000019066956,0.000019635834,0.000018859118,0.000020162914,0.000018773218,0.000018894185,0.000018505894,0.000019777008,0.000018835553,0.000019296014,0.000018641718,0.000019965162,0.000018845201,0.000019080308,0.000018854424,0.000019972342,0.000019073104,0.000019634504,0.00001885937,0.000020162757,0.000018787745,0.000018911762,0.000018529718,0.000019769426,0.00001880133,0.000019211258,0.000018570581,0.000019867195,0.000018769746,0.000018998675,0.000018780489,0.000019888219,0.000019003894,0.000019586367,0.000018861869,0.000020178955,0.000018821009,0.000018956416,0.000018573646,0.00001982533,0.000018856097,0.000019292205,0.0000186457,0.000019950965,0.000018833452,0.000019050764,0.000018816289,0.000019905694,0.000018973778,0.00001952017,0.000018773757,0.00002007255,0.000018680745,0.000018824421,0.000018443612,0.000019729405,0.000018742201,0.000019199279,0.00001854027,0.000019858899,0.000018741772,0.000019002298,0.0000187792,0.000019933183,0.000019091574,0.00001974224,0.000018938597,0.000020283449,0.000018825318,0.000018973526,0.000018457531,0.00001975876,0.000018706649,0.000019129155,0.00001843649,0.000019832345,0.000018645309,0.00001895459,0.000018596635,0.00001996642,0.000019107441,0.000019811629,0.000018913835,0.000020396534,0.000019001502,0.000019514939,0.0000189028,0.00002033012,0.00001910906,0.00001965963,0.000018815446,0.000020110065,0.000018974357,0.000019499295,0.000019043697,0.000020230285,0.000019754218,0.000020833117,0.000019935196,0.00002130495,0.00001967047,0.000019954901,0.00001927218,0.000020418216,0.0000197715,0.000020135376,0.000019286355,0.000020342124,0.000019056415,0.000018959978,0.000018541932,0.000019447443,0.000019014951,0.000019868048,0.00001901709,0.000020315701,0.000018739645,0.000019081073,0.000018272829,0.000019672158,0.00001897861,0.000019716219,0.000018122368,0.000019118977,0.000018729175,0.000019548,0.000019252966,0.000020199903,0.00002071583,0.00002171605,0.000021638796,0.00002197496,0.000022561233,0.000024273235,0.000025291565,0.00001843076,0.0000118630915,0.00001331596],[0.00001579289,0.00001651513,0.000012350005,0.000017627135,0.00003124187,0.000036228823,0.000032086533,0.00002562429,0.000023212988,0.000022130944,0.000021665948,0.00001985161,0.000020319576,0.000019807774,0.000020700052,0.00002011768,0.000021106262,0.000020675667,0.00002101193,0.000019506046,0.000020589112,0.00002036066,0.000021273907,0.000019891613,0.000020597437,0.000019605166,0.000019959774,0.0000185341,0.000019663192,0.000019386578,0.000020602723,0.000019151075,0.00002013603,0.00001957128,0.000020644811,0.000019350524,0.000020793615,0.000020436177,0.000021571606,0.000020238178,0.000021091391,0.00002038372,0.000021000935,0.000019482826,0.000020469764,0.000020203737,0.00002126569,0.000020141253,0.000020916987,0.000020173587,0.000020888141,0.000019340525,0.00002037818,0.000019996392,0.000021285658,0.000019819923,0.000020882804,0.000020010339,0.000020767477,0.000018872286,0.000020012323,0.000019950527,0.000020850784,0.000019451469,0.000020313066,0.00001971889,0.000020490583,0.000018773344,0.000020034053,0.000019761133,0.000020804544,0.00001920252,0.000020348276,0.000019577477,0.000020376607,0.000018435927,0.000019696487,0.000019640647,0.000020619094,0.00001911123,0.000020171028,0.00001956973,0.000020450934,0.000018805042,0.000020186866,0.000019805866,0.000020956859,0.000019325478,0.000020465059,0.000019671426,0.000020494766,0.000018561375,0.000019795933,0.000019735031,0.000020699836,0.000019179754,0.000020201138,0.0000195862,0.000020429765,0.00001877304,0.00002012883,0.000019752184,0.000020900536,0.000019272915,0.000020407937,0.000019585656,0.00002041323,0.00001847227,0.000019734993,0.00001969042,0.000020684896,0.000019196754,0.000020245398,0.000019631434,0.000020495509,0.000018826755,0.000020215437,0.000019828374,0.000021003698,0.00001938083,0.000020502233,0.00001966475,0.000020494415,0.000018571043,0.00001979463,0.000019731511,0.00002074064,0.00001924898,0.000020267962,0.000019649433,0.00002052671,0.000018862229,0.000020227662,0.000019837566,0.000021007525,0.00001938606,0.00002049725,0.000019673902,0.000020501824,0.00001858651,0.000019790989,0.000019722387,0.000020686297,0.000019161891,0.000020156587,0.0000195513,0.000020422285,0.000018795934,0.000020148593,0.000019778554,0.000020953681,0.000019354176,0.000020487927,0.000019707515,0.00002053969,0.00001861553,0.000019844832,0.000019780857,0.000020757598,0.000019251385,0.00002025627,0.0000196604,0.000020508276,0.000018825263,0.000020169431,0.00001979835,0.000020903546,0.000019282033,0.000020403402,0.000019601857,0.000020403248,0.000018461438,0.000019700206,0.000019651214,0.000020637077,0.000019135723,0.000020160296,0.000019535086,0.000020406165,0.000018747598,0.000020126257,0.00001975518,0.000021021853,0.000019432391,0.00002057645,0.000019760926,0.000020543472,0.000018651142,0.00001975015,0.000019701803,0.000020570407,0.000019112778,0.00002001257,0.000019480485,0.000020376354,0.00001854416,0.000019967789,0.000019697989,0.000021135185,0.00001943886,0.00002060056,0.000019816238,0.000020635463,0.000019060613,0.000020374237,0.00002010069,0.000020918284,0.00001960169,0.000020332485,0.000019642726,0.000020139294,0.000018915549,0.00002012242,0.000019942612,0.000021253487,0.00002031384,0.000021299284,0.000020705045,0.000021238351,0.000019917788,0.000020562718,0.000020601192,0.000021282369,0.000020280431,0.000020626727,0.00002000448,0.000020285384,0.000018823648,0.000019834144,0.000019441399,0.000020741489,0.00001930172,0.000020671941,0.000019767165,0.000020450118,0.000018793531,0.000019841427,0.000019830586,0.000021059235,0.000019638866,0.000019617866,0.000018974666,0.00001972124,0.000019160156,0.000019690626,0.000020219426,0.000020783169,0.000020859874,0.000020809644,0.000021105094,0.00002340589,0.000024509165,0.000025966812,0.000017350778,0.000011384793,0.000013221235],[0.0000159493,0.000017193244,0.000014704333,0.000020260984,0.00003203153,0.000031653777,0.000027365248,0.000024047049,0.000021447056,0.00002103216,0.000019655057,0.000019740433,0.000018907216,0.000019572923,0.000019048182,0.000020072624,0.000019834935,0.000020760586,0.000019505096,0.000019509785,0.000019345985,0.000020209442,0.000019398933,0.000019659856,0.000018829232,0.000019485315,0.000018558969,0.000018546423,0.00001815094,0.00001922847,0.000018515444,0.000019065412,0.000018484428,0.000019760399,0.000018951625,0.000019578449,0.000019379,0.000020757714,0.000019695904,0.000020406904,0.00001959201,0.000020613768,0.00001934292,0.000019288176,0.000019077888,0.00002013843,0.000019588346,0.000020099042,0.000019477679,0.00002038788,0.000019243971,0.000019116498,0.00001903235,0.00001990972,0.000019348272,0.000019656181,0.000019147754,0.000019980685,0.000018881847,0.000018662047,0.000018712197,0.0000198532,0.000019093834,0.000019356188,0.000018761604,0.000019748322,0.000018656354,0.000018655803,0.000018677876,0.000019751826,0.000018922423,0.00001912257,0.000018641931,0.00001955794,0.000018488536,0.000018263718,0.000018363862,0.00001961577,0.000018812038,0.000019095727,0.00001860909,0.000019709358,0.000018652583,0.000018699513,0.000018728353,0.000019885752,0.000019025254,0.000019240393,0.000018747563,0.000019678406,0.000018614128,0.000018382418,0.000018455032,0.000019686046,0.000018898529,0.000019159588,0.000018642624,0.000019703552,0.000018628441,0.000018645878,0.000018677183,0.000019815503,0.000018975026,0.00001918217,0.00001867631,0.0000195794,0.00001852083,0.000018296178,0.000018385994,0.00001964696,0.00001888934,0.000019177578,0.000018683275,0.000019744406,0.000018657385,0.000018696785,0.00001873557,0.000019868314,0.00001904753,0.000019299547,0.00001878452,0.000019691812,0.000018616205,0.000018398008,0.000018479264,0.000019692974,0.000018935962,0.00001922746,0.000018706898,0.000019761586,0.000018692026,0.000018728693,0.000018750585,0.000019880785,0.00001905069,0.00001929031,0.0000187926,0.000019699399,0.00001863514,0.000018409364,0.000018466491,0.000019651645,0.000018871244,0.000019117828,0.000018604705,0.000019654006,0.0000186199,0.000018661924,0.00001869256,0.00001982911,0.000019016275,0.000019250008,0.00001879036,0.000019716652,0.000018668456,0.000018434663,0.000018515462,0.000019730533,0.0000189541,0.000019209849,0.000018690527,0.000019738512,0.000018677092,0.000018689654,0.000018716479,0.000019838626,0.000018986539,0.000019197174,0.00001869609,0.000019610889,0.000018519117,0.00001828845,0.000018363056,0.00001961085,0.000018812629,0.000019119962,0.00001860366,0.000019661036,0.000018597555,0.000018638304,0.000018666338,0.000019835561,0.00001910254,0.00001939281,0.000018871819,0.00001982792,0.000018710323,0.000018511826,0.000018458939,0.000019720845,0.000018830884,0.000019052488,0.000018423045,0.000019572139,0.000018539615,0.000018606213,0.000018604243,0.000019969295,0.000019124813,0.000019568555,0.000018943638,0.00002001427,0.00001887119,0.000018927929,0.000018912915,0.000020219157,0.00001912527,0.00001957029,0.000019009565,0.000019949897,0.000018791132,0.000019042734,0.00001917275,0.000020327252,0.000019791216,0.000020500805,0.00002004313,0.000020967813,0.000019796444,0.00001966852,0.000019314093,0.0000201144,0.00001957996,0.000019697276,0.000019099023,0.000019672832,0.000018915747,0.000018701458,0.000018583834,0.000019243787,0.000018866403,0.00001893683,0.000018711644,0.00001949658,0.000018840872,0.00001877714,0.00001855366,0.000019608739,0.00001914737,0.000019314331,0.000018527455,0.000019047111,0.000019439749,0.000019909397,0.000019933106,0.000020903884,0.000020736228,0.000021451433,0.000021256748,0.00002217476,0.000022874217,0.000026675425,0.000026124537,0.000017555383,0.000010705694,0.000013351845],[0.000016242027,0.000017159762,0.000013474927,0.000022315196,0.00003029143,0.000030089204,0.0000266667,0.000023758175,0.000021942918,0.000021354295,0.0000208838,0.000020183477,0.000020791673,0.000019975923,0.000020341853,0.000020070253,0.000020889596,0.000020952963,0.000020754767,0.00001986693,0.0000206143,0.000020786023,0.000020675154,0.000019796726,0.000020295987,0.000020105193,0.00002035666,0.000019357536,0.000019854488,0.000019793404,0.0000202,0.00001922218,0.000020253392,0.000020048521,0.00002101043,0.000020144942,0.000021411232,0.00002110912,0.000021400574,0.000020531857,0.000021498947,0.000021124888,0.00002147536,0.000020166719,0.00002095548,0.000021050319,0.000021101108,0.000020437794,0.000021314825,0.000020962836,0.000021129767,0.00002001442,0.00002090163,0.000020910844,0.000021073078,0.000020098887,0.000020887364,0.000020590014,0.000021003178,0.000019524154,0.000020574527,0.0000206406,0.00002072998,0.000019770936,0.000020494297,0.000020273876,0.00002063373,0.00001945095,0.000020557014,0.0000205577,0.000020735892,0.000019607953,0.00002035041,0.000020116127,0.00002052297,0.00001916646,0.000020308844,0.000020381718,0.00002056631,0.000019500949,0.000020426296,0.000020217556,0.000020602663,0.000019463567,0.000020648218,0.000020602545,0.000020850764,0.00001970528,0.00002051172,0.000020281881,0.000020712749,0.000019307296,0.000020403364,0.000020473435,0.000020633257,0.000019581996,0.00002045905,0.00002023814,0.000020595593,0.00001942172,0.000020594944,0.000020558287,0.000020794607,0.000019637275,0.00002044132,0.000020186404,0.000020629579,0.000019246576,0.00002035136,0.000020451715,0.000020645974,0.000019618426,0.000020494923,0.000020261063,0.00002062297,0.00001946533,0.000020647232,0.000020597536,0.000020865466,0.000019742072,0.0000205607,0.000020292426,0.000020721462,0.000019311366,0.000020423318,0.000020494454,0.000020663898,0.00001961854,0.000020510877,0.00002026912,0.000020638552,0.000019475876,0.000020657357,0.000020598654,0.000020863714,0.000019736688,0.000020562817,0.000020297479,0.000020736032,0.000019327765,0.000020417026,0.00002044881,0.00002059459,0.000019541254,0.000020416112,0.000020195626,0.000020564286,0.000019435245,0.000020603018,0.000020555855,0.000020818517,0.000019724062,0.000020540729,0.000020325468,0.00002075532,0.000019358811,0.0000204523,0.00002051843,0.000020682273,0.000019647221,0.000020488727,0.0000202703,0.000020637704,0.000019477122,0.000020618407,0.000020600386,0.000020814448,0.000019670226,0.00002046147,0.000020207495,0.000020607164,0.00001919807,0.000020309948,0.00002039465,0.000020544314,0.000019501582,0.000020428304,0.000020202506,0.000020532561,0.000019411904,0.000020612903,0.000020571564,0.000020890633,0.000019841691,0.000020688369,0.000020449861,0.00002083834,0.000019382956,0.000020371692,0.000020460455,0.000020548998,0.000019514158,0.000020115436,0.000020075018,0.000020533775,0.000019416608,0.000020595493,0.00002065259,0.000020970294,0.000019776988,0.000020793954,0.000020502897,0.000020964473,0.000019636453,0.000020975533,0.000020765377,0.000020787073,0.000019836336,0.000020733281,0.000020310432,0.000020575077,0.000019858293,0.000021117476,0.000021117436,0.000021380807,0.000020894815,0.000021789652,0.000021643955,0.000021715261,0.000020542022,0.000020906056,0.000020914433,0.0000207087,0.000020096722,0.000020258472,0.000020271962,0.000020316747,0.000019639898,0.000020289446,0.000020163547,0.000020460493,0.000019552383,0.000020420162,0.000020422032,0.000021117516,0.000020189811,0.000020442141,0.00002078091,0.000020340476,0.00002030286,0.000019655563,0.0000201543,0.00002092758,0.000021316717,0.00002128669,0.000021812915,0.000021040005,0.000021694997,0.000021379277,0.000021964002,0.000023746214,0.000025102312,0.000026944568,0.000018300801,0.0000111029885,0.000013339742],[0.00001559551,0.0000153821,0.000013817552,0.000020229474,0.000029439814,0.000028687822,0.000024048632,0.000022729462,0.000020034473,0.000020493417,0.000019520598,0.000020411539,0.000019070194,0.000019757063,0.00001910928,0.000020021294,0.000019389889,0.000020696005,0.00001963778,0.000020336092,0.000019722764,0.000020729665,0.00001972474,0.000019833235,0.000019170848,0.00002025428,0.000019649602,0.000020020969,0.000019239016,0.00001992256,0.000018973687,0.000019217745,0.00001854255,0.000019876974,0.000019324963,0.000020348469,0.000019696656,0.000020742202,0.00001971385,0.000020217036,0.000019536428,0.000020761061,0.000020111946,0.00002042285,0.000019779025,0.000020647194,0.000019790554,0.000020346433,0.000019530187,0.00002080754,0.000019850984,0.00002032632,0.000019765184,0.000020618938,0.000019764997,0.000019976133,0.000019395326,0.000020371011,0.000019764677,0.000019770312,0.000019499888,0.00002031452,0.000019443494,0.000019736724,0.000018857283,0.000020101917,0.000019171213,0.000019702293,0.000019355008,0.000020339041,0.000019377614,0.000019544868,0.000018920979,0.000019927707,0.000019276462,0.000019311072,0.000019193842,0.000020054238,0.000019212375,0.000019536279,0.000018759652,0.000020079404,0.000019159754,0.00001974015,0.000019354047,0.000020324265,0.000019376856,0.000019613637,0.000019030516,0.000020099462,0.000019461117,0.000019496505,0.00001932371,0.000020152993,0.000019296915,0.00001959952,0.000018800183,0.000020090609,0.00001916328,0.000019702742,0.000019309618,0.000020268406,0.000019324667,0.00001951948,0.00001894792,0.000020007152,0.00001938275,0.000019442883,0.000019300061,0.000020145038,0.000019315143,0.000019656987,0.000018848186,0.00002012098,0.000019191646,0.000019751657,0.000019367471,0.00002033551,0.000019403133,0.000019645837,0.000019059886,0.000020108339,0.0000194498,0.000019500987,0.00001933549,0.000020184632,0.000019329904,0.000019639972,0.000018832823,0.000020146555,0.000019224088,0.0000197811,0.000019379924,0.000020343212,0.0000194018,0.000019643176,0.000019072904,0.000020116453,0.000019466519,0.00001952607,0.000019353163,0.000020142828,0.000019270103,0.000019569787,0.00001876903,0.000020064128,0.000019166077,0.000019721992,0.000019338348,0.000020299374,0.000019380219,0.000019639936,0.000019093834,0.000020154761,0.000019527748,0.00001957186,0.000019387078,0.000020215359,0.00001937693,0.000019683193,0.00001886149,0.000020132382,0.000019210085,0.000019748624,0.000019366787,0.0000203257,0.000019384655,0.000019595504,0.000018995883,0.000020023224,0.0000193415,0.000019359992,0.000019201476,0.000020048386,0.000019193403,0.000019497416,0.00001872646,0.000020066309,0.000019133971,0.000019668612,0.0000193189,0.000020298658,0.00001943482,0.000019722971,0.000019184821,0.000020266047,0.000019572792,0.00001954513,0.000019243109,0.000020112559,0.000019216974,0.00001945991,0.000018585057,0.000019861911,0.000018939701,0.00001952611,0.000019228048,0.000020327581,0.00001934021,0.000019648685,0.000018999453,0.00002015157,0.000019341574,0.000019546733,0.000019193201,0.000020199037,0.000019208619,0.000019602214,0.000018860304,0.000020148575,0.000019421886,0.000020118314,0.000019702817,0.00002078293,0.000020110352,0.000020623971,0.000020178357,0.000021356986,0.000020782574,0.000020927979,0.000020055175,0.000020716285,0.00002001614,0.00002012144,0.000019167155,0.000020058007,0.000019490688,0.000020038811,0.000019485575,0.00002004095,0.000019467336,0.000019507032,0.000019284993,0.000020373594,0.000020592392,0.000021310963,0.00002079094,0.000021217864,0.000020343832,0.000020023834,0.000019218514,0.000019847217,0.000021227923,0.000021404983,0.000021259912,0.000021237987,0.000021199014,0.000021744874,0.00002107171,0.000021324484,0.000022426326,0.000024837354,0.000025161704,0.000017382543,0.000010850249,0.000013496198],[0.000015705733,0.000014168401,0.000013173749,0.000019346038,0.00003136163,0.00003070934,0.000027289827,0.000023082568,0.00002138872,0.00002104811,0.00002119018,0.000020028972,0.000020517373,0.000019585339,0.000020120406,0.000019218955,0.00002029947,0.000020250225,0.000021295138,0.00001988103,0.000020897605,0.000020645224,0.000020867934,0.000019813782,0.000020311516,0.000019741261,0.000020708898,0.000019641902,0.000020468866,0.000019826313,0.000020357786,0.000018973,0.000019952238,0.000019432353,0.000020847843,0.000019633586,0.000021062751,0.00002043485,0.000021095315,0.00001994598,0.000020770409,0.000020394747,0.0000218104,0.00002023123,0.00002137147,0.0000206833,0.000021499582,0.000020018946,0.000020879397,0.000020350895,0.000021318463,0.000020064932,0.000020974954,0.000020534011,0.000021101172,0.00001998547,0.000020616364,0.000020302297,0.000021409985,0.000019809759,0.000020892903,0.000020421741,0.00002114452,0.000019621271,0.000020262647,0.000019845987,0.000020848518,0.000019443809,0.000020643412,0.000020257892,0.000020805062,0.000019533354,0.000020216168,0.000019863692,0.000020849413,0.000019344896,0.000020501804,0.000020163892,0.000020948368,0.0000193829,0.000020225965,0.000019767203,0.000020753023,0.00001941333,0.000020590976,0.000020186193,0.000020819372,0.000019609037,0.00002033107,0.000020015015,0.000021079408,0.00001955184,0.000020694899,0.00002028432,0.000021051523,0.000019465238,0.000020268308,0.000019798577,0.000020761061,0.000019406425,0.00002054596,0.000020139314,0.000020756786,0.000019534209,0.000020240726,0.000019946665,0.00002103601,0.000019528026,0.000020698157,0.000020296085,0.000021091593,0.000019524135,0.000020329597,0.000019816125,0.000020793577,0.000019457239,0.000020618054,0.00002020817,0.00002083254,0.000019625088,0.00002034878,0.000020021618,0.000021084274,0.000019547368,0.000020710102,0.000020313124,0.000021095295,0.00001949987,0.000020301697,0.000019838133,0.000020824833,0.000019483196,0.000020622125,0.000020205684,0.000020828029,0.000019635403,0.000020369964,0.00002005265,0.000021111051,0.000019576526,0.000020729802,0.000020280586,0.000021022735,0.000019430649,0.000020233758,0.000019775915,0.000020746238,0.000019438043,0.000020577352,0.000020187887,0.000020815043,0.00001965275,0.000020386364,0.000020085474,0.000021157512,0.000019632877,0.000020770389,0.00002034684,0.000021126902,0.000019567082,0.000020338866,0.00001986301,0.00002082773,0.000019464793,0.000020624859,0.000020222147,0.000020824335,0.00001960124,0.000020294594,0.000019951876,0.000020953623,0.000019407278,0.000020536401,0.000020153628,0.000020926782,0.000019365994,0.000020169951,0.000019721503,0.000020735537,0.00001938876,0.000020522344,0.000020133592,0.000020848916,0.000019692787,0.00002044132,0.000020137144,0.00002119113,0.00001961895,0.000020558718,0.000020101206,0.000020780732,0.000019300081,0.000019973275,0.000019445126,0.000020570309,0.000019042536,0.000020401572,0.000020012629,0.000020794649,0.000019407944,0.000020357864,0.000019916935,0.000021106182,0.000019343364,0.00002049041,0.000020024847,0.000020705165,0.000019299785,0.000020166028,0.000019754238,0.000020777838,0.000019630816,0.000020749245,0.000020413583,0.00002121564,0.000020524534,0.000021176907,0.000021141615,0.000022573993,0.000021056143,0.0000214736,0.00002083872,0.000021403514,0.000020269605,0.000020377056,0.000019849489,0.000020674346,0.000019692656,0.00002050734,0.000019977277,0.000020415762,0.000019699342,0.000020243468,0.000020412532,0.000021999618,0.000021246577,0.00002194564,0.000021520587,0.000021451944,0.000020249277,0.000019889054,0.00001984962,0.000021021031,0.000020928359,0.000021260887,0.000020814903,0.000020917503,0.000020663032,0.000020119542,0.000020335723,0.000022011474,0.000023499042,0.000025853227,0.000017838978,0.00001141973,0.000012968892],[0.000016331835,0.000013847946,0.000014038731,0.000019839837,0.000032675583,0.000030496907,0.000025128445,0.000022305792,0.000019794801,0.00002023569,0.000019058703,0.000019656012,0.000018915802,0.00001944392,0.000018508346,0.00001915084,0.000018837583,0.00002023204,0.000019211808,0.00001977846,0.000019613843,0.000020705205,0.000019720244,0.00001992706,0.000018945644,0.000019755387,0.000019030082,0.000019216424,0.000019004836,0.000019585303,0.000018767365,0.000018935096,0.000018330304,0.000019539613,0.000018947234,0.000019609748,0.00001958592,0.000020622676,0.000019563051,0.000019799445,0.000019198511,0.00002024615,0.000019621646,0.0000196284,0.000019668669,0.00002024366,0.000019561558,0.000019751713,0.000019282272,0.00002042657,0.000019523279,0.000019918627,0.000019773555,0.000020625232,0.000019757705,0.000019961906,0.000019521156,0.000020329093,0.000019584257,0.000019416608,0.000019575984,0.000020124971,0.000019335379,0.000019380848,0.000018931882,0.000020043914,0.000019117137,0.00001943682,0.000019455292,0.000020409025,0.000019435132,0.000019671876,0.000019236282,0.000020107438,0.000019276167,0.000019126419,0.000019288305,0.000019965371,0.000019137093,0.000019272602,0.000018877345,0.000020032869,0.000019100371,0.000019464736,0.000019444198,0.00002044218,0.000019469695,0.000019744068,0.000019291045,0.000020215803,0.000019414867,0.000019282383,0.000019408999,0.000020056055,0.000019230321,0.00001935224,0.000018922947,0.000020044812,0.000019085386,0.000019431964,0.000019401077,0.000020366757,0.0000194018,0.000019652807,0.000019209334,0.000020134034,0.00001935737,0.00001925324,0.000019420571,0.000020077738,0.000019274881,0.000019427665,0.000018976294,0.000020071935,0.000019105764,0.0000194761,0.000019452063,0.00002043033,0.000019468374,0.000019735144,0.000019295094,0.000020212314,0.00001940676,0.000019278523,0.000019425033,0.00002009584,0.000019269404,0.000019378353,0.00001893701,0.000020073372,0.000019130888,0.000019493902,0.00001946394,0.000020446332,0.000019479947,0.000019755349,0.000019332723,0.000020249568,0.000019432317,0.000019289942,0.000019429406,0.00002004749,0.000019199464,0.000019304813,0.000018889392,0.000019995898,0.000019081528,0.000019452842,0.00001944403,0.000020427584,0.000019487768,0.000019763394,0.00001934447,0.000020266683,0.000019483123,0.000019353605,0.000019483941,0.000020119849,0.000019301646,0.000019427685,0.000018992154,0.000020105157,0.000019141764,0.000019476882,0.000019454195,0.00002042926,0.00001947298,0.000019732528,0.00001927297,0.000020169797,0.000019318439,0.000019160867,0.00001929121,0.000019959909,0.00001912963,0.000019261155,0.000018841087,0.000019980953,0.000019059886,0.000019432817,0.000019396768,0.000020364681,0.000019517116,0.000019823308,0.000019373696,0.000020318277,0.000019508463,0.00001933724,0.000019318513,0.00001991143,0.000019010908,0.000019134408,0.000018574337,0.000019710542,0.000018785004,0.000019120254,0.000019077543,0.000020218751,0.000019264902,0.000019536521,0.00001910283,0.000020130614,0.000019239586,0.00001912051,0.000019000776,0.00001981038,0.000018796685,0.000019003675,0.00001876894,0.0000198217,0.000019059067,0.000019481598,0.000019654193,0.000020660944,0.000020032563,0.00002029833,0.000019959545,0.000020903364,0.000020288962,0.000020138008,0.000019823061,0.000020131556,0.000019591167,0.00001962318,0.000018918363,0.000019813046,0.000019172036,0.000019630741,0.000019336263,0.000020238254,0.000019700281,0.000020017054,0.000019497305,0.000020457841,0.000020018888,0.000020581023,0.000020424312,0.000021001935,0.000020607557,0.000020032698,0.000019118577,0.000019608158,0.000020395037,0.000020480993,0.000020710891,0.000020662876,0.000020799089,0.000021307591,0.0000206692,0.000021083892,0.00002126908,0.00002358647,0.000025135345,0.000018662226,0.00001099381,0.0000134142165],[0.000016089098,0.000014234304,0.000012267156,0.000021476138,0.000032743334,0.00003178924,0.000027078184,0.000023516754,0.000021640159,0.000021157148,0.000020550055,0.000019991741,0.000020639083,0.00002007366,0.000020324964,0.000019864734,0.000020611193,0.000020539574,0.000020622065,0.000019878833,0.000020957938,0.000021176182,0.000021126358,0.0000203893,0.000020361456,0.000020206493,0.000020131749,0.000019381236,0.000020046647,0.000020134146,0.000020585205,0.0000196226,0.000020089823,0.000020163969,0.000020738205,0.000019899164,0.000021152486,0.000020929416,0.000021212805,0.000020454467,0.000020799369,0.000020885016,0.00002109803,0.000020176685,0.00002073765,0.000020879537,0.00002101512,0.00002026282,0.000021078906,0.000021008625,0.000021105921,0.000020208188,0.00002114468,0.000020968553,0.000021259122,0.000020542297,0.000021018946,0.000020997028,0.000021002475,0.000019964857,0.000020609856,0.00002071587,0.000020852196,0.000019908788,0.000020666028,0.000020718853,0.00002089137,0.000019829717,0.000020915788,0.000020718458,0.000021087328,0.00002025059,0.000020836613,0.00002073095,0.00002077982,0.000019727937,0.000020496056,0.000020587384,0.000020763022,0.000019753126,0.000020696736,0.000020642432,0.00002083093,0.000019819017,0.000020914493,0.00002075261,0.000021123982,0.000020293935,0.000020885313,0.000020799685,0.00002090295,0.000019842031,0.000020555484,0.000020664529,0.000020844822,0.000019831967,0.000020732747,0.000020654266,0.000020800737,0.00001976939,0.000020861247,0.000020697684,0.000021057629,0.000020224981,0.000020813277,0.000020715988,0.000020858322,0.000019829378,0.000020562404,0.00002068326,0.000020894657,0.000019899866,0.000020789334,0.000020668393,0.000020827296,0.000019816729,0.000020911879,0.000020744515,0.000021110189,0.000020287956,0.000020891786,0.000020812702,0.000020920197,0.000019855566,0.000020593197,0.00002069861,0.000020871435,0.000019841313,0.000020744497,0.000020680696,0.000020834765,0.00001981949,0.00002091154,0.000020757378,0.000021120699,0.000020300537,0.000020915908,0.000020828846,0.000020910782,0.000019838171,0.000020573782,0.00002066055,0.000020824931,0.000019784817,0.000020688683,0.000020612983,0.000020775082,0.000019807529,0.00002088854,0.000020732055,0.00002110288,0.000020311632,0.000020906815,0.00002084657,0.000020957557,0.000019909321,0.000020621495,0.0000207151,0.000020899499,0.000019901652,0.000020788779,0.000020716561,0.000020867315,0.000019835541,0.000020917025,0.000020757141,0.000021134078,0.000020292639,0.000020865067,0.0000207534,0.000020807363,0.000019732246,0.000020465548,0.000020590407,0.000020754647,0.00001976543,0.00002065653,0.000020618074,0.000020780433,0.00001977005,0.000020862362,0.000020712057,0.0000211122,0.000020363514,0.000020945212,0.00002089143,0.000020898722,0.000019873429,0.000020424526,0.00002051657,0.000020592646,0.000019631863,0.000020262665,0.000020288304,0.000020579022,0.000019497193,0.00002060734,0.000020593197,0.000021071048,0.000020142366,0.000020908908,0.000020712372,0.000020895315,0.000019692805,0.000020454856,0.000020405758,0.000020554231,0.000019753275,0.000020599226,0.00002046832,0.00002052432,0.00001977946,0.00002093323,0.000020946229,0.000021177171,0.000020913354,0.000021330688,0.00002138766,0.000021214768,0.000020426492,0.000020678406,0.000020815758,0.000020937263,0.000020189811,0.000020423064,0.00002057588,0.000020577138,0.000019713907,0.000020638336,0.00002062767,0.000021061947,0.000020554055,0.000020907872,0.000020590447,0.000020694979,0.000020007341,0.000020280297,0.000020982396,0.000020922591,0.000020314907,0.000019311386,0.000019701898,0.000019624395,0.000020454954,0.000020024656,0.000020896628,0.000020817843,0.00002131749,0.000020937283,0.00002122837,0.000022000144,0.000023013552,0.000025328856,0.000020185864,0.000011403897,0.000013412822],[0.000015755253,0.000014548486,0.000012629558,0.000018697516,0.000030240919,0.000031727213,0.000026320893,0.000024233961,0.000021075188,0.000021196205,0.000019522255,0.00001997337,0.000018863579,0.000019653444,0.000019292187,0.000020279967,0.000019566874,0.000020619626,0.000019430167,0.000019970303,0.000019574603,0.000021013857,0.000020027806,0.000020817446,0.000019326715,0.000020455851,0.000019247513,0.000019631527,0.000019181949,0.000020385645,0.000019757477,0.000020322444,0.000018873241,0.000020076932,0.000019188186,0.000019878908,0.000019453695,0.0000207933,0.000020051924,0.00002081951,0.000019526537,0.000020836254,0.000019705712,0.00002005858,0.000019309968,0.000020398636,0.000019758138,0.000020442705,0.000019461786,0.000020822032,0.000019667807,0.00002013505,0.000019452007,0.000020640224,0.000019806283,0.000020617208,0.000019641153,0.000020927322,0.000019535513,0.000019800767,0.000019269735,0.000020272273,0.000019421312,0.000019897838,0.00001911329,0.000020467149,0.000019290126,0.000019704283,0.000019158511,0.000020360467,0.000019419553,0.000020239953,0.000019295352,0.000020586715,0.000019199224,0.000019568648,0.000019137,0.000020234993,0.000019287918,0.0000197699,0.00001902451,0.000020408832,0.000019225461,0.000019671765,0.000019139208,0.00002042768,0.00001947391,0.000020281437,0.000019307003,0.000020659032,0.00001928551,0.000019669174,0.000019163226,0.000020286352,0.00001933796,0.000019862175,0.000019057941,0.000020427271,0.00001919507,0.000019625162,0.000019111578,0.000020411284,0.000019469935,0.000020265623,0.00001927194,0.000020593805,0.000019239933,0.000019652338,0.000019168581,0.000020308727,0.000019393605,0.000019938409,0.00001910959,0.000020473435,0.000019249532,0.000019703552,0.000019161416,0.000020433663,0.000019500838,0.000020315583,0.000019352443,0.000020688112,0.000019312563,0.000019693405,0.000019200397,0.000020320176,0.000019361378,0.00001986835,0.000019080582,0.000020481773,0.000019249605,0.000019689538,0.00001915661,0.000020447582,0.000019506715,0.000020321786,0.00001936073,0.000020688623,0.000019287,0.000019657737,0.000019179972,0.000020284957,0.000019335803,0.000019837888,0.000019041809,0.000020419518,0.000019232833,0.000019685107,0.000019148794,0.00002041436,0.000019483754,0.000020316613,0.00001936725,0.00002070878,0.000019342277,0.000019738456,0.000019224342,0.000020339525,0.000019409314,0.000019936339,0.000019136362,0.00002051215,0.000019279074,0.000019712403,0.000019168727,0.00002043411,0.00001948329,0.00002028337,0.000019296951,0.000020599755,0.0000191885,0.000019555067,0.000019085386,0.000020218751,0.000019292831,0.000019801164,0.000019017218,0.000020409436,0.000019206622,0.000019644094,0.000019117902,0.000020435513,0.000019532776,0.000020379988,0.0000194207,0.000020844898,0.00001935606,0.000019703157,0.00001912806,0.000020265197,0.00001925403,0.000019636807,0.00001877431,0.000020110469,0.00001895054,0.000019385061,0.000018911347,0.000020277086,0.000019461359,0.000020263806,0.000019320245,0.00002066459,0.00001927321,0.00001971169,0.000019127185,0.000020374742,0.000019395085,0.000020013811,0.000019225114,0.000020388756,0.000019276224,0.000019662686,0.000019306193,0.000020492616,0.000020184632,0.000021165159,0.000020241343,0.0000214222,0.00001991853,0.000020249125,0.000019540992,0.000020620826,0.000020240957,0.000020610505,0.000019320356,0.000020516532,0.000019419182,0.000019870322,0.00001920338,0.000020583182,0.000020034779,0.000021056683,0.000019789628,0.000020906455,0.000019349638,0.000019963525,0.000019012901,0.000020633475,0.000020271345,0.000020717629,0.000018933164,0.000019605091,0.000019597988,0.000019872708,0.000019596475,0.000020293743,0.000020962296,0.000021789401,0.000021421853,0.000021890624,0.000022709224,0.00002431,0.000025186286,0.000018249284,0.000011660109,0.000013507891],[0.000015665448,0.00001455573,0.0000116738165,0.000017303073,0.000030388126,0.00003457528,0.000030731077,0.00002559774,0.000023235667,0.000022304579,0.00002163174,0.000019883288,0.00002030311,0.000019708568,0.000020617525,0.000019780366,0.000021045042,0.000020609168,0.00002118612,0.000019589785,0.000020859157,0.000020577472,0.000021633308,0.000020359883,0.000020842894,0.000020034415,0.000020512247,0.000019523986,0.000020598616,0.000020474175,0.000021707127,0.000020284746,0.00002073708,0.000019939018,0.000020532014,0.000019554509,0.000020882027,0.000020722331,0.000021990283,0.000020610682,0.00002129654,0.000020805399,0.000021538368,0.000020215879,0.000020929057,0.000020846252,0.000021779804,0.000020466661,0.000021192101,0.000020422052,0.000020873207,0.00001969288,0.000020699046,0.000020340864,0.000021336771,0.000020238911,0.000021121443,0.000020514653,0.00002094541,0.0000196895,0.000020619902,0.000020526826,0.000021091655,0.000019828167,0.000020601447,0.000019964402,0.000020451656,0.000019137036,0.000020331381,0.000019982763,0.000020984156,0.000019795198,0.00002073959,0.00002007452,0.00002050153,0.000019379202,0.000020461137,0.00002041142,0.000020973353,0.000019602978,0.000020494648,0.000019835958,0.000020302548,0.000019064757,0.000020293608,0.000020008429,0.00002098944,0.000019826748,0.000020738109,0.000020116164,0.000020594629,0.000019485538,0.000020551368,0.000020436917,0.000021043475,0.000019679514,0.000020556681,0.00001984133,0.000020274709,0.000019041716,0.000020280664,0.00002002987,0.000020982456,0.000019823174,0.000020698059,0.00002005946,0.000020550347,0.000019492563,0.000020565465,0.0000204579,0.000021119511,0.000019760304,0.000020638394,0.000019913346,0.00002035111,0.00001910826,0.000020313724,0.000020032963,0.000021014837,0.000019881865,0.000020797723,0.000020166353,0.000020631114,0.000019522422,0.00002059082,0.000020481402,0.000021086968,0.00001969735,0.000020600208,0.00001991743,0.000020340049,0.000019090137,0.000020308127,0.00002003793,0.00002101552,0.000019886207,0.00002080502,0.000020172547,0.000020606574,0.000019489999,0.000020559051,0.000020451365,0.000021056683,0.000019664598,0.00002057235,0.000019873429,0.000020305977,0.00001910498,0.000020290665,0.000020006311,0.000020975674,0.000019877183,0.000020804466,0.000020187425,0.000020643885,0.000019550125,0.000020608482,0.000020491052,0.000021115764,0.000019766316,0.000020652136,0.000019942137,0.000020371886,0.00001912,0.000020330392,0.000020034033,0.000020996187,0.000019841482,0.000020732294,0.000020071611,0.00002048738,0.000019364368,0.000020425305,0.00002037305,0.000020981295,0.000019637164,0.000020506439,0.000019841407,0.000020307603,0.00001906512,0.00002028755,0.00002002521,0.000021099882,0.000019949232,0.000020936444,0.000020313413,0.000020759022,0.000019499703,0.000020437034,0.000020408364,0.000020835261,0.000019534378,0.00002015107,0.000019605839,0.000020169393,0.000018764054,0.000020172069,0.000019946854,0.000021230293,0.000019906814,0.000020937881,0.000020285073,0.000020686928,0.000019638755,0.00002062897,0.000020492324,0.000021078766,0.000020051733,0.000020641977,0.000020019728,0.000020342668,0.000019366418,0.000020360174,0.000020386597,0.00002162256,0.000020977415,0.00002171404,0.000021373997,0.00002157426,0.000020625605,0.00002099851,0.000021095355,0.00002194859,0.000020863297,0.000020960599,0.000020091395,0.00002043986,0.000019338311,0.000020262587,0.000020029449,0.000021219765,0.000020628222,0.00002120953,0.000020429981,0.000020501393,0.000019732508,0.00002007791,0.000020689513,0.000021837144,0.000020917285,0.000020254183,0.000019580708,0.000020186539,0.000019596475,0.000019901405,0.000020324984,0.000020941177,0.000020991463,0.000020950125,0.000021229462,0.000023703611,0.00002463021,0.000026323101,0.000017563554,0.000011253177,0.000013009324],[0.000015859405,0.000013817051,0.000012079176,0.00001629442,0.000030196656,0.000032484382,0.000027839124,0.000024445302,0.00002174108,0.00002100502,0.00001956583,0.00001934901,0.000018796167,0.000019128844,0.000018725872,0.000019332207,0.000019445943,0.00002023893,0.000019117411,0.000019163757,0.000019126235,0.000020289563,0.000019517489,0.0000200599,0.000019258492,0.000020080992,0.000019030917,0.000019491468,0.000019117411,0.000020344454,0.00001968276,0.000020199961,0.000019602978,0.000020312795,0.000019402447,0.000019826011,0.00001978161,0.00002088862,0.000020132054,0.000020549174,0.000020266763,0.000021222095,0.00002017601,0.000020388445,0.000019864867,0.000020721698,0.000020030442,0.00002020765,0.000019843394,0.00002048642,0.000019417164,0.000019675816,0.00001958943,0.000020661651,0.000019815861,0.000020482848,0.000020023528,0.000020942134,0.000019515051,0.000019831437,0.000019667206,0.00002069034,0.000019563517,0.000019744632,0.000019390553,0.000020142445,0.000018954734,0.000019163408,0.000019224544,0.000020461059,0.00001948602,0.000020153742,0.000019615996,0.000020587284,0.000019151114,0.000019630721,0.000019525029,0.000020697013,0.000019436524,0.000019629935,0.000019247254,0.000020076972,0.000018882782,0.000019170793,0.00001922341,0.000020502313,0.000019478553,0.00002018059,0.000019623889,0.000020642035,0.00001924197,0.000019771313,0.000019589897,0.000020745247,0.000019475749,0.0000197295,0.000019287183,0.000020098925,0.000018870001,0.000019170117,0.000019233366,0.000020506048,0.000019468729,0.000020154357,0.000019604213,0.000020629403,0.000019259778,0.000019807358,0.000019646248,0.000020819172,0.000019569676,0.000019823496,0.000019360343,0.000020173971,0.000018937099,0.000019200488,0.00001925627,0.000020510995,0.000019519555,0.000020222242,0.00001969504,0.00002069786,0.000019300984,0.000019805091,0.000019652076,0.000020809546,0.000019529256,0.000019749396,0.000019325073,0.00002015997,0.000018918021,0.000019189085,0.000019255058,0.000020533305,0.000019532945,0.000020242773,0.000019705054,0.000020717056,0.000019313577,0.000019805751,0.000019625388,0.000020770764,0.000019493717,0.000019705618,0.000019302346,0.000020103698,0.0000188924,0.000019186376,0.000019241566,0.000020484822,0.000019483066,0.000020215666,0.000019703306,0.000020717549,0.00001930785,0.000019825538,0.000019654737,0.000020801272,0.000019546138,0.000019796935,0.000019368874,0.00002017782,0.00001894485,0.000019210416,0.00001925864,0.000020516647,0.00001949816,0.000020196283,0.000019625182,0.00002060968,0.000019161764,0.00001965691,0.000019512743,0.000020695552,0.000019449299,0.000019673584,0.000019277491,0.000020119924,0.000018925113,0.000019221356,0.00001926345,0.000020565896,0.000019632163,0.000020388268,0.000019786628,0.000020819609,0.000019335415,0.000019674748,0.000019461933,0.000020599971,0.000019377225,0.000019405556,0.000018904133,0.000019751693,0.000018690082,0.000018922694,0.000019116827,0.000020496154,0.000019692092,0.000020272542,0.000019767316,0.000020699736,0.000019395715,0.000019825178,0.000019777535,0.000020815818,0.000019668238,0.000019937497,0.00001964267,0.00002029475,0.000019254543,0.000019512334,0.000019741394,0.000020833333,0.000020428402,0.000021228187,0.000021050582,0.000021792104,0.000020428986,0.000020410389,0.000019908752,0.000020576354,0.00002000406,0.000020101359,0.000019540508,0.000019947976,0.00001898348,0.000019447889,0.000019259152,0.000020788522,0.000020076646,0.000021550017,0.000020560406,0.00002146144,0.000019868085,0.000020674346,0.000019787742,0.00002119006,0.000020461313,0.000020875437,0.000019669757,0.000019918227,0.000020362699,0.000020466387,0.000020384052,0.000021021291,0.000020934267,0.000021625943,0.000021088777,0.00002198523,0.000022875178,0.000026281263,0.000026312888,0.000018113022,0.000010816157,0.000013196961],[0.00001550462,0.000013464599,0.0000103375405,0.000016460443,0.000028119499,0.000033432323,0.000028156612,0.000024947025,0.00002252853,0.00002159437,0.000020539535,0.000020001791,0.000020250534,0.000019965772,0.000020138103,0.000019868428,0.000020603273,0.000020619962,0.000020419073,0.000019648609,0.0000206236,0.000020794905,0.000020873167,0.00002005114,0.00002070094,0.000020530819,0.00002076621,0.000019869583,0.000020559562,0.000020698018,0.000020943533,0.00002011043,0.000021033204,0.000020779045,0.000021307977,0.000020530331,0.000021604195,0.000021433847,0.000021504033,0.00002071913,0.000021777996,0.0000216719,0.00002235181,0.0000212832,0.000021641312,0.000021640879,0.000021238899,0.000020381427,0.000021305012,0.000021150834,0.000021393882,0.000020371594,0.000021425241,0.000021262264,0.000021391024,0.000020493633,0.000021583912,0.000021084454,0.000021417765,0.000020246749,0.000021258878,0.000021275348,0.000021026804,0.000019895731,0.00002078212,0.000020582182,0.000020827136,0.00001969414,0.000021051063,0.000020882882,0.000021262002,0.00002013701,0.000021256586,0.00002067965,0.000021019789,0.000019971198,0.000021213069,0.00002113555,0.000021005459,0.000019736988,0.00002073342,0.000020472691,0.000020757834,0.000019708363,0.0000210819,0.000020843172,0.00002120945,0.000020129424,0.000021253973,0.000020718893,0.00002109266,0.000020066464,0.000021267537,0.000021130107,0.00002103156,0.00001977927,0.000020782456,0.000020488143,0.000020769456,0.000019715204,0.00002106522,0.000020806432,0.000021122692,0.000020083484,0.000021213677,0.000020707397,0.000021103686,0.00002013382,0.000021352893,0.000021203969,0.000021127446,0.000019855528,0.00002085341,0.000020546822,0.000020799804,0.000019746458,0.000021106665,0.000020871197,0.000021236834,0.0000201657,0.00002131251,0.00002078214,0.000021148997,0.00002012551,0.000021339822,0.000021214,0.000021096239,0.000019803316,0.000020819789,0.000020519605,0.000020773597,0.00001973172,0.000021109321,0.000020877069,0.000021249556,0.000020189485,0.000021327127,0.000020781008,0.00002114561,0.000020130443,0.000021327716,0.00002117283,0.000021066668,0.000019776422,0.00002077122,0.00002048318,0.0000207335,0.00001971825,0.000021073198,0.000020826103,0.000021161382,0.000020145288,0.000021302856,0.000020779404,0.000021143916,0.000020129693,0.000021330197,0.000021195172,0.000021097569,0.000019840802,0.000020840527,0.000020545862,0.000020806689,0.000019738154,0.000021098514,0.00002085536,0.000021220556,0.000020127793,0.00002124524,0.00002066786,0.000021008465,0.000019982648,0.000021204049,0.000021111173,0.000020994286,0.000019764131,0.00002075732,0.000020518311,0.000020831547,0.000019781968,0.000021141172,0.000020882067,0.000021336833,0.00002029051,0.000021411823,0.000020821753,0.000021195396,0.000019998663,0.000020985859,0.00002107762,0.000020773063,0.0000196249,0.000020156702,0.00002022311,0.000020578178,0.000019527542,0.000020968773,0.000020936424,0.00002143542,0.000020290374,0.000021424836,0.00002089914,0.000021187938,0.000020240339,0.000021539867,0.000021180504,0.000021038959,0.000020061278,0.00002102468,0.00002066859,0.000020950543,0.000020232756,0.000021444132,0.000021360693,0.000021584467,0.000021186968,0.00002239429,0.000022183094,0.00002210169,0.00002119863,0.000021479682,0.000021482017,0.000020903426,0.000020329055,0.000020582887,0.000020598596,0.000020666934,0.000019934892,0.000021110309,0.00002091234,0.000021675392,0.000021054595,0.000022237275,0.000021227943,0.000021524978,0.000020953143,0.000021476426,0.00002130239,0.000021226586,0.000020982856,0.000020333746,0.000020502763,0.000021121203,0.000021316471,0.00002106245,0.000021641334,0.000021003478,0.000021394944,0.000021216145,0.000021410046,0.000023347638,0.00002478967,0.000027037748,0.000018955205,0.000011256237,0.000013269159],[0.000014941244,0.0000124347525,0.0000106524,0.000014290178,0.000025854335,0.000032416607,0.00002610078,0.000024122754,0.000021229524,0.000021049898,0.00001982533,0.0000199979,0.000019045605,0.00001950452,0.000019417923,0.000019907953,0.000019690928,0.000020563915,0.000019591298,0.000019972742,0.000019585488,0.000020569074,0.000019435132,0.00001965157,0.00001888572,0.000020164605,0.00001915579,0.000019997404,0.000019204646,0.000020401398,0.000019122806,0.000019511665,0.000018951752,0.000020296955,0.000019698571,0.000020552387,0.000020086758,0.000021015097,0.000019735257,0.000020048521,0.000019608775,0.000021122149,0.000020656766,0.000021228063,0.00002050237,0.000020948986,0.000019642557,0.000019731739,0.000019250487,0.000020559759,0.00001983821,0.000020334697,0.000019853484,0.000020766844,0.000019467037,0.00001991648,0.000019259667,0.000020606829,0.00001955488,0.000020081356,0.000019637519,0.000020606083,0.000019178784,0.00001925583,0.000018698194,0.000019970399,0.000019056613,0.00001952272,0.000019280526,0.000020383837,0.000019144101,0.000019641397,0.000018879415,0.000020232177,0.000019153487,0.00001981484,0.000019480669,0.000020539888,0.000019053125,0.000019162733,0.00001860561,0.000019943032,0.000019035599,0.000019567733,0.000019281353,0.00002038306,0.000019079762,0.000019594607,0.000018837654,0.000020262743,0.000019212577,0.000019921761,0.000019506771,0.000020554093,0.000019022369,0.00001916242,0.000018593266,0.000019961259,0.00001905883,0.000019594718,0.000019274568,0.000020353535,0.000019039157,0.00001954707,0.000018814333,0.000020250012,0.000019263929,0.00002000181,0.000019598418,0.00002064999,0.000019119489,0.000019256784,0.000018664576,0.00002000782,0.000019060775,0.000019574285,0.000019296915,0.000020392412,0.000019123392,0.000019633699,0.000018898834,0.000020326688,0.000019300338,0.00001998768,0.000019580613,0.000020637077,0.000019097311,0.000019211642,0.000018628158,0.000019971332,0.000019037469,0.000019567658,0.000019291983,0.00002039607,0.000019130652,0.00001966293,0.000018914161,0.000020325275,0.00001928987,0.00001999851,0.000019590289,0.00002061418,0.00001907525,0.000019191682,0.000018606568,0.000019943145,0.00001904319,0.0000195839,0.00001929745,0.000020390116,0.00001907807,0.000019603502,0.000018897987,0.000020321571,0.000019295057,0.000020004976,0.000019590234,0.000020632962,0.00001910693,0.000019237805,0.00001865148,0.000019993362,0.000019063811,0.000019579325,0.000019287092,0.000020382127,0.000019100371,0.00001961448,0.000018827275,0.000020203679,0.000019133297,0.000019813215,0.00001945839,0.000020507103,0.000019025598,0.000019142439,0.000018600997,0.000019977351,0.000019104962,0.000019645388,0.000019311441,0.000020416754,0.000019168854,0.000019733394,0.000018965764,0.000020318472,0.000019155952,0.000019696581,0.000019293953,0.000020352467,0.000018922748,0.000018908859,0.000018278997,0.000019599856,0.000018729354,0.00001931669,0.000019134335,0.000020371535,0.000019338255,0.000019856683,0.000019161143,0.000020501764,0.00001953788,0.00002009609,0.000019660718,0.000020619626,0.000019352405,0.000019461024,0.000019102667,0.000020316902,0.0000198046,0.000020510995,0.000020190793,0.000021084918,0.000020125875,0.000020819927,0.000020530037,0.000021856917,0.000021194022,0.000021549955,0.000020695492,0.00002120599,0.000020004614,0.00001983628,0.000018993765,0.000020102223,0.000019270858,0.000020011616,0.000019449002,0.000020780057,0.000019651421,0.000020539084,0.000019523948,0.000020836791,0.000019793933,0.000021088737,0.000019987718,0.000021345622,0.000019660869,0.000020038908,0.000019007228,0.00001981484,0.00002051972,0.000020910544,0.00002071984,0.000021086968,0.000020891706,0.000021593094,0.000020847623,0.000021173757,0.000022147708,0.000024457566,0.000024991268,0.000018168745,0.000011135437,0.000013548555],[0.000015282862,0.000011613776,0.000010369541,0.000014177431,0.000027296592,0.000035824723,0.000029368843,0.000024568233,0.000022513559,0.000021869111,0.000021394575,0.000019963374,0.000020093137,0.000019702555,0.00002029111,0.000019678162,0.000020984198,0.00002070086,0.000021623717,0.000019921154,0.000021149379,0.000020546608,0.000020850746,0.000019340561,0.00002017651,0.000019408073,0.000020383915,0.000019136636,0.000020411264,0.000019770803,0.00002027459,0.00001883259,0.000019978419,0.000019479741,0.000020650798,0.000019784213,0.000021319074,0.00002063389,0.000021027769,0.000019747851,0.00002067894,0.000020437072,0.00002183075,0.000020610032,0.00002171897,0.000020675745,0.000020991221,0.000019380275,0.000020264133,0.00001978463,0.000020984398,0.000019697707,0.000021084436,0.000020107916,0.000020586795,0.00001913585,0.000020318452,0.000019649246,0.000020767655,0.000019247733,0.000020630288,0.000020012207,0.000020313551,0.000018683917,0.000019655186,0.000019207577,0.00002021025,0.000018895607,0.00002033811,0.000019647821,0.000020246787,0.000018785666,0.000020001047,0.000019301628,0.000020329384,0.000018898274,0.000020392703,0.000019762698,0.000020146595,0.0000185309,0.000019603129,0.00001916222,0.000020139734,0.000018889068,0.000020345153,0.000019616986,0.000020194258,0.000018694253,0.000019911105,0.000019242943,0.000020344338,0.000018947758,0.000020456377,0.000019723893,0.000020114918,0.000018467408,0.000019568406,0.000019143426,0.00002015403,0.000018878749,0.000020318685,0.000019579009,0.000020136626,0.000018687659,0.00001989002,0.000019249293,0.000020410038,0.000019060448,0.000020575137,0.000019811097,0.000020223863,0.000018574177,0.000019648834,0.000019181161,0.000020166604,0.000018882567,0.000020326106,0.000019625742,0.000020216072,0.000018753983,0.000019972971,0.00001931857,0.00002046061,0.000019058285,0.0000205508,0.000019821871,0.00002021426,0.000018549485,0.000019622656,0.000019160612,0.000020146288,0.000018872557,0.000020321493,0.000019617715,0.000020217325,0.000018768082,0.000019990004,0.000019323654,0.00002043645,0.0000190488,0.000020538144,0.00001980649,0.000020193354,0.000018545645,0.00001959397,0.0000191433,0.00002013553,0.00001890208,0.000020333631,0.000019618015,0.000020163854,0.00001872005,0.000019942538,0.000019308292,0.0000204151,0.000019044097,0.00002055468,0.00001981125,0.000020209076,0.00001855803,0.000019625631,0.00001917178,0.000020174568,0.00001889087,0.000020324382,0.000019607149,0.000020188849,0.000018721657,0.000019906149,0.000019211642,0.000020270532,0.000018875582,0.000020359223,0.000019715204,0.00002010481,0.000018493422,0.000019588477,0.000019180028,0.00002024669,0.000018936937,0.000020349557,0.000019586423,0.000020270028,0.000018794644,0.000020056974,0.000019293382,0.000020356118,0.000018851277,0.000020127467,0.00001965243,0.000019855433,0.000018345518,0.000019207888,0.000018933,0.000019941052,0.000018608998,0.000020111906,0.000019529722,0.000020352758,0.000019115641,0.000020291904,0.000019734618,0.000020767597,0.000019423793,0.000020598029,0.00001988361,0.000020208594,0.000019100044,0.000020041029,0.00001970701,0.000020957359,0.000019973084,0.000021350306,0.000020522382,0.000021168287,0.00002025285,0.000021360367,0.000021296277,0.000022485194,0.000021365257,0.000021955835,0.00002119099,0.000021292764,0.000019957453,0.000020236403,0.000019627934,0.000020504873,0.000019095216,0.000020491541,0.000019597164,0.000020169009,0.000019018144,0.000020411713,0.000019657118,0.000020560092,0.000019600717,0.000020798932,0.000020243853,0.000020299123,0.000019327395,0.000019227331,0.000019131507,0.000020219388,0.000020075115,0.000020507787,0.00002017955,0.000020463849,0.00002033908,0.00001997457,0.00002013626,0.000022092883,0.000023384093,0.000025691015,0.000018414614,0.000011789443,0.000013198308],[0.000015645652,0.000012744243,0.000011597428,0.000015435618,0.000028802682,0.00003433699,0.000026790327,0.000023272036,0.000020572958,0.00002077982,0.000019586254,0.000019660773,0.00001895842,0.000019232173,0.000018757739,0.00001920025,0.00001917787,0.000020115032,0.000019364017,0.000019340006,0.000019494291,0.000020118505,0.00001919053,0.000019191755,0.000018283201,0.000019173005,0.000018230638,0.000018783678,0.000018443543,0.000019535944,0.000018382767,0.000018818228,0.000018196211,0.000019573912,0.00001891728,0.000019767449,0.000019801257,0.00002088557,0.000019563666,0.000019867744,0.000019130011,0.0000203796,0.000019437524,0.000019883515,0.000019779762,0.000020349848,0.000019251129,0.000019281299,0.000018686893,0.000019721429,0.000018893123,0.000019255885,0.000019310832,0.00002011605,0.000018986757,0.00001930632,0.00001869254,0.00001993995,0.000018713785,0.000019096018,0.00001894456,0.000019957453,0.00001859252,0.000018699478,0.000018175642,0.00001937342,0.00001843547,0.000018801222,0.000018818604,0.000019861569,0.00001858917,0.000018994979,0.00001841593,0.000019701465,0.000018459274,0.0000188702,0.000018640152,0.000019768031,0.00001837481,0.000018566172,0.000018130873,0.000019368857,0.000018424485,0.000018793478,0.000018799197,0.00001983927,0.000018524823,0.000018878984,0.000018286828,0.000019592326,0.00001839043,0.000018880604,0.000018663899,0.000019781535,0.00001834298,0.000018539722,0.000018080851,0.000019350467,0.000018411225,0.000018785666,0.000018791614,0.000019833575,0.000018521643,0.000018888402,0.000018307435,0.000019621664,0.000018484181,0.000019015768,0.000018811177,0.000019908883,0.0000184626,0.000018645414,0.000018153349,0.000019389943,0.000018429564,0.000018804882,0.000018810531,0.000019881145,0.000018580095,0.000018951263,0.000018362216,0.00001965933,0.000018494462,0.000019000088,0.000018780667,0.000019881487,0.000018447412,0.00001861942,0.000018125273,0.000019369078,0.000018415543,0.000018794859,0.000018799376,0.000019872274,0.0000185754,0.000018970413,0.000018379227,0.00001967835,0.000018499788,0.000019010184,0.000018778142,0.000019894364,0.000018441186,0.000018608183,0.00001811466,0.000019343659,0.000018408522,0.00001881193,0.000018829862,0.000019861436,0.000018540393,0.000018906154,0.000018322648,0.000019635103,0.000018448398,0.000018950559,0.000018761926,0.000019868388,0.000018427068,0.000018600607,0.000018128176,0.000019376726,0.000018433959,0.000018793638,0.000018788318,0.000019844436,0.00001853212,0.00001891582,0.00001831173,0.000019588497,0.000018375109,0.00001883859,0.0000186377,0.000019755651,0.00001836353,0.00001854844,0.000018118548,0.000019417683,0.00001850323,0.000018846838,0.00001878984,0.000019881296,0.000018654504,0.00001904346,0.00001840517,0.00001973904,0.000018440798,0.00001876715,0.000018474753,0.000019519126,0.000018090579,0.00001831732,0.00001783755,0.000019182753,0.000018299685,0.000018814531,0.000018693629,0.000020007763,0.000018841589,0.000019420959,0.000018849965,0.000020051446,0.0000189232,0.00001936592,0.00001907234,0.000020085972,0.000018792995,0.00001906385,0.00001878047,0.000019888237,0.000019168325,0.000019839477,0.000019986479,0.000020974514,0.00002001318,0.000020702737,0.00002024926,0.000021369982,0.000020314828,0.00002057339,0.000020101455,0.000020529234,0.00001959752,0.000019445144,0.00001884389,0.000019516112,0.000018562208,0.00001883611,0.000018590074,0.00001971953,0.000018623006,0.000019359179,0.000018764465,0.00001992997,0.000018589984,0.000019501229,0.000018743773,0.00002025909,0.000018887267,0.00001926301,0.00001803888,0.00001929813,0.000019226343,0.000020218366,0.000019884557,0.000020510839,0.00002030896,0.00002144235,0.000020848996,0.000021518146,0.000021626087,0.000024305666,0.000025395611,0.000019200452,0.000011402874,0.000013854894],[0.000015442967,0.000013875534,0.000010890359,0.00001784519,0.00002965331,0.000035736382,0.000028451308,0.000023872504,0.00002181897,0.000021432457,0.000020745723,0.000019998795,0.000020353029,0.00001989019,0.000020180938,0.000019791949,0.00002040673,0.000020470312,0.000020374257,0.000019733694,0.000020758369,0.000020914533,0.000020762685,0.000019747851,0.000019964382,0.000019796047,0.000019834748,0.000018998873,0.000019907593,0.000019879648,0.000020282461,0.000019254287,0.00002001257,0.000020019594,0.000020591233,0.000019978495,0.000021188665,0.000020924808,0.000021124124,0.000020271209,0.000020950343,0.000020722726,0.000020770409,0.000019857573,0.000020659387,0.000020615105,0.00002070165,0.00001979112,0.000020533444,0.000020387026,0.000020547372,0.000019532386,0.000020618347,0.000020496682,0.000020804544,0.000019801448,0.000020677679,0.0000203365,0.000020496896,0.000019249754,0.000020237541,0.000020247657,0.000020425967,0.000019252138,0.000020156913,0.00002002431,0.000020338304,0.000019274532,0.000020469764,0.00002032822,0.000020602878,0.000019525774,0.000020484822,0.000020169144,0.000020358231,0.000019114403,0.000020047375,0.00001999481,0.000020250109,0.00001912921,0.000020112328,0.000020023472,0.00002029949,0.000019262881,0.00002041691,0.000020268599,0.000020495685,0.00001939786,0.000020337839,0.000020027977,0.000020212678,0.000019037016,0.000020037358,0.00001999891,0.000020270396,0.000019118977,0.00002008419,0.000019967676,0.000020253587,0.000019216463,0.000020391868,0.000020254492,0.000020459674,0.000019415424,0.000020356756,0.000020082984,0.000020315565,0.000019187035,0.0000201979,0.000020119733,0.000020364778,0.00001919311,0.00002014621,0.000020007608,0.000020315798,0.000019269424,0.000020461997,0.000020335996,0.000020571113,0.000019477104,0.000020420746,0.000020104619,0.00002031632,0.000019154932,0.000020163758,0.000020095189,0.000020348605,0.000019179279,0.000020120866,0.000019993666,0.00002030892,0.000019259502,0.00002045548,0.000020323665,0.000020562169,0.000019483958,0.000020440502,0.000020118543,0.000020325275,0.00001916701,0.00002017374,0.000020100439,0.000020349984,0.000019167412,0.000020096031,0.000019980876,0.00002026887,0.000019256784,0.000020435065,0.000020292831,0.000020473923,0.000019408499,0.000020346724,0.000020041312,0.000020226658,0.00001909345,0.000020118543,0.000020067784,0.000020303693,0.000019140889,0.000020105923,0.000019994237,0.000020306114,0.000019253644,0.000020430212,0.000020294052,0.000020525495,0.000019449633,0.000020379717,0.000020051886,0.000020236403,0.000019069066,0.00002004984,0.000020037109,0.000020276952,0.000019153287,0.000020140178,0.00002008061,0.000020375304,0.00001928643,0.000020433292,0.000020312486,0.00002063491,0.000019520374,0.000020427271,0.000020094192,0.000020278303,0.000018981144,0.000019754538,0.000019859182,0.000019977408,0.000018915765,0.000019856154,0.00001985763,0.000020342144,0.000019275636,0.000020487907,0.000020413036,0.000020821753,0.000019920375,0.00002087231,0.000020526022,0.000020565876,0.000019571447,0.000020521305,0.000020410584,0.000020526337,0.000019691623,0.000020539084,0.000020355516,0.000020482828,0.000019764018,0.000021009888,0.000020866779,0.000021306514,0.000020780295,0.000021681803,0.000021410944,0.000021052449,0.000020447891,0.000020733934,0.000020993944,0.000020842357,0.000020121939,0.00002049588,0.000020495236,0.000020258898,0.000019187419,0.000020155147,0.000019905883,0.000020493711,0.000019680696,0.00002071921,0.000020192334,0.000020115032,0.000019281353,0.000019867612,0.000020093254,0.000020226948,0.000019459447,0.00001908484,0.000019249073,0.00001949487,0.000020003947,0.000020123744,0.00002076209,0.000020878999,0.00002133673,0.000021239039,0.000021749085,0.000022856882,0.000023986424,0.00002565363,0.000020151858,0.000011805465,0.000013909106],[0.00001527055,0.000016357928,0.000012393577,0.000018075938,0.000030265128,0.000034000102,0.000027255834,0.000024467574,0.000021039661,0.000021263177,0.000019722313,0.000020168067,0.000019065194,0.000019863804,0.000019556634,0.00002037045,0.000019636394,0.000020563091,0.000019553203,0.000019874813,0.000019778216,0.000020834685,0.000019707346,0.000020058293,0.000018727853,0.00001976494,0.000018570263,0.000018938057,0.000018517016,0.000019856758,0.000019073013,0.00001981743,0.000018598495,0.00002001217,0.00001916147,0.00001999113,0.00001953339,0.00002078741,0.000019748566,0.00002056515,0.000019416257,0.000020624328,0.000019254048,0.000019654868,0.000019035617,0.000020246787,0.000019466146,0.00002017145,0.000019218478,0.000020448711,0.000019255169,0.00001951896,0.000019108078,0.000020184267,0.000019425313,0.0000200292,0.000019102321,0.000020293219,0.000018852374,0.000019101373,0.000018657298,0.000019976971,0.000019065066,0.000019626697,0.000018792063,0.00002010974,0.000019019577,0.000019397008,0.000019068848,0.000020217421,0.000019249568,0.000019775876,0.00001892867,0.000020177704,0.000018834098,0.000019094634,0.00001854874,0.000019824745,0.000018896671,0.000019483216,0.000018741253,0.000020079633,0.000018995323,0.000019382547,0.000019030953,0.000020161393,0.000019131016,0.000019639805,0.00001879149,0.000020025494,0.000018673281,0.000018965204,0.000018487708,0.000019853635,0.000018909326,0.00001948093,0.000018690082,0.000020019193,0.000018935312,0.000019327174,0.000019012195,0.00002014523,0.00001913618,0.000019650914,0.000018811517,0.000020096299,0.000018787978,0.000019109135,0.000018640152,0.000019989471,0.000018997858,0.000019561632,0.000018751032,0.000020081894,0.000018989293,0.000019400597,0.000019081765,0.0000202376,0.000019225536,0.00001973441,0.000018862553,0.000020113748,0.00001876742,0.000019078434,0.000018611378,0.000019959489,0.00001898444,0.000019548168,0.000018736482,0.00002007383,0.000018984927,0.00001939011,0.00001906054,0.00002021642,0.000019207795,0.000019729161,0.000018865323,0.000020128735,0.000018782495,0.00001910571,0.000018630573,0.000019978705,0.00001898672,0.000019534806,0.000018711804,0.0000200538,0.00001897689,0.000019377983,0.00001906025,0.00002019636,0.000019156922,0.000019651812,0.000018798031,0.00002003927,0.000018698658,0.000019018687,0.000018573628,0.00001992518,0.000018943134,0.000019495352,0.000018716622,0.000020054047,0.000018982339,0.000019381256,0.000019051871,0.000020210578,0.000019197303,0.000019702537,0.000018843604,0.000020057318,0.000018713607,0.00001900304,0.000018548422,0.000019886531,0.000018957391,0.000019559842,0.000018826988,0.000020168585,0.000019022751,0.000019389425,0.00001902841,0.000020212332,0.000019255112,0.000019812609,0.000018884799,0.000020127256,0.0000186772,0.000018864082,0.000018271105,0.000019635328,0.000018626451,0.000019262552,0.00001852627,0.000020029258,0.000018915494,0.000019411016,0.000018907145,0.000020264075,0.000019403724,0.000020173664,0.0000192084,0.00002061884,0.000019207375,0.000019611767,0.000019114019,0.000020438769,0.000019469675,0.000020122114,0.000019198273,0.000020339972,0.00001916348,0.00001965693,0.000019231367,0.000020429452,0.000019981982,0.00002105064,0.000020207899,0.000021464713,0.000019975847,0.000020483396,0.000019488754,0.000020751162,0.000019947882,0.000020606143,0.000019520541,0.000020765003,0.000019364239,0.000019541067,0.000018917606,0.000020051006,0.000019384988,0.000020172722,0.000019151386,0.000020320273,0.000018692364,0.00001922264,0.00001819144,0.000019801182,0.00001878384,0.000019552008,0.000017755508,0.000018991084,0.000018431603,0.00001957182,0.000019267402,0.000020518508,0.000020588777,0.000021771724,0.0000214946,0.000022550865,0.0000236017,0.000025838339,0.000025184798,0.000018015104,0.000011766855,0.000014083868],[0.000015756816,0.000018007888,0.000013608199,0.000020142348,0.00003294517,0.000035087774,0.000031531246,0.000025224985,0.000023079005,0.000022061344,0.000021671962,0.000020031435,0.00002045226,0.00001985763,0.000020733243,0.00002008969,0.000021202875,0.00002079098,0.00002143258,0.000019961373,0.00002126472,0.000020956659,0.000021704393,0.000019967561,0.000020570173,0.0000195859,0.000020041238,0.000018760209,0.00002009404,0.000019741148,0.00002105781,0.0000194462,0.000020401807,0.000019595653,0.000020444051,0.000019543584,0.00002090807,0.000020522088,0.000021537668,0.000020256019,0.00002102861,0.000020287705,0.000020698986,0.000019421199,0.000020535224,0.000020150494,0.000021262791,0.00002006342,0.000020825606,0.000020085781,0.00002066236,0.00001939035,0.000020443329,0.000019996089,0.000021161162,0.000019806112,0.00002075443,0.000019811629,0.000020410096,0.000018763089,0.000020109605,0.000019793688,0.000020872967,0.00001951654,0.00002039644,0.000019697538,0.000020419773,0.00001919551,0.000020386733,0.000019988061,0.000021016502,0.000019607018,0.000020605847,0.000019710353,0.000020384168,0.000018743363,0.000020052688,0.000019660942,0.000020761636,0.000019388464,0.000020340205,0.000019641771,0.000020339234,0.000019128736,0.000020362117,0.000019912984,0.000020895413,0.000019482843,0.000020471403,0.000019576264,0.000020241903,0.000018585428,0.000019947178,0.000019636489,0.000020763022,0.000019382402,0.000020278343,0.000019570105,0.000020281843,0.000019070849,0.000020331981,0.000019893852,0.00002088868,0.000019505042,0.000020487692,0.00001965691,0.000020366058,0.000018721032,0.000020083331,0.000019736668,0.000020840625,0.000019456664,0.000020368621,0.00001965603,0.000020350933,0.00001916604,0.000020407275,0.000019989968,0.000020993884,0.000019577588,0.000020541374,0.00001966023,0.000020327852,0.000018703258,0.000020070385,0.000019737667,0.00002083699,0.000019451933,0.000020353806,0.000019648178,0.000020346492,0.00001914916,0.000020387726,0.000019964515,0.000020975394,0.000019560533,0.000020540436,0.00001966638,0.000020336518,0.000018710538,0.00002007433,0.000019741072,0.000020826878,0.000019436153,0.00002032731,0.000019622561,0.000020326263,0.00001913211,0.00002037548,0.000019936813,0.000020891308,0.000019511162,0.000020462367,0.00001959313,0.000020254995,0.000018642553,0.000020008354,0.000019696938,0.000020781523,0.000019404224,0.000020316069,0.000019625351,0.00002034003,0.000019145087,0.000020378238,0.000019967141,0.000020963336,0.000019559973,0.000020518939,0.000019628906,0.000020282734,0.000018638215,0.00002001864,0.000019712761,0.000020840866,0.000019466017,0.000020447911,0.00001971135,0.000020381349,0.00001912257,0.00002037692,0.000019947767,0.000021008607,0.000019621382,0.000020594767,0.000019636302,0.000020263999,0.0000185771,0.000019755405,0.000019520729,0.000020586343,0.000019129557,0.000020237328,0.00001953708,0.000020331343,0.000018953595,0.000020158606,0.000019862082,0.000021092499,0.00001991891,0.000020838103,0.000020106881,0.000020584674,0.000019419034,0.000020474099,0.00002027237,0.000021060581,0.000020103527,0.000020705718,0.00001997019,0.000020358018,0.000019364054,0.000020404608,0.000020212256,0.00002142463,0.000020675234,0.000021560829,0.000020981877,0.000021325319,0.000020362251,0.000020942754,0.000020746216,0.00002170607,0.00002056613,0.000021201096,0.000020232466,0.000020588168,0.00001924964,0.000020214144,0.000019679983,0.000020839892,0.000019540192,0.00002069125,0.00001982584,0.000020265796,0.000018867267,0.000019817166,0.000019645986,0.000020842375,0.000019300358,0.000019340358,0.000018573344,0.000019399968,0.000018923507,0.000019886815,0.000020318568,0.000020935486,0.000020799625,0.000020976455,0.000021467393,0.000024877629,0.000025059237,0.000024922034,0.000016634089,0.000011230556,0.000013542975],[0.000015748163,0.000018471901,0.000016285037,0.000023032653,0.000031988307,0.000030790245,0.000026760705,0.000023743361,0.000021239506,0.000021049716,0.000019722049,0.00002006811,0.000019215471,0.00001992425,0.000019217287,0.000020282192,0.000019968113,0.000020964255,0.000019649695,0.0000198412,0.00001969645,0.000020687461,0.000019680603,0.000019689463,0.000018928378,0.000019442567,0.000018629757,0.000018700262,0.0000183935,0.000019540694,0.000018753786,0.000019347386,0.000018826915,0.000019943696,0.000019118432,0.000019880215,0.00001968216,0.000020959977,0.000019817166,0.000020600855,0.000019776537,0.000020595493,0.000019196681,0.000019309195,0.000019032548,0.0000201763,0.000019503868,0.000020112999,0.00001945069,0.000020355923,0.00001917593,0.00001931413,0.000019152281,0.000020104619,0.000019389776,0.000019798823,0.000019190731,0.000019943316,0.000018687533,0.00001860458,0.000018634146,0.000019820432,0.00001901506,0.00001953028,0.000018937497,0.000019933374,0.00001885083,0.00001914684,0.000019095181,0.00002019293,0.000019279974,0.000019601015,0.00001905149,0.000019800673,0.00001861752,0.000018525388,0.00001855074,0.000019728464,0.00001890756,0.000019385987,0.000018855126,0.00001981622,0.00001874624,0.000019067831,0.000019038413,0.000020116931,0.000019149506,0.0000194735,0.000018912628,0.000019652376,0.000018465806,0.000018368048,0.000018416475,0.000019702216,0.000018914847,0.000019430685,0.000018832428,0.000019785062,0.000018721443,0.000019060375,0.000019043042,0.00002011745,0.000019178675,0.000019529349,0.000018984729,0.000019768277,0.00001860827,0.000018500548,0.000018531007,0.000019784044,0.000018992097,0.000019502828,0.000018898978,0.000019858142,0.000018771321,0.000019122625,0.00001911298,0.000020212468,0.00001926582,0.00001961233,0.000019028792,0.000019766147,0.000018568493,0.000018487073,0.000018541577,0.00001979365,0.000018983896,0.000019485426,0.000018889446,0.000019857744,0.00001876658,0.000019112178,0.000019091047,0.000020195936,0.00001924854,0.000019600904,0.00001901992,0.000019768315,0.000018577668,0.00001850563,0.000018555711,0.000019816805,0.000018996465,0.00001948628,0.000018879056,0.000019842562,0.000018755432,0.000019099716,0.00001909631,0.000020151974,0.000019176443,0.000019544459,0.000018972403,0.000019693332,0.000018506089,0.00001842974,0.000018479952,0.000019738287,0.000018950414,0.000019440695,0.000018868868,0.000019834672,0.000018765915,0.00001909948,0.000019086568,0.000020170124,0.000019227791,0.000019554434,0.000018993367,0.0000197112,0.000018530336,0.000018415703,0.000018482455,0.000019736914,0.000018992261,0.000019491708,0.000018939629,0.00001988657,0.0000187562,0.000019070667,0.000019049328,0.000020170739,0.00001928117,0.000019664598,0.000019064903,0.000019798992,0.00001852242,0.000018375793,0.000018294224,0.000019556932,0.000018714694,0.000019154546,0.000018548388,0.000019757008,0.000018673407,0.000019094634,0.000018964389,0.00002033842,0.000019481302,0.000020213509,0.000019470064,0.00002037004,0.000019113691,0.000019425832,0.00001944279,0.000020679216,0.000019664394,0.000020359728,0.000019683286,0.000020463245,0.000019174231,0.00001976119,0.00001960885,0.000020761794,0.000020141773,0.000021064036,0.000020626,0.000021325095,0.000020063728,0.000020242038,0.000019629524,0.000020619824,0.000019761643,0.00002025204,0.00001950015,0.000020193045,0.000019109535,0.000019173829,0.00001878237,0.000019685502,0.000019009874,0.00001946429,0.000019121257,0.000019862138,0.00001884256,0.000018859333,0.000018369501,0.000019525234,0.000018714893,0.000018998348,0.000018011307,0.000018630484,0.00001867957,0.00001956042,0.00001972867,0.000021186848,0.000020781048,0.000021702033,0.00002113571,0.000022613898,0.000023726454,0.000027356557,0.000024784447,0.000016708464,0.0000105726385,0.000013690008],[0.000016093272,0.000018235036,0.0000150778005,0.000025131487,0.00002966881,0.000029269275,0.00002626841,0.000023440514,0.000021923468,0.000021289778,0.00002113442,0.00002034389,0.000021018846,0.000020146652,0.000020534677,0.000020139141,0.000021218937,0.000020800953,0.000020948328,0.00002017584,0.000021046446,0.00002128263,0.000020985919,0.000019949288,0.000020403519,0.000020336383,0.000020674188,0.000019609543,0.00002020048,0.000020230902,0.00002042326,0.000019369612,0.00002070965,0.000020380183,0.000021125432,0.000020375848,0.000021596019,0.000021228308,0.000021520074,0.000020641564,0.0000216762,0.00002121052,0.000021374772,0.000020186386,0.000020921834,0.000021016662,0.000021055519,0.000020398189,0.000021273054,0.00002088362,0.000020976155,0.000020002668,0.000020978596,0.000020904223,0.00002109608,0.000020184614,0.00002101157,0.000020622125,0.000020952702,0.0000194971,0.000020581081,0.000020627414,0.000020688862,0.000019858671,0.000020742182,0.000020432046,0.000020634321,0.000019736914,0.000020890511,0.000020796868,0.000020965215,0.000020030042,0.000020814112,0.000020504052,0.000020821853,0.000019434781,0.000020530897,0.0000205499,0.000020630347,0.000019710034,0.000020610465,0.000020311032,0.00002053407,0.000019656874,0.000020848142,0.000020708207,0.000020852574,0.000019925674,0.000020686515,0.000020352953,0.0000206762,0.00001929202,0.000020409494,0.000020506692,0.00002064304,0.000019778103,0.000020657042,0.000020292639,0.000020497306,0.000019624564,0.000020818537,0.000020691406,0.000020867416,0.00001999195,0.000020779065,0.000020496329,0.000020837228,0.00001941333,0.000020502333,0.000020574449,0.000020722311,0.00001984116,0.000020713598,0.000020356312,0.000020552994,0.000019701034,0.000020917087,0.000020793736,0.000020963455,0.000020039117,0.0000208293,0.000020468106,0.000020799487,0.000019395695,0.000020535048,0.000020602802,0.000020714902,0.000019828563,0.000020701335,0.000020350391,0.000020549664,0.000019684827,0.000020895952,0.000020773161,0.000020952124,0.000020022211,0.000020821357,0.000020469335,0.000020800479,0.000019405094,0.000020540554,0.000020615282,0.000020737,0.000019834199,0.000020691665,0.000020348527,0.000020540669,0.000019660418,0.00002087042,0.000020716778,0.000020837784,0.000019961164,0.000020743566,0.00002039605,0.000020720137,0.000019345875,0.000020467032,0.000020546058,0.000020652767,0.000019802957,0.000020664293,0.000020327736,0.000020531681,0.000019649227,0.00002085679,0.000020743606,0.000020878642,0.000019990539,0.000020748237,0.00002042184,0.000020738364,0.000019375526,0.000020484293,0.000020574958,0.000020727017,0.000019823383,0.00002070473,0.000020353244,0.00002054114,0.000019646286,0.00002085492,0.000020752192,0.000020980875,0.00002009195,0.000020875277,0.000020533502,0.000020761714,0.000019307556,0.000020260404,0.000020387453,0.000020499027,0.000019410258,0.000020343194,0.00002015799,0.000020548547,0.00001962975,0.00002092351,0.000020821635,0.000021176242,0.000020323005,0.000021259872,0.000020778016,0.000021033964,0.000020043053,0.000021284135,0.000021068356,0.000021281576,0.000020385549,0.000021240903,0.000020553467,0.00002084027,0.000020170586,0.000021440244,0.000021234808,0.000021578991,0.000021124888,0.000022280492,0.000022027372,0.000021994227,0.00002103168,0.000021433847,0.000021335427,0.000021106081,0.00002030046,0.000020944632,0.000020594647,0.00002056321,0.000019829433,0.000020591113,0.000020395211,0.000020667743,0.000019843112,0.000020913694,0.000020752213,0.00002124463,0.000020178704,0.000020505831,0.000020559699,0.00002015159,0.000019743897,0.000019291709,0.000019671688,0.000020204374,0.000020221856,0.00002085679,0.000021619964,0.00002133144,0.000021635082,0.000021445398,0.000022194203,0.000025116487,0.000025367242,0.000024507879,0.00001729428,0.000010908101,0.000013483064],[0.000015601698,0.000016159078,0.0000151412005,0.000022736833,0.000029164457,0.000028003198,0.000023528799,0.00002239085,0.000019754312,0.000020565996,0.000019630497,0.000020539945,0.00001920701,0.000019956939,0.000019250228,0.00002015403,0.000019454976,0.000020746673,0.000019567417,0.000020433625,0.000019867024,0.000021029593,0.000019661074,0.000019645162,0.000019009784,0.000020237136,0.0000196926,0.000020191255,0.000019422905,0.000020271691,0.000018961857,0.000019202978,0.000018655464,0.000020162028,0.000019530877,0.00002052933,0.000019818734,0.000020904501,0.000019771991,0.000020369205,0.000019542316,0.000020845038,0.000019863483,0.000020261814,0.000019489702,0.000020593292,0.000019538476,0.000020187636,0.000019307758,0.000020781841,0.000019631716,0.000020279367,0.00001956473,0.000020632038,0.000019613806,0.000019958043,0.00001921846,0.00002032322,0.000019448371,0.000019562995,0.000019154639,0.000020133726,0.000019151023,0.000019673602,0.000018852896,0.000020347443,0.000019259043,0.000019982896,0.000019407351,0.000020584812,0.000019525569,0.000019847444,0.000019101519,0.000020239626,0.000019380866,0.00001947365,0.000019179972,0.00002016047,0.000019139154,0.000019562658,0.000018754467,0.000020224827,0.000019188406,0.000019930636,0.000019371812,0.000020491425,0.000019426776,0.000019735991,0.000018990106,0.000020086796,0.000019223024,0.000019301902,0.000019031913,0.000020048006,0.0000191202,0.00001960971,0.00001878565,0.000020200096,0.000019135996,0.000019860148,0.000019321664,0.00002045228,0.000019447481,0.00001980547,0.000019099696,0.000020248795,0.000019384415,0.0000194381,0.00001911905,0.000020120866,0.000019201752,0.000019671688,0.000018820489,0.000020254995,0.000019193276,0.000019935405,0.00001938682,0.000020555759,0.000019494906,0.000019836998,0.000019090829,0.00002020869,0.000019315512,0.00001940241,0.000019118157,0.000020146652,0.00001919247,0.000019658824,0.000018812145,0.000020261294,0.000019183852,0.000019920164,0.000019366844,0.000020540534,0.000019477699,0.000019816069,0.00001907847,0.000020197514,0.0000193031,0.000019391608,0.000019110155,0.000020145806,0.000019203491,0.00001967484,0.000018809149,0.000020252715,0.00001917734,0.00001988211,0.00001936169,0.000020483629,0.000019412479,0.00001975307,0.000019028012,0.00002013459,0.000019263525,0.000019347073,0.000019077288,0.00002008672,0.00001915115,0.000019625968,0.000018789553,0.000020236113,0.00001917902,0.00001989112,0.00001936664,0.000020500964,0.000019463623,0.000019781364,0.000019069066,0.00002018625,0.000019361745,0.000019459856,0.000019194227,0.000020201116,0.000019262607,0.000019687905,0.00001881446,0.000020257527,0.000019185241,0.000019910118,0.000019340358,0.000020513226,0.000019526704,0.00001985585,0.00001916944,0.000020316495,0.000019363204,0.000019358551,0.00001900527,0.000019973351,0.000018882152,0.000019265472,0.000018389324,0.000019909492,0.000018931141,0.000019670413,0.000019176956,0.000020504776,0.000019481879,0.00002001633,0.000019191555,0.000020487225,0.00001954211,0.000019935444,0.000019449133,0.000020642432,0.000019580073,0.000020081894,0.000019197267,0.000020315973,0.000019451134,0.000020422109,0.000019888825,0.000020879677,0.000020157875,0.000020799407,0.000020312506,0.000021651036,0.000020910005,0.000021229624,0.000020157395,0.00002106488,0.00001987597,0.000020201502,0.000019191812,0.000020379153,0.000019499126,0.000020172663,0.000019441344,0.00002034263,0.000019483772,0.000019654888,0.00001928987,0.000020503328,0.000020249974,0.000020882724,0.000020159008,0.000020977295,0.0000196004,0.000019566764,0.00001862235,0.000019346686,0.000019721221,0.00002016793,0.00002003541,0.000020962296,0.000020850448,0.000021693199,0.0000209052,0.000021720793,0.000023380815,0.000025875079,0.000023474495,0.000016321932,0.000010655184,0.000013643088],[0.000015852009,0.000014711024,0.000014352196,0.000021250791,0.000031574906,0.00002990073,0.000026803002,0.000022764343,0.000021329019,0.000021013835,0.000021274273,0.000020109203,0.000020575253,0.000019572419,0.000019994068,0.000019160521,0.000020444675,0.000020121019,0.000021309279,0.000019899146,0.000021243031,0.000020824196,0.000020975773,0.000019565923,0.00002021532,0.000019715655,0.000020942614,0.00001984222,0.000021018504,0.000020229532,0.000020635305,0.000018834511,0.000020065276,0.000019599167,0.000020803793,0.000019733317,0.000021119753,0.000020472928,0.000021025624,0.000019937384,0.000020759813,0.000020158279,0.000021449836,0.000019860905,0.000021115704,0.000020428208,0.000021196629,0.000019684583,0.0000206861,0.000020043015,0.000020997888,0.000019691472,0.000020734686,0.000020153819,0.00002079655,0.000019788931,0.000020481344,0.000019950374,0.000021198084,0.000019435929,0.00002061589,0.000020056994,0.000020844602,0.00001934115,0.00002034591,0.000019767824,0.000020682412,0.000019400302,0.000020554857,0.000020075497,0.000020669042,0.000019709207,0.000020371515,0.000019913801,0.00002113563,0.000019411627,0.000020651154,0.000020152358,0.000020891328,0.000019242558,0.000020262434,0.00001969705,0.000020620886,0.000019381992,0.000020524574,0.00002002729,0.000020599991,0.000019621646,0.000020261332,0.000019789137,0.000020962996,0.00001924641,0.000020496094,0.000020025973,0.000020821593,0.000019252268,0.000020259537,0.000019648009,0.000020559248,0.000019323434,0.000020450992,0.00001998381,0.00002060972,0.00001969521,0.000020371925,0.000019940711,0.00002113325,0.000019384803,0.000020607536,0.000020088615,0.000020885034,0.000019311348,0.000020309812,0.000019702931,0.000020620275,0.000019376155,0.000020522715,0.000020046706,0.000020657317,0.000019689913,0.000020368601,0.000019885676,0.00002107575,0.00001934912,0.000020607615,0.000020113728,0.0000209055,0.000019312914,0.000020312407,0.000019707066,0.000020618112,0.000019363057,0.000020509784,0.00002003348,0.000020645894,0.000019674335,0.000020355516,0.000019877505,0.000021060741,0.000019325294,0.000020582436,0.000020096031,0.000020896929,0.000019327616,0.000020300711,0.000019691397,0.000020600955,0.000019354196,0.00002049287,0.000019995345,0.000020555522,0.000019619492,0.00002029378,0.000019821644,0.000021005842,0.000019302492,0.000020558993,0.000020075458,0.00002086117,0.000019282677,0.000020268966,0.0000196643,0.000020588817,0.00001935104,0.00002049762,0.00002002391,0.000020613374,0.000019692166,0.000020336616,0.000019899202,0.00002111774,0.000019443272,0.000020701691,0.000020214491,0.000020992544,0.000019345061,0.000020318277,0.00001972393,0.00002065269,0.00001933311,0.000020458327,0.000020007019,0.00002068608,0.00001973108,0.000020386695,0.000020020265,0.00002112501,0.00001933534,0.000020442043,0.000019897323,0.000020518135,0.000018885754,0.000019869678,0.00001925425,0.000020421545,0.000018973127,0.000020321184,0.000019867688,0.00002065391,0.000019466166,0.000020425168,0.000020000703,0.000021150045,0.000019542484,0.00002074414,0.000020118025,0.000020755577,0.000019545056,0.000020429356,0.000019748248,0.000020672256,0.000019627485,0.000020879757,0.000020395446,0.00002110763,0.00002034424,0.000021263906,0.000021113046,0.000022680484,0.000021090185,0.000021707374,0.000020881966,0.000021324076,0.000019914087,0.000020426103,0.000019789572,0.00002061599,0.000019507963,0.000020427467,0.0000198664,0.000020435085,0.000019570982,0.000020329131,0.000020236286,0.000021758338,0.000020679789,0.000021609656,0.000021094349,0.000021085158,0.000019598456,0.00001944559,0.000019190566,0.000020170835,0.000019569152,0.000020372274,0.000020013296,0.000020476891,0.000020316651,0.000019962097,0.000020477906,0.000023341448,0.00002417948,0.000024987312,0.000016405405,0.000011080944,0.000013038637],[0.000016427197,0.000014241555,0.000014884742,0.000021410639,0.00003261951,0.000030097443,0.00002470464,0.000022191281,0.000019700075,0.000020315565,0.000019145105,0.00001989186,0.00001901709,0.000019569974,0.000018423643,0.000019162495,0.000018825498,0.00002025774,0.000019168216,0.000019800445,0.000019690928,0.00002088326,0.00001961143,0.000019748004,0.000018740182,0.000019672832,0.00001890462,0.0000193401,0.000019166406,0.000019909967,0.00001881679,0.000018942934,0.00001833116,0.000019655918,0.000018935873,0.000019766881,0.00001960868,0.00002064611,0.000019444551,0.00001983142,0.000019009169,0.000020147536,0.000019218478,0.000019433539,0.000019296105,0.000020110121,0.00001921659,0.000019597464,0.000018960574,0.000020223553,0.00001916034,0.00001979582,0.000019459001,0.00002049893,0.000019462492,0.00001990095,0.000019190897,0.00002020054,0.000019243475,0.00001923696,0.000019149433,0.00001991048,0.000019006033,0.000019397452,0.000018852536,0.000020067802,0.000018965891,0.000019626923,0.0000193868,0.000020493399,0.000019384841,0.000019898065,0.000019234905,0.000020280084,0.000019286907,0.000019297007,0.00001922559,0.000020009098,0.000019034056,0.000019308089,0.00001877168,0.00001998562,0.000018936595,0.000019576899,0.000019356798,0.000020416872,0.000019332594,0.000019788704,0.000019094343,0.00002011649,0.000019115514,0.000019106457,0.000019089644,0.000019885829,0.000018955077,0.000019272271,0.00001876418,0.000019970475,0.000018913906,0.000019548504,0.000019345116,0.000020396905,0.000019364074,0.000019877372,0.000019215326,0.000020250012,0.000019251514,0.00001923043,0.000019183066,0.0000199409,0.000019000505,0.000019317373,0.000018789176,0.000019999443,0.000018933433,0.000019569974,0.000019352257,0.00002044224,0.000019365662,0.00001986441,0.000019194738,0.000020222782,0.000019211295,0.000019212212,0.000019169038,0.000019968094,0.000019018089,0.000019334178,0.00001879131,0.000020004823,0.000018923974,0.000019563406,0.000019338275,0.000020437561,0.000019360252,0.000019855548,0.000019183593,0.000020208978,0.0000191941,0.000019193056,0.000019158986,0.000019963734,0.000019021625,0.0000193544,0.000018805078,0.00001999748,0.000018928271,0.000019556019,0.00001933914,0.000020380357,0.000019301793,0.000019799163,0.000019145324,0.000020173049,0.000019156867,0.000019150419,0.000019138954,0.000019925541,0.000018995159,0.000019299658,0.000018778608,0.000019978399,0.000018916091,0.00001954761,0.00001935414,0.000020401827,0.000019354213,0.000019853333,0.000019210966,0.000020220603,0.000019263322,0.000019291818,0.000019282512,0.000020029429,0.000019076888,0.000019349638,0.000018814173,0.000020037263,0.000018947234,0.000019540676,0.000019297082,0.000020427991,0.000019445682,0.0000198911,0.000019215307,0.000020302356,0.000019276278,0.000019153762,0.000019017454,0.000019759758,0.000018684843,0.00001888327,0.000018345325,0.00001956113,0.000018507182,0.000019171013,0.000018987246,0.000020281224,0.000019251569,0.000019798237,0.000019187071,0.000020360232,0.000019269644,0.000019392995,0.000019146055,0.000020054813,0.000018932224,0.000019375007,0.00001896182,0.000019968704,0.000018967481,0.000019641733,0.000019702517,0.000020710537,0.000020015184,0.000020433956,0.000019958425,0.000021006623,0.00002020948,0.000020245127,0.000019806263,0.000020260404,0.000019333978,0.000019460116,0.000018736284,0.000019781986,0.000018930996,0.000019537323,0.00001922825,0.000020295349,0.000019520523,0.000019846271,0.00001924074,0.000020269701,0.000019584424,0.000020195666,0.000019893112,0.000020698413,0.000019875362,0.000019543937,0.000018554525,0.000019023784,0.000019251165,0.00001952164,0.000019720977,0.000020142099,0.000020257565,0.000021153353,0.000020530682,0.00002142083,0.000022232694,0.000025569536,0.000025344561,0.000017244676,0.000010640541,0.000013496546],[0.000016210723,0.000014434211,0.000012868042,0.000022587883,0.000033482924,0.000031486743,0.000026788153,0.000023276232,0.000021583233,0.000021190968,0.000020787787,0.000020203814,0.000020731148,0.000019965524,0.00002016972,0.000019693725,0.000020595062,0.000020373964,0.000020591133,0.000019835674,0.000021131578,0.000021193375,0.000021172003,0.000020223188,0.000020369906,0.000020221798,0.000020185884,0.000019355635,0.000020114534,0.000020312038,0.000020625153,0.000019546995,0.000020202677,0.000020251733,0.00002066991,0.000019874946,0.000021080754,0.000020848956,0.000021024038,0.000020346044,0.000020726977,0.000020644595,0.000020892205,0.000019841274,0.000020414924,0.000020551917,0.000020743822,0.00001995475,0.000020923071,0.000020763891,0.000020914553,0.000019951896,0.000020917863,0.000020759951,0.000021087973,0.000020410409,0.000020886886,0.000020670108,0.000020873425,0.000019613039,0.000020308611,0.000020441146,0.000020754072,0.00001979716,0.000020844323,0.000020636071,0.000020769063,0.000019839932,0.000020913714,0.000020717966,0.000021009328,0.000020343581,0.000020926964,0.000020670186,0.000020886986,0.000019699624,0.000020425518,0.000020522735,0.000020765872,0.000019718815,0.000020780732,0.000020568388,0.000020701867,0.00001979414,0.000020859676,0.000020670008,0.000020958678,0.000020278885,0.000020785348,0.000020521638,0.000020745703,0.000019560308,0.000020280664,0.000020434773,0.000020679196,0.00001967411,0.000020755639,0.000020555779,0.000020695572,0.000019779744,0.000020847307,0.000020680794,0.000020985859,0.00002036534,0.000020901292,0.000020642055,0.000020849096,0.00001966863,0.000020360485,0.000020480209,0.000020722982,0.000019716352,0.000020782594,0.000020577922,0.000020720869,0.000019798936,0.000020873606,0.000020694388,0.000021005222,0.000020339467,0.000020901352,0.000020619626,0.000020841162,0.000019656838,0.000020371011,0.000020504816,0.000020754589,0.000019730589,0.000020788799,0.000020583242,0.000020720356,0.00001978929,0.00002086813,0.000020691723,0.000021009086,0.000020333631,0.00002088852,0.000020607164,0.000020824056,0.00001963737,0.000020365786,0.000020509333,0.000020762369,0.000019756742,0.000020809388,0.00002059027,0.00002071984,0.000019786383,0.000020842574,0.000020652453,0.000020935286,0.000020293239,0.000020839076,0.000020573507,0.000020768111,0.000019597184,0.000020320971,0.000020482848,0.000020704158,0.000019700958,0.00002075918,0.000020546058,0.000020677717,0.000019750225,0.00002082944,0.000020664904,0.000020960937,0.000020354544,0.000020901094,0.000020659683,0.000020882882,0.000019734842,0.000020439196,0.000020529134,0.000020757796,0.000019734636,0.000020786558,0.000020616717,0.000020739986,0.000019775329,0.000020818181,0.000020685033,0.000021049214,0.000020380203,0.000020850526,0.00002069784,0.000020791436,0.000019559377,0.000020093481,0.000020273508,0.000020400386,0.000019331967,0.000020176281,0.000020204468,0.000020372683,0.000019379757,0.000020555484,0.000020488944,0.000021021251,0.000020307507,0.000021074444,0.00002074976,0.000020845078,0.000019686233,0.00002059734,0.00002049938,0.000020639674,0.000019880898,0.000020671783,0.00002036128,0.000020479762,0.000019617772,0.000020837526,0.000020788759,0.000021241045,0.00002091934,0.00002145184,0.00002132556,0.000021099842,0.000020350642,0.000020632295,0.000020803176,0.000020820165,0.00001993704,0.000020402818,0.000020506359,0.000020443798,0.000019608457,0.000020611744,0.000020536283,0.000020974772,0.000020283796,0.000020712729,0.000020354544,0.00002051749,0.000019677673,0.000020127083,0.000020686237,0.000020497484,0.000019757948,0.00001882864,0.000019065048,0.000018926989,0.000019513971,0.000019560719,0.00002044682,0.000020767497,0.000021165784,0.000021034986,0.00002168238,0.000023547027,0.000024100196,0.000025034586,0.000018052062,0.000010881398,0.000013339856],[0.0000158767,0.000014614679,0.000012939885,0.000019555273,0.000030625873,0.00003160826,0.000025971296,0.000023939441,0.000020689118,0.000021090045,0.000019563293,0.000020170028,0.000018885448,0.000019719811,0.00001909733,0.000020085512,0.000019260146,0.000020426649,0.000019144356,0.000019840745,0.00001940676,0.00002095766,0.000019710635,0.000020531621,0.000019043317,0.00002029947,0.00001885633,0.000019305327,0.0000188075,0.000020213412,0.00001945069,0.000020141197,0.000018809742,0.000020101781,0.000019092959,0.000019845344,0.000019353549,0.00002078406,0.000019808926,0.000020580945,0.000019190878,0.000020572526,0.000019254305,0.000019647485,0.000018884026,0.000020069487,0.000019245108,0.000019990195,0.000018989182,0.000020435924,0.000019138131,0.000019724157,0.00001900741,0.000020449941,0.000019557621,0.000020431617,0.000019205598,0.000020557309,0.000018927405,0.00001926191,0.000018680994,0.000019970683,0.000019047202,0.000019778989,0.000018897032,0.000020341524,0.000018999055,0.000019588477,0.000018925544,0.000020368583,0.000019385192,0.000020301484,0.000019114,0.00002053681,0.00001892847,0.000019390332,0.000018814027,0.000020132247,0.000019087496,0.00001975403,0.000018868634,0.000020314365,0.000018987843,0.000019550815,0.000018940622,0.000020386753,0.000019395104,0.000020295543,0.000019074923,0.000020437794,0.000018837816,0.000019275765,0.000018704419,0.000020016807,0.000019018906,0.000019688243,0.000018846154,0.000020294536,0.000018988494,0.000019544086,0.000018925022,0.00002038203,0.00001942872,0.000020365786,0.000019154766,0.000020540907,0.000018920655,0.00001937268,0.000018773166,0.000020078598,0.000019057741,0.00001973439,0.000018865863,0.000020325371,0.000019008188,0.00001955906,0.000018926736,0.000020371497,0.000019398285,0.000020318335,0.00001911484,0.000020498655,0.000018890654,0.000019354915,0.000018770568,0.00002009168,0.000019065612,0.000019744819,0.000018864172,0.000020332465,0.00001900429,0.000019553743,0.000018920548,0.000020374022,0.000019402874,0.000020317619,0.000019111341,0.000020485933,0.000018877345,0.000019332943,0.000018765755,0.000020097008,0.000019087842,0.000019770145,0.000018890167,0.000020343037,0.000019023368,0.000019562678,0.000018918634,0.00002034878,0.00001937342,0.000020273163,0.000019072286,0.000020449219,0.000018849372,0.000019285859,0.000018730907,0.000020062502,0.0000190411,0.00001970124,0.000018843837,0.000020297864,0.000018976818,0.000019524228,0.000018908895,0.00002037381,0.000019434596,0.000020371826,0.000019186047,0.000020608755,0.00001899373,0.000019450152,0.000018854047,0.000020123704,0.00001908655,0.000019757836,0.000018900744,0.000020370779,0.000019020028,0.000019541067,0.000018902547,0.000020378824,0.000019476603,0.000020404628,0.000019162293,0.000020586835,0.00001890884,0.000019278743,0.000018579918,0.000019914087,0.000018839848,0.000019331488,0.000018478418,0.000020019652,0.000018672356,0.000019141618,0.000018606657,0.0000201286,0.000019294965,0.000020295794,0.000019204444,0.000020639005,0.000019090065,0.000019683455,0.00001906321,0.000020521795,0.00001940761,0.000020065716,0.000019091103,0.000020271826,0.000019030753,0.000019509022,0.00001903088,0.00002032163,0.000019978781,0.000021114134,0.000020072606,0.000021295058,0.000019622132,0.00002003218,0.000019294965,0.00002052935,0.000019855395,0.00002028459,0.000019087332,0.000020403091,0.000019195051,0.000019647598,0.000018970522,0.000020434522,0.00001976415,0.00002071913,0.000019377116,0.000020547352,0.000018945157,0.00001970154,0.000018910427,0.000020538613,0.000019902809,0.00002022992,0.000018492452,0.000019045876,0.000018784789,0.000019021154,0.000019015422,0.000019845364,0.000020573822,0.00002159987,0.000021410862,0.000022304133,0.000023879473,0.00002527223,0.000023501487,0.000016443513,0.000011014338,0.000013462878],[0.000015769712,0.000014357974,0.000011848144,0.00001768865,0.000031105148,0.000034251338,0.000030390183,0.000025163743,0.000022816701,0.000021931435,0.00002158531,0.000019860963,0.000020399628,0.000019627783,0.000020401807,0.000019466092,0.00002076296,0.000020297826,0.000020995867,0.000019376024,0.000020775184,0.000020488475,0.000021527527,0.000019984305,0.000020693282,0.000019734993,0.00002021825,0.000019063611,0.000020244124,0.00002015455,0.00002138872,0.000020011272,0.000020663425,0.000019767711,0.000020401612,0.000019376246,0.000020788719,0.000020566898,0.00002171137,0.000020251056,0.000020929676,0.00002024812,0.000020996627,0.000019550032,0.000020492109,0.000020277317,0.000021158216,0.000019812365,0.000020631684,0.000019866759,0.000020552192,0.000019002915,0.000020287125,0.000019983163,0.000021154343,0.000019916764,0.000020813874,0.000019984858,0.00002036973,0.000018910914,0.000020049018,0.000019998835,0.000020730771,0.000019435725,0.000020369087,0.000019630965,0.0000202617,0.000018726281,0.000020085054,0.00001978344,0.000020930895,0.000019734975,0.0000206406,0.000019825367,0.000020313706,0.000018994326,0.000020201522,0.000020076262,0.000020789552,0.000019435336,0.000020377403,0.00001962273,0.000020229185,0.000018760476,0.000020119753,0.000019837018,0.00002094539,0.000019744424,0.000020645619,0.000019810117,0.000020274436,0.00001892392,0.000020107227,0.000019994523,0.000020687223,0.000019364536,0.000020329559,0.000019604455,0.000020196301,0.00001875282,0.000020116664,0.00001984349,0.000020978376,0.00001981605,0.000020722135,0.000019878471,0.00002033615,0.00001900083,0.000020183015,0.000020039499,0.000020733203,0.00001941735,0.000020366446,0.000019623816,0.000020222415,0.000018756022,0.000020102874,0.000019813366,0.000020948786,0.00001975938,0.000020673006,0.000019830606,0.000020300498,0.000018978539,0.000020179956,0.000020049096,0.000020763298,0.000019423404,0.000020377152,0.000019630854,0.000020225676,0.000018753053,0.000020098389,0.000019814594,0.00002094765,0.000019758496,0.000020663445,0.000019819547,0.000020287627,0.000018963268,0.000020165124,0.0000200525,0.000020776253,0.00001945336,0.00002039712,0.000019644056,0.000020247173,0.00001877791,0.00002010412,0.000019798841,0.000020904243,0.00001972504,0.000020615398,0.000019787874,0.000020248659,0.000018935909,0.00002012459,0.000020029505,0.000020734726,0.00001937948,0.000020343581,0.000019588011,0.000020171567,0.000018752962,0.000020106076,0.00001984171,0.000020993124,0.000019852725,0.000020776053,0.000019967962,0.00002043869,0.000019071922,0.000020238487,0.00002010924,0.00002076532,0.000019443865,0.000020391557,0.000019656105,0.000020251771,0.000018724979,0.00002006807,0.00001980749,0.00002099755,0.00001983664,0.000020749127,0.000019902429,0.000020349109,0.000018922206,0.000019935938,0.000019859996,0.000020436917,0.000019072759,0.000019875173,0.000019323876,0.000020009002,0.000018325654,0.000019816445,0.000019570776,0.000021014377,0.000019750056,0.000020795698,0.000020037358,0.000020459149,0.000019443438,0.000020530271,0.00002039352,0.000021032201,0.000019948622,0.000020534715,0.000019820074,0.000020080437,0.000019063067,0.000020106612,0.00002006277,0.000021359185,0.000020751817,0.000021574097,0.000021076512,0.000021237664,0.000020245514,0.00002078644,0.000020843072,0.00002154642,0.00002037109,0.000020629815,0.000019816616,0.000020315178,0.00001893042,0.000020010415,0.000019711651,0.000020986658,0.000020236615,0.000020848616,0.000020046304,0.000020248699,0.00001944622,0.000020088768,0.000020578198,0.000021453232,0.000020303383,0.000019779649,0.000019091738,0.00001942172,0.000018718087,0.000019380219,0.000019810306,0.00002064741,0.000020686433,0.00002093313,0.000021510245,0.000025050515,0.00002442065,0.000023237018,0.000015794727,0.000010759644,0.000012875187],[0.00001597332,0.000013487733,0.000012077504,0.000016590524,0.000030344081,0.000032399454,0.00002754147,0.000024223333,0.000021414498,0.00002086445,0.00001934556,0.00001942133,0.000018719264,0.0000191876,0.000018436738,0.000019148372,0.000019153378,0.000020203699,0.00001897309,0.000019202465,0.000019073723,0.000020427584,0.000019453788,0.000020017153,0.000019071758,0.000019930501,0.000018660216,0.000019170446,0.000018719444,0.00002013772,0.000019386505,0.000020077297,0.000019340801,0.000020190446,0.000019119616,0.000019704621,0.000019569246,0.00002078293,0.000019867157,0.000020345366,0.000019706613,0.000020716818,0.00001946403,0.000019683024,0.000019270103,0.000020301735,0.000019554434,0.00001983314,0.000019212375,0.00002014281,0.000018873421,0.00001919084,0.000019025454,0.000020442569,0.000019540825,0.000020410895,0.000019637595,0.000020681919,0.000018969093,0.000019322051,0.000019067975,0.000020405581,0.000019258989,0.000019611001,0.00001893031,0.000019963734,0.000018579616,0.000018931449,0.000018839919,0.00002036004,0.00001938434,0.000020285093,0.00001944277,0.00002057804,0.000018946132,0.00001949381,0.00001919366,0.000020549585,0.00001928288,0.000019681822,0.000018980656,0.000019968875,0.000018607721,0.000019004417,0.00001889469,0.00002039181,0.000019406352,0.000020270358,0.000019458426,0.000020589052,0.000018932333,0.000019413237,0.000019144083,0.000020470876,0.000019218955,0.000019583154,0.000018936666,0.000019931147,0.000018590854,0.000019004092,0.000018930708,0.000020434793,0.000019454012,0.000020368601,0.000019532776,0.0000206406,0.000018970557,0.000019485016,0.000019196075,0.000020517098,0.00001924698,0.000019624882,0.000018943945,0.000019944382,0.000018584436,0.000018982195,0.000018893898,0.000020383448,0.000019399062,0.000020295463,0.000019468042,0.000020587559,0.000018938237,0.000019463383,0.000019186815,0.00002053885,0.000019257024,0.000019638886,0.00001894523,0.00001994889,0.00001858364,0.000018978573,0.000018887573,0.000020382107,0.000019399376,0.000020291014,0.000019467429,0.000020578158,0.00001892708,0.000019444587,0.000019180998,0.000020537203,0.000019280986,0.000019671426,0.000018985633,0.000019975865,0.000018621568,0.00001901749,0.0000189081,0.000020374548,0.000019380588,0.000020265565,0.000019446126,0.000020563013,0.000018921377,0.000019429795,0.000019166204,0.000020517668,0.000019241254,0.000019608775,0.0000189358,0.000019920184,0.000018573593,0.000019008841,0.0000189293,0.000020419518,0.000019466055,0.000020404103,0.000019603036,0.000020736763,0.000019056723,0.000019536428,0.000019242594,0.000020575999,0.000019299456,0.000019656798,0.000018969582,0.000019965904,0.000018571945,0.000018936142,0.000018852734,0.00002039179,0.000019494646,0.000020433781,0.000019582594,0.00002069788,0.000018935258,0.000019340081,0.00001898451,0.000020223148,0.000018923758,0.000019182497,0.000018523762,0.000019596997,0.000018308989,0.000018600571,0.000018582168,0.000020185442,0.000019386522,0.00002029144,0.000019566745,0.000020642805,0.000019180156,0.000019834824,0.000019634017,0.000020905301,0.000019601783,0.000020069947,0.00001946884,0.000020186386,0.000018925311,0.000019372514,0.000019397194,0.000020604846,0.0000201387,0.000021231486,0.000020809644,0.000021652027,0.000020087504,0.000020221374,0.000019702837,0.000020504482,0.000019729347,0.00001969211,0.000019068193,0.000019648216,0.000018663828,0.00001910766,0.000018846173,0.000020417767,0.000019761172,0.000021154525,0.00002013461,0.000020976375,0.000019418441,0.000020211715,0.000019429499,0.000020777143,0.000019932326,0.000020210924,0.000019188426,0.000019315657,0.000019601071,0.000019594756,0.000019697443,0.000020579768,0.000020557367,0.000021375874,0.000020734133,0.00002215787,0.00002364904,0.000026412847,0.000024494748,0.00001666955,0.000010363392,0.000013120674],[0.000015651442,0.000012979842,0.000010298899,0.000016464273,0.000028253848,0.00003348299,0.000028056418,0.000024732433,0.000022392707,0.000021509015,0.000020737416,0.000019966952,0.000020432026,0.000019983316,0.000020143443,0.000019702837,0.000020607184,0.00002060357,0.000020530584,0.000019658617,0.000020790503,0.000020925225,0.000021062247,0.000020037893,0.00002080163,0.00002041144,0.000020612353,0.000019579418,0.000020349033,0.000020515456,0.000020801133,0.00001994366,0.000020931871,0.000020672827,0.000021075428,0.000020311942,0.000021429023,0.00002124471,0.000021438917,0.000020554387,0.000021414315,0.00002118507,0.000021603599,0.000020367614,0.000020855578,0.000020928817,0.000020861706,0.000019996469,0.000020766724,0.000020750867,0.000021045182,0.000019753672,0.000020960479,0.000020897427,0.00002125673,0.000020345578,0.000021445072,0.000020811372,0.000021078866,0.000019696636,0.000020754767,0.00002088559,0.000020894497,0.000019650972,0.000020437054,0.00002034781,0.000020633594,0.000019376208,0.000020745683,0.000020677795,0.000021238633,0.000020168643,0.000021268876,0.000020646328,0.000021007063,0.000019757403,0.000020921614,0.000020927282,0.000020953,0.000019697538,0.000020527707,0.000020326435,0.000020616166,0.000019482564,0.00002081945,0.00002072504,0.000021249536,0.000020178877,0.000021262691,0.000020669318,0.000021017182,0.000019732208,0.000020880672,0.000020902986,0.00002088625,0.000019626941,0.00002048656,0.000020290627,0.00002058389,0.00001948288,0.000020852654,0.000020739315,0.000021299344,0.000020248217,0.000021337582,0.000020697289,0.000021030093,0.000019765317,0.00002092804,0.00002090229,0.000020895632,0.000019646604,0.000020497775,0.0000202796,0.000020565483,0.00001944188,0.00002080278,0.000020687205,0.000021247974,0.000020183343,0.000021293472,0.000020663741,0.00002102478,0.00001975484,0.000020937201,0.000020916008,0.000020925665,0.000019649808,0.000020507161,0.000020285499,0.000020572683,0.00001944316,0.000020798494,0.000020692747,0.000021250911,0.000020188252,0.000021296437,0.000020662754,0.000021010088,0.00001974836,0.000020931791,0.000020933549,0.000020947227,0.0000196895,0.000020551213,0.000020317908,0.000020604355,0.00001948134,0.000020823361,0.0000206817,0.000021229078,0.000020180398,0.00002127127,0.000020659447,0.000021001995,0.000019742823,0.000020912239,0.000020909627,0.000020905301,0.000019622245,0.00002051307,0.000020258454,0.000020567564,0.000019489236,0.000020855578,0.000020745088,0.000021303427,0.000020288344,0.000021408598,0.000020789967,0.000021120457,0.000019819905,0.000020955978,0.000020979975,0.000020935564,0.000019675179,0.000020471696,0.000020307043,0.000020551897,0.000019386227,0.000020744457,0.000020666717,0.000021297168,0.000020288595,0.00002140725,0.000020736485,0.000021003198,0.000019628289,0.00002060734,0.000020632668,0.000020459576,0.000019286503,0.000019847577,0.000019928011,0.00002026974,0.000019061903,0.000020510448,0.000020592941,0.000021227072,0.000020208132,0.000021428696,0.00002080905,0.00002112501,0.000020201176,0.000021498352,0.000021163118,0.000021180384,0.00002009151,0.000020956699,0.000020501491,0.000020745209,0.000020029314,0.000021239606,0.000021128999,0.000021559637,0.000021136091,0.00002242222,0.000022058104,0.000021894488,0.000020916827,0.000021252818,0.000021295586,0.000020751224,0.000019952753,0.000020124031,0.000020210386,0.000020365747,0.000019607747,0.000020812206,0.00002067196,0.000021503969,0.0000208483,0.000021989046,0.000021042813,0.000021264941,0.000020577589,0.000021059455,0.000021082202,0.000020689316,0.000020260057,0.000019672814,0.000019995477,0.000020391479,0.000020520622,0.000020590604,0.000021225656,0.000020930855,0.000021160537,0.000021092257,0.000021421136,0.000024140403,0.00002468999,0.000025383555,0.000017528682,0.0000108412205,0.000013060055],[0.000015141027,0.000011994757,0.0000105894605,0.000014248211,0.00002564277,0.00003269544,0.000026088013,0.00002397627,0.0000210059,0.000020921714,0.000019612178,0.000019972875,0.000018924535,0.000019450912,0.00001917873,0.00001980834,0.000019489478,0.000020542218,0.000019409554,0.000019938923,0.000019536446,0.000020700505,0.000019430407,0.000019664336,0.000018801025,0.000020079002,0.000018878227,0.000019708437,0.00001891793,0.000020307545,0.000018993675,0.000019558312,0.000018828765,0.000020273239,0.000019299254,0.000020187943,0.0000196709,0.000020848478,0.000019590047,0.00001997135,0.00001923344,0.000020705027,0.000019725472,0.000020220217,0.000019436895,0.000020275616,0.000019073668,0.000019362522,0.000018758132,0.000020172529,0.000019045567,0.000019607634,0.000019108096,0.000020298774,0.000019104105,0.000019801353,0.000018932224,0.000020296027,0.000018920258,0.000019434689,0.000018953686,0.000020185365,0.00001885178,0.000019084075,0.000018362602,0.000019789893,0.000018601973,0.000019153487,0.000018774042,0.000020107456,0.000018982175,0.000019659818,0.000018694753,0.000020141408,0.000018817671,0.000019452229,0.000018985435,0.000020263573,0.000018855035,0.000019161087,0.000018382732,0.000019809455,0.000018640225,0.000019284902,0.000018850955,0.000020185615,0.000019015042,0.000019686233,0.00001873766,0.000020193567,0.000018848257,0.000019433688,0.000018955927,0.00002019734,0.000018823415,0.000019110044,0.000018351888,0.00001977614,0.000018623592,0.0000192831,0.000018865952,0.000020209229,0.00001903783,0.00001973919,0.00001876724,0.000020212852,0.000018844034,0.00001944954,0.000018967807,0.000020210386,0.000018809076,0.000019122297,0.000018349734,0.00001977235,0.000018593424,0.000019230542,0.000018812863,0.000020144078,0.000018977813,0.00001966747,0.000018720764,0.000020180341,0.00001883805,0.000019454901,0.000018976854,0.000020231984,0.000018816343,0.000019120947,0.0000183487,0.000019777253,0.000018596296,0.000019230212,0.000018817133,0.000020152685,0.00001899458,0.000019677673,0.000018734998,0.000020181033,0.000018836614,0.000019448982,0.00001898395,0.00002024337,0.000018848761,0.000019159499,0.000018388904,0.00001981601,0.00001864074,0.000019275929,0.000018843837,0.000020159856,0.000018996338,0.000019681973,0.000018734641,0.000020180418,0.000018842757,0.000019442548,0.000018974555,0.000020221934,0.000018815355,0.000019104506,0.000018329936,0.00001976511,0.000018624036,0.0000192987,0.000018879991,0.000020225463,0.000019050816,0.000019765619,0.000018843297,0.000020317773,0.000018932205,0.00001952745,0.000019026776,0.000020281535,0.000018864424,0.000019149033,0.0000183739,0.000019792422,0.000018568882,0.000019161143,0.000018749744,0.00002009582,0.00001902092,0.000019767995,0.0000188211,0.000020240745,0.000018766308,0.000019289097,0.000018794302,0.000019980094,0.000018496245,0.000018695644,0.000017941893,0.000019388426,0.000018286739,0.000018902205,0.0000186283,0.000020082294,0.000019048637,0.000019723346,0.00001891822,0.000020387259,0.000019289922,0.000020005797,0.000019440435,0.000020604315,0.000019263322,0.000019519834,0.000018880299,0.00002019788,0.000019433168,0.00002019449,0.000019698307,0.000020794845,0.000019868541,0.000020715179,0.000020263864,0.000021685564,0.000020717926,0.00002112511,0.00002021077,0.000020980095,0.000019734918,0.000019529032,0.000018692203,0.000019780911,0.000018914936,0.000019693482,0.000019149013,0.000020579846,0.000019554414,0.00002046586,0.000019414792,0.00002077138,0.000019663325,0.00002079802,0.000019761776,0.00002104209,0.000019336154,0.000019599427,0.000018706469,0.000019529796,0.000020136298,0.000020419442,0.000020300306,0.000020844822,0.000020761714,0.00002150719,0.000020690026,0.000021209691,0.000022585815,0.00002541703,0.000025008983,0.0000168907,0.000010764879,0.0000133468675],[0.000015511008,0.000011161453,0.000010388031,0.000014031944,0.000027010508,0.000036230034,0.00002956792,0.00002452282,0.000022340131,0.000021598078,0.0000213206,0.000019826673,0.000020079213,0.000019612777,0.000020180474,0.000019435689,0.00002085902,0.000020505518,0.000021475895,0.000019685125,0.00002106972,0.000020495645,0.000020832458,0.000019260402,0.000020132555,0.00001931063,0.000020188156,0.00001881995,0.000020148804,0.000019617959,0.000020205374,0.000018751067,0.000019995345,0.000019330362,0.000020322077,0.000019244539,0.000020843729,0.000020369263,0.000021023998,0.00001954295,0.000020523048,0.000019955738,0.000021093907,0.000019584779,0.000020605768,0.00001993054,0.000020261139,0.00001884513,0.000019715468,0.00001933641,0.000020347326,0.000018782459,0.000020204758,0.000019538515,0.00002020784,0.000018834888,0.00002009172,0.000019237603,0.000020260559,0.0000185373,0.00001979937,0.000019447536,0.00001983367,0.000018389414,0.000019329367,0.000018973127,0.000019955816,0.000018344905,0.000019806283,0.000019295572,0.000020106056,0.000018624267,0.000019909112,0.000019080398,0.000020177089,0.000018463075,0.000019779536,0.000019436635,0.000019852878,0.000018359082,0.000019401856,0.000018964643,0.000020022211,0.000018452092,0.000019918587,0.000019344749,0.000020180745,0.000018689441,0.000019991512,0.000019156738,0.000020192392,0.000018482207,0.00001973919,0.000019394012,0.000019799125,0.000018339255,0.000019374029,0.000018940927,0.000019998854,0.000018428702,0.00001993822,0.000019325515,0.000020202582,0.000018700493,0.00002000595,0.000019149998,0.000020190813,0.000018474753,0.000019752599,0.000019386893,0.000019786608,0.000018317092,0.000019372052,0.000018921646,0.000019968571,0.000018375913,0.000019868066,0.000019273282,0.00002014137,0.000018636456,0.000019956995,0.000019124467,0.000020197976,0.000018484341,0.000019781666,0.000019406592,0.000019815368,0.000018324867,0.000019379426,0.000018927873,0.00001997354,0.000018386467,0.000019880254,0.000019291745,0.00002015674,0.000018650751,0.000019966628,0.00001913501,0.000020198651,0.000018487408,0.000019785062,0.000019427665,0.000019847048,0.00001836339,0.000019416571,0.000018963376,0.000020018964,0.000018430952,0.000019920679,0.000019303672,0.000020166432,0.000018666178,0.00001997034,0.000019138351,0.000020185576,0.000018479775,0.000019762754,0.000019412053,0.000019815256,0.000018312428,0.000019375691,0.000018911707,0.000020010508,0.000018441837,0.000019946303,0.00001933936,0.000020222224,0.000018746474,0.00002007523,0.00001924509,0.000020308476,0.000018558632,0.000019821266,0.000019455292,0.000019824667,0.000018368573,0.000019370002,0.000018948174,0.00001993955,0.000018334254,0.000019775329,0.00001922669,0.000020113883,0.000018687942,0.000020014593,0.000019164321,0.000020125413,0.000018347688,0.000019557343,0.000019179095,0.000019403427,0.000017977534,0.00001886248,0.000018614839,0.000019662799,0.00001807842,0.000019631303,0.000019216279,0.000020181958,0.000018764305,0.000020123187,0.00001953177,0.000020717272,0.000019155917,0.00002045195,0.000019749265,0.000020166488,0.00001893719,0.000019971732,0.000019527877,0.00002064613,0.000019509114,0.00002085723,0.000020156549,0.000020873505,0.000019954941,0.000021207263,0.000020901833,0.000022176833,0.000020793219,0.00002137993,0.000020753143,0.000020856492,0.000019531677,0.000019865434,0.000019346464,0.000020198555,0.000018772324,0.000020308127,0.00001956292,0.00002027906,0.00001913667,0.000020471423,0.000019766976,0.000020661613,0.000019578056,0.00002066378,0.000020276777,0.000020105366,0.000019071485,0.000018978737,0.000019056577,0.000020032754,0.000019794934,0.0000203554,0.000020057738,0.000020388776,0.000020244974,0.000019923966,0.000020199384,0.000022500766,0.000024067605,0.000026128746,0.000017092278,0.000011323667,0.00001294012],[0.000015897458,0.000012274353,0.000011532259,0.000015300084,0.00002822794,0.000034507262,0.000026984764,0.000023239678,0.000020444091,0.000020600837,0.00001942648,0.000019600604,0.000018856455,0.000019171031,0.000018539367,0.000019009603,0.000018973724,0.000020016007,0.000019192159,0.000019286981,0.00001942711,0.000020251287,0.000019207266,0.00001928345,0.000018280898,0.00001920545,0.000018068802,0.000018558083,0.000018152188,0.000019377503,0.000018230012,0.000018824385,0.000018086577,0.000019534771,0.000018580307,0.000019451896,0.00001928617,0.000020694051,0.000019330051,0.000019687284,0.00001873716,0.000020053818,0.000018896671,0.00001920373,0.000018944018,0.000019749094,0.000018641273,0.000018870558,0.000018139954,0.000019444347,0.000018375213,0.000018733372,0.000018518234,0.000019649358,0.000018578712,0.000019020774,0.000018283305,0.00001969645,0.0000183377,0.000018664308,0.000018334535,0.000019551151,0.00001815153,0.00001847729,0.000017861297,0.000019263856,0.000018146597,0.000018485134,0.00001830466,0.000019578672,0.000018351222,0.000018802712,0.000018120727,0.000019573838,0.00001826734,0.000018587272,0.000018222867,0.000019533763,0.000018091372,0.000018430566,0.000017845496,0.000019304684,0.00001820659,0.000018604564,0.000018392815,0.000019707328,0.000018448889,0.000018908768,0.000018204577,0.000019667956,0.000018309058,0.000018610632,0.000018228708,0.000019493717,0.000018063616,0.000018416582,0.000017841174,0.00001927968,0.000018184935,0.000018583693,0.000018387922,0.000019708757,0.000018448152,0.000018929895,0.000018204542,0.000019662106,0.000018297435,0.00001860412,0.000018196612,0.000019476658,0.000018039533,0.000018394569,0.000017813989,0.000019258603,0.000018143708,0.00001853341,0.000018335932,0.000019652507,0.000018394938,0.000018874951,0.000018161641,0.000019629506,0.000018289147,0.000018607296,0.00001821788,0.000019506231,0.000018063392,0.00001841681,0.000017823231,0.000019262881,0.000018149902,0.000018544692,0.000018351519,0.000019665462,0.000018410137,0.000018885465,0.000018175313,0.00001963295,0.0000182963,0.000018607474,0.000018233697,0.00001952594,0.000018094668,0.000018448116,0.000017861075,0.000019303265,0.000018200515,0.000018592325,0.000018390203,0.000019692581,0.000018429915,0.000018901304,0.000018195118,0.000019644449,0.00001829815,0.000018596475,0.000018220591,0.000019510622,0.000018080593,0.000018412313,0.00001782529,0.00001927218,0.000018178727,0.000018579227,0.000018384311,0.000019711782,0.000018488467,0.00001898482,0.000018257795,0.000019732697,0.000018392184,0.000018694682,0.000018269866,0.000019532907,0.00001809006,0.000018436034,0.000017825374,0.000019274808,0.000018143153,0.000018502576,0.000018292636,0.000019619027,0.000018436913,0.000018963883,0.000018244307,0.000019722236,0.000018277082,0.00001849358,0.000017991375,0.000019274607,0.000017738634,0.000018047189,0.000017455053,0.000019010127,0.00001793428,0.00001843257,0.000018128781,0.000019687941,0.000018530955,0.00001913284,0.000018483724,0.000019977295,0.000018811428,0.00001928253,0.000018775207,0.000019903055,0.00001848873,0.00001884069,0.00001847405,0.000019685709,0.000018841643,0.000019505655,0.000019442956,0.000020634105,0.000019619027,0.000020367866,0.000019853162,0.000021173033,0.000020060705,0.00002030228,0.000019733809,0.000020279696,0.000019230083,0.000019145526,0.000018554101,0.00001934283,0.000018391325,0.000018695555,0.00001849201,0.00001980443,0.000018780704,0.000019582707,0.000018879506,0.000020056152,0.000018661995,0.000019457499,0.00001864746,0.000020111562,0.000018744113,0.000019098296,0.000017960296,0.000019211386,0.000019143736,0.000020019861,0.000019735407,0.000020403382,0.00002025546,0.000021412967,0.000020790683,0.000021518084,0.000021984979,0.000025025849,0.000025365985,0.000018322735,0.000011044473,0.000013628343],[0.000015532,0.000013256561,0.000010659574,0.000017343582,0.000028724944,0.00003620917,0.000028618771,0.00002385059,0.000021613881,0.000021263035,0.000020746138,0.000019952733,0.000020289659,0.000019792706,0.000020044296,0.000019607483,0.000020333728,0.00002034527,0.000020332505,0.000019578001,0.000020784199,0.000020864549,0.00002081929,0.000019753314,0.000020074272,0.000019787516,0.000019745195,0.000018744684,0.000019562454,0.000019623965,0.000020088424,0.000019106055,0.000020059231,0.000019914733,0.000020570193,0.000019720506,0.000020949486,0.000020700505,0.000021074344,0.00001999462,0.000020698018,0.000020487654,0.000020681562,0.000019435709,0.000020062942,0.000020188925,0.000020357767,0.000019375082,0.000020193316,0.000020147536,0.000020521855,0.00001914998,0.000020157162,0.000020149477,0.000020566917,0.000019473575,0.00002038823,0.000020150937,0.00002045228,0.000018991628,0.000019861323,0.000020009784,0.000020222782,0.00001905527,0.000019991645,0.000019979105,0.00002041804,0.000019056377,0.000020176896,0.000020165988,0.0000205143,0.000019297928,0.000020284686,0.000020111023,0.000020442745,0.000018938219,0.00001978561,0.000019962898,0.000020181033,0.000018985924,0.0000199893,0.00001998238,0.000020480347,0.000019147972,0.000020319343,0.000020233681,0.000020626236,0.000019386263,0.000020375344,0.000020177416,0.000020494981,0.000018970106,0.000019800069,0.000019967008,0.000020157318,0.000018978302,0.000019991092,0.000019974588,0.00002045425,0.000019129775,0.000020325564,0.000020226467,0.000020620197,0.000019390147,0.00002037616,0.000020150976,0.00002046947,0.000018938996,0.000019753616,0.00001991889,0.00002012762,0.000018960918,0.00001995968,0.00001993531,0.000020398831,0.000019081872,0.000020275076,0.000020174954,0.000020570349,0.000019345965,0.000020346317,0.000020122267,0.000020464084,0.000018938383,0.000019775744,0.00001994653,0.000020154703,0.000018981036,0.00001997259,0.000019937326,0.00002040381,0.000019094143,0.000020289059,0.00002018625,0.00002058283,0.000019363428,0.000020352854,0.000020123973,0.000020462445,0.000018947216,0.000019787214,0.000019972913,0.000020180283,0.00001901428,0.00002001009,0.000019975942,0.00002044912,0.000019144321,0.000020334986,0.000020221009,0.00002060905,0.000019384583,0.00002037546,0.000020151647,0.000020468106,0.000018948444,0.000019775856,0.000019970705,0.00002017601,0.000018995195,0.000019993533,0.000019963773,0.000020440017,0.000019108425,0.000020309482,0.000020227835,0.000020644831,0.000019456329,0.000020434403,0.000020215764,0.000020548607,0.000019019468,0.000019811005,0.000019957966,0.000020174568,0.000018997787,0.000019958308,0.000019937954,0.000020398811,0.000019068868,0.000020214202,0.000020184056,0.000020585223,0.000019431094,0.000020381349,0.000020174743,0.000020383954,0.000018792009,0.000019453733,0.0000196776,0.00001982911,0.00001858738,0.000019521303,0.000019677731,0.000020161375,0.000018914232,0.000020045978,0.000020084364,0.000020723834,0.00001964767,0.000020665671,0.000020438867,0.000020709273,0.000019515051,0.000020467265,0.000020266261,0.00002040887,0.000019462566,0.000020338479,0.000020179707,0.000020395057,0.00001958446,0.000020838997,0.000020673124,0.000021157732,0.000020568817,0.000021485337,0.000021269809,0.000021136919,0.000020302201,0.00002053597,0.000020797306,0.000020561662,0.000019789459,0.000020213565,0.000020390116,0.000020181456,0.000019092413,0.000020234029,0.0000200529,0.00002074135,0.00001989666,0.00002089095,0.000020308496,0.000020225038,0.000019296749,0.000019764808,0.000020146708,0.000020118581,0.000019311643,0.000018928216,0.000019122206,0.000019375637,0.000019851288,0.000020003832,0.000020664686,0.000020916526,0.000021307551,0.000021208944,0.000021746451,0.000023144574,0.000024448098,0.000025631254,0.00001906523,0.000011424055,0.000013585923],[0.000015330887,0.00001553459,0.000011915383,0.00001741367,0.000029323699,0.000034291537,0.000027468235,0.00002440719,0.000020877149,0.000021103666,0.000019661693,0.000020105348,0.0000189577,0.000019700507,0.00001927661,0.000020112559,0.000019443069,0.000020379366,0.000019337629,0.00001968843,0.000019607747,0.000020729703,0.0000195668,0.00002003029,0.000018730103,0.000019746363,0.000018397464,0.000018645558,0.000018126706,0.000019422423,0.00001863596,0.000019530336,0.000018426963,0.000019861342,0.000018928235,0.000019811874,0.000019271409,0.00002065261,0.000019451469,0.00002027378,0.000019075378,0.000020394162,0.000018910336,0.000019030716,0.000018440025,0.00001953082,0.000018862122,0.000019576284,0.000018775743,0.000020083558,0.000018878012,0.000019021336,0.000018564562,0.0000196136,0.00001897251,0.000019600586,0.000018814155,0.000020085148,0.00001869395,0.00001878597,0.000018304747,0.000019616706,0.000018748904,0.000019304038,0.00001858784,0.000019929152,0.000018786668,0.000019039193,0.000018683095,0.000019805677,0.000018923127,0.000019433595,0.000018736857,0.000020071573,0.000018701672,0.000018745042,0.000018241819,0.000019568946,0.00001867745,0.00001924621,0.000018529363,0.000019927975,0.000018823757,0.000019143572,0.00001876826,0.000019915606,0.000019016457,0.000019563144,0.00001881559,0.00002014014,0.00001875647,0.000018790539,0.000018278215,0.000019591149,0.000018685289,0.000019236008,0.000018538572,0.000019908124,0.000018809076,0.000019136618,0.000018754485,0.000019909852,0.000018997098,0.00001955352,0.000018798371,0.000020128926,0.000018705043,0.000018738805,0.0000182163,0.000019539446,0.000018640312,0.000019211919,0.000018496597,0.00001986731,0.000018754,0.000019082056,0.0000187082,0.000019864334,0.000018950504,0.000019511665,0.00001876078,0.000020092008,0.000018682027,0.000018729694,0.000018221564,0.000019558835,0.00001865317,0.000019231771,0.000018503335,0.000019869241,0.000018758867,0.000019098257,0.000018727604,0.000019881694,0.000018970757,0.00001953002,0.000018780434,0.000020094001,0.000018688852,0.000018739735,0.000018238045,0.000019578503,0.000018688495,0.000019261064,0.000018533694,0.000019901083,0.000018809706,0.000019150584,0.000018776049,0.0000199191,0.00001900857,0.000019552383,0.000018799627,0.000020117162,0.000018714447,0.000018746634,0.000018247996,0.000019577086,0.000018693558,0.000019256235,0.000018531962,0.000019902222,0.000018796292,0.00001910775,0.000018736268,0.000019906378,0.000019033656,0.000019622823,0.000018876337,0.000020209132,0.000018782692,0.000018809347,0.000018280829,0.000019589112,0.00001869739,0.000019264537,0.000018537457,0.000019895162,0.000018752962,0.000019075942,0.00001869395,0.000019872576,0.000019016656,0.000019622954,0.000018871819,0.000020192045,0.000018638535,0.000018605095,0.000017969187,0.000019312196,0.000018400378,0.000018875058,0.000018100622,0.00001965693,0.000018516981,0.000018971752,0.000018442557,0.000019898198,0.000019117228,0.000019915624,0.000018926557,0.000020447425,0.000019113017,0.00001963604,0.000018926321,0.000020427155,0.000019278466,0.000019898673,0.000018949277,0.000020197918,0.000019048002,0.000019572923,0.000019063193,0.000020313182,0.000019813348,0.0000208157,0.00001989662,0.000021271575,0.00001972613,0.00002012031,0.000019248871,0.000020529978,0.000019659163,0.000020175512,0.000019234612,0.00002050773,0.000019183779,0.00001942409,0.00001886903,0.000020092832,0.000019477271,0.000020327425,0.000019182919,0.000020396224,0.000018761693,0.000019246798,0.000018229734,0.000019785382,0.000018867842,0.000019549605,0.000017812834,0.000018919283,0.000018404853,0.000019411998,0.000019135176,0.000020349653,0.000020564641,0.000021744378,0.000021478247,0.000022522514,0.000023712135,0.000025862078,0.000024827312,0.000017235387,0.000011417368,0.000013753095],[0.000015918682,0.000017088903,0.000013045962,0.000019026362,0.000032172262,0.00003558953,0.000031771026,0.00002520015,0.000022839342,0.000021792748,0.000021507865,0.000019835847,0.000020361591,0.000019731155,0.000020487008,0.00001977333,0.000020978674,0.000020608637,0.000021177595,0.000019626492,0.000021028369,0.000020666204,0.000021442147,0.000019760775,0.00002045507,0.00001947313,0.000019842486,0.000018438706,0.000019609655,0.000019308587,0.000020414516,0.000019062194,0.000020133399,0.000019425719,0.000020380105,0.000019181107,0.000020752133,0.000020307429,0.000021458185,0.000019881163,0.000020809744,0.000020003316,0.000020566466,0.000018762801,0.000019765524,0.000019540881,0.000020584537,0.000019427405,0.000020330817,0.000019754256,0.000020564934,0.00001872696,0.000019856343,0.000019487527,0.00002075619,0.000019329165,0.000020391752,0.000019714922,0.000020421623,0.000018477343,0.000019661655,0.000019515888,0.000020606594,0.000019171946,0.000020191179,0.000019552625,0.000020490506,0.00001870267,0.000020004118,0.000019627822,0.00002079201,0.000019231404,0.00002036771,0.000019735671,0.000020443193,0.000018428722,0.00001961375,0.000019433539,0.000020538006,0.000019074087,0.000020170373,0.000019509655,0.000020487692,0.000018776478,0.000020109337,0.000019687604,0.000020903364,0.000019347293,0.000020463636,0.000019777233,0.000020471267,0.000018474348,0.000019644338,0.000019481153,0.000020554073,0.000019082001,0.000020177531,0.000019509598,0.00002047361,0.00001876724,0.000020106498,0.000019661693,0.000020878542,0.000019327765,0.000020438241,0.000019747175,0.000020429006,0.000018405502,0.000019583882,0.000019420293,0.000020496016,0.000019046076,0.00002014592,0.00001947001,0.000020418449,0.000018710858,0.000020057376,0.000019625108,0.000020844203,0.000019293273,0.00002041259,0.000019708868,0.000020413505,0.000018397657,0.000019595445,0.000019434206,0.000020520034,0.000019061066,0.00002015501,0.000019466648,0.000020419033,0.000018733088,0.000020076455,0.000019640665,0.00002085536,0.000019307667,0.000020427095,0.00001971718,0.000020416599,0.000018410734,0.000019604791,0.00001945336,0.000020544077,0.000019091503,0.000020177647,0.000019492676,0.000020459715,0.000018783123,0.000020125202,0.000019681465,0.000020892525,0.000019334733,0.000020443855,0.000019739135,0.000020438963,0.000018431287,0.000019618481,0.000019467316,0.000020550997,0.000019095836,0.000020186326,0.000019495947,0.000020459458,0.000018747794,0.000020089039,0.000019674673,0.000020920277,0.000019388206,0.000020512913,0.00001982775,0.000020505284,0.000018484692,0.000019643288,0.00001947534,0.000020544077,0.000019104471,0.000020176376,0.000019493606,0.000020440815,0.000018691759,0.000020030346,0.000019622488,0.00002088121,0.000019393938,0.000020516394,0.00001981074,0.00002037212,0.000018305618,0.000019337758,0.000019204279,0.000020243197,0.000018774115,0.000019757308,0.000019178931,0.000020237077,0.000018459643,0.00001983505,0.000019528157,0.000021068094,0.000019534267,0.00002068109,0.000019933486,0.000020700783,0.000019257152,0.000020416599,0.000020189003,0.000020993604,0.000019867859,0.000020503974,0.000019776442,0.000020252368,0.000019159845,0.00002024557,0.000020058122,0.000021292803,0.00002040815,0.000021332091,0.000020786816,0.000021239282,0.000020064703,0.000020724705,0.000020662204,0.00002134088,0.000020208747,0.000020728537,0.000020073468,0.000020501902,0.000019042389,0.000020161353,0.00001962273,0.0000209558,0.000019583304,0.00002071581,0.000019845229,0.000020364758,0.000018976329,0.000019771162,0.000019746007,0.000020832937,0.000019403835,0.00001938669,0.00001866664,0.000019416164,0.00001886052,0.000019772651,0.000020202042,0.000020871574,0.000020775104,0.00002095738,0.00002148677,0.000024932804,0.000024813988,0.000023959332,0.000016048276,0.00001101168,0.000013253514],[0.00001587667,0.000017614548,0.000015645262,0.000021971711,0.000031954005,0.000031169526,0.000026958038,0.0000236896,0.000021111777,0.000020831429,0.000019530746,0.000019901936,0.000019022715,0.000019672947,0.000018869247,0.000019838286,0.000019654175,0.00002072409,0.000019472312,0.000019633962,0.000019524005,0.0000205781,0.000019514342,0.00001964518,0.000018744757,0.00001938179,0.000018451407,0.00001846945,0.00001808192,0.000019184197,0.000018346514,0.000018984947,0.000018406836,0.000019666455,0.000018770104,0.000019451822,0.00001921824,0.00002066396,0.000019488956,0.000020001084,0.000019195326,0.000020208401,0.000018895265,0.000018795377,0.000018512195,0.000019604064,0.000018926123,0.00001940724,0.000018785307,0.000019905676,0.000018820183,0.000018830542,0.00001860105,0.000019586216,0.000018948824,0.000019212943,0.000018727193,0.000019704095,0.000018675295,0.000018512195,0.000018422974,0.000019579978,0.000018800667,0.00001915053,0.000018520019,0.000019655075,0.000018626612,0.000018791668,0.000018667228,0.000019773688,0.000018943729,0.000019164012,0.000018726318,0.00001972346,0.000018653987,0.000018396078,0.00001830204,0.000019469173,0.000018675702,0.000019030282,0.00001846452,0.000019635965,0.000018630733,0.00001883744,0.00001870472,0.000019850473,0.000019029281,0.000019272125,0.000018805455,0.000019756686,0.000018674973,0.000018436649,0.000018364824,0.000019512892,0.000018721335,0.000019031078,0.000018469416,0.000019622936,0.00001860875,0.000018804163,0.000018679179,0.000019826919,0.000018989382,0.00001923454,0.000018746456,0.000019721429,0.000018622082,0.000018372568,0.000018286322,0.000019457462,0.000018659004,0.000019004818,0.000018435296,0.000019600624,0.000018564775,0.000018762821,0.00001863466,0.000019809153,0.000018960121,0.000019218898,0.00001872755,0.000019710993,0.000018606604,0.000018374441,0.000018296178,0.000019482175,0.00001867394,0.000019026125,0.000018445036,0.000019607747,0.00001856612,0.000018776049,0.000018649203,0.000019816673,0.000018971588,0.000019225334,0.000018742969,0.000019722538,0.000018617733,0.000018382189,0.000018308743,0.000019487545,0.000018694504,0.000019042971,0.000018470842,0.000019626566,0.000018610952,0.00001881297,0.000018695875,0.000019849791,0.000019004401,0.00001923454,0.00001875951,0.00001972773,0.000018641202,0.000018395463,0.000018329954,0.000019496227,0.000018708306,0.00001903894,0.000018473098,0.000019619942,0.000018607561,0.000018800487,0.000018687337,0.000019840802,0.000019040846,0.000019294486,0.000018822822,0.000019793915,0.000018698462,0.0000184357,0.0000183441,0.000019483643,0.000018708486,0.000019027431,0.000018448363,0.000019588777,0.000018556684,0.000018762837,0.000018652405,0.000019818695,0.000019048292,0.000019353163,0.000018866745,0.000019850397,0.00001862837,0.00001831166,0.00001810499,0.000019227515,0.000018415896,0.000018767938,0.000018075214,0.000019323415,0.000018392097,0.000018657742,0.00001844108,0.000019940862,0.000019085568,0.000019709527,0.000019025183,0.000020157913,0.000019007335,0.000019316543,0.000019097548,0.000020489195,0.000019334935,0.000020030175,0.000019275727,0.000020190042,0.00001897669,0.000019475598,0.000019396159,0.000020542786,0.000019887459,0.000020746216,0.000020241267,0.000021130349,0.000019891442,0.00001995612,0.000019440507,0.0000204181,0.000019561316,0.000019866684,0.000019090046,0.000019892772,0.000018913744,0.000019028139,0.000018654024,0.000019668763,0.000019065612,0.000019587002,0.000019120127,0.000019896452,0.000018972927,0.000019023802,0.000018473942,0.000019525924,0.000018800883,0.000019070321,0.000018201834,0.000018716963,0.000018824743,0.000019487918,0.000019648365,0.000021016462,0.000020749285,0.000021666074,0.000021120315,0.000022487295,0.000023735303,0.000027172111,0.000024211438,0.000016428732,0.000010382881,0.000013441967],[0.000016245529,0.000017437798,0.000014396419,0.000024022938,0.00003002474,0.000029620523,0.0000263807,0.000023422817,0.000021747488,0.000021123036,0.000020941816,0.00002025917,0.000020889654,0.000019952333,0.000020248892,0.000019834995,0.000020897825,0.000020703073,0.000020811194,0.000019931775,0.000020951862,0.00002111089,0.000020991862,0.000019850359,0.000020352447,0.000020141657,0.00002046188,0.000019345116,0.000019927138,0.000019890133,0.0000201474,0.000019140049,0.000020254183,0.000020087371,0.000020921296,0.000020038351,0.000021215577,0.000021014295,0.000021375079,0.000020257585,0.000021120557,0.000020773836,0.000021078042,0.000019642952,0.00002035171,0.000020418604,0.000020577432,0.00001974612,0.00002050904,0.000020450643,0.000020861982,0.000019585283,0.00002048775,0.000020444031,0.000020692216,0.000019677449,0.000020422129,0.000020346219,0.000020849313,0.000019404557,0.000020290607,0.000020346957,0.00002054794,0.00001949946,0.000020259013,0.000020123494,0.000020647232,0.000019508556,0.000020570957,0.000020491758,0.000020727844,0.000019666493,0.000020438809,0.000020310723,0.000020721738,0.000019313173,0.000020201694,0.000020249761,0.00002045901,0.000019390332,0.000020213372,0.000020112442,0.00002065907,0.000019552737,0.000020620138,0.000020555288,0.000020816751,0.000019738041,0.000020497893,0.000020346628,0.000020758505,0.00001936603,0.0000202611,0.000020293026,0.00002047447,0.000019394789,0.000020201138,0.000020102741,0.000020634754,0.000019516912,0.000020593017,0.000020531681,0.000020786954,0.000019694759,0.000020446978,0.000020296317,0.000020711585,0.000019304867,0.00002020339,0.000020237367,0.000020429045,0.000019352941,0.000020189676,0.000020077967,0.000020606378,0.000019470363,0.00002055478,0.000020512502,0.000020781306,0.000019675235,0.000020449861,0.000020295154,0.000020725374,0.000019303432,0.0000202148,0.00002026027,0.000020455245,0.000019356412,0.000020209576,0.000020074656,0.000020605728,0.000019477326,0.000020562014,0.000020520054,0.000020785785,0.000019681183,0.000020462698,0.000020304951,0.000020728736,0.00001931041,0.000020218637,0.0000202691,0.000020461273,0.000019378003,0.00002022639,0.000020100499,0.000020639556,0.00001952004,0.000020602958,0.0000205567,0.000020808415,0.000019701973,0.000020465255,0.00002031729,0.000020741845,0.000019341704,0.00002023729,0.00002028407,0.000020476422,0.00001939353,0.000020213798,0.000020098618,0.000020636506,0.00001952732,0.000020606318,0.000020553858,0.000020830354,0.000019757214,0.000020514046,0.000020372703,0.000020782574,0.000019370647,0.000020231579,0.000020270512,0.00002045392,0.000019392995,0.00002015947,0.000020051906,0.000020583693,0.000019472182,0.000020585087,0.000020516885,0.000020813377,0.000019790477,0.000020559562,0.000020432786,0.00002070949,0.000019263212,0.00001999891,0.000020012418,0.000020155452,0.000019163499,0.000019817882,0.000019742767,0.000020454212,0.000019377578,0.000020507161,0.000020521815,0.00002098798,0.000019836034,0.000020917783,0.000020609425,0.000021144097,0.000019943602,0.000021238533,0.000020898822,0.000021057407,0.000020114936,0.000021004478,0.000020438496,0.000020770092,0.000020106248,0.000021335265,0.000021169033,0.000021507312,0.000021002636,0.000022057515,0.000021827378,0.000021896805,0.000020739175,0.000021129847,0.00002114803,0.000020992664,0.000020084899,0.000020485933,0.000020346219,0.000020561347,0.000019725021,0.000020532738,0.00002035468,0.000020804922,0.000019954294,0.000020983658,0.000020821557,0.000021347312,0.00002023069,0.000020447229,0.000020502566,0.000020095207,0.000019732151,0.000019324078,0.000019758063,0.00002028372,0.000020411695,0.000020856334,0.000021545373,0.000021332233,0.000021642716,0.00002141562,0.000022049397,0.00002496297,0.000025216375,0.000024358918,0.000017058228,0.000010791563,0.000013256385],[0.000015756244,0.000015484478,0.000014497131,0.000021547323,0.000029354505,0.000028438504,0.000023745943,0.000022410504,0.000019731982,0.000020440271,0.000019542278,0.000020504893,0.000019117993,0.000019762283,0.000018972656,0.000019865072,0.000019254196,0.000020566975,0.000019412866,0.000020207108,0.000019685427,0.000020850248,0.00001964949,0.000019673658,0.000018960864,0.000020094805,0.000019489702,0.00001988507,0.000019169604,0.000019939893,0.000018805742,0.000019002462,0.000018404466,0.00001978829,0.00001913556,0.000020138084,0.00001943897,0.000020547037,0.000019474912,0.000019904006,0.00001920785,0.000020429163,0.000019524303,0.000019763602,0.000019077872,0.000020002019,0.000019100626,0.000019532143,0.00001880079,0.00002017455,0.000019168343,0.000019757383,0.000019123538,0.000020110161,0.000019285178,0.000019556448,0.000019023168,0.000020160413,0.000019503925,0.000019513616,0.000019041736,0.000019877942,0.000019026524,0.000019375377,0.000018577048,0.0000199317,0.000019012848,0.000019718815,0.000019164103,0.000020188176,0.000019277144,0.000019586965,0.000019005089,0.000020105119,0.000019376894,0.00001940887,0.000019009294,0.000019837455,0.000018981305,0.000019284902,0.000018499048,0.000019905694,0.000019029845,0.00001976136,0.000019181016,0.000020222069,0.00001931774,0.000019631809,0.000019054887,0.000020172029,0.000019463085,0.000019459594,0.000019049583,0.000019839876,0.000018998238,0.000019279845,0.00001849688,0.000019876388,0.000018992569,0.000019714264,0.000019148849,0.000020191006,0.000019271922,0.000019582294,0.000018996465,0.000020112864,0.000019390201,0.000019387558,0.000018992516,0.000019786457,0.000018937262,0.000019230505,0.00001845892,0.000019844756,0.00001894326,0.000019660962,0.00001909886,0.000020158335,0.0000192372,0.000019556093,0.00001897698,0.00002010857,0.000019379093,0.000019387375,0.000018984836,0.000019805168,0.000018945193,0.00001923643,0.000018455912,0.00001985284,0.000018951643,0.000019675666,0.000019116627,0.000020173316,0.000019251092,0.00001956473,0.000018987608,0.000020117084,0.000019391071,0.000019396972,0.000018996609,0.000019806055,0.000018959689,0.00001925629,0.000018481978,0.000019878547,0.000019000052,0.00001972282,0.00001916284,0.000020213933,0.000019287514,0.000019590309,0.000019009583,0.000020135261,0.000019431389,0.0000194353,0.00001903293,0.000019825955,0.00001898462,0.00001926946,0.00001849171,0.00001987599,0.000018997353,0.000019726996,0.000019171854,0.00002021987,0.000019333444,0.00001965691,0.00001907647,0.000020197245,0.000019491317,0.00001947703,0.000019060975,0.000019834444,0.000019008206,0.000019285711,0.000018498271,0.000019845305,0.000018938726,0.000019653236,0.000019131965,0.000020168623,0.000019345449,0.00001967668,0.000019109571,0.000020248603,0.000019453677,0.000019328778,0.000018864963,0.000019607243,0.000018689636,0.000018961477,0.000018174862,0.000019447945,0.000018611485,0.000019395824,0.000018922838,0.00002010389,0.000019158511,0.000019592513,0.000018907902,0.000020167105,0.00001936832,0.000019769124,0.000019244722,0.000020311729,0.000019267072,0.000019794858,0.000018923703,0.000020221663,0.000019436562,0.000020268059,0.000019676454,0.000020764865,0.000020044334,0.000020635955,0.000020189715,0.000021429085,0.000020792546,0.000021017122,0.000019955702,0.000020778432,0.000019803316,0.000019986917,0.000018943512,0.000020075497,0.000019359457,0.00002010412,0.000019348623,0.000020234878,0.00001950852,0.000019765448,0.000019388723,0.00002058599,0.00002042739,0.000021018646,0.000020192738,0.000020918043,0.000019649358,0.000019632444,0.000018745757,0.00001950519,0.000020101303,0.000020382633,0.000020248486,0.00002095742,0.000020925267,0.00002175728,0.000020964035,0.000021598757,0.000023164888,0.000025697533,0.000023614219,0.000016337972,0.000010600493,0.000013478654],[0.000015820611,0.0000141243545,0.000013624211,0.000020106,0.000031575266,0.000030638636,0.000027171825,0.000022890541,0.000021235577,0.000020864509,0.000021134985,0.000020075018,0.00002051749,0.000019516057,0.000019885601,0.000018989454,0.000020268464,0.000020034644,0.000021236996,0.000019674317,0.000020962696,0.00002067618,0.000020925845,0.000019597372,0.000020194375,0.000019622617,0.000020676553,0.000019568592,0.000020597594,0.000019998128,0.000020331516,0.00001875824,0.000019768257,0.000019231495,0.00002066646,0.00001933357,0.000020831229,0.000020202506,0.000020953961,0.000019626004,0.000020466447,0.000020044392,0.00002105554,0.00001946275,0.000020555328,0.00001996263,0.000020648455,0.000019231036,0.000020083253,0.000019664207,0.000020840567,0.000019273926,0.00002038821,0.000020024541,0.0000206493,0.000019562416,0.000020290297,0.000020002344,0.000021087853,0.00001942322,0.00002036497,0.00001984349,0.00002057133,0.000019167666,0.000019985888,0.000019539222,0.00002077766,0.000019220934,0.000020417066,0.000020062675,0.00002071676,0.000019531193,0.00002023679,0.000019863444,0.00002091904,0.000019366604,0.000020375597,0.000019862517,0.000020563248,0.000019114566,0.000019945637,0.000019510604,0.00002077013,0.000019211973,0.000020419793,0.000020026717,0.000020727412,0.00001956807,0.000020312815,0.000019971465,0.000021002137,0.00001939233,0.000020356409,0.000019857005,0.000020574958,0.000019130432,0.00001993881,0.000019505655,0.000020750194,0.000019193496,0.000020405852,0.00002000801,0.000020695472,0.00001952529,0.000020265312,0.00001991935,0.000020926704,0.000019320227,0.00002030441,0.000019809586,0.000020522735,0.000019070758,0.0000198948,0.00001946496,0.000020709924,0.00001913211,0.000020356254,0.00001996181,0.000020676041,0.000019497898,0.000020254995,0.00001991213,0.000020933569,0.000019315014,0.000020311245,0.000019818997,0.000020536421,0.000019065648,0.000019893454,0.000019469173,0.000020717986,0.000019145617,0.000020378415,0.00001997535,0.00002068397,0.000019503274,0.000020259808,0.000019924913,0.000020952863,0.00001932863,0.000020314501,0.000019825178,0.000020549605,0.000019099916,0.000019923395,0.000019497807,0.000020757934,0.000019196643,0.00002042735,0.0000200182,0.00002072253,0.000019539428,0.000020283256,0.0000199475,0.000020982998,0.000019378962,0.00002035072,0.000019849698,0.000020568898,0.000019120107,0.000019935367,0.000019504967,0.000020753758,0.00001920809,0.000020439626,0.000020046837,0.000020758944,0.000019603614,0.000020343756,0.000020001618,0.000021022535,0.000019421183,0.000020367088,0.0000198635,0.000020568663,0.000019141016,0.00001993552,0.000019469286,0.000020688209,0.00001913492,0.00002034523,0.00002000387,0.0000207151,0.000019607858,0.000020342493,0.000019990483,0.000020936364,0.000019315952,0.000020121997,0.000019612964,0.00002014767,0.000018723318,0.000019512816,0.000018984276,0.000020189273,0.000018703224,0.000020043397,0.000019705561,0.000020574154,0.00001924465,0.000020264133,0.000019828318,0.000021106885,0.00001939527,0.00002058597,0.000019931624,0.00002068476,0.00001922341,0.000020198631,0.000019723271,0.000020748079,0.000019595745,0.000020714724,0.000020312853,0.00002110439,0.000020430136,0.000021212423,0.000021074624,0.000022616874,0.000020991043,0.000021376996,0.000020622145,0.000021146112,0.000019866153,0.000020152704,0.000019587917,0.000020682412,0.000019446072,0.000020423822,0.00001982913,0.000020544743,0.00001970246,0.00002041142,0.000020385489,0.00002199167,0.000020863019,0.000021590295,0.000021042712,0.000021047206,0.000019684468,0.000019476676,0.000019337831,0.000020293239,0.00001988526,0.000020561682,0.00002016793,0.000020539554,0.000020410876,0.000019982344,0.000020402955,0.000023035993,0.000024007133,0.000025262034,0.000016402699,0.000011032188,0.000012922448],[0.00001638297,0.000013729546,0.000014220532,0.000020306676,0.000032842843,0.00003085747,0.000025136327,0.000022248112,0.000019635347,0.000020127007,0.0000190213,0.000019742296,0.000018930383,0.000019418403,0.0000182532,0.000018859171,0.000018620183,0.000020051428,0.000019069323,0.000019645011,0.000019554975,0.000020767515,0.000019591578,0.000019770407,0.000018751569,0.000019606623,0.0000188218,0.000019133715,0.000018955494,0.000019640216,0.00001863626,0.000018690118,0.000018053817,0.000019321407,0.000018685716,0.000019352497,0.000019261615,0.00002039564,0.00001929364,0.000019634186,0.000018918778,0.000019992884,0.000019117519,0.000019212137,0.000019043679,0.000019744914,0.000018889483,0.000019144029,0.000018619969,0.000019925163,0.00001897707,0.00001943884,0.000019212906,0.000020260115,0.000019393643,0.000019779007,0.000019243254,0.000020228472,0.000019369982,0.000019296805,0.000019212632,0.000019809851,0.000018932062,0.00001917496,0.000018659468,0.000019899013,0.000018979279,0.000019421905,0.000019275765,0.000020359223,0.00001941122,0.000019763018,0.000019146073,0.00002013868,0.00001930586,0.000019289557,0.00001919172,0.000019786365,0.000018859388,0.00001910161,0.000018602772,0.000019872823,0.000018933308,0.000019412071,0.000019246705,0.000020357902,0.000019426036,0.000019827656,0.000019251864,0.00002023372,0.00001935344,0.000019279643,0.000019187217,0.00001978476,0.000018896762,0.000019125324,0.00001863349,0.000019879722,0.000018940314,0.000019403873,0.000019242061,0.000020337431,0.000019393865,0.000019780327,0.000019197925,0.000020182573,0.00001928551,0.000019199188,0.000019126619,0.00001973488,0.000018841589,0.00001906674,0.000018589577,0.000019847312,0.00001889179,0.000019348936,0.000019196277,0.000020306947,0.000019365496,0.000019760228,0.000019181309,0.000020174934,0.000019276242,0.00001920622,0.000019133715,0.000019754389,0.000018841374,0.00001906543,0.000018577544,0.00001984805,0.000018893068,0.000019362615,0.000019215875,0.000020325584,0.000019376264,0.000019767316,0.000019197814,0.000020188041,0.000019291432,0.00001921135,0.000019138608,0.000019761435,0.000018863218,0.000019093743,0.00001861507,0.000019870076,0.000018933524,0.000019410183,0.000019255443,0.00002035464,0.000019405039,0.000019794195,0.000019220219,0.000020205724,0.00001932533,0.00001925504,0.000019178035,0.000019782081,0.00001888797,0.000019115932,0.000018628334,0.000019881069,0.000018947523,0.000019416739,0.000019266869,0.000020375246,0.000019456182,0.000019856947,0.000019274974,0.000020250745,0.000019365145,0.000019273852,0.000019186888,0.000019771087,0.000018901195,0.000019123445,0.000018624765,0.00001984667,0.00001890444,0.000019322992,0.000019212028,0.000020313919,0.00001948903,0.000019890704,0.000019298222,0.000020279154,0.000019319232,0.000019174395,0.000018980292,0.000019554003,0.000018561092,0.000018718943,0.00001817559,0.000019379535,0.00001842171,0.000018850487,0.000018793102,0.000019985146,0.000019073177,0.000019487954,0.000018980818,0.00002007657,0.000019178216,0.00001917008,0.000018962617,0.000019734334,0.000018676685,0.00001898902,0.000018667904,0.000019813253,0.00001898451,0.000019545596,0.000019548317,0.000020585341,0.000019897343,0.000020235571,0.000019869658,0.00002086045,0.000020268426,0.00002020998,0.000019718307,0.000020060876,0.000019220273,0.000019287349,0.000018581653,0.000019533987,0.000018853201,0.000019423478,0.000019141218,0.000020226427,0.000019603389,0.00001994556,0.000019302346,0.00002031886,0.000019727635,0.000020338537,0.000019931946,0.000020664156,0.000019912188,0.00001966775,0.000018674404,0.000019172256,0.000019464997,0.000019785515,0.000019976133,0.000020282,0.00002039807,0.00002123805,0.000020579748,0.000021390924,0.00002207873,0.000025492282,0.000025333567,0.000017372948,0.000010638999,0.000013415573],[0.000016096448,0.000013909796,0.000012301869,0.000021496855,0.000033009797,0.000032388085,0.000027243177,0.000023433988,0.000021486669,0.000021020067,0.000020608617,0.000020083808,0.0000206818,0.000019922045,0.000020115283,0.000019598569,0.00002040566,0.000020301777,0.000020569956,0.000019766976,0.000021072554,0.000021167378,0.000021152284,0.000020240745,0.000020347443,0.00002014742,0.000020122803,0.000019285491,0.000019972207,0.000020136855,0.000020388115,0.000019349398,0.000019835694,0.000020003738,0.0000207056,0.000019833858,0.00002101127,0.000020736348,0.00002106737,0.000020231599,0.00002064245,0.000020668036,0.000020829282,0.000019851135,0.000020323569,0.000020343328,0.000020462445,0.000019695153,0.000020424506,0.00002057131,0.000021008223,0.000019878453,0.000020835938,0.000020767198,0.000021014335,0.000020374451,0.000020906497,0.000020837942,0.000020899559,0.000019823818,0.000020398713,0.00002037956,0.000020620118,0.000019706556,0.000020470174,0.00002049811,0.000020914473,0.000019768786,0.000020825368,0.000020789948,0.00002109266,0.000020261661,0.000020816771,0.000020720256,0.000020869704,0.000019763376,0.000020361884,0.000020343445,0.000020562993,0.000019607167,0.000020396768,0.000020485171,0.000020895155,0.000019767429,0.000020860669,0.000020792071,0.000021140042,0.000020336305,0.000020925585,0.00002079209,0.000020885274,0.00001977961,0.000020384712,0.000020374704,0.000020592606,0.000019650744,0.0000204445,0.000020516845,0.000020910105,0.000019767542,0.000020840667,0.00002075443,0.000021099358,0.000020288286,0.000020862162,0.000020736703,0.000020823143,0.000019710747,0.000020321184,0.000020330255,0.000020555248,0.000019603915,0.00002040704,0.000020485035,0.000020875057,0.000019718984,0.000020810498,0.000020718697,0.000021086445,0.000020271595,0.000020854166,0.00002073702,0.000020844442,0.000019721618,0.000020344958,0.000020347714,0.000020562993,0.000019601539,0.000020401127,0.000020487165,0.00002086616,0.000019730422,0.000020836234,0.000020736623,0.000021109625,0.0000202843,0.000020870064,0.000020749878,0.000020850746,0.000019725885,0.000020339661,0.000020360874,0.000020581554,0.000019627054,0.000020430232,0.000020519368,0.000020901094,0.000019767127,0.00002087255,0.000020754589,0.000021122029,0.000020305146,0.000020894217,0.000020769854,0.000020866399,0.00001976087,0.000020378706,0.000020385645,0.000020602643,0.00001965127,0.000020444753,0.000020528743,0.000020920019,0.000019779536,0.000020863674,0.000020787826,0.000021146294,0.000020355283,0.000020930833,0.000020808653,0.000020881429,0.00001978323,0.000020368312,0.000020365183,0.000020573232,0.000019657231,0.000020430603,0.000020484058,0.000020855678,0.000019697896,0.000020741489,0.000020766229,0.000021118885,0.0000203935,0.000020947507,0.000020797108,0.000020749601,0.000019638643,0.000020131307,0.000020160816,0.000020273857,0.00001929824,0.000019915302,0.00001999216,0.00002034977,0.000019255736,0.000020351457,0.000020484373,0.00002087657,0.000020075056,0.000020779502,0.000020622007,0.000020875696,0.000019650972,0.000020500162,0.000020352156,0.000020547293,0.000019683417,0.000020564974,0.000020413989,0.000020585774,0.000019810966,0.000020957757,0.000020906416,0.000021153535,0.000020868092,0.000021322185,0.000021362323,0.00002129063,0.000020414614,0.000020632237,0.000020679037,0.00002068977,0.000019851059,0.000020134052,0.000020318219,0.000020383332,0.00001956542,0.000020601701,0.000020578964,0.00002107595,0.000020398247,0.000020763477,0.000020410429,0.000020646741,0.000019781835,0.000020182111,0.000020652747,0.000020526571,0.000019821531,0.000018932982,0.000019166058,0.000019033367,0.000019647729,0.000019662219,0.000020536714,0.000020826144,0.000021225029,0.000021023496,0.000021591446,0.000023349909,0.000024042807,0.000025135392,0.000018061894,0.000010912305,0.000013298282],[0.00001573327,0.0000142669205,0.000012492722,0.00001848064,0.000029989314,0.000032355332,0.000026412796,0.00002403742,0.000020758112,0.000020953083,0.00001945249,0.000019997195,0.000018804827,0.000019585488,0.000019044932,0.000019984134,0.000019279809,0.000020380552,0.000019174486,0.00001980972,0.000019454605,0.000020933508,0.000019713118,0.000020471618,0.000019064666,0.000020250514,0.00001899496,0.000019376874,0.000018961116,0.000020215764,0.000019436302,0.000019903891,0.000018605415,0.000019888086,0.000019087625,0.000019833593,0.000019404002,0.00002065458,0.000019677356,0.000020414203,0.000019253075,0.000020554133,0.000019487305,0.000019815521,0.000019104962,0.000020015472,0.00001926325,0.000019736895,0.000018876895,0.00002019894,0.000019118157,0.000019634186,0.000019074796,0.00002030007,0.000019472516,0.00002043304,0.00001948435,0.000020822468,0.000019375784,0.000019586403,0.000018998184,0.000019960517,0.000019132147,0.000019617248,0.000018854136,0.000020191237,0.000018998384,0.000019483141,0.00001898386,0.000020310781,0.000019360195,0.00002024588,0.000019262148,0.000020660627,0.000019196368,0.000019456664,0.000018906172,0.00001996621,0.000019052344,0.00001954021,0.00001878459,0.000020212236,0.000019018089,0.00001952799,0.000018989509,0.000020339972,0.000019424831,0.000020347656,0.000019352738,0.000020720672,0.000019246025,0.000019528194,0.000018973724,0.000020005167,0.000019084966,0.000019567156,0.000018819035,0.000020220585,0.000019009112,0.000019498457,0.000018950705,0.000020284338,0.000019366364,0.000020281632,0.000019299123,0.00002066441,0.000019198766,0.000019464347,0.000018924751,0.000019951362,0.000019035944,0.0000195088,0.000018772394,0.00002017022,0.000018964101,0.000019446776,0.000018910265,0.000020245996,0.000019339712,0.000020260619,0.0000192838,0.000020653359,0.000019193769,0.000019471347,0.000018940062,0.000019977693,0.000019040412,0.000019516132,0.00001877458,0.000020172009,0.000018965475,0.000019463252,0.000018934355,0.000020272562,0.00001936243,0.00002027434,0.000019294395,0.000020660687,0.000019200763,0.00001947532,0.000018930925,0.000019978379,0.00001905883,0.00001953708,0.000018792905,0.000020205163,0.000019003639,0.0000195029,0.000018965855,0.00002029864,0.00001937606,0.000020294943,0.000019314388,0.000020687936,0.000019221337,0.000019505524,0.000018967918,0.000020013716,0.000019087005,0.000019572028,0.000018820147,0.000020232406,0.000019023548,0.000019518755,0.00001897669,0.000020321844,0.000019420551,0.000020364758,0.000019384248,0.000020767458,0.000019290752,0.000019560608,0.000019003168,0.000020019692,0.00001910478,0.000019581697,0.00001884655,0.000020224497,0.000018993456,0.000019428797,0.000018908948,0.000020255826,0.000019439285,0.000020398013,0.000019412311,0.000020804051,0.00001919075,0.000019398729,0.000018824187,0.000019924459,0.00001895947,0.000019320596,0.000018475934,0.000019783176,0.000018575613,0.000018976763,0.000018645664,0.000020063708,0.00001927536,0.000020198131,0.000019216608,0.000020568074,0.000019119816,0.000019538029,0.000018952944,0.000020199499,0.000019151425,0.000019816634,0.000018993927,0.000020266607,0.00001913386,0.000019603951,0.000019129739,0.000020429123,0.00001997415,0.000021017404,0.000020087964,0.0000213488,0.000019877732,0.000020182457,0.000019434614,0.00002050505,0.000019890438,0.00002014986,0.00001899911,0.000020172318,0.000019111321,0.000019612648,0.000018996501,0.00002040926,0.000019842411,0.000020816255,0.000019456867,0.000020607597,0.000019064193,0.000019806017,0.00001894727,0.000020501177,0.000019915797,0.000020305686,0.000018561996,0.000019164487,0.000018910661,0.000019184437,0.00001911371,0.000019945066,0.000020651409,0.000021636135,0.000021409985,0.000022219214,0.00002372419,0.000025206109,0.000023651586,0.00001641899,0.00001100555,0.00001343032],[0.000015619906,0.000014062568,0.000011399992,0.000016840408,0.000029717348,0.000035226913,0.000030854793,0.000025344441,0.000022804192,0.000021886553,0.000021431822,0.000019780158,0.000020303363,0.000019580579,0.000020435204,0.000019490073,0.000020821593,0.000020433721,0.000021067992,0.000019378353,0.000020830652,0.000020509275,0.000021496384,0.000019963867,0.000020611724,0.000019770614,0.000020300537,0.000019253515,0.000020417961,0.000020338246,0.000021427755,0.000019964058,0.000020433663,0.000019722856,0.000020577098,0.00001944403,0.000021027827,0.00002064247,0.000021857124,0.000020271054,0.000020993226,0.000020517315,0.000021187474,0.000019745159,0.000020566955,0.000020307722,0.000021102538,0.000019739171,0.000020322019,0.000019753126,0.000020500514,0.000019006267,0.000020366835,0.000020038351,0.000021141677,0.000019978608,0.000021002877,0.00002043076,0.000020863416,0.000019311754,0.000020229012,0.000020015566,0.000020571997,0.000019347755,0.000020098409,0.000019638586,0.000020269874,0.00001872439,0.000020131498,0.000019899697,0.000020944111,0.000019662892,0.000020718635,0.00002011461,0.000020581161,0.000019113473,0.000020155452,0.000019997993,0.000020566406,0.000019305273,0.000020105615,0.000019676962,0.000020324362,0.00001874994,0.000020158048,0.000019912357,0.000021036774,0.000019767995,0.000020805379,0.000020183556,0.000020668156,0.000019207777,0.00002022824,0.000020050873,0.000020590545,0.000019314737,0.000020091202,0.000019653726,0.00002027927,0.00001871773,0.000020114898,0.000019861816,0.000020974772,0.000019712159,0.0000207516,0.000020134168,0.000020623303,0.000019157524,0.000020180187,0.000020005129,0.000020548194,0.000019266281,0.000020050988,0.000019615114,0.000020242405,0.00001867403,0.000020084344,0.000019826843,0.000020959198,0.000019702235,0.000020751422,0.000020125528,0.000020633594,0.000019176077,0.000020212852,0.000020018908,0.000020552918,0.000019268045,0.000020059957,0.00001961779,0.00002024559,0.000018688692,0.000020110621,0.000019841995,0.000020979676,0.000019709829,0.000020758052,0.000020123494,0.000020636506,0.000019174578,0.000020202968,0.000020027997,0.000020581809,0.000019295883,0.000020079997,0.000019644862,0.000020284764,0.000018725603,0.00002015134,0.000019871042,0.000021003218,0.000019729385,0.000020782058,0.000020156165,0.000020656096,0.00001920633,0.000020240648,0.000020070616,0.000020616146,0.000019335674,0.000020119349,0.000019680603,0.000020310452,0.00001875275,0.00002015203,0.000019905276,0.000021034126,0.000019792762,0.000020845657,0.000020249587,0.000020733718,0.000019272382,0.000020267093,0.000020086605,0.000020609405,0.000019340838,0.000020107092,0.00001967788,0.000020280606,0.000018699033,0.000020046036,0.000019832252,0.000020985619,0.000019798652,0.000020856412,0.000020253701,0.00002063562,0.000019092395,0.000020026164,0.000019945199,0.000020395855,0.000019109753,0.000019732095,0.000019255278,0.000019804733,0.000018270006,0.000019803185,0.000019719999,0.000021053993,0.000019755651,0.000020830235,0.000020168278,0.000020737336,0.000019340468,0.000020546802,0.000020291303,0.000020936284,0.000019738814,0.000020507357,0.000019873392,0.0000202387,0.000019173609,0.000020235766,0.000020199692,0.00002144231,0.000020769736,0.000021603186,0.000021235477,0.000021605843,0.000020448613,0.00002088342,0.000020877049,0.000021510758,0.000020369653,0.00002049248,0.000019744482,0.000020207437,0.000018917082,0.000020050891,0.000019774896,0.00002108725,0.000020372392,0.000020961636,0.000020199654,0.000020418196,0.000019626399,0.000020185249,0.000020599029,0.000021452415,0.000020375559,0.000019849698,0.000019190511,0.000019545596,0.000018853345,0.000019449688,0.000019875137,0.000020662264,0.000020726997,0.00002091545,0.000021459311,0.00002486098,0.000024341154,0.000023236265,0.00001570175,0.000010723617,0.000012845066],[0.000015813403,0.000013322908,0.000011666515,0.000015886166,0.000029429793,0.000033086097,0.000027940858,0.000024243485,0.000021467498,0.000020762624,0.00001937146,0.000019306744,0.00001868267,0.000019082674,0.000018491111,0.000019118432,0.000019258694,0.000020170452,0.00001900672,0.000019144612,0.000019113873,0.00002037653,0.000019417237,0.000019903435,0.000019003748,0.000019885772,0.000018765271,0.000019265528,0.00001888552,0.000020170568,0.000019435874,0.000019836885,0.00001919712,0.000019968722,0.00001908668,0.000019602792,0.000019503515,0.000020669278,0.000019898995,0.000020164682,0.000019768655,0.000020737472,0.000019726827,0.000019868447,0.000019395344,0.000020106823,0.000019429906,0.000019412128,0.000019083129,0.000019844681,0.000018806137,0.000019109262,0.000019051635,0.000020253006,0.00001949247,0.000020245032,0.000019806168,0.000020922791,0.000019425943,0.000019551468,0.000019306413,0.0000202332,0.00001913014,0.000019236813,0.000018874429,0.000019821227,0.000018649736,0.000018895536,0.000018880766,0.000020252619,0.000019276353,0.000020010166,0.000019458557,0.000020636387,0.000019119962,0.000019396972,0.000019189065,0.000020250765,0.000019068231,0.000019238778,0.000018863688,0.000019853918,0.000018654877,0.00001894194,0.000018923416,0.000020326668,0.000019377983,0.00002012929,0.000019550835,0.000020708365,0.000019200763,0.000019474986,0.000019248413,0.000020285519,0.00001908484,0.000019221905,0.000018830973,0.000019831135,0.000018621373,0.000018894472,0.000018878443,0.000020277355,0.000019324116,0.00002006541,0.000019495985,0.000020662048,0.00001916264,0.000019422627,0.000019212595,0.000020253701,0.000019050181,0.000019181582,0.000018795503,0.000019796764,0.000018586084,0.000018853849,0.000018845363,0.00002024899,0.000019301553,0.000020057738,0.0000195,0.000020665711,0.000019173023,0.000019437877,0.000019222345,0.00002025202,0.000019035018,0.000019176188,0.000018794912,0.000019794821,0.000018582487,0.00001886696,0.000018869607,0.000020276853,0.000019321904,0.000020067784,0.00001949658,0.000020655229,0.00001916255,0.000019433539,0.000019227058,0.00002027548,0.000019070412,0.000019210984,0.00001882232,0.000019827638,0.00001861903,0.000018904133,0.000018893123,0.000020301777,0.000019338107,0.000020092659,0.0000195257,0.000020693264,0.000019195528,0.000019470139,0.000019261926,0.000020317368,0.000019114075,0.00001925392,0.000018864459,0.000019867726,0.00001865468,0.000018928396,0.000018911256,0.000020312775,0.000019366547,0.000020128235,0.000019571953,0.000020761774,0.000019270306,0.0000195379,0.000019312803,0.000020337353,0.000019144705,0.00001925302,0.000018851602,0.000019844472,0.000018662084,0.000018903773,0.000018882603,0.000020263788,0.000019386338,0.00002016022,0.000019603483,0.00002079546,0.00001918484,0.000019344268,0.000019079962,0.0000201238,0.000018947414,0.000019011542,0.00001853477,0.000019459356,0.000018334884,0.00001853622,0.000018682224,0.000020208381,0.000019368172,0.000020038142,0.00001957716,0.000020657475,0.000019290936,0.000019654044,0.000019526668,0.00002059964,0.000019401985,0.000019668443,0.0000193363,0.000020118929,0.000019028103,0.000019328152,0.000019444366,0.000020677619,0.000020171798,0.000021086888,0.000020834168,0.000021723528,0.000020343814,0.000020332853,0.000019824707,0.000020469959,0.000019760284,0.000019637426,0.000019077761,0.000019528119,0.000018645682,0.000019012396,0.00001886482,0.000020420903,0.000019884805,0.00002126628,0.000020272233,0.000021116712,0.00001958491,0.000020350391,0.000019523799,0.000020790107,0.000019968762,0.000020263458,0.000019250228,0.000019416422,0.000019739397,0.000019728577,0.0000197901,0.000020621712,0.000020598087,0.000021382602,0.000020737198,0.000022088121,0.000023551876,0.00002632988,0.000024275689,0.0000165436,0.000010262426,0.0000130724775],[0.000015470325,0.000012860253,9.9799445e-6,0.000015816524,0.000027364124,0.000034160097,0.000028296989,0.000024847897,0.000022314749,0.000021416234,0.000020556916,0.000019905467,0.000020236403,0.000019871439,0.000020065487,0.000019656838,0.000020541513,0.00002055962,0.000020457821,0.000019592231,0.000020744554,0.000020869604,0.000020990283,0.000019945484,0.000020674623,0.000020390993,0.00002069873,0.000019694797,0.000020325255,0.000020516865,0.00002065269,0.000019891651,0.00002053303,0.000020511112,0.000021029793,0.00002016824,0.000021173557,0.000021105778,0.00002128724,0.000020354486,0.000021164211,0.000021250487,0.000021745624,0.000020557347,0.000020802681,0.000020650326,0.000020412726,0.000019665651,0.000020335763,0.000020471249,0.000020864947,0.000019661056,0.000020713123,0.000020753696,0.000021029593,0.000020184132,0.000021284926,0.00002100512,0.000021323649,0.000019873336,0.000020747346,0.000020738504,0.000020559954,0.000019429426,0.000020175954,0.000020274882,0.000020680873,0.00001937148,0.00002065403,0.000020655349,0.00002104799,0.000019936318,0.000021104028,0.00002068113,0.000021080314,0.000019717836,0.000020717864,0.000020696045,0.000020576195,0.000019413646,0.000020150437,0.00002025714,0.0000206832,0.000019414998,0.000020764548,0.000020726045,0.000021154563,0.000020033958,0.00002120132,0.0000207673,0.000021159265,0.000019773954,0.000020759338,0.00002072324,0.000020585538,0.00001940104,0.000020140447,0.000020251906,0.00002065125,0.000019357389,0.000020717234,0.000020685902,0.000021112322,0.000019982934,0.000021134098,0.000020703803,0.000021117154,0.000019730422,0.000020727432,0.000020698651,0.000020563131,0.00001937135,0.000020117757,0.000020225867,0.00002063076,0.000019325054,0.000020699836,0.000020657593,0.000021094853,0.000019984116,0.00002115164,0.000020710693,0.000021138612,0.000019750281,0.000020733281,0.00002069656,0.000020558817,0.00001936243,0.000020110469,0.000020218637,0.000020623462,0.000019337684,0.000020733856,0.000020673931,0.000021114112,0.000019990806,0.000021149017,0.000020696954,0.000021128577,0.00001975,0.000020748454,0.000020725613,0.000020589425,0.000019397305,0.000020151532,0.00002025656,0.000020663621,0.000019365974,0.0000207534,0.000020686199,0.000021130047,0.000020013144,0.000021186363,0.000020738838,0.00002116764,0.000019797028,0.000020792604,0.000020774252,0.000020633634,0.000019441306,0.000020186038,0.000020293704,0.000020695887,0.0000193976,0.000020738067,0.000020722073,0.000021145668,0.000020025705,0.000021187878,0.000020782216,0.000021190686,0.000019833953,0.000020808911,0.00002077966,0.0000206235,0.000019455847,0.000020147287,0.00002022639,0.00002064497,0.000019390684,0.000020698964,0.000020708227,0.000021166552,0.000020094172,0.00002120138,0.000020839196,0.000021103102,0.000019617753,0.00002046145,0.000020485388,0.00002023949,0.000019141802,0.000019716728,0.000019828185,0.00002025258,0.000019061066,0.0000203992,0.000020602232,0.000021046868,0.000019946589,0.00002120868,0.000020799487,0.00002126129,0.000020079155,0.0000213958,0.000021084596,0.0000210056,0.000019844794,0.000020842337,0.000020514339,0.000020873784,0.00002010483,0.000021328591,0.00002123987,0.000021554126,0.000021114394,0.000022367203,0.000022107466,0.00002206892,0.00002106052,0.000021253507,0.000021282185,0.00002070329,0.000019952848,0.00002010529,0.00002023976,0.000020339021,0.000019569543,0.000020823602,0.000020756786,0.000021587533,0.000020977695,0.000022129108,0.000021233856,0.000021460395,0.000020731917,0.000021183512,0.00002117069,0.000020757756,0.000020361515,0.000019790687,0.000020122188,0.000020553602,0.000020747128,0.0000206664,0.000021272508,0.000020963416,0.000021215295,0.000021098273,0.000021432968,0.000024101715,0.000024674831,0.000025152634,0.000017424267,0.000010777041,0.000012998758],[0.000014936972,0.000011923521,0.000010355292,0.000013729703,0.000025221088,0.00003326891,0.000026324205,0.000024043908,0.000021043776,0.000020883084,0.000019670244,0.000019970741,0.000018981253,0.000019433688,0.000019224068,0.000019785912,0.00001954567,0.000020495138,0.000019384637,0.000019862782,0.000019486246,0.000020587579,0.000019364812,0.000019581194,0.000018783696,0.000020087926,0.000019045605,0.000019826673,0.000019054032,0.000020275038,0.00001896014,0.000019346482,0.000018727693,0.000020058753,0.000019263396,0.00002011582,0.000019664187,0.000020654246,0.000019421255,0.000019733037,0.000019215582,0.000020657693,0.000019850851,0.000020261294,0.000019521714,0.000019974723,0.000018770193,0.000018953126,0.00001856557,0.000019882662,0.000018990142,0.000019523763,0.000019114676,0.000020135281,0.000018953884,0.000019544721,0.000019006358,0.000020395191,0.000019174156,0.000019566764,0.000019126528,0.000020051542,0.000018731891,0.000018793782,0.00001831938,0.000019659707,0.000018698604,0.000019199499,0.000018912771,0.000020044276,0.000018793748,0.000019369965,0.000018709396,0.00002011839,0.000018875779,0.0000193604,0.000018951661,0.000019985699,0.00001862997,0.00001874944,0.000018236253,0.000019636956,0.000018648527,0.000019222198,0.000018956034,0.000020121344,0.00001886061,0.000019437746,0.000018787332,0.000020221181,0.000018952493,0.00001941483,0.000018986739,0.000020009022,0.00001863498,0.000018754412,0.000018227403,0.000019615563,0.00001860105,0.000019158402,0.00001890857,0.000020085781,0.000018834691,0.00001939821,0.00001873516,0.000020152493,0.00001889514,0.000019351723,0.000018945444,0.0000199752,0.000018611485,0.000018719711,0.000018204126,0.00001959126,0.00001857625,0.000019133351,0.00001889006,0.000020062884,0.00001882259,0.000019399637,0.000018749404,0.000020168067,0.000018921106,0.000019391218,0.000018971661,0.000019981238,0.000018606728,0.000018716053,0.000018196506,0.00001957843,0.000018575542,0.000019145215,0.000018910589,0.000020086394,0.000018841985,0.000019409832,0.000018743236,0.00002016047,0.000018915152,0.000019375822,0.00001896674,0.000019999674,0.000018632245,0.00001873934,0.000018223023,0.000019619194,0.000018614377,0.00001918226,0.000018927152,0.000020099482,0.000018849874,0.000019430372,0.000018770856,0.000020198786,0.000018965855,0.000019444995,0.00001902754,0.000020058753,0.000018681492,0.000018783803,0.000018260878,0.00001965245,0.000018647994,0.000019199499,0.00001894149,0.000020124819,0.000018874987,0.000019440713,0.00001878366,0.0000202175,0.00001898596,0.000019466055,0.000019044406,0.00002006983,0.000018706613,0.000018828441,0.00001829042,0.000019616144,0.00001858674,0.000019157014,0.00001891858,0.000020096932,0.000018918978,0.000019508743,0.000018857554,0.000020262298,0.000018882116,0.000019220457,0.000018773488,0.000019771012,0.000018381927,0.000018444614,0.000017870394,0.000019200379,0.000018206765,0.000018784733,0.000018594257,0.000019923642,0.000018820167,0.000019362891,0.000018807033,0.000020296471,0.000019247916,0.000019807376,0.000019360545,0.000020347443,0.000019054833,0.000019197523,0.000018741468,0.000020107149,0.00001948485,0.000020215128,0.000019780497,0.000020840605,0.000019902562,0.000020668194,0.000020317018,0.000021712507,0.000020839056,0.000021207688,0.00002026885,0.000020936523,0.0000197532,0.000019552923,0.000018759045,0.000019779744,0.000018940405,0.000019671203,0.000019197503,0.000020589367,0.000019633211,0.000020531288,0.000019551673,0.0000209115,0.00001987269,0.000020952983,0.000019901461,0.000021098876,0.00001944596,0.000019679588,0.000018826144,0.00001963338,0.000020350022,0.000020544256,0.000020423025,0.000020844464,0.000020792446,0.000021527298,0.000020685271,0.000021165057,0.000022528036,0.00002531205,0.000024811054,0.000016769107,0.000010700825,0.000013272487],[0.000015310066,0.000011107881,0.000010241445,0.000013691144,0.000026552687,0.000036894373,0.000029750974,0.00002462584,0.000022308728,0.000021597747,0.00002126472,0.000019842808,0.00002005246,0.000019604418,0.000020174319,0.000019486375,0.00002091154,0.000020591548,0.000021523461,0.000019694684,0.000021047972,0.000020482066,0.000020826183,0.000019266558,0.000020110314,0.000019374695,0.000020316475,0.000019040264,0.000020310761,0.00001975469,0.000020190775,0.000018776907,0.00001980596,0.000019326935,0.000020342473,0.000019344341,0.00002095492,0.000020398948,0.00002093858,0.00001943554,0.000020383994,0.000020068148,0.00002103874,0.000019633642,0.000020567935,0.000019840612,0.000019993304,0.000018630004,0.00001948825,0.00001922702,0.000020287396,0.000018827024,0.00002022855,0.000019663566,0.000020174723,0.000018807175,0.00001997636,0.000019461284,0.00002038514,0.000018740646,0.00001991192,0.000019488196,0.000019699663,0.000018286722,0.00001917178,0.000018974737,0.000020006179,0.000018465402,0.000019890607,0.000019459521,0.000020039364,0.000018535673,0.000019787703,0.000019172512,0.000020143654,0.000018488661,0.000019715919,0.000019363888,0.000019651157,0.000018200653,0.00001912204,0.000018933037,0.000019971541,0.000018448327,0.000019960213,0.000019499814,0.000020094652,0.000018584897,0.000019852725,0.000019251918,0.000020228606,0.000018551395,0.000019779025,0.000019400633,0.00001965485,0.000018194407,0.000019114857,0.000018918923,0.00001992022,0.00001838568,0.000019909929,0.000019456646,0.00002007297,0.00001855842,0.00001982,0.000019194007,0.00002017476,0.000018497884,0.000019735746,0.000019373621,0.000019642952,0.000018171568,0.000019099898,0.00001890399,0.000019914505,0.000018369099,0.000019910003,0.000019444515,0.000020067879,0.000018568882,0.00001984188,0.000019212082,0.000020211522,0.000018540888,0.000019773819,0.000019387058,0.000019637126,0.000018167826,0.000019100353,0.000018899556,0.000019902924,0.000018377317,0.000019934188,0.00001945427,0.000020080628,0.000018575436,0.000019845778,0.000019200159,0.000020205625,0.000018530087,0.00001977005,0.000019403113,0.0000196679,0.00001818745,0.00001911814,0.000018920078,0.000019941413,0.000018406274,0.00001995945,0.000019461655,0.000020090092,0.00001858511,0.00001986981,0.000019222254,0.00002025094,0.000018593353,0.00001983628,0.000019459168,0.000019713774,0.000018229368,0.000019135394,0.00001893979,0.000019969924,0.000018450932,0.000019960422,0.000019516818,0.000020115971,0.000018604598,0.000019862346,0.000019266356,0.000020260772,0.000018603108,0.000019820302,0.000019447685,0.000019707686,0.000018268647,0.000019186962,0.000018973036,0.000019909472,0.000018362478,0.000019869658,0.000019476453,0.000020120673,0.000018708306,0.000019884728,0.000019342055,0.000020120711,0.000018396096,0.000019491132,0.000019097257,0.000019224068,0.000017852764,0.000018717034,0.00001847553,0.000019488585,0.000017963173,0.000019487228,0.00001916436,0.000019991625,0.000018568475,0.00001993246,0.000019463474,0.000020588523,0.000019052053,0.000020280353,0.000019639936,0.000019966572,0.000018775654,0.000019762452,0.000019490612,0.00002071749,0.000019642652,0.000020977195,0.000020233296,0.000020972375,0.000020061563,0.000021229704,0.00002098636,0.000022267259,0.0000209867,0.000021448323,0.000020776688,0.000020867355,0.00001960943,0.000019924839,0.00001943706,0.000020233874,0.000018843513,0.000020323258,0.000019601055,0.000020327716,0.000019230487,0.00002052428,0.00001990034,0.000020841362,0.000019764733,0.000020808257,0.000020371983,0.000020178051,0.000019183834,0.000019062121,0.000019169294,0.000020130174,0.000019936984,0.00002043261,0.00002006742,0.000020396652,0.000020267476,0.000019948699,0.000020179532,0.000022402128,0.000023966462,0.000026272492,0.000016978962,0.000011251213,0.000012856673],[0.000015707456,0.000012220987,0.000011383077,0.000014982367,0.00002789041,0.000034720135,0.000027105312,0.000023283625,0.000020440777,0.000020596004,0.000019434727,0.000019621551,0.000018888888,0.00001917489,0.000018580626,0.000019071176,0.000019072013,0.000020081356,0.00001923731,0.00001927137,0.000019429017,0.000020210211,0.000019211606,0.000019278797,0.000018281142,0.000019201587,0.000018144485,0.000018620254,0.0000182756,0.000019391811,0.000018254557,0.000018734463,0.000018018987,0.000019453768,0.000018613064,0.00001946056,0.00001934034,0.000020610918,0.000019265528,0.000019558554,0.000018737142,0.000020032507,0.000018880748,0.000019118941,0.000018879487,0.000019602587,0.000018491393,0.000018652121,0.000017999631,0.000019304038,0.000018326493,0.00001867166,0.000018598143,0.00001968719,0.000018666462,0.000019009984,0.000018383926,0.000019779289,0.000018461773,0.000018711607,0.00001846394,0.000019494255,0.000018160257,0.000018331037,0.000017811712,0.000019170518,0.000018123837,0.000018406923,0.00001836001,0.000019580204,0.000018406661,0.000018749226,0.000018130857,0.000019558462,0.000018253619,0.00001852486,0.000018240602,0.0000194162,0.00001803616,0.000018267392,0.000017727523,0.000019144612,0.000018117962,0.000018486033,0.000018426541,0.00001966158,0.000018460716,0.000018807374,0.00001818315,0.000019625575,0.0000183191,0.000018589115,0.000018290542,0.000019448518,0.000018036282,0.000018265127,0.000017731465,0.000019138095,0.000018079645,0.000018436456,0.000018385574,0.000019636394,0.000018440463,0.000018794752,0.000018168883,0.000019603016,0.000018291536,0.000018553694,0.000018262655,0.00001942183,0.00001801988,0.000018253078,0.000017723958,0.000019126637,0.000018076455,0.000018428316,0.000018377352,0.000019622974,0.000018438917,0.00001879805,0.000018184259,0.000019618257,0.000018318524,0.00001859119,0.000018296718,0.000019440768,0.00001802196,0.000018244673,0.0000177162,0.000019118414,0.000018066683,0.000018434926,0.000018397288,0.000019645518,0.000018451266,0.000018809185,0.000018185316,0.000019613732,0.000018311084,0.000018575702,0.000018291572,0.000019444014,0.000018039946,0.000018267827,0.000017737602,0.000019134062,0.000018086404,0.000018454697,0.000018410961,0.000019653033,0.000018451161,0.000018810762,0.000018191196,0.000019622787,0.000018333258,0.000018613437,0.000018346953,0.000019496134,0.000018082541,0.000018288729,0.000017751512,0.000019161198,0.000018128643,0.000018484201,0.000018434364,0.000019661486,0.000018467303,0.000018818622,0.000018197148,0.000019643625,0.000018360552,0.00001863795,0.000018335337,0.000019470343,0.000018087887,0.000018334482,0.000017806635,0.000019213127,0.000018137012,0.0000184309,0.000018355562,0.000019653744,0.000018559003,0.000018951083,0.000018284334,0.000019725736,0.000018293107,0.000018423976,0.000018005003,0.000019100737,0.000017678261,0.000017948925,0.000017412076,0.000018838644,0.000017788778,0.000018253635,0.000018050616,0.00001957225,0.000018428791,0.000018984023,0.000018425364,0.000019966608,0.000018756327,0.000019179992,0.000018733033,0.000019831872,0.000018450368,0.000018758205,0.000018394972,0.000019705298,0.00001892634,0.00001959625,0.000019563517,0.000020709509,0.000019731531,0.000020428557,0.000019893701,0.00002121501,0.000020143118,0.000020371379,0.000019803298,0.000020266878,0.000019259722,0.000019204444,0.000018634715,0.000019408388,0.000018448274,0.000018731604,0.000018539615,0.000019834935,0.000018885863,0.000019691735,0.000018990233,0.000020153377,0.000018781366,0.000019552048,0.000018755485,0.000020128118,0.000018829915,0.000019128534,0.000018045279,0.000019249275,0.000019248375,0.000020051675,0.000019811458,0.00002037863,0.000020262529,0.000021389902,0.000020721265,0.000021419195,0.000021898579,0.000024888237,0.00002534548,0.000018294624,0.000010986883,0.000013531989],[0.000015406853,0.000013247777,0.0000105177905,0.000017039383,0.000028328335,0.0000363703,0.000028725517,0.000023855846,0.000021613141,0.000021261007,0.000020744834,0.000019949157,0.00002033873,0.000019802674,0.000020119636,0.000019664,0.000020421585,0.000020444326,0.00002042544,0.000019627316,0.0000208325,0.000020911462,0.00002085492,0.000019799085,0.000020066902,0.000019797575,0.000019786761,0.000018811912,0.000019617042,0.000019705674,0.000020070845,0.000019105892,0.000019924799,0.000019921228,0.000020594767,0.000019777894,0.000020968213,0.000020706626,0.000021000053,0.000019977007,0.000020665455,0.000020572801,0.000020722886,0.000019496207,0.00002006256,0.000020149822,0.0000202063,0.000019319932,0.000020111618,0.000020080284,0.00002049942,0.000019214904,0.000020208998,0.000020283836,0.000020628144,0.000019602325,0.00002046781,0.0000203481,0.000020515377,0.000019128314,0.000019931433,0.000020059077,0.000020210731,0.000019061557,0.000019974055,0.000019971998,0.000020349557,0.00001898873,0.00002012215,0.000020218731,0.000020540201,0.000019356541,0.000020303867,0.000020150208,0.000020415237,0.000018976838,0.000019818279,0.00001997882,0.000020149071,0.000018973198,0.000019898007,0.000019917752,0.00002040321,0.000019075615,0.000020233278,0.00002025884,0.00002059907,0.000019412906,0.00002035862,0.000020212332,0.00002047492,0.000019021136,0.000019842599,0.000019998777,0.000020159585,0.000018983279,0.000019904763,0.000019903777,0.000020367672,0.000019043116,0.000020218424,0.00002023013,0.000020582514,0.000019397748,0.000020346957,0.000020171105,0.00002045156,0.000018994471,0.000019821286,0.000019991854,0.00002015157,0.00001897349,0.000019899866,0.000019887782,0.000020362542,0.000019041372,0.000020211774,0.000020218868,0.000020578256,0.00001940911,0.000020367419,0.000020187194,0.000020469784,0.00001902707,0.000019850417,0.000020005033,0.000020148977,0.00001896761,0.000019893985,0.000019889982,0.000020358484,0.000019049601,0.000020245167,0.000020239047,0.000020599286,0.000019421886,0.000020368272,0.000020171721,0.000020463362,0.000019014733,0.000019838191,0.000020012953,0.000020162086,0.00001899027,0.000019915664,0.00001989554,0.000020363572,0.000019051453,0.000020245436,0.00002023511,0.000020593312,0.000019419163,0.000020370235,0.000020181438,0.00002047986,0.000019041845,0.000019876974,0.000020058465,0.000020207957,0.000019026089,0.00001993149,0.000019946074,0.000020409785,0.000019072377,0.000020225772,0.000020252524,0.000020593707,0.000019417219,0.000020353884,0.000020208594,0.000020480466,0.000019047984,0.000019864525,0.000020018659,0.00002017024,0.000019033601,0.000019982344,0.000019995345,0.00002043563,0.000019074287,0.000020195992,0.000020215455,0.000020647685,0.000019556373,0.00002038413,0.000020301408,0.000020371535,0.000018850307,0.000019459929,0.000019631678,0.000019762096,0.000018643763,0.000019562473,0.000019656369,0.00002010623,0.000018836972,0.000019994563,0.000020037052,0.000020670324,0.000019622674,0.000020618132,0.0000204398,0.000020668687,0.000019449337,0.000020416968,0.000020271169,0.000020400914,0.000019452806,0.000020337702,0.000020233527,0.000020466914,0.00001971447,0.00002094741,0.000020787293,0.00002120243,0.000020642332,0.000021534588,0.000021329142,0.000021170346,0.00002041142,0.000020603058,0.00002085858,0.000020617563,0.000019892032,0.000020306597,0.000020471794,0.000020246825,0.000019142166,0.00002025005,0.000020079404,0.000020813713,0.000020026182,0.000020965015,0.00002039813,0.000020265894,0.000019387891,0.000019802032,0.000020243602,0.000020162643,0.000019394975,0.000018930328,0.000019176827,0.000019382771,0.00001991931,0.000020022593,0.000020661257,0.000020880376,0.000021287891,0.000021162696,0.000021635824,0.000022986156,0.000024294795,0.000025569243,0.000019069303,0.000011380668,0.000013484248],[0.000015250395,0.000015619726,0.000011820087,0.000017199738,0.000029164208,0.000034388504,0.000027547536,0.00002438781,0.000020872092,0.000021089643,0.00001968952,0.000020120327,0.000018982284,0.000019724514,0.000019342257,0.000020190793,0.000019532104,0.000020470368,0.000019423424,0.000019757856,0.00001967047,0.000020789472,0.00001961663,0.000020060972,0.000018739143,0.000019732246,0.00001845373,0.000018676326,0.000018266765,0.00001954416,0.000018758257,0.000019579551,0.000018450051,0.00001987377,0.000019027015,0.00001990767,0.000019423404,0.00002073081,0.00001950772,0.000020289466,0.000019173462,0.000020466583,0.000019050618,0.000019127421,0.000018534312,0.000019501525,0.000018840781,0.000019497638,0.00001876658,0.00002004315,0.00001892762,0.000019052379,0.000018702134,0.00001970389,0.000019116773,0.000019723968,0.000019028466,0.000020254474,0.000018859333,0.000018864099,0.000018427403,0.000019598343,0.000018817707,0.000019322806,0.000018658526,0.000019930027,0.000018795503,0.000018944344,0.000018690367,0.000019737083,0.00001896761,0.000019477588,0.000018829698,0.000020089266,0.000018715658,0.000018736053,0.000018300156,0.000019545596,0.000018702776,0.000019230945,0.000018572016,0.000019895408,0.000018788354,0.000019008225,0.000018735964,0.000019788327,0.000019005958,0.0000195379,0.00001887794,0.000020152205,0.00001876273,0.00001877048,0.00001830796,0.000019555775,0.000018714712,0.00001924566,0.000018566014,0.000019870948,0.000018766292,0.000018998548,0.000018716319,0.000019770745,0.000018986848,0.000019523335,0.000018851099,0.00002011722,0.00001872703,0.000018741825,0.0000182896,0.000019552514,0.00001870959,0.000019230101,0.000018549608,0.000019856665,0.000018760691,0.000018989598,0.00001870747,0.00001976036,0.000018987608,0.000019532199,0.000018870685,0.00002013503,0.000018744919,0.000018763447,0.000018311153,0.000019560775,0.000018710753,0.000019237475,0.00001855665,0.000019858124,0.000018768691,0.000019011179,0.00001873348,0.00001979093,0.000019011199,0.000019552923,0.00001886768,0.000020127372,0.000018732015,0.000018750263,0.000018300208,0.000019570645,0.000018726587,0.00001925247,0.00001856642,0.000019866344,0.000018765737,0.000019000812,0.000018723122,0.000019782196,0.000019003059,0.000019550089,0.00001887216,0.000020143558,0.0000187596,0.000018777462,0.000018334114,0.000019603483,0.000018763374,0.000019289502,0.000018599278,0.000019917828,0.000018810799,0.000019011179,0.000018729996,0.000019779649,0.00001901352,0.00001954539,0.000018878065,0.000020147574,0.000018773988,0.000018788407,0.00001833845,0.000019594474,0.000018746992,0.000019280065,0.00001864227,0.000019982,0.00001884195,0.000019044315,0.00001873759,0.000019772782,0.000019074123,0.000019707195,0.000019016783,0.00002025851,0.000018746741,0.000018639175,0.000018052991,0.000019249128,0.000018396728,0.000018891807,0.00001825522,0.00001966158,0.000018511384,0.00001888905,0.000018427894,0.000019836489,0.000019161782,0.000019915415,0.00001899094,0.000020509666,0.000019144374,0.00001959498,0.000018962979,0.00002043189,0.0000193575,0.000019938469,0.000019025834,0.000020262587,0.000019153871,0.000019687397,0.000019198254,0.000020400972,0.000019936413,0.000020925545,0.000020044467,0.000021361508,0.000019858635,0.000020226023,0.000019334328,0.00002056725,0.000019755405,0.000020295001,0.00001933501,0.000020565876,0.000019250816,0.000019452471,0.000018889068,0.000020074578,0.000019572362,0.000020447209,0.00001930877,0.000020465333,0.00001886813,0.000019322806,0.00001831751,0.000019850264,0.000019004781,0.00001966353,0.000017899065,0.000018957879,0.000018484729,0.000019440473,0.000019166937,0.000020337315,0.000020561034,0.000021716318,0.000021496158,0.0000224315,0.000023602895,0.000025741117,0.00002492648,0.000017258428,0.00001141739,0.000013632918],[0.000015866952,0.000017323928,0.000013063542,0.000018946546,0.000032167383,0.000035819976,0.000031896496,0.00002521522,0.000022823991,0.000021802394,0.000021555832,0.00001990575,0.000020396963,0.000019736895,0.000020565876,0.000019872576,0.000021080896,0.000020720514,0.000021335549,0.000019755273,0.000021166268,0.000020776095,0.000021576956,0.000019853918,0.000020493671,0.000019513116,0.000019895655,0.00001856504,0.00001981469,0.000019570869,0.000020696774,0.000019260806,0.000020250205,0.000019508483,0.000020516924,0.000019379351,0.000021036232,0.000020535597,0.000021658161,0.000019987776,0.000020923251,0.00002012668,0.00002075362,0.000018961315,0.000019985164,0.000019670957,0.000020637137,0.000019422905,0.000020365766,0.000019768919,0.0000206418,0.000018906767,0.000020086623,0.00001973458,0.00002099012,0.000019539893,0.000020609757,0.000019967465,0.000020604315,0.000018659663,0.000019811307,0.000019618408,0.000020680853,0.000019254763,0.000020262163,0.000019632633,0.000020556072,0.00001882293,0.000020100248,0.000019704452,0.000020857746,0.000019345596,0.00002047312,0.000019804846,0.000020496545,0.00001852341,0.00001971103,0.00001950904,0.000020593217,0.00001914735,0.000020213603,0.000019573632,0.000020500944,0.000018831153,0.000020145806,0.000019733601,0.000020919,0.000019376745,0.000020511094,0.000019861305,0.000020549644,0.000018551287,0.000019722236,0.000019520765,0.000020598223,0.000019162,0.000020215455,0.00001954636,0.000020459616,0.000018807033,0.000020107438,0.000019687172,0.000020894258,0.000019373327,0.000020509784,0.000019809322,0.000020519174,0.000018528055,0.000019708981,0.000019518568,0.000020596948,0.00001915862,0.000020205509,0.000019534267,0.000020454563,0.000018813957,0.0000201055,0.00001968736,0.000020896987,0.000019388555,0.000020529018,0.000019832327,0.00002053266,0.000018545805,0.00001972931,0.000019537527,0.000020614121,0.00001917776,0.000020217632,0.000019543042,0.000020463303,0.00001883647,0.00002012904,0.00001970278,0.000020920976,0.0000194023,0.000020530839,0.000019807321,0.000020525162,0.00001853479,0.000019718835,0.000019537303,0.000020612588,0.00001917765,0.00002022639,0.000019544235,0.000020452318,0.000018821367,0.00002012123,0.000019699417,0.000020918642,0.000019403577,0.000020542864,0.000019822759,0.000020540181,0.00001855718,0.000019750622,0.000019568834,0.000020655762,0.000019222052,0.000020273916,0.000019615358,0.000020516043,0.000018850127,0.00002012933,0.000019723084,0.000020930136,0.000019416755,0.000020530877,0.000019865927,0.000020556996,0.00001857664,0.000019740377,0.00001956042,0.000020643769,0.000019201569,0.000020259053,0.000019644918,0.000020555779,0.000018856528,0.00002014087,0.000019704134,0.000020937821,0.000019529256,0.000020664214,0.00001997017,0.000020497093,0.000018486808,0.000019472609,0.00001929997,0.000020252563,0.000018850793,0.000019894118,0.000019335896,0.000020303034,0.000018501853,0.000019886947,0.000019528083,0.00002117176,0.000019563051,0.000020699972,0.000019999216,0.000020717254,0.000019295057,0.000020436177,0.000020241614,0.000021074122,0.000019941832,0.000020539297,0.000019850359,0.0000203647,0.000019333038,0.000020399862,0.000020207513,0.000021435011,0.000020567386,0.000021465943,0.0000209551,0.000021382419,0.00002022801,0.000020807958,0.000020736643,0.000021458533,0.00002036,0.000020863912,0.000020155414,0.000020544392,0.00001912215,0.000020149822,0.000019645011,0.000020994024,0.000019721052,0.000020806252,0.000019948415,0.000020434443,0.000019106164,0.000019829225,0.000019843072,0.000020977333,0.000019590905,0.000019495184,0.000018785933,0.000019517693,0.000018942572,0.00001978778,0.000020227797,0.000020861306,0.000020788184,0.000020952662,0.000021476671,0.000024764577,0.000024744937,0.000024241936,0.000016122152,0.0000110145575,0.000013169038],[0.00001583015,0.000017944425,0.00001577904,0.000022099099,0.00003199703,0.00003125516,0.000027027152,0.000023681492,0.000021103906,0.000020803753,0.000019556504,0.000019915664,0.000019059049,0.000019695679,0.000018942428,0.000019943964,0.00001975094,0.000020814428,0.000019543844,0.000019699793,0.000019601372,0.000020640855,0.00001961822,0.000019723104,0.000018834367,0.000019439452,0.000018513361,0.00001854667,0.000018222589,0.000019334253,0.000018548122,0.000019108425,0.000018565588,0.000019721823,0.000018889375,0.000019558798,0.000019384508,0.00002073449,0.000019598736,0.000020009404,0.000019276187,0.000020246287,0.000019002335,0.000018882512,0.00001865146,0.000019602137,0.000018972367,0.00001932067,0.000018833955,0.000019938278,0.000018961477,0.000018962364,0.000018841034,0.000019732659,0.000019175912,0.000019340561,0.000018947721,0.000019841294,0.000018877508,0.000018641966,0.000018586652,0.000019602492,0.000018863975,0.000019134355,0.00001862251,0.000019676248,0.000018755592,0.000018881738,0.000018800883,0.000019747851,0.000018984872,0.000019161507,0.000018790486,0.000019700827,0.000018721836,0.000018466897,0.000018412788,0.00001949076,0.000018729746,0.000019035997,0.000018560171,0.00001967242,0.000018729193,0.000018870649,0.000018800309,0.00001980443,0.000019033057,0.000019194904,0.000018816021,0.000019735746,0.0000187471,0.000018482137,0.000018425557,0.000019498457,0.000018735142,0.00001905358,0.00001856226,0.000019658206,0.000018685485,0.000018827328,0.000018747634,0.000019771745,0.00001900652,0.0000192008,0.000018817294,0.000019728332,0.000018725694,0.000018475177,0.000018420586,0.000019505878,0.000018734945,0.000019058958,0.000018564951,0.000019660829,0.000018691206,0.000018832248,0.000018748047,0.000019772575,0.00001901428,0.000019208712,0.000018838067,0.000019750281,0.000018744076,0.000018490458,0.00001844444,0.00001953015,0.000018754608,0.00001907416,0.000018579653,0.000019659668,0.000018691544,0.000018839884,0.000018760244,0.000019782608,0.000019021825,0.000019222492,0.000018829107,0.000019737874,0.000018731873,0.000018480463,0.000018423081,0.000019514307,0.000018745668,0.000019075396,0.000018580822,0.00001967152,0.00001868707,0.000018826808,0.000018748582,0.00001978346,0.000019028339,0.000019221961,0.000018839326,0.000019748737,0.000018746205,0.000018494884,0.000018450579,0.000019540807,0.000018790217,0.000019118741,0.000018638448,0.000019728257,0.00001875502,0.000018871351,0.000018792816,0.000019798406,0.000019069485,0.000019238045,0.000018861816,0.000019755746,0.000018767472,0.000018503477,0.000018453711,0.000019522124,0.000018786202,0.000019085313,0.000018605166,0.000019710147,0.000018754985,0.000018871946,0.000018814675,0.000019808,0.000019113199,0.000019349563,0.000019002027,0.000019885905,0.000018758581,0.000018415018,0.000018266644,0.00001927753,0.000018460594,0.0000187345,0.000018228899,0.000019432391,0.000018465173,0.00001862679,0.000018506034,0.000019856456,0.000019094634,0.00001965513,0.000019031713,0.000020142963,0.000019072104,0.000019280582,0.000019128462,0.000020492696,0.000019451636,0.000020095418,0.000019394492,0.000020294128,0.000019148027,0.0000196694,0.000019614647,0.000020704041,0.000020056974,0.000020869824,0.000020395426,0.000021222235,0.000019991836,0.000020026278,0.000019497676,0.000020422598,0.00001964651,0.000019990386,0.000019238558,0.000019965448,0.000018990142,0.000019061521,0.00001869222,0.000019631454,0.000019120565,0.000019690138,0.000019259522,0.000019974932,0.00001908464,0.000019123154,0.000018555324,0.000019585994,0.00001894326,0.000019232284,0.000018369852,0.000018846335,0.000019002317,0.000019611281,0.000019702122,0.000021022195,0.000020777301,0.00002168267,0.000021152728,0.000022417216,0.00002364976,0.000027085674,0.000024586607,0.000016556161,0.000010394225,0.000013365974],[0.000016162838,0.000017797856,0.000014612685,0.000024331872,0.000029981422,0.000029686556,0.000026440594,0.00002344646,0.000021743279,0.000021137826,0.000020952863,0.000020293994,0.000020919839,0.000019999845,0.000020319228,0.000019923033,0.00002100488,0.000020735497,0.000020872272,0.000019986861,0.000020999252,0.00002118616,0.00002106725,0.000019957737,0.000020437014,0.000020267476,0.000020559934,0.000019425332,0.000019982228,0.000020008545,0.000020202042,0.00001926891,0.000020353806,0.000020202002,0.00002098734,0.000020138526,0.000021239546,0.000021085098,0.000021345359,0.000020298872,0.00002110741,0.000020819352,0.000021087611,0.000019704265,0.000020320098,0.000020450856,0.000020508609,0.000019712723,0.00002060229,0.000020529567,0.000020961896,0.000019775498,0.00002062356,0.000020606201,0.00002081407,0.000019852272,0.000020574273,0.000020510566,0.00002101143,0.000019629411,0.00002041839,0.000020443329,0.000020547606,0.000019540415,0.000020305377,0.000020183998,0.00002073767,0.000019666306,0.000020629088,0.00002052019,0.000020717016,0.000019680527,0.00002044411,0.000020356621,0.000020811134,0.000019458352,0.000020299762,0.000020313782,0.00002045587,0.000019398878,0.000020291787,0.000020188656,0.000020714073,0.000019636564,0.000020652846,0.000020577,0.000020795123,0.000019713625,0.000020476225,0.000020380085,0.000020835974,0.000019456293,0.000020304371,0.000020328685,0.000020467869,0.00001940402,0.00002031295,0.000020175703,0.000020664964,0.000019587655,0.000020595573,0.000020531563,0.000020777301,0.000019713043,0.000020489704,0.000020374198,0.000020833353,0.000019455754,0.000020310761,0.000020336867,0.000020477126,0.000019401412,0.000020322173,0.000020179186,0.0000206652,0.000019590309,0.000020596694,0.000020535363,0.000020783209,0.00001973057,0.000020512522,0.000020408443,0.000020859237,0.000019482806,0.000020334523,0.000020353787,0.000020470992,0.000019414274,0.000020323063,0.000020187925,0.000020665278,0.000019593877,0.000020608186,0.00002053732,0.000020785072,0.000019726715,0.000020516885,0.000020386771,0.000020847843,0.000019457666,0.000020308069,0.000020338788,0.000020485426,0.000019412202,0.000020344221,0.00002018879,0.000020661435,0.000019581808,0.00002060506,0.000020541316,0.000020798614,0.00001973458,0.000020527785,0.000020402042,0.000020862739,0.000019480447,0.000020329055,0.00002036732,0.000020512618,0.000019461304,0.000020377172,0.000020245261,0.000020732767,0.000019638963,0.000020636111,0.000020585558,0.000020824296,0.00001977333,0.000020524145,0.000020420319,0.000020856314,0.000019486077,0.000020322153,0.000020358368,0.00002049592,0.00001946394,0.000020311516,0.000020217363,0.000020712414,0.000019635703,0.000020652353,0.000020602743,0.000020848698,0.000019860736,0.000020623205,0.000020544921,0.00002081681,0.000019403557,0.000020065067,0.000020135703,0.00002019008,0.000019195344,0.000019882244,0.000019921228,0.000020516512,0.000019445033,0.000020496174,0.000020494199,0.000020889995,0.000019797764,0.00002086115,0.000020599147,0.000021164411,0.000019981562,0.000021147585,0.000020920756,0.000021102698,0.000020199748,0.000021075972,0.000020552114,0.000020918762,0.000020271304,0.000021487058,0.000021306614,0.00002158381,0.000021086908,0.000022131513,0.000021901715,0.000021973596,0.00002083866,0.00002118232,0.000021184747,0.00002101556,0.000020180745,0.000020622185,0.000020423025,0.00002058597,0.000019784855,0.000020541926,0.00002037136,0.00002079792,0.000020051275,0.000021096723,0.000020926282,0.000021451247,0.000020354817,0.000020487243,0.000020602743,0.000020181225,0.000019922976,0.000019449652,0.00001990896,0.00002047361,0.000020618527,0.000020942534,0.00002158171,0.000021343447,0.000021682257,0.000021427162,0.000022003878,0.00002475768,0.000025196832,0.000024817393,0.000017197475,0.000010810361,0.000013213938],[0.000015657339,0.000015796792,0.000014761024,0.000021931517,0.000029419045,0.000028484646,0.000023808912,0.00002243317,0.000019764206,0.000020447093,0.000019570049,0.000020517078,0.000019141125,0.000019811438,0.000019061757,0.000019976665,0.000019326106,0.000020628164,0.00001943606,0.000020233545,0.000019682404,0.000020875696,0.000019678744,0.000019757685,0.000019041281,0.00002021906,0.000019593559,0.00001999256,0.000019247771,0.000020027253,0.00001885072,0.000019065776,0.000018482137,0.000019904308,0.000019256968,0.000020269817,0.000019544199,0.000020623971,0.000019534267,0.00001995635,0.000019261724,0.000020467265,0.0000195568,0.000019787214,0.000019073868,0.000019953228,0.000019014662,0.000019494386,0.000018848223,0.000020288673,0.000019320762,0.000019941435,0.000019270838,0.000020229398,0.00001940811,0.000019723328,0.00001921331,0.000020325333,0.000019731944,0.00001978695,0.000019267769,0.000020029525,0.000019122095,0.000019410536,0.000018617928,0.00001999096,0.000019149964,0.000019869583,0.000019254048,0.000020198862,0.000019274017,0.000019576413,0.00001904495,0.000020175588,0.000019510193,0.000019565048,0.000019117337,0.000019882189,0.000018991102,0.00001929202,0.000018574656,0.000020010071,0.000019158693,0.000019870567,0.000019270636,0.000020263768,0.000019333054,0.00001960973,0.000019060193,0.000020184556,0.000019514102,0.00001953965,0.000019089992,0.000019864903,0.000018990666,0.000019310335,0.000018589239,0.000020013525,0.000019126619,0.00001982395,0.000019207391,0.000020205433,0.000019286466,0.000019592158,0.000019044932,0.000020172856,0.000019490091,0.000019535086,0.000019092886,0.000019870322,0.000018982484,0.000019307243,0.000018586456,0.000020020836,0.000019131563,0.000019831212,0.000019206349,0.000020207899,0.00001929388,0.000019607596,0.000019067631,0.00002022093,0.000019547386,0.000019583098,0.000019119616,0.000019874207,0.000018973815,0.000019292296,0.000018587343,0.00002002267,0.000019136598,0.000019836225,0.000019216206,0.000020211311,0.000019287147,0.000019600642,0.000019056977,0.000020190255,0.00001949933,0.000019537563,0.000019087569,0.000019868674,0.000018985942,0.000019320301,0.000018600997,0.00002003304,0.000019134792,0.000019832762,0.000019214098,0.000020213392,0.00001928755,0.000019595802,0.000019060632,0.000020203795,0.000019525662,0.000019572213,0.000019125508,0.000019904917,0.000019027304,0.000019343512,0.000018632616,0.00002006407,0.000019186924,0.000019878624,0.000019272162,0.000020252563,0.000019355028,0.000019653893,0.000019118523,0.00002022664,0.000019562043,0.000019590196,0.000019143134,0.000019905978,0.000019052308,0.000019351797,0.000018612833,0.000020031664,0.000019174231,0.000019865452,0.000019257941,0.000020262298,0.000019479425,0.000019792327,0.000019254287,0.00002038236,0.000019639749,0.00001949723,0.000018965602,0.00001969551,0.000018830058,0.000019056723,0.000018285902,0.000019665405,0.000018797207,0.00001950134,0.000018988314,0.000020115014,0.00001916668,0.000019583304,0.000018907127,0.000020151207,0.000019436024,0.00001979346,0.000019230487,0.00002032543,0.000019365161,0.000019875097,0.000019042662,0.000020303672,0.000019576824,0.000020410604,0.000019827203,0.000020857367,0.000020141792,0.000020732945,0.00002026195,0.000021502081,0.000020872929,0.000021107287,0.000020018259,0.000020807582,0.000019848561,0.000020078465,0.000019048564,0.000020173393,0.00001943669,0.000020182324,0.000019414127,0.000020294246,0.000019601184,0.000019884104,0.000019495352,0.000020678546,0.000020555268,0.000021162514,0.000020314033,0.000021006841,0.000019790006,0.000019760078,0.000018862534,0.000019618352,0.000020318259,0.000020527119,0.000020355632,0.000020978194,0.000020962536,0.000021794287,0.000021000193,0.000021565991,0.000023023365,0.000025665915,0.00002407153,0.000016496304,0.000010625098,0.000013445967],[0.000015776843,0.000014382366,0.0000139440235,0.000020572214,0.000031638352,0.000030640214,0.000027216976,0.000022931967,0.000021269829,0.000020906973,0.00002116742,0.000020105,0.00002053969,0.000019561596,0.000019938012,0.000019098185,0.000020375208,0.00002007611,0.00002129126,0.0000197244,0.000021017022,0.000020701196,0.000020998072,0.000019672909,0.000020285073,0.000019725754,0.000020823561,0.000019699868,0.000020752706,0.000020114976,0.000020442121,0.000018839828,0.000019833235,0.000019363797,0.000020727648,0.000019499888,0.000020935326,0.000020331361,0.000021023596,0.000019726544,0.000020511445,0.000020094478,0.000021127045,0.000019509804,0.000020593057,0.000019968475,0.000020641603,0.00001924107,0.000020163663,0.000019833593,0.000020942953,0.000019462917,0.000020567053,0.000020099653,0.000020777541,0.000019763282,0.000020474567,0.000020187732,0.000021366865,0.000019716352,0.000020691366,0.000020085532,0.000020745741,0.000019286595,0.00002005573,0.000019662912,0.00002086254,0.00001938606,0.000020525691,0.00002005376,0.000020708523,0.000019597952,0.000020337411,0.00002001402,0.00002112773,0.000019497546,0.000020502135,0.000019939303,0.00002063792,0.00001917902,0.000020031855,0.00001967591,0.00002085009,0.00001938693,0.000020548663,0.00002010602,0.000020769497,0.000019625239,0.000020369205,0.000020043723,0.000021139096,0.000019486986,0.000020468222,0.000019919575,0.000020630228,0.000019186706,0.000020041429,0.000019677393,0.000020813794,0.000019341483,0.000020466114,0.000020040128,0.000020721362,0.000019602941,0.000020345386,0.000020027559,0.000021127164,0.000019474634,0.000020471229,0.000019921417,0.000020630248,0.000019172128,0.000020050395,0.000019680509,0.000020809288,0.000019349214,0.000020465117,0.000020034817,0.000020719861,0.000019622843,0.000020370875,0.000020062655,0.00002117895,0.000019536596,0.00002051117,0.000019926965,0.000020615378,0.000019176607,0.00002004399,0.00001969551,0.000020817803,0.00001935556,0.000020474547,0.000020040128,0.00002071593,0.000019608719,0.000020357262,0.000020042518,0.000021143655,0.000019480058,0.000020470663,0.000019920963,0.000020635542,0.000019177265,0.000020065047,0.000019684301,0.000020805595,0.00001934888,0.000020466525,0.000020028972,0.00002071261,0.000019597146,0.000020356543,0.000020049267,0.000021170024,0.000019511886,0.000020517038,0.00001996341,0.000020672,0.000019204479,0.000020071497,0.00001971603,0.00002087259,0.000019416662,0.000020547977,0.00002010299,0.000020783109,0.000019668987,0.000020413192,0.000020091988,0.000021203725,0.000019555067,0.0000205243,0.000019962326,0.000020676396,0.000019240244,0.000020057872,0.000019692505,0.00002085532,0.000019382345,0.000020505498,0.000020073257,0.000020845615,0.00001983316,0.000020535106,0.000020194357,0.000021206595,0.000019548559,0.000020294652,0.000019729197,0.000020323412,0.000018951372,0.000019688974,0.000019212559,0.000020432688,0.00001885856,0.000020158106,0.000019747928,0.00002060402,0.000019324687,0.000020277608,0.000019797802,0.000021172285,0.000019492154,0.000020589643,0.000019985182,0.000020683714,0.000019365569,0.000020261507,0.000019770425,0.00002082777,0.000019717741,0.000020808377,0.000020368894,0.000021143693,0.000020506008,0.000021254236,0.000021095215,0.000022707925,0.00002110723,0.000021481525,0.000020691743,0.00002121238,0.000019949022,0.000020261255,0.000019708494,0.000020714171,0.000019548057,0.000020462405,0.000019895959,0.000020575253,0.000019825595,0.000020482008,0.00002044639,0.000022089805,0.000021021031,0.00002171899,0.000021156136,0.000021158035,0.000019820509,0.000019557361,0.000019445739,0.000020408248,0.000020037454,0.000020646328,0.000020201964,0.000020560581,0.000020450272,0.000020009384,0.00002036328,0.000022876442,0.000024012215,0.000025787751,0.00001655744,0.000011070824,0.000012911767],[0.000016376143,0.000013935741,0.000014533399,0.000020802067,0.000032862048,0.000030795796,0.000025117182,0.00002226673,0.000019662762,0.000020159145,0.000019079891,0.00001980766,0.00001898013,0.000019472907,0.000018335093,0.000018999797,0.000018729872,0.0000201484,0.000019116662,0.000019688337,0.00001956891,0.00002079302,0.000019617604,0.000019855812,0.000018804432,0.000019686628,0.000018861707,0.000019219211,0.000019027015,0.00001973582,0.00001870829,0.00001879269,0.000018144468,0.000019459763,0.000018798139,0.000019557529,0.000019421701,0.000020544077,0.000019371499,0.000019722744,0.000018954644,0.000020022802,0.000019113071,0.000019227113,0.000019060357,0.000019756291,0.00001888815,0.000019196184,0.000018726836,0.000020120673,0.00001913722,0.000019704583,0.000019408166,0.000020454407,0.000019543415,0.00001999586,0.000019411385,0.00002037653,0.000019549698,0.000019529349,0.00001943999,0.000019973046,0.000019071213,0.000019306486,0.000018778108,0.000020028932,0.000019090556,0.000019620205,0.000019387095,0.000020446996,0.000019450912,0.000019873392,0.000019277602,0.000020275307,0.000019379777,0.00001936254,0.000019274643,0.000019876064,0.000018959345,0.00001921309,0.00001874111,0.000020022611,0.000019093724,0.000019646923,0.000019430427,0.000020502019,0.000019491226,0.00001988454,0.00001929916,0.000020290065,0.000019386764,0.000019337223,0.000019243696,0.000019847294,0.000018942988,0.000019209352,0.000018746061,0.000020023586,0.000019067867,0.000019609412,0.000019382844,0.000020458972,0.000019460877,0.000019874282,0.000019279183,0.000020275249,0.000019372255,0.000019338699,0.000019242483,0.000019854355,0.000018936087,0.00001921232,0.000018752642,0.000020030346,0.000019069757,0.00001962041,0.000019388206,0.000020461215,0.000019455105,0.000019881942,0.000019299732,0.000020297091,0.000019399395,0.000019394012,0.000019291616,0.000019868465,0.00001893533,0.000019213916,0.000018763714,0.00002002775,0.000019069996,0.000019620278,0.000019396379,0.000020466914,0.00001945965,0.000019878338,0.000019285178,0.000020280875,0.000019376579,0.000019339952,0.000019241988,0.000019851344,0.000018936757,0.00001921439,0.000018755216,0.000020028838,0.000019064684,0.000019613208,0.000019386134,0.000020458912,0.000019449817,0.00001986947,0.000019279221,0.000020284166,0.000019391127,0.000019361174,0.000019273926,0.000019886702,0.000018979768,0.000019236575,0.000018762623,0.000020038888,0.000019117118,0.000019670995,0.00001944266,0.000020498463,0.000019522124,0.000019936433,0.000019346242,0.000020313182,0.000019431687,0.00001939329,0.000019299327,0.000019880179,0.000018985489,0.000019245494,0.000018764771,0.000020027195,0.000019086914,0.000019612497,0.000019397285,0.000020455733,0.000019602156,0.00002007814,0.000019493436,0.000020447074,0.000019492638,0.000019353549,0.000019124522,0.000019621795,0.000018690065,0.000018944633,0.000018378018,0.000019601128,0.000018653953,0.00001910591,0.000018890618,0.000020110352,0.000019155223,0.00001954718,0.00001900112,0.00002005246,0.000019196368,0.00001921287,0.000019001138,0.000019755029,0.000018752553,0.00001912609,0.000018806584,0.00001991762,0.000019117464,0.000019723855,0.000019685838,0.00002068539,0.00001998566,0.000020361378,0.000019934512,0.00002091906,0.000020318259,0.000020277164,0.00001978029,0.000020093521,0.000019278834,0.000019374676,0.000018674726,0.000019647934,0.00001893533,0.000019548597,0.00001923986,0.000020313764,0.00001969859,0.000020101743,0.000019415924,0.000020416132,0.000019798274,0.000020431751,0.000020007723,0.000020738027,0.00001999729,0.000019769823,0.00001874574,0.000019267769,0.000019570534,0.000019896963,0.000020044869,0.000020307525,0.00002040963,0.00002127005,0.000020622125,0.000021365257,0.000021950265,0.000025304616,0.000025308429,0.00001754678,0.000010686089,0.000013411697],[0.000016104925,0.000014116141,0.000012552852,0.000021987264,0.000033324064,0.000032179258,0.000027139531,0.000023385744,0.000021484271,0.000021049636,0.00002065005,0.000020150283,0.000020713322,0.000019954388,0.000020156453,0.000019713438,0.00002052297,0.000020367574,0.000020624662,0.000019807112,0.000021125392,0.00002119198,0.00002121141,0.00002030714,0.000020431227,0.000020224847,0.000020188963,0.000019332098,0.000020047948,0.000020222551,0.000020472322,0.0000194401,0.000019944571,0.000020117719,0.000020764408,0.000019964591,0.00002111792,0.000020825368,0.000021060661,0.000020308786,0.000020654423,0.000020700763,0.000020834348,0.000019843168,0.000020339448,0.000020382418,0.000020525553,0.000019810153,0.000020581318,0.000020803633,0.000021111737,0.000020105885,0.000021098736,0.000020889596,0.000021211856,0.000020583633,0.000021111615,0.000021022573,0.000021098333,0.000020020569,0.000020558582,0.000020531015,0.00002073168,0.000019831345,0.0000206006,0.000020675508,0.000020991823,0.000019920582,0.00002098946,0.000020818,0.000021190162,0.00002039811,0.00002098608,0.000020827056,0.000020916807,0.000019827012,0.000020461664,0.000020466288,0.000020695157,0.000019770936,0.00002056721,0.000020696123,0.000020993686,0.00001996682,0.000021030493,0.00002084158,0.000021218006,0.00002041395,0.000021000653,0.0000208484,0.000020927202,0.00001981947,0.00002043869,0.000020448419,0.00002067825,0.0000197633,0.000020575273,0.000020694013,0.000020965555,0.00001993898,0.000020993106,0.000020821557,0.000021189351,0.000020406205,0.000020981755,0.00002084331,0.000020934667,0.000019822533,0.000020442101,0.000020460846,0.000020685113,0.000019766185,0.00002059406,0.00002069046,0.000020964295,0.000019945293,0.000021003218,0.000020822588,0.000021181615,0.000020413114,0.000020991441,0.000020875117,0.000020959997,0.000019858597,0.000020475856,0.000020490603,0.000020691072,0.000019774896,0.000020592332,0.000020703723,0.000020960599,0.000019949157,0.000021006043,0.000020832062,0.00002119006,0.000020412532,0.000020982416,0.00002084333,0.000020936244,0.000019826331,0.000020443915,0.000020462192,0.000020683121,0.000019762716,0.000020600895,0.000020685726,0.000020955362,0.000019932137,0.000020997268,0.00002082231,0.000021183372,0.000020405389,0.000020981035,0.000020842079,0.00002094551,0.000019840878,0.000020458308,0.000020489177,0.000020714526,0.00001979516,0.00002060121,0.000020696716,0.000020983538,0.000019972018,0.000021033004,0.000020843609,0.000021229665,0.000020460904,0.000021030695,0.000020872949,0.000020944852,0.000019854468,0.000020460298,0.000020478785,0.000020694979,0.000019782308,0.000020565583,0.000020686948,0.000020958838,0.000019933903,0.000020983198,0.000020834446,0.000021249312,0.00002055772,0.000021144055,0.000020980175,0.000020909527,0.000019795461,0.000020236517,0.000020248679,0.000020381738,0.000019491987,0.000020153166,0.000020205838,0.000020563719,0.000019453768,0.00002052931,0.000020527845,0.00002099723,0.000020135798,0.000020832242,0.000020612295,0.000020821297,0.00001970186,0.00002046067,0.000020380066,0.000020546215,0.000019790856,0.000020641328,0.000020467889,0.000020681167,0.000019913916,0.000021058231,0.000020958678,0.000021205586,0.00002095438,0.000021380258,0.00002137249,0.000021303162,0.000020475485,0.00002066845,0.000020718222,0.000020742478,0.000019940635,0.000020243235,0.00002045273,0.000020468768,0.000019658637,0.000020685882,0.000020647076,0.000021123538,0.000020518019,0.000020860947,0.000020490057,0.00002066108,0.00001984824,0.000020214955,0.000020725593,0.000020607811,0.000019918949,0.000019015115,0.000019253497,0.000019119816,0.000019744726,0.00001971291,0.000020563819,0.00002081947,0.000021236467,0.000021027005,0.000021552154,0.000023199753,0.000024073757,0.000025368043,0.000018259014,0.000010984976,0.000013321968],[0.000015751752,0.000014404521,0.000012689778,0.00001891656,0.000030405838,0.000032202406,0.000026313539,0.000024008852,0.000020742893,0.0000209867,0.000019495184,0.000020064186,0.000018849587,0.000019649453,0.000019122679,0.00002009492,0.000019341021,0.00002042694,0.000019180265,0.00001982652,0.00001944813,0.000020945332,0.000019713869,0.000020530937,0.000019087207,0.000020298465,0.000018979714,0.000019398285,0.000018971354,0.000020293335,0.00001946754,0.000020000512,0.00001864634,0.000019964249,0.000019148594,0.00001997017,0.000019510046,0.000020784377,0.000019764375,0.000020525162,0.000019278725,0.000020557269,0.000019414256,0.000019756291,0.000019024292,0.00002000425,0.000019264224,0.000019861114,0.000018966486,0.000020345735,0.00001922759,0.00001986945,0.000019246247,0.000020497346,0.000019640684,0.000020618663,0.000019607036,0.000020982978,0.000019490462,0.000019758965,0.000019095272,0.000020106767,0.000019206567,0.00001977182,0.000018925635,0.000020338439,0.000019090374,0.000019655337,0.000019040319,0.00002039632,0.000019442863,0.000020393229,0.00001934316,0.000020716483,0.000019180303,0.000019524396,0.000018958857,0.000020079116,0.000019141053,0.000019708004,0.000018882658,0.000020333999,0.000019109044,0.000019713138,0.000019095909,0.000020443389,0.000019479128,0.000020426649,0.000019374878,0.000020746693,0.000019204663,0.000019530895,0.000018950197,0.000020047852,0.000019119216,0.000019678557,0.00001887477,0.000020313028,0.000019085204,0.000019681522,0.000019070048,0.000020421428,0.000019468876,0.000020400172,0.00001935353,0.000020727412,0.000019194482,0.000019525643,0.000018947234,0.000020058982,0.000019113892,0.000019680283,0.000018868597,0.000020304795,0.000019079434,0.000019680603,0.000019074996,0.000020429006,0.00001947391,0.00002041033,0.000019367766,0.00002076322,0.000019233568,0.000019557587,0.00001897823,0.000020095993,0.000019141034,0.000019694384,0.000018879919,0.000020320875,0.000019083238,0.000019685333,0.000019082492,0.000020434949,0.000019480967,0.000020412006,0.000019353569,0.000020727093,0.00001919494,0.000019529833,0.000018946239,0.000020059919,0.00001911001,0.000019676267,0.000018864388,0.000020301717,0.000019069412,0.000019670131,0.000019068557,0.000020430252,0.000019467188,0.00002040385,0.000019344325,0.00002072322,0.000019190897,0.000019544274,0.000018953722,0.000020082754,0.000019146823,0.00001972094,0.00001888743,0.000020343037,0.000019117575,0.000019720319,0.000019116389,0.000020466876,0.00001950467,0.000020458814,0.000019409888,0.00002079318,0.000019250469,0.000019579868,0.000018982122,0.000020092486,0.000019157469,0.000019717592,0.0000188915,0.000020334153,0.000019098623,0.000019686215,0.000019089153,0.000020458758,0.000019587058,0.000020589838,0.000019563462,0.00002099785,0.00001930785,0.000019541869,0.000018878083,0.000019979789,0.000019014098,0.00001949262,0.000018652743,0.000020019099,0.00001872955,0.000019211166,0.00001872914,0.000020136778,0.000019329884,0.000020244566,0.000019203546,0.000020540534,0.000019107896,0.000019602156,0.000018964643,0.000020262858,0.000019240153,0.000019931851,0.000019057812,0.000020332485,0.000019197705,0.00001969844,0.000019198933,0.000020482808,0.000020041754,0.00002112362,0.000020146037,0.000021399412,0.000019888332,0.000020224132,0.000019438081,0.000020519878,0.000019911315,0.00002023617,0.000019062649,0.000020281805,0.00001919388,0.000019692448,0.000019046749,0.0000204618,0.00001991158,0.00002091938,0.000019543453,0.00002068121,0.000019104033,0.000019848978,0.000018949764,0.000020535814,0.000019958747,0.000020381427,0.000018601653,0.000019230138,0.000018961586,0.000019265657,0.000019143115,0.000019970952,0.000020634872,0.000021625221,0.000021427328,0.000022197335,0.000023619941,0.000025229196,0.000024057532,0.000016542148,0.000011067278,0.000013455743],[0.000015640475,0.000014187236,0.000011573088,0.000017156359,0.00003024891,0.000034995777,0.000030748608,0.000025312147,0.000022791344,0.000021917174,0.000021463627,0.000019837358,0.000020348663,0.000019613637,0.00002048316,0.00001956667,0.000020873646,0.00002045193,0.000021078464,0.000019384377,0.000020845775,0.000020513344,0.000021523809,0.000019969295,0.00002067338,0.00001978829,0.000020325351,0.00001927672,0.000020485171,0.00002041,0.000021516771,0.000020013296,0.000020518803,0.000019749454,0.000020608913,0.000019537696,0.000021121625,0.000020726284,0.000021912556,0.00002033648,0.000021037557,0.000020488162,0.000021165904,0.00001970184,0.000020530624,0.000020283816,0.000021170466,0.000019860832,0.000020497562,0.000019874473,0.000020628477,0.000019206496,0.000020557269,0.000020179898,0.000021322185,0.000020114112,0.000021122412,0.00002053973,0.000021009186,0.000019466166,0.000020406807,0.000020155452,0.000020738185,0.0000194769,0.000020242484,0.000019737176,0.000020370875,0.000018823324,0.000020244452,0.000019904479,0.00002105773,0.000019799765,0.000020826223,0.00002014642,0.000020613079,0.00001917211,0.000020249607,0.000020088348,0.0000207025,0.000019417515,0.000020241769,0.000019710373,0.000020386986,0.000018900384,0.000020314132,0.00001994246,0.000021102358,0.000019845967,0.000020894797,0.000020212081,0.000020658363,0.000019202556,0.000020246944,0.000020072624,0.000020655012,0.0000193841,0.000020208805,0.000019680752,0.000020356487,0.000018869048,0.000020275365,0.000019927993,0.000021082382,0.000019835865,0.000020849096,0.000020172778,0.000020643236,0.000019197594,0.000020255306,0.000020076875,0.000020658696,0.000019382418,0.000020213836,0.000019658766,0.000020337684,0.000018864082,0.000020283198,0.000019938943,0.000021095093,0.00001984328,0.000020863696,0.00002020601,0.00002068896,0.000019235695,0.000020282927,0.00002010414,0.000020685331,0.000019402429,0.000020219562,0.00001967454,0.000020345715,0.000018873601,0.000020284764,0.00001993917,0.00002108544,0.000019843697,0.000020851918,0.000020174357,0.000020645934,0.00001920404,0.00002026081,0.000020082354,0.000020658026,0.00001938194,0.000020218637,0.000019655843,0.000020329113,0.000018850811,0.000020272058,0.000019936033,0.00002108381,0.000019835315,0.00002084675,0.000020169431,0.000020641366,0.000019216626,0.000020280046,0.000020101437,0.000020701867,0.000019430316,0.000020253876,0.000019694438,0.000020385509,0.000018915223,0.000020332523,0.000019986652,0.000021141797,0.000019895464,0.000020936444,0.000020265894,0.000020735575,0.000019271169,0.000020301311,0.000020122861,0.00002070329,0.000019425626,0.000020232987,0.000019708494,0.000020359106,0.000018878227,0.000020289408,0.000019971141,0.000021202713,0.000020011368,0.00002109946,0.000020444071,0.000020814805,0.000019257208,0.000020145882,0.000019989986,0.000020454348,0.000019220915,0.000019920943,0.000019437692,0.000019999901,0.000018414825,0.0000199056,0.000019757572,0.000021081098,0.000019738362,0.00002079816,0.000020126756,0.000020643729,0.000019428628,0.000020532034,0.000020321824,0.000020957217,0.000019846366,0.000020525787,0.000019888881,0.000020244026,0.00001921626,0.000020277781,0.000020246074,0.000021484886,0.000020848282,0.00002164955,0.000021271046,0.000021595832,0.000020491778,0.000020917483,0.000020896849,0.000021555792,0.000020440446,0.000020572368,0.000019830248,0.000020306461,0.000018985453,0.000020068357,0.000019792253,0.000021116328,0.000020445279,0.000021023696,0.000020249452,0.000020440271,0.000019667075,0.000020167316,0.000020642332,0.000021515498,0.000020460378,0.00001991536,0.000019235586,0.000019621513,0.000018908298,0.000019492842,0.00001990372,0.000020657475,0.000020720712,0.000020902451,0.000021463464,0.000024762783,0.00002437172,0.000023564617,0.000015797455,0.000010760158,0.0000128725105],[0.000015833124,0.000013416148,0.0000117959435,0.000016106216,0.000029766046,0.000032971602,0.000027870574,0.000024273166,0.000021494148,0.000020826421,0.00001939466,0.000019359031,0.00001870276,0.000019115496,0.000018510465,0.000019182587,0.00001928871,0.000020216148,0.000019012285,0.000019158218,0.000019103813,0.000020379019,0.000019417126,0.000019955683,0.000019051562,0.000019948586,0.000018772664,0.00001929673,0.000018902998,0.000020230498,0.000019485837,0.000019927042,0.00001926064,0.000020044947,0.000019133515,0.000019699717,0.00001955902,0.00002074321,0.000019921514,0.0000202447,0.00001980175,0.000020754527,0.00001966533,0.000019823043,0.000019339748,0.00002009536,0.000019452787,0.000019594027,0.000019226727,0.000020016463,0.00001891225,0.000019264902,0.00001916721,0.000020433994,0.000019648889,0.000020400095,0.000019900532,0.000021037054,0.000019527206,0.000019698628,0.00001938375,0.000020334735,0.000019200123,0.00001936339,0.000018932586,0.000019918209,0.000018661249,0.000018968822,0.000018929064,0.000020371399,0.00001938279,0.000020198304,0.000019556765,0.000020716207,0.000019154439,0.000019479185,0.000019232706,0.000020350275,0.000019143718,0.000019387558,0.000018930672,0.000019960022,0.00001871714,0.000019070867,0.000018999925,0.000020429065,0.000019427165,0.00002025285,0.00001962288,0.000020770509,0.00001918945,0.000019486077,0.000019237898,0.000020321184,0.000019118084,0.000019350173,0.000018896259,0.000019914143,0.000018680887,0.000019034436,0.00001899016,0.000020423882,0.000019422701,0.000020231599,0.00001959229,0.00002073447,0.000019173445,0.00001948132,0.00001924074,0.000020327736,0.000019111249,0.000019347828,0.000018889248,0.000019899753,0.000018660234,0.000019020246,0.000018982519,0.000020422578,0.000019420275,0.000020228144,0.000019602325,0.00002075732,0.000019207704,0.000019505487,0.00001925493,0.0000203378,0.000019134355,0.000019364756,0.000018899627,0.000019909909,0.00001867182,0.000019030316,0.000018992316,0.00002042811,0.000019421552,0.000020233507,0.000019598174,0.000020738127,0.00001917337,0.00001948342,0.000019240337,0.000020334794,0.000019115096,0.000019355837,0.00001888959,0.000019902998,0.000018652405,0.000019020774,0.00001898462,0.000020434209,0.000019418496,0.00002024142,0.000019596437,0.000020744616,0.00001917617,0.00001950558,0.000019251864,0.000020361264,0.000019145727,0.000019401856,0.000018926467,0.000019945846,0.000018707504,0.000019080346,0.000019035653,0.000020498284,0.000019499164,0.000020317057,0.000019655414,0.000020822528,0.000019258474,0.000019558853,0.000019290088,0.000020378784,0.000019167046,0.000019389647,0.000018926918,0.000019949537,0.000018698658,0.000019050382,0.00001901954,0.000020484214,0.000019575778,0.000020434383,0.000019811156,0.000021007525,0.000019342406,0.000019514362,0.000019167557,0.00002017072,0.000018963123,0.00001907385,0.00001863713,0.000019625388,0.000018465365,0.000018694986,0.00001874803,0.00002028879,0.000019436635,0.000020117508,0.000019581286,0.000020654934,0.000019269019,0.000019689161,0.00001953179,0.000020612451,0.000019429297,0.000019772782,0.00001937111,0.00002015899,0.000019050363,0.00001940537,0.000019487063,0.000020732334,0.000020223304,0.000021194728,0.000020895772,0.000021775464,0.000020363748,0.00002038306,0.000019844076,0.000020506908,0.000019793422,0.000019718495,0.000019137968,0.00001962462,0.000018707184,0.000019089355,0.000018900275,0.000020459478,0.000019915853,0.000021356844,0.000020340147,0.000021184222,0.000019609111,0.000020392024,0.000019538962,0.000020833353,0.000020015606,0.000020327832,0.000019283927,0.000019462677,0.000019767222,0.000019799067,0.000019826804,0.000020678664,0.00002062769,0.000021399655,0.000020774152,0.000022076916,0.00002350922,0.000026367068,0.000024492016,0.000016614445,0.000010276511,0.000013086971],[0.000015479873,0.000012928203,0.000010053451,0.00001597201,0.000027620903,0.000034043154,0.000028271124,0.000024856998,0.000022373924,0.000021483964,0.000020634794,0.000019937497,0.000020305202,0.00001991458,0.000020106076,0.00001970246,0.000020599835,0.00002060744,0.000020490115,0.000019613788,0.000020763813,0.00002088322,0.000021016922,0.000019969673,0.000020773221,0.000020438241,0.000020730515,0.000019722764,0.000020357515,0.000020564172,0.00002070787,0.000019943316,0.000020658854,0.000020592724,0.000021095135,0.000020249723,0.000021240498,0.000021138148,0.000021306942,0.000020370584,0.000021258393,0.000021206495,0.000021710459,0.000020519426,0.000020808196,0.000020691685,0.000020490603,0.000019803525,0.000020515612,0.000020628358,0.000021014497,0.000019807925,0.000020848021,0.00002089643,0.000021183636,0.000020319672,0.000021461969,0.000021158236,0.000021496322,0.000020012838,0.000020826777,0.000020785727,0.000020625173,0.000019501042,0.00002025799,0.00002032601,0.000020716265,0.000019397232,0.000020798396,0.000020731979,0.000021171214,0.000020085397,0.00002125365,0.000020763042,0.000021162696,0.00001980175,0.00002081419,0.00002079094,0.000020683652,0.000019492414,0.000020317502,0.000020349516,0.000020773477,0.000019485278,0.000020860967,0.00002075623,0.00002121487,0.000020132304,0.000021306229,0.00002080153,0.000021191434,0.000019808775,0.000020799944,0.00002077433,0.000020648888,0.00001946041,0.000020295232,0.000020306345,0.000020724603,0.000019470419,0.00002085373,0.00002074228,0.000021182806,0.00002010713,0.000021270154,0.00002077025,0.000021165964,0.000019796029,0.000020798097,0.000020770349,0.0000206356,0.00001944509,0.000020288866,0.000020298232,0.000020716918,0.000019474466,0.000020847405,0.000020741805,0.0000211718,0.000020101206,0.00002128056,0.00002079318,0.000021187736,0.000019823912,0.000020803494,0.000020778056,0.000020648296,0.00001946316,0.000020299336,0.000020298678,0.00002071674,0.00001947179,0.00002085492,0.000020747424,0.000021178686,0.000020107995,0.000021284173,0.000020775184,0.000021166268,0.000019800804,0.000020803076,0.000020775777,0.00002064686,0.000019456904,0.000020304195,0.00002028879,0.000020701513,0.00001946548,0.000020851561,0.000020739411,0.000021181795,0.00002011509,0.00002129845,0.000020779838,0.000021179674,0.000019826937,0.000020827929,0.00002080782,0.000020679472,0.000019490984,0.000020342337,0.000020335472,0.000020765714,0.000019514102,0.000020896809,0.000020806488,0.000021267111,0.000020182959,0.000021340291,0.000020832997,0.000021244954,0.000019870738,0.000020834945,0.000020817366,0.0000206817,0.000019492323,0.00002030077,0.00002033584,0.000020739986,0.000019485464,0.000020883002,0.000020795063,0.000021295362,0.000020288577,0.000021441534,0.000021013235,0.000021293472,0.000019797915,0.000020573232,0.00002056225,0.000020289155,0.000019186504,0.000019797972,0.00001996918,0.000020398713,0.000019219506,0.00002051841,0.000020686573,0.000021183594,0.000020022935,0.000021248075,0.000020805082,0.000021189251,0.00002010297,0.00002137565,0.000021050239,0.000020993304,0.000019926701,0.000020882168,0.00002052244,0.000020885413,0.000020153991,0.000021361853,0.000021258858,0.000021586937,0.000021179514,0.000022428165,0.000022148995,0.000022075023,0.000021087068,0.000021304055,0.000021319867,0.000020756766,0.00002001339,0.00002017757,0.000020305937,0.000020403908,0.000019640798,0.000020861107,0.000020780355,0.000021617838,0.000021027347,0.000022184513,0.000021259892,0.000021481177,0.000020775025,0.0000211862,0.000021202472,0.000020798117,0.000020420008,0.000019846933,0.000020172894,0.000020620768,0.00002078626,0.000020714686,0.000021313037,0.000020990923,0.000021256365,0.000021154201,0.000021445992,0.000024080347,0.000024715175,0.00002534485,0.000017490494,0.000010797987,0.000013014139],[0.000014938838,0.000011963614,0.000010393372,0.000013809411,0.000025343594,0.00003321749,0.000026294301,0.000024073253,0.00002107151,0.000020922891,0.000019670564,0.000019987776,0.00001897396,0.000019445162,0.000019215691,0.00001981433,0.00001956402,0.000020537478,0.000019403427,0.000019885829,0.000019496021,0.000020600188,0.000019369743,0.000019615432,0.000018815661,0.000020126738,0.000019073177,0.00001986746,0.000019070521,0.000020312524,0.000018985887,0.000019407054,0.000018782639,0.0000201372,0.000019331377,0.000020200441,0.000019690759,0.000020670817,0.000019403373,0.000019750281,0.00001919097,0.000020606003,0.000019762565,0.000020199268,0.000019489087,0.000020012438,0.000018805345,0.000019050854,0.00001864481,0.000020029966,0.000019108606,0.000019668443,0.000019224251,0.000020270936,0.000019070612,0.000019683886,0.00001914936,0.000020582162,0.00001932592,0.000019698948,0.000019169258,0.000020100286,0.00001873114,0.000018838517,0.000018316849,0.000019675366,0.000018664932,0.000019213769,0.000018951841,0.000020146708,0.000018892022,0.000019508054,0.00001880081,0.000020234897,0.000018953126,0.000019464105,0.000019027775,0.000020099116,0.000018689636,0.00001884389,0.000018290943,0.000019724983,0.000018690029,0.000019307206,0.00001899679,0.000020204894,0.00001894232,0.000019575498,0.000018849552,0.000020281494,0.000018987645,0.000019471774,0.00001901002,0.000020060224,0.000018670611,0.000018833882,0.00001828695,0.000019695528,0.000018660126,0.00001926325,0.000018965837,0.000020161164,0.000018908371,0.000019533503,0.000018814244,0.00002024924,0.00001896307,0.00001943406,0.000018988041,0.000020037052,0.000018642873,0.000018803428,0.000018275496,0.000019696994,0.000018674262,0.000019282952,0.000018977487,0.000020162797,0.000018903846,0.000019528417,0.000018824743,0.000020263149,0.00001898558,0.000019466146,0.0000190178,0.000020062158,0.000018666979,0.000018823988,0.000018280272,0.000019685145,0.000018664185,0.000019273944,0.000018974755,0.000020159163,0.000018910247,0.00001953829,0.000018818928,0.000020245301,0.000018955781,0.000019432964,0.000018993293,0.000020044125,0.000018653509,0.0000188225,0.000018275112,0.0000196767,0.000018641147,0.00001925335,0.000018958928,0.00002015332,0.000018897483,0.000019535551,0.000018810279,0.000020248719,0.00001896542,0.000019471532,0.000019018325,0.000020081356,0.000018673407,0.000018843764,0.000018294502,0.000019730758,0.00001871591,0.000019334162,0.000019009349,0.000020225907,0.000018970377,0.00001960242,0.000018879955,0.000020324014,0.000019032657,0.000019526686,0.000019047638,0.000020094325,0.000018691597,0.000018844177,0.00001829096,0.000019721618,0.000018685074,0.000019304076,0.000018991554,0.00002021054,0.000019020756,0.000019705016,0.000019026978,0.00002049461,0.000019089282,0.000019440344,0.000018888079,0.0000198722,0.000018454715,0.000018521961,0.000017942219,0.000019333811,0.000018344223,0.000018961713,0.000018720104,0.000020023357,0.000018932928,0.000019514437,0.000018850558,0.00002027233,0.000019246687,0.000019815936,0.000019333922,0.000020327696,0.000019070012,0.000019257537,0.00001878459,0.000020135683,0.000019514622,0.000020284957,0.000019809078,0.000020864232,0.000019921037,0.000020725158,0.000020346413,0.000021759293,0.00002085912,0.000021243677,0.0000202837,0.000020960897,0.00001977463,0.000019597297,0.00001878984,0.00001983123,0.000018984421,0.00001972438,0.00001922339,0.00002061597,0.000019657604,0.0000205739,0.000019574305,0.000020926982,0.000019883742,0.000020975294,0.000019904252,0.000021109745,0.000019455643,0.0000197006,0.000018829987,0.000019643176,0.00002033677,0.000020563739,0.000020419753,0.000020871952,0.000020812522,0.000021551208,0.000020709036,0.00002119404,0.000022520153,0.000025336129,0.000024926454,0.00001683111,0.000010714948,0.000013286595],[0.000015312287,0.000011133026,0.000010266655,0.000013731092,0.000026694079,0.000036842266,0.000029727662,0.000024617764,0.000022334783,0.000021621881,0.000021294143,0.00001985068,0.000020071382,0.000019607336,0.000020180052,0.00001948212,0.000020927542,0.000020598183,0.000021542208,0.000019704434,0.000021059475,0.000020489548,0.000020838797,0.000019279698,0.000020151378,0.00001938754,0.000020350139,0.000019064795,0.00002033712,0.000019775707,0.00002022579,0.000018809347,0.000019872767,0.000019367693,0.000020427487,0.000019397821,0.000021002095,0.000020380145,0.000020897605,0.000019375544,0.000020350779,0.00001995026,0.00002094581,0.000019540714,0.000020536203,0.000019868125,0.000020061641,0.000018674831,0.00001956445,0.00001932839,0.000020402624,0.000018926918,0.0000203378,0.000019769577,0.000020264462,0.000018901124,0.00002012167,0.000019566856,0.000020528703,0.000018841212,0.000020031148,0.000019537696,0.000019742693,0.000018278457,0.000019179608,0.000018951174,0.000019972495,0.000018434663,0.000019953914,0.00001948541,0.000020102721,0.000018596776,0.000019892525,0.000019218625,0.000020247173,0.000018565554,0.00001984277,0.000019445719,0.000019724306,0.000018222067,0.00001919084,0.00001896343,0.000020043415,0.000018496437,0.000020050777,0.00001950411,0.000020161317,0.000018664772,0.000019965391,0.000019257664,0.000020277106,0.000018585233,0.000019819056,0.000019423534,0.000019704095,0.000018229784,0.00001919778,0.000018943512,0.000019978075,0.000018442945,0.000019993171,0.000019454084,0.000020119503,0.000018638073,0.000019933012,0.000019247163,0.000020263225,0.000018557075,0.000019794348,0.00001941109,0.000019692918,0.000018213346,0.000019193953,0.000018953522,0.000019986785,0.000018461984,0.000020020874,0.0000194774,0.000020139487,0.000018644721,0.000019933543,0.000019246081,0.000020283875,0.000018596882,0.000019838133,0.000019438989,0.000019708456,0.000018220155,0.000019189743,0.000018944073,0.000019982592,0.000018459854,0.000020010166,0.000019460727,0.000020125719,0.00001863912,0.000019926909,0.000019223446,0.00002024895,0.000018552915,0.000019801239,0.00001941533,0.000019692317,0.000018205306,0.000019185516,0.000018923181,0.000019960478,0.000018442153,0.00002001112,0.000019449095,0.000020120962,0.00001861768,0.000019925637,0.000019209463,0.000020261312,0.000018578696,0.000019840763,0.000019437783,0.00001971368,0.000018213155,0.000019205945,0.000018953035,0.00002002987,0.00001851299,0.000020057434,0.00001949775,0.000020180301,0.000018682258,0.000019970208,0.00001927911,0.000020322232,0.000018626026,0.000019855073,0.000019443309,0.000019712195,0.000018233975,0.000019187162,0.000018956054,0.000020003507,0.000018456774,0.000020011483,0.00001947792,0.000020205567,0.000018819934,0.000020074367,0.00001946765,0.000020356854,0.000018593708,0.000019650633,0.0000191885,0.000019312674,0.000017928842,0.000018793173,0.000018578252,0.000019627485,0.000018095567,0.000019591074,0.000019228011,0.00002006145,0.000018654504,0.000019980667,0.000019441455,0.00002056921,0.000019074978,0.000020272253,0.00001961014,0.00001997419,0.00001880063,0.000019791496,0.000019491765,0.000020722608,0.000019650932,0.000021010128,0.000020243197,0.000020982056,0.00002006101,0.000021253589,0.000021006903,0.00002229044,0.000020983898,0.000021464448,0.00002077859,0.000020881609,0.000019628196,0.000019956939,0.00001944952,0.000020268908,0.00001887002,0.000020345462,0.000019619643,0.000020338168,0.000019244319,0.000020539906,0.000019905448,0.000020842894,0.00001977484,0.000020799169,0.00002036227,0.000020175896,0.000019186651,0.000019070503,0.00001916264,0.000020135338,0.000019918663,0.000020426785,0.000020064568,0.000020410253,0.000020281108,0.000019957604,0.000020186135,0.000022407106,0.00002398862,0.000026258167,0.000017037808,0.000011272264,0.000012867588],[0.000015706572,0.0000122426145,0.000011396438,0.000015011442,0.000027945869,0.000034722885,0.000027083839,0.000023281515,0.00002045271,0.000020605768,0.000019431835,0.000019611562,0.000018879093,0.000019172512,0.000018570954,0.000019065921,0.00001906385,0.000020083617,0.000019240593,0.000019275836,0.000019428815,0.000020210655,0.000019217176,0.000019280029,0.000018283426,0.00001920677,0.000018150578,0.000018629526,0.000018279627,0.00001939418,0.000018269866,0.000018749422,0.00001804132,0.000019488956,0.000018643655,0.000019488996,0.000019356448,0.000020601487,0.000019227808,0.000019502642,0.000018665858,0.000019932497,0.000018779612,0.00001901575,0.000018825049,0.000019623272,0.000018541577,0.000018707147,0.000018068304,0.000019421015,0.000018405344,0.000018731103,0.000018691258,0.000019748717,0.000018714838,0.000019055178,0.000018436034,0.000019810721,0.000018505189,0.000018766917,0.000018517598,0.000019521362,0.000018152085,0.00001831063,0.000017775397,0.000019133533,0.000018079627,0.00001840961,0.000018383662,0.000019610345,0.000018425417,0.000018776622,0.000018163928,0.000019607673,0.000018308343,0.00001858752,0.000018308692,0.000019472907,0.000018055971,0.000018287088,0.000017749633,0.000019191006,0.000018142997,0.000018510837,0.00001843802,0.000019687246,0.000018484376,0.000018856654,0.00001821477,0.0000196526,0.000018330058,0.000018604935,0.000018301656,0.00001945837,0.000018049082,0.000018295845,0.000017764789,0.000019170318,0.000018100656,0.000018463112,0.000018399272,0.000019646455,0.000018454715,0.000018829698,0.000018213625,0.000019655075,0.000018340585,0.000018594808,0.000018303419,0.000019466908,0.000018062135,0.000018286095,0.000017754204,0.000019153433,0.000018096463,0.000018461475,0.000018418163,0.000019660174,0.000018472216,0.000018834098,0.00001821081,0.00001964844,0.000018345483,0.000018617287,0.00001832319,0.000019460133,0.000018052835,0.000018279487,0.000017754595,0.0000191618,0.000018105475,0.000018466333,0.000018413666,0.000019655712,0.000018467796,0.000018835535,0.000018205254,0.000019634335,0.000018323557,0.00001858401,0.000018292041,0.000019439212,0.000018036384,0.000018265024,0.000017739616,0.000019142804,0.000018091303,0.000018462672,0.000018412085,0.000019650353,0.000018445407,0.000018811123,0.000018184814,0.00001962784,0.000018316829,0.00001859619,0.000018307941,0.000019464904,0.000018054196,0.00001828871,0.000017754832,0.000019169916,0.00001812458,0.000018505718,0.00001845007,0.00001968721,0.000018496667,0.000018883431,0.000018231123,0.000019669289,0.000018358696,0.000018643052,0.000018328048,0.000019478719,0.000018058088,0.000018286286,0.00001774955,0.000019174266,0.00001810682,0.000018478559,0.000018416353,0.000019698835,0.000018590234,0.00001903068,0.000018375144,0.000019833631,0.000018417353,0.000018578785,0.00001813575,0.000019188443,0.000017737992,0.000017981753,0.000017441425,0.00001888952,0.000017877468,0.00001835845,0.000018152725,0.000019633568,0.000018465948,0.000019048002,0.000018478066,0.000019909643,0.000018702598,0.000019135596,0.000018699104,0.000019749472,0.000018415949,0.00001873732,0.000018403816,0.000019694628,0.000018926881,0.000019587525,0.000019568686,0.000020698413,0.00001973377,0.00002042359,0.000019899639,0.000021227903,0.00002014667,0.000020374684,0.000019799501,0.000020262067,0.00001926448,0.000019211166,0.000018637593,0.000019415053,0.00001845556,0.000018744257,0.000018543718,0.00001983802,0.000018890078,0.000019694948,0.00001899418,0.000020150244,0.00001877748,0.000019548692,0.0000187508,0.000020122496,0.000018824097,0.00001912246,0.000018039551,0.00001924065,0.000019232522,0.00002003388,0.0000197975,0.000020376569,0.000020264944,0.000021394433,0.000020732334,0.000021430065,0.000021899876,0.000024874284,0.000025327432,0.00001832064,0.000010999905,0.000013539358],[0.000015407206,0.000013263946,0.000010530616,0.000017059156,0.000028379172,0.000036392747,0.000028710347,0.000023854982,0.00002161922,0.000021274494,0.000020743744,0.000019946778,0.000020334755,0.000019808698,0.000020120962,0.000019672385,0.000020424233,0.000020449668,0.000020426141,0.000019630348,0.000020835876,0.000020912597,0.000020853988,0.000019797199,0.000020061621,0.000019793366,0.000019781835,0.00001881324,0.000019614947,0.000019703251,0.000020071957,0.000019112944,0.000019933677,0.000019941377,0.000020616973,0.000019791894,0.000020972013,0.000020699836,0.000020971054,0.000019922312,0.000020598243,0.000020464026,0.000020635443,0.000019447834,0.00002005816,0.00002017782,0.000020281224,0.00001939,0.000020172318,0.000020158817,0.000020548254,0.000019281224,0.000020266936,0.000020326339,0.000020638867,0.000019627614,0.00002049416,0.000020345307,0.00002051571,0.00001913211,0.000019932668,0.00002005531,0.000020186404,0.00001901827,0.000019923757,0.000019922349,0.000020338071,0.000018999706,0.000020166815,0.000020223573,0.000020549996,0.000019362227,0.000020329364,0.000020159798,0.000020452164,0.000018997262,0.000019842751,0.000020004632,0.000020172412,0.000018983352,0.000019928031,0.000019923167,0.000020414634,0.000019074723,0.000020261661,0.000020237734,0.000020608597,0.000019416922,0.000020381369,0.00002017807,0.000020475094,0.000019012285,0.00001984258,0.000020002915,0.000020166835,0.000018989074,0.000019934627,0.00001991196,0.000020374899,0.00001905385,0.000020239915,0.000020218096,0.000020581985,0.0000194132,0.00002038201,0.000020189138,0.000020485562,0.00001903344,0.00001985424,0.000020019634,0.00002015232,0.000018964081,0.000019898805,0.000019891671,0.000020349284,0.000019043915,0.000020233065,0.000020227142,0.000020590112,0.000019423793,0.000020380377,0.00002017938,0.000020475289,0.000019037141,0.00001985214,0.000020008525,0.000020148285,0.000018987716,0.000019921836,0.000019907517,0.000020366582,0.000019062958,0.000020245301,0.000020229052,0.000020595513,0.00001942735,0.000020382808,0.000020174357,0.000020461117,0.000019012557,0.000019826293,0.000019996565,0.000020135512,0.0000189607,0.000019901992,0.000019893168,0.000020354466,0.000019046367,0.000020240283,0.000020207206,0.00002057333,0.000019396288,0.000020365476,0.000020152129,0.00002045195,0.000019002588,0.000019829811,0.000020007456,0.000020156722,0.000018982755,0.000019921532,0.000019908124,0.000020378862,0.00001906372,0.000020252543,0.000020239684,0.000020612371,0.00001944952,0.000020404706,0.00002020395,0.00002048826,0.000019028812,0.000019844189,0.000020007628,0.000020164644,0.000018977995,0.000019911751,0.000019914694,0.000020375926,0.000019042425,0.000020251115,0.00002024864,0.000020661297,0.000019572512,0.00002046588,0.000020336014,0.000020450505,0.000018936902,0.000019556708,0.000019716557,0.000019818637,0.00001866025,0.000019550498,0.000019686891,0.000020165644,0.000018921646,0.000020099691,0.000020134263,0.000020710992,0.000019654906,0.000020662934,0.000020404977,0.000020559895,0.000019397656,0.000020330159,0.000020193374,0.000020328938,0.000019435392,0.000020321417,0.000020228048,0.000020437481,0.00001969198,0.000020922791,0.000020776153,0.000021203845,0.000020652156,0.000021536991,0.000021341959,0.000021169943,0.000020411324,0.000020601641,0.000020853848,0.000020614927,0.0000198985,0.000020311652,0.000020480229,0.00002025231,0.000019147295,0.000020250553,0.000020079671,0.00002081558,0.000020028474,0.000020967434,0.000020400037,0.000020259808,0.00001938876,0.000019796744,0.00002024536,0.000020163008,0.00001939625,0.000018930636,0.000019184254,0.000019381272,0.000019916744,0.000020016407,0.000020664706,0.000020884137,0.000021295098,0.000021166976,0.000021641396,0.000022979471,0.000024283052,0.000025553447,0.00001909886,0.000011396677,0.000013493291],[0.000015256083,0.000015648786,0.000011834208,0.000017221519,0.000029212082,0.00003439526,0.000027539814,0.000024391393,0.00002087908,0.000021097307,0.000019682217,0.000020109355,0.000018978086,0.000019724363,0.00001934508,0.000020196378,0.000019534677,0.000020474332,0.000019427016,0.000019761548,0.000019677995,0.000020797344,0.000019618352,0.000020060186,0.000018737572,0.000019727635,0.000018453025,0.000018675224,0.000018269291,0.00001954075,0.000018766828,0.000019591524,0.000018460278,0.000019889432,0.000019044024,0.000019910725,0.000019419644,0.000020706075,0.000019487248,0.000020237521,0.000019092122,0.00002034061,0.000018958983,0.00001907516,0.000018537954,0.000019540135,0.000018890112,0.000019596362,0.000018834728,0.000020085226,0.000018973615,0.000019131727,0.000018782477,0.000019734429,0.000019135157,0.00001974804,0.000019042262,0.000020247116,0.000018829967,0.000018840585,0.000018382558,0.000019556168,0.000018748833,0.000019260697,0.000018598656,0.0000198926,0.00001877449,0.000018948318,0.000018689012,0.000019740997,0.000018968223,0.000019484572,0.000018832912,0.000020093656,0.000018717335,0.000018739054,0.000018296352,0.000019554302,0.000018709181,0.000019245585,0.000018566474,0.000019893056,0.000018790755,0.000019016003,0.000018728568,0.000019782647,0.000019013682,0.00001956083,0.000018872126,0.000020134128,0.000018746097,0.000018766454,0.000018307313,0.000019565663,0.000018727478,0.000019258932,0.000018575382,0.000019881487,0.000018778626,0.000019014878,0.000018720908,0.000019776347,0.000018998675,0.000019550163,0.000018882205,0.000020151705,0.000018756702,0.000018766632,0.000018299492,0.000019546864,0.000018700404,0.00001922759,0.00001854913,0.000019852914,0.00001875622,0.000018990197,0.000018715498,0.000019769805,0.000019001012,0.000019553874,0.00001887416,0.000020140984,0.000018745812,0.000018765504,0.000018313616,0.000019561447,0.000018703775,0.000019240906,0.000018572176,0.000019876956,0.000018776478,0.000019018144,0.000018730962,0.000019783854,0.000019005887,0.000019556168,0.000018879038,0.0000201406,0.000018739502,0.00001875375,0.000018298411,0.000019545745,0.000018692988,0.000019210176,0.000018535691,0.00001984542,0.000018753875,0.000018986322,0.000018711376,0.00001976758,0.00001898004,0.0000195281,0.000018846982,0.000020108244,0.000018712732,0.000018733104,0.000018278004,0.000019549323,0.000018708575,0.000019245843,0.000018564171,0.000019881429,0.000018770927,0.000019001174,0.000018712537,0.00001977346,0.000019013265,0.000019583602,0.0000188997,0.000020179146,0.000018782603,0.000018785613,0.000018306422,0.00001956294,0.000018717568,0.000019243309,0.000018564791,0.000019887137,0.00001876783,0.00001899967,0.000018705274,0.000019792291,0.000019094034,0.00001972374,0.000019034309,0.000020318452,0.000018791847,0.000018693345,0.000018114593,0.000019342277,0.000018484923,0.00001893764,0.000018267392,0.00001970137,0.000018573894,0.000018958457,0.000018544231,0.000019938905,0.00001920558,0.000019954654,0.00001905616,0.000020489842,0.000019076015,0.000019536372,0.000018942952,0.00002035899,0.000019313871,0.000019907744,0.000019038813,0.000020249607,0.000019136034,0.000019654719,0.000019182351,0.000020381349,0.00001993303,0.0000209192,0.000020038447,0.000021360998,0.000019862859,0.000020227586,0.000019332485,0.000020564092,0.000019758852,0.000020301175,0.00001934161,0.000020571153,0.000019255793,0.000019456811,0.000018892077,0.000020073678,0.000019575797,0.00002045,0.00001931146,0.000020464084,0.0000188666,0.000019322788,0.000018321756,0.000019852612,0.000019005325,0.000019666455,0.000017898094,0.00001895855,0.000018485063,0.000019441251,0.000019168765,0.000020339583,0.000020564701,0.00002171901,0.000021494126,0.000022433918,0.000023600578,0.000025736159,0.000024942958,0.00001727908,0.000011428033,0.00001364495],[0.000015866393,0.000017352217,0.00001308324,0.000018975208,0.000032216903,0.000035830122,0.000031902215,0.000025219766,0.000022836553,0.000021807677,0.000021547981,0.000019900133,0.000020400017,0.00001973904,0.000020569172,0.000019876918,0.000021085922,0.000020723517,0.00002134078,0.000019759493,0.00002117089,0.00002078392,0.000021580123,0.000019856305,0.000020490623,0.000019514586,0.000019893396,0.000018567856,0.00001981743,0.000019577927,0.000020710655,0.000019283027,0.00002026974,0.000019529667,0.000020542786,0.000019392255,0.000021029993,0.000020518391,0.000021623922,0.000019940577,0.000020839992,0.000020007305,0.0000206469,0.000018898889,0.000019986861,0.000019723366,0.000020715159,0.000019500447,0.000020428557,0.000019790044,0.000020668944,0.000018983625,0.0000201657,0.000019769992,0.00002102502,0.00001956529,0.000020619726,0.000019954085,0.000020605983,0.000018639514,0.0000197738,0.000019557436,0.000020616206,0.000019209407,0.000020239142,0.000019618015,0.000020510663,0.000018795019,0.000020071133,0.000019693274,0.000020869305,0.000019345911,0.00002047402,0.000019800975,0.000020503641,0.000018519046,0.000019718495,0.000019512874,0.00002060901,0.000019160612,0.000020225772,0.00001956376,0.000020491854,0.000018832285,0.000020130674,0.000019705374,0.000020928557,0.000019411591,0.000020532425,0.00001983418,0.00002054112,0.000018551997,0.00001972867,0.00001953393,0.00002061774,0.000019180832,0.000020229649,0.000019555831,0.000020476344,0.00001882846,0.000020114727,0.000019687059,0.000020904243,0.000019399673,0.000020542413,0.000019830208,0.000020540161,0.000018546938,0.000019720752,0.000019525849,0.00002059457,0.000019162513,0.000020205356,0.00001954062,0.000020457333,0.000018819539,0.00002011509,0.000019692805,0.000020909347,0.000019404946,0.000020546528,0.000019828827,0.000020542138,0.000018553112,0.000019736895,0.000019535366,0.000020590467,0.000019168141,0.000020233296,0.000019560775,0.000020462972,0.000018840172,0.000020134685,0.000019701296,0.000020905,0.000019397361,0.000020532465,0.000019817806,0.000020527295,0.000018529681,0.000019702986,0.000019512761,0.00002057494,0.000019144813,0.000020190659,0.000019526518,0.000020446703,0.00001881324,0.000020105175,0.00001967957,0.00002089635,0.000019378833,0.00002051573,0.000019782608,0.000020501628,0.000018508084,0.000019697143,0.00001950785,0.000020599875,0.000019171433,0.00002022336,0.000019549809,0.00002046621,0.000018816272,0.000020108051,0.000019677713,0.000020911442,0.000019427573,0.000020565289,0.000019862877,0.000020571604,0.000018571007,0.00001972534,0.000019528194,0.000020610387,0.000019169696,0.000020214917,0.000019553761,0.00002047566,0.00001879373,0.000020091644,0.000019673058,0.000020979054,0.000019544943,0.000020670266,0.00002000637,0.000020574233,0.000018538343,0.000019526891,0.000019368837,0.000020363008,0.000018938652,0.00001992233,0.000019378518,0.000020382477,0.00001856874,0.000019983981,0.000019647952,0.000021218208,0.000019599445,0.000020773814,0.000020014288,0.00002065403,0.000019264848,0.000020415217,0.000020193836,0.000021006143,0.000019926681,0.000020543277,0.000019849906,0.000020343658,0.000019302142,0.000020378298,0.000020190562,0.000021432128,0.000020564406,0.000021461725,0.000020953,0.000021388883,0.000020235457,0.000020810698,0.000020737849,0.00002146418,0.000020369069,0.000020872112,0.000020160855,0.000020547332,0.00001912516,0.000020151801,0.000019646042,0.000020991843,0.000019726112,0.000020807125,0.000019950545,0.00002043569,0.00001910919,0.000019829187,0.000019846857,0.000020980655,0.000019596157,0.00001950279,0.00001878959,0.000019523706,0.000018947956,0.000019789628,0.000020229765,0.000020863075,0.000020791058,0.000020956519,0.000021477244,0.000024763916,0.00002475301,0.000024281431,0.000016138565,0.00001102369,0.000013178636],[0.00001583385,0.000017975666,0.000015797561,0.000022119233,0.000032009422,0.000031255844,0.000027031123,0.000023681852,0.000021116168,0.000020808038,0.000019552848,0.000019909377,0.000019058649,0.000019697332,0.000018945011,0.000019946701,0.000019756235,0.000020818617,0.000019546733,0.000019704115,0.00001960382,0.00002064546,0.000019620054,0.000019722538,0.000018835679,0.000019438174,0.000018518023,0.000018544797,0.00001822113,0.000019334198,0.000018564418,0.000019124138,0.00001858805,0.000019737288,0.000018911003,0.000019564935,0.000019383584,0.00002070647,0.000019566316,0.000019948186,0.00001921199,0.0000201281,0.000018895826,0.00001879432,0.00001861871,0.00001964767,0.00001903874,0.000019383251,0.000018859118,0.000019953552,0.000019001882,0.00001902315,0.000018896852,0.00001975938,0.000019213989,0.00001934914,0.000018930365,0.000019826219,0.000018852212,0.000018609675,0.000018516328,0.000019537209,0.000018807732,0.000019121895,0.000018620289,0.000019697989,0.00001873032,0.000018846677,0.000018768063,0.000019757987,0.000018997514,0.000019170171,0.000018793657,0.00001970947,0.00001871839,0.000018471952,0.00001842252,0.00001950772,0.000018739627,0.000019065066,0.00001857432,0.000019675123,0.000018713303,0.000018849318,0.000018766113,0.000019778572,0.000019038884,0.00001922616,0.000018838124,0.000019738645,0.000018740395,0.000018491199,0.000018440149,0.000019511683,0.000018754161,0.00001907194,0.000018579847,0.000019672889,0.00001869584,0.000018831422,0.000018745563,0.000019770841,0.000019012667,0.000019210362,0.000018835553,0.000019752146,0.0000187503,0.00001849919,0.000018437158,0.000019516372,0.000018735607,0.000019058576,0.000018565377,0.00001966578,0.000018692917,0.000018833129,0.000018749888,0.000019778628,0.0000190242,0.000019228506,0.000018842687,0.000019752184,0.000018744186,0.000018493722,0.000018441202,0.000019515628,0.000018729532,0.000019060393,0.000018582346,0.000019676267,0.000018696179,0.000018844736,0.000018766435,0.000019789723,0.000019017762,0.00001922163,0.000018829467,0.000019736273,0.000018721264,0.00001846445,0.00001841026,0.000019499183,0.000018724104,0.000019050181,0.000018557694,0.000019652396,0.000018677147,0.000018815428,0.000018728424,0.000019762378,0.000019007899,0.000019214445,0.000018812414,0.00001972265,0.00001870556,0.00001845329,0.000018398623,0.000019498215,0.000018736,0.00001907516,0.000018574265,0.000019677693,0.000018692826,0.000018824205,0.000018740342,0.000019762283,0.00001902979,0.000019249348,0.000018864263,0.000019769917,0.000018759385,0.000018507535,0.000018440587,0.000019512352,0.000018757417,0.000019073432,0.000018567323,0.000019663417,0.000018683613,0.000018816685,0.000018736304,0.000019769917,0.000019125799,0.000019373621,0.000018985887,0.000019907422,0.000018820489,0.000018472605,0.000018299126,0.000019315437,0.000018533534,0.000018827652,0.000018288187,0.000019460877,0.000018531078,0.000018722229,0.000018615034,0.0000199648,0.00001915409,0.000019690946,0.000019117557,0.000020162508,0.000019021752,0.00001922132,0.000019125962,0.000020430369,0.0000193829,0.000020056554,0.000019413237,0.000020289252,0.000019133806,0.000019639654,0.00001959567,0.000020683003,0.00002005529,0.000020867536,0.000020389669,0.000021220008,0.000019994104,0.000020029029,0.000019494144,0.000020419558,0.000019650895,0.000019998091,0.000019249166,0.000019971521,0.000018993112,0.000019062376,0.000018695342,0.000019633775,0.000019122079,0.000019691792,0.000019263342,0.000019974379,0.000019081492,0.00001912153,0.000018554438,0.000019584424,0.000018943945,0.00001923463,0.000018372917,0.000018850396,0.000019006957,0.00001961665,0.000019704583,0.000021020509,0.000020778016,0.000021685544,0.000021157792,0.000022423117,0.000023646873,0.000027092932,0.000024614383,0.00001655673,0.000010398964,0.000013374223],[0.00001616694,0.00001782517,0.000014620811,0.00002433909,0.000029986768,0.000029684432,0.000026447076,0.000023454468,0.000021763422,0.000021142563,0.000020951424,0.000020289719,0.000020920636,0.000020000494,0.000020322153,0.000019926756,0.000021009688,0.000020737178,0.000020873804,0.000019990312,0.000021002237,0.000021190544,0.000021068072,0.000019959718,0.000020435806,0.000020268522,0.000020558877,0.000019430074,0.000019978477,0.000020011674,0.000020210675,0.000019289206,0.000020369496,0.00002022448,0.000021000573,0.00002014642,0.000021229462,0.000021072114,0.000021312795,0.000020251036,0.000021048432,0.00002073605,0.000021008445,0.000019666604,0.000020325526,0.000020500964,0.000020569936,0.000019762245,0.00002059964,0.000020518566,0.000021008565,0.000019824687,0.000020683989,0.000020646328,0.000020870997,0.00001985977,0.000020563819,0.000020484684,0.000020989222,0.000019566503,0.000020356156,0.000020379173,0.000020508258,0.000019503907,0.000020351592,0.00002023013,0.000020725493,0.00001961622,0.000020606634,0.000020536596,0.000020748948,0.000019690908,0.000020459263,0.000020365302,0.000020827314,0.00001945388,0.000020311923,0.000020331865,0.000020482183,0.00001941322,0.000020319441,0.000020190331,0.000020702933,0.000019617099,0.000020616186,0.00002055282,0.000020801668,0.000019740997,0.000020504345,0.00002038652,0.000020846688,0.000019464087,0.000020314828,0.000020340243,0.000020491072,0.000019419107,0.000020327969,0.000020186231,0.000020669258,0.000019586852,0.000020593785,0.000020525966,0.000020773994,0.000019716803,0.000020505637,0.000020398189,0.000020865644,0.000019483252,0.000020321146,0.000020342162,0.000020482203,0.000019418552,0.00002032983,0.000020184036,0.000020664844,0.00001958913,0.000020597594,0.000020533795,0.000020790503,0.000019732923,0.000020519918,0.000020400465,0.000020859397,0.000019470455,0.000020321551,0.000020345211,0.000020460024,0.000019400839,0.000020334928,0.000020191583,0.000020661711,0.000019591822,0.00002061013,0.000020540221,0.000020785943,0.000019723704,0.000020509,0.000020384441,0.000020842894,0.000019455607,0.000020304331,0.000020330488,0.000020467987,0.000019402467,0.000020323994,0.000020175146,0.000020649635,0.0000195749,0.000020585716,0.000020514126,0.000020776351,0.000019720883,0.00002051123,0.000020372352,0.000020828347,0.000019433577,0.00002028935,0.000020321475,0.00002047521,0.000019413497,0.00002033815,0.00002018908,0.000020672553,0.000019586161,0.000020593452,0.000020541453,0.00002079903,0.000019754276,0.000020531661,0.000020411695,0.000020856372,0.00001946756,0.000020311632,0.000020337664,0.00002048818,0.00001943002,0.000020305222,0.0000201788,0.000020661357,0.000019582407,0.000020591568,0.000020545116,0.000020843507,0.000019869924,0.0000206272,0.0000205507,0.000020876292,0.00001946455,0.000020104446,0.00002016197,0.000020235784,0.000019281519,0.00001995947,0.000019959889,0.000020573194,0.000019520803,0.00002060286,0.000020607045,0.000020969313,0.000019835032,0.00002095772,0.000020671665,0.000021076232,0.000019892334,0.000021068356,0.000020861824,0.0000210389,0.000020181285,0.000021065101,0.000020559659,0.000020890633,0.000020231348,0.000021451004,0.000021289128,0.000021581689,0.00002109431,0.000022131706,0.000021900794,0.00002197014,0.000020839752,0.00002118327,0.000021181977,0.000021019427,0.000020188425,0.00002063259,0.000020428712,0.000020590838,0.000019787913,0.000020546588,0.000020376783,0.000020800062,0.000020055655,0.000021099902,0.000020928479,0.000021449796,0.00002035466,0.000020488162,0.000020603235,0.000020179456,0.000019924648,0.000019452806,0.00001991401,0.000020479938,0.000020625252,0.000020946209,0.000021582739,0.00002134601,0.000021685462,0.000021432088,0.000022004673,0.000024757162,0.000025195895,0.000024839484,0.000017202035,0.000010812794,0.000013217743],[0.000015658907,0.000015819027,0.00001476784,0.00002193522,0.000029426566,0.000028479566,0.000023808436,0.00002244494,0.00001977648,0.000020452027,0.000019572028,0.000020513537,0.000019144905,0.000019808851,0.000019063793,0.000019978894,0.000019327616,0.00002063078,0.000019440175,0.000020239626,0.00001968783,0.00002088153,0.000019683624,0.000019757044,0.00001904346,0.000020223939,0.000019607243,0.000020003507,0.000019258014,0.000020034033,0.000018869767,0.000019090574,0.000018504801,0.000019926796,0.000019278632,0.000020280722,0.000019551879,0.00002061475,0.00001952728,0.000019913043,0.000019209849,0.000020382671,0.000019508985,0.000019764695,0.000019097857,0.000020006788,0.000019074705,0.00001954023,0.000018829502,0.000020259266,0.00001936182,0.000020004958,0.000019327026,0.000020278265,0.000019450132,0.000019728952,0.000019176297,0.000020288286,0.00001965425,0.000019673847,0.000019146128,0.000019917372,0.000019044188,0.000019386134,0.000018645913,0.000020051924,0.00001915683,0.0000198377,0.000019228084,0.000020217132,0.000019285197,0.000019572324,0.000019029845,0.000020170952,0.000019497174,0.00001954994,0.000019102776,0.000019881334,0.000018991954,0.000019305531,0.000018586883,0.000020021542,0.00001915283,0.000019854526,0.000019240355,0.000020234935,0.000019327377,0.000019631134,0.00001908231,0.000020198555,0.00001951803,0.000019551208,0.00001909915,0.0000198722,0.00001900866,0.000019327525,0.000018603161,0.00002002521,0.000019137804,0.000019833593,0.000019210562,0.000020203679,0.000019289942,0.000019600213,0.000019059722,0.000020199132,0.000019522087,0.000019564766,0.000019106985,0.000019888881,0.000018999162,0.000019329904,0.00001860309,0.000020031914,0.000019135176,0.000019829433,0.000019199664,0.0000201984,0.000019283229,0.000019598996,0.000019056595,0.00002020339,0.00001951842,0.000019558202,0.00001910693,0.000019889374,0.000018981162,0.000019304298,0.000018595763,0.000020030633,0.000019134208,0.000019833766,0.000019214243,0.000020210617,0.000019285564,0.000019600326,0.000019059285,0.000020199615,0.000019510082,0.000019543155,0.000019093597,0.000019872368,0.000018981542,0.000019312434,0.000018588584,0.000020015776,0.000019121804,0.000019814803,0.000019191848,0.000020181187,0.00001926042,0.000019579793,0.000019041572,0.000020177627,0.000019479185,0.00001951317,0.000019069284,0.000019859372,0.00001898051,0.000019314626,0.000018590888,0.000020025782,0.000019135723,0.000019826899,0.000019211258,0.000020207977,0.000019312878,0.000019627934,0.000019086261,0.000020212005,0.00001952516,0.000019551766,0.000019105344,0.000019875459,0.000019009729,0.000019317262,0.000018585411,0.000020003983,0.000019111467,0.000019805244,0.000019204717,0.000020210984,0.000019401597,0.000019757648,0.00001923419,0.000020378882,0.000019655414,0.000019563386,0.000019019502,0.000019746778,0.00001886725,0.000019128314,0.000018366542,0.000019742334,0.000018855178,0.00001957535,0.000019085695,0.000020242773,0.000019266796,0.000019652058,0.000019010455,0.000020233663,0.000019387742,0.000019671052,0.000019160685,0.00002029024,0.000019344712,0.00001986316,0.000019061667,0.000020317251,0.000019566653,0.00002037956,0.00001980562,0.00002083077,0.00002013626,0.000020726955,0.00002025716,0.000021494885,0.000020866837,0.000021103926,0.000020011348,0.000020798594,0.000019852592,0.000020086702,0.000019057032,0.00002017984,0.000019443123,0.000020186846,0.00001941931,0.000020297071,0.000019608942,0.000019888881,0.000019495612,0.000020677993,0.000020556798,0.000021164149,0.00002032035,0.000021007525,0.000019787798,0.000019757515,0.000018868472,0.000019623722,0.00002032663,0.000020530468,0.00002035736,0.000020979796,0.000020962794,0.000021794993,0.000021003738,0.00002156344,0.00002301476,0.000025661704,0.000024090132,0.000016499262,0.000010627834,0.000013451393],[0.00001578625,0.0000143987945,0.000013960976,0.00002057341,0.000031652296,0.00003064343,0.000027213004,0.000022942291,0.000021282003,0.000020910444,0.000021175012,0.000020106574,0.000020545782,0.000019561912,0.000019940198,0.000019100498,0.000020379095,0.000020076608,0.000021293412,0.000019729592,0.000021022415,0.000020707812,0.00002100384,0.000019678182,0.000020286041,0.0000197298,0.000020833175,0.00001971451,0.000020768704,0.000020128176,0.00002046582,0.000018871622,0.000019858919,0.00001939344,0.000020751677,0.000019524543,0.000020942554,0.000020343465,0.000021013857,0.000019707686,0.000020463576,0.000020030518,0.000021080272,0.000019496894,0.000020632275,0.000020048235,0.000020698808,0.000019274441,0.000020156049,0.000019817826,0.000021015097,0.000019514771,0.000020645244,0.00002015749,0.000020822588,0.000019750527,0.000020457841,0.000020154741,0.00002128669,0.000019587673,0.000020544057,0.000019964456,0.00002066575,0.000019256106,0.000020083406,0.000019700976,0.000020855876,0.000019355728,0.000020496253,0.00002004944,0.000020714744,0.000019579924,0.000020327328,0.000020006579,0.000021129967,0.000019481062,0.000020484624,0.000019927802,0.00002063865,0.00001917851,0.000020045463,0.000019685389,0.000020843032,0.000019378704,0.000020518664,0.000020078465,0.000020768943,0.000019643157,0.000020388172,0.000020059653,0.000021162738,0.000019497676,0.000020470643,0.00001992406,0.000020642528,0.00001920122,0.000020057318,0.000019694966,0.00002082533,0.000019355784,0.000020472537,0.000020040225,0.00002072152,0.000019615563,0.000020360136,0.000020043817,0.000021153615,0.00001950201,0.000020496525,0.000019937497,0.000020639163,0.000019181674,0.000020061412,0.000019687961,0.000020808475,0.00001934211,0.000020454056,0.000020020969,0.000020706528,0.000019605484,0.000020358057,0.000020049114,0.000021160396,0.000019503701,0.000020503856,0.000019945333,0.00002063389,0.000019173005,0.000020053627,0.000019695153,0.000020814985,0.000019351057,0.000020462874,0.000020026984,0.000020703783,0.00001960612,0.000020355108,0.000020046456,0.000021145064,0.0000194863,0.000020480602,0.00001993282,0.000020637863,0.000019174468,0.000020052403,0.00001967471,0.0000207933,0.00001933488,0.000020451695,0.000020009707,0.000020686375,0.000019582052,0.00002033776,0.000020020358,0.000021115524,0.000019456867,0.000020459167,0.000019914067,0.000020630503,0.000019168216,0.00002005506,0.000019677767,0.000020809526,0.000019346999,0.000020468884,0.00002004137,0.000020738858,0.000019631716,0.000020374257,0.000020048043,0.000021148433,0.000019501304,0.000020475309,0.000019918474,0.000020634045,0.000019186578,0.000020025553,0.000019657382,0.000020799864,0.000019312178,0.000020448284,0.000020042193,0.000020797046,0.000019745272,0.000020489118,0.000020176338,0.000021237987,0.000019589355,0.000020370604,0.00001979616,0.000020383408,0.000019010598,0.000019779309,0.000019305438,0.000020514968,0.00001893116,0.000020245514,0.000019861967,0.000020717194,0.000019396732,0.000020368467,0.000019893701,0.000021152406,0.000019392477,0.000020517688,0.00001996901,0.000020634125,0.00001936398,0.000020249048,0.000019773763,0.000020801926,0.000019685933,0.00002076827,0.000020343969,0.000021135973,0.000020502175,0.000021250224,0.000021092239,0.000022704548,0.000021109645,0.000021478556,0.000020687816,0.000021214,0.000019959813,0.000020271924,0.0000197159,0.000020720652,0.00001955684,0.000020469706,0.000019901443,0.000020582162,0.000019835808,0.000020483414,0.000020448186,0.000022092967,0.000021025424,0.000021720025,0.000021157972,0.000021158154,0.00001981998,0.000019559002,0.000019451969,0.00002041294,0.000020039593,0.000020647056,0.000020202291,0.000020563444,0.00002045152,0.000020009671,0.00002036365,0.000022871121,0.00002400844,0.00002580832,0.000016569571,0.000011073201,0.000012918406],[0.00001638775,0.000013951604,0.000014549333,0.00002080903,0.000032874745,0.00003079233,0.000025117231,0.000022271464,0.000019670506,0.000020161144,0.000019072613,0.000019809777,0.000018986937,0.000019474783,0.000018337576,0.000019002588,0.000018731496,0.00002014888,0.000019116223,0.00001969164,0.000019572362,0.000020797841,0.000019623927,0.000019861209,0.00001880757,0.00001968798,0.000018870523,0.000019227553,0.00001903698,0.000019742447,0.000018726105,0.000018818551,0.000018173077,0.000019486319,0.000018832034,0.000019584517,0.000019449391,0.000020556014,0.000019378464,0.000019696692,0.000018923993,0.000019949232,0.000019056359,0.000019178418,0.000019078252,0.0000198179,0.000018948536,0.000019217745,0.00001873625,0.000020137259,0.000019191208,0.000019743879,0.000019449391,0.000020487127,0.000019543937,0.000019968627,0.000019373882,0.000020333902,0.000019450263,0.000019397989,0.00001931017,0.000019878284,0.000019001718,0.000019274607,0.00001877893,0.000020040836,0.000019080164,0.000019607372,0.000019382012,0.000020449552,0.000019443103,0.000019862839,0.000019267127,0.000020266009,0.000019366937,0.000019356023,0.000019256344,0.00001986873,0.000018952944,0.000019224564,0.000018747312,0.000020031453,0.000019089426,0.000019640309,0.000019412757,0.000020485799,0.000019499053,0.000019915036,0.00001931866,0.00002029711,0.000019399838,0.000019364923,0.000019259007,0.000019861001,0.000018954355,0.000019227315,0.000018761424,0.000020030842,0.000019074705,0.00001961592,0.00001939266,0.00002046151,0.000019464813,0.000019879533,0.000019290292,0.000020281032,0.00001938303,0.000019349858,0.000019254103,0.000019855699,0.000018938706,0.00001920851,0.000018752857,0.000020030671,0.000019064213,0.000019608888,0.000019376763,0.000020454172,0.000019451618,0.000019874473,0.000019282124,0.000020286234,0.00001939048,0.000019356836,0.00001926439,0.000019867783,0.000018942626,0.00001920254,0.000018753964,0.000020037245,0.00001906912,0.00001960973,0.000019380239,0.000020454954,0.000019452806,0.000019876557,0.000019285546,0.000020282443,0.000019374529,0.000019334955,0.000019244539,0.000019853333,0.000018945751,0.000019212686,0.000018751622,0.000020024921,0.000019058612,0.00001959823,0.00001937035,0.000020442101,0.0000194358,0.000019855433,0.000019262185,0.00002026651,0.000019362189,0.000019326235,0.000019229092,0.00001984678,0.000018941633,0.000019215398,0.00001874363,0.000020023224,0.000019064757,0.000019610647,0.000019383435,0.000020455147,0.000019476733,0.000019902904,0.000019308549,0.0000202896,0.000019392459,0.000019356134,0.000019253994,0.000019848467,0.000018942193,0.000019206678,0.000018727622,0.000020000341,0.000019043788,0.00001957617,0.000019375415,0.000020468065,0.000019576974,0.000020016198,0.000019414349,0.000020405525,0.00001946041,0.000019352701,0.000019150382,0.00001968036,0.000018746616,0.000019002371,0.000018448925,0.000019705787,0.000018733874,0.000019186175,0.000018975696,0.000020194357,0.000019252782,0.000019645368,0.00001909742,0.000020163028,0.00001920701,0.000019146548,0.000018944145,0.00001972438,0.000018683239,0.000019062085,0.000018803912,0.000019926965,0.000019116535,0.000019703983,0.000019671614,0.000020664627,0.000019983678,0.000020358873,0.000019929741,0.000020914553,0.000020318916,0.000020281052,0.000019775347,0.000020087831,0.00001928163,0.000019381718,0.000018679017,0.000019649995,0.0000189425,0.000019556186,0.000019245292,0.000020319228,0.00001970558,0.000020105137,0.000019420146,0.000020414302,0.000019799785,0.00002043335,0.000020010224,0.00002074064,0.000020003623,0.00001977348,0.000018747634,0.000019270361,0.000019576712,0.000019897096,0.000020044869,0.000020305977,0.000020412472,0.000021272284,0.000020621672,0.000021366865,0.000021949721,0.000025299767,0.000025310095,0.00001755962,0.000010686018,0.000013418887],[0.000016113652,0.000014134325,0.000012563679,0.00002199085,0.000033362096,0.00003217229,0.000027148746,0.000023398905,0.000021494949,0.00002105088,0.000020643236,0.000020148304,0.000020716325,0.000019954352,0.000020151743,0.000019711857,0.00002052387,0.000020370662,0.00002062722,0.000019811325,0.000021132204,0.000021198388,0.000021216325,0.000020309308,0.000020429277,0.000020225463,0.000020190948,0.00001933787,0.0000200503,0.000020228934,0.000020484507,0.000019459187,0.000019968704,0.000020140562,0.000020778849,0.000019988729,0.000021138956,0.000020847147,0.00002106291,0.000020296742,0.000020621337,0.000020649202,0.000020779502,0.00001981501,0.000020339525,0.00002044251,0.000020569445,0.000019843565,0.000020590642,0.00002084808,0.00002119489,0.000020131307,0.000021137605,0.000020906298,0.000021202128,0.000020540043,0.000021080574,0.000020952162,0.000020984999,0.000019891082,0.000020472557,0.000020477457,0.000020704118,0.000019812156,0.000020598578,0.000020690895,0.000020980055,0.000019915491,0.00002098916,0.00002082088,0.000021199377,0.000020391031,0.000020982636,0.000020823423,0.000020926063,0.000019821797,0.000020456866,0.000020464551,0.000020703053,0.000019781157,0.000020576725,0.000020695552,0.000020984897,0.00001995104,0.000021010228,0.000020836196,0.000021230839,0.000020438476,0.000021014737,0.000020859436,0.000020952064,0.000019847406,0.000020467714,0.000020464358,0.000020690577,0.000019771953,0.000020582771,0.000020695512,0.000020964437,0.000019940862,0.000020994767,0.000020824316,0.000021189837,0.000020412803,0.00002098756,0.00002084995,0.00002093902,0.00001982845,0.000020441616,0.000020458228,0.000020679196,0.000019756215,0.000020581456,0.000020685193,0.000020952144,0.000019937535,0.000020994486,0.000020821735,0.00002117616,0.00002040564,0.000020979256,0.000020855061,0.000020953561,0.000019840536,0.00002044885,0.000020478961,0.00002068397,0.000019755293,0.000020582063,0.00002070094,0.000020954041,0.000019934418,0.000020987738,0.000020821039,0.000021178445,0.000020404823,0.000020974854,0.000020844163,0.000020935406,0.000019820813,0.000020435982,0.00002046502,0.000020685073,0.000019762641,0.000020590564,0.00002068614,0.000020953263,0.000019929608,0.000020981495,0.000020810756,0.00002117079,0.000020388678,0.000020960237,0.000020828666,0.000020926303,0.000019812687,0.000020429492,0.000020458248,0.000020686515,0.00001976558,0.000020580786,0.000020680696,0.000020958918,0.000019934969,0.000020990623,0.000020814707,0.000021198872,0.000020435768,0.00002100436,0.000020849473,0.00002093327,0.000019833178,0.000020444011,0.000020454523,0.000020674799,0.000019752993,0.000020543923,0.000020666756,0.000020937801,0.0000199112,0.000020978054,0.000020828964,0.000021253993,0.000020522579,0.000021089281,0.000020922753,0.000020888918,0.000019774441,0.00002023835,0.000020297264,0.00002045546,0.000019553352,0.000020209345,0.000020314481,0.000020685804,0.000019520932,0.000020586951,0.00002060734,0.000021072998,0.000020211195,0.000020936262,0.000020676514,0.000020817188,0.000019619343,0.000020400503,0.00002033615,0.00002042741,0.000019723855,0.00002061418,0.000020480054,0.00002066794,0.000019895371,0.000021026966,0.000020939538,0.000021202773,0.000020962496,0.000021382704,0.000021378974,0.000021305092,0.00002048652,0.000020670226,0.000020719604,0.00002074416,0.00001994811,0.00002024841,0.000020458854,0.00002047652,0.000019667768,0.000020688745,0.000020647805,0.000021122169,0.000020519605,0.000020861902,0.000020491228,0.00002066045,0.000019850757,0.000020218116,0.00002072842,0.000020612235,0.000019925408,0.00001901934,0.000019256564,0.00001912133,0.000019746532,0.000019711613,0.000020564681,0.000020820087,0.000021239526,0.000021028349,0.000021554888,0.000023200839,0.00002407245,0.00002537305,0.000018273979,0.00001098351,0.000013327941],[0.000015758198,0.000014425019,0.000012704357,0.000018931467,0.000030434325,0.00003218724,0.00002630787,0.000024019042,0.000020747722,0.000020982616,0.000019492489,0.000020065621,0.000018849516,0.000019648947,0.00001912153,0.000020094996,0.000019341667,0.000020428364,0.000019179663,0.000019828054,0.000019453102,0.000020950045,0.0000197162,0.000020532485,0.000019086443,0.000020298716,0.000018985018,0.000019404983,0.00001897347,0.000020299007,0.000019480076,0.000020021256,0.000018664701,0.000019980895,0.00001916423,0.000019982992,0.000019533596,0.000020803513,0.000019783383,0.00002051483,0.00001926044,0.00002051477,0.000019373474,0.000019729838,0.000019030282,0.000020047411,0.00001931962,0.000019899753,0.000018999906,0.000020418955,0.000019313116,0.00001991306,0.000019277491,0.000020518331,0.000019605615,0.000020582358,0.00001955421,0.000020878104,0.000019332336,0.000019602268,0.000019015804,0.000020054908,0.000019170298,0.000019735106,0.000018907884,0.000020322037,0.000019078161,0.00001964728,0.000019037523,0.00002040068,0.000019441659,0.000020383564,0.000019329626,0.00002070862,0.000019168709,0.00001951639,0.000018949584,0.000020078523,0.000019136818,0.00001970872,0.00001887776,0.000020327407,0.00001909478,0.000019696863,0.000019079216,0.000020443056,0.00001950132,0.0000204523,0.000019391053,0.000020763358,0.000019221521,0.000019558518,0.000018973651,0.000020070655,0.000019127403,0.000019686571,0.000018877812,0.000020314053,0.000019086587,0.000019683437,0.00001907376,0.000020426434,0.000019481637,0.000020418158,0.000019369152,0.000020742656,0.000019204646,0.000019530933,0.00001894597,0.000020052212,0.000019107732,0.000019665686,0.000018856996,0.000020294498,0.000019066194,0.000019667881,0.00001906423,0.000020417554,0.000019463178,0.000020394786,0.000019352314,0.00002073781,0.000019214885,0.000019544328,0.000018955205,0.000020069774,0.000019119816,0.000019667337,0.000018862967,0.000020310606,0.000019078343,0.000019670077,0.00001906581,0.000020419247,0.000019468876,0.00002039426,0.000019344103,0.000020722193,0.000019200415,0.000019526053,0.000018945462,0.000020054258,0.000019115805,0.000019673245,0.000018861654,0.00002029891,0.000019068868,0.000019663605,0.000019059267,0.00002041329,0.000019452898,0.000020383079,0.000019328243,0.000020702659,0.000019176498,0.000019516727,0.000018937695,0.000020058274,0.000019112651,0.000019680996,0.000018858489,0.000020298796,0.000019071449,0.000019674633,0.000019074887,0.00002043569,0.000019481135,0.000020434032,0.000019372903,0.000020743171,0.000019204315,0.000019544534,0.000018961658,0.000020072703,0.00001911947,0.000019668874,0.000018853525,0.000020294903,0.000019058576,0.000019649584,0.00001906385,0.000020445863,0.000019557829,0.000020551466,0.000019495372,0.000020913096,0.000019232815,0.000019496914,0.000018848132,0.00002001637,0.000019086443,0.000019578356,0.000018701796,0.00002012125,0.000018848832,0.000019293824,0.000018775816,0.000020206839,0.000019402152,0.00002031454,0.0000192783,0.000020601623,0.000019096346,0.000019538607,0.000018919915,0.000020242096,0.00001917562,0.000019859714,0.000019032967,0.000020336343,0.00001919743,0.000019681785,0.000019190145,0.000020457977,0.000020040588,0.00002112376,0.000020145479,0.000021401373,0.000019894496,0.000020233372,0.000019441974,0.000020523908,0.000019916231,0.000020245088,0.000019071067,0.000020288518,0.000019205672,0.000019702404,0.000019054924,0.00002046338,0.000019916404,0.000020924428,0.000019545652,0.0000206833,0.000019104033,0.000019847084,0.00001894915,0.000020535537,0.000019961315,0.000020385996,0.000018607632,0.000019232595,0.000018962002,0.000019266263,0.00001914527,0.000019974113,0.000020637528,0.000021626707,0.000021427184,0.000022195176,0.000023620392,0.000025226598,0.000024063887,0.000016548254,0.000011067647,0.000013457307],[0.000015646876,0.000014220614,0.0000115926405,0.000017176037,0.000030295245,0.00003497259,0.000030746938,0.000025327818,0.000022803171,0.000021915399,0.000021459065,0.000019838777,0.000020355437,0.000019613788,0.000020483238,0.000019566372,0.000020871714,0.000020450292,0.000021080516,0.00001938682,0.000020849431,0.000020519701,0.000021531036,0.000019973084,0.000020673853,0.000019792593,0.000020335938,0.00001929055,0.00002049596,0.00002042106,0.000021535328,0.000020031914,0.000020541278,0.000019763942,0.000020607733,0.000019554695,0.000021129585,0.000020748314,0.000021925329,0.000020331632,0.000021035088,0.000020449921,0.000021136091,0.000019703362,0.000020561347,0.000020350468,0.000021234624,0.000019924857,0.00002052299,0.000019961564,0.000020720494,0.000019254123,0.000020610563,0.000020201309,0.00002130548,0.000020073468,0.000021078504,0.000020415742,0.000020819152,0.000019324447,0.000020319827,0.000020110985,0.00002069421,0.000019447889,0.000020216285,0.00001971936,0.000020368176,0.000018817958,0.000020245261,0.00001989854,0.000021059677,0.00001980362,0.000020823223,0.000020137642,0.000020611016,0.000019171415,0.000020247193,0.000020083731,0.000020695688,0.000019413608,0.00002023812,0.000019691359,0.000020371768,0.000018887466,0.000020299549,0.000019946056,0.00002112376,0.00001988543,0.000020914093,0.000020222764,0.000020682748,0.00001922856,0.000020277028,0.000020094709,0.00002066524,0.000019390996,0.00002021532,0.000019679888,0.00002035437,0.000018876553,0.00002028074,0.00001993862,0.000021095257,0.000019856436,0.000020872432,0.00002019372,0.000020659269,0.00001920536,0.000020256928,0.000020071688,0.000020648218,0.00001937148,0.000020197649,0.000019649546,0.000020324693,0.000018853183,0.000020268038,0.00001992957,0.000021083046,0.000019832214,0.000020842337,0.0000201845,0.000020673833,0.000019227791,0.000020272968,0.00002008852,0.000020669731,0.000019383326,0.00002021081,0.000019668389,0.000020341018,0.000018860736,0.000020267207,0.000019927746,0.0000210736,0.00001983382,0.00002083244,0.000020165528,0.000020647272,0.000019208272,0.000020255595,0.000020076512,0.000020666519,0.000019387078,0.000020214473,0.000019652582,0.000020330159,0.000018850864,0.000020265177,0.000019926281,0.000021067652,0.000019820698,0.000020825528,0.000020148169,0.000020624071,0.000019189505,0.000020250805,0.000020076473,0.000020664924,0.000019390387,0.000020211657,0.000019651907,0.000020328802,0.000018860215,0.000020285654,0.000019942632,0.000021104592,0.000019868901,0.000020887186,0.000020192661,0.00002066443,0.000019220239,0.000020267342,0.000020088768,0.000020655269,0.000019378298,0.000020190831,0.000019664112,0.00002031599,0.000018836343,0.000020265583,0.000019944744,0.000021173939,0.000019967028,0.00002103208,0.000020345404,0.000020743686,0.000019219833,0.000020135876,0.000020020969,0.000020554839,0.000019337462,0.000020012094,0.000019516838,0.000020121095,0.00001850646,0.000019959356,0.000019806357,0.000021133736,0.000019797764,0.000020837248,0.000020166739,0.000020607715,0.000019349765,0.000020465295,0.000020324615,0.000020885553,0.000019772198,0.000020459674,0.000019871497,0.000020218751,0.000019196168,0.000020254436,0.000020228028,0.000021479374,0.000020851461,0.00002165845,0.000021279851,0.00002161116,0.000020512189,0.000020930494,0.000020904361,0.000021563586,0.00002045308,0.000020582613,0.000019843092,0.000020321262,0.000019000649,0.000020077488,0.000019800143,0.000021120015,0.0000204508,0.000021027547,0.000020252368,0.000020439704,0.000019666755,0.000020161317,0.000020636722,0.000021511867,0.000020461957,0.000019918987,0.000019242061,0.000019625499,0.00001891057,0.000019495501,0.000019907156,0.00002065854,0.000020718775,0.000020905181,0.000021465225,0.000024766798,0.000024373023,0.000023569719,0.000015795376,0.00001075907,0.000012876489],[0.000015839316,0.000013447686,0.0000118230855,0.00001613107,0.000029819092,0.000032956483,0.000027869964,0.000024276429,0.0000214855,0.000020819014,0.000019388075,0.000019360084,0.000018706094,0.000019115641,0.0000185066,0.000019182442,0.000019288655,0.000020215262,0.000019014135,0.000019160796,0.000019105528,0.00002038205,0.000019422423,0.000019957928,0.000019055324,0.000019954541,0.000018785844,0.000019309324,0.00001891279,0.000020241518,0.000019502604,0.00001995066,0.000019284773,0.000020065889,0.000019153524,0.000019725641,0.000019590121,0.000020769716,0.000019940559,0.00002025716,0.000019798312,0.000020724603,0.000019639205,0.00001982102,0.00001937414,0.000020153608,0.000019522442,0.000019612478,0.00001925089,0.000020068148,0.000019002353,0.000019316412,0.000019194245,0.000020447524,0.000019617117,0.000020368117,0.000019825538,0.000020903346,0.000019355284,0.000019575667,0.000019331193,0.000020316475,0.000019168527,0.000019341373,0.000018913457,0.00001991496,0.000018663668,0.000018975787,0.000018934426,0.000020379424,0.000019386893,0.00002020919,0.000019559076,0.000020715219,0.000019148501,0.00001947493,0.000019221172,0.000020342903,0.000019136089,0.000019387151,0.000018916253,0.000019946836,0.000018702991,0.000019068339,0.000019008334,0.00002045669,0.000019460598,0.000020292136,0.000019643496,0.00002078977,0.000019215362,0.000019518531,0.000019265986,0.000020348993,0.00001913337,0.000019362504,0.000018902781,0.000019920679,0.000018682134,0.000019043151,0.000019003586,0.000020434501,0.000019434003,0.0000202481,0.000019615602,0.000020753836,0.000019183979,0.000019477493,0.000019231293,0.000020313493,0.00001910263,0.000019334788,0.000018878749,0.000019892334,0.00001865116,0.000019014007,0.00001898205,0.000020418584,0.000019418645,0.000020225096,0.000019593672,0.00002074331,0.000019195179,0.00001949751,0.0000192454,0.000020329888,0.000019118266,0.000019350948,0.000018890709,0.000019900568,0.000018659628,0.00001901747,0.000018983315,0.000020417514,0.000019414441,0.000020223786,0.000019588233,0.000020726955,0.000019175455,0.000019483066,0.000019239364,0.00002032543,0.000019117682,0.000019353236,0.000018890365,0.000019892468,0.000018650537,0.000019011144,0.000018978211,0.000020418702,0.0000194075,0.00002021696,0.000019576768,0.00002071921,0.000019155259,0.000019471328,0.000019228964,0.000020331012,0.00001911947,0.000019368135,0.000018892906,0.000019904992,0.000018658862,0.000019027051,0.0000189915,0.000020445941,0.000019447629,0.000020277434,0.000019623367,0.000020768843,0.000019202758,0.000019517862,0.000019255058,0.000020345211,0.000019127989,0.000019355395,0.00001888988,0.000019912624,0.000018660465,0.000019016747,0.000018995413,0.000020474117,0.00001954444,0.000020402702,0.000019749132,0.000020928917,0.000019270434,0.000019477047,0.000019144467,0.000020183477,0.000019028339,0.000019185662,0.000018729943,0.000019699868,0.000018540482,0.000018782799,0.000018829052,0.00002032254,0.000019467874,0.000020165471,0.000019611656,0.000020674503,0.000019247384,0.000019631527,0.000019509227,0.00002062118,0.000019381292,0.000019689669,0.00001931763,0.00002014375,0.000019039031,0.00001938728,0.00001948091,0.000020723834,0.000020222897,0.000021202977,0.000020905958,0.000021788032,0.000020377325,0.000020397158,0.000019853844,0.000020513009,0.000019806206,0.00001973298,0.000019149067,0.000019639225,0.000018723405,0.000019103285,0.00001890976,0.000020465137,0.00001992214,0.000021362097,0.000020345171,0.000021186806,0.00001961143,0.000020391264,0.000019533745,0.000020827712,0.000020014824,0.000020333127,0.00001929018,0.000019469564,0.00001977184,0.000019802712,0.00001982775,0.00002067912,0.000020626923,0.000021399268,0.00002077536,0.000022082771,0.000023514622,0.000026366417,0.00002449615,0.00001661283,0.000010276304,0.000013092652],[0.000015485926,0.000012959446,0.000010072346,0.000015996919,0.000027664873,0.000034033837,0.000028278293,0.0000248698,0.000022372751,0.00002147579,0.000020634458,0.000019939227,0.000020307836,0.000019915758,0.000020106,0.000019701429,0.000020603331,0.000020608813,0.000020491309,0.000019615509,0.000020766685,0.000020887685,0.000021019307,0.000019972284,0.000020779798,0.000020445574,0.000020745527,0.000019739378,0.000020368312,0.000020575744,0.000020725078,0.00001996027,0.000020688663,0.00002061194,0.000021115944,0.00002027492,0.000021270012,0.000021160678,0.00002132308,0.000020388503,0.00002128454,0.000021167398,0.00002169295,0.000020534813,0.000020845138,0.000020765892,0.000020518803,0.000019830775,0.000020527588,0.00002071354,0.000021112222,0.000019846744,0.00002086228,0.000020883102,0.000021157228,0.00002026309,0.000021396289,0.00002101081,0.000021331563,0.000019919404,0.000020821039,0.00002079211,0.000020612824,0.000019482268,0.000020253083,0.000020332407,0.000020727628,0.000019393032,0.000020817564,0.000020734984,0.000021180342,0.000020089248,0.000021259062,0.000020757814,0.00002115989,0.000019792158,0.00002079796,0.000020776371,0.00002066916,0.00001947926,0.000020321591,0.000020330624,0.000020768468,0.000019505394,0.000020886608,0.000020773756,0.000021228956,0.00002015403,0.000021332618,0.000020817544,0.000021213695,0.000019837473,0.00002082773,0.000020798574,0.000020667465,0.000019470064,0.000020310645,0.00002031454,0.000020729407,0.000019482399,0.000020863774,0.000020753854,0.000021191758,0.000020120518,0.000021294347,0.000020788957,0.00002117606,0.00001979431,0.000020784377,0.000020758347,0.000020628555,0.00001944316,0.000020282114,0.00002028695,0.000020698473,0.000019463976,0.000020844363,0.000020738978,0.000021173475,0.000020110027,0.000021282429,0.000020788164,0.000021185007,0.00001981344,0.000020792742,0.000020768091,0.000020638534,0.000019452618,0.000020292968,0.000020288711,0.000020698235,0.000019463474,0.00002084311,0.000020734806,0.000021164129,0.000020104542,0.00002127344,0.000020770707,0.000021164371,0.000019801333,0.000020799389,0.000020773974,0.00002064308,0.000019456182,0.000020293453,0.000020284939,0.000020701294,0.000019459112,0.000020839812,0.000020727075,0.000021162132,0.000020098101,0.00002126701,0.000020754745,0.000021149503,0.000019786421,0.000020791871,0.000020773597,0.000020648415,0.00001946342,0.000020304118,0.000020291633,0.000020712077,0.000019472312,0.000020861407,0.00002075447,0.00002120427,0.000020139985,0.000021315802,0.000020798892,0.000021199196,0.00001982741,0.000020808118,0.000020789334,0.000020663525,0.000019472609,0.00002028403,0.000020307449,0.00002070872,0.000019452304,0.000020863197,0.000020770764,0.000021282023,0.00002025374,0.000021415315,0.000020950225,0.000021227457,0.000019755103,0.000020563091,0.000020576334,0.000020328685,0.000019281519,0.000019890647,0.000020051179,0.000020478024,0.000019285031,0.00002059406,0.000020727906,0.000021209347,0.000020052614,0.000021317814,0.000020857826,0.000021175374,0.000020062082,0.000021345888,0.000021020109,0.00002090205,0.000019850264,0.000020807382,0.000020508804,0.000020860709,0.000020142674,0.000021344036,0.00002124536,0.000021577696,0.000021177415,0.00002243501,0.000022157046,0.00002208233,0.000021095193,0.000021307165,0.00002132662,0.000020764983,0.000020028188,0.000020192238,0.000020317619,0.00002041656,0.000019651627,0.00002087044,0.00002078543,0.00002162186,0.000021030215,0.000022187178,0.000021264048,0.000021482407,0.000020777956,0.000021185757,0.000021202552,0.000020799407,0.000020421487,0.000019851514,0.000020176396,0.000020623756,0.000020790563,0.00002071595,0.00002131334,0.000020990321,0.000021256445,0.0000211586,0.000021447546,0.00002408331,0.00002471046,0.00002534652,0.000017484874,0.0000107926535,0.000013016224],[0.000014942641,0.000011986021,0.00001041248,0.000013836052,0.000025390818,0.000033221193,0.000026301446,0.000024082827,0.000021077056,0.00002091908,0.000019670731,0.000019987376,0.000018972403,0.000019445162,0.000019216206,0.000019812232,0.000019564974,0.000020537203,0.000019404335,0.000019887591,0.00001949684,0.000020604355,0.000019373843,0.000019615863,0.000018819503,0.00002013338,0.000019087734,0.000019882984,0.000019081619,0.000020320624,0.000018997189,0.000019425703,0.00001880142,0.000020157624,0.00001935462,0.000020226176,0.00001970964,0.000020692434,0.000019434263,0.000019791309,0.000019219908,0.000020610996,0.000019772782,0.000020235842,0.000019555104,0.000020087811,0.00001885642,0.000019086714,0.000018723122,0.000020135858,0.000019213165,0.000019728877,0.00001924188,0.000020259651,0.000019019939,0.000019622525,0.000019040102,0.000020433838,0.000019197267,0.000019620447,0.000019137402,0.000020092984,0.00001871432,0.000018826107,0.000018311714,0.000019680585,0.000018656994,0.000019207795,0.0000189425,0.000020139563,0.00001888815,0.000019512316,0.0000187907,0.000020229012,0.000018939882,0.000019444495,0.000018995159,0.00002006539,0.000018661567,0.000018832141,0.000018284141,0.000019721108,0.000018693112,0.000019313928,0.000018996301,0.000020199306,0.000018940314,0.000019583116,0.000018864801,0.000020302434,0.000019001156,0.000019489906,0.000019027468,0.000020073181,0.000018677021,0.000018841502,0.000018290577,0.000019699042,0.000018672392,0.000019284258,0.00001897948,0.000020170568,0.000018921502,0.000019553034,0.000018837081,0.000020264657,0.000018970033,0.000019440324,0.000018991665,0.000020038944,0.000018647692,0.000018810117,0.000018266905,0.000019671952,0.000018650964,0.000019260955,0.000018968567,0.000020155838,0.000018904007,0.00001953339,0.00001882837,0.000020257043,0.0000189749,0.00001945184,0.000018995866,0.000020045214,0.000018650466,0.000018814479,0.000018268907,0.00001967362,0.00001864296,0.00001925313,0.000018963612,0.00002015063,0.00001889952,0.000019528976,0.000018813635,0.00002024366,0.000018958368,0.00001944036,0.000019002551,0.000020053778,0.000018655252,0.000018816163,0.000018272967,0.000019677336,0.000018649222,0.000019254123,0.000018955927,0.00002013814,0.000018883647,0.0000195144,0.000018794231,0.000020219271,0.000018932027,0.000019419089,0.000018984203,0.000020043359,0.000018646786,0.000018812001,0.0000182668,0.000019682235,0.000018657314,0.000019274954,0.000018974792,0.000020170663,0.000018908948,0.000019549865,0.000018830506,0.000020268482,0.00001897832,0.000019470734,0.000019007608,0.000020060646,0.000018669774,0.000018824527,0.00001827025,0.00001968353,0.000018638802,0.000019247347,0.00001895439,0.000020172874,0.00001897948,0.000019658524,0.000018965493,0.00002042587,0.000019025236,0.000019385876,0.000018850109,0.000019871648,0.000018476445,0.000018586155,0.000018015635,0.000019424979,0.000018423923,0.000019020883,0.000018791596,0.000020092564,0.000018961442,0.000019523335,0.000018901863,0.000020338459,0.000019239915,0.000019753183,0.00001928516,0.000020268038,0.000018994617,0.00001918881,0.000018744935,0.000020115935,0.000019523539,0.00002029651,0.000019834804,0.000020862799,0.000019914067,0.000020716681,0.000020341,0.000021761763,0.000020861047,0.00002124285,0.000020275134,0.000020958858,0.00001978097,0.00001960756,0.00001879925,0.000019845003,0.000018998204,0.000019739378,0.000019234374,0.000020619293,0.000019662086,0.00002057806,0.000019578149,0.000020929836,0.000019886153,0.000020976375,0.00001990442,0.000021108555,0.000019453657,0.000019701447,0.00001883304,0.000019646117,0.000020337702,0.000020565092,0.000020423455,0.000020871912,0.000020810894,0.000021546975,0.00002070542,0.000021196183,0.000022522128,0.00002532934,0.000024922461,0.000016821916,0.000010709595,0.000013286417],[0.000015319487,0.000011152781,0.000010281255,0.000013757463,0.000026751239,0.000036842408,0.000029748026,0.00002463465,0.000022338021,0.000021610294,0.00002129203,0.000019851306,0.00002007071,0.000019608606,0.000020180705,0.000019481598,0.000020930494,0.00002059956,0.000021542497,0.000019707799,0.000021065944,0.000020494532,0.000020845178,0.000019284294,0.000020154164,0.00001939268,0.000020361747,0.00001908111,0.000020352427,0.000019785231,0.000020242695,0.000018822124,0.000019892164,0.000019374196,0.000020438416,0.000019414922,0.00002101101,0.000020396164,0.000020916987,0.000019417015,0.000020407742,0.000019951096,0.000020973333,0.000019598829,0.000020630916,0.000019958976,0.000020093577,0.000018735464,0.000019648947,0.000019430223,0.000020510448,0.000019002895,0.000020369827,0.000019731568,0.0000201932,0.00001879864,0.000020019193,0.000019458092,0.000020430896,0.000018764986,0.00001997379,0.000019515217,0.000019741883,0.000018271312,0.000019177376,0.000018953378,0.000019978648,0.000018416617,0.000019952582,0.000019461972,0.000020094229,0.00001858979,0.000019894496,0.00001919397,0.000020231828,0.000018540959,0.000019806848,0.000019414885,0.00001970528,0.00001820779,0.000019199022,0.00001895213,0.000020022058,0.000018481114,0.000020036307,0.000019487601,0.000020158568,0.00001866438,0.00001997356,0.000019270894,0.000020302492,0.000018599756,0.000019833065,0.000019432002,0.00001970543,0.000018227873,0.000019202867,0.000018949042,0.000019990692,0.000018464501,0.000020015339,0.000019463605,0.000020140656,0.000018658258,0.000019946665,0.000019241457,0.000020267651,0.000018571025,0.000019810683,0.000019416662,0.000019687097,0.000018204872,0.000019184143,0.000018932515,0.000019961393,0.000018443701,0.00002000303,0.000019466166,0.000020129002,0.000018638748,0.000019931966,0.00001924287,0.000020276235,0.000018580095,0.000019822042,0.000019419718,0.000019695473,0.000018203935,0.000019184383,0.000018924751,0.000019951782,0.000018438303,0.000020002515,0.000019458594,0.00002012359,0.00001863466,0.000019921361,0.000019222052,0.000020252388,0.00001856035,0.000019814159,0.000019427758,0.000019704697,0.00001821029,0.000019193256,0.000018941091,0.000019970552,0.00001844801,0.00002000078,0.000019449855,0.0000201046,0.000018611732,0.000019902942,0.000019201148,0.000020227526,0.000018537281,0.000019789932,0.00001940328,0.000019681842,0.000018187624,0.000019173023,0.000018922765,0.000019976818,0.000018454768,0.000020021276,0.00001946275,0.000020128024,0.000018627767,0.000019935977,0.000019232266,0.000020271093,0.000018581813,0.00001981382,0.000019411424,0.000019686084,0.000018207025,0.000019167175,0.000018920582,0.000019961792,0.00001840847,0.000019975332,0.000019433613,0.000020164316,0.00001875012,0.000020026488,0.00001938314,0.000020307778,0.000018538572,0.000019619829,0.00001918023,0.000019347663,0.000017984428,0.000018871531,0.000018675668,0.000019725923,0.00001817247,0.000019671126,0.000019297873,0.000020117084,0.000018654218,0.000020014251,0.00001950186,0.000020581494,0.000018983714,0.000020173875,0.000019533913,0.000019871364,0.000018749584,0.00001973106,0.0000194673,0.000020707494,0.000019659687,0.000021026846,0.000020247,0.000020979514,0.00002004122,0.00002124384,0.000021002415,0.000022292226,0.000020980577,0.000021457468,0.000020773698,0.000020883303,0.00001963883,0.000019966095,0.000019459892,0.000020282985,0.000018880928,0.000020353029,0.000019621495,0.000020339894,0.000019248577,0.000020543237,0.000019909738,0.0000208484,0.000019776253,0.000020794865,0.000020357767,0.000020167297,0.000019182808,0.000019069848,0.000019162933,0.000020135281,0.000019917201,0.000020427624,0.000020061163,0.000020405096,0.000020278943,0.000019957186,0.00002018673,0.000022405311,0.000023979288,0.000026256388,0.000017027021,0.000011269544,0.000012868373],[0.000015712818,0.00001226138,0.000011415996,0.000015041049,0.000028009556,0.000034739245,0.000027093089,0.000023292907,0.00002045228,0.00002059732,0.00001943226,0.000019611169,0.00001887983,0.00001917328,0.0000185695,0.00001906385,0.000019063758,0.000020082258,0.00001923907,0.000019279201,0.000019436264,0.00002021557,0.000019220804,0.000019284791,0.000018286688,0.000019210634,0.000018160325,0.000018639726,0.000018291972,0.000019405225,0.000018277273,0.000018757615,0.000018053628,0.000019498902,0.000018656,0.00001950973,0.000019382253,0.000020632353,0.000019261632,0.000019544943,0.000018706987,0.000019957186,0.00001878581,0.000019054887,0.00001891499,0.000019682404,0.000018558438,0.00001873439,0.000018145403,0.000019496654,0.000018486686,0.00001879217,0.000018689689,0.00001969271,0.000018627856,0.00001895168,0.00001833567,0.000019736895,0.000018454626,0.000018723085,0.000018464854,0.000019502288,0.00001815082,0.000018319624,0.000017779297,0.000019138552,0.000018085784,0.00001841702,0.000018373374,0.000019604606,0.000018414561,0.000018777122,0.000018154715,0.000019596886,0.000018287368,0.000018568138,0.000018281195,0.00001945234,0.000018043627,0.000018288118,0.000017747874,0.000019175273,0.000018121746,0.000018498553,0.000018428598,0.000019678444,0.000018481502,0.000018865252,0.000018224988,0.000019671952,0.000018351431,0.00001862576,0.00001831351,0.00001946986,0.000018053197,0.000018298462,0.000017766417,0.000019172365,0.000018106994,0.000018475723,0.00001841867,0.00001966623,0.000018477027,0.000018852428,0.000018221059,0.000019653744,0.000018335582,0.000018594488,0.00001829916,0.00001944138,0.000018037159,0.000018268176,0.000017751225,0.000019153615,0.000018091785,0.000018452762,0.000018407187,0.000019651494,0.00001846748,0.000018829609,0.00001821055,0.00001964726,0.000018337436,0.000018598834,0.000018302408,0.000019442976,0.000018040926,0.00001827438,0.00001775192,0.000019153433,0.00001808587,0.000018451707,0.000018403764,0.000019652618,0.000018463412,0.000018828621,0.000018207651,0.000019638492,0.00001832228,0.000018583267,0.00001829684,0.0000194462,0.000018049015,0.000018278615,0.000017758268,0.000019167337,0.000018102935,0.00001845709,0.00001840559,0.000019645162,0.000018447447,0.0000188042,0.00001818164,0.000019618783,0.000018301604,0.000018563553,0.000018275356,0.000019429723,0.000018028028,0.00001825677,0.000017731278,0.000019144867,0.000018093942,0.000018462653,0.000018412471,0.000019657098,0.000018459643,0.000018830506,0.000018198138,0.000019642033,0.000018326284,0.00001860506,0.000018301307,0.000019448427,0.000018034063,0.000018267445,0.00001773253,0.000019145506,0.000018077817,0.000018447343,0.000018389783,0.000019679419,0.000018548651,0.000018976838,0.000018319624,0.00001977516,0.000018359904,0.000018536044,0.000018100242,0.000019165693,0.000017760065,0.000018030416,0.00001750588,0.000018989816,0.000017975546,0.000018443208,0.000018223944,0.00001969752,0.000018513467,0.00001905874,0.000018465118,0.000019924819,0.000018719746,0.000019070048,0.000018599578,0.000019678275,0.000018333712,0.000018654628,0.000018359378,0.000019671314,0.000018928777,0.000019593559,0.000019600475,0.000020714171,0.00001974561,0.000020425674,0.000019897001,0.000021226708,0.000020143174,0.000020370411,0.000019791043,0.000020256404,0.00001926494,0.00001921923,0.000018644294,0.000019421255,0.00001846394,0.000018757113,0.000018554207,0.000019840896,0.00001889442,0.000019698327,0.000018998167,0.000020151418,0.00001877859,0.000019548857,0.000018748422,0.000020116586,0.000018819519,0.000019118941,0.000018038656,0.00001924096,0.000019231642,0.000020031799,0.000019797199,0.000020376063,0.000020262705,0.00002139339,0.000020732274,0.000021426593,0.000021898059,0.000024873572,0.000025328953,0.000018311992,0.000010997492,0.000013538249],[0.000015420641,0.000013288192,0.000010551868,0.000017095816,0.000028462704,0.000036406425,0.000028728256,0.000023876853,0.000021624644,0.000021269261,0.000020745703,0.000019948262,0.000020336905,0.000019808718,0.000020121557,0.000019668032,0.000020420279,0.000020450214,0.00002042883,0.000019631565,0.000020840229,0.000020919797,0.000020860709,0.000019800409,0.000020062904,0.00001979769,0.00001978929,0.000018821262,0.00001962185,0.000019716144,0.00002007879,0.000019117446,0.000019942916,0.000019947729,0.000020620846,0.000019810757,0.000021001735,0.000020730278,0.00002099707,0.000019958425,0.00002065655,0.000020475836,0.000020625075,0.00001944928,0.000020093119,0.000020227237,0.000020257661,0.000019414072,0.0000202459,0.000020245765,0.000020601998,0.00001930435,0.000020240417,0.000020258183,0.000020571584,0.00001954308,0.000020427311,0.000020304351,0.000020505304,0.000019108753,0.0000199037,0.000020043244,0.000020194606,0.000019027395,0.000019935387,0.000019922938,0.00002035235,0.000019011397,0.000020182479,0.000020210193,0.000020548234,0.000019358386,0.000020330235,0.000020131518,0.000020433428,0.000018981633,0.000019824518,0.000019991701,0.000020162086,0.000018984276,0.000019926074,0.000019910667,0.000020396514,0.00001906634,0.000020257834,0.000020234222,0.000020608322,0.00001942872,0.000020397198,0.000020184998,0.000020491874,0.000019030282,0.000019857327,0.000020014937,0.000020170912,0.00001899583,0.000019935065,0.000019910667,0.000020373012,0.000019060431,0.000020256366,0.000020230516,0.000020604628,0.000019438823,0.000020399082,0.000020186117,0.000020477537,0.000019021536,0.00001983592,0.000020003947,0.000020146997,0.000018971823,0.000019912377,0.000019902773,0.000020359203,0.00001904842,0.00002023046,0.000020224497,0.000020589208,0.000019420719,0.00002038127,0.000020178917,0.00002046828,0.000019020374,0.000019829624,0.000019997078,0.000020142465,0.000018979172,0.000019918492,0.000019901803,0.000020352369,0.000019048965,0.00002023565,0.000020223246,0.000020591213,0.000019419163,0.000020382691,0.000020176665,0.000020460122,0.00001900828,0.000019823761,0.000019997195,0.000020147092,0.000018982828,0.000019921134,0.000019905638,0.000020369807,0.000019057414,0.000020237503,0.000020223015,0.000020579788,0.000019399451,0.00002035897,0.00002015405,0.00002044103,0.000018988567,0.000019804505,0.000019983163,0.000020132977,0.000018962292,0.000019900039,0.000019890173,0.000020358562,0.00001904546,0.000020236075,0.000020220275,0.000020587462,0.000019410609,0.000020369807,0.000020163567,0.00002045989,0.000019013067,0.000019830813,0.000020000092,0.000020147978,0.000018965402,0.000019896754,0.0000198911,0.00002036262,0.000019027486,0.000020240592,0.000020230364,0.000020646958,0.000019524434,0.000020432532,0.000020275384,0.000020409221,0.000018902098,0.000019539948,0.000019701616,0.000019819225,0.000018697017,0.000019614816,0.000019764037,0.000020278247,0.000019020374,0.000020166182,0.000020195144,0.000020767557,0.000019667787,0.00002066591,0.000020399628,0.000020589994,0.000019368412,0.000020258802,0.000020112635,0.000020224692,0.000019336669,0.000020231868,0.000020203737,0.000020416073,0.000019690195,0.0000209191,0.00002078196,0.00002120245,0.00002064812,0.000021538634,0.00002133567,0.000021161424,0.000020409729,0.000020591702,0.000020852176,0.00002061766,0.000019909643,0.000020319518,0.000020489451,0.000020264482,0.000019159206,0.00002026226,0.00002008601,0.00002081804,0.000020031417,0.000020970154,0.000020404084,0.000020261603,0.000019392144,0.000019797746,0.000020241132,0.000020158624,0.000019394603,0.000018929624,0.000019181254,0.00001938083,0.000019915586,0.000020015357,0.000020660313,0.000020880216,0.000021292215,0.000021167742,0.000021642449,0.000022984885,0.000024289884,0.000025560052,0.000019092613,0.000011392613,0.00001348997],[0.000015268177,0.000015683072,0.00001186231,0.00001725341,0.00002927835,0.00003439775,0.000027551243,0.00002440931,0.000020883519,0.000021089965,0.000019682817,0.000020110565,0.000018979026,0.000019723611,0.000019342719,0.000020194317,0.000019532014,0.00002047521,0.000019427905,0.000019763525,0.00001967848,0.000020800358,0.000019621439,0.00002006212,0.000018738017,0.000019729367,0.000018455947,0.000018680726,0.00001827588,0.000019550947,0.000018774921,0.00001959496,0.000018461878,0.00001989205,0.000019051164,0.000019925199,0.000019442326,0.000020742242,0.000019523279,0.000020282114,0.000019140705,0.000020380397,0.00001895448,0.000019072104,0.000018561499,0.000019581119,0.000018911473,0.000019614534,0.00001890343,0.00002019112,0.000019025218,0.000019131472,0.000018735804,0.000019665013,0.000019061648,0.000019678087,0.000018994906,0.000020212276,0.000018815088,0.000018826431,0.000018366978,0.000019559002,0.000018756327,0.000019265766,0.000018601175,0.00001989112,0.000018772467,0.00001895815,0.000018687675,0.000019740792,0.000018957717,0.00001948277,0.00001881916,0.000020080379,0.000018694449,0.00001872023,0.000018276452,0.000019541887,0.000018702063,0.000019247494,0.000018563305,0.00001988469,0.000018778108,0.000019015859,0.000018724924,0.000019787025,0.000019011053,0.000019567698,0.000018879686,0.000020146766,0.000018751765,0.00001877406,0.000018311452,0.000019571802,0.000018730103,0.0000192636,0.000018572584,0.000019873469,0.00001877372,0.000019017163,0.000018729765,0.000019786004,0.000019018433,0.00001957785,0.000018894942,0.000020152414,0.00001874953,0.000018763429,0.000018303175,0.000019554453,0.00001871184,0.00001923331,0.000018557215,0.000019862859,0.000018766346,0.00001899545,0.00001871357,0.000019771858,0.000019001083,0.000019551318,0.000018874356,0.000020133859,0.000018729925,0.00001874549,0.000018288432,0.000019541645,0.000018701474,0.000019234392,0.000018555198,0.000019857214,0.00001875983,0.000018999834,0.000018715766,0.000019772971,0.000018995921,0.000019542913,0.000018870001,0.000020130674,0.000018728442,0.000018739054,0.000018284265,0.000019543528,0.000018707451,0.00001923898,0.000018561022,0.000019866247,0.00001876878,0.00001900239,0.000018719336,0.000019775536,0.000018989418,0.000019527486,0.000018853128,0.00002011133,0.000018713465,0.000018723193,0.000018269691,0.000019528885,0.000018691117,0.000019218973,0.000018545134,0.000019852536,0.00001875647,0.000018990342,0.000018708968,0.000019768484,0.000018990106,0.000019538458,0.000018858289,0.000020127716,0.00001873155,0.000018749137,0.000018297189,0.000019558927,0.000018706827,0.000019227607,0.000018550421,0.000019865964,0.000018751765,0.000018990288,0.000018696517,0.000019785892,0.00001907034,0.00001968629,0.000018985089,0.000020267324,0.000018738501,0.000018654184,0.000018085628,0.000019314793,0.000018453413,0.000018953018,0.00001829745,0.000019772293,0.000018685465,0.000019084877,0.000018619969,0.000019996525,0.000019248266,0.000019966019,0.000019026797,0.000020466934,0.000019071904,0.000019489906,0.000018888402,0.000020272193,0.00001922174,0.000019781044,0.000018952456,0.000020195106,0.000019125908,0.000019642051,0.000019180778,0.000020379057,0.000019923185,0.000020903924,0.00002002435,0.000021344607,0.000019852707,0.000020218347,0.0000193243,0.000020560581,0.00001976298,0.000020312116,0.000019351297,0.000020580492,0.000019267585,0.000019467372,0.000018901213,0.000020080839,0.000019582612,0.000020454698,0.000019317242,0.000020470075,0.000018871477,0.000019325,0.000018321494,0.000019850077,0.000019003837,0.000019662873,0.000017899576,0.000018957897,0.00001848293,0.000019439638,0.000019168288,0.00002034003,0.000020563622,0.000021720833,0.000021497408,0.000022434324,0.000023601566,0.000025735006,0.00002493763,0.000017271865,0.000011423369,0.000013641839],[0.000015868965,0.000017393737,0.000013106356,0.000019015622,0.000032248074,0.000035812907,0.00003190179,0.000025223231,0.00002283688,0.00002180177,0.00002154757,0.00001989909,0.00002039603,0.000019735011,0.000020567446,0.000019877316,0.000021084214,0.000020721956,0.000021346683,0.000019764318,0.000021175918,0.000020788737,0.000021585414,0.00001986032,0.00002049287,0.000019516763,0.000019897665,0.000018574214,0.000019824764,0.000019585208,0.00002071749,0.00001928345,0.000020266916,0.000019529534,0.000020543452,0.000019402152,0.000021042633,0.000020544763,0.000021658243,0.000019974037,0.000020892583,0.000020036596,0.00002066918,0.00001892466,0.000020035524,0.000019778157,0.000020753125,0.000019553314,0.000020503565,0.000019891651,0.000020751422,0.000018974719,0.000020096186,0.00001968781,0.000020936604,0.000019502642,0.000020588364,0.000019940939,0.000020584772,0.000018616276,0.000019763092,0.000019560326,0.000020629068,0.000019208199,0.000020238756,0.00001960711,0.000020506399,0.00001879909,0.000020078274,0.000019681991,0.00002085876,0.000019336578,0.000020472593,0.000019772106,0.00002048238,0.000018496985,0.000019699699,0.000019500447,0.000020598342,0.00001916392,0.000020225945,0.00001955296,0.000020481539,0.000018828747,0.000020128215,0.00001970017,0.000020926043,0.000019411369,0.000020544077,0.000019831192,0.000020542022,0.000018549996,0.00001972918,0.000019535812,0.000020617052,0.000019182846,0.000020228394,0.000019548392,0.00002046584,0.000018827885,0.000020120999,0.000019693969,0.00002091962,0.000019418034,0.00002056017,0.000019828318,0.000020538318,0.000018548688,0.000019725265,0.000019528268,0.000020594372,0.000019166388,0.000020215244,0.000019542576,0.000020455907,0.000018823146,0.000020115014,0.000019692805,0.000020905021,0.000019395176,0.000020542393,0.000019812514,0.000020520367,0.000018526784,0.000019706633,0.000019512205,0.000020582633,0.000019159845,0.000020213933,0.000019532477,0.00002044183,0.00001882047,0.00002011202,0.000019684358,0.00002089613,0.000019387558,0.00002053078,0.000019809682,0.000020522599,0.000018524575,0.00001970699,0.00001951639,0.000020594787,0.00001916679,0.000020220525,0.000019542129,0.000020453705,0.000018825658,0.000020116875,0.00001969271,0.000020892225,0.000019376468,0.000020517393,0.000019799616,0.000020505226,0.000018506194,0.000019685182,0.000019499535,0.00002057865,0.000019150875,0.0000202042,0.00001953382,0.000020450525,0.00001880992,0.00002011018,0.000019682573,0.000020901252,0.000019390369,0.000020522226,0.000019813555,0.000020519525,0.000018527791,0.000019706427,0.000019521956,0.000020596712,0.000019157746,0.000020205933,0.000019542334,0.000020458641,0.000018788569,0.000020093023,0.00001966668,0.000020964395,0.000019514158,0.000020639733,0.000019953723,0.00002053885,0.000018493369,0.000019500874,0.000019344932,0.000020339972,0.000018934861,0.000019953473,0.000019416237,0.00002047242,0.000018702598,0.000020085263,0.000019706218,0.000021259386,0.00001962432,0.000020750016,0.000019995116,0.000020656707,0.000019218936,0.000020345327,0.000020128638,0.000020906815,0.000019810004,0.000020442161,0.000019813386,0.000020334173,0.000019297726,0.000020369982,0.000020190466,0.000021418356,0.000020540514,0.000021443495,0.000020942154,0.000021380461,0.000020227662,0.000020803633,0.00002073356,0.000021469465,0.000020377385,0.000020885731,0.000020171201,0.0000205577,0.000019136945,0.000020159318,0.000019654493,0.000020999012,0.000019734936,0.000020813814,0.000019957033,0.0000204398,0.00001911174,0.000019830039,0.000019845873,0.000020981595,0.000019595784,0.000019498866,0.000018788622,0.000019521398,0.000018944234,0.000019788875,0.000020232486,0.000020863137,0.000020789414,0.0000209576,0.00002147829,0.000024765475,0.000024743686,0.000024265251,0.00001613201,0.000011016617,0.000013176386],[0.000015837126,0.000018013661,0.00001583095,0.000022152757,0.000032002037,0.000031239248,0.000027026277,0.000023687184,0.00002111087,0.00002080262,0.000019551915,0.000019906378,0.000019057614,0.000019699004,0.000018944216,0.000019948928,0.000019756084,0.000020818994,0.000019550798,0.000019712083,0.000019608327,0.000020648828,0.000019622263,0.000019728803,0.000018840332,0.00001944353,0.000018520937,0.000018550298,0.000018226778,0.0000193427,0.000018565464,0.000019123427,0.00001858759,0.0000197384,0.00001891611,0.000019575891,0.000019402281,0.000020729407,0.000019592737,0.000019981791,0.000019236613,0.000020158048,0.000018922388,0.000018828961,0.000018669987,0.000019677262,0.000019083804,0.000019448093,0.00001894082,0.000020032046,0.000019053434,0.000019026415,0.00001882354,0.000019668068,0.000019131836,0.000019305013,0.000018912482,0.000019812138,0.00001882774,0.00001859025,0.00001851382,0.000019554118,0.000018808467,0.000019127276,0.000018623183,0.0000196969,0.000018722281,0.000018846946,0.000018758043,0.000019752862,0.000018981416,0.000019165802,0.000018777391,0.00001969534,0.000018693112,0.000018452356,0.000018401395,0.000019499834,0.000018727926,0.00001906843,0.00001857168,0.000019681484,0.000018705541,0.000018850506,0.00001876019,0.000019782063,0.00001903264,0.000019238007,0.000018841878,0.000019751693,0.000018743414,0.000018496456,0.000018438583,0.000019515777,0.000018750014,0.00001907869,0.000018582397,0.000019671876,0.000018689832,0.000018832428,0.000018752802,0.000019778743,0.000019020936,0.000019235567,0.000018850576,0.000019758721,0.000018745131,0.000018490318,0.000018433273,0.000019508761,0.00001873241,0.000019053688,0.000018568386,0.000019664374,0.000018691579,0.000018830488,0.000018748959,0.000019777535,0.00001901321,0.000019221026,0.000018832896,0.000019745177,0.000018728193,0.000018472516,0.000018411874,0.000019495315,0.000018717961,0.000019051417,0.000018561252,0.000019656482,0.000018679017,0.000018824725,0.000018742845,0.00001977399,0.000019004563,0.000019210342,0.000018824401,0.00001973842,0.000018730621,0.000018473433,0.000018415563,0.00001950281,0.000018730569,0.000019060722,0.000018569484,0.000019666999,0.000018687266,0.000018826215,0.00001874379,0.00001977203,0.000019000976,0.000019199262,0.000018813904,0.000019727484,0.000018713214,0.000018452498,0.00001839778,0.000019488196,0.000018720497,0.000019052835,0.000018561552,0.00001966293,0.000018685465,0.000018821243,0.00001873968,0.000019775216,0.000019019775,0.000019221721,0.00001882898,0.00001974435,0.000018728319,0.00001847095,0.000018415421,0.000019506566,0.000018740235,0.000019062612,0.00001856072,0.000019664467,0.00001867656,0.000018814711,0.000018733605,0.000019779856,0.000019106183,0.000019357094,0.000018962184,0.000019882074,0.000018780722,0.000018440447,0.000018271958,0.000019315308,0.00001852272,0.00001881656,0.000018277395,0.000019480596,0.000018590657,0.000018836632,0.00001871939,0.000020034511,0.000019207064,0.000019731173,0.000019087734,0.000020127698,0.00001901497,0.000019174322,0.000019086023,0.00002036435,0.000019294726,0.000019915777,0.000019322788,0.000020244086,0.000019123154,0.00001962636,0.000019597483,0.000020700447,0.000020058485,0.00002085874,0.00002038131,0.000021211998,0.000019989568,0.000020018144,0.000019479852,0.000020410935,0.00001965425,0.000020004441,0.000019259685,0.00001997897,0.000019004057,0.000019072722,0.000018705347,0.00001963986,0.00001912921,0.000019697012,0.000019268175,0.000019976571,0.00001908524,0.00001912299,0.00001855718,0.000019583957,0.000018942681,0.000019231202,0.000018370798,0.00001884594,0.000019005161,0.000019613582,0.000019702631,0.000021022495,0.000020780333,0.000021683849,0.000021157046,0.000022419803,0.000023649533,0.0000270857,0.000024605044,0.000016559714,0.000010396247,0.000013373572],[0.000016169808,0.000017855013,0.000014657221,0.00002437021,0.000029967156,0.000029684123,0.000026451768,0.00002345968,0.000021756552,0.000021133736,0.000020949266,0.00002028608,0.000020922373,0.000020002477,0.000020323723,0.000019926358,0.00002101554,0.00002073417,0.000020873347,0.000019992218,0.000021009988,0.000021198022,0.000021075128,0.00001996505,0.000020444286,0.000020276835,0.000020564818,0.000019435505,0.000019982515,0.000020016292,0.000020208556,0.000019282144,0.000020366699,0.00002022338,0.000021006623,0.000020162854,0.00002124984,0.000021087752,0.000021330727,0.000020279233,0.000021066324,0.000020741529,0.000021018766,0.000019680547,0.000020337451,0.00002053125,0.000020617465,0.000019835788,0.000020670226,0.00002059842,0.000021055157,0.000019806263,0.000020616286,0.00002054831,0.000020807283,0.000019846328,0.00002055803,0.000020471638,0.000020966156,0.000019555553,0.000020366699,0.000020389514,0.000020513125,0.000019502382,0.00002036229,0.000020232581,0.000020715848,0.00001961158,0.000020596673,0.000020529998,0.000020741036,0.000019679252,0.000020450118,0.00002034222,0.000020805954,0.000019435245,0.000020300247,0.0000203232,0.000020475934,0.000019406187,0.000020329984,0.000020194335,0.000020698473,0.00001960756,0.00002061194,0.000020551173,0.000020802165,0.000019741903,0.00002052115,0.0000203964,0.00002085673,0.000019461508,0.00002031512,0.000020341542,0.000020489842,0.000019415756,0.000020337022,0.00002018989,0.000020667683,0.000019586534,0.000020596455,0.000020529234,0.000020786043,0.000019733545,0.000020531113,0.000020399511,0.000020859537,0.000019472813,0.000020315023,0.000020335085,0.000020468164,0.000019402447,0.00002032318,0.00002018342,0.000020663525,0.000019590363,0.000020599186,0.00002053037,0.000020782416,0.000019720845,0.000020515103,0.000020387104,0.000020845477,0.000019452582,0.000020295523,0.000020322832,0.000020454543,0.000019392552,0.000020324227,0.000020176183,0.00002064999,0.000019578934,0.000020588168,0.000020521033,0.000020772171,0.00001971447,0.000020507552,0.0000203845,0.000020847485,0.000019461582,0.000020310858,0.000020335801,0.00002047154,0.000019400357,0.000020331807,0.000020180938,0.00002065586,0.000019580035,0.00002059023,0.000020521189,0.000020768408,0.000019709376,0.000020494355,0.000020371826,0.000020827712,0.000019442752,0.000020291673,0.000020318046,0.000020458407,0.000019401541,0.000020324343,0.000020180765,0.000020662066,0.000019582088,0.000020591253,0.000020532778,0.000020791793,0.000019734221,0.000020507025,0.000020386695,0.0000208386,0.000019452695,0.00002030013,0.000020330739,0.000020476402,0.000019420293,0.000020313124,0.000020181207,0.000020666597,0.000019584704,0.000020600208,0.000020550193,0.000020842832,0.000019852972,0.000020619234,0.000020526022,0.000020854444,0.000019437857,0.000020108224,0.000020160758,0.000020230324,0.000019265106,0.000019942005,0.000019973866,0.000020626667,0.00001962593,0.00002072407,0.000020684265,0.000021038539,0.00001989224,0.000020930895,0.000020637057,0.00002109769,0.000019876255,0.00002105008,0.00002080282,0.000020918762,0.00002002225,0.000020926263,0.000020492498,0.000020854166,0.000020215377,0.000021444886,0.000021297232,0.000021577345,0.000021086063,0.000022125332,0.000021901735,0.000021973954,0.000020836495,0.000021170466,0.000021172807,0.00002101502,0.000020192121,0.000020644635,0.00002043871,0.000020597006,0.000019798312,0.000020552328,0.00002038131,0.000020801193,0.000020061603,0.000021103806,0.000020932352,0.000021453641,0.00002035542,0.00002048656,0.00002060343,0.000020178917,0.000019925143,0.000019451469,0.000019912548,0.000020476538,0.000020625683,0.00002094539,0.000021580927,0.000021344526,0.000021683829,0.00002143023,0.000022006017,0.000024753976,0.00002519455,0.000024828449,0.000017199853,0.000010810289,0.000013219318],[0.00001566049,0.000015833939,0.000014790546,0.000021950495,0.00002943451,0.000028490349,0.000023821789,0.00002245224,0.000019772275,0.00002044805,0.000019572886,0.000020511914,0.000019144705,0.000019811892,0.000019066922,0.000019980667,0.000019326677,0.000020628104,0.000019435856,0.00002023893,0.00001969029,0.000020887623,0.000019686328,0.000019761776,0.000019046603,0.000020227526,0.000019605559,0.000020002915,0.000019254323,0.000020029334,0.000018859766,0.000019079982,0.000018497989,0.00001992425,0.000019283745,0.000020289757,0.000019563537,0.000020630367,0.0000195409,0.000019936508,0.000019223959,0.00002038786,0.000019508128,0.000019769275,0.000019097984,0.000020037816,0.000019149067,0.000019619793,0.000018915045,0.000020365593,0.000019404797,0.000019977866,0.000019253112,0.000020198111,0.000019409888,0.000019713963,0.00001917595,0.000020266492,0.000019632818,0.000019679908,0.000019165345,0.000019943354,0.00001904991,0.00001939366,0.000018647886,0.000020057414,0.000019149506,0.000019831685,0.000019213916,0.000020203814,0.000019263267,0.000019558107,0.000019008532,0.000020150033,0.000019465517,0.000019524543,0.000019084786,0.000019878073,0.000018980583,0.000019306966,0.00001858713,0.000020030117,0.000019144229,0.000019846839,0.00001922451,0.000020227313,0.000019309673,0.000019619138,0.00001906863,0.000020198131,0.000019504409,0.00001954032,0.000019086625,0.000019870738,0.000018997387,0.000019325553,0.000018601777,0.000020031206,0.000019136818,0.000019832723,0.000019208564,0.000020210482,0.00001929136,0.00001961074,0.000019067902,0.000020206204,0.000019511961,0.00001955587,0.000019098532,0.00001987341,0.000018981651,0.000019312729,0.000018589151,0.000020020207,0.000019133626,0.000019832516,0.000019203582,0.000020197245,0.000019274643,0.000019589972,0.000019044459,0.000020186386,0.000019494311,0.000019531471,0.000019075596,0.000019862118,0.000018970612,0.000019304573,0.000018582965,0.000020019119,0.000019122643,0.000019820754,0.000019192636,0.00002018933,0.000019267844,0.000019582407,0.000019039593,0.000020186326,0.000019501824,0.000019546453,0.00001910019,0.000019879932,0.000018985073,0.000019318402,0.000018593477,0.000020026393,0.000019134026,0.000019826653,0.000019199444,0.000020190293,0.000019268928,0.000019577477,0.000019033312,0.000020169855,0.000019491355,0.000019525307,0.000019081346,0.000019859031,0.000018972622,0.000019306799,0.000018586705,0.0000200195,0.000019126053,0.000019821491,0.000019202556,0.000020199517,0.000019286834,0.000019599707,0.000019052271,0.000020187963,0.000019504743,0.000019535068,0.000019091574,0.000019867593,0.000018996228,0.000019314683,0.000018585093,0.00002001154,0.000019112505,0.000019805639,0.000019204626,0.00002021054,0.000019379313,0.000019724175,0.000019202027,0.00002034222,0.000019602849,0.000019529814,0.000018994508,0.000019738456,0.000018844088,0.000019101482,0.000018329132,0.000019729441,0.000018895356,0.000019686346,0.000019208419,0.000020337196,0.000019331139,0.00001971464,0.00001900536,0.000020206608,0.000019404632,0.000019686835,0.000019152665,0.000020220758,0.000019220035,0.000019681484,0.00001894857,0.000020235495,0.000019530038,0.000020362679,0.000019827901,0.000020847345,0.000020143598,0.00002071832,0.000020252368,0.000021503476,0.00002087239,0.000021099902,0.00002000326,0.000020791158,0.000019852252,0.000020090474,0.00001906912,0.000020192027,0.000019453973,0.000020197649,0.000019427165,0.000020303014,0.000019614705,0.000019895655,0.000019504316,0.000020682706,0.000020563779,0.00002116756,0.000020325488,0.000021008165,0.000019795065,0.000019759362,0.000018866385,0.000019622861,0.000020327581,0.000020529567,0.000020356292,0.000020976093,0.000020960599,0.00002179391,0.000021000315,0.000021564036,0.000023019984,0.000025658303,0.000024075776,0.000016500631,0.000010625158,0.0000134487245],[0.000015789637,0.0000144146225,0.000013973962,0.000020587384,0.000031673615,0.00003066398,0.00002722814,0.000022945289,0.000021282856,0.000020909905,0.00002117586,0.000020105885,0.000020545549,0.000019561017,0.000019938847,0.000019100407,0.000020378784,0.000020075115,0.000021291931,0.000019728295,0.000021025424,0.000020707534,0.00002100644,0.000019680527,0.00002028784,0.000019733317,0.000020836154,0.000019712177,0.000020764268,0.000020119656,0.000020451793,0.000018856006,0.000019846839,0.000019388131,0.000020748294,0.000019529256,0.000020946309,0.000020348314,0.00002102488,0.000019721898,0.000020478063,0.00002003646,0.000021088255,0.000019518233,0.0000206469,0.00002008946,0.000020798256,0.000019380275,0.000020245456,0.000019898956,0.00002106514,0.000019478124,0.00002056766,0.000020092564,0.000020794192,0.000019746007,0.000020441887,0.000020133917,0.000021273014,0.000019594641,0.000020574527,0.000019988918,0.00002069044,0.000019262001,0.000020087926,0.00001970449,0.00002084826,0.000019343659,0.000020476285,0.000020035639,0.000020695848,0.000019564059,0.000020308786,0.000019985753,0.000021097085,0.000019453286,0.000020471578,0.000019923431,0.000020637824,0.000019169147,0.000020046054,0.000019681183,0.000020834188,0.000019362798,0.000020494454,0.000020057356,0.000020746238,0.000019622787,0.000020371768,0.000020049343,0.00002115039,0.00001947662,0.000020459634,0.000019917676,0.000020639576,0.00001919333,0.000020060435,0.000019689387,0.00002081943,0.000019353753,0.000020472085,0.00002003797,0.000020719406,0.00001961869,0.000020370857,0.000020056648,0.000021155149,0.000019491745,0.000020483805,0.000019933581,0.00002063308,0.000019179422,0.000020052614,0.000019684583,0.00002080754,0.000019345947,0.000020459382,0.000020022593,0.000020699776,0.000019599578,0.000020345444,0.000020034684,0.000021135225,0.000019474392,0.000020469764,0.00001992425,0.000020630463,0.000019172438,0.00002004961,0.000019680845,0.000020802523,0.000019332669,0.00002044908,0.000020012914,0.00002069208,0.000019589972,0.000020338206,0.000020033232,0.000021142725,0.000019488325,0.000020492227,0.000019942117,0.000020648711,0.000019183686,0.000020066635,0.000019687923,0.000020805557,0.00001934377,0.00002045423,0.000020017458,0.000020689098,0.000019591784,0.000020334814,0.000020022326,0.000021120377,0.000019472962,0.000020468808,0.00001992442,0.00002063135,0.000019168947,0.000020049209,0.000019677844,0.000020802938,0.000019338218,0.000020456066,0.000020021447,0.00002070635,0.000019600586,0.000020345307,0.000020030977,0.000021127025,0.000019482046,0.000020464866,0.00001991931,0.0000206356,0.00001918687,0.000020037702,0.00001966668,0.000020804227,0.000019312343,0.00002044639,0.000020029163,0.000020773023,0.000019714771,0.000020462698,0.000020147054,0.000021190624,0.000019533652,0.00002034331,0.000019777592,0.000020375559,0.000018984167,0.000019740433,0.000019280176,0.000020527003,0.000019019031,0.000020396224,0.000019934114,0.000020774627,0.000019459336,0.000020386713,0.000019891557,0.000021161344,0.000019369392,0.000020473923,0.000019903455,0.000020502644,0.000019243493,0.000020140831,0.000019719471,0.000020753836,0.0000196764,0.000020791394,0.000020370508,0.00002114823,0.000020485739,0.00002124232,0.000021089865,0.000022717435,0.000021114314,0.000021482385,0.000020684522,0.000021212907,0.00001996558,0.000020283624,0.000019733037,0.000020728261,0.000019565981,0.00002047445,0.000019903911,0.000020585558,0.000019843601,0.000020491738,0.000020451287,0.000022095242,0.000021033222,0.000021724976,0.00002116292,0.000021159609,0.000019824838,0.000019561501,0.000019451989,0.000020413894,0.000020039823,0.000020646426,0.000020202291,0.000020561405,0.000020450545,0.000020012189,0.00002036262,0.000022870967,0.000024009241,0.00002578586,0.000016563032,0.000011074204,0.0000129152895],[0.000016392409,0.000013970258,0.000014570035,0.00002082922,0.000032894,0.000030811043,0.0000251283,0.000022269936,0.000019661167,0.000020158932,0.000019072377,0.00001980734,0.00001898681,0.000019474503,0.0000183356,0.000019004328,0.000018731997,0.000020150283,0.000019116243,0.00001969305,0.00001957421,0.000020800935,0.000019623742,0.000019861911,0.000018808863,0.000019689181,0.000018868239,0.000019226287,0.000019033021,0.000019737534,0.000018714642,0.000018804003,0.000018164672,0.000019484089,0.000018828783,0.000019592177,0.000019460838,0.000020568976,0.000019379313,0.000019701109,0.000018928615,0.000019957071,0.000019063284,0.000019204646,0.000019105162,0.000019864354,0.000019033947,0.000019324225,0.00001879296,0.000020186963,0.00001920631,0.00001969442,0.00001935761,0.000020415178,0.000019530169,0.000019956768,0.000019365236,0.000020320293,0.00001944726,0.000019417052,0.000019335359,0.000019904877,0.000019019213,0.000019280802,0.000018780256,0.00002003858,0.000019072813,0.000019599725,0.000019370076,0.000020442083,0.00001943302,0.000019851892,0.000019247715,0.000020253025,0.00001934495,0.00001933357,0.000019241712,0.000019870076,0.00001894783,0.000019216828,0.000018737124,0.000020027328,0.000019074669,0.000019625537,0.000019392439,0.000020468397,0.000019474335,0.000019895047,0.000019296896,0.000020286428,0.000019380017,0.000019346464,0.000019240026,0.000019855925,0.000018946223,0.000019228506,0.000018761782,0.000020034702,0.000019073705,0.0000196191,0.000019393994,0.000020466894,0.000019469342,0.000019891613,0.000019301147,0.00002029862,0.000019388555,0.00001934914,0.00001924944,0.00001985886,0.000018942897,0.000019213567,0.000018752962,0.000020030595,0.000019066994,0.000019610477,0.000019381385,0.000020452359,0.000019445182,0.000019868483,0.000019275782,0.000020278285,0.000019369743,0.000019330899,0.000019233823,0.000019846251,0.000018939178,0.00001920816,0.000018745417,0.000020027728,0.000019061703,0.00001960152,0.000019371959,0.000020448206,0.000019439767,0.000019864656,0.000019271756,0.000020277646,0.000019376375,0.000019347017,0.000019253002,0.000019865982,0.000018952818,0.000019226598,0.000018762461,0.000020035715,0.000019066467,0.00001960984,0.000019376615,0.000020446138,0.000019440824,0.00001986189,0.000019273999,0.000020270396,0.00001936601,0.000019329276,0.0000192423,0.000019849223,0.00001894156,0.00001920906,0.000018747742,0.000020029851,0.00001906423,0.00001960485,0.000019372754,0.000020449004,0.000019448762,0.000019872576,0.000019280764,0.0000202784,0.000019376042,0.000019339748,0.000019244026,0.000019850397,0.00001894783,0.000019211717,0.000018734909,0.000020012341,0.000019043406,0.000019570609,0.000019360252,0.000020450741,0.000019550667,0.000019992733,0.000019392699,0.000020385198,0.000019418349,0.000019316412,0.000019118084,0.000019678031,0.000018737179,0.000018987064,0.000018408591,0.000019662835,0.00001872046,0.000019239327,0.000019079343,0.000020280104,0.000019303709,0.00001970528,0.000019120618,0.000020153666,0.000019208896,0.000019131161,0.000018893681,0.000019656125,0.000018617857,0.000018954988,0.000018733926,0.000019863313,0.000019071122,0.0000196776,0.000019703457,0.000020690222,0.000020005453,0.000020357553,0.000019923451,0.000020915091,0.000020320624,0.000020279098,0.000019772895,0.000020081377,0.000019285068,0.000019386485,0.000018688977,0.000019664038,0.000018953975,0.000019565345,0.000019251569,0.00002032572,0.000019712214,0.000020113883,0.000019431982,0.000020424312,0.000019807227,0.000020442141,0.000020016101,0.00002074072,0.00002000469,0.000019774292,0.000018750978,0.000019268413,0.00001957617,0.000019898727,0.000020043684,0.000020302607,0.000020412823,0.000021271673,0.000020622223,0.000021366968,0.00002194723,0.000025307874,0.000025308429,0.000017552906,0.000010685457,0.000013418541],[0.000016120968,0.0000141563805,0.000012585851,0.000022020315,0.000033397653,0.00003219485,0.000027169028,0.00002340214,0.000021487633,0.000021045884,0.000020641091,0.000020148804,0.00002071674,0.000019952087,0.00002015159,0.000019709583,0.000020523987,0.000020367146,0.00002062722,0.000019813839,0.000021139882,0.000021199055,0.00002121825,0.000020313142,0.000020433135,0.000020229823,0.000020192065,0.00001933796,0.000020051006,0.000020227102,0.00002048191,0.000019450543,0.000019964991,0.000020139276,0.000020778512,0.000019988995,0.000021153899,0.000020858064,0.000021063815,0.000020289892,0.00002061597,0.00002066185,0.00002079211,0.000019847312,0.000020393656,0.000020510643,0.000020646366,0.000019907193,0.000020636742,0.000020854266,0.000021188484,0.000020062636,0.000021034366,0.000020869842,0.000021206757,0.000020535324,0.000021064858,0.00002094575,0.000020993226,0.000019903966,0.000020487438,0.000020493399,0.00002071595,0.000019809342,0.000020599402,0.000020690717,0.000020972793,0.000019912168,0.000020981755,0.000020812246,0.00002119014,0.000020381349,0.000020964835,0.000020805735,0.00002091162,0.00001980175,0.000020445183,0.000020464202,0.000020697367,0.000019767449,0.000020572368,0.000020689631,0.000020969994,0.000019937117,0.00002099729,0.000020823183,0.000021206757,0.0000204202,0.000020993624,0.000020844742,0.000020944612,0.000019832629,0.000020453159,0.000020459382,0.000020690282,0.000019772877,0.00002059353,0.000020697742,0.000020964813,0.000019943336,0.000020999993,0.00002083824,0.000021203301,0.00002042326,0.000020991483,0.000020861029,0.000020952004,0.000019833991,0.000020445612,0.000020465763,0.000020688072,0.000019768257,0.000020589798,0.000020694248,0.000020960897,0.000019941795,0.000020994647,0.000020822488,0.000021174868,0.000020403248,0.000020974794,0.000020847941,0.0000209385,0.000019821304,0.000020431129,0.000020462485,0.000020685291,0.000019765448,0.000020582103,0.000020693677,0.0000209558,0.00001993822,0.000020990801,0.000020822668,0.000021175838,0.000020398655,0.000020972433,0.000020842774,0.000020941716,0.00001983123,0.00002044522,0.00002047152,0.000020693973,0.000019772688,0.000020606063,0.000020693005,0.00002095564,0.000019937175,0.00002098706,0.000020815402,0.000021171618,0.00002039671,0.000020966294,0.000020837586,0.000020926762,0.000019817844,0.000020430174,0.000020461372,0.000020684285,0.000019764488,0.000020583988,0.000020688447,0.000020957877,0.000019931165,0.000020983456,0.000020810676,0.000021180624,0.000020405563,0.000020977855,0.000020841004,0.000020929338,0.000019825275,0.000020436195,0.000020463362,0.000020685862,0.000019762227,0.000020552583,0.000020676573,0.000020940715,0.000019902145,0.000020968175,0.000020820642,0.00002124297,0.000020500083,0.00002106737,0.000020897467,0.00002086813,0.000019747456,0.000020236768,0.000020300691,0.000020459947,0.000019545596,0.00002017782,0.000020275713,0.000020649419,0.00001954323,0.000020687638,0.00002067535,0.000021128051,0.000020247193,0.0000209566,0.000020672926,0.000020855876,0.000019609412,0.000020353398,0.000020257892,0.000020354486,0.000019630143,0.000020484644,0.000020408754,0.000020618918,0.000019879648,0.000021027286,0.000020956279,0.000021205486,0.0000209531,0.00002137769,0.000021370899,0.000021307409,0.000020487927,0.000020662754,0.000020716918,0.000020744694,0.000019956273,0.000020256966,0.00002047494,0.000020488025,0.000019675854,0.000020693755,0.00002065192,0.000021126683,0.000020526259,0.000020871574,0.000020500689,0.000020664373,0.000019855755,0.00002022012,0.00002072739,0.000020611351,0.000019923527,0.000019015859,0.00001925458,0.000019120673,0.000019748624,0.000019712628,0.000020562718,0.000020821873,0.000021242626,0.000021031297,0.00002155758,0.000023201368,0.000024068431,0.0000253648,0.000018266992,0.000010982315,0.000013327064],[0.000015765323,0.000014447252,0.000012721851,0.000018956416,0.000030465368,0.00003220004,0.000026322852,0.000024016592,0.000020737356,0.000020978114,0.000019493233,0.00002006453,0.000018847808,0.00001964857,0.000019120163,0.00002009469,0.000019338606,0.000020425576,0.000019179644,0.00001983,0.000019454845,0.000020953841,0.000019717592,0.000020534793,0.000019090046,0.000020299161,0.000018982213,0.000019397898,0.000018967085,0.000020293277,0.000019473686,0.000020010586,0.000018661302,0.000019976456,0.000019159443,0.00001998158,0.000019540956,0.000020814528,0.000019785837,0.000020513637,0.000019243345,0.000020515161,0.000019387742,0.000019767485,0.000019093359,0.000020150648,0.000019403577,0.00001996722,0.000019038267,0.000020441401,0.000019269792,0.00001980972,0.000019167905,0.00002045985,0.000019604886,0.000020557347,0.000019536334,0.000020869862,0.000019342055,0.000019621213,0.000019028847,0.000020068492,0.000019171835,0.00001972726,0.000018899304,0.000020316262,0.000019072359,0.000019637968,0.00001903059,0.000020395699,0.000019434226,0.000020371477,0.000019314331,0.000020689118,0.000019154219,0.000019502697,0.00001893645,0.00002007255,0.000019129227,0.000019697294,0.00001886401,0.000020310179,0.000019074268,0.000019674222,0.000019064448,0.000020425072,0.000019476769,0.000020420182,0.000019362098,0.000020735952,0.000019200268,0.000019538515,0.000018956704,0.000020062693,0.000019119216,0.000019681596,0.000018876859,0.000020314616,0.000019084331,0.000019680845,0.000019074705,0.000020434325,0.000019493791,0.000020417554,0.00001935809,0.000020740084,0.000019214282,0.000019542465,0.000018953233,0.000020062962,0.000019120818,0.000019682197,0.000018869696,0.000020306423,0.000019078816,0.00001967484,0.00001907114,0.000020418469,0.00001946431,0.000020393714,0.000019348623,0.000020725256,0.000019199682,0.00001952313,0.000018944216,0.00002005883,0.00001912184,0.00001967728,0.000018862858,0.000020300671,0.000019071595,0.000019666868,0.000019064866,0.000020417883,0.000019462232,0.000020390235,0.0000193396,0.000020717986,0.000019196003,0.000019532814,0.000018948047,0.000020063288,0.000019120127,0.000019686158,0.00001887063,0.000020307622,0.00001907596,0.00001967439,0.00001906843,0.000020416523,0.000019460264,0.000020385625,0.000019334935,0.000020713636,0.000019191208,0.00001952095,0.000018940513,0.000020054162,0.000019115241,0.000019675517,0.000018860252,0.000020299047,0.000019069066,0.000019663137,0.000019057268,0.00002041183,0.00001945503,0.000020395155,0.00001934768,0.00002072907,0.000019203822,0.000019542278,0.000018959778,0.000020075862,0.00001912877,0.000019685202,0.000018862138,0.00002029982,0.000019054214,0.00001963619,0.000019044823,0.000020423862,0.00001953313,0.000020518488,0.000019456014,0.00002086264,0.000019193567,0.000019474392,0.000018839291,0.00002002156,0.000019079762,0.000019573856,0.000018671233,0.000020074502,0.00001881988,0.00001931319,0.00001884459,0.00002029475,0.000019463121,0.000020351807,0.000019291561,0.00002060958,0.000019143865,0.000019569712,0.000018875418,0.000020145268,0.000019127969,0.000019769313,0.000018970648,0.00002026197,0.000019179992,0.000019676174,0.000019226434,0.000020469257,0.000020052326,0.000021122652,0.000020147516,0.000021403166,0.000019897305,0.00002023588,0.00001943847,0.00002051841,0.000019921286,0.000020256966,0.00001908222,0.000020304951,0.000019220126,0.000019711406,0.000019057778,0.000020469257,0.000019919786,0.000020929916,0.000019553445,0.00002069417,0.000019112817,0.000019855415,0.000018952764,0.000020536048,0.000019960136,0.000020384692,0.00001860561,0.00001923135,0.00001896419,0.000019266483,0.000019147552,0.000019973522,0.00002063877,0.000021628852,0.000021425201,0.000022197779,0.000023625076,0.000025221427,0.000024044182,0.000016549264,0.000011068724,0.000013455986],[0.000015653442,0.000014245588,0.00001161155,0.00001720197,0.000030342866,0.00003500005,0.00003075603,0.000025329437,0.00002280589,0.000021917445,0.00002146064,0.000019836678,0.000020354719,0.000019614012,0.00002048228,0.000019567882,0.00002087223,0.000020446256,0.000021079468,0.000019389721,0.000020852018,0.000020520973,0.000021531057,0.000019972951,0.000020678743,0.00001979244,0.00002033299,0.000019286392,0.000020485895,0.000020408852,0.000021521737,0.000020021256,0.000020536774,0.000019756668,0.000020596968,0.000019543173,0.000021133392,0.000020750927,0.000021930722,0.000020324034,0.000021016882,0.00002044325,0.000021170286,0.000019747797,0.000020635247,0.000020459966,0.0000213327,0.000019966572,0.000020577569,0.000019984496,0.000020663289,0.000019134408,0.000020471229,0.00002016047,0.000021264697,0.00002003862,0.000021038539,0.000020402662,0.000020828587,0.000019330326,0.000020332835,0.000020122285,0.000020700585,0.00001943417,0.000020201078,0.000019711068,0.000020356429,0.000018806368,0.000020233392,0.00001989372,0.000021049336,0.000019783665,0.000020800953,0.000020120922,0.000020594493,0.000019150146,0.000020235591,0.000020074349,0.000020682925,0.000019397083,0.000020215244,0.000019672063,0.000020345715,0.000018859944,0.000020279638,0.000019931509,0.00002109451,0.000019852932,0.000020875834,0.000020191255,0.000020657713,0.000019205727,0.000020262356,0.000020082678,0.000020659956,0.00001938682,0.000020214415,0.000019677524,0.000020353787,0.00001887209,0.000020276448,0.000019942023,0.0000210995,0.000019846499,0.00002084665,0.000020184518,0.000020667228,0.000019219944,0.00002026825,0.000020084439,0.000020664944,0.000019389925,0.000020215897,0.000019663512,0.000020340398,0.00001886581,0.000020276042,0.000019932953,0.000021075368,0.000019826824,0.000020835758,0.00002017145,0.000020649144,0.000019206256,0.000020257778,0.000020082123,0.000020673418,0.00001938693,0.000020209209,0.000019662704,0.00002033549,0.000018855251,0.000020268928,0.000019929039,0.000021070786,0.00001982157,0.000020827434,0.000020161047,0.000020641939,0.000019203528,0.00002025998,0.000020079537,0.000020668787,0.000019394676,0.00002022203,0.00001966323,0.000020341658,0.00001886491,0.000020266936,0.000019922729,0.00002106281,0.000019818808,0.000020818716,0.000020154128,0.000020636624,0.000019199553,0.000020251906,0.000020079058,0.000020666323,0.000019386152,0.000020207108,0.000019652714,0.00002032828,0.00001884549,0.000020260713,0.000019915151,0.00002106717,0.00001982393,0.00002084164,0.000020173818,0.000020656904,0.000019221648,0.000020273857,0.000020096972,0.00002067831,0.00001939553,0.000020205509,0.000019664769,0.000020310703,0.000018815033,0.000020239104,0.000019921323,0.000021139478,0.000019936964,0.00002099879,0.00002030501,0.000020702679,0.00001919236,0.00002012144,0.00002001318,0.00002056111,0.00001932524,0.000019988462,0.000019484274,0.000020088923,0.000018521609,0.000020024921,0.000019889241,0.000021214648,0.000019854355,0.00002086228,0.000020192816,0.000020683516,0.00001938643,0.000020413563,0.000020210868,0.000020807185,0.000019744444,0.000020396146,0.000019834011,0.000020207688,0.000019215968,0.000020286583,0.00002026108,0.000021495542,0.00002084808,0.0000216563,0.00002128119,0.0000216172,0.000020520054,0.000020936664,0.000020901154,0.000021566093,0.000020463303,0.000020597969,0.000019855377,0.000020333611,0.000019007102,0.000020078753,0.00001980292,0.0000211237,0.000020453199,0.000021032722,0.000020258703,0.000020445084,0.000019671463,0.000020160913,0.000020642628,0.000021515643,0.000020465939,0.000019921761,0.000019240997,0.000019626248,0.00001891214,0.000019496523,0.000019908903,0.00002065915,0.000020721403,0.000020906695,0.00002146586,0.0000247702,0.000024369003,0.000023550596,0.0000157997,0.0000107614815,0.000012875224],[0.000015847158,0.000013472628,0.000011844517,0.000016155735,0.000029849134,0.00003296774,0.000027883681,0.000024276893,0.000021481566,0.000020819014,0.000019385507,0.000019356503,0.000018705043,0.00001911464,0.00001850436,0.00001917957,0.000019285528,0.000020213083,0.000019012958,0.000019162093,0.000019105726,0.000020381252,0.000019421348,0.000019957757,0.000019058432,0.000019957548,0.000018783714,0.000019302897,0.000018903465,0.000020225772,0.000019484869,0.000019936946,0.00001927718,0.000020057892,0.000019142459,0.000019714284,0.000019587245,0.000020767795,0.00001992729,0.0000202359,0.000019782874,0.000020724487,0.000019669626,0.000019874738,0.000019424904,0.00002023268,0.000019590196,0.000019654757,0.000019297322,0.000020098772,0.000018946692,0.000019210911,0.000019109753,0.0000204064,0.00001959341,0.000020330546,0.000019790346,0.000020894377,0.000019358682,0.000019583751,0.00001934399,0.000020329597,0.000019170884,0.000019330917,0.000018898581,0.00001989721,0.000018647052,0.000018955729,0.000018920528,0.000020366388,0.000019374767,0.00002018958,0.00001953611,0.000020696518,0.000019130357,0.000019458223,0.000019213841,0.000020336072,0.00001912049,0.000019371017,0.000018900275,0.000019925199,0.000018677823,0.00001903774,0.000018985833,0.000020432493,0.000019431687,0.000020251962,0.000019610647,0.000020756705,0.000019187126,0.000019493344,0.000019246998,0.000020338168,0.00001912837,0.000019362282,0.000018899575,0.000019920868,0.000018682687,0.00001903313,0.000018991735,0.000020438358,0.000019441584,0.000020232814,0.000019585843,0.000020741905,0.000019188023,0.000019487545,0.000019246667,0.000020330779,0.000019117755,0.000019353734,0.000018893663,0.000019902107,0.000018663153,0.000019017634,0.000018978719,0.000020410722,0.000019408537,0.00002020713,0.00001957925,0.000020724168,0.00001917692,0.000019475876,0.000019234174,0.000020321359,0.000019114948,0.00001934259,0.000018883702,0.000019897665,0.000018662422,0.000019012232,0.000018974719,0.00002041107,0.00001940661,0.000020211368,0.000019578485,0.000020722175,0.000019166937,0.00001947662,0.000019235731,0.000020330392,0.000019119652,0.000019365218,0.000018902998,0.000019911504,0.000018667513,0.000019023584,0.000018984167,0.000020414827,0.000019406409,0.00002021397,0.000019573277,0.00002071593,0.000019167137,0.000019479425,0.00001923542,0.000020329171,0.000019120218,0.000019356652,0.000018887627,0.00001989482,0.00001865173,0.000019009385,0.000018971317,0.00002041734,0.000019414367,0.000020226447,0.000019586701,0.000020740441,0.000019186358,0.000019503646,0.00001925682,0.000020353922,0.00001913618,0.000019366584,0.000018895247,0.000019906756,0.00001864579,0.000018994198,0.000018974068,0.000020450525,0.00001951317,0.000020373169,0.000019724626,0.00002089653,0.000019237988,0.000019451598,0.000019120182,0.00002017761,0.000019010999,0.000019161764,0.00001870292,0.000019658355,0.000018505682,0.000018766561,0.000018861563,0.000020406556,0.000019558742,0.000020237561,0.000019638866,0.000020704809,0.000019317888,0.000019676156,0.000019474763,0.00002050943,0.00001931599,0.000019623049,0.000019298463,0.000020106843,0.00001903442,0.000019393958,0.00001952771,0.000020751877,0.00002024953,0.000021207446,0.000020906815,0.000021783419,0.000020380456,0.0000203963,0.000019851761,0.000020502546,0.000019802656,0.000019738118,0.000019162093,0.000019650952,0.000018728979,0.000019109753,0.00001891342,0.000020468633,0.000019923127,0.000021365624,0.00002035109,0.000021193759,0.000019615321,0.000020398442,0.000019540676,0.000020834585,0.000020018946,0.000020331574,0.000019291709,0.000019471105,0.000019772746,0.000019801673,0.00001983017,0.000020678743,0.000020629896,0.000021400881,0.000020774727,0.000022082037,0.000023515273,0.000026359601,0.000024484567,0.000016618884,0.000010279373,0.000013092252],[0.000015494288,0.000012981526,0.0000100876505,0.00001602931,0.000027712007,0.00003406339,0.000028303386,0.000024878886,0.000022374159,0.000021481383,0.00002063202,0.000019936566,0.00002030737,0.000019916175,0.000020106076,0.000019700281,0.000020601878,0.000020606654,0.00002049197,0.000019616387,0.00002076926,0.000020889198,0.000021020349,0.000019974226,0.00002078406,0.000020449179,0.00002074606,0.000019735764,0.000020364136,0.00002056929,0.000020710339,0.00001994288,0.000020686179,0.000020605887,0.000021105316,0.00002026226,0.000021264314,0.000021154201,0.000021305335,0.000020361533,0.000021266624,0.000021169337,0.00002173339,0.000020592233,0.000020875137,0.000020804368,0.000020569565,0.000019869944,0.000020574333,0.00002071984,0.000021048052,0.000019749887,0.000020814568,0.0000208746,0.00002114803,0.000020240204,0.000021371023,0.000021000113,0.000021329466,0.000019913934,0.000020828766,0.000020799585,0.00002062118,0.0000194769,0.00002023565,0.000020314053,0.000020707357,0.000019378851,0.000020793537,0.000020718953,0.000021164451,0.000020074023,0.000021230557,0.000020733341,0.000021134842,0.000019764188,0.00002078103,0.000020760606,0.000020655289,0.000019463809,0.000020299995,0.000020313104,0.00002073518,0.000019474151,0.000020858659,0.000020748275,0.000021194628,0.00002011885,0.00002129518,0.000020790227,0.000021188403,0.000019811005,0.00002080903,0.000020786736,0.000020663878,0.000019469342,0.000020310217,0.000020310259,0.000020729822,0.000019480038,0.000020857507,0.000020762624,0.000021208822,0.000020116931,0.000021258027,0.00002077429,0.000021177857,0.000019796462,0.000020791475,0.000020772786,0.000020643336,0.000019457628,0.000020298989,0.000020293084,0.000020706982,0.000019467838,0.000020836314,0.000020728023,0.000021158397,0.00002009626,0.000021259528,0.000020770092,0.000021169559,0.000019798992,0.000020790325,0.000020766487,0.00002063078,0.000019441899,0.00002027438,0.000020290008,0.000020708601,0.00001946173,0.000020837586,0.000020733401,0.00002116427,0.000020097794,0.000021262285,0.000020761001,0.000021158256,0.000019792875,0.000020792526,0.000020767398,0.000020650543,0.000019470064,0.000020316398,0.000020297595,0.000020704138,0.00001947064,0.000020850865,0.000020736526,0.000021162716,0.000020096319,0.000021255453,0.000020752312,0.000021152164,0.000019791705,0.000020792268,0.000020771677,0.00002064304,0.000019456404,0.000020291169,0.000020283644,0.000020699243,0.000019455587,0.00002083876,0.0000207335,0.000021177233,0.000020104044,0.00002127131,0.000020771677,0.000021173495,0.00001981191,0.00002080764,0.00002078763,0.00002065795,0.00001946622,0.000020275558,0.00002028935,0.000020691012,0.000019429037,0.000020842574,0.000020748155,0.000021256283,0.000020234203,0.000021393475,0.00002091555,0.000021203909,0.000019735164,0.000020551153,0.000020556092,0.000020310083,0.000019251222,0.000019852952,0.000020017935,0.000020444188,0.000019270048,0.000020617837,0.00002080419,0.000021305557,0.000020141291,0.000021347578,0.000020875337,0.000021255879,0.000020104964,0.000021320722,0.000020964875,0.000020821853,0.000019787762,0.000020737434,0.000020482066,0.000020842852,0.00002015107,0.000021364522,0.000021276544,0.000021590788,0.000021179616,0.000022430644,0.000022154005,0.000022082266,0.000021100082,0.000021298672,0.000021313483,0.000020753105,0.000020030346,0.000020199788,0.000020327194,0.000020422869,0.000019654906,0.000020871832,0.000020786003,0.000021624004,0.000021032904,0.00002219177,0.000021266867,0.0000214855,0.000020779622,0.000021186968,0.000021203097,0.000020800459,0.000020423338,0.000019852421,0.000020178511,0.000020624819,0.000020793736,0.000020715732,0.000021315233,0.000020990843,0.000021256445,0.000021155493,0.000021446585,0.00002407757,0.000024708008,0.000025334728,0.000017490378,0.0000107993565,0.000013019253],[0.000014951722,0.000012001988,0.000010427753,0.000013863181,0.000025407362,0.000033247026,0.000026320164,0.000024089535,0.000021075046,0.000020921114,0.000019664805,0.000019982914,0.000018970955,0.000019445608,0.000019217232,0.00001981297,0.000019563948,0.000020535794,0.000019406056,0.000019891613,0.00001949894,0.00002060496,0.000019377263,0.000019617042,0.000018823073,0.000020136278,0.00001909041,0.000019878225,0.000019077872,0.000020311787,0.00001898788,0.000019413423,0.000018794195,0.00002015257,0.00001934565,0.000020213585,0.000019701034,0.000020681307,0.000019411516,0.00001975678,0.000019190584,0.000020610329,0.000019804978,0.000020284551,0.000019581941,0.000020114976,0.000018898618,0.000019154875,0.00001877046,0.000020131401,0.000019125653,0.000019623028,0.000019197687,0.000020249625,0.000019021807,0.000019610328,0.000019028992,0.00002043076,0.00001919192,0.000019611394,0.000019134464,0.000020099827,0.000018715891,0.000018822482,0.000018301464,0.000019670864,0.000018649007,0.000019194813,0.000018931069,0.000020133955,0.000018880388,0.000019498662,0.00001877286,0.000020204585,0.000018907054,0.000019407795,0.000018972763,0.000020045729,0.000018647424,0.00001881749,0.000018269013,0.000019697276,0.000018664985,0.000019278725,0.00001897157,0.000020168201,0.000018911618,0.000019547684,0.000018829467,0.000020264462,0.000018972856,0.000019458223,0.000019005669,0.000020059117,0.000018671217,0.000018837674,0.000018291832,0.00001970139,0.000018673743,0.000019282934,0.00001898663,0.000020181822,0.000018933506,0.00001955268,0.000018818604,0.000020241305,0.000018964029,0.000019431074,0.000018984203,0.000020039708,0.00001866221,0.000018826413,0.000018277728,0.000019682124,0.000018658007,0.000019266428,0.000018970231,0.00002015084,0.000018897212,0.000019522664,0.000018814299,0.000020239915,0.000018963665,0.000019441788,0.00001900083,0.000020049476,0.000018650075,0.000018800614,0.000018259188,0.000019672514,0.0000186539,0.00001925864,0.000018964589,0.000020152742,0.000018899285,0.000019522124,0.00001880533,0.00002023013,0.00001894438,0.000019426869,0.000018986973,0.00002004764,0.00001866568,0.000018840045,0.000018284456,0.000019680378,0.000018649256,0.000019262809,0.000018972276,0.000020155185,0.000018893825,0.000019518364,0.000018795952,0.00002021935,0.000018937153,0.000019424295,0.000018990524,0.000020045367,0.000018648705,0.000018812576,0.00001826429,0.000019669962,0.000018639406,0.000019248359,0.000018954715,0.000020147823,0.000018891375,0.000019516112,0.00001880169,0.000020241401,0.000018959543,0.000019451692,0.000019005705,0.000020061067,0.000018656834,0.000018810028,0.000018254663,0.000019666417,0.000018619296,0.000019221081,0.000018930203,0.000020148265,0.000018960609,0.00001963503,0.000018937695,0.000020388912,0.000018997642,0.000019365974,0.000018835715,0.000019853711,0.000018443261,0.000018541508,0.000017969958,0.000019380017,0.000018396746,0.000018999961,0.000018812181,0.000020153166,0.00001904911,0.000019612702,0.000018925544,0.000020346899,0.000019305548,0.00001982773,0.000019293273,0.00002026651,0.000018986791,0.000019119307,0.000018713929,0.00002009858,0.000019542988,0.00002032727,0.000019888977,0.000020898582,0.000019936395,0.000020734191,0.000020358368,0.0000217699,0.000020869962,0.000021247264,0.000020275695,0.000020952502,0.000019777272,0.00001960741,0.000018805025,0.000019856607,0.00001900393,0.000019739813,0.00001923366,0.000020620002,0.00001966385,0.000020581101,0.000019581006,0.000020934107,0.000019888863,0.000020978136,0.000019907287,0.000021111999,0.00001945735,0.000019703213,0.000018835553,0.000019647934,0.000020342202,0.000020566269,0.000020427233,0.000020871594,0.000020813277,0.000021551887,0.00002070467,0.000021196365,0.00002251822,0.0000253298,0.000024918922,0.000016827564,0.0000107140695,0.000013290156],[0.000015326517,0.000011166521,0.000010292242,0.00001377939,0.000026747513,0.000036883677,0.00002977002,0.000024637682,0.000022341963,0.0000216185,0.000021293292,0.000019850473,0.0000200723,0.000019610758,0.000020182362,0.000019482788,0.000020930474,0.000020599029,0.0000215464,0.000019711819,0.000021066648,0.000020494923,0.000020848282,0.00001928724,0.000020155107,0.000019396897,0.000020367692,0.000019082892,0.00002034944,0.00001978078,0.00002023675,0.000018814908,0.000019889205,0.00001937037,0.000020433214,0.000019402929,0.0000210051,0.000020386831,0.000020895794,0.000019381847,0.000020365302,0.000019938505,0.000021002137,0.000019643945,0.000020651429,0.000019991036,0.000020165086,0.000018806477,0.000019704716,0.000019414349,0.000020412297,0.000018906316,0.000020301155,0.000019737628,0.000020186386,0.000018795163,0.000020015033,0.000019460635,0.000020433545,0.000018757524,0.000019971865,0.000019517507,0.000019744914,0.000018271174,0.000019170062,0.000018950252,0.000019966725,0.000018409539,0.00001993822,0.000019463048,0.000020091395,0.000018587094,0.000019876557,0.000019185058,0.000020195088,0.000018502613,0.000019769937,0.000019388777,0.000019679926,0.000018189341,0.000019176645,0.000018931503,0.000019988938,0.000018449382,0.000020010166,0.000019465238,0.000020134512,0.000018640225,0.000019941757,0.000019238722,0.000020272484,0.000018574727,0.000019812269,0.000019422589,0.000019706971,0.000018227594,0.000019205287,0.000018952638,0.000019989244,0.000018463006,0.00002002414,0.000019483829,0.000020149053,0.000018663062,0.00001993493,0.00001924542,0.000020250167,0.00001855281,0.00001979631,0.000019414034,0.000019699924,0.000018217794,0.000019194684,0.00001893683,0.000019971161,0.000018457758,0.000020019022,0.000019470046,0.000020131441,0.000018640045,0.00001992463,0.000019234925,0.000020261139,0.000018571556,0.00001982102,0.000019434614,0.000019704754,0.000018205481,0.000019180065,0.000018939085,0.000019969428,0.00001845137,0.000020008734,0.000019465962,0.000020126123,0.000018634002,0.000019914827,0.000019218864,0.00002024061,0.000018552899,0.000019808358,0.000019428202,0.000019711613,0.00001821682,0.00001919022,0.000018923236,0.000019958632,0.000018447676,0.000020012914,0.000019458612,0.000020115127,0.000018622137,0.000019904099,0.000019205048,0.000020231173,0.000018546441,0.000019799445,0.000019411775,0.000019689463,0.000018198345,0.000019177485,0.000018918128,0.000019952562,0.000018433413,0.00001998995,0.000019447816,0.000020107456,0.000018612389,0.00001990167,0.000019218258,0.000020253237,0.000018566669,0.000019813291,0.000019414016,0.000019683248,0.000018194962,0.000019159626,0.000018910463,0.000019942403,0.000018392237,0.000019952144,0.000019415256,0.000020140447,0.000018730872,0.000020003545,0.00001935547,0.000020280644,0.000018517334,0.000019604082,0.000019167412,0.000019328907,0.000017942422,0.000018819233,0.000018633169,0.000019694666,0.000018165729,0.00001969829,0.000019357629,0.000020189773,0.00001873784,0.000020050089,0.00001950279,0.000020636327,0.000019062958,0.000020199479,0.000019539893,0.000019846611,0.000018741397,0.000019693218,0.00001947989,0.000020745741,0.000019724157,0.00002109061,0.000020287647,0.000020996387,0.000020056706,0.000021258535,0.000021007525,0.000022293181,0.000020991984,0.000021467888,0.000020774429,0.00002088312,0.000019639167,0.00001997278,0.000019465795,0.000020290277,0.00001888154,0.000020354175,0.000019621533,0.000020340127,0.000019247567,0.000020545647,0.000019908864,0.00002084478,0.000019775802,0.000020796017,0.000020361147,0.000020174779,0.000019187511,0.000019073159,0.000019164469,0.000020136547,0.000019920773,0.000020429006,0.000020064339,0.000020407138,0.000020284473,0.000019959147,0.000020184845,0.000022406743,0.000023980614,0.000026257288,0.000017030774,0.000011269931,0.000012868447],[0.000015721122,0.000012271931,0.000011422628,0.000015052241,0.000027994412,0.00003474223,0.000027112163,0.000023292041,0.000020452942,0.000020605,0.000019431742,0.00001961031,0.000018879686,0.000019173718,0.000018569235,0.000019062194,0.000019061703,0.000020081683,0.00001924041,0.000019280618,0.000019435633,0.000020213798,0.000019222016,0.00001928847,0.000018288763,0.000019212284,0.0000181667,0.000018641183,0.000018292007,0.000019399653,0.000018275932,0.000018754035,0.000018053817,0.000019497193,0.000018651765,0.000019502864,0.000019376837,0.000020622185,0.000019240282,0.000019507683,0.000018662404,0.000019930672,0.000018799985,0.000019077397,0.000018916595,0.00001971684,0.000018636136,0.000018817582,0.000018188195,0.000019484442,0.000018409171,0.000018708075,0.000018645007,0.000019686946,0.000018628709,0.00001894445,0.00001834111,0.000019754632,0.000018463641,0.00001872546,0.00001846584,0.00001951064,0.000018149176,0.000018318822,0.000017773635,0.000019131125,0.000018080023,0.000018406221,0.000018365017,0.00001959879,0.000018415667,0.000018776745,0.000018155477,0.000019593726,0.00001827058,0.000018546565,0.000018254297,0.000019435096,0.000018024537,0.000018266592,0.000017734186,0.000019159479,0.000018100329,0.000018468465,0.000018404186,0.00001965622,0.000018464221,0.000018837962,0.000018207493,0.000019649977,0.000018330775,0.000018604527,0.00001830129,0.00001945711,0.000018053594,0.000018300889,0.000017767874,0.00001917136,0.000018111656,0.000018475599,0.00001843062,0.000019674015,0.000018485856,0.000018854083,0.000018225213,0.00001965633,0.000018335251,0.000018580839,0.000018288554,0.000019440713,0.000018041907,0.000018275756,0.000017759523,0.000019158913,0.00001809693,0.000018461827,0.000018416107,0.000019655543,0.000018469485,0.000018826575,0.000018211105,0.000019643232,0.000018331071,0.00001858869,0.000018300801,0.000019450355,0.000018049497,0.000018276436,0.00001775776,0.00001916414,0.000018100813,0.000018455172,0.000018406854,0.00001964683,0.00001846142,0.000018815932,0.00001819786,0.000019628438,0.000018317092,0.00001858449,0.000018297731,0.000019453157,0.00001804411,0.000018276245,0.000017747907,0.00001915148,0.000018093202,0.000018461069,0.000018409222,0.000019648834,0.000018453184,0.000018812398,0.00001818993,0.000019621719,0.000018307295,0.000018571964,0.000018285467,0.000019437117,0.000018032773,0.00001826607,0.000017741952,0.00001914642,0.000018083025,0.000018446655,0.000018396062,0.00001963868,0.000018445318,0.000018808432,0.000018185438,0.00001962945,0.000018324465,0.000018595942,0.000018299388,0.00001944978,0.000018033496,0.000018257919,0.000017726932,0.000019144483,0.000018075403,0.000018440463,0.000018372393,0.000019657531,0.000018528744,0.000018953595,0.000018302424,0.000019757214,0.000018348896,0.000018528834,0.000018090182,0.000019160392,0.000017741391,0.000017995424,0.000017457965,0.000018940476,0.000017949578,0.000018428264,0.000018239645,0.000019756913,0.000018578323,0.000019129046,0.000018509054,0.000019952866,0.000018764878,0.000019155897,0.000018656905,0.000019692243,0.000018337558,0.00001865865,0.000018374583,0.00001968126,0.000018969564,0.000019663774,0.00001968017,0.000020749818,0.00001976856,0.000020440055,0.000019907688,0.000021224581,0.000020146288,0.00002037348,0.00001979597,0.000020254301,0.00001926845,0.000019221961,0.000018649967,0.000019431001,0.000018469345,0.000018758668,0.000018551571,0.000019838626,0.00001889114,0.00001969551,0.00001899708,0.00002015063,0.00001877825,0.000019550107,0.000018749422,0.000020121288,0.000018826107,0.000019124958,0.000018041545,0.000019242832,0.000019234449,0.00002003625,0.000019800182,0.00002037725,0.000020263999,0.000021396514,0.000020732234,0.00002142467,0.000021900169,0.000024879953,0.000025325813,0.000018305951,0.0000109977955,0.00001353941],[0.000015431482,0.000013302849,0.000010558392,0.00001710989,0.000028425977,0.000036413334,0.000028735081,0.000023868475,0.000021622849,0.000021270762,0.000020742202,0.000019948928,0.00002033611,0.000019809191,0.000020120231,0.000019667055,0.00002041919,0.000020450485,0.000020431227,0.00001963531,0.000020844125,0.000020920697,0.000020861306,0.000019805337,0.000020066942,0.000019799765,0.000019793348,0.000018825802,0.000019623049,0.000019717367,0.00002007927,0.000019118632,0.00001994461,0.000019948397,0.000020617326,0.000019803769,0.000020996727,0.000020717529,0.000020973754,0.000019924573,0.000020607655,0.000020455402,0.000020641663,0.000019478275,0.000020094192,0.000020261063,0.000020336887,0.000019478124,0.000020278323,0.000020227604,0.000020542904,0.000019245346,0.000020220989,0.000020279831,0.000020567191,0.000019530056,0.000020427953,0.000020321766,0.000020520503,0.000019110776,0.000019913916,0.0000200516,0.000020199865,0.000019017218,0.00001992216,0.000019915968,0.000020344454,0.000019004872,0.000020166162,0.000020212005,0.000020550407,0.000019362244,0.000020327154,0.000020141215,0.000020424777,0.00001896978,0.000019809058,0.000019975618,0.00002014621,0.000018963503,0.00001990651,0.000019898824,0.000020375111,0.000019046603,0.000020234473,0.000020217807,0.000020591233,0.000019413257,0.000020381118,0.00002017199,0.000020472282,0.000019016856,0.000019843754,0.000020009593,0.000020169375,0.000019000177,0.000019932157,0.000019912017,0.00002038164,0.000019065776,0.00002025654,0.000020241305,0.000020603175,0.000019435189,0.000020387299,0.000020190582,0.000020474528,0.000019011924,0.000019820302,0.000019998968,0.00002015188,0.00001897888,0.00001992651,0.00001991196,0.000020358095,0.000019052615,0.00002023704,0.000020222493,0.000020587973,0.000019421701,0.000020380981,0.000020179225,0.000020467909,0.000019017834,0.000019830095,0.000020004803,0.000020149399,0.000018981487,0.000019922274,0.00001991044,0.00002036297,0.000019055014,0.000020231848,0.000020222764,0.000020586695,0.000019411775,0.00002037208,0.000020177858,0.000020466094,0.000019016567,0.00001982896,0.000019992503,0.00002014308,0.00001897651,0.000019918323,0.000019899526,0.00002035792,0.000019057468,0.000020242038,0.000020217576,0.00002058281,0.000019407351,0.00002036536,0.000020159585,0.000020447385,0.000019000703,0.000019816882,0.000019992884,0.000020140447,0.000018969526,0.000019906985,0.000019891233,0.000020352758,0.00001904112,0.00002022178,0.000020215475,0.000020576863,0.000019401097,0.000020358155,0.00002016997,0.000020460024,0.000019014553,0.000019825859,0.000019997671,0.000020147996,0.000018961658,0.000019897856,0.000019893947,0.00002036365,0.000019030282,0.000020231888,0.000020216265,0.000020630307,0.000019512781,0.000020421585,0.000020266203,0.0000204078,0.000018903971,0.00001953682,0.000019692448,0.000019803732,0.00001866559,0.000019576302,0.00001972267,0.000020238853,0.000018997098,0.000020172818,0.00002023125,0.00002082384,0.000019722143,0.000020702164,0.0000204277,0.000020647489,0.000019426665,0.000020318743,0.000020123973,0.000020207244,0.000019360048,0.000020236866,0.000020208054,0.00002043717,0.000019749265,0.000020978434,0.000020805399,0.000021210419,0.000020651683,0.00002154005,0.000021330485,0.000021155633,0.000020411986,0.000020590092,0.00002085339,0.00002061595,0.000019913688,0.000020326668,0.000020497815,0.000020268464,0.000019157269,0.000020258627,0.000020083598,0.000020813177,0.000020026202,0.000020967695,0.000020402525,0.000020259284,0.000019388872,0.000019798614,0.000020241208,0.00002016424,0.000019398618,0.000018934426,0.000019186999,0.000019384248,0.000019919613,0.000020019519,0.000020664984,0.000020880572,0.000021293981,0.00002116986,0.000021640612,0.000022979757,0.000024287916,0.000025554398,0.00001908655,0.000011392808,0.000013494229],[0.00001528139,0.000015694937,0.000011866055,0.00001726228,0.00002922047,0.00003440543,0.000027551243,0.000024397044,0.000020879397,0.000021089583,0.000019680245,0.00002011066,0.0000189808,0.000019725847,0.000019345596,0.000020193605,0.000019530858,0.000020477202,0.000019432742,0.00001976822,0.000019682573,0.000020803673,0.000019624656,0.000020066158,0.000018743487,0.000019733168,0.000018462231,0.000018683506,0.000018277082,0.000019549958,0.000018778697,0.00001959597,0.000018466757,0.000019894915,0.000019050072,0.000019918587,0.000019435023,0.000020723814,0.000019499535,0.000020246383,0.000019092104,0.000020351748,0.000018983987,0.000019103232,0.000018576675,0.000019613768,0.000018960212,0.000019668032,0.000018925617,0.000020171721,0.000018975026,0.00001910529,0.000018746116,0.000019670038,0.000019050998,0.000019651476,0.000018988369,0.000020226062,0.000018826251,0.000018835679,0.000018376055,0.000019571728,0.000018752768,0.000019256675,0.000018587643,0.000019883952,0.000018771376,0.000018954337,0.000018684415,0.000019738945,0.000018959741,0.000019482826,0.000018823828,0.000020085054,0.000018695233,0.000018718836,0.00001827039,0.000019536148,0.000018693183,0.00001922616,0.000018546476,0.000019864714,0.000018763374,0.000018997824,0.000018707378,0.000019765752,0.00001899306,0.000019544552,0.000018862338,0.000020132285,0.000018736857,0.000018757148,0.000018299894,0.00001956277,0.000018725657,0.000019263636,0.000018574816,0.000019874777,0.000018776585,0.000019014426,0.000018732926,0.000019788195,0.000019010637,0.000019559076,0.000018885808,0.000020144213,0.00001874118,0.000018753804,0.00001829042,0.000019540117,0.00001871805,0.000019244852,0.000018565766,0.000019869109,0.000018770676,0.000018999688,0.000018716873,0.00001977165,0.000019000703,0.000019550424,0.00001887648,0.000020140773,0.000018742916,0.00001875309,0.000018293542,0.000019546229,0.000018707362,0.000019234174,0.000018562792,0.00001986386,0.00001877363,0.00001900201,0.000018717086,0.000019767655,0.000018997967,0.000019534677,0.000018869678,0.000020135089,0.000018743935,0.00001874626,0.000018281578,0.00001953952,0.0000187072,0.0000192372,0.000018560066,0.000019859845,0.000018767883,0.000019006648,0.000018724104,0.000019771576,0.00001899248,0.000019531844,0.000018858813,0.000020115014,0.000018721264,0.000018734212,0.000018283672,0.000019539744,0.00001869666,0.000019223171,0.000018549748,0.000019852367,0.000018754232,0.000018984765,0.000018707024,0.000019762245,0.000018983279,0.00001952285,0.000018856816,0.00002012407,0.00001873859,0.000018751352,0.000018293787,0.00001955516,0.000018705417,0.000019224473,0.000018549254,0.000019869016,0.00001876146,0.000018998982,0.000018698409,0.000019781062,0.000019059067,0.000019669851,0.000018977687,0.000020258049,0.000018733801,0.000018652707,0.000018079922,0.00001930728,0.000018428229,0.00001892246,0.00001826532,0.000019733507,0.00001864714,0.000019050145,0.00001861553,0.000020037149,0.00001929158,0.000020011921,0.000019043879,0.000020482066,0.000019123829,0.000019552792,0.00001890947,0.000020265932,0.000019242687,0.000019807321,0.00001897528,0.000020210058,0.000019152356,0.000019700658,0.000019236062,0.000020406691,0.000019938409,0.000020925985,0.000020040397,0.00002134316,0.0000198546,0.000020215146,0.000019321942,0.000020557209,0.000019762942,0.000020314848,0.000019355746,0.000020590289,0.000019268542,0.000019471978,0.000018901323,0.00002008103,0.000019577104,0.000020448926,0.000019314553,0.000020468788,0.000018869498,0.000019321113,0.0000183187,0.000019848902,0.00001900353,0.000019666624,0.00001790149,0.000018961966,0.000018486138,0.000019441863,0.00001917231,0.000020343346,0.00002056623,0.000021721062,0.000021498638,0.000022433982,0.000023597877,0.00002572644,0.000024931898,0.000017270513,0.000011424262,0.000013645718],[0.000015875232,0.000017399378,0.000013104256,0.000019025762,0.00003221881,0.00003585381,0.000031905318,0.000025221354,0.000022844548,0.000021807384,0.000021547716,0.000019902924,0.000020398831,0.000019739851,0.000020570487,0.000019878205,0.000021086404,0.000020723577,0.000021348576,0.000019766881,0.000021179636,0.000020791931,0.000021588585,0.000019864334,0.000020499516,0.000019522795,0.00001990408,0.000018577757,0.000019824347,0.000019584424,0.000020721265,0.000019288895,0.000020274398,0.000019536577,0.000020542648,0.000019396972,0.000021033184,0.000020528902,0.000021630585,0.00001993879,0.000020841402,0.000020011215,0.000020703665,0.000018974828,0.000020067937,0.000019811212,0.000020791416,0.000019583154,0.000020524498,0.000019871763,0.000020701887,0.000018954246,0.00002011273,0.000019688749,0.000020904123,0.00001948537,0.000020581474,0.000019944819,0.000020596004,0.000018624072,0.000019775403,0.000019569357,0.000020627258,0.000019194757,0.000020227526,0.000019604344,0.000020508569,0.000018796902,0.00002007276,0.000019681765,0.00002085186,0.000019333958,0.000020468377,0.000019784497,0.000020483432,0.000018494638,0.000019689463,0.000019490722,0.00002058065,0.000019142988,0.000020202697,0.000019538384,0.000020462796,0.000018810762,0.000020109643,0.00001967895,0.000020899739,0.000019388373,0.00002052802,0.000019815578,0.000020530917,0.000018536733,0.000019716219,0.000019527337,0.000020613534,0.000019187437,0.000020232967,0.000019551058,0.000020467169,0.00001883137,0.000020126257,0.00001969998,0.000020912856,0.000019400986,0.000020541082,0.000019825802,0.00002052477,0.000018535195,0.000019709434,0.000019512558,0.000020588424,0.000019174304,0.000020222087,0.000019545578,0.00002046465,0.00001883234,0.000020122074,0.000019692505,0.000020908012,0.000019398894,0.000020541513,0.000019820547,0.000020539574,0.000018543808,0.000019709376,0.000019518364,0.000020589248,0.000019165856,0.00002021638,0.000019547442,0.000020458445,0.000018831226,0.000020117432,0.000019697914,0.00002090855,0.000019398525,0.000020533542,0.000019832478,0.000020524985,0.000018522544,0.000019700863,0.000019519815,0.000020597634,0.000019168434,0.000020217461,0.00001954323,0.000020451247,0.000018827885,0.000020120577,0.000019693218,0.000020897884,0.000019379777,0.000020517607,0.000019804866,0.00002051391,0.000018518003,0.000019701296,0.00001951371,0.000020580179,0.000019152885,0.000020205991,0.000019532328,0.000020442434,0.000018808378,0.000020103143,0.000019682911,0.000020890353,0.000019377336,0.000020512754,0.000019820529,0.000020524829,0.000018530742,0.000019707628,0.000019522347,0.000020596533,0.000019153433,0.000020204856,0.000019546622,0.000020464942,0.000018799286,0.000020097334,0.000019667976,0.000020952983,0.000019501806,0.00002063192,0.000019946074,0.000020530291,0.000018488801,0.000019500205,0.000019340763,0.000020323743,0.000018896708,0.000019915187,0.000019384508,0.000020434169,0.000018663153,0.000020075076,0.000019735351,0.000021296824,0.000019653295,0.000020768646,0.000020005835,0.000020701098,0.000019286595,0.000020369049,0.000020099116,0.000020918382,0.000019845116,0.000020469179,0.000019836261,0.000020368758,0.0000193611,0.00002043454,0.000020223399,0.00002143262,0.000020559051,0.000021460723,0.000020942134,0.000021377933,0.000020224365,0.000020801153,0.00002072842,0.000021469175,0.000020378258,0.000020890991,0.000020176569,0.000020562366,0.00001913702,0.000020160258,0.000019650539,0.000020994885,0.000019731324,0.000020810816,0.000019951935,0.000020435924,0.000019106292,0.00001982896,0.000019844436,0.000020982636,0.000019596606,0.000019500856,0.000018789877,0.000019524936,0.000018947216,0.000019791987,0.000020235553,0.000020866062,0.000020792644,0.00002095866,0.000021479846,0.000024763254,0.000024742483,0.000024260577,0.000016134594,0.000011017699,0.0000131758725],[0.000015842821,0.000018009263,0.000015813508,0.000022128812,0.000032015378,0.00003127648,0.00002703646,0.00002368603,0.000021114798,0.000020808971,0.000019554098,0.000019910536,0.000019061084,0.000019702122,0.000018948373,0.000019950983,0.000019757234,0.000020820304,0.000019549456,0.00001970979,0.000019609111,0.000020652473,0.000019628307,0.00001973345,0.000018846873,0.000019447963,0.000018526041,0.000018555129,0.000018230638,0.000019342313,0.000018568333,0.000019131727,0.000018597113,0.000019749454,0.000018923669,0.00001957912,0.0000194023,0.000020716345,0.000019573521,0.000019939056,0.000019192727,0.00002012689,0.000018939358,0.000018859226,0.000018705347,0.000019708286,0.000019107858,0.000019472627,0.000018954825,0.000020006903,0.000018996898,0.000019005869,0.000018847863,0.000019672458,0.000019097402,0.000019285859,0.00001891757,0.00001981722,0.000018830022,0.000018602665,0.000018525565,0.0000195682,0.000018806224,0.000019114237,0.000018608733,0.000019688036,0.000018720692,0.00001884486,0.000018756631,0.000019751675,0.00001897347,0.000019157524,0.000018774259,0.00001969953,0.000018697267,0.000018453835,0.000018397395,0.000019490928,0.000018712963,0.00001905425,0.000018556739,0.000019666926,0.000018692755,0.000018837763,0.000018744167,0.000019771916,0.000019010111,0.000019218001,0.000018826897,0.000019746176,0.000018734123,0.000018484834,0.000018428105,0.000019513991,0.000018750854,0.000019089008,0.000018588444,0.00001967927,0.000018700317,0.000018841823,0.000018756917,0.000019781797,0.000019020485,0.000019224692,0.00001883453,0.000019749716,0.000018736802,0.000018477838,0.00001842424,0.000019495204,0.000018716837,0.000019047457,0.000018571893,0.000019663736,0.000018700797,0.000018841016,0.000018755378,0.000019775009,0.00001900768,0.000019216717,0.00001883304,0.00001974627,0.00001874188,0.000018485556,0.000018421606,0.000019497435,0.000018730996,0.000019055724,0.00001857354,0.00001966531,0.000018701316,0.000018835948,0.000018762785,0.000019785686,0.000019026378,0.000019216663,0.000018829374,0.0000197257,0.000018715622,0.000018461104,0.00001841644,0.000019500614,0.000018733677,0.000019058394,0.000018570865,0.000019660098,0.000018690223,0.000018825658,0.000018748618,0.000019776837,0.000019008388,0.0000191969,0.000018814442,0.000019724062,0.000018718532,0.00001845864,0.000018407363,0.000019493289,0.000018722263,0.000019051799,0.00001856295,0.000019655768,0.000018680283,0.000018816667,0.000018739824,0.000019769634,0.000019008823,0.00001919917,0.00001882135,0.000019739342,0.000018735607,0.000018473256,0.000018414737,0.000019505338,0.000018736213,0.000019053163,0.00001855504,0.000019658337,0.00001867825,0.000018817025,0.00001873473,0.000019776782,0.000019096746,0.000019338384,0.000018949853,0.0000198718,0.000018778142,0.000018443841,0.000018273038,0.000019317573,0.00001850427,0.00001879389,0.000018246605,0.000019453602,0.00001855718,0.000018787654,0.000018691348,0.000020063591,0.000019234245,0.000019758985,0.000019113144,0.000020157126,0.000019063486,0.000019257664,0.000019123518,0.000020345928,0.000019308882,0.000019960042,0.000019369945,0.00002028076,0.000019171543,0.000019699153,0.000019658242,0.00002072565,0.000020067306,0.000020865804,0.000020388483,0.000021199741,0.000019983545,0.00002001177,0.000019478031,0.000020406264,0.000019649638,0.000020006673,0.00001926347,0.000019986823,0.000019007392,0.000019075651,0.000018705452,0.000019643101,0.00001912857,0.000019697482,0.000019267365,0.00001997537,0.000019082656,0.0000191206,0.00001855373,0.000019583415,0.000018943349,0.000019231386,0.000018373199,0.000018852052,0.00001901,0.00001961564,0.000019704115,0.00002102426,0.000020781523,0.000021685235,0.00002116102,0.000022417473,0.00002365285,0.000027078313,0.000024598825,0.000016559952,0.000010395533,0.000013371774],[0.000016170718,0.000017843506,0.000014631147,0.000024331035,0.000030022391,0.000029717854,0.00002645419,0.000023454668,0.000021765665,0.000021138632,0.000020953541,0.000020288962,0.000020922493,0.000020004385,0.000020325391,0.000019926965,0.000021013457,0.000020732848,0.000020874342,0.000019992218,0.000021012112,0.000021199803,0.00002107774,0.000019968666,0.000020447504,0.000020282057,0.00002057135,0.000019440195,0.000019987165,0.000020019766,0.00002021295,0.000019284847,0.000020378122,0.000020230962,0.000021006,0.000020161164,0.000021246455,0.000021078504,0.000021309299,0.000020243311,0.000021018604,0.000020724507,0.000021030515,0.00001972077,0.00002036837,0.000020568094,0.000020632493,0.000019852518,0.00002067959,0.000020566386,0.000021002576,0.000019791629,0.000020641446,0.000020556976,0.000020773497,0.000019818808,0.000020564326,0.000020480737,0.000020971014,0.000019563162,0.000020383215,0.000020401067,0.000020515103,0.000019494813,0.000020340747,0.000020218522,0.000020712512,0.000019610758,0.00002059186,0.00002052344,0.000020732017,0.000019671108,0.000020435826,0.000020343427,0.000020802898,0.000019433113,0.00002029173,0.000020307467,0.000020458268,0.000019395306,0.000020319538,0.000020184152,0.000020677935,0.00001959296,0.000020598049,0.000020527177,0.000020781285,0.000019720883,0.000020502037,0.000020382613,0.00002084822,0.000019456162,0.00002030923,0.000020342532,0.000020488435,0.000019423645,0.00002034721,0.000020192989,0.000020677342,0.000019596026,0.00002060121,0.000020530957,0.000020783367,0.000019727127,0.000020512247,0.000020388057,0.000020847086,0.000019459614,0.000020302588,0.000020330972,0.000020454132,0.000019391146,0.000020317793,0.000020186846,0.000020670483,0.000019597204,0.000020599835,0.000020526102,0.000020775005,0.000019717085,0.000020511405,0.000020389707,0.000020846352,0.000019464105,0.000020301874,0.000020333127,0.000020464531,0.00001941133,0.000020329906,0.0000201901,0.000020667743,0.000019608962,0.000020615871,0.000020552308,0.00002078404,0.000019712743,0.000020474607,0.000020361844,0.000020824951,0.000019457091,0.000020302705,0.000020331478,0.000020462307,0.000019403355,0.000020325526,0.00002017955,0.000020660333,0.000019589823,0.000020599147,0.0000205298,0.000020776768,0.000019710786,0.000020493222,0.00002037243,0.000020825984,0.000019443643,0.000020293859,0.000020324362,0.000020460475,0.000019400266,0.000020322503,0.000020174588,0.000020651429,0.000019582147,0.000020588148,0.000020527394,0.000020775104,0.000019719304,0.000020493711,0.000020388738,0.000020842832,0.000019459483,0.00002030077,0.000020330333,0.000020470174,0.000019413608,0.000020301253,0.000020172894,0.000020659643,0.000019589897,0.000020598538,0.000020545782,0.000020833513,0.000019843565,0.000020612706,0.000020523323,0.000020858659,0.000019445773,0.000020112271,0.000020160798,0.000020228066,0.000019247971,0.000019916213,0.000019947634,0.000020591153,0.000019578636,0.000020689118,0.000020704218,0.000021065382,0.000019915567,0.000020958058,0.000020655722,0.00002114599,0.000019963658,0.000021093063,0.000020795796,0.000020925407,0.000020059442,0.000020971474,0.000020537242,0.000020904921,0.000020276739,0.000021492448,0.000021314216,0.00002158562,0.00002109093,0.000022122378,0.000021891607,0.000021962851,0.00002082787,0.000021164069,0.0000211675,0.000021008966,0.000020188714,0.000020647252,0.000020439431,0.000020595453,0.00001979618,0.000020552507,0.000020380709,0.00002080288,0.000020058924,0.000021100706,0.000020928079,0.000021449387,0.000020353747,0.000020487496,0.0000206006,0.000020179745,0.00001992349,0.000019456776,0.000019917543,0.000020480993,0.000020627827,0.000020945132,0.000021582924,0.000021347782,0.000021685339,0.000021429247,0.00002200411,0.0000247527,0.000025187655,0.000024817653,0.000017202461,0.0000108067015,0.000013217252],[0.000015663776,0.00001581663,0.000014758196,0.000021892442,0.000029437344,0.00002851696,0.00002382204,0.000022446224,0.000019778083,0.000020451129,0.000019574974,0.000020515083,0.000019144247,0.000019811061,0.000019065503,0.000019980038,0.000019325165,0.000020628675,0.000019438914,0.000020240726,0.000019692354,0.0000208888,0.00001968783,0.000019764695,0.000019050507,0.000020231404,0.000019610814,0.000020008525,0.000019256931,0.000020033995,0.000018862102,0.000019083602,0.00001850577,0.00001993149,0.000019283376,0.000020282618,0.000019552699,0.000020611546,0.000019523613,0.000019899659,0.00001919148,0.00002038131,0.000019549772,0.00001982223,0.000019151845,0.000020093521,0.000019170646,0.000019632613,0.000018924246,0.000020332622,0.000019343845,0.00001996579,0.000019280305,0.00002020659,0.000019389647,0.000019704357,0.000019179699,0.000020273374,0.000019632913,0.000019687604,0.000019169787,0.000019953684,0.0000190486,0.00001938765,0.000018633471,0.000020044257,0.000019145233,0.000019831818,0.000019211588,0.00002020422,0.000019262516,0.000019558145,0.000019005505,0.000020150226,0.000019463845,0.000019517283,0.00001907354,0.000019863483,0.000018967392,0.000019302584,0.00001858153,0.000020021582,0.000019127076,0.000019829831,0.00001920547,0.000020205336,0.000019280747,0.000019596455,0.000019046094,0.000020178762,0.000019492805,0.000019536801,0.000019085532,0.00001987379,0.000018993076,0.000019328649,0.000018604776,0.00002003262,0.000019135978,0.000019837946,0.000019210085,0.000020205895,0.000019284626,0.000019602081,0.000019055597,0.000020191506,0.000019501971,0.000019539837,0.000019090901,0.00001987614,0.000018984456,0.000019305051,0.000018583993,0.000020018679,0.000019141855,0.000019839401,0.000019202556,0.00002019455,0.000019282272,0.000019598006,0.000019049146,0.000020189791,0.000019502884,0.000019538646,0.000019089426,0.000019876425,0.000018994599,0.000019316913,0.00001859972,0.000020028456,0.000019154675,0.000019858955,0.000019236117,0.000020214105,0.00001927025,0.000019568759,0.00001903511,0.000020183881,0.000019511757,0.000019546118,0.000019097566,0.000019871137,0.000018983987,0.000019307445,0.000018591385,0.000020019728,0.000019139794,0.000019834995,0.00001921135,0.000020202235,0.00001928174,0.000019588962,0.000019043788,0.000020175858,0.000019495874,0.000019526853,0.000019085459,0.00001986297,0.000018977813,0.000019311423,0.00001859424,0.00002002076,0.00001912766,0.000019824385,0.000019204113,0.000020195916,0.000019285031,0.000019593374,0.000019052326,0.000020193951,0.000019522144,0.000019548728,0.000019097948,0.000019871479,0.00001899362,0.000019308714,0.000018580431,0.000020006197,0.000019114985,0.000019811174,0.000019204903,0.000020204121,0.000019376042,0.000019718513,0.000019199939,0.000020341833,0.000019612085,0.000019536372,0.000018997642,0.000019737214,0.000018831028,0.000019083713,0.00001830403,0.000019698102,0.00001885883,0.00001962348,0.000019166917,0.000020352447,0.000019345061,0.00001972015,0.000019007608,0.00002023287,0.000019446796,0.000019772368,0.000019195088,0.000020235302,0.00001924542,0.000019731286,0.000019001174,0.000020297923,0.000019588777,0.000020430818,0.000019869205,0.00002086059,0.000020152838,0.000020739213,0.000020263902,0.000021497388,0.000020875197,0.00002110266,0.000020005493,0.000020792742,0.000019846479,0.000020087084,0.000019066048,0.000020195512,0.000019450708,0.000020193875,0.000019422701,0.000020304544,0.00001961201,0.000019893681,0.000019496765,0.000020677382,0.000020552878,0.000021157268,0.000020315952,0.000021003198,0.00001978895,0.000019757063,0.000018867986,0.00001962683,0.000020330488,0.00002053311,0.00002035895,0.000020977453,0.000020964175,0.000021797008,0.000020999732,0.000021560027,0.000023020204,0.00002565429,0.00002407036,0.000016503165,0.0000106209445,0.000013449481],[0.000015787891,0.000014393358,0.000013942134,0.000020518899,0.000031679807,0.000030705356,0.00002722632,0.000022939557,0.000021290793,0.000020911162,0.000021179048,0.00002010736,0.00002054351,0.000019559655,0.00001993744,0.000019099898,0.000020379252,0.000020073947,0.000021292111,0.000019731042,0.000021031457,0.000020709333,0.000021012194,0.000019684301,0.000020291749,0.000019736668,0.000020840409,0.00001971823,0.000020768626,0.000020121613,0.00002045671,0.000018859046,0.000019856494,0.000019399782,0.000020740481,0.000019514808,0.000020917525,0.000020324615,0.000020990561,0.000019694402,0.000020441672,0.000020043455,0.000021145186,0.000019596082,0.000020721265,0.000020149764,0.000020820802,0.000019387448,0.000020249992,0.000019858842,0.000021015097,0.000019465591,0.000020597909,0.000020105597,0.000020778927,0.000019743087,0.00002044996,0.000020138756,0.00002127693,0.000019596568,0.000020574922,0.000019990082,0.000020687856,0.000019259447,0.000020078847,0.000019691828,0.000020847565,0.000019340652,0.000020481713,0.00002003606,0.00002069334,0.000019562007,0.000020306868,0.000019984174,0.000021080916,0.000019440564,0.000020449297,0.00001990818,0.000020619076,0.000019163299,0.000020037529,0.000019676192,0.000020821,0.000019341262,0.000020469022,0.000020031855,0.000020714824,0.000019598474,0.000020349458,0.000020028838,0.000021124284,0.000019471234,0.000020464417,0.000019921248,0.000020639261,0.00001919117,0.00002006455,0.000019691623,0.000020821793,0.000019351888,0.000020470214,0.000020034167,0.0000207118,0.000019609392,0.000020354059,0.000020040645,0.000021141213,0.000019483716,0.00002047855,0.000019938561,0.00002064176,0.000019182058,0.000020047106,0.000019684827,0.000020818854,0.000019359844,0.000020467207,0.000020022326,0.000020706646,0.00001961663,0.000020357902,0.000020039288,0.00002113575,0.00001948054,0.000020471169,0.000019940293,0.000020642528,0.000019195691,0.000020065716,0.000019706238,0.000020848956,0.000019383842,0.000020486266,0.000020028283,0.000020688507,0.000019599427,0.000020354759,0.000020048445,0.000021142725,0.000019497342,0.000020487008,0.000019935957,0.000020634656,0.000019182955,0.000020056821,0.000019693576,0.000020820662,0.000019357058,0.000020472322,0.000020034913,0.00002070963,0.000019606287,0.00002034752,0.000020034358,0.000021133854,0.000019479146,0.000020463985,0.000019922254,0.000020636407,0.000019181034,0.000020056648,0.000019681898,0.000020803,0.000019343863,0.000020458814,0.000020024178,0.00002070649,0.000019606887,0.00002035072,0.00002004206,0.000021147363,0.000019502158,0.00002048195,0.000019932726,0.000020640737,0.000019188243,0.000020035466,0.000019666624,0.000020801292,0.000019316598,0.000020449257,0.000020030748,0.000020770092,0.000019716652,0.000020465528,0.000020152724,0.00002120051,0.000019546416,0.000020344803,0.00001976558,0.000020354117,0.000018961731,0.000019717309,0.000019252397,0.00002049811,0.000018973416,0.000020352078,0.000019947405,0.000020793615,0.000019440564,0.00002038306,0.000019891539,0.000021189717,0.000019417552,0.000020525376,0.000019911162,0.000020524241,0.000019307667,0.000020196378,0.000019778103,0.00002083244,0.000019746327,0.000020826461,0.000020368312,0.00002114206,0.000020505167,0.00002125442,0.00002109622,0.00002271176,0.000021118181,0.000021486832,0.000020683161,0.00002120872,0.000019956862,0.000020282618,0.00001973123,0.00002072496,0.000019555497,0.000020467363,0.000019900683,0.00002058069,0.000019834066,0.000020484586,0.000020443875,0.000022086288,0.000021019088,0.000021718286,0.00002115628,0.000021155734,0.000019820642,0.0000195629,0.000019455272,0.000020418256,0.000020040932,0.000020648258,0.000020204141,0.0000205617,0.00002045275,0.000020012629,0.000020361029,0.000022867063,0.000024010935,0.000025787751,0.000016567295,0.000011064851,0.000012915314],[0.000016390048,0.000013945154,0.000014524629,0.000020735853,0.00003290711,0.000030850733,0.000025127485,0.000022269895,0.000019669738,0.000020158817,0.000019074141,0.000019810192,0.000018985,0.000019478533,0.000018338364,0.000019004963,0.000018734801,0.000020151321,0.000019118012,0.00001969737,0.000019578503,0.000020804584,0.000019626435,0.000019864505,0.000018811086,0.000019692354,0.00001887299,0.000019231751,0.000019037414,0.00001973902,0.000018717445,0.000018808809,0.000018175606,0.000019496467,0.000018835553,0.000019591354,0.000019449613,0.00002055076,0.000019363888,0.000019678575,0.000018911238,0.00001995907,0.000019129027,0.000019277253,0.000019166862,0.000019909929,0.000019054723,0.000019326899,0.000018785899,0.000020146152,0.000019157087,0.00001968383,0.00001938094,0.000020418547,0.00001951991,0.000019962192,0.000019373289,0.00002032789,0.000019447927,0.00001942409,0.000019334679,0.000019911902,0.000019018597,0.00001928082,0.000018772253,0.000020032581,0.000019069394,0.000019597146,0.000019364848,0.000020439196,0.000019431334,0.000019853936,0.000019250963,0.000020254203,0.00001933916,0.000019322806,0.000019226893,0.000019855868,0.000018932784,0.000019208033,0.000018738088,0.00002003306,0.000019070285,0.000019613937,0.000019377558,0.000020456455,0.000019455736,0.000019876215,0.000019277933,0.000020275038,0.000019365089,0.00001933488,0.000019244448,0.000019861682,0.000018949022,0.000019228615,0.000018762821,0.000020039863,0.000019071922,0.000019619643,0.000019390294,0.000020464358,0.000019457944,0.0000198787,0.000019282732,0.000020282096,0.000019374824,0.000019339732,0.000019248853,0.000019863843,0.000018953559,0.000019221392,0.000018758688,0.0000200386,0.000019075633,0.000019621382,0.000019392273,0.000020467169,0.000019459838,0.000019884938,0.000019291507,0.000020287125,0.000019387337,0.000019346999,0.000019252102,0.000019867139,0.000018973307,0.000019237108,0.000018777266,0.000020053742,0.000019103923,0.000019641882,0.0000193949,0.000020456377,0.000019455883,0.000019881923,0.00001928687,0.000020281128,0.000019384728,0.000019347368,0.000019253865,0.000019852574,0.000018950035,0.000019216663,0.0000187613,0.000020036136,0.000019080964,0.000019620467,0.000019394049,0.00002046338,0.000019458055,0.000019873924,0.000019285419,0.000020279329,0.000019375988,0.000019331617,0.000019240319,0.000019848523,0.00001894756,0.000019217525,0.000018758383,0.00002003239,0.000019069976,0.00001961031,0.000019380126,0.000020450818,0.000019453435,0.000019876576,0.000019290072,0.000020285364,0.000019395287,0.000019357518,0.000019258034,0.000019857176,0.000018951896,0.00001921025,0.000018735267,0.000020013144,0.000019049256,0.000019573092,0.000019363999,0.00002045033,0.000019552774,0.000019991512,0.000019399431,0.000020389205,0.000019426907,0.000019317298,0.000019114566,0.000019670882,0.000018720442,0.00001896884,0.000018388204,0.000019640347,0.000018696233,0.000019195784,0.00001903609,0.00002028523,0.00001929942,0.000019676943,0.000019096273,0.000020161817,0.000019221869,0.000019181418,0.000018938419,0.000019698178,0.00001865228,0.00001902803,0.000018804467,0.000019938543,0.000019147643,0.000019759984,0.000019739491,0.000020686,0.00001999481,0.000020367126,0.000019931433,0.000020912837,0.000020319634,0.000020276835,0.000019776007,0.00002008107,0.000019277933,0.00001938044,0.000018683362,0.00001966338,0.000018949277,0.000019559917,0.000019244228,0.000020323898,0.000019705016,0.00002010621,0.00001942346,0.000020419753,0.00001979837,0.00002043187,0.00002000822,0.000020737989,0.000019996965,0.000019770841,0.000018751103,0.000019272878,0.000019577814,0.000019900039,0.000020045005,0.000020306577,0.000020412783,0.000021271413,0.000020622636,0.000021366355,0.000021945472,0.000025301866,0.000025307947,0.000017547916,0.000010675344,0.000013417237],[0.000016114342,0.0000141182945,0.0000125417,0.000021906852,0.000033318185,0.00003224398,0.000027156955,0.00002339404,0.000021493186,0.00002104512,0.000020640717,0.000020151301,0.000020716148,0.000019953399,0.000020151014,0.000019706651,0.000020526377,0.0000203694,0.000020628184,0.00001981344,0.000021143793,0.000021199923,0.000021218126,0.000020315216,0.000020437112,0.000020234163,0.000020197842,0.0000193415,0.000020054793,0.000020229669,0.000020484822,0.000019455421,0.000019974857,0.000020151609,0.000020785052,0.000019987165,0.000021144037,0.000020839196,0.00002104143,0.000020279174,0.000020604924,0.00002067817,0.000020858122,0.000019928677,0.000020437676,0.000020552621,0.000020665948,0.000019903093,0.000020625252,0.000020815838,0.000021152668,0.000020053876,0.000021058513,0.000020874919,0.000021201096,0.000020539142,0.000021070444,0.00002094589,0.00002099657,0.000019903342,0.00002049086,0.000020494415,0.000020720552,0.000019807603,0.000020592803,0.000020679769,0.000020975354,0.000019906644,0.000020977994,0.000020811909,0.000021189657,0.000020381582,0.000020968093,0.000020809446,0.000020905958,0.000019793555,0.000020437228,0.000020449454,0.000020685073,0.00001976249,0.000020572093,0.00002069048,0.000020964995,0.000019937934,0.000020995347,0.00002081838,0.000021191554,0.000020406205,0.000020978394,0.000020837288,0.000020934189,0.000019826597,0.000020448691,0.000020473726,0.000020702362,0.000019780158,0.00002059516,0.000020696438,0.000020964255,0.000019943298,0.000021003778,0.00002083087,0.00002119105,0.000020412257,0.000020984298,0.00002085019,0.000020942394,0.000019827503,0.000020445143,0.000020474821,0.000020700485,0.00001978097,0.000020598694,0.000020700842,0.000020970394,0.000019950317,0.000021003798,0.000020836036,0.00002118725,0.000020418955,0.000020991243,0.000020861029,0.000020949406,0.000019847672,0.000020451773,0.000020488864,0.000020717453,0.00001980428,0.000020604884,0.000020719624,0.000020978476,0.000019957566,0.000021006963,0.000020831467,0.000021185897,0.000020414107,0.000020980535,0.000020854863,0.000020943553,0.000019835847,0.000020438592,0.00002046955,0.000020694368,0.000019778421,0.000020591291,0.000020701671,0.000020972633,0.000019953322,0.00002100524,0.000020831429,0.00002118802,0.000020410993,0.000020978094,0.00002084156,0.000020929298,0.000019821266,0.000020430722,0.000020461157,0.000020686928,0.000019768428,0.000020591271,0.00002069127,0.00002095784,0.000019936128,0.00002098818,0.000020818756,0.000021181977,0.000020408697,0.000020981777,0.00002085148,0.000020941974,0.00001984097,0.00002044251,0.000020468106,0.000020688862,0.000019764318,0.000020552114,0.000020681562,0.000020942933,0.00001990746,0.000020966414,0.000020820979,0.000021243153,0.000020502821,0.00002106938,0.000020898242,0.000020865325,0.00001975143,0.00002023675,0.000020295523,0.000020440893,0.000019521844,0.000020158068,0.000020254107,0.000020626805,0.000019505824,0.000020649064,0.000020677639,0.000021130167,0.000020216728,0.000020940817,0.000020680478,0.000020868769,0.00001963016,0.000020407295,0.00002029651,0.000020388445,0.000019698402,0.000020575371,0.000020483962,0.000020697998,0.000019940862,0.000021066286,0.000020949905,0.0000211996,0.0000209574,0.00002137341,0.000021370943,0.000021300682,0.000020479489,0.000020663465,0.000020712729,0.0000207387,0.000019946512,0.00002025059,0.000020467638,0.000020483609,0.00001967184,0.000020690677,0.000020649104,0.000021124748,0.000020519976,0.000020869267,0.00002049596,0.00002066252,0.000019852821,0.000020218038,0.000020724781,0.000020607518,0.000019919653,0.000019020174,0.000019259282,0.000019124449,0.000019751278,0.000019717969,0.000020563895,0.000020820107,0.000021240903,0.000021027166,0.00002154971,0.000023193028,0.000024068982,0.000025368163,0.000018264465,0.0000109739085,0.000013327115],[0.000015766916,0.000014414127,0.000012679616,0.000018844017,0.000030386589,0.000032238942,0.00002630995,0.000024008188,0.000020738027,0.000020979875,0.000019492862,0.00002006696,0.0000188502,0.000019650952,0.000019119652,0.000020094976,0.00001933857,0.000020424797,0.000019178162,0.000019827809,0.000019454012,0.000020952364,0.000019719228,0.000020537595,0.000019093743,0.000020305184,0.00001898806,0.000019404595,0.000018969236,0.000020295212,0.000019476453,0.000020017418,0.00001867369,0.000019985337,0.000019167155,0.000019983545,0.0000195349,0.000020797663,0.000019769182,0.000020503838,0.000019260457,0.000020552487,0.000019475749,0.000019857649,0.00001915882,0.000020210173,0.000019437228,0.00001996956,0.000019025652,0.000020415937,0.000019246687,0.000019802146,0.00001918698,0.00002046342,0.0000196015,0.00002057027,0.00001953926,0.000020868529,0.000019340874,0.00001961678,0.00001902246,0.000020067228,0.000019171322,0.00001972818,0.000018899176,0.00002031754,0.000019072777,0.00001963735,0.000019028628,0.000020392567,0.000019432946,0.000020373323,0.000019322642,0.000020696498,0.00001915926,0.00001949684,0.000018936847,0.000020064876,0.000019118941,0.000019684958,0.00001886644,0.000020304176,0.000019070576,0.00001966989,0.000019060994,0.00002041144,0.00001946032,0.000020395972,0.000019344821,0.000020717825,0.000019197412,0.000019532477,0.000018957357,0.000020069754,0.000019132895,0.000019690458,0.00001887551,0.00002030923,0.000019074287,0.00001967424,0.000019070723,0.000020424934,0.000019473946,0.00002040862,0.000019355506,0.000020728063,0.000019198163,0.000019527395,0.000018951534,0.000020070349,0.000019132985,0.000019694759,0.000018877094,0.000020313531,0.000019082347,0.000019683006,0.000019076306,0.00002043078,0.000019479628,0.000020415217,0.000019368172,0.000020752686,0.000019221814,0.000019551151,0.000018971426,0.000020091431,0.000019166333,0.000019727748,0.000018900384,0.000020329848,0.000019087189,0.00001967167,0.000019064266,0.000020410018,0.000019461155,0.000020403442,0.000019362615,0.000020738464,0.000019210891,0.00001954034,0.00001896108,0.000020069927,0.00001913649,0.000019696994,0.0000188801,0.000020318548,0.00001909254,0.000019688936,0.000019081383,0.000020430856,0.000019478051,0.00002040706,0.00001935296,0.000020727251,0.000019200781,0.000019531008,0.000018948933,0.00002005971,0.000019122206,0.000019681278,0.000018868004,0.00002030228,0.000019074705,0.000019672609,0.000019066612,0.000020418158,0.000019464756,0.000020404084,0.000019360252,0.000020744752,0.000019222418,0.000019555924,0.000018967283,0.000020083655,0.000019136216,0.000019684281,0.000018861383,0.00002030133,0.00001906443,0.000019643006,0.000019047964,0.000020425383,0.000019537638,0.000020520092,0.000019461117,0.000020870182,0.000019205048,0.000019481915,0.000018836146,0.000020010757,0.000019060431,0.000019543602,0.000018647639,0.000020045634,0.000018792223,0.000019275965,0.000018820883,0.000020295582,0.000019449724,0.000020319692,0.000019257317,0.000020608442,0.00001915716,0.000019591896,0.00001890114,0.000020198266,0.000019168581,0.000019832669,0.000019037325,0.000020351728,0.000019250836,0.000019739793,0.000019244539,0.000020476285,0.000020059537,0.000021136031,0.000020156278,0.000021403861,0.000019902658,0.00002023457,0.000019442827,0.00002051978,0.000019916537,0.000020247213,0.000019075542,0.000020298097,0.000019209994,0.0000197065,0.00001905445,0.000020468982,0.00001991665,0.000020925425,0.000019547348,0.000020687776,0.000019104999,0.000019850018,0.000018947288,0.000020530897,0.000019954978,0.000020379735,0.000018602523,0.000019233952,0.000018967212,0.000019270048,0.000019151661,0.00001997819,0.00002063558,0.000021625654,0.000021422607,0.000022189017,0.00002361199,0.000025218975,0.00002406368,0.000016545839,0.000011056929,0.000013459477],[0.000015655383,0.000014197035,0.000011562939,0.000017093287,0.000030154499,0.00003505035,0.000030756175,0.000025323736,0.000022807977,0.000021915857,0.0000214658,0.000019841653,0.000020359534,0.000019614105,0.000020477046,0.00001956486,0.000020871794,0.000020446178,0.000021078806,0.000019387337,0.000020851501,0.000020522735,0.000021533438,0.000019976,0.000020684956,0.00001979803,0.000020338613,0.000019291065,0.00002048779,0.000020410973,0.000021525659,0.000020024903,0.000020544334,0.000019762037,0.000020598596,0.000019544104,0.000021116328,0.000020731166,0.000021899832,0.000020329288,0.000021030293,0.000020512873,0.000021263522,0.000019839003,0.000020697724,0.000020523947,0.000021379483,0.000019974172,0.00002056474,0.00001996341,0.00002064426,0.000019128755,0.00002047287,0.000020160664,0.000021263339,0.000020049534,0.000021041447,0.000020405505,0.000020825131,0.000019321848,0.00002032031,0.000020111102,0.000020695137,0.000019430167,0.000020198342,0.000019710524,0.000020363981,0.000018810602,0.000020232948,0.000019896092,0.00002105333,0.00001978163,0.000020804508,0.000020127332,0.0000206005,0.000019148683,0.000020228279,0.000020065794,0.00002066232,0.00001937924,0.000020199634,0.00001966685,0.00002033041,0.000018850558,0.000020270185,0.000019920733,0.000021080272,0.000019828261,0.00002084512,0.000020171028,0.000020649912,0.000019203582,0.000020260868,0.000020085665,0.000020677462,0.000019398785,0.000020218038,0.000019671501,0.000020340514,0.000018857354,0.000020273103,0.000019933239,0.000021083128,0.000019837622,0.000020845715,0.000020174164,0.000020648573,0.000019207135,0.00002026454,0.000020087198,0.000020680221,0.000019399838,0.000020226234,0.000019664973,0.00002034329,0.000018869678,0.000020275462,0.000019938847,0.000021091775,0.000019854677,0.000020862222,0.000020203082,0.000020667268,0.000019223244,0.000020270802,0.000020110565,0.00002071435,0.000019431112,0.000020245956,0.000019686928,0.000020344725,0.000018853867,0.000020267458,0.00001993111,0.000021076212,0.000019838268,0.000020845337,0.000020181438,0.00002065781,0.000019224803,0.000020273412,0.000020094843,0.00002068677,0.000019409461,0.000020234203,0.00001967668,0.000020352485,0.000018879236,0.000020282985,0.000019941148,0.000021084776,0.000019837831,0.000020847585,0.000020176973,0.000020653219,0.000019213878,0.000020261756,0.00002008831,0.000020669318,0.00001938974,0.000020212177,0.000019658899,0.000020334464,0.000018858093,0.000020271384,0.000019927898,0.00002107949,0.000019835428,0.000020857487,0.000020193027,0.000020677244,0.000019236613,0.000020278498,0.000020099154,0.000020676534,0.0000193905,0.000020194297,0.000019671352,0.00002032254,0.000018831242,0.000020247657,0.00001992562,0.000021145728,0.00001993999,0.00002101115,0.000020318434,0.000020713302,0.000019195691,0.000020117603,0.00002000303,0.000020536754,0.000019293455,0.000019953095,0.000019452675,0.00002005531,0.000018500636,0.000020023814,0.000019893492,0.000021203645,0.000019826617,0.000020834388,0.000020178206,0.000020680794,0.00001939958,0.000020422965,0.00002023478,0.000020838817,0.000019784118,0.000020470467,0.00001991462,0.000020277395,0.000019266208,0.000020307818,0.000020257314,0.00002149825,0.00002086063,0.000021664977,0.000021284884,0.000021615097,0.00002051792,0.000020930713,0.000020900356,0.000021564407,0.000020453646,0.000020589288,0.000019843887,0.000020324926,0.000018998258,0.000020078542,0.000019798179,0.00002112092,0.000020447795,0.000021027789,0.000020252428,0.000020441965,0.000019665667,0.000020161164,0.00002063682,0.000021510656,0.000020462601,0.000019922007,0.000019241254,0.00001962915,0.00001891618,0.000019500838,0.00001991327,0.000020658912,0.000020716046,0.000020903006,0.000021461747,0.000024757352,0.000024369234,0.000023579452,0.00001580223,0.000010752228,0.000012877814],[0.000015847234,0.000013418912,0.000011785003,0.00001603674,0.000029667339,0.0000330069,0.000027879372,0.000024279183,0.000021487138,0.000020821,0.000019389943,0.000019360232,0.000018706898,0.000019116023,0.000018503035,0.00001917851,0.000019286557,0.00002021507,0.00001901274,0.000019162477,0.000019107732,0.000020386035,0.000019425073,0.00001996341,0.000019064975,0.00001996301,0.000018790162,0.000019310244,0.000018908191,0.000020230209,0.000019488401,0.000019941966,0.000019283927,0.00002006411,0.000019145251,0.00001971479,0.000019590552,0.00002076522,0.000019923908,0.0000202459,0.000019814084,0.000020791018,0.000019768087,0.000019941472,0.000019462137,0.000020270918,0.000019624133,0.000019648814,0.000019280857,0.00002007948,0.000018933271,0.0000192034,0.000019101955,0.000020408463,0.000019598643,0.000020343115,0.000019798012,0.000020899739,0.0000193575,0.000019578783,0.000019332188,0.000020319827,0.00001916361,0.000019325535,0.000018895555,0.000019899164,0.000018652245,0.000018961442,0.000018917715,0.000020364447,0.000019377116,0.000020185365,0.00001953611,0.000020697526,0.000019135485,0.000019452582,0.000019206185,0.000020321437,0.00001910835,0.00001934486,0.000018880839,0.000019907118,0.000018665858,0.000019022296,0.000018977886,0.000020415762,0.000019416128,0.000020223591,0.000019588217,0.000020733993,0.000019176645,0.000019477346,0.000019242962,0.00002033204,0.00001912877,0.000019359493,0.000018895555,0.000019905145,0.00001866527,0.000019018198,0.000018980745,0.000020418314,0.000019412017,0.000020220603,0.000019587338,0.000020733441,0.00001917648,0.000019478366,0.000019238503,0.000020326204,0.000019117464,0.000019355837,0.000018893968,0.000019901707,0.000018663364,0.000019029918,0.000018992714,0.000020428266,0.000019426294,0.000020252715,0.00001962114,0.000020763991,0.000019203566,0.000019500316,0.000019248266,0.000020345811,0.000019153742,0.000019381827,0.000018914197,0.000019913097,0.000018672961,0.0000190295,0.000018988983,0.000020419617,0.000019416477,0.000020221374,0.000019591465,0.000020737238,0.00001918828,0.000019493418,0.0000192452,0.00002033332,0.000019130395,0.000019367952,0.000018911347,0.000019917126,0.000018679995,0.000019039357,0.000018996137,0.00002042739,0.000019420218,0.000020230189,0.000019599278,0.00002074604,0.000019188828,0.0000194913,0.000019247127,0.000020337877,0.00001912505,0.000019354788,0.000018894203,0.000019903606,0.000018662582,0.000019019993,0.0000189827,0.000020423688,0.000019422276,0.000020232426,0.000019602474,0.000020759933,0.000019204113,0.000019511644,0.000019259116,0.000020347112,0.000019131088,0.000019356412,0.000018895627,0.000019915682,0.000018664558,0.000019006304,0.00001897709,0.000020449335,0.000019518364,0.000020377869,0.00001973315,0.000020908172,0.000019247751,0.000019458279,0.000019119032,0.000020167854,0.000018998964,0.000019143536,0.00001867549,0.000019629824,0.000018485609,0.000018759707,0.000018870434,0.000020405836,0.000019528716,0.000020207552,0.000019610681,0.000020690202,0.000019312545,0.000019679683,0.000019472498,0.000020549036,0.000019359199,0.000019699999,0.000019376468,0.000020205724,0.000019111942,0.000019456404,0.00001954349,0.000020743488,0.00002024254,0.00002120245,0.000020908788,0.000021779513,0.000020379213,0.000020386384,0.000019848598,0.000020498463,0.000019799445,0.00001972504,0.000019149578,0.000019635947,0.00001871623,0.00001909589,0.00001890516,0.000020461293,0.000019916195,0.000021360469,0.000020341988,0.000021185191,0.000019609934,0.000020392237,0.000019536354,0.000020831327,0.00002001553,0.000020332485,0.000019292978,0.000019472052,0.00001977746,0.000019807074,0.00001983384,0.000020681819,0.000020631056,0.000021398739,0.000020772548,0.000022078138,0.000023505698,0.000026355052,0.000024506127,0.00001661546,0.000010272669,0.0000130915405],[0.000015486547,0.000012931941,0.000010034179,0.000015901414,0.000027534248,0.000034101806,0.00002829208,0.000024878673,0.000022380731,0.000021480277,0.000020634674,0.000019941566,0.000020311341,0.000019917637,0.000020106152,0.00001970077,0.00002060457,0.000020610367,0.00002049545,0.000019618969,0.000020770567,0.000020891946,0.000021023918,0.000019976856,0.000020792128,0.000020454192,0.000020749423,0.00001974017,0.000020368117,0.000020569605,0.000020715475,0.00001994849,0.000020692925,0.000020609248,0.000021104006,0.000020261352,0.000021267862,0.000021155169,0.000021317104,0.000020395933,0.000021298672,0.000021262102,0.00002182563,0.000020659525,0.000020878124,0.00002081405,0.00002058548,0.000019865907,0.000020543923,0.000020699006,0.000021033222,0.000019741563,0.000020803891,0.00002087464,0.000021156762,0.000020251828,0.000021373447,0.0000210162,0.000021334472,0.00001990746,0.000020811929,0.000020783127,0.000020614376,0.00001947144,0.000020226562,0.000020305879,0.00002070104,0.000019379997,0.000020782354,0.000020717549,0.00002117172,0.000020075326,0.000021225715,0.000020734133,0.000021137685,0.000019760322,0.000020771024,0.000020740203,0.000020636722,0.000019447907,0.000020268984,0.00002029678,0.000020717529,0.000019464458,0.00002084842,0.000020741036,0.00002118521,0.000020105712,0.00002127214,0.000020780017,0.000021176927,0.000019796518,0.00002079427,0.000020778252,0.000020650385,0.000019459112,0.000020293684,0.000020295329,0.00002071425,0.000019464644,0.000020845577,0.000020737158,0.000021169499,0.000020101896,0.000021274373,0.000020773597,0.000021164955,0.00001979299,0.000020792406,0.000020769021,0.000020639261,0.000019452156,0.000020293935,0.000020289408,0.000020712925,0.00001948091,0.000020856114,0.000020752133,0.000021183088,0.000020133955,0.00002131141,0.000020815043,0.000021198508,0.000019828847,0.000020805379,0.00002078416,0.000020658184,0.000019482137,0.00002029113,0.00002031357,0.00002074764,0.000019499908,0.00002086638,0.000020752013,0.000021172931,0.000020106421,0.000021269709,0.000020777541,0.000021173193,0.000019810475,0.000020799922,0.000020776211,0.000020647922,0.000019464216,0.0000203083,0.000020303769,0.000020723834,0.00001948643,0.000020857726,0.000020748395,0.000021181677,0.000020114898,0.000021291828,0.000020787273,0.000021178868,0.000019807358,0.000020802523,0.000020780948,0.000020648278,0.000019457684,0.00002029353,0.000020295232,0.000020707239,0.00001946869,0.000020850228,0.000020745663,0.0000211862,0.000020112137,0.000021282754,0.000020794885,0.000021194062,0.000019822324,0.00002080778,0.000020788522,0.000020655505,0.000019468485,0.000020271247,0.000020304467,0.000020709984,0.000019444644,0.000020849531,0.000020755042,0.000021261028,0.000020237521,0.000021400083,0.00002092351,0.000021210339,0.000019737065,0.000020546215,0.000020553289,0.000020307198,0.000019243109,0.000019831079,0.000019993036,0.00002042622,0.000019268118,0.000020621868,0.000020792704,0.000021281394,0.000020111562,0.00002132426,0.000020856713,0.000021237238,0.000020090456,0.000021318507,0.000020995187,0.0000208746,0.000019852632,0.000020842654,0.000020575568,0.000020928539,0.000020192643,0.00002136821,0.000021261534,0.000021590376,0.000021182343,0.000022425127,0.000022153687,0.00002207694,0.00002109455,0.000021295544,0.000021313974,0.000020750867,0.000020020148,0.000020183477,0.000020312698,0.000020408483,0.000019643157,0.000020864827,0.000020779424,0.000021618747,0.000021027026,0.000022185062,0.000021257258,0.000021481383,0.000020776273,0.000021187554,0.000021201744,0.000020800378,0.00002042326,0.00001985725,0.000020180456,0.000020629934,0.000020798912,0.000020717453,0.000021318872,0.000020992264,0.000021258167,0.000021153353,0.000021445949,0.000024075549,0.000024707371,0.000025354086,0.00001748861,0.00001079323,0.00001301507],[0.000014940505,0.0000119523365,0.000010378496,0.000013742422,0.00002526565,0.000033274366,0.000026308975,0.000024089673,0.000021077258,0.000020921694,0.000019668107,0.000019985317,0.000018969418,0.00001944379,0.000019214152,0.000019812553,0.000019563666,0.000020538731,0.000019406592,0.000019890911,0.000019499406,0.000020606789,0.000019378742,0.000019622132,0.000018827077,0.00002014156,0.000019090792,0.000019882302,0.000019080999,0.000020315332,0.000018991284,0.0000194172,0.000018800703,0.00002015551,0.000019346686,0.000020213412,0.00001970013,0.000020688862,0.00001944294,0.000019799105,0.000019261468,0.000020711188,0.000019926378,0.000020370371,0.000019598885,0.000020107878,0.00001891517,0.0000191479,0.00001872964,0.000020103927,0.000019126182,0.000019622039,0.00001918568,0.000020253181,0.000019036124,0.000019621908,0.00001903698,0.00002044329,0.000019193056,0.000019605652,0.000019117446,0.000020086125,0.00001870952,0.000018824905,0.000018295044,0.000019665744,0.000018641344,0.000019193256,0.000018928326,0.00002013793,0.000018884477,0.000019503794,0.000018782746,0.00002021212,0.000018912284,0.000019405094,0.000018968278,0.000020031188,0.000018638251,0.000018805724,0.000018256631,0.000019675816,0.0000186497,0.000019267769,0.00001897376,0.000020168316,0.000018908479,0.000019533558,0.000018823666,0.000020258201,0.000018973507,0.000019446481,0.000018998493,0.000020051695,0.000018665394,0.00001881961,0.000018274119,0.00001968079,0.000018657227,0.000019262716,0.000018968893,0.000020154646,0.000018903953,0.000019530095,0.000018819754,0.0000202442,0.000018960971,0.000019440304,0.000019001393,0.000020050547,0.000018654095,0.000018812665,0.000018268996,0.000019677655,0.00001865968,0.000019276498,0.000018983352,0.00002017276,0.000018918652,0.00001955958,0.000018860359,0.000020291904,0.00001899938,0.000019471643,0.000019024601,0.0000200768,0.000018682116,0.000018825156,0.000018275932,0.000019695584,0.00001869632,0.000019312269,0.000018995304,0.00002016651,0.000018910427,0.000019535086,0.000018818353,0.000020243699,0.000018970683,0.000019457684,0.000019012505,0.000020058982,0.000018660428,0.00001882223,0.000018279696,0.000019689443,0.00001866956,0.000019283118,0.00001898223,0.00002017403,0.00001892273,0.00001955365,0.000018833758,0.000020259999,0.000018972094,0.000019450283,0.000019006377,0.000020059653,0.000018660554,0.000018816127,0.000018271852,0.000019683212,0.000018655464,0.000019267934,0.00001897557,0.000020167201,0.000018904007,0.000019532534,0.000018825443,0.000020266143,0.000018984367,0.000019469173,0.000019013954,0.000020067591,0.000018665876,0.00001881001,0.000018260043,0.000019677826,0.00001864257,0.00001924386,0.000018945248,0.000020160624,0.000018968984,0.00001964325,0.000018943332,0.000020397216,0.000019001103,0.000019368339,0.000018835033,0.000019851495,0.000018442786,0.000018539791,0.000017959284,0.000019356374,0.00001838275,0.000019006666,0.00001882302,0.000020144307,0.000019009947,0.000019577328,0.000018900384,0.00002033204,0.000019277695,0.000019803429,0.000019289906,0.000020307836,0.000019025127,0.000019202631,0.000018812576,0.000020201214,0.000019607878,0.000020360467,0.000019866779,0.000020890095,0.000019946227,0.00002073878,0.000020360543,0.000021762986,0.000020876074,0.000021252008,0.000020288653,0.000020960515,0.000019784213,0.000019604717,0.000018799896,0.000019844132,0.00001899121,0.000019728124,0.00001922623,0.00002061599,0.000019659556,0.000020575293,0.000019573894,0.000020929097,0.000019881334,0.000020973433,0.000019904594,0.000021109263,0.000019456404,0.000019704208,0.000018835626,0.000019649846,0.00002034552,0.000020570937,0.000020433428,0.00002087663,0.000020814923,0.000021551414,0.00002070558,0.000021192425,0.000022514312,0.00002532748,0.00002494039,0.00001682636,0.000010714622,0.000013284859],[0.000015315982,0.000011127072,0.000010259364,0.000013682751,0.000026619771,0.000036922636,0.000029762354,0.000024640736,0.000022347951,0.000021618685,0.000021294001,0.000019851099,0.000020070978,0.000019608551,0.000020179474,0.000019481005,0.000020929536,0.000020596377,0.000021544365,0.000019708945,0.000021068236,0.00002049594,0.00002084989,0.000019288764,0.000020163354,0.000019401356,0.000020370915,0.000019083347,0.00002034942,0.000019780684,0.000020234858,0.000018815392,0.000019892714,0.000019376745,0.000020431928,0.000019401115,0.000021001113,0.000020387939,0.000020918544,0.000019442716,0.000020435944,0.000020057623,0.000021129159,0.000019738305,0.000020681819,0.000019968094,0.000020174202,0.000018813473,0.00001966805,0.000019393568,0.000020407917,0.000018904928,0.0000202825,0.000019734052,0.00002021,0.000018815177,0.000020006293,0.000019471996,0.000020433545,0.000018748011,0.00001994967,0.000019496003,0.000019727204,0.00001826295,0.000019164505,0.000018940007,0.000019955949,0.000018403483,0.000019927404,0.000019464682,0.000020094116,0.000018594861,0.00001987777,0.000019202722,0.000020196301,0.000018504112,0.000019763716,0.000019385987,0.000019673453,0.000018187242,0.000019163244,0.000018926285,0.00001997318,0.000018441626,0.000020005129,0.000019478402,0.000020136491,0.000018638482,0.000019924535,0.000019243567,0.000020267613,0.000018575081,0.000019812913,0.000019419998,0.00001970402,0.00001821795,0.00001918612,0.000018938472,0.000019975485,0.000018448152,0.000019999674,0.000019463587,0.000020126008,0.000018641042,0.00001992461,0.000019234265,0.000020263844,0.000018572282,0.000019820642,0.00001942624,0.000019701822,0.000018208622,0.00001918625,0.000018934554,0.000019973866,0.000018460663,0.000020023777,0.000019484032,0.000020150072,0.000018668634,0.00001995296,0.000019264922,0.000020271402,0.000018584613,0.000019849469,0.000019466146,0.000019720432,0.00001821894,0.000019173005,0.000018956849,0.000020013525,0.000018488661,0.00002003667,0.000019480818,0.000020132919,0.000018641966,0.000019925124,0.000019234265,0.000020267034,0.000018583656,0.000019830795,0.000019431334,0.000019705074,0.000018210741,0.000019193989,0.000018941417,0.000019986746,0.000018472887,0.000020026164,0.000019482974,0.00002014813,0.000018658988,0.000019942518,0.000019242887,0.000020264772,0.000018575205,0.000019818675,0.000019426108,0.000019694402,0.000018204508,0.000019179422,0.000018934194,0.000019970494,0.000018451108,0.000020009154,0.000019469193,0.000020126508,0.000018634873,0.000019926909,0.000019246687,0.00002027521,0.000018588336,0.000019825386,0.000019426534,0.000019693538,0.000018206434,0.000019157653,0.000018926195,0.000019959909,0.000018413595,0.000019971409,0.000019431687,0.000020153897,0.000018741128,0.000020012552,0.000019362282,0.000020283971,0.000018520248,0.00001960096,0.000019161911,0.000019320854,0.000017938557,0.00001880576,0.000018612709,0.000019683699,0.000018181052,0.000019715393,0.000019348345,0.000020160642,0.000018690742,0.000020033442,0.000019492638,0.000020600935,0.000019029954,0.000020191736,0.000019562229,0.000019875837,0.000018790826,0.000019790763,0.000019546434,0.000020798216,0.00001973025,0.000021064418,0.000020268444,0.000021000253,0.00002007701,0.000021262975,0.000021013915,0.000022300454,0.000021009828,0.000021480604,0.00002078638,0.00002089611,0.000019643288,0.000019967905,0.000019460376,0.00002027612,0.000018874878,0.000020348742,0.000019619381,0.000020339972,0.000019245805,0.000020542688,0.000019906036,0.000020841144,0.000019768617,0.000020793377,0.000020359534,0.000020175337,0.00001918817,0.000019074796,0.00001916659,0.000020141599,0.000019928202,0.000020432943,0.000020068299,0.000020409709,0.000020285537,0.00001995789,0.000020183381,0.000022395783,0.000023982033,0.000026258016,0.000017031763,0.00001127078,0.000012865994],[0.000015718319,0.000012229988,0.000011395057,0.000014963847,0.000027887167,0.0000347469,0.000027106424,0.00002329484,0.000020454954,0.000020603235,0.000019431205,0.000019610627,0.000018877327,0.000019170811,0.000018566616,0.000019060632,0.000019060213,0.000020082927,0.000019239438,0.000019279882,0.000019436393,0.000020218693,0.000019226598,0.000019289759,0.00001829478,0.000019217892,0.00001816786,0.000018642908,0.00001829302,0.000019402689,0.000018277256,0.000018756917,0.00001805578,0.000019498793,0.000018655803,0.0000195029,0.000019388002,0.000020641091,0.000019273559,0.000019570422,0.000018738234,0.000020024883,0.000018898798,0.000019137968,0.00001892078,0.000019661355,0.000018622775,0.000018817404,0.00001815875,0.000019456273,0.00001841825,0.000018716926,0.00001863109,0.000019687548,0.000018650733,0.000018964949,0.000018344082,0.000019757383,0.00001846549,0.000018722158,0.000018447095,0.000019495985,0.000018130078,0.00001831152,0.000017763079,0.000019125926,0.000018069302,0.000018403887,0.000018358432,0.00001960169,0.000018419163,0.000018784125,0.000018164517,0.00001960741,0.000018283914,0.000018551855,0.000018251512,0.000019431574,0.000018015515,0.000018254506,0.000017729586,0.000019153287,0.000018095843,0.000018464907,0.000018407432,0.00001966625,0.00001847255,0.000018835843,0.000018208466,0.00001964767,0.000018336666,0.000018601653,0.000018305445,0.000019448724,0.000018045814,0.000018280898,0.000017753036,0.000019156465,0.000018096032,0.000018450879,0.000018400078,0.000019643663,0.00001846225,0.000018826502,0.000018209073,0.000019644094,0.000018337594,0.000018598957,0.000018306404,0.00001944711,0.000018043387,0.000018270615,0.000017748398,0.000019150619,0.000018097688,0.000018459237,0.000018420375,0.000019667148,0.000018485047,0.000018849947,0.000018220417,0.000019655936,0.000018335111,0.000018603072,0.000018333467,0.000019490017,0.000018071285,0.000018270022,0.000017743168,0.00001916456,0.000018125616,0.000018470773,0.000018421517,0.000019651776,0.00001846769,0.000018820005,0.000018201887,0.000019636751,0.00001833385,0.000018600022,0.000018311383,0.000019452453,0.000018048671,0.000018280707,0.00001775998,0.000019164578,0.000018109376,0.000018474631,0.000018426506,0.000019667657,0.000018477733,0.00001884601,0.000018220051,0.00001964535,0.000018331177,0.00001860082,0.000018306859,0.000019452638,0.00001803974,0.000018270006,0.00001774432,0.000019153249,0.000018096014,0.000018460347,0.000018411769,0.000019658242,0.000018465049,0.000018829016,0.000018206312,0.000019650783,0.000018343768,0.000018610419,0.000018307504,0.00001945503,0.00001804017,0.000018259225,0.000017725833,0.000019141398,0.000018083887,0.000018453782,0.000018386554,0.000019665873,0.000018534913,0.000018965438,0.00001831124,0.000019765392,0.000018351835,0.000018532704,0.000018085922,0.000019159534,0.000017734981,0.000017994154,0.000017453354,0.000018930436,0.000017941054,0.00001843751,0.00001824803,0.000019737798,0.000018528357,0.000019082874,0.000018484094,0.000019934798,0.000018718532,0.000019119268,0.000018655464,0.00001972726,0.00001836507,0.000018727496,0.000018451266,0.000019758176,0.000019012377,0.000019679588,0.000019648984,0.000020739868,0.000019767767,0.0000204461,0.0000199127,0.000021229098,0.000020159547,0.000020384012,0.000019816087,0.00002026711,0.00001927786,0.000019222052,0.00001865093,0.000019423145,0.000018465436,0.00001874987,0.000018546405,0.000019835732,0.000018891067,0.000019695264,0.000018991735,0.000020150303,0.000018776855,0.000019545038,0.000018746508,0.000020123398,0.000018827957,0.000019127112,0.00001804306,0.000019246998,0.000019237677,0.000020042251,0.0000198046,0.000020384363,0.000020270203,0.000021398697,0.000020731304,0.00002142647,0.000021894175,0.000024868568,0.000025331587,0.000018312481,0.000011000754,0.000013535653],[0.000015418023,0.000013249723,0.000010527846,0.000017008148,0.000028328552,0.00003641934,0.000028735107,0.000023871115,0.000021626149,0.000021271513,0.000020745822,0.000019950185,0.00002033677,0.000019808567,0.000020119829,0.00001966745,0.000020420086,0.000020450467,0.000020431751,0.000019633007,0.00002084325,0.000020921774,0.000020864212,0.000019806603,0.000020072492,0.000019808265,0.000019797275,0.000018826879,0.00001962477,0.000019717028,0.00002008153,0.000019121768,0.00001994499,0.0000199483,0.000020620393,0.00001981057,0.000021009208,0.000020743091,0.000021001393,0.000019985391,0.000020671132,0.000020548781,0.000020702699,0.000019497898,0.000020051235,0.000020194451,0.00002031417,0.000019487861,0.000020254975,0.000020209209,0.000020563424,0.000019259887,0.00002019713,0.000020259322,0.00002059296,0.00001954895,0.00002043409,0.000020336169,0.000020520329,0.000019105619,0.000019905354,0.000020032105,0.000020190831,0.000019004581,0.000019916042,0.000019912872,0.000020340884,0.000019001809,0.000020166488,0.000020212814,0.000020553152,0.000019368357,0.000020333688,0.000020158182,0.000020438301,0.000018978972,0.00001981091,0.00001996958,0.000020140582,0.000018955168,0.000019898425,0.00001989647,0.000020371146,0.000019047002,0.000020235515,0.000020230575,0.000020600346,0.000019418589,0.000020378688,0.00002018419,0.000020475894,0.000019025743,0.00001984451,0.00002000841,0.000020158797,0.00001898062,0.000019914447,0.000019902998,0.000020370098,0.000019049745,0.00002022824,0.000020226313,0.000020589898,0.000019418905,0.000020381349,0.000020185615,0.000020476109,0.000019020337,0.00001983486,0.000020002992,0.000020150976,0.000018975987,0.000019913003,0.00001990689,0.000020368234,0.000019053507,0.000020233663,0.00002022093,0.000020591133,0.0000194343,0.000020376412,0.000020175723,0.000020452788,0.00001903106,0.000019856134,0.000020035715,0.000020165045,0.000018984982,0.000019905448,0.000019920983,0.000020380747,0.000019056468,0.000020225212,0.000020219948,0.000020580786,0.00001941009,0.00002037245,0.000020179168,0.000020465997,0.000019021516,0.000019840121,0.000020010204,0.000020152069,0.000018985525,0.000019925143,0.0000199112,0.000020378435,0.00001906994,0.00002025287,0.000020242598,0.000020604492,0.000019430112,0.000020385489,0.000020182784,0.000020476442,0.000019027395,0.000019839628,0.000020006502,0.000020151474,0.000018972583,0.000019909263,0.00001990112,0.000020368176,0.000019053306,0.000020240435,0.000020230265,0.000020589898,0.000019415738,0.000020375868,0.0000201865,0.000020471696,0.000019024692,0.00001983019,0.000020000303,0.000020148324,0.00001896325,0.00001989019,0.000019895579,0.000020367146,0.000019039648,0.000020238293,0.00002022525,0.000020632257,0.000019517842,0.000020429687,0.000020267922,0.000020402937,0.000018901286,0.000019534398,0.000019688581,0.000019797953,0.000018661782,0.00001956458,0.000019712308,0.00002023044,0.00001899016,0.00002017249,0.000020217632,0.00002077976,0.000019674428,0.00002067618,0.000020413523,0.000020593863,0.00001937706,0.000020322095,0.000020154914,0.000020237387,0.000019404371,0.000020317038,0.00002026371,0.000020485015,0.000019752975,0.000020964415,0.000020795243,0.000021215134,0.000020657772,0.000021537115,0.000021335773,0.000021163,0.00002041919,0.00002059842,0.000020861047,0.000020616973,0.000019906756,0.00002031634,0.000020489158,0.000020258782,0.000019152574,0.00002025455,0.000020081414,0.000020814092,0.000020025285,0.000020964777,0.000020399453,0.000020260695,0.000019387262,0.000019799163,0.00002024032,0.000020166182,0.00001940093,0.000018939574,0.000019188901,0.000019390183,0.000019924191,0.000020026124,0.000020670755,0.00002088398,0.00002129727,0.00002116754,0.00002164379,0.000022979362,0.000024278212,0.000025553885,0.000019091358,0.000011395894,0.000013493265],[0.000015270158,0.000015630916,0.000011818926,0.000017161334,0.000029171217,0.000034394867,0.000027551925,0.000024399396,0.000020880056,0.000021092015,0.000019681109,0.000020110965,0.000018978339,0.00001972346,0.000019343346,0.00002019243,0.000019532312,0.000020475816,0.000019429963,0.000019764037,0.000019677393,0.000020800617,0.00001962436,0.000020070253,0.000018747545,0.000019740206,0.000018463605,0.00001868472,0.000018276436,0.0000195524,0.000018779396,0.000019598698,0.000018467039,0.000019893738,0.000019050545,0.0000199286,0.000019458872,0.000020765714,0.00001954351,0.000020314965,0.00001917295,0.00002044327,0.000019040719,0.00001912299,0.000018539544,0.000019528605,0.000018920078,0.000019658766,0.000018903684,0.000020148113,0.000019003568,0.000019126455,0.000018727638,0.00001964902,0.000019057577,0.000019667807,0.00001899929,0.000020231617,0.000018831135,0.000018832698,0.000018374547,0.00001956292,0.00001874245,0.0000192461,0.00001858052,0.000019879666,0.000018767974,0.000018951481,0.0000186852,0.00001974081,0.000018961513,0.000019486133,0.000018833074,0.000020098983,0.000018712642,0.000018734463,0.000018281073,0.000019538906,0.000018687106,0.000019213841,0.000018543045,0.000019859182,0.000018763429,0.000018998564,0.000018714196,0.000019774141,0.00001900112,0.00001954254,0.00001887164,0.000020138028,0.00001874726,0.00001876325,0.00001831009,0.000019564915,0.000018720139,0.000019240795,0.000018560755,0.000019868976,0.000018774632,0.000019003965,0.000018722943,0.000019778781,0.000019008334,0.000019549847,0.000018878623,0.000020141253,0.000018745812,0.000018758223,0.000018301866,0.000019557492,0.000018715338,0.000019236575,0.000018561446,0.000019874813,0.00001878332,0.00001900228,0.000018712517,0.000019763602,0.000018995523,0.000019549343,0.000018874212,0.00002011672,0.000018712393,0.000018757435,0.000018319783,0.000019559675,0.00001871482,0.000019239145,0.000018573806,0.000019888219,0.00001878545,0.000018984982,0.000018705845,0.000019756837,0.000018988041,0.00001952814,0.00001886741,0.00002013119,0.000018744722,0.000018757435,0.000018303594,0.000019558089,0.000018717335,0.000019242061,0.000018566367,0.00001987538,0.000018789518,0.000019022424,0.00001874549,0.000019798048,0.000019023513,0.000019558349,0.00001888941,0.000020151858,0.000018759958,0.000018769084,0.00001831105,0.000019563015,0.00001871466,0.000019231642,0.000018554667,0.000019863444,0.00001877209,0.00001900112,0.000018721228,0.000019773555,0.000018996954,0.000019540246,0.00001887569,0.000020141715,0.000018746901,0.000018759134,0.000018303665,0.000019562156,0.000018704579,0.000019222492,0.000018550598,0.000019869338,0.00001876461,0.000019003657,0.000018704919,0.000019789855,0.000019063229,0.000019673396,0.000018976638,0.000020258221,0.000018730014,0.000018652334,0.000018077713,0.000019307923,0.000018422641,0.000018915638,0.000018255132,0.000019727919,0.000018633915,0.000019051273,0.0000186199,0.00002001156,0.000019230634,0.000019964229,0.000019024093,0.000020462465,0.000019060193,0.00001948251,0.000018895735,0.000020284628,0.0000192423,0.000019849638,0.000019029936,0.000020264964,0.000019176572,0.000019709452,0.00001921833,0.000020408968,0.000019951001,0.000020934845,0.000020047966,0.000021356516,0.000019864183,0.000020226582,0.000019335046,0.000020566269,0.00001976543,0.000020308593,0.000019350005,0.000020580042,0.00001926202,0.000019463327,0.00001889687,0.00002007789,0.000019574882,0.000020447911,0.000019309598,0.000020465412,0.00001886795,0.000019320283,0.000018316394,0.000019848298,0.00001900353,0.00001966595,0.000017901266,0.000018963485,0.000018490477,0.00001944915,0.000019176498,0.000020348489,0.000020568074,0.000021725122,0.000021498761,0.000022431415,0.00002360114,0.000025734686,0.000024937772,0.00001726959,0.000011432207,0.000013642126],[0.000015875974,0.000017330998,0.000013055945,0.000018902116,0.000032191598,0.000035848683,0.000031900632,0.000025222655,0.000022841521,0.000021808091,0.000021548556,0.000019902505,0.0000203985,0.000019738627,0.000020571075,0.00001987707,0.000021084656,0.000020722115,0.000021345542,0.000019763394,0.000021176444,0.000020788066,0.000021588317,0.000019866515,0.000020504129,0.000019527692,0.000019907175,0.000018577419,0.00001982446,0.00001958334,0.000020721642,0.000019287569,0.00002027202,0.000019533409,0.000020534599,0.000019401577,0.000021052105,0.000020567915,0.000021669379,0.000020003336,0.000020913156,0.000020100995,0.00002075829,0.000018986828,0.000020029049,0.000019717798,0.000020731266,0.000019587169,0.000020508473,0.000019855925,0.000020725593,0.000018985942,0.00002009469,0.000019657662,0.000020912577,0.000019493436,0.000020593883,0.000019955778,0.00002059677,0.000018624445,0.00001976807,0.000019564077,0.00002062356,0.000019187457,0.000020213354,0.000019600624,0.000020512853,0.00001878889,0.000020071036,0.00001968336,0.000020856114,0.000019333904,0.000020470388,0.000019796142,0.000020494237,0.000018507006,0.000019700845,0.000019499945,0.000020578904,0.000019130595,0.000020195646,0.000019537581,0.000020460378,0.000018812181,0.000020111733,0.000019691359,0.000020909587,0.000019388002,0.00002052526,0.00001983123,0.00002053924,0.000018547678,0.000019731304,0.00001953885,0.000020614632,0.00001917337,0.000020217461,0.000019547237,0.000020468182,0.000018831099,0.000020125932,0.000019709452,0.000020914811,0.000019398802,0.00002053973,0.000019829982,0.000020541787,0.00001854315,0.000019722012,0.00001953259,0.000020603844,0.000019170739,0.000020220506,0.000019555198,0.000020468691,0.000018824994,0.000020109834,0.000019679794,0.000020894937,0.000019393623,0.000020520309,0.00001981191,0.000020499496,0.000018537034,0.000019728162,0.000019519815,0.000020577118,0.000019172438,0.00002023534,0.000019567547,0.00002046467,0.000018816272,0.000020102854,0.000019689764,0.00002089374,0.00001938386,0.000020526864,0.000019820925,0.000020535204,0.000018546105,0.000019723873,0.000019527915,0.000020603331,0.000019169678,0.000020217249,0.0000195491,0.00002047937,0.00001884975,0.000020145575,0.000019733412,0.000020943035,0.000019427127,0.000020554504,0.000019849129,0.000020550899,0.000018554525,0.000019731606,0.000019535142,0.00002059785,0.000019160392,0.000020208034,0.000019546753,0.000020464377,0.000018821063,0.000020113901,0.000019694064,0.000020906316,0.00001939305,0.000020527707,0.00001983439,0.000020530819,0.000018537212,0.000019714884,0.000019528214,0.00002059349,0.000019150893,0.000020204392,0.000019548654,0.000020469315,0.000018807625,0.000020110487,0.000019679665,0.000020959198,0.000019504298,0.000020631429,0.00001994539,0.000020528627,0.000018486175,0.000019494517,0.000019331083,0.000020312038,0.00001888615,0.00001990765,0.000019378685,0.000020431675,0.000018664754,0.000020082009,0.00001970949,0.000021241814,0.000019598045,0.00002075047,0.000019999388,0.000020612606,0.000019198676,0.000020338284,0.000020126085,0.000020917725,0.00001986803,0.00002053127,0.00001987705,0.00002038656,0.000019353272,0.000020418449,0.000020214222,0.000021439406,0.000020573645,0.000021468766,0.00002095532,0.000021384967,0.000020238216,0.000020808771,0.00002074331,0.000021470978,0.000020377094,0.000020880414,0.000020168201,0.00002055564,0.000019130832,0.000020157951,0.000019648329,0.000020993766,0.000019726976,0.000020809845,0.00001994982,0.000020434305,0.000019104962,0.000019828412,0.000019840461,0.000020982136,0.00001959425,0.000019501675,0.000018790539,0.000019527246,0.000018952565,0.000019796822,0.00002024092,0.000020868947,0.000020793477,0.000020956439,0.000021478229,0.000024760046,0.000024748453,0.000024265828,0.000016129963,0.00001102552,0.00001316699],[0.000015844755,0.000017949851,0.000015761265,0.00002202525,0.000032023683,0.000031267355,0.000027029964,0.000023686935,0.00002111228,0.000020809466,0.000019552997,0.000019909112,0.000019060284,0.000019699079,0.000018947072,0.000019951478,0.000019757836,0.000020820662,0.00001955048,0.000019710486,0.000019607896,0.000020650226,0.000019626135,0.00001973616,0.00001884878,0.000019455661,0.000018527791,0.00001855865,0.000018231227,0.000019344452,0.000018568546,0.000019133771,0.000018591103,0.000019746985,0.000018915278,0.00001958364,0.000019420162,0.000020765536,0.00001962129,0.000020020225,0.000019273833,0.00002023015,0.00001899527,0.000018870434,0.000018673656,0.00001961031,0.000019028721,0.000019449893,0.000018952944,0.000019988995,0.000019027015,0.000019048273,0.000018853112,0.000019658935,0.0000191015,0.000019312656,0.000018942339,0.000019827674,0.00001883832,0.000018599898,0.000018525776,0.000019558294,0.000018802424,0.000019094106,0.000018590872,0.000019671857,0.00001871905,0.000018843046,0.000018756435,0.00001975177,0.00001897662,0.0000191599,0.000018779254,0.00001970107,0.000018706898,0.000018464556,0.000018405643,0.000019491968,0.000018710056,0.00001903538,0.000018546318,0.00001965935,0.000018697943,0.000018845185,0.000018753411,0.00001978044,0.000019017345,0.000019210507,0.000018828658,0.000019745856,0.000018750156,0.000018494304,0.00001843941,0.000019519406,0.000018753322,0.000019069776,0.000018574674,0.000019663361,0.000018698782,0.000018838824,0.000018760495,0.000019781364,0.000019018344,0.00001921529,0.0000188408,0.000019752919,0.000018746474,0.000018487144,0.000018432236,0.000019513413,0.000018740253,0.00001906074,0.000018580042,0.00001967516,0.00001870422,0.000018832985,0.00001874742,0.000019765092,0.00001900103,0.000019207924,0.000018827563,0.00001972632,0.00001872446,0.000018475865,0.000018425348,0.000019481526,0.000018720568,0.000019062738,0.000018594204,0.000019682704,0.000018711109,0.000018829627,0.00001874531,0.000019767278,0.000019010655,0.000019200032,0.000018827435,0.000019737026,0.000018739627,0.000018482895,0.00001843032,0.000019507235,0.000018740591,0.000019059395,0.000018570263,0.000019660192,0.000018707826,0.000018855359,0.000018789911,0.000019811343,0.000019063811,0.000019244668,0.00001885687,0.000019754558,0.000018757864,0.000018490775,0.00001843498,0.000019503701,0.00001873164,0.000019044297,0.000018564704,0.000019659967,0.000018692079,0.000018827095,0.000018750961,0.000019774763,0.000019018235,0.00001921014,0.000018832267,0.0000197448,0.000018738412,0.000018478771,0.000018420604,0.000019509282,0.000018740842,0.00001904989,0.000018557357,0.000019662068,0.000018686429,0.000018826915,0.000018745563,0.000019784798,0.000019099387,0.000019340247,0.000018948265,0.000019870718,0.000018773397,0.000018441484,0.000018263281,0.000019310446,0.00001849919,0.000018791938,0.000018247978,0.000019461284,0.00001856564,0.000018810064,0.000018694627,0.000020036403,0.000019176716,0.000019710053,0.000019099989,0.000020137566,0.00001896475,0.000019168454,0.000019106457,0.00002038963,0.000019326751,0.000020017054,0.000019433688,0.000020343252,0.000019190384,0.000019698684,0.000019641246,0.000020718675,0.000020070749,0.000020878642,0.000020403382,0.000021220638,0.000019998128,0.000020031282,0.00001950026,0.000020427758,0.000019661542,0.000020004138,0.00001925379,0.0000199752,0.000018999997,0.00001906732,0.000018700048,0.000019640309,0.000019124887,0.000019693294,0.000019262809,0.0000199748,0.000019080582,0.000019119725,0.00001855488,0.000019582594,0.00001893997,0.000019230614,0.000018370729,0.000018850216,0.000019010962,0.000019624733,0.000019712534,0.000021030457,0.000020782692,0.000021686208,0.000021159021,0.000022415763,0.000023645138,0.000027080843,0.000024605466,0.000016554788,0.000010402078,0.000013362456],[0.000016175036,0.000017800234,0.000014586928,0.000024245264,0.000030039604,0.000029708674,0.00002645434,0.000023459052,0.000021765145,0.000021141677,0.000020952522,0.00002029022,0.000020923013,0.000020004785,0.000020325622,0.00001992883,0.000021015598,0.000020735932,0.000020877666,0.000019992884,0.000021009828,0.000021197902,0.000021078966,0.000019971485,0.00002045228,0.000020283971,0.000020572723,0.000019438914,0.000019989719,0.000020017838,0.000020213914,0.000019286816,0.00002037723,0.000020224808,0.000021002616,0.000020161566,0.000021261372,0.000021099037,0.000021348453,0.000020311652,0.00002111077,0.0000208181,0.00002109101,0.000019721805,0.000020328513,0.00002047447,0.000020524458,0.000019833424,0.000020680933,0.000020576686,0.000021027186,0.000019847559,0.000020664904,0.000020545449,0.000020768905,0.000019826863,0.000020581867,0.000020483432,0.000020968533,0.000019560177,0.000020366486,0.00002039109,0.000020505207,0.000019489198,0.00002030834,0.000020205202,0.000020712196,0.000019613955,0.00002059842,0.000020516904,0.000020728143,0.000019668782,0.000020433896,0.000020343601,0.000020802263,0.000019439007,0.000020294285,0.000020307487,0.000020453763,0.000019385154,0.000020298503,0.000020172069,0.000020678328,0.000019605783,0.000020605983,0.000020537633,0.000020784319,0.00001972094,0.000020501062,0.00002039708,0.00002086262,0.000019478755,0.000020319983,0.000020347461,0.000020485406,0.000019422405,0.000020332118,0.000020192816,0.000020679749,0.000019600044,0.000020602192,0.000020539397,0.000020783546,0.000019728444,0.000020516629,0.000020395542,0.000020850784,0.000019463067,0.000020311827,0.000020343135,0.000020473766,0.000019413035,0.000020337196,0.00002019867,0.000020669439,0.00001959139,0.0000205919,0.000020523616,0.00002075431,0.000019698966,0.000020489215,0.000020384285,0.000020822867,0.000019469917,0.000020309017,0.000020320273,0.000020448868,0.000019420238,0.000020353049,0.000020213065,0.000020675961,0.000019603054,0.000020590407,0.000020531035,0.000020773123,0.000019719115,0.000020496253,0.00002038411,0.0000208451,0.000019467874,0.000020312407,0.000020340844,0.000020474547,0.000019413164,0.000020323705,0.00002018238,0.000020671625,0.000019616855,0.000020630092,0.000020572093,0.000020813732,0.00001975695,0.000020524085,0.000020405192,0.00002085339,0.00001946819,0.0000203053,0.000020329442,0.00002046174,0.000019402503,0.000020312891,0.00002018186,0.000020662657,0.000019595203,0.000020599344,0.000020538651,0.000020782456,0.000019725472,0.000020500182,0.00002039072,0.000020839574,0.000019459318,0.000020300227,0.000020332835,0.000020473415,0.000019417459,0.000020298698,0.000020177877,0.000020671487,0.000019599296,0.000020605217,0.000020548527,0.000020829004,0.000019839137,0.00002060803,0.000020522559,0.000020850128,0.000019441528,0.000020103986,0.000020157875,0.000020228954,0.00001925537,0.000019926227,0.000019956538,0.000020618172,0.000019597184,0.00002068253,0.00002066378,0.000021019188,0.000019835561,0.000020945572,0.000020619036,0.000021017904,0.000019880234,0.000021088837,0.000020826817,0.000020951622,0.000020117412,0.000021058793,0.000020576725,0.000020926043,0.000020273335,0.000021485379,0.000021307895,0.000021589964,0.000021095517,0.00002213508,0.00002190516,0.000021968339,0.000020842615,0.000021184222,0.000021190383,0.000021022595,0.000020193624,0.000020635247,0.000020431695,0.000020591624,0.000019787629,0.000020546038,0.000020376101,0.000020800717,0.000020051486,0.000021095959,0.000020923988,0.000021450083,0.000020350915,0.000020486988,0.000020599186,0.000020181285,0.000019922198,0.000019457166,0.000019917183,0.00002048314,0.000020629088,0.000020948248,0.000021585744,0.000021348636,0.000021687427,0.000021428348,0.000022000897,0.000024746778,0.000025195512,0.00002481917,0.000017198623,0.000010815559,0.000013205609],[0.000015667974,0.000015793734,0.0000147332485,0.00002184585,0.000029440742,0.00002849842,0.000023822791,0.000022453032,0.00001978044,0.000020456357,0.000019574603,0.000020516805,0.0000191477,0.000019814179,0.000019069685,0.000019985355,0.00001932911,0.00002063316,0.00001943797,0.000020239859,0.000019691435,0.000020889576,0.000019687997,0.000019769615,0.000019053507,0.000020233258,0.000019602325,0.000020002459,0.000019247953,0.0000200305,0.000018857912,0.000019081674,0.000018500812,0.000019923813,0.000019272602,0.000020279831,0.000019557587,0.000020636644,0.000019556726,0.000019978266,0.00001927569,0.000020480855,0.000019605672,0.000019842088,0.000019118432,0.000020004365,0.00001907505,0.000019585488,0.000018939738,0.000020348003,0.000019383288,0.000020021103,0.000019326695,0.00002021854,0.000019394955,0.000019712666,0.000019202704,0.000020283875,0.000019650126,0.000019690271,0.000019169824,0.000019942632,0.000019054032,0.00001937486,0.000018618106,0.000020018679,0.00001913804,0.000019832762,0.000019216755,0.000020206242,0.00001926797,0.00001956473,0.000019013483,0.000020155147,0.000019473631,0.000019528661,0.000019084038,0.000019869603,0.000018969924,0.00001929329,0.000018571822,0.00002001053,0.000019129648,0.000019842411,0.00001921604,0.00002021322,0.000019288324,0.0000196015,0.000019058576,0.000020202735,0.000019527617,0.000019570645,0.000019115825,0.000019893701,0.000019003332,0.0000193243,0.000018603127,0.000020028818,0.000019146804,0.0000198433,0.000019217196,0.0000202132,0.000019295629,0.000019610588,0.000019067376,0.000020194875,0.000019507757,0.000019551115,0.000019099696,0.000019882908,0.000018996681,0.000019327616,0.00001860827,0.00002003646,0.000019147497,0.000019839308,0.000019205541,0.000020196398,0.000019264555,0.000019562136,0.00001903166,0.000020183728,0.000019509282,0.000019557621,0.000019119307,0.000019880179,0.000019001103,0.000019352627,0.000018632742,0.000020043093,0.00001914295,0.000019834275,0.000019207466,0.000020190408,0.000019278668,0.000019592344,0.000019054107,0.000020193336,0.000019516838,0.000019555067,0.00001910456,0.00001988435,0.000018997624,0.000019319325,0.00001859557,0.000020025667,0.000019153817,0.000019858388,0.000019243218,0.000020245147,0.000019331083,0.000019635254,0.000019086277,0.000020214511,0.000019533596,0.000019558873,0.000019105217,0.000019866799,0.000018988187,0.000019309102,0.000018592465,0.000020017877,0.00001913585,0.000019831457,0.00001921593,0.000020207726,0.000019293695,0.000019603167,0.000019062667,0.00002019713,0.0000195211,0.00001954912,0.00001909866,0.00001987292,0.000018994924,0.000019305935,0.000018576693,0.00002000366,0.00001912277,0.00001982121,0.000019214629,0.000020213316,0.000019375284,0.000019713532,0.000019196406,0.000020339041,0.000019606045,0.000019531322,0.0000189919,0.00001973678,0.000018840423,0.000019093359,0.000018317389,0.00001971857,0.000018879378,0.000019643569,0.000019156374,0.000020305357,0.0000192706,0.000019645968,0.000018962055,0.00002014475,0.000019315732,0.000019691002,0.000019202118,0.000020269625,0.00001926584,0.000019803392,0.000019062212,0.000020327,0.00001959199,0.000020421117,0.000019843848,0.000020855417,0.000020148842,0.00002073706,0.000020267034,0.000021503949,0.000020877866,0.000021115744,0.000020023357,0.000020815083,0.000019862042,0.000020097295,0.00001906594,0.000020190215,0.00001944752,0.00002019216,0.00001942209,0.00002030007,0.000019609075,0.000019891291,0.000019498568,0.000020680596,0.00002055382,0.000021162856,0.000020315023,0.000021003738,0.000019787365,0.00001976151,0.00001887288,0.00001963179,0.000020329035,0.000020541649,0.00002036233,0.000020986217,0.000020964835,0.000021800834,0.000021001775,0.000021567965,0.000023013048,0.000025672032,0.000024083127,0.000016507462,0.000010628665,0.000013437341],[0.00001579152,0.0000143959805,0.000013924461,0.00002050765,0.000031665128,0.000030664214,0.000027224998,0.000022943188,0.00002129191,0.000020918622,0.000021179514,0.000020110334,0.000020547017,0.000019564432,0.000019942137,0.000019107785,0.000020379774,0.000020076608,0.000021289128,0.000019728877,0.000021025902,0.000020708345,0.000021007303,0.000019683455,0.0000202962,0.00001973902,0.00002083391,0.000019707872,0.000020755519,0.000020113326,0.00002044645,0.000018850757,0.000019848183,0.000019386707,0.00002073518,0.000019511404,0.000020934189,0.000020344725,0.000021026686,0.00001975126,0.00002052473,0.000020113192,0.000021189251,0.000019586367,0.000020677007,0.000020061603,0.000020731839,0.000019342755,0.000020247715,0.000019893625,0.000021046906,0.000019519164,0.000020637528,0.000020129079,0.000020790227,0.000019739491,0.000020469412,0.00002016049,0.000021300824,0.00001961405,0.00002056472,0.000019986746,0.000020680813,0.000019259522,0.000020062042,0.00001967077,0.000020857568,0.00001934283,0.000020499047,0.000020042844,0.000020707299,0.000019571093,0.000020317115,0.000019992902,0.000021093283,0.000019455829,0.000020461839,0.00001991815,0.000020623087,0.000019161289,0.000020029009,0.00001966912,0.000020818417,0.000019345523,0.000020479469,0.0000200425,0.000020725276,0.000019607203,0.000020360836,0.00002005026,0.000021169135,0.000019513636,0.000020507005,0.000019953779,0.000020654914,0.00001919551,0.000020060015,0.000019697989,0.000020836096,0.000019362282,0.000020484214,0.000020049572,0.000020731602,0.0000196229,0.000020373673,0.000020052212,0.00002115057,0.000019491095,0.00002048607,0.000019941472,0.000020653555,0.000019202338,0.000020071036,0.000019703588,0.000020837368,0.000019370482,0.000020475993,0.000020027728,0.000020697013,0.000019585414,0.000020322967,0.00002002246,0.000021128635,0.000019488029,0.000020489782,0.000019956538,0.000020668176,0.000019216994,0.000020084575,0.00001969395,0.000020818776,0.000019348125,0.000020464084,0.000020024865,0.000020701196,0.000019603222,0.000020358388,0.000020050682,0.000021161626,0.00001950463,0.000020499869,0.000019948815,0.000020653515,0.000019190915,0.000020060072,0.000019696168,0.000020836216,0.000019386614,0.000020506672,0.000020077585,0.000020759971,0.000019649957,0.000020388268,0.000020071822,0.00002117186,0.000019512743,0.000020483903,0.000019927442,0.000020628811,0.000019186504,0.000020050624,0.000019688243,0.000020817703,0.000019352165,0.000020472244,0.000020039784,0.000020721876,0.000019613506,0.000020362018,0.000020046686,0.000021149077,0.000019501507,0.000020479663,0.000019927138,0.000020633634,0.00001918217,0.000020031568,0.000019662406,0.00002081034,0.000019326271,0.00002046186,0.000020037569,0.000020772964,0.000019709847,0.000020462327,0.000020149322,0.000021191678,0.000019542278,0.000020343969,0.000019770163,0.000020361107,0.000018967337,0.00001973343,0.000019264591,0.000020514948,0.00001898386,0.000020327212,0.00001991272,0.000020713123,0.000019354085,0.000020337411,0.000019788666,0.000021056725,0.000019356263,0.000020540416,0.000019926358,0.000020539515,0.0000193496,0.000020259304,0.000019790403,0.000020834805,0.000019727842,0.00002080909,0.000020359746,0.0000211396,0.000020504307,0.000021254073,0.00002109642,0.000022709766,0.000021123276,0.00002149093,0.000020696005,0.000021216954,0.000019967923,0.000020276642,0.000019726582,0.000020718775,0.000019558927,0.00002046432,0.000019895673,0.000020575215,0.000019833084,0.000020482652,0.000020446547,0.000022085784,0.00002102472,0.000021721082,0.00002115275,0.00002115291,0.000019827485,0.000019572568,0.000019457239,0.000020420473,0.000020057068,0.000020659563,0.000020210886,0.000020563288,0.000020460962,0.000020008581,0.000020361591,0.000022849472,0.000024021518,0.000025824838,0.000016585444,0.0000110661385,0.000012897959],[0.000016391738,0.000013971349,0.000014526027,0.000020761812,0.00003288161,0.000030789804,0.000025113806,0.000022259934,0.000019667994,0.000020155376,0.000019072068,0.000019805091,0.000018984674,0.000019474095,0.000018338818,0.000019002877,0.000018735482,0.00002014669,0.00001911422,0.000019684037,0.000019570476,0.000020789828,0.000019618314,0.000019849773,0.000018804989,0.000019688448,0.000018867482,0.000019216755,0.000019022242,0.000019729518,0.000018706345,0.00001879527,0.000018156394,0.000019475876,0.000018815661,0.000019570645,0.00001944544,0.000020561465,0.000019392552,0.00001973584,0.000018976763,0.000020040034,0.000019154219,0.000019269055,0.000019105362,0.000019808529,0.000018955874,0.000019240464,0.000018768798,0.000020174837,0.000019198877,0.000019723722,0.000019418367,0.000020453843,0.000019548803,0.000019972378,0.000019404482,0.000020363806,0.000019491987,0.000019447834,0.00001934495,0.000019906756,0.000019022822,0.000019282365,0.000018770175,0.00002002389,0.000019071576,0.000019600287,0.000019367802,0.000020446276,0.000019441473,0.00001986765,0.00001926584,0.000020270087,0.000019357185,0.000019342664,0.000019242263,0.000019867859,0.000018936214,0.00001920937,0.000018738216,0.000020029009,0.000019071667,0.00001962417,0.000019392552,0.000020476422,0.000019467985,0.000019888674,0.000019293917,0.000020294265,0.000019400357,0.000019374398,0.00001927753,0.000019885865,0.000018968332,0.000019232339,0.000018763929,0.00002004248,0.000019085459,0.000019629244,0.000019401263,0.000020478336,0.000019474335,0.00001989666,0.000019306874,0.000020295736,0.000019383288,0.000019350486,0.00001925932,0.000019874054,0.000018963015,0.000019239731,0.000018774437,0.000020055788,0.000019098314,0.000019642388,0.000019405019,0.000020475563,0.0000194647,0.000019877296,0.000019272216,0.000020266472,0.000019370205,0.00001932817,0.000019248173,0.000019857554,0.00001896636,0.000019244613,0.000018777248,0.000020044316,0.000019078489,0.000019625088,0.000019383824,0.000020449492,0.000019446146,0.00001987669,0.000019291487,0.000020295425,0.000019400395,0.000019368412,0.000019270012,0.00001987866,0.000018963738,0.000019234027,0.00001876894,0.000020050988,0.000019104307,0.000019659368,0.000019429297,0.00002050771,0.000019509636,0.000019931318,0.0000193283,0.000020317115,0.000019417237,0.0000193739,0.000019266152,0.000019854411,0.00001894158,0.000019215859,0.000018759027,0.000020032143,0.000019077252,0.000019621251,0.000019392624,0.00002046623,0.000019468374,0.000019887497,0.000019298664,0.000020292813,0.000019397692,0.000019361634,0.000019258106,0.000019860187,0.000018948607,0.00001920743,0.000018730496,0.000020011388,0.000019051979,0.000019579344,0.000019366566,0.000020457255,0.000019557661,0.000019992465,0.000019393272,0.000020385218,0.00001942748,0.000019322953,0.00001911905,0.000019673884,0.000018731373,0.000018980221,0.000018405783,0.000019665611,0.00001873164,0.00001921923,0.00001902324,0.00002023511,0.000019228415,0.00001960887,0.000019032803,0.000020046436,0.000019099789,0.000019135596,0.000018945824,0.000019717272,0.000018676006,0.000019092085,0.000018848887,0.000019948568,0.000019146111,0.000019739568,0.000019714846,0.000020677106,0.000019988003,0.000020347694,0.000019923547,0.000020900197,0.000020315507,0.00002026512,0.000019773028,0.00002007186,0.000019274496,0.0000193611,0.000018673121,0.000019634916,0.00001893495,0.000019540788,0.000019232963,0.000020292215,0.00001969271,0.000020077392,0.000019407964,0.00002039385,0.000019791234,0.000020415664,0.00001999727,0.000020708956,0.000019981351,0.000019738853,0.00001873886,0.000019250632,0.00001956335,0.000019884938,0.000020029851,0.000020302297,0.00002040527,0.000021259568,0.000020609068,0.000021336851,0.000021892294,0.000025239158,0.000025286812,0.000017584789,0.000010686223,0.000013393804],[0.000016116433,0.000014177619,0.000012563691,0.00002197056,0.000033351535,0.000032192485,0.000027136064,0.000023382801,0.000021492837,0.000021052205,0.000020646525,0.000020155185,0.000020725396,0.000019960422,0.00002016097,0.000019718025,0.000020532229,0.00002037723,0.00002063135,0.000019813573,0.000021141415,0.00002119855,0.000021215415,0.000020306597,0.00002043261,0.000020238467,0.000020208747,0.0000193453,0.000020049916,0.00002022938,0.000020483922,0.000019444811,0.000019960878,0.000020141484,0.000020785526,0.000019984098,0.000021152668,0.000020863039,0.000021068978,0.0000203251,0.000020682588,0.000020738898,0.000020894937,0.000019894953,0.00002036365,0.000020433234,0.000020548547,0.000019814537,0.000020572272,0.000020863215,0.0000212208,0.000020107285,0.00002107806,0.000020906356,0.000021222499,0.000020548056,0.000021095335,0.000020976975,0.00002103621,0.000019933848,0.000020497035,0.000020488727,0.000020720434,0.000019810419,0.000020589367,0.000020663367,0.000020986718,0.000019903511,0.000020984377,0.00002081838,0.000021195052,0.000020390273,0.000020980136,0.000020816573,0.000020914991,0.000019809115,0.000020453432,0.00002045665,0.000020690735,0.000019762583,0.000020569427,0.000020689018,0.000020964813,0.000019939724,0.000021002215,0.000020828407,0.000021208012,0.000020413094,0.000020992366,0.000020846848,0.000020951262,0.000019847274,0.000020462816,0.000020482907,0.00002071194,0.000019789422,0.000020593077,0.000020702933,0.000020977415,0.000019949879,0.000021009308,0.000020842455,0.000021211674,0.000020424604,0.000020999552,0.000020852971,0.000020943293,0.000019834104,0.000020457255,0.000020478745,0.000020704889,0.000019788517,0.000020607458,0.000020716838,0.000020990561,0.000019966,0.000021021593,0.000020849413,0.000021206859,0.000020423708,0.000020982658,0.00002083987,0.000020920119,0.000019808247,0.00002041294,0.000020460475,0.000020702699,0.000019795632,0.000020594118,0.000020693498,0.000020964015,0.000019946494,0.000020994885,0.000020819569,0.000021180927,0.000020409572,0.000020989763,0.000020851063,0.000020949425,0.000019847255,0.000020463343,0.000020487205,0.000020707357,0.000019788384,0.000020602389,0.000020713382,0.000020990763,0.000019972875,0.000021033984,0.00002086662,0.000021233003,0.000020451773,0.000021026584,0.000020872332,0.000020961515,0.000019854526,0.000020456397,0.000020461546,0.000020682055,0.000019769557,0.000020582123,0.000020695688,0.000020969193,0.000019944971,0.000020999632,0.000020827612,0.00002119952,0.000020414904,0.000020990503,0.000020849375,0.00002093876,0.000019837094,0.000020443855,0.00002046338,0.000020684107,0.000019758383,0.000020547312,0.00002066855,0.00002093894,0.0000198985,0.000020961057,0.000020814112,0.000021243619,0.000020495645,0.00002106072,0.000020897407,0.000020867694,0.000019754727,0.000020223322,0.000020288693,0.000020446469,0.000019541309,0.000020184903,0.00002028488,0.000020679336,0.00001953708,0.000020599933,0.000020629363,0.000021051967,0.000020147978,0.000020859636,0.000020569369,0.000020760903,0.000019604773,0.00002042468,0.000020312058,0.000020422442,0.000019753106,0.000020632333,0.00002049158,0.000020701274,0.000019932288,0.000021065922,0.00002095832,0.00002120041,0.000020947627,0.000021371614,0.000021373631,0.000021305092,0.00002048353,0.000020658972,0.00002071261,0.000020735537,0.000019935787,0.000020235419,0.00002044253,0.000020465215,0.000019663004,0.000020681562,0.000020642135,0.000021113448,0.000020513498,0.000020855101,0.000020495665,0.000020672374,0.00001986765,0.000020229745,0.000020730218,0.000020597614,0.000019909074,0.000019019195,0.000019264095,0.000019134062,0.000019751693,0.00001971526,0.000020576843,0.000020835001,0.000021237158,0.000021009308,0.000021520997,0.000023129702,0.000024067054,0.000025447516,0.00001833532,0.0000109965895,0.000013307835],[0.000015768375,0.000014481599,0.000012721209,0.000018947974,0.000030447707,0.00003219344,0.000026323001,0.00002400615,0.000020752432,0.000020983638,0.000019509822,0.000020072932,0.00001886804,0.000019652676,0.000019140669,0.000020101648,0.000019357221,0.000020426181,0.000019204004,0.000019834144,0.000019477568,0.000020953523,0.00001974657,0.000020538928,0.000019107567,0.000020306848,0.000019015224,0.000019418201,0.00001898958,0.000020298754,0.000019491,0.000020013029,0.000018673585,0.000019984402,0.00001917721,0.000019989147,0.000019548317,0.00002081441,0.000019797784,0.000020547293,0.000019317446,0.000020616344,0.000019490073,0.000019831494,0.000019082492,0.000020077354,0.000019325367,0.000019864165,0.000018963847,0.00002045431,0.000019331948,0.000019879286,0.000019234723,0.000020511387,0.000019634841,0.000020598989,0.000019567511,0.00002091543,0.000019393901,0.000019654999,0.000019044932,0.000020071438,0.000019184583,0.000019737045,0.00001890893,0.000020326379,0.000019078907,0.000019645706,0.000019033112,0.000020401263,0.000019438581,0.00002039181,0.000019333147,0.000020708956,0.000019167794,0.000019515943,0.000018950757,0.000020082945,0.000019121659,0.0000196889,0.000018862014,0.000020307894,0.000019063922,0.000019666926,0.000019053125,0.000020419968,0.000019465813,0.000020411675,0.000019352516,0.000020736368,0.000019206038,0.000019548746,0.000018965204,0.000020088251,0.000019143772,0.000019709038,0.000018880712,0.00002032287,0.000019080817,0.000019680772,0.000019069194,0.000020434773,0.000019481598,0.000020418001,0.000019362447,0.000020746535,0.000019205487,0.000019537323,0.000018957664,0.000020078829,0.000019133715,0.000019702104,0.00001888327,0.000020334677,0.000019096255,0.000019697181,0.000019084568,0.000020446216,0.000019486875,0.000020424994,0.000019359772,0.000020740878,0.000019209096,0.00001952814,0.00001895513,0.000020091797,0.000019165474,0.000019719904,0.000018876104,0.000020313628,0.000019070303,0.000019674053,0.00001905496,0.00002041619,0.000019461284,0.00002040457,0.000019348974,0.000020732588,0.000019201258,0.000019549865,0.000018964425,0.000020091182,0.000019138386,0.000019707159,0.00001888363,0.000020334832,0.000019097366,0.000019704283,0.000019093213,0.000020461099,0.000019502679,0.000020452339,0.000019393068,0.000020773201,0.000019228908,0.000019561372,0.000018966595,0.00002007119,0.000019122625,0.000019685107,0.00001887155,0.000020313551,0.00001907676,0.000019677505,0.000019064448,0.000020423455,0.000019467021,0.000020412393,0.000019357776,0.000020743704,0.000019210067,0.00001954746,0.000018957357,0.00002008019,0.000019127094,0.000019685032,0.000018857103,0.000020301562,0.000019056813,0.000019643345,0.000019038376,0.000020415315,0.000019523595,0.000020518919,0.00001945761,0.000020875159,0.000019205416,0.000019481637,0.000018832698,0.000020010339,0.00001907154,0.000019574452,0.000018690527,0.000020109834,0.000018837189,0.000019298368,0.000018771518,0.000020215532,0.00001937475,0.000020250745,0.000019176096,0.000020493633,0.000019071049,0.000019564095,0.000018925437,0.000020224616,0.000019203655,0.000019900019,0.000019075342,0.000020363164,0.000019251993,0.000019735351,0.000019258143,0.000020495509,0.00002008559,0.000021143249,0.000020185327,0.000021421178,0.000019947349,0.00002025374,0.000019471885,0.000020511445,0.000019949252,0.000020244683,0.000019082983,0.000020271227,0.000019226707,0.000019715711,0.000019092122,0.000020480602,0.000019960346,0.000020940439,0.000019583267,0.000020708383,0.000019163244,0.000019889792,0.000019014771,0.0000205308,0.000019991588,0.000020377656,0.000018632065,0.000019235495,0.000019016275,0.000019280396,0.000019168854,0.00001997901,0.00002066916,0.000021626623,0.000021421729,0.000022137805,0.000023517538,0.000025202264,0.000024268142,0.000016644277,0.0000110837655,0.000013444737],[0.000015665344,0.000014296312,0.000011632242,0.000017229782,0.000030368541,0.00003498623,0.00003077099,0.000025334848,0.000022823535,0.000021930848,0.000021480235,0.000019864656,0.000020370546,0.000019638625,0.000020504209,0.00001959257,0.000020888301,0.000020470916,0.000021098554,0.00001941209,0.000020873984,0.000020546175,0.000021560727,0.000020007856,0.000020693598,0.000019818279,0.000020374859,0.000019318955,0.000020516081,0.000020423064,0.000021538346,0.000020037913,0.000020555817,0.000019767636,0.00002063186,0.000019559451,0.000021162574,0.000020765556,0.000021947544,0.00002036196,0.000021079428,0.000020542158,0.000021254662,0.000019777837,0.000020623107,0.00002038034,0.000021281516,0.000019887459,0.000020489098,0.000019951267,0.00002074503,0.000019216553,0.000020537615,0.000020210366,0.000021311127,0.000020089383,0.000021076836,0.000020455323,0.000020878124,0.000019368006,0.0000203449,0.000020124127,0.000020697724,0.00001943467,0.000020206915,0.00001972158,0.000020373926,0.00001880323,0.000020228106,0.00001989888,0.000021060701,0.000019789477,0.000020808633,0.00002013142,0.000020602527,0.000019155004,0.000020241152,0.000020070196,0.000020663721,0.000019375673,0.000020196263,0.000019662219,0.000020327057,0.00001883216,0.000020255826,0.000019908903,0.0000210819,0.000019830304,0.000020847763,0.000020177416,0.000020664373,0.000019210836,0.000020270936,0.000020094765,0.000020690086,0.000019407888,0.00002022525,0.000019678293,0.000020346006,0.000018854766,0.00002027409,0.000019928582,0.000021089923,0.000019841103,0.000020853688,0.000020185576,0.0000206598,0.000019202374,0.00002026342,0.000020086854,0.000020676356,0.00001940302,0.000020228299,0.000019686233,0.0000203607,0.000018870813,0.000020287318,0.000019943469,0.00002109077,0.00001984224,0.000020849751,0.000020178168,0.0000206559,0.000019213989,0.000020267093,0.000020102145,0.000020712097,0.000019431705,0.00002023675,0.00001967334,0.000020334794,0.000018841034,0.000020255382,0.000019914505,0.000021073762,0.000019832669,0.000020840049,0.000020164951,0.000020645128,0.000019214189,0.000020276466,0.000020098561,0.00002069119,0.000019407647,0.000020229012,0.000019681953,0.000020356176,0.000018868184,0.000020293684,0.00001995106,0.000021111959,0.000019870966,0.000020890155,0.000020211137,0.00002068101,0.000019222529,0.000020268366,0.000020084364,0.000020664864,0.000019390924,0.00002020732,0.000019665724,0.000020334852,0.000018848204,0.000020264171,0.000019917372,0.000021076894,0.00001983352,0.000020853471,0.000020179821,0.00002066581,0.000019215471,0.000020263806,0.00002008969,0.000020671387,0.000019383122,0.00002019245,0.000019660212,0.000020311982,0.000018815392,0.000020238891,0.000019908599,0.000021135731,0.000019928772,0.000020993624,0.000020307973,0.000020709134,0.000019190255,0.000020110103,0.000019999045,0.000020545294,0.000019316985,0.000020010739,0.000019510064,0.000020107955,0.000018486562,0.00001994362,0.000019800333,0.000021116088,0.000019722764,0.00002072658,0.000020071018,0.000020560465,0.000019378944,0.000020437814,0.00002026771,0.000020885313,0.000019839345,0.000020518584,0.000019917525,0.000020296955,0.00001927523,0.000020332369,0.000020282172,0.000021532534,0.000020886648,0.000021680728,0.000021316087,0.000021655558,0.000020567053,0.00002095878,0.00002092351,0.000021590213,0.000020488103,0.000020602565,0.00001983927,0.00002034222,0.000019034327,0.000020124051,0.000019845967,0.000021178725,0.000020498186,0.00002107945,0.000020309404,0.000020511034,0.000019738758,0.000020247619,0.000020670974,0.000021563934,0.00002050026,0.000019945826,0.00001929112,0.000019687266,0.000019002027,0.000019543788,0.000019943165,0.000020696498,0.00002074331,0.000020891926,0.0000214203,0.000024632252,0.000024387484,0.000023934599,0.000015957654,0.000010793621,0.000012875297],[0.000015865728,0.0000135336795,0.000011888062,0.000016209364,0.000029945075,0.000032916905,0.00002788791,0.000024275527,0.000021493615,0.000020809744,0.000019399322,0.000019365385,0.000018725354,0.000019119325,0.000018530141,0.000019183357,0.000019303578,0.000020210924,0.000019032657,0.000019160192,0.000019129118,0.00002037651,0.000019455292,0.000019953914,0.000019070303,0.000019942288,0.000018809544,0.000019302142,0.000018923036,0.000020207552,0.000019487954,0.000019913137,0.000019280747,0.000020044163,0.000019131034,0.000019698025,0.000019601015,0.000020779959,0.000019963087,0.000020276255,0.000019839687,0.000020809804,0.000019727053,0.000019867537,0.000019388612,0.000020142577,0.000019511142,0.000019559544,0.000019189725,0.000020036268,0.000018988983,0.000019292482,0.000019166753,0.000020481186,0.000019665049,0.000020405836,0.000019832894,0.000020932031,0.000019397656,0.000019621682,0.00001937377,0.000020339467,0.000019179754,0.000019330695,0.000018906749,0.000019915378,0.000018654202,0.000018961442,0.000018922947,0.000020372567,0.000019385801,0.00002019326,0.000019535999,0.000020704041,0.00001913074,0.000019455198,0.000019210105,0.000020333591,0.000019108005,0.0000193434,0.000018875204,0.000019910802,0.000018652227,0.00001901849,0.000018971135,0.000020429628,0.000019425775,0.000020240765,0.000019586441,0.000020743844,0.000019185736,0.000019495204,0.000019244759,0.000020345753,0.000019138643,0.000019375046,0.000018902494,0.000019923698,0.000018664932,0.000019027177,0.000018985942,0.000020432844,0.000019429037,0.000020239528,0.000019590661,0.000020747088,0.000019182204,0.00001948026,0.000019233514,0.000020329617,0.000019123445,0.000019367933,0.000018904928,0.000019927536,0.00001867255,0.000019037523,0.000019001935,0.000020453568,0.000019441028,0.000020241208,0.000019592624,0.000020742202,0.000019183137,0.000019485,0.00001924731,0.00002034362,0.000019152683,0.000019384583,0.000018909795,0.00001991513,0.0000186518,0.000019008443,0.00001896949,0.000020425792,0.000019422183,0.000020241941,0.000019588048,0.000020736348,0.000019167923,0.0000194913,0.000019248504,0.000020352214,0.000019136107,0.000019376654,0.000018904495,0.000019927898,0.00001867492,0.000019045005,0.000019006158,0.000020467442,0.000019460838,0.000020281708,0.000019623067,0.000020776928,0.000019200561,0.000019500094,0.000019246136,0.000020336945,0.000019123647,0.000019357629,0.000018889843,0.000019911125,0.000018655483,0.000019020808,0.000018981,0.000020435884,0.000019426368,0.000020242309,0.00001959098,0.000020749878,0.000019184712,0.000019498197,0.000019242521,0.000020342453,0.000019123136,0.000019349342,0.000018881416,0.000019908675,0.000018643104,0.000019001302,0.000018973868,0.000020458583,0.000019518011,0.000020380416,0.000019719266,0.000020904501,0.000019241934,0.000019455754,0.000019115916,0.000020173375,0.000019017309,0.000019176661,0.000018724086,0.000019705712,0.000018523604,0.000018761782,0.000018793515,0.000020320816,0.000019441344,0.000020103029,0.000019507217,0.000020586029,0.000019220053,0.000019637819,0.000019485185,0.000020592883,0.000019411462,0.000019773706,0.000019415904,0.000020210058,0.000019121931,0.000019451432,0.000019573388,0.000020760408,0.000020284358,0.00002119968,0.000020919997,0.000021760869,0.000020398773,0.000020369787,0.00001986943,0.000020460024,0.000019809511,0.000019701522,0.000019148172,0.000019589617,0.000018731229,0.000019080018,0.000018950072,0.000020476109,0.000019972551,0.000021352158,0.000020380941,0.000021191254,0.000019671765,0.000020394786,0.000019593333,0.00002080659,0.000020065583,0.000020336285,0.00001934888,0.000019494366,0.00001987288,0.000019818242,0.00001992197,0.000020661513,0.000020656806,0.00002138103,0.00002077978,0.000021991542,0.0000233729,0.000026335558,0.000024943312,0.00001677253,0.000010311183,0.00001309194],[0.00001550669,0.000013065572,0.000010137955,0.00001612704,0.000027830443,0.000033989014,0.000028273305,0.000024861953,0.000022377786,0.000021474232,0.000020629028,0.00001995671,0.000020324633,0.000019929039,0.000020120828,0.000019728408,0.000020622263,0.000020617326,0.000020497659,0.000019632987,0.000020773421,0.000020899559,0.000021034026,0.000020003392,0.000020778196,0.000020477613,0.000020767377,0.000019748248,0.000020363437,0.000020559759,0.000020682824,0.00001993436,0.000020657772,0.000020599875,0.0000210739,0.000020243891,0.00002126192,0.000021175534,0.000021342144,0.000020403888,0.000021313019,0.000021257925,0.000021782402,0.000020553642,0.000020806152,0.000020681562,0.000020438281,0.000019755953,0.000020448088,0.000020606654,0.000021044962,0.000019817051,0.000020846928,0.000020915151,0.000021232134,0.000020311729,0.000021392312,0.000021040025,0.000021350488,0.000019931795,0.000020845058,0.00002080524,0.000020629383,0.000019477828,0.000020232079,0.000020299065,0.000020684423,0.000019364239,0.00002076203,0.000020723042,0.000021186059,0.00002006654,0.000021217522,0.000020728221,0.000021118703,0.00001973631,0.000020767913,0.000020734884,0.00002063202,0.000019431613,0.000020250996,0.000020279987,0.000020688209,0.000019431463,0.000020842615,0.000020734095,0.000021203161,0.00002010529,0.000021271797,0.000020776668,0.000021177333,0.000019795594,0.000020798554,0.000020775737,0.0000206611,0.000019466612,0.00002029235,0.000020300306,0.000020707752,0.000019444773,0.000020850963,0.00002074228,0.000021194122,0.000020107016,0.000021272954,0.000020773517,0.000021173151,0.00001978429,0.000020785348,0.000020759675,0.000020645324,0.00001946043,0.000020298754,0.00002029893,0.000020710379,0.000019465757,0.000020860232,0.000020752233,0.000021202653,0.000020112846,0.00002127068,0.000020785368,0.000021181435,0.000019803922,0.000020805,0.000020776768,0.000020656254,0.000019475061,0.000020283682,0.000020291516,0.000020691386,0.000019430352,0.000020834388,0.000020736585,0.000021190624,0.000020111082,0.0000212748,0.000020760943,0.000021152164,0.000019786516,0.000020801708,0.000020777343,0.000020655702,0.000019466073,0.000020294865,0.000020293915,0.000020711623,0.000019466908,0.000020869526,0.000020764724,0.000021231304,0.000020139505,0.000021301516,0.00002079548,0.00002118412,0.000019792593,0.000020794627,0.000020769736,0.000020649517,0.000019454865,0.000020281961,0.00002028726,0.000020690697,0.000019442492,0.000020848895,0.000020741805,0.00002120061,0.000020103507,0.000021268734,0.000020764803,0.000021163967,0.000019785006,0.000020783902,0.000020764921,0.000020644242,0.000019450968,0.000020252543,0.00002028109,0.000020679336,0.000019419718,0.000020849513,0.000020755715,0.000021276544,0.000020234955,0.000021387334,0.000020915231,0.000021194182,0.000019721165,0.000020531974,0.00002055084,0.000020325622,0.000019259172,0.000019884823,0.000020037798,0.000020454348,0.000019222089,0.00002053924,0.000020681919,0.00002116645,0.000019981258,0.00002120429,0.000020734766,0.000021083268,0.00002002309,0.000021313404,0.00002101147,0.000020927182,0.000019922654,0.000020892106,0.000020569605,0.000020916885,0.000020184036,0.000021391555,0.000021281861,0.000021603104,0.000021174465,0.00002239132,0.000022116155,0.000022029388,0.000021068194,0.000021301415,0.00002129185,0.00002073354,0.000020017436,0.000020172722,0.000020303924,0.000020400037,0.000019641846,0.000020864689,0.000020797108,0.000021621117,0.00002102536,0.000022180684,0.00002129776,0.00002152028,0.000020816373,0.000021238737,0.00002124218,0.000020831229,0.000020493007,0.000019893208,0.000020238063,0.000020663818,0.000020936224,0.00002076211,0.000021386397,0.000020994024,0.000021263259,0.000021128251,0.000021375405,0.000023881614,0.000024706878,0.000025829198,0.000017688835,0.000010831361,0.000013022245],[0.0000149645175,0.000012063288,0.00001047217,0.000013941803,0.000025525,0.000033137883,0.000026292395,0.00002407245,0.000021086566,0.000020921914,0.000019697878,0.000020009727,0.000018996156,0.000019455958,0.000019253112,0.000019845344,0.000019606252,0.00002055031,0.000019447667,0.0000199244,0.000019540843,0.000020612057,0.000019433335,0.000019646322,0.000018874682,0.000020169624,0.000019154439,0.000019910021,0.000019111212,0.000020291924,0.000019003837,0.000019396603,0.000018785398,0.000020130787,0.000019325129,0.000020187348,0.000019689405,0.000020669811,0.000019441584,0.000019786856,0.000019240979,0.000020665671,0.00001984612,0.000020260037,0.000019493047,0.000019962306,0.000018740771,0.000018996283,0.000018601175,0.000019975865,0.000019060975,0.000019647166,0.00001919842,0.000020265372,0.000019072813,0.00001967017,0.00001906583,0.000020469295,0.000019205396,0.000019617546,0.000019143006,0.000020099136,0.000018734427,0.000018840907,0.000018302268,0.000019654868,0.00001860625,0.000019145544,0.0000188828,0.000020106689,0.000018871226,0.000019491896,0.000018762283,0.00002019422,0.000018877921,0.000019374824,0.000018940422,0.000020011445,0.000018612922,0.000018784538,0.000018223735,0.00001964771,0.000018584702,0.000019205541,0.000018920637,0.000020139409,0.000018890654,0.000019521622,0.00001880472,0.000020243138,0.000018949366,0.000019436042,0.000018984656,0.000020040932,0.000018653294,0.000018820883,0.000018258928,0.000019669418,0.000018615441,0.000019221503,0.000018933308,0.000020140793,0.000018893825,0.000019524434,0.000018806799,0.000020235957,0.000018942681,0.000019421404,0.000018973416,0.000020025229,0.000018642713,0.000018815375,0.000018260931,0.000019676098,0.000018624356,0.000019240593,0.00001894783,0.000020152493,0.000018911058,0.000019532683,0.000018817995,0.000020251306,0.000018966759,0.000019445757,0.000019007462,0.000020047852,0.000018656336,0.000018816523,0.000018260287,0.000019657306,0.00001859502,0.000019203326,0.000018919176,0.000020127485,0.00001888932,0.000019525829,0.000018797475,0.000020226427,0.000018928002,0.000019421572,0.000018979876,0.00002004183,0.000018644669,0.000018815339,0.000018256387,0.00001966837,0.000018615247,0.000019238558,0.000018949962,0.000020164682,0.00001891665,0.000019553836,0.000018828585,0.000020262145,0.000018950668,0.000019424479,0.000018974375,0.000020032448,0.000018647052,0.000018809167,0.00001825139,0.000019662555,0.000018605095,0.0000192145,0.000018926503,0.00002013672,0.000018886602,0.000019515273,0.000018792152,0.000020229303,0.000018932134,0.000019420015,0.000018972838,0.000020034835,0.00001863763,0.000018790612,0.000018226117,0.000019647541,0.000018585304,0.000019197358,0.000018906081,0.000020145844,0.000018962237,0.000019636956,0.000018927494,0.000020383974,0.000018975225,0.000019340874,0.000018809149,0.00001984084,0.000018461262,0.000018578481,0.000018008885,0.0000194162,0.00001837318,0.0000189466,0.000018710038,0.000020016712,0.00001888172,0.000019438785,0.00001879269,0.000020208729,0.000019170502,0.00001973377,0.000019279936,0.00002031698,0.000019073195,0.00001928023,0.000018834997,0.000020180822,0.00001957533,0.00002031361,0.000019862859,0.000020875914,0.000019987641,0.000020745068,0.00002037484,0.000021712487,0.000020879397,0.000021235153,0.000020316262,0.000020925225,0.000019820793,0.000019619081,0.000018831333,0.000019836054,0.00001902451,0.000019732302,0.00001926088,0.000020612018,0.000019724983,0.000020599246,0.00001965725,0.000020970114,0.000020018068,0.000021065382,0.000020021294,0.000021148007,0.000019589523,0.000019824498,0.00001897291,0.000019763092,0.000020607222,0.000020758705,0.000020621397,0.000020910564,0.000020862162,0.0000215605,0.00002073166,0.000021145366,0.000022365582,0.000025126887,0.000025091926,0.00001705317,0.000010753725,0.00001328638],[0.000015322541,0.000011203096,0.0000103058355,0.0000138350615,0.000026828751,0.000036776553,0.000029743374,0.00002465103,0.000022374372,0.000021649446,0.00002133207,0.000019897268,0.000020100499,0.000019638923,0.000020212621,0.00001953844,0.000020977355,0.000020647845,0.000021601169,0.000019778667,0.000021106323,0.000020541727,0.000020897427,0.00001936472,0.000020201425,0.000019471328,0.000020446585,0.000019162111,0.000020396128,0.000019814463,0.000020259053,0.000018845849,0.000019885962,0.000019388297,0.000020437561,0.000019402225,0.000020993746,0.00002039002,0.000020934387,0.000019433188,0.00002040385,0.000020001122,0.00002103533,0.000019613824,0.000020565936,0.000019819961,0.000019999006,0.00001864458,0.000019552606,0.000019254709,0.000020314694,0.000018902943,0.000020297517,0.000019724175,0.000020229785,0.00001885473,0.000020040454,0.000019519239,0.000020474643,0.000018765379,0.000019962821,0.000019499183,0.000019723158,0.000018282102,0.000019180907,0.00001893374,0.000019915491,0.00001835299,0.000019822173,0.000019428518,0.00002005703,0.000018582292,0.00001985091,0.00001919853,0.00002016824,0.000018464538,0.000019722933,0.00001933619,0.000019625406,0.000018153953,0.000019125982,0.000018892744,0.00001991025,0.00001835446,0.00001990987,0.000019425368,0.000020094594,0.000018613171,0.00001989706,0.000019235236,0.000020249008,0.000018546212,0.000019793612,0.00001938902,0.000019674748,0.000018201157,0.000019166187,0.00001891351,0.000019939778,0.000018386643,0.000019932668,0.000019428498,0.000020099347,0.00001862171,0.000019906623,0.000019231642,0.000020246343,0.000018537954,0.000019783347,0.000019382273,0.000019669007,0.000018194893,0.000019174597,0.000018916271,0.000019945921,0.000018401044,0.00001995279,0.000019439323,0.000020116337,0.00001864627,0.000019904706,0.000019250065,0.000020268657,0.000018574214,0.000019815048,0.000019409035,0.000019683417,0.000018213224,0.000019168874,0.000018915927,0.000019919613,0.000018372953,0.000019920792,0.000019423145,0.000020086336,0.000018617733,0.000019903415,0.00001921364,0.000020233354,0.000018530849,0.00001978678,0.000019387448,0.000019667299,0.000018188595,0.000019163812,0.000018909634,0.000019936984,0.000018392868,0.000019946625,0.000019449002,0.000020120442,0.0000186401,0.000019923793,0.000019253075,0.000020247791,0.000018531944,0.000019776762,0.000019382142,0.00001966068,0.000018189323,0.000019154146,0.000018909723,0.000019928715,0.000018375442,0.000019920564,0.00001941957,0.000020087236,0.000018607012,0.000019885734,0.000019220915,0.000020233758,0.000018536823,0.000019777517,0.00001937242,0.000019644394,0.000018169108,0.000019118814,0.000018889898,0.000019908106,0.00001834725,0.000019892694,0.000019391628,0.000020125586,0.000018729514,0.000019977504,0.00001935438,0.000020254127,0.000018483988,0.00001956402,0.000019135705,0.000019320338,0.00001797121,0.000018865863,0.000018635461,0.000019650071,0.00001807292,0.000019561316,0.000019211771,0.000019984536,0.000018557126,0.000019918247,0.00001939603,0.000020472438,0.00001898719,0.00002018088,0.000019585825,0.000019948739,0.000018851584,0.000019823989,0.000019534638,0.000020773421,0.0000197062,0.000021017122,0.000020273335,0.00002102045,0.000020137853,0.00002125969,0.000021043194,0.000022291162,0.000021059455,0.00002151244,0.000020833353,0.000020946949,0.000019709696,0.000019996927,0.00001950943,0.000020322328,0.000018953324,0.00002037307,0.00001966837,0.000020403364,0.000019365605,0.000020625095,0.000020017782,0.000020952162,0.000019940446,0.000020926802,0.000020487596,0.000020335065,0.000019369114,0.00001919961,0.000019314388,0.00002031264,0.000020164873,0.000020580552,0.00002018238,0.00002046342,0.000020364118,0.000019979829,0.000020162412,0.000022210357,0.00002387576,0.00002615051,0.000017314198,0.000011304786,0.0000128594675],[0.000015727886,0.000012237665,0.00001143152,0.00001506689,0.000028033175,0.00003475883,0.000027124885,0.00002332832,0.000020502273,0.00002063627,0.000019469842,0.000019655356,0.00001891885,0.000019201623,0.000018614945,0.000019098075,0.000019110374,0.000020114323,0.000019297431,0.000019331967,0.000019497136,0.000020259786,0.000019292462,0.00001935091,0.000018362163,0.000019267805,0.000018247612,0.00001869313,0.000018376668,0.000019428908,0.000018339326,0.000018765004,0.000018071887,0.000019500949,0.000018668261,0.000019490612,0.000019370851,0.000020606103,0.00001927341,0.000019551357,0.000018723727,0.000019993018,0.000018827706,0.000019059613,0.000018840405,0.000019548168,0.000018466986,0.00001862647,0.000018036384,0.000019335637,0.000018296892,0.000018681636,0.000018666286,0.000019723535,0.000018687766,0.000019039484,0.00001839964,0.000019823856,0.000018534913,0.000018761479,0.000018473855,0.000019490259,0.000018138846,0.0000183169,0.000017785555,0.000019137127,0.000018052233,0.000018350225,0.000018303575,0.000019567118,0.00001840229,0.000018774688,0.000018153174,0.000019601333,0.000018267132,0.00001852673,0.000018218401,0.000019399506,0.00001798057,0.00001821663,0.000017692933,0.000019129502,0.00001804485,0.000018401272,0.000018341756,0.0000196331,0.00001845086,0.000018823577,0.000018189357,0.000019642483,0.00001832064,0.000018579298,0.00001827844,0.000019426257,0.000018026412,0.000018258215,0.000017727305,0.000019143918,0.000018063944,0.000018415967,0.00001836162,0.000019631454,0.000018452003,0.000018827312,0.00001819951,0.000019646754,0.000018321163,0.000018572726,0.00001827241,0.000019417756,0.000018017492,0.000018244082,0.000017722334,0.000019142057,0.000018067976,0.000018421359,0.000018374232,0.000019644543,0.000018477078,0.000018842939,0.000018204038,0.000019641733,0.000018344135,0.000018594079,0.000018300016,0.000019435207,0.000018044488,0.000018261591,0.000017729739,0.000019124667,0.000018044626,0.000018397113,0.000018352044,0.000019622692,0.000018440993,0.000018811732,0.000018187242,0.000019633568,0.000018308972,0.000018566776,0.000018271348,0.000019425608,0.000018020688,0.000018240846,0.000017713988,0.000019134573,0.000018060327,0.000018414086,0.000018369921,0.00001965573,0.000018472887,0.00001884594,0.000018210185,0.000019658637,0.000018321407,0.000018568333,0.000018267008,0.000019425033,0.000018017767,0.00001823928,0.000017715474,0.000019135741,0.000018057692,0.000018405624,0.000018351624,0.000019624695,0.000018441995,0.000018810924,0.000018183651,0.000019633924,0.000018317283,0.000018575134,0.000018268089,0.000019414589,0.000017999664,0.000018219149,0.000017695364,0.000019124504,0.000018044437,0.000018406081,0.000018335984,0.00001964756,0.00001853053,0.000018963015,0.000018296001,0.000019755047,0.000018338887,0.00001850743,0.000018073972,0.000019154857,0.00001776374,0.000018047189,0.000017497436,0.00001896466,0.000017889304,0.000018315293,0.000018092771,0.000019572008,0.000018376457,0.000018956813,0.000018409048,0.00001985055,0.00001865027,0.000019096346,0.000018686162,0.00001977135,0.000018445284,0.000018780722,0.000018479968,0.000019758138,0.000019027377,0.000019666662,0.00001965483,0.00002074604,0.00001982378,0.000020497737,0.000019992141,0.000021233533,0.000020216361,0.000020394084,0.000019858899,0.000020241208,0.000019316543,0.000019189634,0.000018670129,0.00001940787,0.000018525441,0.000018784232,0.000018631374,0.000019884084,0.000019023058,0.00001979363,0.000019129793,0.00002020709,0.000018904602,0.000019638212,0.00001890527,0.000020188694,0.000018994833,0.00001924687,0.000018184692,0.000019339583,0.000019436617,0.000020195377,0.000019988709,0.000020475447,0.00002035637,0.000021445789,0.000020775005,0.000021375057,0.00002173704,0.000024522797,0.000025293326,0.00001857726,0.000011037207,0.000013494332],[0.000015411393,0.0000131827965,0.000010512365,0.000017053235,0.00002841844,0.00003639872,0.000028734998,0.000023896102,0.000021682134,0.000021305945,0.000020766229,0.000019985164,0.000020366271,0.000019833215,0.000020128773,0.000019686964,0.000020441672,0.000020474958,0.000020472009,0.000019682067,0.000020911042,0.000020976533,0.00002090847,0.00001987974,0.000020132591,0.00001987777,0.000019849565,0.000018906856,0.00001969675,0.000019794368,0.000020154685,0.00001916065,0.000019978419,0.00001999956,0.000020663309,0.000019827563,0.000021009568,0.000020736228,0.000021013015,0.00001999296,0.000020679037,0.00002053734,0.000020662204,0.000019436506,0.000020024903,0.000020107553,0.000020167201,0.000019283358,0.000020139256,0.000020110238,0.00002046153,0.000019225443,0.000020277685,0.000020342512,0.000020649024,0.000019626697,0.000020501004,0.000020420124,0.000020610505,0.000019157635,0.000019928126,0.00002002307,0.000020184769,0.000019018995,0.000019913878,0.000019973464,0.000020360214,0.000018986739,0.000020128713,0.000020209422,0.000020571959,0.000019369318,0.000020327716,0.000020189946,0.000020434365,0.000018952782,0.000019797764,0.00001994111,0.000020129079,0.000018909524,0.000019870493,0.000019901918,0.000020380357,0.000019000032,0.000020202253,0.000020236672,0.000020610938,0.000019411924,0.000020367439,0.000020205298,0.00002046988,0.00001899418,0.00001982015,0.000019981218,0.000020152916,0.000018953288,0.000019898198,0.000019907593,0.000020386617,0.00001901341,0.0000202137,0.000020235591,0.000020606967,0.000019419014,0.000020378415,0.000020205933,0.000020475718,0.000018993747,0.000019813348,0.000019976398,0.00002014323,0.000018938943,0.000019891766,0.000019901328,0.000020382107,0.00001901711,0.000020225058,0.000020254416,0.000020630032,0.0000194526,0.000020380552,0.000020225425,0.000020491816,0.000019017725,0.00001982603,0.000019993706,0.000020163508,0.000018957842,0.000019891539,0.000019895124,0.000020371204,0.00001901312,0.00002020657,0.00002023951,0.000020599127,0.000019412146,0.000020371963,0.000020196245,0.00002046192,0.000018987645,0.000019811874,0.00001997922,0.000020146075,0.000018938652,0.000019882738,0.00001990074,0.000020388523,0.000019012958,0.000020218578,0.00002025795,0.000020634125,0.000019434727,0.000020381078,0.000020210578,0.00002046828,0.000018985687,0.000019814857,0.000019981371,0.000020145346,0.000018937479,0.000019885221,0.00001990393,0.000020387453,0.000019010618,0.000020210984,0.000020238082,0.000020605847,0.000019410869,0.000020361884,0.000020206377,0.000020462972,0.00001899036,0.000019804564,0.000019965619,0.000020130059,0.000018915278,0.000019864921,0.000019900968,0.00002037348,0.000019001338,0.00002021557,0.000020245474,0.000020653219,0.000019526835,0.00002041469,0.00002029798,0.000020398733,0.0000188877,0.000019532477,0.00001969737,0.000019839363,0.000018713357,0.000019594905,0.00001974546,0.000020215532,0.000018854998,0.00002001637,0.000020067344,0.000020623678,0.000019586141,0.000020613237,0.000020339778,0.000020505187,0.000019390774,0.00002035606,0.000020219562,0.000020339196,0.000019483996,0.000020370875,0.000020294285,0.000020529507,0.000019784778,0.000020995147,0.000020846392,0.000021250164,0.000020736743,0.000021599211,0.000021398573,0.000021183594,0.000020475698,0.000020652,0.000020894497,0.00002063741,0.000019914638,0.000020308145,0.000020502077,0.000020304777,0.00001922759,0.000020335297,0.00002018265,0.000020916747,0.00002016824,0.000021052469,0.000020488924,0.000020293588,0.000019503868,0.000019907024,0.000020402917,0.000020284204,0.000019548896,0.000019015804,0.000019278374,0.000019487954,0.000020070675,0.000020143694,0.000020772488,0.000020921076,0.000021346092,0.000021178403,0.000021560685,0.000022733386,0.000023939463,0.000025459167,0.000019462526,0.000011429984,0.000013513741],[0.000015243735,0.000015442023,0.00001171879,0.000017034135,0.000029082803,0.000034357792,0.000027504853,0.000024419367,0.000020898364,0.0000211293,0.000019711424,0.00002017124,0.000019023748,0.000019777894,0.000019379186,0.000020206493,0.000019543659,0.00002048148,0.000019455718,0.000019811325,0.000019736386,0.000020865882,0.000019703362,0.000020157835,0.000018834888,0.000019822022,0.000018559074,0.000018770086,0.000018395447,0.000019646492,0.00001891342,0.000019669194,0.000018533428,0.00001994267,0.000019108935,0.000019957071,0.000019472387,0.000020732155,0.000019545652,0.000020321728,0.0000191928,0.000020432202,0.000018986504,0.000019058232,0.0000185033,0.00001944826,0.000018794553,0.000019445886,0.000018769299,0.000020044736,0.000018924318,0.000019056686,0.000018778574,0.000019752748,0.00001913585,0.000019747702,0.000019073032,0.000020304467,0.000018916937,0.000018905252,0.000018427754,0.000019562473,0.000018781671,0.000019244393,0.000018611998,0.000019934114,0.000018840476,0.000018962292,0.000018700674,0.00001974674,0.000018996718,0.000019497546,0.000018849641,0.000020107438,0.000018723604,0.000018730674,0.000018287055,0.000019527002,0.000018684397,0.000019172585,0.000018529592,0.000019857573,0.000018754145,0.000018944776,0.000018684486,0.000019768579,0.000019015115,0.000019551524,0.00001887551,0.000020147381,0.00001874792,0.000018750512,0.000018297555,0.000019542764,0.000018713874,0.000019212155,0.000018553075,0.000019868883,0.000018762714,0.000018954426,0.000018689709,0.000019769464,0.000019017418,0.000019561541,0.000018885106,0.000020155914,0.00001875205,0.000018751818,0.000018294537,0.000019539613,0.000018708628,0.000019201185,0.000018544548,0.000019859732,0.000018764395,0.000018959814,0.000018703258,0.000019791534,0.000019051671,0.000019589635,0.000018911545,0.000020184576,0.000018790073,0.000018780363,0.000018323924,0.000019552344,0.000018726996,0.000019219799,0.000018560702,0.000019858597,0.000018759385,0.000018953,0.000018692454,0.000019766167,0.000019020628,0.000019558294,0.000018885863,0.000020148535,0.000018744613,0.000018744186,0.00001829253,0.000019538124,0.000018709556,0.000019201476,0.000018545503,0.000019865263,0.000018764915,0.000018952871,0.000018693398,0.000019787345,0.000019040082,0.00001957477,0.000018887395,0.000020149533,0.00001874962,0.000018748278,0.00001830068,0.000019542242,0.000018712126,0.000019196972,0.000018546123,0.000019863559,0.000018767132,0.000018951987,0.000018693398,0.00001977005,0.00001901468,0.000019543098,0.000018878227,0.00002014425,0.000018749119,0.000018745168,0.000018295654,0.000019537581,0.000018690973,0.00001917414,0.000018529718,0.000019862156,0.000018755663,0.000018956323,0.000018676737,0.000019787458,0.000019091849,0.000019686366,0.000018991139,0.000020271556,0.000018752606,0.000018660643,0.000018114179,0.0000193453,0.000018515038,0.000018975894,0.000018303594,0.000019757346,0.000018587078,0.000018905685,0.000018449857,0.000019832516,0.00001912638,0.000019894915,0.00001896269,0.000020364,0.000019016674,0.000019503794,0.000018950233,0.000020366933,0.000019372606,0.000019953171,0.000019086841,0.000020298232,0.000019244593,0.000019762849,0.000019284405,0.000020473726,0.00002004615,0.000021036914,0.000020175434,0.000021429147,0.000020017076,0.000020366291,0.000019468485,0.000020606496,0.000019888881,0.000020342162,0.000019409461,0.000020567151,0.000019333129,0.000019517805,0.000018998131,0.000020155665,0.000019770125,0.000020625448,0.000019478868,0.000020578924,0.000019014824,0.000019461248,0.000018505347,0.000020000169,0.000019224251,0.000019829453,0.000018004866,0.000019027158,0.000018646038,0.000019558145,0.000019308127,0.000020426374,0.00002065464,0.000021768634,0.000021555688,0.000022346736,0.000023360844,0.000025519525,0.000025037953,0.000017626462,0.000011513709,0.000013673752],[0.000015878548,0.00001702855,0.000012827549,0.00001856743,0.000031994347,0.00003577618,0.000031801006,0.00002521082,0.000022855618,0.000021835476,0.000021569756,0.000019979982,0.000020445652,0.0000197712,0.000020568486,0.000019882851,0.000021076072,0.000020729309,0.000021374935,0.000019817391,0.000021243537,0.000020873626,0.000021666569,0.000019972207,0.000020589348,0.000019632109,0.000019988252,0.000018682045,0.000019925808,0.000019709114,0.00002087958,0.00001942196,0.000020359319,0.000019605222,0.000020609208,0.000019461173,0.000021099864,0.000020572174,0.00002169175,0.000020038982,0.000020952004,0.000020109337,0.00002068464,0.000018896762,0.000019959927,0.000019653387,0.000020619902,0.000019392774,0.00002035045,0.00001975742,0.000020647825,0.000018917372,0.00002013891,0.000019776027,0.00002102526,0.000019573725,0.000020668787,0.000020013162,0.00002065915,0.000018703062,0.000019843223,0.000019596493,0.000020661317,0.000019246907,0.000020211522,0.000019676436,0.000020622872,0.00001882117,0.000020072473,0.000019693764,0.000020894577,0.000019354879,0.000020483687,0.00001982272,0.000020509295,0.000018511877,0.0000196969,0.000019486206,0.000020577707,0.000019117648,0.000020178168,0.000019553725,0.000020505478,0.000018765182,0.00002008107,0.000019690233,0.000020936142,0.000019405297,0.000020530037,0.000019855357,0.000020549054,0.00001853951,0.000019711275,0.000019514697,0.00002060453,0.000019161562,0.00002021,0.000019560459,0.00002049588,0.000018774705,0.000020087946,0.000019691022,0.000020935506,0.000019419553,0.000020543177,0.00001985515,0.000020552563,0.00001854248,0.00001971073,0.000019514177,0.00002060054,0.000019156794,0.000020202968,0.000019559244,0.000020502037,0.000018785378,0.00002009772,0.00001970744,0.000020962356,0.00001945362,0.000020568703,0.000019907136,0.000020602802,0.000018588282,0.000019737345,0.000019530355,0.000020615755,0.000019175493,0.000020218502,0.000019568442,0.000020503076,0.000018782495,0.000020088559,0.00001969752,0.000020934986,0.000019422405,0.000020543472,0.000019855755,0.000020541944,0.00001853334,0.000019708343,0.00001950945,0.000020601487,0.00001916065,0.000020207051,0.000019562007,0.000020506164,0.000018774293,0.000020090398,0.000019704321,0.00002095576,0.000019429537,0.000020539297,0.00001985335,0.00002054888,0.000018541401,0.000019708887,0.000019516167,0.000020601132,0.00001915548,0.000020199499,0.000019565849,0.000020509295,0.000018777642,0.000020087486,0.000019698215,0.000020931813,0.000019406149,0.000020528683,0.000019859732,0.00002053924,0.000018537741,0.000019704792,0.000019515554,0.000020591233,0.00001913182,0.000020183863,0.000019559135,0.000020504189,0.00001875409,0.000020069008,0.00001967484,0.00002098842,0.00001952501,0.000020633594,0.000019965808,0.00002053736,0.000018505294,0.00001952745,0.00001937998,0.000020392004,0.000018957391,0.000019942403,0.00001942083,0.00002041553,0.000018509336,0.000019916803,0.000019561501,0.000021136699,0.000019557194,0.000020669258,0.000019893378,0.000020560228,0.000019246156,0.00002038584,0.00002021025,0.000021064336,0.000019997613,0.000020595553,0.000019915473,0.000020463849,0.000019435985,0.000020502604,0.00002031171,0.000021548803,0.000020732155,0.00002156451,0.000021101874,0.000021484107,0.000020465117,0.000020934587,0.000020872749,0.00002161118,0.000020527215,0.000020971154,0.000020222049,0.000020607597,0.00001922926,0.000020234935,0.000019769992,0.0000211263,0.000019989471,0.000020978376,0.000020131018,0.000020545725,0.0000193224,0.000020028972,0.000020067266,0.00002121936,0.000019825178,0.000019596082,0.000018868832,0.00001964728,0.000019131836,0.000019902638,0.000020339583,0.000020915091,0.000020864012,0.000020972733,0.000021438405,0.00002444966,0.000024750694,0.000025257797,0.000016551947,0.000011089274,0.00001312319],[0.000015867483,0.000017593427,0.000015369827,0.000021402575,0.00003200515,0.00003130056,0.000027004431,0.00002371435,0.00002112779,0.00002086439,0.000019591113,0.00002000263,0.00001913689,0.000019790687,0.000019003493,0.000020021485,0.000019808964,0.000020871776,0.000019578803,0.000019764093,0.000019674615,0.000020729625,0.000019717008,0.00001982102,0.000018959525,0.000019562118,0.000018637096,0.000018632742,0.000018346323,0.000019438748,0.000018739289,0.000019235658,0.00001870249,0.000019789364,0.000018966486,0.000019590925,0.00001945605,0.00002075237,0.00001965661,0.000020043703,0.000019303228,0.000020241807,0.000018945517,0.000018819772,0.000018647585,0.000019604662,0.000018992298,0.000019315714,0.00001882047,0.000019891253,0.000018928633,0.000018947685,0.000018868166,0.000019752693,0.000019223684,0.000019418589,0.000019055287,0.000019933732,0.000018898329,0.00001868331,0.000018670184,0.000019674879,0.00001892515,0.00001915272,0.000018627305,0.000019687172,0.000018774095,0.00001885919,0.000018792995,0.000019747098,0.000019028557,0.000019210946,0.000018822966,0.000019728031,0.00001873082,0.000018471828,0.000018437686,0.000019495743,0.00001874819,0.000019045296,0.000018539722,0.000019653782,0.000018707702,0.00001883974,0.000018767741,0.000019788327,0.000019055686,0.00001926417,0.000018858289,0.00001977829,0.000018764214,0.000018503246,0.000018459361,0.000019519592,0.000018778663,0.000019085586,0.000018573486,0.000019669795,0.000018703313,0.000018828676,0.000018763662,0.000019790667,0.000019055942,0.000019268375,0.0000188666,0.000019789233,0.00001876087,0.000018503972,0.00001846216,0.000019521081,0.000018772682,0.000019080126,0.000018574761,0.000019673866,0.000018707095,0.000018827724,0.00001877218,0.000019798445,0.00001907736,0.000019290052,0.00001889705,0.00001982949,0.000018826611,0.000018552862,0.00001848168,0.000019523559,0.00001879484,0.00001909438,0.000018584544,0.000019667299,0.000018710109,0.000018833003,0.000018766883,0.000019782552,0.000019062267,0.000019272822,0.000018866205,0.00001977776,0.000018752535,0.000018486984,0.000018452638,0.000019513116,0.000018774042,0.000019083202,0.000018572264,0.000019666793,0.000018708182,0.00001883092,0.000018767258,0.000019791196,0.00001907456,0.000019284002,0.000018867717,0.000019778912,0.000018758974,0.000018498678,0.000018458675,0.000019512092,0.000018775958,0.000019075596,0.000018570689,0.000019666193,0.000018711751,0.000018828585,0.000018769406,0.000019785177,0.000019059013,0.000019256931,0.000018861636,0.000019777195,0.000018755754,0.000018486686,0.000018446744,0.000019515142,0.000018769872,0.000019061776,0.000018550829,0.000019658843,0.000018695377,0.000018827599,0.000018760458,0.000019797084,0.000019153651,0.000019417237,0.000018993855,0.000019907422,0.000018813867,0.000018479193,0.000018341687,0.00001937462,0.000018596083,0.000018882585,0.000018327803,0.000019514995,0.000018537652,0.0000186955,0.000018553925,0.000019885412,0.00001909988,0.000019657942,0.000019027177,0.000020057356,0.00001896419,0.000019247365,0.000019214134,0.000020525475,0.000019491987,0.00002015282,0.000019504,0.000020360854,0.000019261945,0.000019769539,0.000019765015,0.000020869604,0.000020239375,0.000021055801,0.00002059618,0.000021338072,0.000020151148,0.000020185518,0.000019703813,0.000020503308,0.000019810872,0.000020057223,0.000019381698,0.000019979656,0.000019063411,0.000019075433,0.000018807983,0.000019679308,0.00001929997,0.000019889452,0.000019508054,0.000020133322,0.00001923652,0.000019274643,0.000018780238,0.00001974433,0.000019172292,0.000019378223,0.000018497549,0.000018903647,0.000019186504,0.000019790818,0.000019873924,0.000021098434,0.00002085488,0.000021720338,0.000021247854,0.000022329034,0.000023414932,0.000027025892,0.000025711015,0.000016881184,0.000010461579,0.000013300666],[0.000016209424,0.000017393138,0.000014089349,0.000023432936,0.000030334068,0.000029798168,0.00002645187,0.00002344123,0.000021779575,0.000021132504,0.000021013033,0.000020325971,0.000020990561,0.000020048215,0.000020383643,0.000019976113,0.000021094349,0.000020733103,0.000020904663,0.000020050644,0.000021094109,0.000021277398,0.000021150792,0.000020068128,0.000020564661,0.000020421954,0.000020666106,0.000019528567,0.000020046398,0.000020081223,0.000020290647,0.000019398747,0.000020445494,0.000020283855,0.000021025442,0.000020163336,0.00002126472,0.000021114858,0.000021364176,0.000020303363,0.000021114192,0.000020779918,0.000021025942,0.000019628851,0.000020281032,0.000020427018,0.000020505187,0.000019704716,0.000020550957,0.000020434987,0.000020895533,0.000019719266,0.000020603844,0.000020592135,0.00002081548,0.00001990353,0.000020670186,0.000020547468,0.000020977333,0.00001955669,0.000020447833,0.000020521971,0.000020627102,0.000019583396,0.000020294478,0.000020222435,0.000020746296,0.000019620335,0.000020643472,0.000020505851,0.0000207118,0.000019694777,0.000020447484,0.00002032853,0.000020765498,0.0000194167,0.000020284262,0.000020290761,0.000020464006,0.000019426221,0.000020266743,0.000020164662,0.000020692176,0.000019616351,0.000020630563,0.000020526491,0.000020776886,0.000019740715,0.000020507454,0.000020385685,0.00002082652,0.000019443643,0.000020302201,0.000020323898,0.000020493808,0.000019451933,0.00002031357,0.00002018061,0.00002067896,0.000019599427,0.000020615282,0.000020532818,0.000020782554,0.000019744142,0.000020514202,0.000020396476,0.000020826581,0.000019435596,0.00002030561,0.00002032632,0.00002049031,0.000019443847,0.000020305803,0.000020175376,0.00002067466,0.000019602474,0.00002061597,0.000020539397,0.00002078973,0.000019769577,0.00002054063,0.00002043678,0.000020885052,0.000019491095,0.000020304544,0.000020320564,0.000020500944,0.00001947001,0.000020310239,0.00002018546,0.000020682786,0.000019605428,0.000020609266,0.000020524632,0.00002077546,0.000019751298,0.000020509195,0.0000203824,0.000020812959,0.000019432613,0.000020295425,0.000020315409,0.000020486657,0.000019454012,0.000020311516,0.000020178377,0.000020680736,0.000019605428,0.000020617505,0.000020532034,0.000020787767,0.00001976034,0.000020515632,0.000020386753,0.00002081943,0.000019436524,0.000020298272,0.000020320933,0.000020487301,0.00001945492,0.000020306248,0.000020182631,0.000020686337,0.00001960468,0.000020619784,0.000020532485,0.000020777738,0.000019744237,0.000020505498,0.000020387552,0.000020812246,0.00001943454,0.000020287782,0.000020319016,0.000020481793,0.000019450894,0.000020274108,0.000020170624,0.000020675468,0.000019603838,0.000020631842,0.000020547861,0.000020837506,0.000019888692,0.000020631232,0.00002052839,0.000020842295,0.000019464924,0.000020139698,0.000020181727,0.000020275675,0.00001931925,0.000019980474,0.0000199652,0.000020567308,0.0000194678,0.00002053742,0.00002051031,0.000020892903,0.000019787836,0.000020855417,0.00002052708,0.000020982998,0.000019954789,0.000021184786,0.000020939078,0.000021087328,0.0000202409,0.000021141132,0.000020619626,0.000020969874,0.00002034065,0.000021566566,0.000021406066,0.000021678887,0.000021207325,0.000022232292,0.000022007342,0.000021908398,0.00002099657,0.00002137465,0.000021300886,0.000021101672,0.00002028879,0.000020757021,0.000020519055,0.000020617425,0.000019844454,0.000020621574,0.000020451149,0.000020863674,0.000020233065,0.000021317202,0.000021087148,0.000021528796,0.000020516785,0.00002068251,0.000020793676,0.000020337353,0.000020139525,0.00001952922,0.000019983374,0.000020574056,0.000020790245,0.000021022715,0.000021691792,0.000021317694,0.000021714146,0.000021453581,0.00002190238,0.000024336141,0.0000252272,0.000026058624,0.000017637913,0.000010885343,0.000013184444],[0.000015646801,0.000015239389,0.000014137641,0.000020831983,0.000029286586,0.000028528197,0.000023718829,0.00002237721,0.000019669418,0.000020429903,0.000019561297,0.000020520856,0.000019148265,0.000019827958,0.000019078852,0.000019979941,0.00001933748,0.000020606809,0.000019418589,0.000020241807,0.000019713343,0.000020905898,0.000019728219,0.000019816693,0.000019141655,0.000020319092,0.000019712477,0.000020045138,0.000019280305,0.000019982592,0.000018909994,0.000019128425,0.000018561375,0.000019942252,0.000019304885,0.000020239859,0.000019533372,0.000020547606,0.000019526518,0.000019919176,0.000019208253,0.00002034525,0.000019428684,0.000019620242,0.000018913997,0.00001978563,0.000018934643,0.000019412202,0.000018752122,0.000020139083,0.000019199573,0.000019774989,0.00001917242,0.000020129117,0.000019389334,0.00001967666,0.000019171452,0.00002026081,0.000019570814,0.000019530336,0.000019053088,0.00001991893,0.000019152556,0.000019386653,0.000018612265,0.00002000095,0.000019127294,0.000019752448,0.000019215417,0.000020150303,0.00001929147,0.000019517378,0.0000189694,0.000020067151,0.000019382604,0.000019362853,0.00001894989,0.000019729838,0.000018941308,0.00001925932,0.000018537812,0.000019948739,0.000019076415,0.000019741186,0.000019168929,0.00002013964,0.000019281317,0.000019548615,0.000018995142,0.000020106843,0.000019402041,0.00001937863,0.000018953126,0.00001973921,0.000018955494,0.000019283836,0.000018561163,0.000019967067,0.000019077524,0.000019725454,0.000019152027,0.000020133839,0.000019274568,0.00001954295,0.000018988458,0.000020105674,0.000019386393,0.000019359899,0.000018946565,0.000019742805,0.00001894794,0.000019277584,0.000018556702,0.000019968742,0.000019083367,0.000019734278,0.000019158713,0.00002014012,0.000019290088,0.00001957199,0.000019031188,0.000020169009,0.00001947183,0.000019435949,0.000018972058,0.000019745195,0.000018973706,0.000019299197,0.000018572653,0.000019975047,0.00001908475,0.000019721185,0.000019151406,0.000020122208,0.000019280673,0.000019553538,0.000019002915,0.000020104657,0.000019397232,0.000019369929,0.000018953866,0.000019734636,0.000018952385,0.000019284369,0.000018561323,0.000019963334,0.000019078434,0.000019725792,0.000019159334,0.00002012887,0.000019281795,0.000019552755,0.000018998295,0.000020102261,0.000019397416,0.00001936662,0.000018955168,0.000019738533,0.000018960374,0.000019283285,0.000018566652,0.000019967447,0.000019088626,0.000019732772,0.000019169604,0.000020136222,0.00001928527,0.000019544217,0.00001899987,0.000020108244,0.000019419998,0.00001938377,0.000018963086,0.00001974369,0.000018962055,0.000019270747,0.000018539933,0.00001994849,0.000019067467,0.000019723346,0.000019168727,0.000020155492,0.000019391071,0.000019696243,0.000019161453,0.000020296144,0.000019569376,0.000019455309,0.000018940296,0.000019668538,0.000018853596,0.000019117155,0.000018343033,0.000019681522,0.00001878135,0.000019399951,0.00001893013,0.000020052576,0.000019154728,0.00001949299,0.000018808916,0.000019996145,0.000019265122,0.000019635609,0.000019203271,0.000020305222,0.00001937294,0.000019895826,0.00001911156,0.000020343252,0.000019652769,0.00002042363,0.000019886871,0.000020870959,0.000020233643,0.000020823702,0.000020316436,0.000021486872,0.000020815283,0.000021074444,0.000020059824,0.000020814568,0.000019982992,0.000020180649,0.000019211038,0.00002023129,0.000019572923,0.000020191506,0.000019504929,0.000020282461,0.000019761266,0.000020018811,0.000019677149,0.000020743784,0.000020641583,0.000021229564,0.000020469295,0.000021092479,0.000020022402,0.00001988693,0.000018920115,0.000019628196,0.000020431384,0.00002061186,0.000020479098,0.00002098962,0.000021007623,0.000021782234,0.000021057145,0.000021434622,0.00002270065,0.00002552853,0.00002514026,0.00001687716,0.000010697539,0.000013385133],[0.000015657995,0.000013555417,0.0000131685865,0.000019206787,0.00003166335,0.000030933872,0.000027161435,0.000022843655,0.000021183392,0.000020830214,0.000021164087,0.000020061067,0.000020509744,0.000019495259,0.000019881314,0.000019033585,0.000020363417,0.000020023243,0.000021238271,0.000019672196,0.000021071006,0.000020687521,0.00002106239,0.000019737741,0.000020372274,0.000019825216,0.000020953263,0.000019752504,0.000020759793,0.000020054735,0.00002045431,0.000018902494,0.000019901216,0.000019426036,0.000020761121,0.000019511925,0.000020908112,0.000020272872,0.000021013315,0.000019712385,0.000020485368,0.000019990786,0.000021021553,0.00001928996,0.000020345986,0.000019755933,0.000020533582,0.000019156922,0.00002008946,0.00001964872,0.000020880334,0.000019273024,0.000020456942,0.000020043168,0.000020784852,0.000019679794,0.000020458367,0.000020103718,0.000021251399,0.000019397361,0.00002037956,0.000019877372,0.000020746573,0.000019296785,0.000020098256,0.000019644787,0.000020936763,0.000019258658,0.000020497913,0.000020079307,0.000020750254,0.000019530578,0.00002030195,0.000019917507,0.000021013535,0.000019245163,0.000020280373,0.000019762849,0.000020569916,0.00001912361,0.000020040397,0.00001958013,0.000020840289,0.000019203857,0.000020454114,0.000019999063,0.000020762427,0.000019536279,0.000020327425,0.000019945808,0.000021053493,0.000019263654,0.00002029504,0.00001977378,0.000020589034,0.00001914642,0.000020061296,0.00001959384,0.000020822668,0.00001919417,0.00002042811,0.00001998444,0.000020756883,0.00001952894,0.00002031886,0.000019940997,0.000021045062,0.000019243309,0.000020281881,0.000019774367,0.000020588639,0.00001913961,0.00002005881,0.000019597557,0.000020824753,0.000019203108,0.000020430116,0.000019985202,0.000020767497,0.00001955917,0.00002036437,0.000020006539,0.000021130994,0.000019325773,0.000020321222,0.000019781308,0.000020601248,0.0000191688,0.000020067937,0.000019607953,0.000020826024,0.000019196643,0.000020425654,0.000019989415,0.000020756368,0.000019545187,0.000020332622,0.00001995119,0.000021049898,0.00001925728,0.0000202956,0.000019777535,0.000020588228,0.000019146346,0.000020062003,0.000019593765,0.000020824951,0.00001920243,0.00002043602,0.00001998705,0.000020760684,0.000019541776,0.000020325468,0.000019944686,0.000021051002,0.000019260071,0.000020290589,0.000019781666,0.000020596475,0.000019151114,0.000020062444,0.000019603895,0.00002083866,0.000019216388,0.000020448984,0.000020001333,0.00002076415,0.00001954459,0.00002032605,0.000019955036,0.000021070848,0.000019294688,0.000020308398,0.000019782457,0.000020588719,0.00001913461,0.000020032314,0.00001957128,0.000020821357,0.000019183686,0.00002042439,0.000020003354,0.000020817128,0.000019665762,0.000020454698,0.00002009628,0.000021180927,0.000019420182,0.000020247251,0.00001967805,0.000020351981,0.000018958874,0.00001974934,0.000019210764,0.000020409749,0.00001872714,0.000020067077,0.000019740339,0.00002061943,0.000019211662,0.000020231038,0.000019677544,0.000021040083,0.00001926823,0.000020522088,0.00001996202,0.00002071423,0.000019429723,0.00002034812,0.000019812194,0.000020925147,0.000019739718,0.000020847028,0.000020366213,0.000021220778,0.000020547548,0.00002134477,0.000021091151,0.000022623068,0.000021024438,0.000021482345,0.000020749363,0.000021379257,0.00002014254,0.00002046153,0.000019878244,0.000020852516,0.000019674633,0.000020532425,0.000019964002,0.000020703921,0.000019991474,0.000020674326,0.000020518664,0.000022151678,0.000021051866,0.000021760392,0.000021257034,0.000021311005,0.000019980647,0.000019588477,0.000019438488,0.000020431637,0.000020089747,0.000020656726,0.000020199152,0.00002054688,0.000020505831,0.00002004594,0.000020306734,0.000022540135,0.00002402823,0.000026157944,0.000017001386,0.000011158834,0.000012886512],[0.00001627434,0.000012887804,0.000013658216,0.0000193544,0.00003288807,0.000031451364,0.000025231146,0.000022399308,0.000019635236,0.000020231153,0.000019068884,0.000019893796,0.000018952729,0.000019541458,0.000018334027,0.000019050129,0.000018750585,0.000020212314,0.000019100444,0.000019807529,0.000019634504,0.000020994445,0.000019743728,0.000020077852,0.000018988658,0.000019871952,0.000018991173,0.000019390794,0.00001912266,0.000019840878,0.000018809329,0.000019032477,0.000018330355,0.000019671052,0.000018938237,0.000019761417,0.000019548186,0.000020740817,0.000019517136,0.00001995945,0.000019093906,0.000020157875,0.00001909691,0.000019312343,0.000019011759,0.000019859392,0.000018947017,0.000019424739,0.000018794177,0.000020217652,0.000019119325,0.000019765996,0.000019408499,0.000020635522,0.000019670846,0.000020232215,0.0000195629,0.000020596062,0.000019562565,0.00001965292,0.00001940898,0.000020171932,0.000019239236,0.000019723366,0.000019045186,0.00002028753,0.00001920188,0.000019796707,0.000019510342,0.000020694999,0.000019646099,0.000020139314,0.00001947781,0.000020471267,0.00001941235,0.000019494348,0.000019282124,0.000020061603,0.00001905456,0.000019498513,0.000018927478,0.000020217769,0.00001912507,0.000019758005,0.000019466946,0.000020666577,0.000019625855,0.000020145288,0.000019468933,0.000020485093,0.000019420218,0.000019497658,0.000019279809,0.000020059117,0.000019063611,0.000019508576,0.000018929119,0.00002020549,0.00001910079,0.000019736122,0.000019453102,0.000020654423,0.000019616293,0.000020139698,0.0000194634,0.000020481499,0.000019408333,0.000019484478,0.000019269275,0.000020064836,0.00001905816,0.000019499386,0.000018923,0.000020203177,0.000019104726,0.000019742316,0.000019458723,0.000020659701,0.000019631003,0.000020163969,0.000019503144,0.000020545607,0.000019488232,0.000019553743,0.00001930575,0.000020060532,0.000019075887,0.00001952665,0.000018946132,0.000020213854,0.000019109317,0.000019732754,0.000019453175,0.000020652176,0.000019620578,0.000020141812,0.00001947103,0.000020482203,0.000019420979,0.00001948738,0.000019277915,0.000020062884,0.000019067975,0.00001950828,0.0000189317,0.000020211117,0.000019111085,0.000019742258,0.00001946071,0.000020655269,0.000019622525,0.000020142366,0.00001946756,0.000020478668,0.000019419756,0.00001949037,0.00001928345,0.000020067764,0.00001907405,0.000019511943,0.000018941038,0.000020219852,0.000019127112,0.000019755802,0.000019474057,0.000020661455,0.000019628495,0.000020141388,0.000019474319,0.000020483023,0.00001944268,0.000019513544,0.000019299989,0.00002006254,0.000019051979,0.000019485129,0.000018908713,0.000020197862,0.000019098987,0.000019716672,0.000019450652,0.00002066642,0.000019730778,0.000020285557,0.000019612291,0.000020643749,0.000019549248,0.000019570309,0.000019213732,0.000019886835,0.000018858202,0.000019274348,0.000018587927,0.00001982792,0.000018700834,0.000019215087,0.000019007626,0.000020309966,0.00001928433,0.000019720506,0.000019129557,0.00002025969,0.000019223518,0.000019361802,0.000019101373,0.00002007728,0.000018978844,0.000019435467,0.000019007335,0.000020125914,0.000019248082,0.00001994111,0.000019797972,0.000020846033,0.000020109854,0.00002065517,0.000020164296,0.000021158196,0.000020428324,0.000020530742,0.000019915302,0.00002042361,0.000019548168,0.000019805186,0.000019066574,0.000019992063,0.000019214043,0.000019763584,0.000019482955,0.000020471578,0.000019947729,0.000020334715,0.00001975307,0.000020646703,0.000019990253,0.000020543785,0.000020153244,0.000020906216,0.000020226717,0.000019949117,0.000018821782,0.0000193276,0.000019643963,0.00001997897,0.000020095898,0.000020329906,0.000020478024,0.000021386904,0.00002079431,0.00002141121,0.000021907834,0.000024930067,0.00002537968,0.000017821856,0.000010735108,0.00001335862],[0.000016064292,0.000012729813,0.000011708123,0.000020193027,0.0000327252,0.00003290156,0.00002736885,0.00002351079,0.000021534363,0.000020989863,0.000020664984,0.000020102912,0.000020619686,0.000019886986,0.000020062675,0.000019588271,0.000020507161,0.000020260366,0.000020508041,0.000019790725,0.000021205282,0.0000211782,0.0000213676,0.000020436233,0.000020594553,0.000020244375,0.00002020158,0.00001938486,0.00002010667,0.00002030288,0.000020599364,0.000019650764,0.000020142252,0.00002024756,0.000020795243,0.000019958308,0.000021179068,0.000020892485,0.000021203321,0.000020376083,0.00002071674,0.000020559875,0.000020776273,0.000019744311,0.000020358251,0.000020418527,0.000020652373,0.000019984916,0.00002066589,0.000020698692,0.000021041047,0.0000199363,0.000021041287,0.000020948646,0.00002135114,0.000020681327,0.000021205928,0.000020921114,0.000021036092,0.000020012207,0.000020718062,0.000020699776,0.000020957119,0.000020200077,0.000020903448,0.00002072502,0.000021053653,0.000019925143,0.000021009208,0.000020980155,0.000021314867,0.000020548801,0.000021131134,0.000020776391,0.00002088354,0.000019836734,0.000020574194,0.00002059675,0.000020818437,0.000020010624,0.000020755639,0.000020679276,0.000020990543,0.000019884008,0.000021028469,0.000020907572,0.000021319238,0.000020529076,0.00002112642,0.0000207821,0.000020906517,0.00001984667,0.00002056986,0.00002060958,0.000020825944,0.000020017515,0.000020750827,0.000020674366,0.000020961757,0.000019868748,0.000021018684,0.000020894757,0.000021318687,0.000020528942,0.00002112519,0.00002077982,0.00002090554,0.000019835032,0.00002056617,0.000020613628,0.000020827852,0.000020013544,0.00002075077,0.000020675292,0.000020957179,0.000019871328,0.00002102494,0.000020895155,0.00002131942,0.000020545744,0.00002115747,0.000020834546,0.000020963595,0.000019885752,0.000020570602,0.00002060508,0.000020831169,0.000020037225,0.000020766349,0.00002068178,0.000020960537,0.000019870417,0.00002101119,0.000020896987,0.000021305761,0.000020527394,0.000021132648,0.000020786203,0.000020902986,0.000019840007,0.000020565425,0.000020612018,0.000020830632,0.000020021867,0.000020753976,0.000020677895,0.000020968115,0.000019873372,0.000021021131,0.000020899857,0.000021319502,0.000020530564,0.000021123074,0.000020778432,0.000020902009,0.00001984506,0.000020571095,0.00002061888,0.000020832222,0.00002002391,0.000020762409,0.000020687381,0.000020977475,0.000019883173,0.000021032401,0.000020907333,0.00002131765,0.000020536203,0.000021124928,0.000020782196,0.000020900556,0.000019865169,0.000020575626,0.000020609405,0.00002081282,0.000019996012,0.000020723359,0.000020667781,0.000020952162,0.000019856285,0.000020982918,0.000020928697,0.000021354439,0.000020660036,0.000021242748,0.000020884736,0.00002088342,0.00001982034,0.000020371983,0.000020398753,0.000020541022,0.000019729612,0.00002031049,0.000020269894,0.000020526219,0.00001944585,0.000020495783,0.000020645797,0.00002102502,0.000020165471,0.000020910105,0.00002062073,0.000020865664,0.000019672083,0.00002068833,0.000020586951,0.00002081141,0.00002001175,0.000020834605,0.000020540356,0.000020741132,0.000019994734,0.000021108799,0.000020958638,0.000021324648,0.000021156018,0.000021583335,0.000021405656,0.000021270094,0.000020598596,0.00002080768,0.000020876232,0.00002093299,0.00002026249,0.000020764744,0.00002077859,0.000020672158,0.000019852878,0.000020841422,0.000020799744,0.000021244145,0.000020753874,0.000021136939,0.000020706982,0.000020731719,0.000019933543,0.000020239626,0.000020810261,0.000020666577,0.000020001047,0.00001906603,0.000019259962,0.000019162751,0.000019821115,0.000019782005,0.000020551584,0.000020768586,0.000021316515,0.000021177313,0.000021639022,0.00002310032,0.000024175215,0.000025561296,0.000018479775,0.000010985762,0.000013303001],[0.000015734142,0.0000127864505,0.000011560094,0.00001678277,0.000028299932,0.000032818174,0.000026108399,0.000023975903,0.000020472653,0.000020959778,0.000019323359,0.000020068856,0.000018699799,0.000019682384,0.00001885581,0.000019928677,0.000019094216,0.000020395719,0.000018902565,0.000019837831,0.000019294339,0.000021048994,0.000019580559,0.00002058915,0.000018949926,0.000020287336,0.000018681421,0.000019318864,0.000018790306,0.000020368507,0.000019411238,0.00002011626,0.000018597095,0.000019959489,0.000018792618,0.000019720734,0.000019151514,0.000020705065,0.000019457628,0.000020345191,0.000018816756,0.000020266414,0.000018738376,0.000019369372,0.000018608927,0.000020037665,0.00001910028,0.000019933732,0.000018720692,0.00002014667,0.0000186473,0.000019442401,0.000018803536,0.000020436195,0.000019426554,0.000020581356,0.000019216095,0.000020656433,0.00001884044,0.000019561148,0.000018875582,0.000020316535,0.000019168527,0.000020030748,0.000018943349,0.000020357786,0.000018779701,0.000019520057,0.000018793497,0.00002037047,0.000019277915,0.000020420279,0.000019102594,0.00002055376,0.000018713017,0.000019449077,0.000018755503,0.000020229128,0.000019046694,0.00001984154,0.000018797242,0.000020243293,0.000018720924,0.000019460207,0.000018745526,0.000020307583,0.000019234283,0.000020375577,0.00001907094,0.000020536147,0.000018695768,0.000019422774,0.000018741468,0.00002022992,0.000019039267,0.000019829982,0.000018784125,0.000020217884,0.00001868935,0.00001942648,0.000018727942,0.000020294032,0.00001922647,0.000020364176,0.00001906394,0.000020525222,0.000018680887,0.000019407018,0.000018732355,0.00002022882,0.000019032841,0.00001982104,0.000018774366,0.00002020549,0.000018680354,0.0000194222,0.000018725872,0.000020291516,0.000019231697,0.000020382555,0.00001908899,0.000020575784,0.000018736982,0.000019447667,0.000018735267,0.00002022257,0.00001905049,0.000019849791,0.000018794948,0.000020221547,0.000018691062,0.00001943026,0.000018732355,0.000020297537,0.000019230889,0.000020365613,0.000019070958,0.000020533875,0.000018681849,0.000019406907,0.000018738305,0.000020226795,0.000019036488,0.000019833293,0.000018787834,0.000020218424,0.000018691153,0.000019427072,0.000018728568,0.000020293277,0.000019229752,0.00002036633,0.000019066574,0.000020529409,0.000018690047,0.00001941931,0.000018744631,0.000020237252,0.000019043915,0.000019835203,0.000018793711,0.000020226042,0.000018701958,0.000019439378,0.000018741575,0.000020304971,0.000019234429,0.000020377676,0.000019079398,0.000020545076,0.000018709949,0.000019445366,0.000018759027,0.000020245707,0.000019041026,0.000019826484,0.000018774474,0.00002022579,0.000018708395,0.00001943339,0.000018722943,0.000020324382,0.000019327083,0.000020539848,0.000019215435,0.000020717529,0.000018735338,0.000019426072,0.000018636083,0.000020137431,0.00001891418,0.000019665107,0.000018557552,0.000019987203,0.000018509265,0.00001913222,0.00001843577,0.000019964991,0.000019066121,0.000020090802,0.000018915982,0.00002040276,0.00001872823,0.000019490091,0.00001874903,0.000020385314,0.000019093815,0.000019953151,0.00001880047,0.000020265159,0.000018853327,0.000019559338,0.000018826018,0.000020351865,0.000019705807,0.000021134158,0.000019913252,0.000021422362,0.00001957464,0.00002036297,0.000019301775,0.000020794627,0.000019741394,0.000020602349,0.000019340414,0.000020834426,0.000019276444,0.000019806168,0.00001898748,0.000020559659,0.000019925428,0.00002105321,0.000019638905,0.000020909925,0.000019092631,0.000019900664,0.00001883593,0.000020613374,0.000019823232,0.000020321882,0.000018450895,0.000019267549,0.000018846567,0.000019327948,0.000019096346,0.000020001771,0.000020528178,0.000021710584,0.000021510388,0.000022436016,0.000023813773,0.000025299983,0.000024100795,0.000016566159,0.000011042924,0.000013358175],[0.000015531286,0.000012303523,0.000010146398,0.000014881548,0.00002720535,0.000035830533,0.000030456362,0.000025096664,0.000022491156,0.000021668986,0.00002130495,0.000019567882,0.000020262203,0.00001937002,0.00002012476,0.000019109353,0.000020598794,0.00002015359,0.000020764763,0.0000190964,0.00002068975,0.000020302723,0.00002129721,0.000019729347,0.000020525515,0.000019516892,0.000019850264,0.00001887128,0.000020187194,0.000020204603,0.000021235233,0.000019848449,0.000020264906,0.000019488976,0.000020026813,0.000018965638,0.000020478863,0.00002025915,0.00002128257,0.00001980679,0.000020478336,0.000019864165,0.000020253681,0.00001882977,0.000019848618,0.000019865698,0.00002066317,0.000019506455,0.000020037893,0.000019265399,0.000019638324,0.000018370412,0.000019728408,0.000019644076,0.000020652551,0.000019775951,0.00002053454,0.000019750358,0.000019892144,0.000018744595,0.000019931147,0.000019832421,0.00002029378,0.00001932806,0.000019962858,0.000019354824,0.000019641264,0.000018351922,0.000019591223,0.000019483048,0.000020351827,0.000019499053,0.00002031082,0.000019580315,0.000019762885,0.000018613986,0.000019798785,0.000019735257,0.000020169296,0.000019168234,0.000019808322,0.00001925504,0.00001956292,0.000018305165,0.000019548821,0.000019434281,0.000020336169,0.000019474113,0.00002029564,0.000019565794,0.000019763753,0.000018596564,0.000019794821,0.00001974271,0.000020173778,0.000019164067,0.000019804127,0.000019240098,0.000019533372,0.000018282799,0.000019538253,0.000019421515,0.000020327232,0.000019469007,0.000020286467,0.000019553612,0.000019750865,0.000018583427,0.000019785855,0.000019737741,0.000020165393,0.000019151534,0.000019789271,0.000019230596,0.000019520356,0.000018272985,0.000019535551,0.000019424979,0.000020329868,0.000019480838,0.00002030441,0.000019585881,0.000019790195,0.000018611412,0.000019784517,0.00001973055,0.000020180629,0.00001918288,0.000019805733,0.000019241474,0.000019531528,0.000018283217,0.0000195379,0.000019431334,0.00002033173,0.000019473222,0.000020285384,0.000019555646,0.000019749057,0.000018582701,0.000019786043,0.000019741412,0.000020168316,0.000019169112,0.000019807208,0.000019240611,0.000019525849,0.000018281718,0.000019537452,0.00001942585,0.000020326184,0.00001947365,0.000020291382,0.000019560475,0.000019758645,0.000018599845,0.000019799332,0.000019749774,0.000020180169,0.000019173718,0.000019809322,0.000019248393,0.000019538496,0.000018296054,0.000019551413,0.0000194381,0.000020338188,0.000019483123,0.000020309037,0.000019588011,0.000019786892,0.00001863132,0.000019823194,0.00001976875,0.000020189927,0.000019175364,0.000019799578,0.00001924968,0.000019540956,0.000018285536,0.000019512296,0.000019445255,0.00002041878,0.000019629168,0.000020496056,0.000019723855,0.000019823061,0.000018639976,0.00001976626,0.000019699435,0.000020043035,0.00001908908,0.000019686815,0.000019161946,0.000019426887,0.0000181256,0.00001930448,0.000019270323,0.000020274978,0.00001937318,0.000020207552,0.000019603784,0.00001999258,0.000018904946,0.000020147882,0.000019975256,0.000020639143,0.000019462064,0.000020206744,0.000019518568,0.00001970947,0.000018746563,0.00001980362,0.000019895806,0.000021068254,0.000020619036,0.000021520196,0.000021001715,0.000021133472,0.00002020312,0.000020847008,0.00002076718,0.000021393413,0.000020214435,0.000020854482,0.000020025476,0.000020309017,0.000018927332,0.00001992503,0.000019757648,0.0000209879,0.000020388172,0.00002101522,0.00002029142,0.000020322173,0.000019531939,0.000019955472,0.000020517999,0.000021261776,0.00002024843,0.000019760775,0.00001901582,0.00001941807,0.000018759116,0.000019478719,0.000019885545,0.000020584595,0.000020769992,0.000021102278,0.000021701248,0.000025121568,0.000024369654,0.000022834944,0.000015598676,0.000010638613,0.000012735216],[0.000015616986,0.000011671635,0.000010231868,0.000013354316,0.000026087593,0.000033135482,0.000027792703,0.00002436726,0.000021298876,0.000020918063,0.00001919139,0.000019337518,0.000018512814,0.000019150346,0.000018127485,0.000019007555,0.000018941868,0.000020187828,0.000018697552,0.000019141855,0.00001891481,0.000020652806,0.0000192086,0.000020180225,0.000019062085,0.000020153973,0.000018411576,0.000019184072,0.000018814657,0.000020567837,0.000019393086,0.000020090474,0.000019257941,0.000020344629,0.000018833487,0.00001962462,0.00001928448,0.000020894617,0.000019563704,0.000020357767,0.00001954023,0.000020767695,0.00001896079,0.00001937948,0.000018784789,0.000020235302,0.000019108387,0.000019684207,0.000019033458,0.000020043226,0.000018240375,0.000018947288,0.000018686036,0.000020472633,0.000019243567,0.000020528118,0.00001982463,0.000020990403,0.000018821424,0.000019645498,0.00001922383,0.000020772964,0.000019069612,0.000019837604,0.000019159992,0.00002025544,0.000018320166,0.000019106074,0.000018773182,0.000020497991,0.000019019939,0.000020380377,0.000019616948,0.00002087034,0.000018670753,0.000019547497,0.000019123263,0.000020709174,0.000018941344,0.000019676023,0.000019025072,0.000020130807,0.00001822756,0.000019048637,0.000018735089,0.000020445845,0.000018994779,0.00002034587,0.00001957113,0.000020825528,0.000018651266,0.000019495297,0.000019083292,0.000020669988,0.000018929028,0.000019651945,0.000019000596,0.000020094325,0.00001819066,0.000019002498,0.000018710449,0.000020424777,0.00001897595,0.00002032196,0.000019549585,0.000020800102,0.000018627215,0.000019475061,0.00001907696,0.000020665357,0.00001891611,0.000019642614,0.000018994326,0.000020083444,0.00001817696,0.000018992661,0.000018705061,0.000020428948,0.00001898623,0.000020340223,0.000019570738,0.00002083544,0.000018660961,0.000019503757,0.000019079034,0.000020658263,0.00001893506,0.00001966762,0.000019005325,0.000020095169,0.000018191196,0.00001900112,0.00001871466,0.000020435085,0.000018989871,0.000020335723,0.000019560588,0.000020807303,0.000018635335,0.000019478755,0.000019076688,0.000020667525,0.00001892867,0.0000196565,0.000019005724,0.00002009421,0.000018188872,0.000019003603,0.000018716783,0.000020432708,0.000018984456,0.000020331672,0.000019563311,0.000020813575,0.000018640081,0.000019490259,0.000019090901,0.000020677126,0.000018933813,0.000019663663,0.000019014498,0.000020106536,0.000018205863,0.000019021662,0.000018730854,0.000020443566,0.000018990704,0.000020343427,0.00001957843,0.00002084164,0.000018669863,0.000019525885,0.000019113764,0.000020710755,0.00001895647,0.000019666175,0.000019013192,0.00002011532,0.000018215118,0.000019027324,0.000018731997,0.000020497366,0.00001912237,0.000020550919,0.000019774292,0.000021018424,0.000018733712,0.000019605803,0.000019170904,0.00002078418,0.000018971823,0.000019664056,0.000019036905,0.000020147727,0.000018290106,0.000019100953,0.000018871568,0.000020550367,0.000019091376,0.000020391752,0.000019591074,0.000020890473,0.000018822877,0.000019854488,0.00001937571,0.000021008625,0.000019109846,0.000019987412,0.000019287698,0.000020444188,0.000018578712,0.000019432688,0.000019237292,0.000020894697,0.000019886491,0.000021598964,0.000020834983,0.000022080056,0.0000200429,0.000020784775,0.00001994754,0.00002122266,0.000019753446,0.000020289699,0.000019395065,0.000020422089,0.000018813884,0.00001950478,0.00001898004,0.0000207497,0.000019835768,0.000021554106,0.000020496525,0.000021651202,0.000019611018,0.00002061082,0.00001958928,0.0000210736,0.000019878396,0.00002025577,0.000019015713,0.000019378223,0.00001940711,0.00001981535,0.000019754783,0.00002085363,0.000020599324,0.000021595277,0.000020925963,0.000022515364,0.000023954217,0.000026508636,0.000023287175,0.00001624065,0.000010139685,0.000012985686],[0.00001534029,0.000011224914,9.09794e-6,0.000013216154,0.000023666771,0.000035133744,0.000028771798,0.000025145895,0.000022464661,0.00002154683,0.000020718635,0.000019760171,0.000020219773,0.000019710278,0.00001988196,0.000019229752,0.000020268657,0.000020326534,0.000020345055,0.000019314959,0.000020755104,0.000020843609,0.000021099519,0.000019948548,0.00002108564,0.000020198459,0.000020305977,0.000019307592,0.000020447093,0.000020560248,0.000020970054,0.000020126334,0.00002105056,0.000020677639,0.000021090003,0.000020085092,0.000021258737,0.000020856176,0.000021189131,0.000020195223,0.000021274536,0.000020828407,0.00002112368,0.000019757477,0.000020346803,0.000020309619,0.000020287782,0.000019532014,0.000020490994,0.000020278498,0.00002028461,0.000019250816,0.000020547155,0.000020444617,0.000020749145,0.000020204392,0.000021547716,0.00002090829,0.000020762349,0.000019698178,0.000020893322,0.00002073765,0.000020418236,0.000019597204,0.000020575842,0.000020273625,0.000020218271,0.000019300485,0.000020676061,0.000020421565,0.000020672394,0.000020037493,0.000021424223,0.000020784497,0.00002064117,0.00001962784,0.00002085184,0.000020684442,0.000020337158,0.000019505933,0.00002045345,0.000020179417,0.000020108013,0.000019242503,0.000020649124,0.000020387726,0.000020656275,0.000020019614,0.00002139539,0.000020742618,0.000020608462,0.000019581474,0.000020786598,0.000020643118,0.000020315158,0.00001949682,0.000020435591,0.000020154741,0.00002008015,0.000019212577,0.000020628655,0.000020378006,0.00002064048,0.00001999954,0.000021371778,0.000020718044,0.000020587699,0.000019565794,0.000020778234,0.000020636151,0.000020308185,0.000019493122,0.000020433741,0.000020145173,0.000020060705,0.000019198109,0.000020622734,0.000020377325,0.00002064808,0.000020017935,0.000021393942,0.000020746851,0.000020612195,0.000019589263,0.00002077653,0.00002063507,0.000020315061,0.000019509858,0.000020437872,0.000020155549,0.000020073929,0.000019206678,0.000020623087,0.00002038133,0.000020647016,0.000020012665,0.000021382764,0.000020726344,0.000020587953,0.000019569414,0.000020782752,0.000020640618,0.000020311478,0.000019502362,0.00002044298,0.00002015453,0.00002007387,0.000019211642,0.000020630268,0.00002038032,0.000020644871,0.000020007914,0.00002138095,0.000020728636,0.000020594845,0.00001957744,0.000020793756,0.000020648158,0.000020318163,0.000019510417,0.000020455967,0.000020166739,0.000020091451,0.000019234081,0.000020658323,0.000020399239,0.000020658066,0.000020020589,0.00002139972,0.000020755399,0.000020624051,0.000019612571,0.00002083375,0.000020708421,0.000020357107,0.000019530205,0.00002044805,0.000020194664,0.000020108435,0.000019257004,0.000020674623,0.000020463283,0.000020795382,0.00002018319,0.000021568974,0.00002090229,0.000020718755,0.000019671108,0.000021021431,0.000020985577,0.000020499985,0.000019634579,0.000020520914,0.000020315352,0.00002022419,0.000019435689,0.000020858462,0.000020593472,0.000020761756,0.000020074003,0.000021437445,0.000020717767,0.000020850706,0.00001998787,0.00002158241,0.000020942454,0.000020871734,0.000019848467,0.000021127387,0.000020318026,0.000020608362,0.000019979789,0.000021529988,0.000021154905,0.000021667622,0.00002127123,0.00002267793,0.000022046665,0.000021960608,0.000021030857,0.000021679072,0.00002161355,0.000021157066,0.000020132517,0.000020755913,0.000020571251,0.000020734666,0.00001989042,0.000021171296,0.000020832142,0.000021724645,0.000021192403,0.000022496413,0.000021435728,0.000021508728,0.000020807483,0.000021324342,0.000021194466,0.000020765237,0.000020289737,0.000019786628,0.000019939684,0.000020394356,0.000020348314,0.00002069786,0.00002129384,0.000021060418,0.00002134127,0.000021400738,0.000021878206,0.000024848227,0.000024779129,0.000023791412,0.00001692771,0.000010640399,0.000012958817],[0.000015128586,0.000010559499,9.414754e-6,0.000011288153,0.000021372796,0.00003292648,0.000026652158,0.000024302975,0.000020980337,0.000020929796,0.000019284993,0.000019615096,0.000018481996,0.000019253386,0.000018543966,0.000019284553,0.000018875042,0.000020185846,0.000018737286,0.000019392515,0.00001897727,0.000020501217,0.000018855791,0.000019425257,0.000018366663,0.000019789233,0.000018279312,0.000019294412,0.000018547325,0.000020365223,0.000018846567,0.000019441417,0.000018609071,0.000020191332,0.000018878516,0.000019750414,0.000019059413,0.000020279464,0.000018567713,0.000019239933,0.000018350924,0.000020018908,0.000018394658,0.000018979787,0.000018031466,0.000019289759,0.000017933733,0.00001849783,0.000017678498,0.000019388168,0.000017942713,0.000018769513,0.00001798093,0.000019602923,0.00001811981,0.000019008588,0.00001798184,0.000019806754,0.000018126915,0.00001907245,0.000018043318,0.000019745856,0.000017907569,0.000018415949,0.000017348892,0.000019195544,0.00001784764,0.000018784054,0.000017899714,0.000019611394,0.000017996404,0.000018889825,0.000017831768,0.00001976739,0.000018086525,0.000019065194,0.000018039154,0.000019777026,0.000017905091,0.0000183804,0.000017286613,0.000019123992,0.000017768856,0.000018701565,0.00001785583,0.000019586927,0.000018013472,0.000018900762,0.000017847726,0.000019743333,0.000018055418,0.000019000505,0.000017987997,0.000019701973,0.000017886336,0.000018362005,0.000017286975,0.00001909815,0.00001774955,0.000018664201,0.000017834607,0.00001956195,0.000017998223,0.000018874682,0.000017826767,0.000019715524,0.000018033925,0.000018978357,0.000017974551,0.00001969072,0.000017875576,0.000018349927,0.00001727585,0.000019085623,0.000017734998,0.00001865091,0.000017824677,0.000019558107,0.000017996661,0.00001888579,0.000017843557,0.000019739266,0.000018054403,0.000019003131,0.000017978375,0.000019699606,0.000017887307,0.000018366452,0.00001728269,0.000019097366,0.000017747027,0.000018655393,0.000017825781,0.000019557026,0.000017995733,0.000018875382,0.00001782636,0.000019715488,0.000018032017,0.000018975172,0.000017971844,0.000019682366,0.000017869406,0.000018347197,0.000017276609,0.00001908262,0.000017735963,0.00001865148,0.000017822349,0.000019549418,0.000017992423,0.000018870813,0.0000178242,0.000019713285,0.000018039103,0.000018983625,0.00001797925,0.000019689349,0.000017880282,0.000018360079,0.000017291064,0.000019100225,0.00001776269,0.00001868046,0.000017853563,0.000019578803,0.000018011031,0.00001889087,0.0000178497,0.000019756008,0.000018081817,0.00001904346,0.00001804707,0.000019786099,0.000017938111,0.000018410909,0.000017311986,0.000019155243,0.000017808146,0.000018744024,0.000017908234,0.000019702893,0.00001812733,0.00001903636,0.000017933047,0.000019868388,0.000018098119,0.000019092831,0.000018206783,0.00002020865,0.000018116494,0.00001854057,0.000017201526,0.000019145707,0.000017797502,0.000018813653,0.000017814855,0.000019610983,0.000018055141,0.000018826575,0.00001778742,0.000019669944,0.000018333816,0.000019352017,0.000018575842,0.000020137777,0.00001842858,0.000018883342,0.000017934623,0.000019614441,0.000018542658,0.00001965468,0.000019006195,0.000020531974,0.000019151734,0.000020307429,0.000019514251,0.00002132369,0.000019882396,0.000020738878,0.000019760115,0.000021193455,0.00001934877,0.000019556785,0.000018585783,0.000020099691,0.000018821063,0.000019884388,0.000019010582,0.000020695708,0.000019398285,0.000020534793,0.000019331597,0.000020919997,0.000019457128,0.000020655742,0.000019602176,0.000021104432,0.000019104944,0.000019404557,0.000018383345,0.000019256344,0.000019442605,0.000019992598,0.000019889241,0.000020752213,0.000020684345,0.00002151796,0.000020651665,0.000021454418,0.000023135328,0.000025600693,0.000023270282,0.000016208234,0.000010588541,0.00001322358],[0.00001558751,0.000010122159,9.462154e-6,0.000011274327,0.000022362148,0.00003604497,0.00003025494,0.000024662364,0.000022172371,0.000021210866,0.000020888321,0.000019163737,0.000019606512,0.000019113655,0.000019614012,0.000018567802,0.000020167643,0.000019827996,0.000020725354,0.000018826107,0.000020446741,0.000019828753,0.000020206357,0.000018486791,0.000019730835,0.000018715713,0.000019518699,0.000017906184,0.000019591896,0.000019057994,0.000019762378,0.000018223527,0.00001966972,0.000018969564,0.000019926416,0.000018326318,0.000020130019,0.000019273246,0.00001970575,0.000018053473,0.00001936845,0.000018670024,0.000019414905,0.000017622579,0.000018546865,0.000018052664,0.000018573683,0.00001726108,0.000018466844,0.00001811138,0.000019004454,0.000017330884,0.000018674225,0.000018128936,0.000018636456,0.000017315931,0.000018725746,0.000018262253,0.00001901535,0.000017433409,0.00001856867,0.00001804941,0.000018183115,0.00001683811,0.000018002533,0.00001780144,0.000018712857,0.000017181786,0.000018596971,0.000018043576,0.00001851449,0.000017137341,0.000018657776,0.00001830815,0.000019091302,0.000017494214,0.000018680068,0.000018148985,0.000018218314,0.000016825783,0.00001798834,0.00001778491,0.000018666286,0.000017109352,0.000018544955,0.000018042647,0.000018573717,0.000017186949,0.000018682258,0.000018302302,0.000019055124,0.000017431714,0.000018600766,0.000018100518,0.00001820298,0.00001682835,0.000017990433,0.00001778118,0.000018652849,0.000017084309,0.000018524257,0.000018028131,0.000018556631,0.0000171733,0.00001866568,0.000018287437,0.000019038722,0.000017418968,0.000018590941,0.0000180922,0.000018188717,0.00001681728,0.000017980346,0.000017771077,0.000018638375,0.000017072354,0.000018512303,0.000018019982,0.000018552155,0.00001717584,0.000018678624,0.000018302895,0.000019056743,0.000017432862,0.000018591953,0.000018100156,0.000018198172,0.000016831897,0.000017984068,0.000017775958,0.000018642588,0.000017072778,0.000018506724,0.00001801306,0.000018544106,0.000017164952,0.000018654842,0.000018277377,0.000019025834,0.00001740628,0.000018576622,0.000018081764,0.000018176752,0.000016807564,0.000017972598,0.000017762266,0.000018628494,0.000017066217,0.00001850196,0.000018007922,0.000018544319,0.000017164884,0.00001865566,0.000018275094,0.000019030607,0.00001741309,0.000018585872,0.000018085077,0.000018188994,0.000016817232,0.000017984154,0.000017777891,0.000018656603,0.00001709125,0.000018536486,0.000018038725,0.00001857246,0.000017183507,0.000018687711,0.00001832055,0.000019097055,0.000017484941,0.000018679533,0.000018180946,0.000018275077,0.000016890348,0.000018037881,0.000017845394,0.000018737197,0.000017179378,0.000018627394,0.0000181209,0.000018659859,0.000017257573,0.000018794679,0.000018436296,0.00001917584,0.000017597085,0.000018926467,0.000018582612,0.000018508612,0.000017018338,0.000018057555,0.000017862232,0.00001874692,0.000017246139,0.0000185072,0.000017886796,0.000018450772,0.000017033015,0.000018509265,0.000018157381,0.000019262827,0.000017687013,0.000019169074,0.000018527915,0.000018994779,0.00001738654,0.000018827563,0.000018248222,0.000019604513,0.000018050976,0.000019910689,0.000019071103,0.000019991874,0.000018599914,0.000020307603,0.000019840158,0.000021142361,0.000019519182,0.000020549976,0.00002001967,0.000020238487,0.000018786202,0.000019524228,0.000019071504,0.000019992942,0.000018363178,0.000019946912,0.000019147059,0.00002001765,0.000018677929,0.000020281379,0.000019437359,0.000020349013,0.000018991826,0.00002029202,0.000019914465,0.000019741903,0.0000185958,0.000018686285,0.000018628602,0.000019470901,0.000018992027,0.00001978931,0.000019594887,0.000020281863,0.0000200777,0.000020041622,0.000020321786,0.000023291486,0.000023901344,0.00002467363,0.000016210677,0.000011182079,0.0000128442325],[0.000015861431,0.000011151398,0.00001043019,0.0000127164285,0.000023793706,0.00003361862,0.000027462342,0.000023180868,0.000020105943,0.000020297302,0.000018952367,0.000019095727,0.000018214407,0.000018747045,0.00001786518,0.000018460507,0.000018391202,0.000019719622,0.000018554916,0.00001875554,0.00001868732,0.000019779856,0.000018489047,0.000018766561,0.000017751716,0.000018860377,0.000017369519,0.000018011926,0.000017368724,0.000019103576,0.000017779383,0.000018390518,0.000017665621,0.000019315787,0.000017935306,0.000018661372,0.000018160656,0.000019596753,0.000017944665,0.000018531484,0.000017515984,0.000018971135,0.000017319417,0.000017776976,0.000016837774,0.000018160186,0.000016768005,0.000017644676,0.00001695608,0.000018461598,0.000017042374,0.000017728538,0.000016943262,0.00001836873,0.000016817634,0.000017759556,0.000017209173,0.000018877201,0.000017112681,0.000017986658,0.000016891829,0.000018305584,0.00001644469,0.000017272969,0.000016763846,0.000018375302,0.000016943084,0.000017737959,0.000017028126,0.000018462724,0.00001673733,0.000017661157,0.000017213866,0.000019055597,0.000017275735,0.000018169074,0.00001701532,0.000018442082,0.000016484131,0.00001725234,0.00001674726,0.000018379103,0.000016935752,0.000017684046,0.000016989035,0.000018442488,0.000016780305,0.00001771049,0.000017221832,0.000019030082,0.000017253837,0.000018103454,0.000016952086,0.000018389132,0.000016478112,0.000017245859,0.00001674437,0.000018351013,0.000016920576,0.00001765151,0.000016967791,0.000018415229,0.000016764037,0.000017687806,0.00001720435,0.00001900866,0.000017234826,0.000018085026,0.000016940177,0.000018373777,0.000016464242,0.00001722817,0.000016730994,0.00001833623,0.000016906382,0.000017638906,0.000016961692,0.000018413912,0.000016763703,0.000017692664,0.000017215803,0.000019027088,0.000017251288,0.000018093218,0.00001694163,0.000018387029,0.000016475911,0.000017241107,0.000016738271,0.00001834382,0.000016910059,0.000017639039,0.000016959235,0.000018405413,0.000016754337,0.000017680486,0.000017201477,0.000018998946,0.000017219762,0.000018064255,0.000016925063,0.000018365281,0.00001646074,0.000017218546,0.000016725362,0.00001832693,0.000016896196,0.000017626511,0.000016952492,0.00001839857,0.000016753505,0.000017678329,0.000017195556,0.000018994055,0.000017225248,0.00001807585,0.000016935524,0.000018368362,0.000016459266,0.00001722487,0.000016730817,0.000018333922,0.000016915252,0.000017650398,0.000016979251,0.000018426841,0.000016773936,0.00001770453,0.00001722656,0.000019052397,0.000017288508,0.000018164397,0.000017029539,0.000018492168,0.000016551141,0.000017339315,0.00001683217,0.00001847581,0.000017026958,0.000017797958,0.000017119766,0.00001860366,0.000016899901,0.000017856477,0.000017408023,0.000019274514,0.000017369635,0.000018217062,0.000017143078,0.00001877415,0.000016763623,0.00001746586,0.000016947577,0.000018750943,0.000017303732,0.000018020446,0.000017059676,0.000018426612,0.00001687217,0.000017679104,0.000017107885,0.000018812827,0.00001736604,0.000018196817,0.000017266348,0.000018714303,0.000017014248,0.00001766493,0.000017007304,0.000018564439,0.000017385444,0.000018333956,0.00001787849,0.00001951639,0.000018098515,0.000019204113,0.000018529028,0.000020436119,0.00001898482,0.00001978078,0.00001881105,0.000020197938,0.000018570901,0.000019060632,0.000018262568,0.000019547815,0.000018200531,0.000018645753,0.000018077799,0.000019452043,0.000018316114,0.000019245364,0.000018434486,0.000019864183,0.000018236567,0.000019093031,0.000018240602,0.000019972684,0.0000184254,0.000018843764,0.00001772186,0.000019057923,0.000018619117,0.000019522813,0.00001918535,0.00002005728,0.00002003239,0.000021363687,0.000020797126,0.000021735505,0.00002265999,0.000025812897,0.0000253177,0.00001733437,0.000010883838,0.000013626238],[0.000015152353,0.000011758733,9.477218e-6,0.000014105066,0.000023941586,0.000035686255,0.0000291495,0.000023619308,0.000020994086,0.000020765377,0.000020466954,0.00001949868,0.00001962056,0.000019377594,0.0000195859,0.000019112196,0.000019958004,0.000020028894,0.000020051464,0.000019058649,0.000020170528,0.000020202562,0.00002041878,0.000019194722,0.000019669007,0.000019291561,0.000019322937,0.000018062186,0.000019089992,0.000019097166,0.000019684207,0.000018650164,0.000019610026,0.000019499275,0.000020090723,0.000018808953,0.00001985782,0.00001958235,0.000020078465,0.000018810046,0.000019528026,0.000019378149,0.000019512074,0.000017989918,0.000018474366,0.000018576126,0.00001881026,0.000018068336,0.000019013429,0.000019102192,0.000019232064,0.000017978495,0.000018802531,0.000018651692,0.0000187914,0.000018073197,0.000019382345,0.000019417645,0.000019302972,0.000018009125,0.000018766632,0.000018573664,0.000018515673,0.000017800014,0.000018993404,0.000019043733,0.00001910376,0.000018032102,0.000019006557,0.000018783105,0.000018811355,0.00001803778,0.000019473797,0.000019578149,0.000019516876,0.00001823441,0.000018944416,0.000018664558,0.000018571167,0.000017791272,0.000018979841,0.000019024093,0.000019073286,0.000018009761,0.000018974666,0.000018754501,0.000018809975,0.000018057124,0.000019475396,0.000019553034,0.000019474855,0.000018180532,0.000018860701,0.000018620483,0.000018540624,0.000017779688,0.000018945444,0.00001899987,0.000019044368,0.00001798129,0.000018941038,0.000018739787,0.000018792995,0.00001803974,0.000019451489,0.000019534284,0.000019452935,0.000018162404,0.000018845149,0.000018610881,0.000018527031,0.000017768112,0.000018932496,0.000018988785,0.000019032605,0.000017973507,0.00001893831,0.000018735267,0.000018789859,0.000018046261,0.000019465164,0.000019551002,0.000019464458,0.000018162507,0.00001884071,0.000018617004,0.000018534365,0.00001777162,0.000018938057,0.000018994,0.000019030753,0.00001797457,0.000018935654,0.000018731122,0.000018782048,0.00001803666,0.000019449837,0.00001952594,0.000019433726,0.000018146131,0.000018830453,0.000018605362,0.00001852371,0.000017765486,0.000018927802,0.000018979552,0.000019018906,0.000017965074,0.00001892558,0.000018726889,0.000018777517,0.000018031844,0.000019440842,0.000019517322,0.000019436375,0.000018151288,0.000018839057,0.000018605326,0.000018516115,0.000017759134,0.000018923416,0.000018978755,0.00001902754,0.000017979764,0.000018951914,0.000018754681,0.000018804989,0.000018056797,0.000019476547,0.000019581716,0.000019510604,0.000018224571,0.000018938328,0.000018721032,0.000018647886,0.000017887683,0.00001907114,0.000019148703,0.000019196772,0.000018143637,0.000019119761,0.000018898221,0.000018932044,0.000018191302,0.000019665424,0.000019817997,0.000019655863,0.000018295601,0.000019063831,0.000019027106,0.00001895712,0.000018078299,0.000019452435,0.000019650277,0.000019680901,0.000018459255,0.000019139208,0.000018715427,0.000018902098,0.000018115301,0.0000192909,0.000019247127,0.000019528678,0.000018291903,0.000019132713,0.000018964425,0.000019168983,0.00001809988,0.000019124376,0.000018873492,0.000019400411,0.000018289566,0.000019641415,0.000019333222,0.000020117259,0.000019265748,0.0000204523,0.00002033266,0.000020589878,0.000019471365,0.000020041773,0.000020269721,0.000020364194,0.000019502846,0.000020214047,0.000020352796,0.00002024368,0.000018827957,0.000019691153,0.000019347535,0.000020205298,0.000019327488,0.000020532132,0.000019914865,0.000020054316,0.0000188924,0.000019475581,0.000019747984,0.000019786252,0.000019095398,0.000018890709,0.000019066685,0.000019100882,0.00001949539,0.000019666211,0.000020367068,0.000020713065,0.000021277296,0.000021324871,0.000022047925,0.000024009905,0.000024562678,0.000024529345,0.000017722774,0.000011255871,0.000013297521],[0.000014946205,0.000013819739,0.000010347612,0.0000146506245,0.000025044877,0.000034145865,0.00002783737,0.0000238728,0.000020113632,0.000020417008,0.000019189194,0.000019539708,0.000018428915,0.000019170264,0.000018657884,0.000019607092,0.000019028594,0.00002013054,0.000018878174,0.00001916807,0.000018855917,0.00001998503,0.000018672588,0.00001922715,0.000018037881,0.000019139354,0.000017633944,0.000018188422,0.00001751824,0.000019198053,0.000018040375,0.000018879218,0.000017698218,0.000019460616,0.000018149556,0.000018869876,0.000018066254,0.000019398933,0.000018059362,0.000018786328,0.000017765247,0.000019115423,0.000017428323,0.000017665318,0.000016885435,0.00001838368,0.000017263943,0.000018070921,0.000017124124,0.0000187816,0.000017336983,0.000017754392,0.000017013712,0.00001829213,0.000017069733,0.000017816486,0.000017163904,0.00001894306,0.000017167817,0.00001751996,0.000016536422,0.000018096514,0.000016703127,0.000017409104,0.000016616967,0.00001852332,0.000017162758,0.000017652452,0.00001692981,0.000018326178,0.000016982976,0.000017705695,0.000017115668,0.000019037596,0.00001727595,0.000017691094,0.000016626731,0.000018172314,0.000016725953,0.000017393006,0.000016560978,0.00001847981,0.000017140152,0.000017626478,0.000016897338,0.000018315415,0.000016972648,0.000017718989,0.000017120516,0.000019036399,0.000017250992,0.000017655953,0.00001657229,0.000018107183,0.000016685915,0.000017362894,0.000016535034,0.000018448593,0.000017113627,0.000017594284,0.000016871929,0.00001829731,0.00001695988,0.000017696477,0.000017102648,0.000019019468,0.000017236389,0.000017637392,0.000016559336,0.000018093064,0.000016671776,0.000017345517,0.000016519982,0.000018433748,0.000017100201,0.000017580614,0.000016856731,0.000018284507,0.0000169511,0.00001769511,0.000017105469,0.00001902912,0.000017235057,0.00001763016,0.000016545397,0.000018091167,0.000016672284,0.00001734292,0.000016516202,0.000018433695,0.000017095717,0.00001757924,0.000016853324,0.000018277638,0.000016940063,0.000017679407,0.000017087257,0.000019006195,0.000017215361,0.000017612465,0.000016535601,0.000018079592,0.000016665384,0.000017333346,0.000016506989,0.000018420198,0.000017089083,0.000017571949,0.00001684802,0.000018274222,0.000016941049,0.000017676355,0.000017082484,0.000019000268,0.000017220189,0.000017621958,0.000016546359,0.000018084334,0.000016660983,0.000017334123,0.000016510925,0.000018428089,0.000017104474,0.000017593193,0.000016876822,0.000018308534,0.000016973132,0.000017722503,0.000017134515,0.000019071158,0.000017277136,0.000017691415,0.000016625589,0.000018201104,0.000016785747,0.000017471773,0.000016640817,0.000018607401,0.000017253607,0.000017746637,0.000016973132,0.000018415773,0.000017029295,0.000017810267,0.000017221044,0.000019220364,0.000017300203,0.000017659422,0.00001661714,0.00001830087,0.00001681946,0.000017360875,0.000016656853,0.000018816236,0.000017439861,0.000017760387,0.00001665377,0.000018100363,0.000017030108,0.000017835848,0.000017107313,0.000019053798,0.000017593311,0.000018197547,0.00001742111,0.00001899958,0.000017492814,0.000018278093,0.000017340208,0.00001895627,0.000017628765,0.00001821253,0.000017540757,0.000019085477,0.000018093891,0.000019277877,0.000018340304,0.000020207224,0.000018373234,0.00001918958,0.000018278093,0.000020199037,0.00001872171,0.000019724852,0.00001872905,0.000020553387,0.000018689156,0.000018954155,0.000017964476,0.000019464662,0.000018511524,0.00001959044,0.000018397554,0.000020006502,0.00001819951,0.000018830848,0.000017672934,0.000019463678,0.000018232775,0.000019124958,0.000017607981,0.000018917372,0.000018013865,0.000019186833,0.000018793622,0.000020222937,0.000020301735,0.00002168749,0.000021435279,0.000023069233,0.000024765548,0.000026125706,0.000022733473,0.000016074267,0.0000111016225,0.000013408589],[0.00001556401,0.000014990084,0.00001185401,0.000016394317,0.00002953796,0.000036692025,0.000032174317,0.000024715411,0.000021886031,0.000020925545,0.000020962716,0.000019280968,0.000019722856,0.000019233457,0.000020150705,0.000019141782,0.000020596613,0.000020167663,0.00002083846,0.000018964154,0.000020253468,0.000019758476,0.00002049119,0.000018687766,0.00001968432,0.000018783607,0.000019345614,0.00001776823,0.00001926211,0.000018856834,0.00001986943,0.00001820489,0.000019505562,0.000018889916,0.000019954085,0.000018141682,0.000019608982,0.000019014135,0.000020075766,0.00001839836,0.000019527097,0.000018884313,0.000019401818,0.000017305747,0.000018343611,0.000018232011,0.000019060504,0.000017616094,0.00001870194,0.000018344574,0.000019098094,0.00001727091,0.000018402483,0.000017947437,0.000018795736,0.00001731144,0.000018685609,0.0000182941,0.000018827615,0.00001684672,0.00001792462,0.00001764456,0.000018273875,0.000016876114,0.000018101002,0.000017820854,0.000018658686,0.0000170362,0.00001825252,0.000017851913,0.000018580964,0.00001709262,0.000018563445,0.000018247822,0.00001884222,0.000016869388,0.000018026909,0.000017696952,0.000018282119,0.000016832491,0.00001808744,0.000017759301,0.000018599383,0.000016981763,0.00001822205,0.000017850602,0.000018602912,0.000017102648,0.00001857788,0.000018267376,0.000018829141,0.000016847023,0.000017971792,0.000017637678,0.000018225544,0.0000168096,0.000018062306,0.000017746095,0.0000185695,0.000016957796,0.000018194754,0.000017838009,0.000018580484,0.000017086573,0.000018560526,0.000018264203,0.000018814962,0.00001683779,0.000017960365,0.000017629993,0.000018207198,0.000016796781,0.00001804917,0.000017736656,0.000018552384,0.000016941678,0.00001817916,0.000017823386,0.000018565164,0.000017079421,0.000018560295,0.000018276052,0.000018819395,0.000016830629,0.000017947694,0.000017624176,0.000018195118,0.000016788612,0.000018042698,0.000017732224,0.000018538607,0.000016935428,0.00001817214,0.000017815262,0.00001854807,0.000017061986,0.000018538094,0.000018249772,0.000018792565,0.000016817665,0.000017934879,0.000017614262,0.000018186825,0.000016781969,0.000018033496,0.000017726543,0.000018533712,0.000016934167,0.000018170824,0.000017816028,0.000018548635,0.000017063288,0.000018534594,0.000018246674,0.000018791256,0.000016823826,0.000017941722,0.000017618866,0.000018195447,0.000016784674,0.000018038398,0.000017735623,0.000018555784,0.000016955804,0.000018198345,0.000017849734,0.000018603321,0.000017113758,0.000018591545,0.000018302895,0.000018862283,0.000016877353,0.000018020963,0.000017716724,0.00001832146,0.00001689613,0.000018178313,0.000017880879,0.000018710198,0.000017054665,0.00001826499,0.000017869866,0.000018621693,0.000017121805,0.000018642748,0.000018356193,0.000018857176,0.00001686437,0.000018052011,0.000017812783,0.000018182542,0.000016741064,0.000018153469,0.000017987808,0.000018689956,0.00001698249,0.000017951272,0.000017520862,0.000018488183,0.000017207565,0.000018668741,0.000018488008,0.000019328741,0.000017634482,0.000018975352,0.000018682349,0.000019399544,0.000017797585,0.000019054689,0.00001837283,0.000019079253,0.000017527262,0.000018950723,0.000018634464,0.000020024083,0.00001846806,0.000019873865,0.000019371626,0.000020081146,0.000018504781,0.000019744819,0.000019604418,0.000020505811,0.000018968603,0.000020169527,0.000019649939,0.000020177511,0.000018198918,0.00001940056,0.0000188148,0.000020210078,0.000018594541,0.000019975256,0.000019273504,0.000019953322,0.000018385292,0.000019293144,0.000019160392,0.000020104504,0.000018644545,0.000019049654,0.000018466562,0.000019004528,0.000018398465,0.000019744142,0.000020132746,0.000020920776,0.000020830295,0.00002151119,0.000022001823,0.00002653145,0.000024752204,0.000020636071,0.000014674143,0.000010795547,0.000013413885],[0.000016017664,0.000015204869,0.0000147633755,0.00002099691,0.000031503383,0.00003141332,0.000026893022,0.000023244265,0.000020452047,0.000020293646,0.000019016474,0.000019461786,0.000018363738,0.00001903932,0.000018318264,0.000019266447,0.000019158693,0.000020381154,0.000019147625,0.000019403835,0.00001896504,0.00002010529,0.000018668634,0.00001907314,0.000018047673,0.000018960898,0.000017877639,0.000018098257,0.000017503577,0.00001907314,0.000017915494,0.000018708504,0.000017890685,0.000019544254,0.00001828008,0.000018863811,0.000018094857,0.000019478422,0.000018248136,0.000019033021,0.000018140472,0.000019391238,0.000017886507,0.00001791481,0.000017128566,0.000018621602,0.000017485174,0.00001831297,0.000017517403,0.000019007428,0.000017736993,0.000018158351,0.000017203873,0.000018367697,0.000017232773,0.000017990465,0.000017460514,0.000018789608,0.000017428722,0.000017538883,0.000016772834,0.000018216786,0.000016900063,0.00001767066,0.00001700719,0.000018544655,0.00001748896,0.000018076042,0.000017267928,0.000018413384,0.000017079992,0.00001779448,0.000017363009,0.000018775136,0.00001740927,0.000017540773,0.000016807804,0.000018247021,0.000016882213,0.000017567609,0.00001693039,0.000018460629,0.00001739659,0.000017985303,0.000017211389,0.000018388308,0.000017085058,0.000017790915,0.000017346756,0.000018782532,0.000017420445,0.000017527731,0.000016768228,0.000018204317,0.000016846334,0.000017543149,0.000016918382,0.000018457848,0.000017380338,0.0000179586,0.000017188719,0.000018366663,0.000017069911,0.000017769942,0.000017332122,0.000018774042,0.000017410746,0.00001751513,0.000016754146,0.000018188837,0.000016827002,0.000017522283,0.000016904012,0.000018444738,0.000017363456,0.000017937513,0.000017169667,0.000018348352,0.000017052844,0.000017760607,0.000017332206,0.000018786435,0.000017414832,0.000017503327,0.000016734552,0.000018177843,0.000016820744,0.00001751211,0.000016901915,0.000018447288,0.000017357199,0.00001793317,0.00001716952,0.000018345325,0.000017038556,0.000017736571,0.000017312432,0.000018764575,0.000017395694,0.000017497585,0.000016736898,0.000018176197,0.000016815884,0.000017507435,0.000016893488,0.000018441555,0.000017353592,0.000017930482,0.000017167833,0.000018345867,0.000017042064,0.00001774349,0.000017318276,0.000018768655,0.000017401286,0.000017508484,0.000016749944,0.000018185456,0.000016818307,0.000017518072,0.000016903334,0.000018455912,0.00001737525,0.000017961751,0.000017202052,0.00001839306,0.000017093858,0.000017809622,0.00001737515,0.0000188246,0.000017463793,0.000017571128,0.000016826938,0.000018282415,0.000016948758,0.000017660415,0.000017057399,0.000018614663,0.000017508903,0.000018056022,0.000017276905,0.000018476005,0.000017159517,0.000017883367,0.000017474289,0.000018944145,0.000017455735,0.000017477822,0.000016773409,0.000018231036,0.000016776577,0.000017340059,0.000016934007,0.000018647424,0.000017548318,0.000017978788,0.000017100543,0.00001822363,0.000017114167,0.000017980878,0.000017567576,0.000019200343,0.000017885124,0.000018443367,0.000017661292,0.000019301902,0.000017690487,0.000018571307,0.000017630176,0.000018988387,0.000017706505,0.000018438812,0.000017819459,0.000019363797,0.000018160967,0.000019187511,0.000018429759,0.000019996833,0.000018626772,0.000019142477,0.000018345885,0.000020143636,0.000018511932,0.00001935176,0.000018357821,0.000019766374,0.000018568953,0.00001892024,0.000018092598,0.000019385636,0.00001845952,0.000019259962,0.000018382381,0.000019728408,0.000018461333,0.000018940731,0.000018054041,0.000019540117,0.000018252365,0.00001876724,0.000017915681,0.000018782728,0.000018408557,0.000019542447,0.000019837225,0.000021817536,0.0000210962,0.000022289738,0.00002162518,0.000023921775,0.000025300418,0.00002775734,0.000020327736,0.000015276988,0.000010197492,0.0000138704945],[0.00001647643,0.000014682487,0.000014045334,0.000023532682,0.000029707287,0.000029573135,0.000026407004,0.00002323808,0.000021205686,0.000020823165,0.000020625723,0.00001992043,0.00002016399,0.000019537154,0.000019756235,0.000019427147,0.000020339874,0.000020471385,0.000020622105,0.000019568368,0.00002045987,0.000020557642,0.000020521305,0.000019241419,0.000019718587,0.000019488734,0.000019851192,0.000018690474,0.000019253222,0.000019508556,0.000020030422,0.000019005052,0.000019873714,0.000019968036,0.000020598853,0.000019374213,0.000020060494,0.0000198904,0.000020433565,0.000019311514,0.000020013962,0.000020056554,0.000020195821,0.000018785522,0.000018965275,0.000019219284,0.000019555291,0.000018630111,0.000019485948,0.000019809173,0.000020139947,0.00001899594,0.000019180303,0.00001905925,0.000019274348,0.000018461351,0.000019349434,0.000019594607,0.000019685427,0.000018414194,0.00001898768,0.000019087842,0.000019269735,0.000018339062,0.00001920155,0.000019369189,0.000019832969,0.000019047058,0.00001935713,0.000019151406,0.000019121222,0.00001831346,0.000019230834,0.00001956947,0.000019658317,0.00001840938,0.000019002606,0.000019098166,0.000019292462,0.000018285642,0.00001910622,0.000019270195,0.000019723911,0.0000189425,0.000019298075,0.000019103705,0.000019113746,0.00001830796,0.000019225901,0.000019556206,0.0000196652,0.000018390974,0.000018961984,0.00001905714,0.000019252597,0.000018243978,0.000019099187,0.000019276076,0.000019702911,0.000018915134,0.000019263507,0.000019079216,0.000019079707,0.00001828449,0.00001920558,0.000019543937,0.000019656725,0.000018379962,0.000018951698,0.000019047022,0.000019239273,0.000018229019,0.00001909052,0.000019264278,0.000019689538,0.000018899014,0.000019247127,0.000019063411,0.00001906765,0.000018280985,0.00001921736,0.000019560588,0.000019666417,0.000018375933,0.00001893524,0.000019033203,0.00001923498,0.000018231993,0.000019099407,0.000019272142,0.00001968599,0.000018900655,0.00001924955,0.000019058232,0.00001905069,0.000018259085,0.000019198933,0.000019541458,0.000019650353,0.000018372235,0.000018944886,0.000019034147,0.00001921956,0.000018215413,0.000019086405,0.00001926391,0.000019681635,0.000018896402,0.000019248007,0.00001906014,0.00001905407,0.000018269275,0.000019207064,0.000019545205,0.000019658375,0.000018382172,0.00001895799,0.000019047711,0.000019229936,0.000018229663,0.000019097748,0.000019282548,0.000019703983,0.000018924715,0.000019288489,0.000019116918,0.000019107276,0.000018332015,0.000019252853,0.00001960311,0.000019706351,0.000018445036,0.00001902491,0.00001916286,0.000019391035,0.00001838154,0.00001922515,0.000019422681,0.000019835372,0.00001903264,0.000019358367,0.000019210105,0.000019215417,0.000018463375,0.000019394845,0.000019721523,0.000019675517,0.000018307086,0.000018998746,0.000019156245,0.00001928643,0.000018230985,0.000019172767,0.00001959952,0.000019996107,0.000019171708,0.000019343124,0.000019003965,0.000019127694,0.000018419005,0.000019510213,0.000019761776,0.000020255788,0.000019031713,0.00002002053,0.000019890627,0.000020087122,0.000018809364,0.00001957925,0.000019302935,0.000019736573,0.000019219817,0.000020108646,0.000020074962,0.000020305222,0.000019438043,0.000020369302,0.00002062234,0.000020966774,0.000019686759,0.00002040239,0.00002057906,0.000020578394,0.000019311423,0.000019822739,0.00001999115,0.000020537907,0.000019634954,0.000020081645,0.000019929836,0.000020420572,0.00001943378,0.000020279831,0.00002010111,0.000020873746,0.000019816256,0.000020294323,0.000020247619,0.000019929,0.000019350486,0.000019439676,0.000019843925,0.000020188021,0.000020283178,0.000021490072,0.000022384831,0.000022374863,0.000022493,0.000022568503,0.000023379122,0.000027765334,0.00002561112,0.000020531015,0.000015615422,0.000010654412,0.000013619586],[0.000016202439,0.000013137289,0.000014262255,0.000021579506,0.000029014518,0.000028602346,0.00002396964,0.000022421578,0.00001952732,0.000020445748,0.000019299197,0.000020376141,0.000018814155,0.000019583957,0.000018571716,0.000019483066,0.00001876375,0.000020362251,0.00001906243,0.000019903797,0.000019160594,0.00002065915,0.000019105017,0.00001929572,0.000018282102,0.000019504409,0.000018523162,0.000019031751,0.000018149487,0.000019742673,0.000018470895,0.000019232486,0.00001806801,0.000020079768,0.000018657243,0.000019631678,0.000018334096,0.000019894764,0.000018425522,0.00001917573,0.000018350049,0.00002007232,0.000018674635,0.000018883791,0.000017833485,0.00001927911,0.000017966702,0.000018743756,0.000017835628,0.000019954941,0.000018494515,0.000019445237,0.000018073559,0.000019448595,0.000017872711,0.000018586456,0.000017853581,0.000019480316,0.000018163564,0.000018437564,0.000017824184,0.000019544925,0.000017868588,0.000018584791,0.000017481572,0.000019690908,0.000018416722,0.000019572288,0.00001817046,0.000019693614,0.000017866067,0.000018481996,0.000017698401,0.000019524543,0.000018193505,0.000018494797,0.000017832464,0.000019652094,0.000017915783,0.000018599596,0.00001735897,0.000019569563,0.000018297207,0.000019448407,0.000018076145,0.000019597763,0.00001782954,0.000018461016,0.000017682762,0.00001946533,0.000018141596,0.000018451054,0.000017775636,0.000019587374,0.000017877554,0.000018548015,0.000017327942,0.000019554265,0.000018289687,0.000019406853,0.000018019398,0.000019551077,0.000017784927,0.000018413735,0.000017641747,0.000019442512,0.000018122939,0.00001842981,0.000017759963,0.00001957324,0.000017863918,0.000018528428,0.00001731088,0.000019536801,0.000018276907,0.000019390629,0.0000180014,0.000019535011,0.000017770619,0.000018408644,0.000017653883,0.000019467838,0.000018131444,0.000018419601,0.00001773938,0.000019559806,0.000017860733,0.000018529186,0.000017314711,0.000019544104,0.000018277831,0.000019389981,0.000018000213,0.000019529814,0.000017753748,0.000018382856,0.000017619437,0.0000194353,0.000018111898,0.00001841449,0.00001773285,0.000019553612,0.000017848508,0.000018506935,0.000017297265,0.000019533316,0.000018277813,0.00001938619,0.0000179963,0.000019532068,0.00001776235,0.000018391114,0.000017627219,0.00001943936,0.000018120501,0.000018428422,0.000017750006,0.000019570049,0.000017863305,0.0000185309,0.000017317105,0.000019560384,0.000018304083,0.000019427036,0.000018039085,0.000019593745,0.000017826887,0.00001846806,0.000017696275,0.000019507701,0.000018196039,0.00001852613,0.000017876087,0.000019732246,0.000018019948,0.000018687551,0.000017452605,0.00001973057,0.000018443085,0.000019555178,0.000018135126,0.00001971936,0.000017931594,0.000018568793,0.000017748229,0.000019530728,0.0000180838,0.000018303628,0.000017724093,0.000019694815,0.000018025483,0.000018526925,0.000017394466,0.000019853522,0.000018744668,0.000019720526,0.00001813077,0.000019590047,0.000017845752,0.000018469698,0.000017671282,0.00001971889,0.00001841825,0.000019094889,0.000018371638,0.000020249452,0.00001815025,0.000018764878,0.000017390585,0.000019511608,0.000018314053,0.000019773763,0.000018579316,0.00002042924,0.000018690278,0.000019365089,0.000018614663,0.000020530095,0.00001961912,0.00002023289,0.000019190951,0.00002105799,0.000018973706,0.000019485353,0.000018164414,0.000020199615,0.000019131563,0.000020529586,0.000018891897,0.000020597969,0.00001886831,0.000019458186,0.000018370903,0.000020106958,0.000019365401,0.000020365282,0.000019456924,0.00002085683,0.000019017709,0.000019329995,0.000018647639,0.000019720319,0.000019501711,0.000020391633,0.000020299316,0.00002199129,0.000021692867,0.000022661738,0.00002146359,0.00002315665,0.0000253107,0.000026565805,0.00001937804,0.000015298114,0.000010640125,0.000013942069],[0.000016661508,0.000011682659,0.000013327204,0.000020031111,0.000031355976,0.00003080114,0.00002748815,0.000023171518,0.000021295647,0.000020716561,0.000020900097,0.000019761057,0.000020338788,0.00001930494,0.000019796518,0.000018685929,0.000019823081,0.00001969611,0.000020691801,0.00001909693,0.000020421721,0.000020125875,0.000020465624,0.000018927656,0.000019617379,0.000018937606,0.000019891253,0.000018476869,0.000019606456,0.000019329276,0.00002001175,0.000018504765,0.000019719002,0.000019275709,0.00002041438,0.000018510484,0.000019783703,0.00001933383,0.000019979427,0.000018622812,0.000019775915,0.00001952881,0.000020316922,0.000018454732,0.000019206404,0.000018979117,0.000019514251,0.000018135612,0.000019318128,0.000019395306,0.00002040276,0.000018589632,0.00001942535,0.000019012523,0.000019427183,0.00001814362,0.000019165327,0.00001909254,0.000019833858,0.000018003802,0.000019142311,0.00001933988,0.000019734598,0.000018066923,0.000019318828,0.000019604644,0.00002054684,0.000018949022,0.000019754934,0.000019254783,0.00001943862,0.000017996816,0.000019082183,0.000019141748,0.000019910365,0.00001801507,0.000019182095,0.000019390072,0.00001981913,0.000018092356,0.000019238887,0.000019466705,0.00002041031,0.000018780293,0.000019633193,0.00001917584,0.000019409388,0.00001798424,0.000019056795,0.000019087516,0.000019831305,0.000017955226,0.000019152356,0.000019378278,0.00001977925,0.00001807811,0.000019243145,0.0000194795,0.000020392237,0.000018776604,0.000019607298,0.000019144029,0.000019368043,0.000017943792,0.000019025,0.00001907587,0.000019818412,0.000017939805,0.000019142715,0.000019374287,0.000019767636,0.000018063134,0.00001922977,0.000019469582,0.00002038621,0.000018767616,0.0000195981,0.000019133953,0.000019355155,0.000017939821,0.000019042009,0.000019104762,0.000019831872,0.00001793404,0.000019134135,0.000019371499,0.000019765317,0.00001806546,0.000019243273,0.000019481284,0.000020388445,0.000018773648,0.00001960552,0.00001913189,0.000019341871,0.000017912265,0.000019010127,0.000019071867,0.000019806677,0.000017918706,0.000019125433,0.000019360934,0.000019751242,0.000018050012,0.000019227351,0.000019474855,0.000020389962,0.000018771965,0.00001960197,0.000019132201,0.000019347293,0.000017917579,0.000019013502,0.000019076106,0.000019817146,0.000017930894,0.000019137986,0.000019371997,0.000019775649,0.000018072627,0.000019248137,0.00001949643,0.000020416523,0.000018801078,0.000019633999,0.000019173132,0.00001940045,0.000017978306,0.000019064957,0.000019120984,0.000019896414,0.000018057692,0.000019268633,0.000019474151,0.00001989112,0.000018183237,0.00001937765,0.000019614197,0.000020550586,0.000018909903,0.000019746702,0.000019262534,0.000019492601,0.00001799105,0.00001905756,0.00001904415,0.000019693614,0.000017829761,0.000019177358,0.00001962434,0.000019973351,0.00001828416,0.00001954157,0.0000199026,0.000020882168,0.000019307667,0.000019928695,0.000019174833,0.000019327654,0.000017808045,0.00001906872,0.00001924641,0.000020216303,0.000018328643,0.000019731757,0.00001964471,0.000019927327,0.00001798846,0.000019235878,0.000019391404,0.000020281863,0.000018867662,0.000020028703,0.000019730891,0.000020105232,0.000018667282,0.000019728745,0.000019958767,0.00002135719,0.000019679532,0.000020686297,0.000020388172,0.000020828567,0.000018848581,0.000019932631,0.000020061374,0.00002128929,0.000019773688,0.000020716918,0.000019885203,0.000020358815,0.000018631836,0.000019693107,0.000019679439,0.000021035972,0.000019717498,0.000020870679,0.000020560306,0.000020413989,0.000019060159,0.000019517767,0.000019601466,0.000020163681,0.000019580204,0.000020689098,0.00002051172,0.000021456568,0.000020924886,0.00002092746,0.000021198264,0.000025813119,0.000023990106,0.000020323354,0.000014805376,0.0000113269625,0.000012902228],[0.000017502809,0.000012136944,0.000013996502,0.00002052706,0.0000323072,0.00003122016,0.000025062414,0.000022273376,0.0000194152,0.000019954921,0.000018731962,0.00001958956,0.000018508717,0.000019352534,0.00001825999,0.000019287294,0.000018681583,0.000020335026,0.000018752857,0.000019474335,0.00001902226,0.000020524105,0.000019181309,0.000019720621,0.000018478031,0.000019625331,0.000018279521,0.000018627607,0.00001811658,0.00001946548,0.000018263543,0.000018868437,0.000018110983,0.000019959432,0.000018439057,0.000019079143,0.000018332192,0.000019978934,0.000018483284,0.000019250578,0.000018318875,0.000019958976,0.00001845732,0.000018509954,0.000017781469,0.000018961695,0.00001770031,0.000018306666,0.000017800896,0.000019908675,0.000018218298,0.0000189254,0.000017951425,0.000019507794,0.000018054712,0.000018851188,0.000018114402,0.000019845913,0.000018033203,0.000018137498,0.000017566286,0.000019355784,0.00001779329,0.000018508365,0.000018106268,0.00002071184,0.00001882478,0.00001969521,0.000018440218,0.000020098485,0.000018178329,0.000018877075,0.00001818008,0.000020063499,0.000018121573,0.000018268647,0.000017594855,0.000019470714,0.000017836614,0.000018561002,0.000018070354,0.00002056615,0.000018681707,0.000019480038,0.000018304083,0.000019967885,0.000018134418,0.000018815914,0.000018099621,0.000019943202,0.000018037314,0.000018157398,0.00001754432,0.000019454234,0.000017833298,0.000018555324,0.000018071232,0.000020594412,0.000018689227,0.000019501023,0.00001831124,0.000019968686,0.00001811074,0.000018782155,0.00001808242,0.000019934683,0.000018026394,0.000018139728,0.000017534301,0.000019445404,0.000017828163,0.000018541543,0.000018061739,0.0000205855,0.00001868283,0.000019496301,0.000018306422,0.000019965943,0.00001810663,0.000018779754,0.000018094772,0.000019963829,0.00001804497,0.000018138604,0.00001752875,0.000019444922,0.00001783289,0.000018544,0.000018069888,0.000020596694,0.000018687997,0.00001950346,0.000018309058,0.000019964573,0.000018090837,0.000018757273,0.00001806851,0.000019931165,0.00001801878,0.000018125616,0.000017516986,0.000019436004,0.00001782104,0.000018531768,0.000018058277,0.000020592568,0.000018689727,0.000019498011,0.00001830122,0.000019960002,0.000018095272,0.000018758312,0.00001807149,0.000019931755,0.000018025192,0.000018135439,0.000017523202,0.000019444014,0.000017825205,0.00001854761,0.00001807556,0.000020617032,0.000018711018,0.00001952747,0.000018335111,0.000020009098,0.00001814331,0.000018823828,0.000018121937,0.000020001638,0.000018124321,0.000018271192,0.000017640907,0.000019537507,0.000017924773,0.000018670147,0.000018182074,0.000020729229,0.000018806817,0.000019643887,0.000018447254,0.000020132324,0.000018204802,0.00001877911,0.00001804461,0.000019885829,0.000017921919,0.000018077351,0.000017586784,0.000019724193,0.000018111536,0.000018808127,0.00001843055,0.000021199803,0.000019434021,0.000020209076,0.000018680157,0.000020095802,0.000018079973,0.000018561039,0.000018056797,0.000020057778,0.000018311259,0.00001843897,0.00001765577,0.000019610383,0.000017643566,0.000018322735,0.000017748771,0.000020262607,0.000018573983,0.00001967775,0.000018649826,0.000020511445,0.000018776711,0.000019531268,0.000018656994,0.000020433896,0.000019186613,0.000019638886,0.000018885485,0.000020459187,0.000018681172,0.0000190808,0.000018509654,0.000020681464,0.000019493622,0.000020538595,0.00001953069,0.000020947688,0.00001924509,0.000019766692,0.000018681636,0.000020351554,0.000018940007,0.000019915853,0.000018994,0.000020653852,0.00001920459,0.000019506435,0.00001883798,0.000020034875,0.000019606663,0.000020205298,0.00002005156,0.000020843885,0.000020686928,0.000021725225,0.000020828367,0.00002251734,0.000023465967,0.000025942089,0.000021073036,0.000015908923,0.000010934671,0.000013317154],[0.000016928452,0.000011877908,0.000012228238,0.000020770547,0.000031853542,0.000032831194,0.00002714238,0.000023090584,0.000020791456,0.000020591508,0.000020420981,0.000019774123,0.000020213509,0.000019633419,0.000020152012,0.000019729969,0.000020542511,0.00002034488,0.00002032512,0.000019221538,0.000020447524,0.000020469432,0.000020847981,0.000019895011,0.000020317444,0.000019805866,0.000019678406,0.000018605362,0.00001952501,0.000019610814,0.000020136644,0.000019058667,0.000020117084,0.000019968209,0.0000205759,0.000019089392,0.000020263342,0.000020015128,0.000020680576,0.000019372219,0.00002035501,0.000020008296,0.000020305552,0.000018694842,0.000019317962,0.000019282548,0.000019694025,0.000018471143,0.000019979867,0.000019959127,0.000020493615,0.000018718158,0.000019674353,0.000019404262,0.000020046169,0.000019016928,0.000020143136,0.000019807396,0.000019935997,0.000018192619,0.000019128296,0.000019338846,0.000019876177,0.000018633718,0.000020545744,0.000020780295,0.000021265043,0.000019487637,0.000020314443,0.000019863633,0.000020116528,0.000019053234,0.000020185442,0.000019977962,0.000020041352,0.00001827222,0.000019236355,0.000019418256,0.000019932972,0.000018673049,0.0000204916,0.00002065403,0.000021088756,0.000019323637,0.000020186539,0.000019786232,0.000020096626,0.000018996338,0.000020100975,0.000019864867,0.00001995869,0.00001818889,0.00001916776,0.000019427647,0.000019964325,0.000018704615,0.000020528332,0.000020711623,0.000021117457,0.000019352425,0.000020207417,0.000019807982,0.000020089668,0.00001899304,0.000020097334,0.000019873676,0.000019955738,0.00001818046,0.000019156629,0.000019427629,0.000019958652,0.000018698462,0.000020515201,0.000020704356,0.000021110933,0.000019350764,0.000020208921,0.000019812082,0.000020087178,0.000018993946,0.000020107647,0.000019892032,0.000019967923,0.000018184484,0.000019155716,0.000019431334,0.000019963487,0.000018705274,0.000020528138,0.000020723872,0.000021122754,0.000019359142,0.0000202132,0.000019812931,0.000020078349,0.000018973325,0.000020084843,0.000019870266,0.000019950907,0.00001817136,0.000019151552,0.000019424571,0.000019954046,0.000018697445,0.000020519545,0.000020715357,0.000021116168,0.000019352867,0.000020201252,0.00001980462,0.000020078007,0.000018978826,0.000020087544,0.00001987324,0.000019955967,0.000018176734,0.000019156136,0.000019426518,0.000019959298,0.000018709841,0.000020540494,0.000020735397,0.000021141052,0.000019369872,0.000020233623,0.000019838153,0.000020114343,0.000019024692,0.0000201406,0.000019935691,0.00002003514,0.000018273142,0.000019250836,0.000019494702,0.00002002156,0.000018780544,0.000020618663,0.000020811112,0.000021218735,0.000019460858,0.000020305184,0.000019889128,0.000020086796,0.000018941688,0.000020009213,0.000019829264,0.000019832063,0.000018135612,0.000019263965,0.000019735126,0.00002025886,0.000019070958,0.000020892863,0.0000213825,0.000021912034,0.00001998446,0.00002052017,0.00001982917,0.000020028247,0.000018811787,0.000020099424,0.000019990883,0.000020385567,0.000018445917,0.000019495426,0.000019499053,0.000019966381,0.000018559127,0.000020221645,0.00002028666,0.000020854703,0.000019394753,0.000020486168,0.000020173644,0.000020506672,0.000019576395,0.000020347248,0.000020230575,0.000020398189,0.000019197723,0.000020003106,0.00002033299,0.000020604079,0.00001931074,0.00002062594,0.000020960937,0.000021654092,0.000020393889,0.000021221162,0.000020593097,0.000020984216,0.000019768937,0.000020519605,0.000019971618,0.000020566033,0.000019220126,0.000019963752,0.000020212468,0.000020314945,0.00001951211,0.000019595484,0.000019772708,0.000019459112,0.000019794687,0.000019878205,0.000020656373,0.000021137404,0.000021324402,0.000021311105,0.000021981625,0.000025205389,0.00002390898,0.000021075448,0.000016228294,0.000011348014,0.000012792804],[0.000016422107,0.0000119691385,0.000011819398,0.000017717603,0.000028304303,0.000033574597,0.000026888816,0.000023884528,0.000020308438,0.000020624955,0.000019231293,0.000019778347,0.00001847782,0.000019350062,0.000018599667,0.000020084133,0.000019184858,0.000020549232,0.000018860072,0.000019380626,0.000018819359,0.000020347094,0.000019228322,0.000020232794,0.00001885223,0.000019898443,0.000018438108,0.000018678767,0.000018270634,0.000019552606,0.00001880472,0.000019473222,0.000018433431,0.000019822135,0.000018667639,0.000019105053,0.00001848025,0.000019802996,0.000018957156,0.00001955337,0.000018670042,0.000019749039,0.000018714374,0.000018501536,0.00001816218,0.000018929048,0.000018427947,0.000018654593,0.000018424364,0.00001967197,0.000018580165,0.00001862878,0.00001796009,0.00001905456,0.00001839015,0.000019008152,0.000018458288,0.00001964769,0.000018297626,0.00001803162,0.000017882294,0.00001886149,0.000018150336,0.000018473698,0.00001842424,0.000020133437,0.000018836776,0.000019105199,0.000018114455,0.000019442345,0.000018431218,0.00001898643,0.000018428791,0.000019855906,0.000018394236,0.000018186895,0.000018025808,0.000019069957,0.000018272289,0.000018532739,0.000018422852,0.000020071899,0.000018807033,0.000019038067,0.00001813516,0.00001941872,0.000018432307,0.000018957646,0.00001836775,0.000019718174,0.000018300208,0.000018085559,0.000017952196,0.000018996718,0.000018245333,0.000018536575,0.00001841976,0.000020090245,0.000018781671,0.000019007102,0.000018093322,0.000019404835,0.000018415878,0.000018934265,0.000018353392,0.000019725283,0.000018287072,0.000018071472,0.000017938763,0.00001899679,0.000018238114,0.000018525547,0.00001840947,0.000020087638,0.00001877159,0.000019001174,0.000018092787,0.00001940861,0.000018414052,0.000018934661,0.000018364142,0.000019747495,0.000018301516,0.00001807444,0.000017942884,0.00001899967,0.000018243785,0.000018527102,0.000018419145,0.000020100248,0.000018781402,0.000019004872,0.000018092787,0.000019407702,0.000018404853,0.000018912482,0.000018339972,0.000019717987,0.00001827675,0.000018054438,0.000017928414,0.000018985924,0.000018227995,0.000018515744,0.000018404151,0.000020085858,0.000018771143,0.000018991337,0.000018081644,0.000019398043,0.000018412156,0.000018923956,0.000018352062,0.000019728783,0.000018296509,0.000018072438,0.000017945435,0.00001899871,0.000018250797,0.000018537581,0.000018436718,0.000020111811,0.000018809813,0.000019034274,0.000018126517,0.000019447018,0.000018459767,0.000018994924,0.00001842157,0.000019817087,0.00001838205,0.000018171031,0.000018024108,0.000019076379,0.000018310351,0.000018614395,0.000018509601,0.000020187348,0.000018865396,0.000019089553,0.000018121054,0.00001939183,0.000018374023,0.00001888806,0.000018291188,0.00001967017,0.000018141285,0.000017945162,0.000017863254,0.000019099278,0.000018336981,0.000018651213,0.00001852454,0.000020450623,0.000019153797,0.000019311883,0.000018126015,0.000019339528,0.000018433871,0.000018820525,0.000018430988,0.00001999418,0.00001866641,0.000018565323,0.000018131615,0.000019264426,0.000018170686,0.0000184389,0.000018196612,0.000019777668,0.000018628956,0.000019122352,0.000018128936,0.000019638886,0.000018694913,0.000019579551,0.000018741772,0.000020196976,0.000018800614,0.00001911568,0.000018799503,0.000020247946,0.000019215711,0.000019426923,0.00001905645,0.00002085172,0.000019503274,0.000020175741,0.000018575773,0.000020261874,0.000018900853,0.00001988215,0.000018457004,0.000020217652,0.00001852795,0.000019397583,0.000018531518,0.000020343698,0.000019341871,0.00001998747,0.000018730836,0.000019581174,0.000018786328,0.000019175748,0.000019015115,0.000019991588,0.000020530722,0.000021409107,0.000021062287,0.000022452432,0.000024505778,0.000025411891,0.000020348643,0.000015252154,0.000011121088,0.000013397047],[0.000016395863,0.000011142097,0.000010491173,0.000015442642,0.000027736489,0.000036290614,0.00003166863,0.000025559077,0.00002238801,0.00002132245,0.000021016562,0.000019438377,0.000019863273,0.000019090938,0.000019904803,0.000018912951,0.000020434636,0.000019909814,0.000020497386,0.000018699495,0.000019962668,0.000019526537,0.000020532678,0.000019293419,0.000019951685,0.00001905685,0.000019385654,0.000018193105,0.000019193458,0.00001914529,0.00002001591,0.000018879093,0.000019654139,0.000018945608,0.000019862307,0.000018265528,0.000019629786,0.000019179352,0.000020495097,0.000018917299,0.000019701578,0.000019239016,0.000019887573,0.000018472922,0.000019110028,0.000019036379,0.000019635236,0.000018630164,0.000019344527,0.000018986504,0.000019893094,0.00001819163,0.00001901312,0.000018501165,0.00001967047,0.000018427807,0.000019412331,0.000018963938,0.000019585264,0.000017936572,0.000018753213,0.00001863564,0.000019260071,0.000018210307,0.000019255187,0.000018871782,0.000019985982,0.000018230272,0.000019198384,0.000018461333,0.000019688807,0.000018344188,0.00001942898,0.0000189753,0.000019682255,0.000018013729,0.000018897537,0.000018771643,0.0000194452,0.000018267498,0.000019285399,0.000018847431,0.000019967505,0.000018233559,0.0000192443,0.000018537034,0.000019753992,0.000018364526,0.00001940289,0.000018919842,0.00001959782,0.000017946153,0.000018837009,0.000018707575,0.00001939159,0.000018255689,0.000019313024,0.000018857912,0.00001994556,0.000018190069,0.000019210891,0.000018484481,0.000019712648,0.00001833693,0.00001939514,0.000018918616,0.000019601148,0.000017935734,0.000018832447,0.000018707273,0.000019388113,0.000018246239,0.00001930319,0.000018857338,0.000019942765,0.000018181381,0.000019205012,0.000018488767,0.00001971199,0.00001834265,0.00001940539,0.000018943945,0.000019612384,0.000017940267,0.000018831728,0.00001870902,0.000019385228,0.000018250415,0.000019310832,0.00001886939,0.000019950488,0.000018187,0.0000192086,0.000018485203,0.000019700676,0.000018320603,0.000019378409,0.000018908515,0.000019585863,0.000017919407,0.00001881749,0.00001869083,0.000019370407,0.000018235663,0.000019297266,0.000018851943,0.000019938469,0.000018176266,0.000019195253,0.000018477644,0.00001970962,0.000018338329,0.000019391757,0.000018922892,0.000019607596,0.000017942646,0.000018834278,0.000018709145,0.000019394547,0.000018266226,0.000019325646,0.0000188718,0.00001996341,0.000018221477,0.00001923986,0.00001851864,0.000019755651,0.00001840501,0.000019468134,0.000018992696,0.000019647618,0.000017988647,0.000018871891,0.000018759063,0.000019431354,0.000018310315,0.000019354657,0.00001891378,0.00001996659,0.000018199544,0.000019132456,0.000018394587,0.000019617828,0.000018293194,0.00001935604,0.00001883311,0.000019407054,0.00001774784,0.000018638748,0.000018627074,0.000019324594,0.000018219234,0.00001927025,0.000018872935,0.000020006006,0.00001826121,0.000019139283,0.00001828967,0.000019646117,0.000018317704,0.00001957912,0.000019146657,0.000020228896,0.000018457637,0.000019418367,0.000019042407,0.000019635889,0.00001826403,0.00001937137,0.00001888244,0.000019885014,0.000018111776,0.000019341021,0.000018650964,0.000020367068,0.000018768458,0.000019927766,0.000019451561,0.000020234935,0.000018776424,0.000019712252,0.000019784025,0.000020298814,0.000019024419,0.00002005332,0.000019785874,0.000020344454,0.000018781026,0.000019764339,0.000018833649,0.000020347617,0.0000187739,0.000020003545,0.000019308143,0.000020242365,0.000018765755,0.000019811174,0.000019930976,0.000020637215,0.000019556652,0.000019645275,0.00001899784,0.000019094688,0.000018397868,0.00001943845,0.000019623012,0.00002072913,0.000020438574,0.00002076611,0.000021208074,0.0000256701,0.00002405767,0.00002018292,0.000014476353,0.000011138974,0.000013650754],[0.000017096794,0.000011164583,0.000011068429,0.0000147172395,0.000027968663,0.00003375911,0.00002824528,0.000024180312,0.000021135085,0.000020338945,0.000019130559,0.00001916328,0.000018355493,0.000018747705,0.000018083507,0.000018927693,0.000019015404,0.000020233701,0.000018900131,0.000019186265,0.000018764234,0.000020186884,0.000018880171,0.000019729987,0.000018588637,0.000019610534,0.000018382067,0.000018801096,0.00001837793,0.000019610943,0.00001881909,0.000019226452,0.000018536857,0.000019476882,0.000018674831,0.00001895262,0.000018650217,0.000019797651,0.000019073505,0.000019503925,0.00001889658,0.000019741845,0.000019251313,0.000018899844,0.000018855933,0.000019299474,0.000018930654,0.000018748136,0.000018745919,0.000019218882,0.000019088662,0.000018547113,0.00001846607,0.000018991428,0.0000186592,0.000018961497,0.000018829016,0.000019649415,0.00001904971,0.000018502276,0.000018456985,0.000018877454,0.000018330635,0.000018153418,0.000018347162,0.00001900411,0.00001880872,0.000018357137,0.00001828259,0.000018907596,0.000018406326,0.000018882854,0.000018691526,0.00001972346,0.000019006811,0.000018636758,0.000018549837,0.00001906423,0.000018474771,0.00001834312,0.000018420918,0.000019038867,0.000018841123,0.000018445635,0.00001838987,0.000019026651,0.000018510676,0.00001891683,0.000018700655,0.000019650202,0.000018958694,0.000018517703,0.000018466264,0.000018964607,0.000018399254,0.000018243873,0.000018390308,0.000019029918,0.0000188115,0.000018379087,0.000018331999,0.000018962617,0.000018445706,0.000018873745,0.000018674973,0.000019651101,0.0000189466,0.000018513114,0.000018455963,0.000018964407,0.000018389783,0.000018235593,0.00001837793,0.000019023875,0.00001880325,0.000018373234,0.000018324517,0.00001896598,0.000018445318,0.000018881252,0.000018685609,0.000019682742,0.000018967175,0.000018521008,0.000018456334,0.000018969817,0.000018395043,0.000018231418,0.000018382156,0.000019031586,0.00001881272,0.000018371464,0.000018323015,0.000018951987,0.000018428633,0.000018850433,0.000018660998,0.000019644282,0.000018932802,0.000018489542,0.000018436507,0.000018943041,0.000018373075,0.000018216333,0.0000183729,0.000019019993,0.000018801204,0.00001836155,0.000018317161,0.000018950324,0.000018445213,0.000018875131,0.000018682313,0.000019660773,0.00001896155,0.000018525425,0.00001846415,0.000018970739,0.000018409082,0.000018253932,0.00001840624,0.000019043715,0.000018837476,0.000018416757,0.000018378858,0.000019019848,0.000018522085,0.000018964243,0.000018759456,0.000019716219,0.00001901321,0.000018581246,0.000018526165,0.00001902745,0.000018455348,0.000018299947,0.000018440674,0.00001905945,0.000018797458,0.00001834543,0.000018273491,0.000018878498,0.000018405097,0.000018866223,0.000018639548,0.000019554023,0.00001874363,0.000018297435,0.000018253897,0.000018842416,0.000018322316,0.000018136909,0.000018305811,0.000018915387,0.000018872935,0.000018381419,0.000018324536,0.00001872914,0.00001840559,0.000018774508,0.0000187263,0.000019798805,0.000019261191,0.000018967212,0.000018739376,0.000019251202,0.000018519135,0.000018188317,0.000018268316,0.000018821476,0.000018626559,0.00001829049,0.000018396026,0.000019273595,0.000018826648,0.000019437006,0.000018983172,0.000019970055,0.00001923885,0.000019289097,0.00001904317,0.000020013087,0.000019040337,0.000018848312,0.0000187248,0.000019487898,0.000019009205,0.000018840781,0.000018436316,0.00001951747,0.00001879941,0.000019843528,0.000018778788,0.000020239915,0.000018829825,0.000019670526,0.000019004472,0.000020555444,0.000019621757,0.00001992769,0.00001927786,0.00001954118,0.000019362264,0.00001939281,0.000019853955,0.000020744199,0.00002068255,0.00002144634,0.000020704198,0.00002228026,0.000023901024,0.000026630209,0.000020879896,0.00001551018,0.000010513389,0.000014099255],[0.00001717458,0.000010965874,0.000010304125,0.000014595875,0.000025355563,0.00003519102,0.000028179014,0.000024620862,0.00002152141,0.00002078406,0.000020098658,0.000019653406,0.000019666999,0.000019310226,0.000019297522,0.000019268431,0.000020239142,0.00002021584,0.000020227759,0.000019338164,0.00002038895,0.000020355224,0.000020467909,0.00001949193,0.00002000633,0.000019587544,0.000019689369,0.000018955205,0.00001962958,0.000019810022,0.000019950678,0.000019285362,0.000019670939,0.000019580204,0.000020110258,0.000019405556,0.000020260462,0.000020119636,0.000020488336,0.000019481768,0.000019833084,0.00001989854,0.000020173875,0.000019391553,0.000019490557,0.000019727411,0.000019452193,0.000018947614,0.000019204352,0.000019582314,0.000020005282,0.000019323048,0.000019605484,0.000019635047,0.00001977035,0.000019184565,0.000019664261,0.000019732943,0.000020046991,0.000019044386,0.00001923863,0.00001932924,0.000018936611,0.000018365947,0.000018830273,0.000019192434,0.000019760417,0.000019137182,0.000019593785,0.000019507963,0.000019647203,0.00001907083,0.000019660323,0.000019679776,0.00002008419,0.000019121368,0.000019429666,0.000019474819,0.000019103541,0.000018528215,0.000018938039,0.000019242576,0.000019787214,0.0000192071,0.000019735577,0.000019614423,0.000019765865,0.000019098205,0.000019660174,0.000019653782,0.00002002116,0.000019047038,0.00001933466,0.000019394975,0.000019031677,0.000018444194,0.00001887209,0.000019226763,0.000019784082,0.000019172914,0.000019689838,0.000019565887,0.000019718156,0.00001906752,0.000019648553,0.000019648029,0.000020026584,0.000019039957,0.000019334788,0.000019392088,0.000019029645,0.000018438037,0.000018865216,0.000019218898,0.000019782232,0.000019168527,0.000019686251,0.00001956975,0.000019720977,0.000019076579,0.000019658974,0.000019670751,0.000020038811,0.000019039484,0.000019325404,0.000019390443,0.000019024801,0.000018432413,0.000018865341,0.000019227864,0.000019790119,0.000019167503,0.000019676549,0.00001955089,0.000019697838,0.000019047784,0.000019635965,0.000019642015,0.000020013678,0.000019018524,0.000019313078,0.000019369965,0.000019009856,0.000018422272,0.000018857696,0.000019216974,0.000019779478,0.000019162348,0.000019679776,0.000019559711,0.000019713512,0.000019073377,0.00001965622,0.000019656538,0.000020033021,0.000019056324,0.000019345762,0.000019398987,0.00001903224,0.000018457355,0.000018884277,0.000019244686,0.000019804354,0.000019216792,0.000019744764,0.000019645873,0.000019797764,0.000019142732,0.000019691022,0.0000196935,0.000020067382,0.000019099769,0.000019369041,0.00001941546,0.000019048382,0.000018477554,0.000018863902,0.000019182587,0.000019699773,0.000019122297,0.000019618763,0.000019529927,0.000019700958,0.000019059176,0.00001959199,0.000019563424,0.00001983384,0.000018807445,0.000019092431,0.000019189725,0.00001881898,0.000018312168,0.000018677682,0.000019048655,0.000019673565,0.000019202704,0.000019602587,0.000019337684,0.000019612404,0.000018983426,0.000019789553,0.00001978295,0.000020451735,0.00001943554,0.00001982571,0.000019721372,0.000019309766,0.000018575896,0.000018855646,0.000019135303,0.000019749301,0.000019362484,0.000020179572,0.00002010439,0.000020424195,0.000019715468,0.000020280722,0.000020240339,0.000020657553,0.000019803088,0.000020067535,0.000020243351,0.00001969151,0.000018827634,0.00001930853,0.000019612851,0.000020126448,0.000019572923,0.0000201901,0.000019995134,0.000020757736,0.00001981811,0.000020598362,0.000020183767,0.000020807283,0.00001974177,0.000020628064,0.000020538202,0.000020256502,0.000019858311,0.000019799898,0.000020134263,0.000020138794,0.000020143367,0.000020663405,0.000021565662,0.000021421667,0.000021426184,0.00002112761,0.000021556307,0.000025221236,0.000024536646,0.00002194903,0.000016041635,0.000011146721,0.000013545442],[0.000016617521,0.000010795969,0.00001062599,0.000012936702,0.000023477025,0.000033905813,0.000026941,0.000024098405,0.000020741687,0.000020687541,0.000019643006,0.000020290123,0.000018934426,0.000019249605,0.00001874599,0.000019485613,0.000019164961,0.000020258221,0.00001907618,0.00001979782,0.000019258732,0.000020547448,0.000019188077,0.000019669213,0.00001847255,0.000019659707,0.000018476516,0.000019406816,0.000018709236,0.00002015578,0.000018934175,0.000019548,0.000018418461,0.000019766523,0.000019005814,0.000019940844,0.000019355117,0.000020526473,0.000019435709,0.000019928051,0.000019000776,0.000020305899,0.000019836545,0.000020018582,0.00001941185,0.00001999136,0.000019275782,0.00001937281,0.000018975823,0.000019892675,0.000019827543,0.000019893625,0.000019510177,0.000020086547,0.000019321315,0.00001975908,0.000019140469,0.000020234878,0.000019768031,0.000019795065,0.000019343695,0.00001978995,0.000018813653,0.000018804236,0.000018452076,0.000019371868,0.000019380626,0.000019560102,0.000019380293,0.000020065678,0.000019060068,0.000019643625,0.000018924407,0.000020191486,0.000019602885,0.00001983787,0.000019397285,0.000020000321,0.000018906892,0.00001898232,0.000018520901,0.000019496227,0.000019434947,0.000019671239,0.00001946572,0.000020165045,0.0000191544,0.000019678575,0.000018947721,0.000020169336,0.000019588982,0.000019777912,0.00001933759,0.000019902107,0.00001883234,0.00001888496,0.00001845283,0.000019422941,0.000019394474,0.00001961388,0.00001940539,0.0000201158,0.000019098841,0.00001963503,0.000018911292,0.00002015063,0.000019554975,0.00001974401,0.000019306874,0.00001988251,0.000018806782,0.000018867302,0.000018433186,0.00001940726,0.000019378149,0.000019605372,0.000019397767,0.00002011816,0.00001909427,0.000019644149,0.000018922765,0.000020161393,0.00001954843,0.000019726902,0.000019293273,0.000019869034,0.000018803015,0.000018859999,0.000018436807,0.000019416848,0.00001939268,0.000019605633,0.000019391515,0.000020096972,0.000019084986,0.000019620073,0.000018899575,0.000020136375,0.000019541478,0.000019721465,0.00001928823,0.000019859977,0.000018791543,0.0000188502,0.000018427121,0.00001941098,0.000019382807,0.000019597652,0.00001939366,0.000020113921,0.000019104087,0.000019645275,0.00001892466,0.000020166028,0.000019578578,0.000019780233,0.000019334511,0.000019910156,0.000018835985,0.00001890244,0.000018467708,0.000019455105,0.00001944483,0.000019693369,0.000019496914,0.000020221663,0.000019199519,0.00001972408,0.000018982737,0.000020220275,0.000019630741,0.000019825728,0.000019382253,0.000019942574,0.000018864046,0.000018895698,0.000018417142,0.000019350116,0.000019324116,0.000019594101,0.000019418607,0.00002009812,0.000019101974,0.000019594045,0.000018845165,0.00002001366,0.000019360565,0.000019475228,0.000019064975,0.000019668389,0.000018670895,0.000018710289,0.000018329569,0.000019297413,0.00001937146,0.00001960369,0.000019350764,0.000019995763,0.000019159334,0.000019711877,0.000019073905,0.000020506868,0.000019986537,0.000020262858,0.0000196592,0.000020263826,0.000019076633,0.000018933237,0.000018484236,0.000019289188,0.000019471365,0.00001983193,0.000019726356,0.000020551388,0.000019591167,0.000020155068,0.000019475841,0.000020763597,0.000020529507,0.000021014435,0.000020247811,0.000021038237,0.000019576431,0.000019359697,0.000018901701,0.000019915093,0.000019560886,0.000020078964,0.00001944967,0.000020775104,0.000019288324,0.000020230787,0.000018826091,0.000020515241,0.00001925414,0.000020362504,0.000019560683,0.00002100035,0.0000194855,0.000019922729,0.00001929386,0.00002019684,0.000020423533,0.000020595178,0.000020499536,0.000021254844,0.000021492386,0.000021901253,0.000021014277,0.000021253283,0.000023283912,0.000025108728,0.00002166285,0.000015826648,0.000010940543,0.000013595008],[0.000016878254,0.000010299734,0.000010103815,0.000012330786,0.000023608884,0.00003689054,0.000030672607,0.000024977615,0.000021842352,0.00002113726,0.000020990341,0.000019932859,0.000019865282,0.000019301646,0.000019505747,0.000018890221,0.000019951896,0.00001978257,0.000020462172,0.00001902099,0.000020272639,0.000019955587,0.000020317231,0.000019062449,0.000019679946,0.000018877867,0.000019507497,0.0000184035,0.000019596026,0.00001938826,0.000019926549,0.000018735946,0.000019480354,0.000019022751,0.000020137048,0.000019018144,0.000020476304,0.000020065794,0.000020739353,0.000019341796,0.000020050318,0.000019772518,0.000020744674,0.000019548932,0.000020070655,0.000019684394,0.000019954427,0.000019010273,0.000019503907,0.000019420128,0.00002038718,0.000019451061,0.000020177204,0.000019809153,0.000020267418,0.000019260844,0.000019905068,0.000019701129,0.000020494474,0.000019319305,0.000019806148,0.000019478719,0.000019491114,0.0000183898,0.000018832572,0.000018898114,0.000019922463,0.00001911566,0.000020021142,0.000019815388,0.000020285192,0.000019065175,0.000019790969,0.000019621983,0.000020412881,0.000019246576,0.00001983594,0.000019619381,0.000019655374,0.000018491393,0.000018974159,0.000019034618,0.000020082696,0.00001918976,0.000020126181,0.00001993725,0.000020414634,0.00001914874,0.000019839023,0.000019638532,0.000020400503,0.000019202687,0.000019781666,0.000019547404,0.000019577328,0.000018421868,0.00001889714,0.000018963286,0.000020003145,0.000019126328,0.000020066826,0.000019880747,0.000020371186,0.000019103121,0.000019805733,0.00001961665,0.000020376801,0.000019171835,0.00001975842,0.000019533596,0.000019566036,0.000018405695,0.000018879542,0.000018952638,0.000019996392,0.000019121277,0.000020058924,0.000019879837,0.00002036668,0.000019103978,0.000019796935,0.000019611767,0.000020360098,0.000019162495,0.000019742654,0.000019518196,0.00001955326,0.00001841075,0.000018888204,0.000018966704,0.00002000719,0.00001912733,0.000020051464,0.000019869905,0.0000203647,0.000019097075,0.000019790214,0.000019606176,0.000020363903,0.000019157069,0.00001973823,0.000019518997,0.000019554078,0.000018397746,0.000018878516,0.000018962237,0.00002000507,0.00001911721,0.000020054373,0.000019884841,0.00002038335,0.000019116991,0.00001981777,0.000019638119,0.000020403131,0.000019209005,0.000019792007,0.00001956014,0.000019591336,0.000018435963,0.000018916759,0.000019001338,0.000020059135,0.000019218149,0.000020152647,0.000019960537,0.000020441184,0.000019173534,0.00001985034,0.00001964857,0.000020405038,0.000019234467,0.000019811967,0.000019563537,0.000019545372,0.000018369958,0.000018822768,0.000018874123,0.000019918398,0.000019113453,0.000020043972,0.000019822475,0.000020291052,0.000019047075,0.000019691774,0.000019478553,0.000020143558,0.000018962925,0.00001943254,0.000019249495,0.000019300302,0.000018229854,0.000018678358,0.000018809347,0.000019921019,0.000019112087,0.000019999978,0.00001973872,0.000020525024,0.000019272382,0.00002018908,0.000020155338,0.000021103886,0.000019807414,0.000020386753,0.000019973979,0.000019819017,0.000018572051,0.000019075123,0.00001915221,0.000020262145,0.000019436264,0.000020631293,0.000020452164,0.000021110509,0.000019781231,0.000020543059,0.000020549447,0.0000217861,0.000020728714,0.000021002475,0.0000205073,0.000020138008,0.000018992334,0.00001935859,0.000019445868,0.000020251056,0.000019297082,0.00002026083,0.000019954465,0.000020838082,0.000019134008,0.000020040397,0.000019791894,0.00002060229,0.000019329018,0.000020181746,0.000020041065,0.000019802674,0.000019057505,0.000019324925,0.000019678311,0.000020356756,0.00001997198,0.00002060958,0.00002043257,0.000020947567,0.000020631192,0.000019987565,0.000020165144,0.000023191635,0.00002339413,0.000023470575,0.000015797727,0.000011962121,0.000012366092],[0.000017757693,0.000010980158,0.000010819117,0.000013210534,0.000024803861,0.000034699482,0.000028118106,0.000023474093,0.000020243408,0.000020215262,0.000019282163,0.000019602025,0.000018858937,0.000019201732,0.0000185692,0.000019041972,0.000018941904,0.000020025858,0.000018891393,0.000019097439,0.000018925059,0.000020104753,0.000018991917,0.000019502288,0.000018403114,0.000019507515,0.00001809648,0.000018826879,0.000018272935,0.000019956464,0.00001862949,0.000019452638,0.00001840208,0.000020145288,0.000019004492,0.000020001162,0.00001929355,0.000020930136,0.000019505562,0.00002035606,0.000019232595,0.000020691092,0.000019605597,0.000020066329,0.000019140176,0.000020185307,0.000018956704,0.000019715957,0.000018958746,0.00002045308,0.000019551617,0.000020144846,0.000019346371,0.000020571762,0.000019332098,0.000020211715,0.000019349029,0.000020855141,0.000019483383,0.000019922843,0.000018908155,0.00002009908,0.000018558401,0.000019161105,0.000018449717,0.000020020856,0.000019035399,0.000019726958,0.00001910724,0.000020615755,0.000019195308,0.000020073621,0.000019144758,0.000020861824,0.000019399931,0.00001996404,0.000018877488,0.000020314385,0.000018649933,0.00001934805,0.000018568493,0.000020271364,0.00001925181,0.000019996298,0.000019286557,0.000020851361,0.000019372237,0.00002021802,0.000019225774,0.00002088854,0.00001940922,0.0000199097,0.000018814262,0.000020226678,0.000018572726,0.000019241126,0.000018477327,0.000020168316,0.000019145707,0.000019862706,0.000019187108,0.00002076522,0.000019302584,0.00002015576,0.000019176352,0.000020867732,0.000019374122,0.000019877942,0.000018791383,0.000020221027,0.000018561215,0.000019231293,0.000018465982,0.00002016549,0.00001913689,0.000019857991,0.0000191814,0.000020762725,0.000019284405,0.000020141695,0.000019171835,0.000020882764,0.000019390258,0.000019893321,0.000018797744,0.000020214722,0.000018562969,0.000019243767,0.000018486633,0.000020184787,0.000019152427,0.0000198621,0.000019181984,0.000020756766,0.000019298332,0.000020155587,0.000019174633,0.000020860192,0.000019365016,0.000019867233,0.000018779521,0.000020211195,0.000018553677,0.000019229496,0.000018469802,0.000020183015,0.000019153615,0.000019866418,0.000019187053,0.000020779997,0.000019319841,0.000020183921,0.00001920252,0.000020900077,0.000019406685,0.000019927993,0.000018827814,0.000020259266,0.000018589346,0.00001927275,0.000018514775,0.000020233005,0.000019226673,0.00001996939,0.000019277144,0.000020853888,0.000019384212,0.000020221163,0.000019211147,0.000020878999,0.000019410923,0.000019936318,0.000018809096,0.000020192334,0.000018504412,0.000019165293,0.00001837637,0.000020087697,0.000019077488,0.000019844058,0.000019141144,0.000020682173,0.000019247678,0.000020100842,0.000019132456,0.0000207631,0.000019235164,0.000019667845,0.000018567784,0.000019978075,0.000018421235,0.000019078088,0.000018334202,0.000020158912,0.0000192414,0.000020005911,0.000019202043,0.000020751302,0.000019359031,0.000020458288,0.000019554527,0.000021488739,0.000020072588,0.000020626943,0.00001934995,0.00002061953,0.000018843584,0.00001928641,0.000018629135,0.000020098447,0.000019406518,0.000020076435,0.000019652376,0.000021225575,0.000020060876,0.000020764011,0.00001985191,0.000021297394,0.000020382517,0.000020845635,0.000019848145,0.000020711861,0.000019094927,0.000019173774,0.000018761604,0.000020002095,0.000019064502,0.00001944941,0.00001899565,0.00002042957,0.00001914569,0.000020015566,0.0000189728,0.000020766964,0.000019075851,0.000019848068,0.000018735482,0.000020493711,0.000019032404,0.000019771407,0.000018940838,0.000020420552,0.000020023643,0.00002072247,0.000020397856,0.000021052489,0.000021010268,0.000021962955,0.000021082966,0.000021785621,0.00002258896,0.000025571828,0.000024734414,0.000017271155,0.000011342215,0.000012019273],[0.000016717071,0.000010924738,9.618211e-6,0.000013909545,0.000023862809,0.00003610576,0.000029203085,0.000023866905,0.000020874977,0.00002044251,0.000020030862,0.000019629018,0.000019856987,0.000019634392,0.00001974936,0.000019527952,0.000020199788,0.000020085474,0.000020023834,0.000019152427,0.0000203782,0.000020260095,0.000020703468,0.000019700394,0.000020244162,0.000019738663,0.000019728086,0.000018815572,0.00001989004,0.000019892448,0.000020548741,0.000019597688,0.000020456473,0.00002019817,0.000020920976,0.00001982843,0.000020981877,0.000020677144,0.000021312102,0.000020193085,0.000020979434,0.000020565662,0.00002088167,0.000019800069,0.000020341407,0.000020143672,0.000020513498,0.00001961867,0.000020574487,0.000020377927,0.0000208745,0.000020012474,0.00002075647,0.000020526042,0.000020874977,0.000019832345,0.000020777163,0.000020407666,0.000020542786,0.000019460173,0.000020047719,0.000019856836,0.000020107265,0.000018989636,0.000019958425,0.000019774405,0.000020340767,0.000019460671,0.000020425265,0.000020387648,0.000020823303,0.000019642688,0.000020650601,0.000020314208,0.000020590702,0.000019458352,0.000020115513,0.000019983849,0.000020285828,0.000019162075,0.0000201652,0.000020047355,0.000020674523,0.000019763753,0.000020723577,0.000020642292,0.00002103928,0.000019779874,0.000020750887,0.000020397876,0.000020644655,0.000019462268,0.000020078349,0.00001993362,0.000020216881,0.000019059522,0.000020065754,0.000019945599,0.000020560072,0.00001962636,0.000020615242,0.000020572881,0.000020995087,0.000019727466,0.000020714428,0.000020374178,0.000020625133,0.000019432391,0.000020061774,0.00001993244,0.000020221914,0.000019052217,0.000020062158,0.000019944951,0.00002055768,0.000019611767,0.000020603646,0.000020572526,0.000020977375,0.000019713756,0.000020702933,0.00002039527,0.00002064741,0.000019454028,0.000020062711,0.000019929912,0.00002021397,0.000019062521,0.000020072395,0.000019959489,0.00002056515,0.00001961794,0.000020596928,0.000020568172,0.000020992844,0.000019727071,0.000020708956,0.00002036771,0.000020613925,0.000019416293,0.000020047755,0.00001992368,0.000020214047,0.000019046003,0.000020063573,0.000019960422,0.00002057435,0.000019623012,0.000020616953,0.000020589898,0.00002101526,0.000019749246,0.000020741036,0.000020403655,0.00002065078,0.000019463288,0.000020092371,0.000019964496,0.000020245841,0.000019097146,0.000020111791,0.000019996794,0.000020611034,0.000019702931,0.000020683081,0.000020625035,0.000021001415,0.000019745932,0.000020717509,0.000020370508,0.000020604373,0.00001941161,0.000020000169,0.000019826843,0.000020096588,0.000018947885,0.000019970817,0.000019890987,0.00002047517,0.000019514939,0.000020468475,0.00002044448,0.00002087699,0.000019690271,0.000020624388,0.000020327425,0.000020456493,0.0000192321,0.000019824649,0.000019729987,0.000020040818,0.000018910949,0.000019925163,0.000019968362,0.000020676416,0.000019752466,0.000020697169,0.000020466525,0.000021096883,0.000019952924,0.00002121147,0.000021023176,0.000021435215,0.000020181938,0.00002066845,0.00002038823,0.000020400601,0.00001925315,0.000020122976,0.000019983563,0.00002067888,0.000019855566,0.0000209901,0.000021078986,0.000021553184,0.000020524047,0.000021187634,0.000020974494,0.000020927082,0.000020068874,0.000020398384,0.000020218482,0.000020057643,0.000018966324,0.000020018355,0.00001994944,0.000020323374,0.000019195088,0.000020169182,0.000020024636,0.000020885034,0.000019697463,0.000020781721,0.000020417845,0.000020642883,0.00001933619,0.000020011597,0.000019948548,0.000020106805,0.000019529778,0.0000198231,0.000019678464,0.00001965052,0.00002002794,0.000020222127,0.000020860032,0.000021321923,0.000021642654,0.000021206657,0.00002155904,0.00002348513,0.000024072655,0.000024796931,0.0000175433,0.000011660998,0.000012002733],[0.000015698859,0.000011592762,9.7971515e-6,0.00001336043,0.000024347955,0.00003406196,0.000028368511,0.00002448111,0.000020553995,0.000020579768,0.000019378685,0.00001990127,0.000018849229,0.00001951293,0.00001907496,0.00002007452,0.000019574398,0.000020409709,0.000019280598,0.000019542316,0.000019292609,0.000020267187,0.000019251496,0.000020020358,0.000018792725,0.000019775764,0.000018359922,0.000019044477,0.000018325025,0.000019854562,0.000018864315,0.000020017189,0.000018666391,0.000020198246,0.000019074214,0.000019954236,0.000019141364,0.000020559464,0.000019436562,0.00002035633,0.000019232557,0.000020520289,0.000019414552,0.000019761963,0.00001895316,0.00002016418,0.000019225188,0.000019981886,0.000019062503,0.000020419831,0.00001955391,0.000020276546,0.000019506622,0.000020469315,0.000019366824,0.00001998808,0.00001915992,0.000020403053,0.000019097366,0.000019523186,0.000018722014,0.000019953113,0.000018727318,0.000019335526,0.00001845885,0.00001986153,0.000018879973,0.000019629357,0.00001902168,0.000020260848,0.00001907545,0.000019755387,0.000018902476,0.000020289039,0.000018946223,0.000019495501,0.000018675295,0.000020073621,0.00001879373,0.000019477977,0.000018570176,0.00002009511,0.00001911668,0.000019967028,0.000019317647,0.000020572388,0.000019290163,0.000019933903,0.000019033312,0.000020393132,0.000019087078,0.00001958618,0.000018704257,0.00002002771,0.000018742021,0.000019396046,0.000018490724,0.000019977675,0.000018995901,0.000019829264,0.000019205634,0.000020471423,0.000019211624,0.00001986407,0.000018973687,0.000020352738,0.000019040392,0.000019541496,0.000018661816,0.000020009364,0.00001872062,0.000019376192,0.0000184707,0.000019969866,0.000018973291,0.000019803712,0.000019180156,0.000020467012,0.000019194702,0.000019840745,0.000018936611,0.000020341038,0.000019057741,0.000019544515,0.000018641023,0.000019983487,0.000018705025,0.000019373216,0.000018478559,0.000019982306,0.00001898127,0.00001980407,0.000019178053,0.000020463889,0.000019202906,0.000019856836,0.000018962797,0.00002034424,0.000019023857,0.000019521603,0.000018643175,0.000020000589,0.000018707147,0.000019370407,0.000018470102,0.000019981371,0.000018987028,0.000019808851,0.000019190073,0.000020482086,0.000019225938,0.000019884292,0.000018999453,0.000020390467,0.00001906603,0.000019573185,0.00001868707,0.000020059537,0.00001877218,0.000019446277,0.000018532439,0.00002004313,0.00001905327,0.000019900835,0.00001924421,0.000020504522,0.000019239658,0.000019921437,0.000019029174,0.000020384363,0.000019012758,0.000019488845,0.00001857765,0.000019891368,0.000018593177,0.000019308292,0.000018423449,0.000019917941,0.000018860448,0.00001966023,0.000019007717,0.00002031568,0.00001911526,0.000019834408,0.000018937135,0.000020335045,0.000018957953,0.000019376874,0.00001848711,0.000019873694,0.000018625475,0.000019284571,0.000018405748,0.000020029123,0.000019000921,0.000019882322,0.000018965167,0.000020406982,0.000019114748,0.000020177704,0.00001923997,0.000021185897,0.000019639823,0.000020392703,0.000019132074,0.000020606672,0.00001894212,0.000019627316,0.000018608538,0.000020069258,0.000019190584,0.00002005573,0.000019404797,0.000020826878,0.000019882567,0.000020782494,0.000019829698,0.000021153535,0.000019821171,0.000020208574,0.000019354104,0.000020479174,0.000019215217,0.000019632877,0.000019056177,0.000020248564,0.000019146346,0.000019469322,0.000018846731,0.000019941435,0.000018994471,0.000019927784,0.000019093177,0.000020556603,0.000019029174,0.000019615658,0.000018491217,0.000019833424,0.000018890834,0.000019815861,0.000018577597,0.00001952436,0.000018792673,0.000019695284,0.000019443252,0.000020622772,0.000021111153,0.00002223015,0.000021429432,0.00002232273,0.000023842518,0.00002568462,0.000023978053,0.000016353188,0.000011453039,0.000012992017],[0.00001577916,0.000011586495,9.370772e-6,0.000013261504,0.000025964015,0.00003712509,0.00003270816,0.000025591638,0.000022318687,0.000021123338,0.000020901953,0.000019553632,0.000019817844,0.000019317667,0.000019956178,0.000019227571,0.000020501862,0.000020263478,0.000020661002,0.000019219799,0.000020306403,0.000019953894,0.0000206006,0.000019276022,0.000019909094,0.00001918738,0.000019462119,0.00001855081,0.000019394012,0.000019077179,0.000020146113,0.000018897717,0.000019793328,0.00001907756,0.00002014014,0.0000186481,0.000020156856,0.000019850359,0.000021044398,0.000019284938,0.000020275616,0.0000198036,0.000020426356,0.000019070503,0.000019858217,0.000019762301,0.000020392665,0.000019094397,0.000019746027,0.000019376967,0.000020282752,0.000019240484,0.000020123896,0.000019787534,0.000020508121,0.000018872,0.000019740715,0.000019320392,0.000019946454,0.000018620698,0.000019496114,0.000019379331,0.000019887555,0.000018456105,0.000019177814,0.000018834871,0.000019750696,0.00001856674,0.000019661506,0.000019476825,0.000020301932,0.000018589522,0.00001948578,0.000019108807,0.000019810172,0.000018460365,0.00001944826,0.00001941433,0.00002003155,0.00001850547,0.000019294615,0.000018957338,0.00002000263,0.000018803143,0.00001996145,0.000019750376,0.000020578216,0.000018791847,0.000019655225,0.000019252102,0.000019967008,0.000018616152,0.000019510437,0.00001938351,0.000019992733,0.000018481433,0.000019239218,0.000018874789,0.000019902182,0.00001870895,0.000019868541,0.000019647654,0.000020490077,0.000018718443,0.000019605875,0.000019205323,0.000019930843,0.000018565092,0.00001946639,0.0000193427,0.000019968058,0.000018450755,0.000019214043,0.000018856366,0.000019889716,0.000018678767,0.000019838493,0.000019628887,0.000020453823,0.000018683417,0.000019542931,0.000019175382,0.000019927766,0.000018563855,0.000019434188,0.000019308476,0.000019945903,0.000018441273,0.000019223207,0.000018868093,0.000019888388,0.000018682633,0.000019837207,0.000019632895,0.00002047115,0.000018703418,0.00001958786,0.000019190804,0.00001991196,0.00001854294,0.000019445144,0.000019330235,0.000019957872,0.00001844087,0.000019214758,0.000018868524,0.000019893814,0.000018684075,0.000019838228,0.000019646379,0.000020500613,0.00001873105,0.000019623947,0.000019232211,0.000019949632,0.000018590623,0.000019495761,0.00001938741,0.000020011674,0.000018502911,0.000019272493,0.000018916793,0.000019921077,0.000018713536,0.000019863235,0.000019668745,0.000020514008,0.00001877433,0.00001964046,0.000019199262,0.000019859732,0.000018492556,0.000019357001,0.00001922385,0.000019880728,0.000018414034,0.000019159113,0.000018775458,0.000019768466,0.000018529363,0.000019648009,0.00001946648,0.000020376432,0.000018678447,0.000019572604,0.000019206496,0.000019876708,0.0000185335,0.000019279056,0.00001918978,0.000019810399,0.00001836099,0.000019083895,0.000018807248,0.000019807792,0.000018578447,0.00001971447,0.000019450876,0.000020516354,0.000018809076,0.000020066484,0.000019792496,0.000020678053,0.000019161707,0.00002009927,0.000019935576,0.000020339003,0.000018672961,0.000019466259,0.000019236062,0.000020172049,0.000018974539,0.000020213798,0.000020108186,0.000021298287,0.000019709958,0.000020635147,0.000020194087,0.00002069784,0.000019571056,0.000020161624,0.000019971809,0.000020201733,0.000019147827,0.000019711762,0.000019400875,0.000019913516,0.00001876622,0.000019702837,0.000019180265,0.000020470741,0.0000189019,0.000020246845,0.000019664074,0.000020381913,0.000018869443,0.000019560626,0.000019372124,0.000020026526,0.000019024437,0.000019283782,0.00001872346,0.000019189158,0.000018781062,0.000019826464,0.000020316475,0.000021195638,0.000021167984,0.000020975354,0.000021055359,0.00002456596,0.00002462542,0.000022368164,0.000015284626,0.0000113406895,0.000013907052],[0.00001628794,0.0000121691755,0.000010906364,0.000014558077,0.000029357865,0.000033205517,0.000027740722,0.000023736638,0.000020792526,0.000020289484,0.00001921692,0.000019448242,0.00001858745,0.000019162733,0.00001851502,0.00001930299,0.000019484367,0.00002060624,0.000019476138,0.000019642688,0.000019406445,0.000020290297,0.000018864263,0.000019109899,0.000018325443,0.00001911814,0.000018326353,0.000018649382,0.000018106683,0.000019263636,0.000018105698,0.000018783623,0.000018013952,0.000019402984,0.000018569537,0.000019446368,0.000019164741,0.000020720217,0.00001934768,0.000019725228,0.000019045005,0.000020072817,0.000019319878,0.000019239547,0.000018910085,0.000019936033,0.000018723817,0.00001900683,0.000018416158,0.00001958704,0.000019067922,0.000019686422,0.00001941944,0.000020477613,0.00001899094,0.000019124942,0.000018705043,0.00001960496,0.000018893608,0.000018924535,0.000018689441,0.000019811552,0.0000182334,0.000018508701,0.00001792768,0.000019159992,0.000018501094,0.000019181418,0.00001899525,0.000020291962,0.000018608856,0.000018830273,0.000018374076,0.00001936555,0.00001861901,0.000018770732,0.00001852811,0.000019825897,0.000018269518,0.000018624854,0.000017984119,0.000019333884,0.000018700226,0.000019474763,0.000019244264,0.000020582771,0.0000189072,0.000019106401,0.000018583567,0.000019530375,0.00001880124,0.000018891484,0.000018620023,0.000019810172,0.000018247665,0.00001856952,0.000017945435,0.000019240704,0.000018606905,0.000019350135,0.00001913775,0.00002046303,0.000018781402,0.000018989056,0.000018515973,0.000019487676,0.0000187486,0.000018839864,0.000018561499,0.00001977088,0.000018199265,0.000018529647,0.000017904546,0.000019224179,0.00001857556,0.000019321942,0.000019095436,0.00002044493,0.00001874347,0.000018949402,0.000018469997,0.000019458705,0.000018743398,0.00001884071,0.000018550174,0.000019764037,0.00001819982,0.000018535568,0.000017914623,0.000019243951,0.00001858674,0.000019336541,0.000019109919,0.000020454894,0.000018764234,0.000018977453,0.000018500372,0.000019478497,0.000018726587,0.000018824006,0.000018544213,0.000019762867,0.000018191873,0.000018533092,0.000017913273,0.000019245677,0.00001859197,0.000019343512,0.000019129337,0.00002047107,0.000018795306,0.000019008878,0.00001853145,0.00001951803,0.000018796005,0.000018906188,0.000018612816,0.000019816995,0.000018241315,0.000018580342,0.000017959508,0.000019271023,0.000018621657,0.000019391016,0.000019186888,0.000020534952,0.000018838338,0.000019036923,0.000018517616,0.000019447149,0.000018665216,0.000018750316,0.000018451212,0.000019682142,0.00001812745,0.000018469522,0.000017809249,0.000019119216,0.000018442399,0.000019178675,0.000018960935,0.00002032413,0.00001873348,0.000019024765,0.000018553623,0.000019549623,0.000018736731,0.000018818766,0.000018437651,0.000019583938,0.000018064511,0.000018419285,0.000017809385,0.000019182517,0.000018520637,0.000019435838,0.000018993005,0.000020464338,0.000018701743,0.000019318808,0.000018689208,0.000020261063,0.000019128462,0.000019619381,0.000019061104,0.000020507532,0.000018583356,0.000018886223,0.000018256333,0.000019732133,0.000019009458,0.000019760435,0.000019561148,0.000020997248,0.000019694384,0.000020036596,0.00001944544,0.000020376023,0.000019609766,0.000019597634,0.000019127914,0.000020102472,0.000018790235,0.000019025072,0.000018501923,0.000019332392,0.000018742576,0.000018889248,0.000018733355,0.000019540172,0.000018797547,0.000019023693,0.000018648154,0.000019597372,0.000018963829,0.000018945499,0.000018575045,0.00001956501,0.000018835015,0.00001901546,0.000018374618,0.000018938834,0.000018940893,0.00001946379,0.000020042098,0.00002136322,0.000021462442,0.000022248156,0.000021429227,0.000022363194,0.00002425403,0.000026808728,0.000022618256,0.000015786356,0.000010592541,0.000014236625],[0.000016154534,0.000011984272,0.000010102939,0.000015897958,0.000028075234,0.000032295313,0.000026759864,0.000023376357,0.000021030815,0.000020374859,0.000020249743,0.000019754294,0.000019941737,0.000019506751,0.000019453564,0.000019274403,0.00002021561,0.000020395679,0.000020444442,0.00001977346,0.000020638474,0.000020562562,0.00002008831,0.000019111632,0.00001952542,0.00001948368,0.000019856172,0.000019281795,0.000019846479,0.000019724024,0.000019771218,0.000018776263,0.00001946043,0.000019312289,0.000020485875,0.000019711424,0.000021058633,0.000020789928,0.000020995187,0.000019664543,0.00002043571,0.000020277164,0.00002084498,0.000019879684,0.000020408579,0.000020298039,0.000020012933,0.00001898232,0.000019599465,0.000019613208,0.000020420395,0.00002006323,0.000020969293,0.000020688092,0.000020259537,0.000019189432,0.000019789024,0.000019845553,0.000020421974,0.00001957621,0.00002035767,0.00002007879,0.000019724852,0.000018593513,0.000019191244,0.00001924307,0.000020077832,0.000019546249,0.00002060054,0.000020402818,0.000019991245,0.000018808198,0.000019509207,0.000019611562,0.000020268464,0.00001944112,0.00002029291,0.000020003832,0.000019797331,0.000018687979,0.000019317906,0.000019338291,0.000020283449,0.000019755933,0.00002085488,0.000020630012,0.000020280819,0.00001909294,0.000019727919,0.000019737892,0.000020354117,0.000019531695,0.000020361185,0.000020069754,0.000019814235,0.00001865091,0.00001927308,0.000019298463,0.00002021054,0.000019650202,0.000020755873,0.000020533756,0.000020178435,0.000018966071,0.00001964696,0.000019701596,0.00002033396,0.000019489813,0.00002033301,0.000020032658,0.000019790838,0.000018602628,0.000019240373,0.000019269606,0.000020197822,0.000019610534,0.000020704434,0.000020499907,0.000020130212,0.000018920258,0.00001959072,0.000019700694,0.000020352738,0.000019508334,0.000020333631,0.000020037856,0.000019789044,0.000018595605,0.000019240244,0.00001927536,0.0000202132,0.000019633624,0.00002073769,0.000020526453,0.000020170934,0.000018955114,0.000019634579,0.000019689443,0.000020318143,0.000019469582,0.000020322406,0.00002002326,0.000019783647,0.000018608484,0.00001924865,0.000019281335,0.000020218231,0.000019655356,0.000020759675,0.000020544667,0.000020189984,0.000018992498,0.000019684074,0.000019761039,0.000020419773,0.000019570049,0.000020365515,0.000020055233,0.000019793442,0.000018619845,0.000019250083,0.000019315714,0.000020258396,0.000019706107,0.000020803851,0.0000206006,0.000020200096,0.000018949348,0.000019594774,0.000019638193,0.00002023837,0.000019405908,0.00002025909,0.000019966132,0.00001969352,0.000018515128,0.00001913014,0.000019153087,0.000020070349,0.000019505636,0.000020613257,0.000020442569,0.000020166566,0.00001903313,0.000019707986,0.000019746063,0.000020316747,0.000019437266,0.000020165682,0.000019889414,0.000019639841,0.000018515973,0.000019086387,0.000019225738,0.000020356796,0.000019794046,0.000020844423,0.000020434247,0.00002033142,0.000019095909,0.000020017897,0.000019954941,0.000020801193,0.000019843621,0.000020987198,0.000020497757,0.000020176261,0.00001890089,0.000019674428,0.000019656762,0.000020604393,0.000020168336,0.000021419502,0.00002113704,0.000021022573,0.000019966896,0.000020599127,0.000020577922,0.00002090534,0.000020108091,0.0000204994,0.0000203314,0.00001989444,0.000018956938,0.00001926154,0.000019269533,0.000019820094,0.000019418978,0.000020248255,0.000020037436,0.000020308553,0.000019278319,0.000019989891,0.000020099174,0.000020864372,0.00001994676,0.000020286467,0.00002055125,0.000020153338,0.000019641995,0.00001939022,0.000019875513,0.000020255093,0.00002042581,0.000021173537,0.000022041955,0.000022084183,0.000022410119,0.00002161044,0.000021968484,0.000025259867,0.000025098076,0.000022837296,0.000016485892,0.000011001162,0.0000138526875],[0.000015948572,0.0000114422855,0.000011097167,0.000014742792,0.0000271246,0.000031479147,0.000024476722,0.000022338043,0.000019183852,0.00001998663,0.000019200177,0.000020245494,0.00001871068,0.000019277933,0.000018384995,0.000019192506,0.000018887213,0.000020297846,0.00001941122,0.000020288711,0.000019781139,0.000020673557,0.000019312914,0.000019221447,0.000018664576,0.000019367433,0.000019198786,0.000019741732,0.000019209592,0.000019884179,0.000018723318,0.000018856259,0.000017967748,0.000018981234,0.00001861349,0.00001963795,0.000019388906,0.000020444286,0.000019274587,0.000019427536,0.00001908242,0.000020055748,0.000020114801,0.000020305879,0.000019713174,0.000020216341,0.000018903069,0.00001894371,0.000018253184,0.000019250137,0.000019169183,0.000020137297,0.000019919064,0.000020694013,0.00001915778,0.000019263727,0.000018883342,0.000019781364,0.000019760548,0.000019914352,0.000019634448,0.000020197149,0.000018658828,0.00001874372,0.000017873275,0.000018996554,0.000018659484,0.000019554285,0.000019421015,0.000020377056,0.000018742183,0.000018862283,0.000018510536,0.000019549232,0.00001952771,0.000019762001,0.000019506882,0.000020122803,0.000018575098,0.000018796472,0.000017895856,0.000019098914,0.000018733033,0.000019733094,0.000019601895,0.000020629108,0.000018997769,0.000019136416,0.000018723174,0.000019698366,0.000019624133,0.000019840953,0.000019616706,0.000020223728,0.000018670522,0.000018792618,0.000017880435,0.000019056668,0.00001868732,0.00001964151,0.000019497453,0.000020507512,0.000018881216,0.000019012667,0.000018619525,0.00001961822,0.000019570309,0.000019789743,0.000019562882,0.000020182593,0.00001862345,0.000018750425,0.000017826325,0.000019023984,0.000018634697,0.000019571653,0.000019410758,0.000020438592,0.000018824834,0.000018964172,0.000018597131,0.000019634992,0.000019627092,0.000019834728,0.000019588497,0.000020187443,0.000018620716,0.00001873616,0.00001781482,0.000019015495,0.00001864179,0.00001960139,0.000019463678,0.000020494454,0.00001886948,0.000018997316,0.00001860107,0.000019597408,0.000019546287,0.000019763998,0.000019543435,0.00002016743,0.000018616509,0.000018746901,0.000017827177,0.000019025889,0.000018659166,0.00001962739,0.000019491912,0.000020524458,0.000018913854,0.000019069448,0.000018695002,0.000019710918,0.000019660605,0.000019880785,0.000019615527,0.00002021507,0.000018655537,0.000018787277,0.0000178796,0.000019078343,0.00001872646,0.000019698366,0.000019559711,0.000020536536,0.00001886797,0.00001896079,0.000018564579,0.000019532403,0.000019508483,0.000019741658,0.00001949894,0.000020071746,0.000018522085,0.00001864899,0.000017724735,0.000018898907,0.000018536028,0.000019495576,0.00001938595,0.0000204218,0.000018925763,0.000019100025,0.000018682313,0.000019649638,0.00001957255,0.000019784176,0.000019512334,0.000020130596,0.000018617644,0.000018692435,0.000017771483,0.000019021934,0.000018683115,0.000019674015,0.000019289942,0.00002036402,0.000018660268,0.000018964172,0.000018354986,0.000019581996,0.000019142695,0.000019736422,0.00001941035,0.000020330468,0.000018537477,0.000018720748,0.000017899236,0.00001923907,0.000018958892,0.000020163874,0.000019869887,0.000020976035,0.000019639749,0.00001999136,0.00001950904,0.000020592684,0.000020475447,0.000020889895,0.000020110296,0.00002083232,0.000019307334,0.000019445626,0.000018391835,0.000019227515,0.000018936178,0.00001966578,0.000019396344,0.000020150208,0.000019274697,0.000019600326,0.000019308292,0.000020383974,0.000020657159,0.000021226891,0.000020870979,0.000021476855,0.000020378999,0.000020187656,0.000019449113,0.000019820169,0.000020692532,0.000020816413,0.000021107006,0.00002157105,0.000022045127,0.000022661587,0.000021534526,0.000021710086,0.0000234493,0.00002532975,0.000022437407,0.000016055654,0.000010903649,0.000014053936],[0.000016415404,0.00001053577,0.000010896674,0.000014446715,0.000027939497,0.000034688266,0.00002804192,0.000022891283,0.000020533424,0.00002013891,0.00002040677,0.000019623629,0.000019620653,0.000019041336,0.000019156849,0.000018286479,0.000019563779,0.000019820396,0.0000207552,0.000019516372,0.000020554073,0.00002042883,0.000020316998,0.000019042407,0.000019213383,0.000018960593,0.000019782101,0.000019168107,0.00001996596,0.000019575797,0.000019726036,0.000018482684,0.00001894951,0.00001841586,0.000019561334,0.000018425786,0.00002015257,0.000019877469,0.000020381232,0.000018911473,0.000019736668,0.000019694158,0.000021184464,0.000020085992,0.000020672138,0.00002010995,0.000020044046,0.000018588496,0.000018870289,0.000018761764,0.000019857554,0.00001901069,0.000020346666,0.000020166239,0.00002019399,0.000018709325,0.000019352849,0.000019531733,0.000020498226,0.000019502362,0.000020246962,0.000019980114,0.000019834768,0.000018268385,0.000018609922,0.000018500883,0.000019388555,0.000018446059,0.000019811268,0.000019826804,0.000019875666,0.000018284281,0.000018953866,0.000019302732,0.000020317482,0.000019333369,0.00002009036,0.000019861549,0.000019811798,0.000018222798,0.000018667619,0.00001856766,0.000019550966,0.00001854713,0.00002001198,0.000020048885,0.000020143327,0.000018516184,0.000019167868,0.000019455958,0.000020390875,0.000019407666,0.000020193007,0.000019986213,0.00001987269,0.000018265477,0.000018654966,0.000018548051,0.000019501062,0.00001850367,0.000019941472,0.000019952353,0.00002003306,0.000018426683,0.000019080418,0.000019367268,0.000020306114,0.000019347479,0.0000201509,0.000019947805,0.000019853236,0.000018236844,0.000018631783,0.000018510837,0.000019447425,0.000018409259,0.000019820813,0.000019866684,0.000019976513,0.00001839464,0.000019056886,0.000019409703,0.000020377869,0.000019418181,0.000020178877,0.000019947158,0.000019840536,0.000018221668,0.000018614732,0.00001850009,0.000019451321,0.000018444687,0.000019890173,0.000019923224,0.000020015184,0.000018405326,0.00001905476,0.000019349969,0.000020288091,0.000019326051,0.00002012764,0.000019935882,0.000019848127,0.000018234496,0.000018632476,0.000018523375,0.000019477195,0.00001848004,0.000019937592,0.000019978075,0.00002008831,0.000018488625,0.000019147114,0.00001944127,0.000020386908,0.000019423183,0.000020196687,0.000019969295,0.000019856247,0.000018265284,0.00001865534,0.000018550934,0.000019515497,0.000018520972,0.000019911047,0.00001989224,0.00001995243,0.000018352097,0.000018999834,0.000019314,0.000020274148,0.000019295609,0.000020049476,0.000019822854,0.000019741186,0.00001814959,0.00001853555,0.000018429355,0.000019374602,0.000018404624,0.000019842959,0.000019889621,0.00002006937,0.000018512232,0.000019138533,0.000019404946,0.000020314557,0.000019397821,0.000020030022,0.000019866286,0.000019723591,0.000018233975,0.000018486615,0.000018456527,0.000019335526,0.00001842828,0.000019783005,0.000019597297,0.000019794858,0.000018160412,0.000019079325,0.000019126144,0.000020071593,0.000018819395,0.000019968838,0.000019739115,0.000019743164,0.000017979626,0.000018799823,0.000018735516,0.000019965353,0.0000188711,0.0000203914,0.000020361786,0.000020887146,0.000019467205,0.000020135914,0.000020414067,0.000021605596,0.00002065395,0.000020943173,0.00002049375,0.000020296742,0.00001913098,0.000019033565,0.000018732533,0.000019449133,0.000018866853,0.000020144673,0.00001981159,0.000020514712,0.000019336909,0.00002009239,0.000020357747,0.000021851161,0.00002116542,0.000021704165,0.000021569076,0.00002124828,0.000020108051,0.000019580688,0.000019697689,0.000020507376,0.000020453783,0.000021156842,0.000021046106,0.000021460886,0.000021163563,0.000020247619,0.000020556896,0.000023192299,0.000023581948,0.00002402917,0.000016099888,0.000011520234,0.000012715532],[0.00001728081,0.000011037512,0.000012117873,0.000015433809,0.000029181818,0.00003429013,0.00002582208,0.000022233118,0.000018997805,0.000019526686,0.000018377965,0.000019033601,0.000018194683,0.00001882189,0.00001776884,0.000018519171,0.000018349261,0.00001998261,0.00001896392,0.000019663155,0.00001950411,0.000020697387,0.000019359697,0.000019333165,0.000018473133,0.000019047837,0.000018665483,0.000018811805,0.000018653916,0.000019301959,0.000018274572,0.000018306893,0.000017706152,0.000018602399,0.000018161018,0.0000186865,0.00001892181,0.00002035501,0.00001926099,0.0000193194,0.00001895365,0.000019956786,0.000019748832,0.000019658544,0.00001950041,0.000019730138,0.000018567891,0.000018151806,0.000017935341,0.00001868429,0.000018463446,0.000018783892,0.000019041663,0.00002023837,0.00001902197,0.000018949673,0.000018849103,0.00001979497,0.000019285766,0.000018957156,0.000018965004,0.000019457684,0.000018087992,0.000017711622,0.000017560556,0.000018544672,0.000018017647,0.00001830171,0.000018569022,0.000019975238,0.000018610881,0.000018623274,0.000018497654,0.000019652995,0.00001910642,0.000018794106,0.000018708557,0.000019340652,0.000018028628,0.000017717468,0.000017507098,0.00001863665,0.00001813677,0.000018517776,0.000018746061,0.00002026139,0.000018878227,0.000018877237,0.000018688906,0.000019789912,0.000019231513,0.000018939772,0.000018872233,0.000019473611,0.000018094184,0.000017746113,0.00001755205,0.00001862116,0.000018112916,0.000018459308,0.000018688852,0.000020157278,0.00001876962,0.00001877134,0.000018613917,0.000019702875,0.000019133004,0.000018841842,0.000018813007,0.00001942659,0.000018055263,0.000017716167,0.000017521797,0.000018588886,0.00001805468,0.000018372217,0.000018586634,0.000020069601,0.00001873048,0.000018750496,0.000018618177,0.000019733809,0.000019192727,0.000018869949,0.00001881604,0.00001939895,0.000018040513,0.000017705037,0.000017510873,0.000018584524,0.000018062738,0.00001839678,0.000018628087,0.000020109643,0.000018730014,0.000018743434,0.000018591882,0.000019695755,0.000019130759,0.00001883753,0.000018808145,0.000019427685,0.000018066045,0.000017721473,0.000017535103,0.00001860726,0.000018108081,0.000018453113,0.000018699995,0.000020189676,0.000018811463,0.000018824025,0.000018665572,0.000019771238,0.000019196956,0.000018907018,0.000018859766,0.000019447072,0.000018071783,0.00001773899,0.000017561679,0.000018649576,0.000018111432,0.00001842034,0.000018601564,0.000020066902,0.000018677076,0.000018700564,0.000018568882,0.000019685915,0.0000190806,0.0000187623,0.000018714945,0.000019308181,0.00001796612,0.00001763327,0.000017454004,0.000018535144,0.000018067803,0.000018385503,0.000018655144,0.00002011605,0.00001887335,0.000018907975,0.000018745668,0.000019786024,0.00001919679,0.00001887648,0.000018765038,0.000019296363,0.000018005074,0.000017639746,0.00001740653,0.000018433608,0.000017940729,0.000018257553,0.000018316585,0.000019625051,0.00001828941,0.000018303752,0.000018224137,0.000019480578,0.00001867565,0.00001846253,0.000018365175,0.000019317205,0.000017852968,0.000017508419,0.000017571128,0.00001875933,0.000018440553,0.00001882776,0.00001910899,0.000020576432,0.000019589,0.000019562509,0.000019341205,0.00002033912,0.000019880861,0.000019759475,0.000019334824,0.0000197788,0.000018633968,0.000018453906,0.000017899389,0.000018631692,0.000018202962,0.000018647745,0.000018682545,0.000020062618,0.000019390387,0.000019789346,0.000019258163,0.000020493535,0.000020141119,0.000020633475,0.0000203789,0.00002109081,0.00002047109,0.00002008059,0.000019370686,0.000019567473,0.000020216805,0.000020322077,0.00002091898,0.000020832042,0.000021268348,0.000021956232,0.00002110894,0.000021813354,0.000022696322,0.000025060694,0.000024800429,0.000017265953,0.000010894939,0.000012875788],[0.00001675413,0.000011144276,0.000010669664,0.00001640356,0.0000278228,0.00003539076,0.00002782962,0.000023148548,0.000020737472,0.00002009561,0.00001969938,0.000019176498,0.000019524396,0.00001940415,0.00001988947,0.000019300984,0.000019997748,0.000020195877,0.00002020052,0.000019756855,0.000020824473,0.000021054135,0.000020709036,0.000019706838,0.000019545894,0.000019561969,0.000019481598,0.000018987153,0.00001942144,0.000019610457,0.000019868541,0.000018832123,0.000019248155,0.000019212246,0.000019989815,0.000019232963,0.000020417243,0.00002046223,0.000020812284,0.000019872217,0.000020488083,0.00002031012,0.00002045156,0.000019938714,0.00002020054,0.000020233565,0.000019968018,0.000018929895,0.000019349287,0.000019507124,0.00001979954,0.000019310575,0.00002030584,0.000020399395,0.000020453745,0.000019464625,0.000020180976,0.00002001093,0.000019925923,0.00001931376,0.000019772895,0.0000198002,0.000019578916,0.000018410346,0.000019116116,0.000019247826,0.000019557325,0.000018870991,0.000019928944,0.000020084497,0.000020199037,0.00001908668,0.000019894309,0.000019751109,0.000019765657,0.000019070285,0.00001954843,0.000019573838,0.000019516354,0.000018374636,0.000019153269,0.000019269424,0.000019730043,0.000019044332,0.000020152282,0.00002028786,0.000020439471,0.00001931669,0.000020111562,0.000019888485,0.00001990522,0.000019252744,0.000019743276,0.00001972534,0.000019595895,0.0000184325,0.000019181913,0.000019302419,0.000019736706,0.000019022606,0.000020094172,0.000020221125,0.00002035571,0.000019225792,0.000020033021,0.000019833707,0.000019842675,0.000019174395,0.000019682442,0.000019686458,0.000019575182,0.000018403167,0.000019173262,0.000019293493,0.000019727411,0.000018996408,0.000020039557,0.000020172105,0.000020315507,0.00001920153,0.000019994754,0.000019833973,0.00001984521,0.000019163263,0.00001962681,0.000019643026,0.00001953695,0.000018390974,0.000019145215,0.000019280047,0.000019715355,0.000018986575,0.000020051102,0.000020181918,0.00002032568,0.00001919853,0.00002001347,0.000019824422,0.000019840347,0.000019175235,0.000019680057,0.00001969705,0.000019580333,0.000018415263,0.00001917785,0.000019312933,0.000019759042,0.000019049328,0.00002011484,0.000020237427,0.000020374373,0.000019258143,0.000020065449,0.000019875477,0.000019877221,0.000019202174,0.000019674091,0.000019665405,0.000019544888,0.000018409171,0.000019191153,0.000019285786,0.000019673978,0.000018927656,0.000019986785,0.000020089516,0.000020242791,0.00001916096,0.000019979372,0.000019760642,0.000019727411,0.000019055324,0.000019544665,0.000019555479,0.000019449039,0.000018332716,0.000019109226,0.00001926064,0.000019699286,0.000019015768,0.000020065276,0.000020242598,0.000020426727,0.00001936773,0.000020097392,0.000019912339,0.000019828054,0.000019116607,0.000019468302,0.000019565907,0.000019463641,0.000018310717,0.000018953775,0.00001916573,0.000019596137,0.000018825642,0.00001982671,0.000019926074,0.000020196976,0.000018919607,0.00001995909,0.000019857858,0.000020014479,0.000019058994,0.000019760191,0.000019716239,0.000019610328,0.00001844479,0.000019419958,0.000019586274,0.000020103085,0.000019414052,0.000020525122,0.000020743646,0.000020977595,0.000020164796,0.000020790325,0.000020739117,0.000020521013,0.000019885865,0.000020017362,0.00002020707,0.000019966781,0.000019036324,0.000019417479,0.000019434874,0.000019676849,0.000019080053,0.000020229805,0.000020339408,0.000021060681,0.000020144673,0.000020813794,0.000020447873,0.000020729387,0.000020106172,0.000020357029,0.000020890493,0.000020653417,0.000020205143,0.00001920516,0.000019403798,0.00001914412,0.000020055482,0.00001993417,0.000021102036,0.000021190606,0.000021719343,0.00002125748,0.000021593176,0.000023125975,0.00002365955,0.000024510871,0.0000177862,0.000011182101,0.000012885578],[0.000015923935,0.000011270576,0.000010203571,0.000014007011,0.000025828385,0.000033624583,0.000026541598,0.000023641642,0.000019937954,0.000020059595,0.000018553359,0.000018983714,0.00001804731,0.000019114128,0.000018838608,0.00002005661,0.000019323857,0.000020552308,0.00001907587,0.00001967805,0.000019307057,0.000020717747,0.000019458483,0.000019986746,0.000018809491,0.000019781874,0.000019043915,0.00001916244,0.00001881898,0.000019605839,0.00001907716,0.000019192781,0.000018211662,0.000018962075,0.000018454837,0.00001894763,0.000018581353,0.00001972141,0.000019065048,0.000019785552,0.000019110812,0.000020146921,0.00001933866,0.000019531062,0.00001927422,0.00001987453,0.00001955434,0.000019148501,0.000018718141,0.000019137511,0.000018877994,0.00001896826,0.000018885179,0.00001959655,0.000019104233,0.00001939969,0.000019141982,0.000019797972,0.000019110958,0.000019093488,0.000019125542,0.000019548168,0.00001907265,0.00001858995,0.000018384066,0.000018886007,0.000018528268,0.000018594577,0.000018528055,0.000019340505,0.000018720515,0.000019052997,0.000018808145,0.000019576732,0.000018829896,0.000018882585,0.000018868994,0.000019330178,0.000018814675,0.000018464607,0.00001829152,0.000018913763,0.000018518711,0.000018724104,0.000018631943,0.000019533614,0.000018876373,0.00001922625,0.000018973544,0.00001973281,0.000018982393,0.000019054507,0.000019057286,0.000019512892,0.000018966595,0.000018569377,0.000018384504,0.000018970413,0.000018582168,0.000018738823,0.000018638873,0.000019475543,0.00001881805,0.000019143645,0.00001890857,0.000019664523,0.000018938219,0.000018986848,0.000019002951,0.00001945837,0.000018931412,0.000018531378,0.000018377772,0.000018976943,0.000018595889,0.000018732086,0.0000186049,0.00001943378,0.000018803285,0.000019121968,0.000018895753,0.000019660492,0.000018954246,0.000018989436,0.000018983968,0.000019432317,0.000018912899,0.000018520019,0.000018349332,0.000018939501,0.000018559535,0.000018702653,0.000018603463,0.000019447018,0.000018794663,0.000019114494,0.000018878569,0.000019647186,0.000018925744,0.000018989256,0.000019006104,0.000019476174,0.000018945662,0.000018541738,0.000018378088,0.000018982086,0.000018604456,0.000018768744,0.000018652156,0.000019494162,0.000018836488,0.000019191848,0.000018954572,0.000019726753,0.000018966162,0.000019001374,0.000018981995,0.00001943797,0.00001893849,0.00001855665,0.000018354547,0.00001890172,0.000018479917,0.000018623274,0.000018507924,0.000019354104,0.000018714552,0.000019062558,0.000018804576,0.000019547311,0.000018797744,0.000018835086,0.00001885241,0.000019320576,0.000018843746,0.000018455261,0.000018327279,0.000018936034,0.000018607987,0.000018775618,0.000018681974,0.000019532665,0.00001897356,0.000019331193,0.000019071504,0.000019808094,0.000019010291,0.000018982175,0.000018992841,0.000019475376,0.000019057432,0.000018570618,0.00001840436,0.000018894852,0.000018559393,0.00001846195,0.000018444633,0.00001922726,0.00001868267,0.000018905776,0.00001877954,0.000019652769,0.000018892582,0.000018857372,0.000018876859,0.00001937876,0.000018896797,0.000018573983,0.000018607703,0.000019112396,0.000018844663,0.000018981995,0.000018901539,0.000019758025,0.00001963031,0.000020153224,0.000019826068,0.000020637666,0.000019841407,0.000019943183,0.000019644975,0.000020206706,0.00001990296,0.000019547851,0.000018874465,0.000019349582,0.000018905072,0.00001918226,0.000018751516,0.000019926036,0.000019533483,0.00002054355,0.000019494033,0.000020642903,0.000019489664,0.000020248834,0.00001951963,0.000020953383,0.000020589208,0.000020910265,0.000019215455,0.000019535497,0.000019588346,0.000019838171,0.000019958385,0.00002046828,0.000021604814,0.000022349677,0.000021989068,0.000022272314,0.000023703748,0.000024770012,0.000024088822,0.000016343723,0.000011320688,0.000013169628],[0.000015615138,0.000010770033,9.1605125e-6,0.000012733188,0.000024849152,0.00003657384,0.000031093878,0.000025072288,0.000021942062,0.00002078763,0.00002031109,0.0000188122,0.000019347293,0.000019189725,0.000020424273,0.00001936627,0.00002119863,0.000020493868,0.000021134521,0.000019207411,0.00002056976,0.000020285152,0.000021025662,0.000019531008,0.000020127447,0.000019586945,0.000020048885,0.000019276242,0.000019926452,0.00001976311,0.000020528978,0.00001914527,0.00001976641,0.000019025254,0.000019873543,0.000018499719,0.000019905712,0.000019575013,0.0000208745,0.000019357058,0.000020490193,0.000020180629,0.000020873405,0.000019729046,0.000020225232,0.000020324382,0.000020870937,0.000019597483,0.000019792555,0.000019291874,0.000019898936,0.000018821243,0.00001985021,0.000019583566,0.000020536694,0.000019119325,0.000020138219,0.000019732848,0.00002031452,0.000019243878,0.000019977428,0.00002011415,0.000020428908,0.000019060813,0.000019433335,0.000019032785,0.000019623834,0.000018427965,0.000019546398,0.000019301111,0.00002025374,0.00001877125,0.000019811703,0.000019439916,0.000020023968,0.000018924355,0.000019768937,0.000019848278,0.000020209653,0.000018829502,0.000019381347,0.000018982266,0.000019667676,0.00001843352,0.000019663079,0.000019382253,0.000020413348,0.000018909652,0.000019999292,0.000019629973,0.000020216168,0.000019100771,0.000019951705,0.000020035064,0.000020356698,0.00001895996,0.000019494793,0.000019092138,0.000019727411,0.00001849875,0.000019723779,0.000019414736,0.000020359126,0.000018845543,0.000019932668,0.00001956458,0.000020147554,0.00001906352,0.000019917752,0.00002001347,0.000020335685,0.000018946583,0.000019502326,0.000019125215,0.00001974674,0.000018484798,0.000019683155,0.000019402245,0.000020358873,0.000018855988,0.000019906263,0.000019568946,0.000020179936,0.0000190808,0.000019891804,0.00001999893,0.000020316107,0.000018913528,0.000019443309,0.00001906583,0.000019706877,0.000018466597,0.00001968368,0.000019392124,0.000020347617,0.000018831459,0.000019915036,0.000019552082,0.000020149439,0.000019061776,0.00001992178,0.000020024921,0.000020347694,0.000018943585,0.000019482286,0.000019105235,0.00001974851,0.000018506777,0.00001972299,0.000019420979,0.000020374995,0.000018876462,0.000019966154,0.000019594325,0.000020151245,0.000019035617,0.000019875799,0.000019988232,0.000020304351,0.000018891104,0.000019382585,0.000018985182,0.000019608906,0.000018353252,0.000019588906,0.000019303854,0.000020252948,0.000018718658,0.000019804676,0.000019422238,0.000019970741,0.000018886763,0.000019735897,0.000019872974,0.00002023758,0.000018887304,0.000019414516,0.000019078743,0.000019762321,0.000018566863,0.000019753805,0.000019466686,0.000020496114,0.000019033929,0.000020097239,0.000019676867,0.000020165433,0.000019043951,0.000019798501,0.000020007228,0.000020334697,0.00001906603,0.000019413887,0.000019061994,0.000019592231,0.00001833957,0.000019517136,0.00001929294,0.000020376083,0.000018841267,0.000020008563,0.000019693332,0.00002035963,0.000019038394,0.000019962801,0.000020009746,0.000020525182,0.000019107149,0.00001982157,0.000019549549,0.000020431655,0.000019029047,0.000020111926,0.000019835203,0.000021409536,0.000020046322,0.000020985299,0.000020658126,0.000021365644,0.000020274669,0.000020604746,0.000020716661,0.000021109603,0.000020094902,0.000020086854,0.000019479927,0.000020069736,0.00001906905,0.000020262723,0.00001978278,0.000021299647,0.000020113192,0.000021102416,0.000020457097,0.00002098832,0.000020263613,0.000020688427,0.000021094247,0.000021892838,0.000020974872,0.00002012624,0.000019491541,0.000019760624,0.00001942898,0.000019908106,0.000020580415,0.000021457468,0.00002162487,0.000021081842,0.0000214203,0.000024295188,0.000024099027,0.000023654024,0.000015882682,0.000011116,0.000013297369],[0.000016076383,0.000010849133,9.870205e-6,0.0000121312505,0.000025120968,0.000033697193,0.000027620772,0.000023743316,0.000020675488,0.000019962326,0.00001867875,0.000018551287,0.000018076902,0.000018602594,0.00001822742,0.000018843082,0.00001928435,0.000020225829,0.000019047602,0.000019249697,0.000019043133,0.000020393269,0.000019112817,0.000019623498,0.000018981833,0.000019853369,0.00001923144,0.00001975823,0.000019182955,0.000019978437,0.000018984638,0.00001908808,0.000018841716,0.000019462064,0.00001899572,0.000019341298,0.00001919549,0.000020433059,0.000019473166,0.00001987925,0.000019671463,0.000020957279,0.000020224808,0.000020466816,0.000019871686,0.000020459227,0.000019728142,0.0000191138,0.000019309562,0.000019344821,0.000019388906,0.000019145087,0.000019329313,0.000019868237,0.000019176827,0.00001908231,0.00001939024,0.000020114552,0.000019792837,0.000019681973,0.000019706464,0.000020115263,0.00001938595,0.000018508648,0.000018944018,0.000018934807,0.000018950215,0.000018554474,0.000018940314,0.00001955779,0.000018838176,0.000018761835,0.00001903382,0.00001985087,0.00001939353,0.00001932417,0.000019376246,0.000019938067,0.000019102848,0.000018317547,0.00001872462,0.000018891824,0.00001886072,0.000018581724,0.000018963034,0.000019675366,0.000018934752,0.000018925562,0.000019189394,0.000020040741,0.000019601912,0.000019520821,0.000019539873,0.00002006876,0.000019244926,0.00001843628,0.000018878838,0.0000190139,0.000018981867,0.000018655695,0.000019066121,0.000019747229,0.000018964496,0.00001886777,0.000019127476,0.000019959869,0.000019537452,0.000019470734,0.000019538757,0.000020062751,0.000019257373,0.00001842591,0.00001889215,0.000019025056,0.000019004925,0.000018638411,0.000019039557,0.000019702255,0.000018964878,0.00001884727,0.000019134994,0.00001998587,0.00001962595,0.000019513394,0.000019524807,0.000020019785,0.000019232393,0.00001838822,0.000018835535,0.000018966868,0.000018953704,0.000018606497,0.000019023077,0.000019713305,0.000018955909,0.000018859388,0.000019128114,0.000019964344,0.000019549418,0.000019493029,0.000019548692,0.000020083828,0.000019258126,0.000018433326,0.000018872755,0.000019015042,0.000018989293,0.000018661158,0.000019052906,0.000019743973,0.000018970793,0.000018890527,0.000019139137,0.000019994943,0.000019550798,0.000019484794,0.000019503592,0.000020006673,0.000019155952,0.000018331648,0.000018746741,0.000018881252,0.000018831566,0.000018515568,0.00001891196,0.000019602625,0.000018808989,0.000018727926,0.000018979714,0.00001983751,0.000019367286,0.000019307887,0.000019411424,0.000019987336,0.000019237512,0.000018391991,0.000018872719,0.00001902607,0.000019087734,0.000018745024,0.000019140103,0.000019805828,0.00001915409,0.000019086205,0.000019321573,0.00002010763,0.000019594494,0.000019478402,0.000019491075,0.000020045234,0.000019405483,0.000018519135,0.00001889979,0.000018912518,0.00001895786,0.000018447236,0.000018968713,0.000019628007,0.00001900248,0.000018790952,0.000019248339,0.000020067151,0.000019757535,0.000019419793,0.000019680752,0.000020000569,0.000019455958,0.00001843547,0.000019274772,0.000019314959,0.000019660962,0.000018980203,0.000019401468,0.000019786667,0.000019622263,0.000019580764,0.000019784195,0.000020400366,0.000020174799,0.000019933866,0.000019776404,0.000019959489,0.000019695191,0.000018972169,0.000019212963,0.000018956145,0.000019109662,0.000018891249,0.000019089719,0.00002001053,0.000019643812,0.000020389398,0.000019972074,0.000021010668,0.0000201144,0.000020752293,0.000020031417,0.000021299098,0.00002084478,0.000020942593,0.000020006846,0.000019844889,0.000020527921,0.00002040023,0.000020983276,0.000021449285,0.00002180911,0.00002250152,0.000021738593,0.000022627079,0.000024275574,0.000026418214,0.00002508829,0.000016904367,0.000010744079,0.000013601168],[0.000016100594,0.000010910723,9.616789e-6,0.000012759737,0.000022861897,0.000035957524,0.00002801952,0.000024263052,0.000021305355,0.000020481364,0.000019597408,0.00001905256,0.000019055742,0.000019112105,0.000019174597,0.000018868292,0.000019853389,0.000020052843,0.000020247251,0.000019406816,0.00002065586,0.000020579493,0.000020423822,0.000019600942,0.000020140254,0.000020021009,0.000020572292,0.000020137335,0.000020494885,0.000020238987,0.000019962097,0.000019211277,0.000019784025,0.000020011692,0.00002093277,0.000020258569,0.000021296742,0.000020920477,0.000021198184,0.000019941966,0.000021095857,0.000021137079,0.000022070602,0.000021076976,0.000021325866,0.000020988242,0.000020242058,0.000019352516,0.000019633231,0.000020134761,0.000020565798,0.000020153262,0.000020839076,0.0000205489,0.000020389069,0.000019274128,0.00002026912,0.000020440017,0.000021117132,0.000020297555,0.000020765478,0.000020400717,0.00001968736,0.000018726907,0.000019077252,0.000019501433,0.000019829944,0.000019434336,0.00002032033,0.000020077949,0.000020052747,0.000018945426,0.00001998362,0.000020059977,0.000020709547,0.000019875646,0.000020480993,0.000020151898,0.0000195387,0.000018531944,0.000018929155,0.000019404188,0.000019817542,0.000019387817,0.000020422265,0.000020144558,0.000020199692,0.000019045803,0.000020148938,0.00002023148,0.000020916546,0.000020083673,0.000020659485,0.000020295078,0.000019659612,0.000018665038,0.000019073177,0.000019550815,0.00001992822,0.00001950651,0.000020490077,0.000020239124,0.000020272697,0.000019057432,0.00002011463,0.000020201445,0.000020862084,0.00002004076,0.000020649124,0.000020301408,0.00001966293,0.000018664487,0.000019051291,0.000019544179,0.000019925656,0.000019485557,0.000020423064,0.000020181207,0.000020213642,0.000019018344,0.000020098447,0.000020287724,0.000020984859,0.000020119425,0.000020621594,0.000020259457,0.000019663212,0.000018669756,0.000019035162,0.000019508148,0.000019894345,0.000019467634,0.00002044838,0.000020214664,0.000020256946,0.000019049692,0.000020106632,0.000020205318,0.000020877447,0.000020059555,0.000020658441,0.000020304795,0.000019669833,0.000018661302,0.000019044406,0.000019522106,0.00001991933,0.000019493678,0.000020466035,0.00002020948,0.00002025882,0.000019037032,0.000020115127,0.000020252928,0.000020900177,0.00002002246,0.000020550997,0.000020170663,0.000019550145,0.000018544442,0.000018939952,0.000019411886,0.000019833631,0.000019370056,0.000020361884,0.000020067631,0.000020106192,0.000018917135,0.000019975903,0.000020021524,0.00002069561,0.000019899697,0.000020556621,0.000020273315,0.000019654211,0.000018677378,0.000019059486,0.000019575069,0.000019991188,0.000019586796,0.000020527785,0.000020302125,0.000020403053,0.00001922064,0.000020251944,0.000020316555,0.000020840467,0.000019953797,0.000020398482,0.000020157395,0.000019547013,0.000018681723,0.000018843604,0.000019309213,0.000019652658,0.000019331728,0.000020205413,0.000020107072,0.000020141271,0.000018951752,0.000020052288,0.000020228934,0.000021019767,0.000020176183,0.000020903924,0.000020499887,0.000019944135,0.00001888154,0.000019607542,0.000020204296,0.000020861724,0.000020400581,0.00002105054,0.000020725,0.00002074228,0.000020048521,0.000020774905,0.00002099939,0.000021478863,0.000020680933,0.000020564485,0.000020545216,0.000019689764,0.000019308973,0.000019409905,0.000019916612,0.000020306792,0.000019904535,0.000020820802,0.000020644713,0.000021108757,0.000020337062,0.000021454725,0.000021117294,0.000021967102,0.000021348107,0.00002183304,0.000021683994,0.000021156158,0.00002106277,0.00002017578,0.0000204508,0.000020862679,0.000021645317,0.000021489659,0.000022255796,0.000021617798,0.00002219613,0.000021705056,0.000022054655,0.0000244302,0.00002493537,0.000025669806,0.000017760436,0.000011174372,0.000013557345],[0.000016022293,0.000010682921,0.0000100827065,0.0000118205835,0.000021655063,0.00003374752,0.000026329279,0.000023445029,0.000019939818,0.000020026757,0.000018796598,0.00001925379,0.000018224378,0.000018885845,0.00001821847,0.000018711002,0.000018487832,0.000019805924,0.000018513785,0.000019472403,0.000018974755,0.000020436722,0.000018624907,0.000019121166,0.000018182265,0.000019796009,0.000018891518,0.000020150359,0.000019158693,0.000020240514,0.00001835551,0.000018726942,0.000018018092,0.000019581063,0.00001891719,0.000020011903,0.000019422681,0.000020446723,0.000018876914,0.000019541048,0.000018884908,0.000020881012,0.000020070385,0.000021182079,0.000020112751,0.000021026846,0.000018992696,0.00001916573,0.00001843062,0.000020029907,0.000019278466,0.000020335781,0.000019664018,0.000020648178,0.000018816218,0.000019306837,0.000018685556,0.00002039424,0.000019644525,0.000020533835,0.000019836318,0.000020668076,0.000018719926,0.000018706914,0.000018134055,0.000019450448,0.000018660181,0.000019520485,0.00001917776,0.000020148707,0.000018438248,0.000018963123,0.00001842779,0.000019997575,0.000019164048,0.000020065869,0.000019426425,0.000020353029,0.000018414104,0.00001844282,0.000017864208,0.000019246741,0.00001848903,0.000019394345,0.000019059122,0.00002015136,0.00001848984,0.000019041972,0.000018472956,0.000020124608,0.000019312656,0.00002028279,0.000019619849,0.000020543277,0.000018581884,0.000018626824,0.000018041941,0.0000194202,0.000018619117,0.000019539148,0.000019168947,0.00002025179,0.000018545115,0.00001909975,0.000018478948,0.000020149417,0.000019283394,0.000020249143,0.000019600342,0.000020559191,0.0000185866,0.00001864762,0.000018056951,0.000019438396,0.00001861626,0.000019523186,0.00001916147,0.000020224326,0.000018519277,0.000019044133,0.000018502311,0.000020233583,0.000019403318,0.000020292871,0.000019604757,0.000020518723,0.000018591774,0.000018646162,0.000018057193,0.000019414627,0.000018598745,0.00001950227,0.000019142532,0.000020220681,0.000018523499,0.00001908118,0.000018466562,0.000020142483,0.000019274146,0.000020253701,0.000019590552,0.00002055127,0.000018562278,0.000018626044,0.00001802342,0.000019414127,0.000018592165,0.00001950932,0.00001912901,0.00002021083,0.000018513501,0.000019094927,0.000018482137,0.00002018829,0.000019269992,0.000020169738,0.000019475005,0.000020391108,0.000018450402,0.00001849813,0.000017936314,0.000019309875,0.00001849402,0.000019368063,0.000019006504,0.000020050624,0.000018384557,0.000018938003,0.000018351746,0.000019918283,0.000019106603,0.000020101532,0.00001953505,0.000020519388,0.000018609142,0.000018648492,0.000018099345,0.000019465924,0.000018696233,0.000019619381,0.00001924865,0.00002031109,0.000018665804,0.000019230705,0.000018606142,0.00002029651,0.000019330437,0.000020186539,0.000019467838,0.00002045152,0.000018598834,0.000018636028,0.000018005949,0.000019277364,0.00001845769,0.000019356872,0.000019137986,0.000020184132,0.000018565004,0.000018984583,0.000018423834,0.00002004594,0.000019387207,0.000020297091,0.000019883306,0.0000206108,0.000019034236,0.000018918543,0.000018644989,0.000020003907,0.000019818071,0.000020574627,0.000020135416,0.000020811154,0.000019693069,0.000020230384,0.000019722595,0.000021101874,0.00002085715,0.000021374079,0.000020601467,0.000020966274,0.000019626923,0.00001938301,0.000018856312,0.000019916897,0.000019616125,0.000020316884,0.000019654231,0.00002054065,0.000019393605,0.000020077125,0.00001930621,0.000020850386,0.000020707732,0.000022027687,0.000020961736,0.000021850163,0.000020255942,0.000020377967,0.00001932747,0.000019899544,0.000021093243,0.00002172705,0.000021711452,0.000021916881,0.000021837603,0.000022595768,0.000021749418,0.000022039412,0.000023568773,0.000025538513,0.0000252906,0.000017112829,0.00001117708,0.000013900513],[0.000016527467,0.00001031138,9.865595e-6,0.000011795381,0.000022581873,0.00003706403,0.000029989742,0.000023767081,0.000021216387,0.000020259826,0.000020163701,0.0000188075,0.00001933547,0.000019004436,0.00001925673,0.000018307994,0.000019899127,0.000019724419,0.000020559659,0.000018897934,0.000020542864,0.000019971369,0.000020029278,0.000018622652,0.000019542502,0.000019139738,0.000019905694,0.000019135048,0.000020269643,0.000019443605,0.000019343826,0.000018156481,0.000019118212,0.000018849696,0.000019794687,0.000018941073,0.000020394766,0.00001956169,0.000019949784,0.000018878822,0.000020079307,0.000019929379,0.000021225129,0.000020233643,0.000021332009,0.000020254995,0.000020155281,0.000018932784,0.000019641715,0.000019371535,0.00002036437,0.000019505247,0.000020832262,0.000019943012,0.00002015355,0.00001887441,0.00001993436,0.000019715317,0.0000207632,0.00001987538,0.000020993584,0.000020112922,0.000019895977,0.000018635621,0.000019344305,0.000019040901,0.000019749132,0.000018846677,0.00002032382,0.000019608327,0.000019780062,0.000018606586,0.000019702986,0.000019353845,0.000020303287,0.000019367342,0.000020563111,0.000019718702,0.000019541012,0.000018288398,0.000019036017,0.000018783374,0.000019539837,0.000018658098,0.000020148535,0.00001950145,0.000019807094,0.000018664612,0.000019727298,0.000019388906,0.000020438612,0.000019542967,0.000020782058,0.000019931318,0.000019741676,0.000018494004,0.000019251589,0.000018962255,0.000019680207,0.000018798139,0.000020300111,0.000019655712,0.00001991099,0.000018722352,0.000019806546,0.000019488047,0.000020479663,0.000019560346,0.000020802165,0.000019955949,0.00001977184,0.00001853159,0.000019291267,0.000018986304,0.00001968432,0.000018794213,0.000020278749,0.000019633362,0.000019882833,0.000018657189,0.000019762547,0.000019543564,0.000020543119,0.000019564244,0.00002075249,0.00001990987,0.000019743538,0.000018520725,0.000019274257,0.000018969997,0.000019661467,0.000018769066,0.000020261352,0.000019611934,0.000019870378,0.000018693612,0.000019798312,0.000019477178,0.00002046145,0.00001953844,0.000020776451,0.000019918189,0.000019730684,0.000018484798,0.000019244722,0.00001894252,0.000019646568,0.000018751569,0.00002025287,0.000019622337,0.00001989907,0.000018682813,0.000019760491,0.000019450466,0.00002040753,0.000019454754,0.000020641091,0.000019777894,0.000019611543,0.000018399553,0.000019158182,0.00001883681,0.000019539837,0.000018625102,0.000020111293,0.000019437153,0.00001969893,0.000018584878,0.000019630217,0.000019269937,0.00002028546,0.000019428851,0.000020691545,0.000019927138,0.000019758609,0.000018550598,0.000019289906,0.00001899594,0.000019742296,0.000018889465,0.00002036866,0.000019683643,0.000019986079,0.00001880402,0.000019941148,0.00001962187,0.000020537927,0.000019494144,0.00002067466,0.000019834444,0.000019662835,0.000018477114,0.000019228873,0.000018821387,0.00001952516,0.00001861372,0.00002023978,0.000019620073,0.000019940711,0.000018641078,0.00001965856,0.000019428573,0.000020442101,0.000019682948,0.000020898144,0.0000202926,0.000020220623,0.000019156045,0.000019814444,0.000019870284,0.000020959458,0.000020310645,0.000021601743,0.000020848756,0.000021231242,0.000020409843,0.000020914313,0.000021090105,0.00002209303,0.00002148712,0.000021990472,0.000021161768,0.000020933328,0.000019751618,0.000020049,0.000019974172,0.00002083103,0.000020030271,0.000021113388,0.000020166393,0.000020496485,0.000019538813,0.000020264037,0.000020325817,0.000021646143,0.00002127697,0.000022113265,0.000021412843,0.000020845337,0.000019837831,0.00001936278,0.000019381901,0.000020460571,0.00002066796,0.000021280279,0.00002099677,0.000021059455,0.000021007463,0.000020484822,0.000020785666,0.000023185354,0.000024307634,0.000026255737,0.00001732961,0.000011836489,0.000013167719],[0.000016775297,0.00001107507,0.000010481873,0.000012734148,0.000023836516,0.000034822897,0.000026962152,0.000022357415,0.000019159626,0.000019627614,0.000018256891,0.000018711144,0.0000179137,0.000018603427,0.000017554781,0.000018143171,0.000017990415,0.000019505953,0.000018112727,0.000018762623,0.000018466757,0.000019863692,0.000018282084,0.000018775654,0.00001783493,0.000019184456,0.000017902907,0.000019081073,0.000018328414,0.000019715035,0.00001789253,0.000018788138,0.00001782767,0.000019386856,0.00001809158,0.000019302142,0.000018687942,0.000020240783,0.000018648954,0.000019819583,0.000018906407,0.00002076118,0.000019239493,0.000020359455,0.000019326088,0.00002058438,0.000018656265,0.000019574789,0.000018604724,0.000020257778,0.00001867745,0.000020083598,0.000019151661,0.000020668984,0.000018801797,0.000020053149,0.000019175784,0.000020937921,0.000019254543,0.000020473415,0.000019375617,0.00002068105,0.000018535002,0.000019413126,0.000018513643,0.000020102241,0.000018442504,0.000019701934,0.0000188385,0.000020406904,0.000018521114,0.000019757346,0.000018999943,0.000020672669,0.000018955205,0.000020100822,0.000019016965,0.000020329326,0.000018211367,0.00001908959,0.000018264953,0.000019887857,0.000018273247,0.000019590327,0.00001874515,0.000020354602,0.000018526696,0.000019814652,0.00001900286,0.000020695907,0.000019020446,0.000020232368,0.000019145962,0.000020488336,0.00001835012,0.000019251569,0.000018402361,0.000020034644,0.000018355948,0.000019697953,0.00001884301,0.000020476384,0.00001860169,0.000019907593,0.000019058958,0.000020804862,0.000019069175,0.000020282869,0.000019173114,0.000020538908,0.000018384082,0.000019305495,0.000018445353,0.000020071227,0.000018357821,0.000019689576,0.000018824545,0.000020440777,0.000018566137,0.000019871042,0.000019043644,0.000020824076,0.000019095272,0.000020257508,0.000019128114,0.000020499243,0.000018360535,0.00001927545,0.000018423485,0.000020064988,0.000018359116,0.000019689443,0.000018811894,0.000020434365,0.000018547538,0.000019863577,0.000019028665,0.000020790227,0.000019038103,0.000020254512,0.000019131781,0.0000204959,0.00001831669,0.000019232595,0.000018368975,0.000020003392,0.000018294728,0.000019640367,0.000018772575,0.00002040237,0.00001850113,0.000019791762,0.000018935276,0.00002070868,0.000018951227,0.000020132937,0.000019026362,0.00002039045,0.000018271017,0.000019182698,0.000018323311,0.00001993206,0.000018244169,0.000019559357,0.000018706254,0.000020306714,0.000018446146,0.000019717347,0.000018947578,0.000020618016,0.000018993474,0.000020231191,0.000019185041,0.000020549467,0.000018442768,0.000019331654,0.000018463446,0.000020076704,0.000018440658,0.000019787893,0.00001891867,0.00002052571,0.00001868757,0.000020007687,0.000019136563,0.000020873089,0.000019011415,0.000020098505,0.000018942535,0.000020297264,0.000018131825,0.00001903825,0.000018142808,0.000019834237,0.00001810929,0.000019465257,0.000018659912,0.000020370177,0.000018581797,0.000019882056,0.000019030134,0.000020784377,0.000019266447,0.0000205336,0.000019646623,0.000021051042,0.00001920701,0.000020124417,0.000019286686,0.000020839056,0.000019606588,0.000020956739,0.000020307545,0.000021758338,0.000020206453,0.000021396023,0.00002042741,0.000021718204,0.000020221645,0.000020879697,0.000020120828,0.0000207497,0.000019400597,0.000019619381,0.000018996174,0.000020073221,0.000019174613,0.000020093943,0.000019617135,0.000020712987,0.00001943747,0.000020333437,0.000019464569,0.000020671725,0.000019543453,0.000020559739,0.000019963316,0.00002103892,0.000019632538,0.000019733676,0.000018637611,0.000019709225,0.000019572904,0.00002075924,0.000020630228,0.000021496178,0.000021093343,0.000022223641,0.00002146981,0.000022603914,0.000023154442,0.000026087515,0.000025784997,0.000018413964,0.000011302188,0.000013652447],[0.000015744197,0.000011243222,9.5674195e-6,0.00001400279,0.000023977986,0.000036402118,0.000028357123,0.000022496219,0.000020370488,0.000019871763,0.000019923185,0.00001892623,0.00001958575,0.000019011633,0.000019618015,0.000018788656,0.000020020569,0.000019867062,0.000020163643,0.000019109899,0.000020583419,0.0000203845,0.000020644911,0.000019648067,0.000020326184,0.000019900057,0.000020002362,0.000019317373,0.000020568683,0.000019935007,0.000020465353,0.000019570925,0.000020430974,0.000019790763,0.000020136971,0.000019293346,0.000020757934,0.000020103622,0.000020894078,0.000020245398,0.000021430391,0.000020975092,0.00002093337,0.000019864126,0.000021051444,0.000020285674,0.00002084846,0.00001989336,0.000021128071,0.000020449315,0.000020658441,0.000019695453,0.000021056885,0.00002024223,0.000020927182,0.000020218173,0.000021475833,0.000020844442,0.000020822172,0.000019984898,0.000021140428,0.000020384596,0.000020771933,0.000019803372,0.000021017222,0.000020352854,0.000020540827,0.000019566969,0.000020793655,0.000020046895,0.000020672413,0.000019977066,0.000021248703,0.000020650878,0.000020617248,0.000019748773,0.000020830712,0.00002008193,0.00002044058,0.000019529758,0.000020734133,0.000020115705,0.00002035633,0.000019469731,0.0000207516,0.000020007285,0.000020638374,0.000019990901,0.000021273541,0.000020648731,0.00002064694,0.000019790989,0.000020908848,0.00002014448,0.00002053685,0.00001961274,0.000020878166,0.000020249568,0.000020477106,0.000019569003,0.00002087462,0.000020125875,0.000020756093,0.000020103353,0.00002141074,0.000020774727,0.000020763517,0.000019881998,0.000021007745,0.000020221394,0.000020604706,0.000019670339,0.000020925683,0.000020267767,0.000020473824,0.00001954047,0.000020842535,0.00002007387,0.000020700743,0.000020060186,0.000021359572,0.000020705756,0.000020697998,0.000019826068,0.000020950365,0.00002018188,0.000020572881,0.000019636844,0.000020909765,0.000020271364,0.000020492947,0.000019566614,0.000020859576,0.000020095782,0.00002072249,0.0000200586,0.000021377424,0.000020732848,0.000020727766,0.000019837264,0.000020966336,0.0000201773,0.000020558778,0.000019621008,0.000020894437,0.000020233412,0.000020448613,0.000019496747,0.000020784693,0.000020010966,0.000020624739,0.000019955607,0.000021267355,0.00002063318,0.000020614594,0.00001972581,0.000020848698,0.000020080954,0.000020456357,0.000019500058,0.000020756348,0.000020115876,0.000020328629,0.000019401004,0.000020701867,0.000019962898,0.000020566269,0.00001991437,0.00002120862,0.000020636959,0.000020665573,0.000019874396,0.000021000213,0.000020269488,0.000020666697,0.00001972948,0.000020939657,0.000020313413,0.000020560876,0.000019653855,0.000020949226,0.000020182766,0.00002083824,0.00002018446,0.000021473743,0.000020817843,0.00002070019,0.000019712666,0.000020823521,0.000020066616,0.000020443837,0.000019420737,0.000020718971,0.000020074196,0.000020334348,0.00001934189,0.000020692176,0.00002001337,0.000020763517,0.000020150475,0.000021417152,0.000020795283,0.000020901953,0.000020154588,0.000021342572,0.000020727271,0.000021188202,0.000020566898,0.000021499416,0.000021053773,0.000021180767,0.000020499574,0.000021708118,0.000021262611,0.000021902799,0.000021446605,0.000022165013,0.00002177374,0.00002100624,0.00002047193,0.000021041387,0.000020805279,0.000021014957,0.000020136626,0.000020940697,0.00002069715,0.000020748395,0.000020141291,0.000021168873,0.000020690559,0.000021388272,0.000020849055,0.000021494867,0.000021053973,0.000020559444,0.000020198786,0.000020755835,0.000021164937,0.00002068105,0.000019969466,0.00001951922,0.000019574974,0.0000194761,0.000020113152,0.00002056772,0.000021210762,0.00002131879,0.000021785725,0.00002169057,0.000022258237,0.00002390098,0.000025109759,0.00002607968,0.000019164834,0.000011729133,0.000013774556],[0.000015076347,0.000013162408,0.000010473329,0.000015091553,0.000025972508,0.000034615234,0.000026961226,0.000022727967,0.00001910478,0.000019936033,0.000018919482,0.000019259613,0.000018293578,0.000018863346,0.000018616738,0.000019302714,0.000018778966,0.000019896414,0.000018816523,0.000019127769,0.000018858038,0.000020027654,0.000019198988,0.000019846479,0.000018731658,0.000019706238,0.000018797171,0.000019329571,0.000018648296,0.000019858142,0.00001897604,0.000020094652,0.000018759385,0.00001986697,0.000018764036,0.000019428073,0.000018673709,0.000019912815,0.000019408313,0.000020613847,0.00001952004,0.000020808118,0.000019344656,0.00001968567,0.00001882433,0.000020101936,0.000019426665,0.0000202532,0.000019093633,0.000020422947,0.000019248413,0.000019842466,0.000018770588,0.000020054065,0.000019418181,0.000020555603,0.000019354324,0.00002081546,0.000019420293,0.000020151956,0.000019147059,0.000020530115,0.00001961966,0.000020363319,0.000019166917,0.000020497699,0.000019274845,0.000019883022,0.000018755878,0.00002000225,0.000019302528,0.000020401923,0.000019235293,0.000020684009,0.000019310666,0.000019991854,0.000018964496,0.00002031105,0.000019390702,0.000020132573,0.000018982302,0.00002032163,0.000019130724,0.000019801768,0.00001870267,0.000020012074,0.000019278854,0.000020407666,0.000019251496,0.000020717154,0.000019328982,0.000020024807,0.000018981435,0.000020332272,0.000019405723,0.000020174568,0.000019012195,0.000020385314,0.00001917222,0.000019853975,0.000018741914,0.000020066713,0.000019308512,0.000020456357,0.000019285455,0.000020767695,0.000019351999,0.00002006411,0.000019007844,0.000020376958,0.000019451933,0.000020231579,0.000019049945,0.00002041436,0.00001917273,0.000019830248,0.000018720835,0.000020044718,0.000019298957,0.000020440231,0.00001926404,0.000020715692,0.00001929997,0.000020017304,0.000018973651,0.000020316651,0.000019401967,0.000020158357,0.00001899842,0.00002037408,0.000019154893,0.0000198405,0.000018731407,0.000020052306,0.00001929121,0.00002043152,0.000019257664,0.000020721758,0.000019308034,0.000020012265,0.000018961477,0.000020311652,0.000019391016,0.000020148746,0.000018969327,0.000020312678,0.000019062903,0.000019717536,0.000018624623,0.000019942861,0.000019192012,0.000020323392,0.000019171013,0.00002064812,0.000019242447,0.000019930425,0.000018886458,0.000020214702,0.000019307867,0.000020057434,0.000018910265,0.00002027113,0.000019057794,0.000019701973,0.000018618603,0.000019935747,0.000019205396,0.000020288962,0.000019168216,0.000020671132,0.000019363702,0.000020093923,0.000019088844,0.000020463714,0.000019570814,0.000020309753,0.000019114985,0.000020485426,0.000019286557,0.00001995749,0.000018845687,0.000020165297,0.000019433633,0.000020592941,0.000019390369,0.000020835558,0.000019275654,0.000019859563,0.000018811032,0.000020148726,0.000019178711,0.00001989575,0.00001872355,0.000020156165,0.000018864766,0.000019552886,0.000018445442,0.000019898178,0.00001925203,0.000020431187,0.000019214227,0.000020734786,0.000019526089,0.000020329888,0.000019380921,0.000020976055,0.00002045663,0.000021410782,0.000020070675,0.000021277783,0.000020018793,0.000020795678,0.000019742749,0.000021132264,0.000020750986,0.000021999365,0.000020671821,0.00002179383,0.000020196147,0.000020522128,0.000019587094,0.000020618898,0.000020091336,0.000020709174,0.000019636394,0.000020775895,0.000019752202,0.000020243217,0.000019463734,0.000020551623,0.000020303325,0.000021389189,0.000020177396,0.000021173173,0.000019603802,0.00002007119,0.000019281022,0.000020597163,0.00001975889,0.000020235206,0.00001841644,0.000019238172,0.000018537317,0.00001954761,0.000019427165,0.000020575744,0.000020965274,0.000022163493,0.000021647444,0.000022727163,0.000023933617,0.000026420605,0.000025376074,0.000017747248,0.000011813911,0.0000139434505],[0.00001585585,0.0000144734395,0.000011896944,0.000017073755,0.00003028522,0.0000356224,0.000031090854,0.000023605484,0.000021564758,0.0000203893,0.00002069873,0.000019329773,0.000019807982,0.000019466092,0.000020456006,0.000019295921,0.000020509508,0.000020358251,0.000021214768,0.000019457091,0.000020503367,0.00002055084,0.000021552196,0.000020028667,0.000020623991,0.000020141733,0.000020845635,0.000019684261,0.000020494648,0.000020145191,0.000021340047,0.000019864221,0.000020555817,0.000019810892,0.000020589188,0.000018994906,0.00002029796,0.000019760811,0.000021709528,0.000020027883,0.000021179048,0.000020309482,0.00002112503,0.000019422794,0.000020543825,0.00002019998,0.000021573416,0.00001996305,0.000020781623,0.000020087717,0.00002111651,0.000019253865,0.000020452318,0.00001987108,0.000021655269,0.000019781251,0.000020927282,0.00002014041,0.000021242058,0.00001957535,0.000020926824,0.000020546371,0.000021844704,0.000020004709,0.000020817188,0.000020216072,0.000021139922,0.000019283485,0.000020537555,0.000019973046,0.000021576216,0.000019695717,0.00002079885,0.000020091855,0.00002115644,0.000019486133,0.000020805557,0.000020431286,0.00002170166,0.000019855925,0.000020663858,0.000020121863,0.000020995587,0.000019161691,0.000020409962,0.000019933374,0.000021500526,0.00001966383,0.000020770984,0.000020073525,0.000021121867,0.000019473018,0.000020796968,0.000020394142,0.000021677544,0.000019812649,0.000020653239,0.000020103853,0.000021006723,0.000019161125,0.000020452417,0.000019971692,0.000021567761,0.000019690871,0.000020831407,0.000020109259,0.000021166428,0.000019470435,0.00002080278,0.000020414263,0.000021726593,0.000019854297,0.000020701294,0.000020142406,0.000021057467,0.000019156174,0.000020443174,0.000019932193,0.000021578355,0.000019691697,0.000020823043,0.000020112098,0.000021167602,0.00001946975,0.000020787033,0.000020390215,0.000021684367,0.000019835561,0.000020671034,0.000020114707,0.000021073078,0.00001918784,0.000020480249,0.000019960993,0.000021595277,0.000019700037,0.000020828307,0.000020088424,0.00002116653,0.000019446721,0.000020776211,0.00002037214,0.000021655516,0.000019766523,0.000020595317,0.000020011006,0.000020941534,0.000019059322,0.000020357009,0.000019851514,0.000021484046,0.000019597575,0.000020757894,0.000020026278,0.000021059515,0.000019351428,0.000020681602,0.000020278458,0.000021583686,0.000019707384,0.000020584694,0.000020026451,0.000020892065,0.000019084275,0.000020286563,0.000019864126,0.000021406411,0.000019580222,0.000020710437,0.000020078081,0.000021187332,0.00001955199,0.000020901412,0.000020523381,0.00002184785,0.000019953894,0.000020776073,0.000020216477,0.000021151176,0.000019300578,0.000020570642,0.00002004271,0.00002166942,0.00001982862,0.000020948506,0.000020158375,0.000021157592,0.00001941472,0.000020597281,0.000020224345,0.000021431782,0.000019632856,0.000020415839,0.0000198356,0.000020742915,0.000018871207,0.00002015357,0.000019706951,0.000021401533,0.000019549158,0.000020652493,0.000020114649,0.000021023696,0.00001960468,0.00002088864,0.000020963655,0.000022274417,0.000021076756,0.000021574837,0.000020951804,0.000021458163,0.00002029676,0.000021169903,0.000020975354,0.000022385728,0.00002138978,0.000021906017,0.000021247164,0.00002158035,0.000020560248,0.00002117608,0.000020952702,0.000022033946,0.00002083385,0.000021106564,0.000020629403,0.000021074,0.000019994677,0.00002084164,0.000020603351,0.000021824671,0.000020863714,0.000021522086,0.000020832776,0.000021046284,0.000019903018,0.000020673991,0.00002070949,0.000021560458,0.000020124204,0.00001986104,0.000018873745,0.00001930319,0.00001884425,0.000019902276,0.000020334852,0.000021132948,0.00002103557,0.000021076432,0.000021286103,0.000024352415,0.000025267045,0.000025918767,0.00001718967,0.000011596931,0.000013628888],[0.000016136195,0.000015535197,0.000015115823,0.00002220157,0.00003129047,0.000030498099,0.000025764128,0.000022178885,0.0000195947,0.000019579027,0.000018868706,0.000018993747,0.00001847551,0.000018966559,0.000018650591,0.000018997858,0.000018928504,0.00001996815,0.000019226434,0.000019139829,0.000019039593,0.000019990292,0.000019356652,0.00001940661,0.000018904657,0.000019420533,0.000019269184,0.000019109099,0.000018805365,0.000019554043,0.0000189114,0.000019176956,0.000018565217,0.000019325424,0.00001892753,0.000018941453,0.000018829394,0.00001978257,0.000019355875,0.000019814386,0.00001915188,0.000019932897,0.000019401392,0.00001925682,0.000019058922,0.000019816616,0.000019364923,0.000019375655,0.000018750103,0.000019435913,0.000019102501,0.000018942572,0.000018779736,0.000019664523,0.000019209298,0.00001933842,0.000018818819,0.000019738041,0.000019305622,0.000019284553,0.000019164614,0.000020132651,0.000019477271,0.000019303045,0.000018741217,0.000019492694,0.000019042152,0.00001888399,0.000018770696,0.0000197263,0.000019148794,0.000019176407,0.000018709841,0.00001965515,0.000019210873,0.000019142311,0.000019006793,0.000019975942,0.00001934091,0.000019132238,0.000018632563,0.000019401208,0.000018947812,0.000018774885,0.000018645433,0.000019654794,0.000019104651,0.000019199755,0.000018706434,0.000019649058,0.000019165876,0.000019098732,0.000018954535,0.00001991724,0.000019272951,0.000019092522,0.000018573983,0.000019346464,0.000018881197,0.000018722336,0.000018611343,0.00001967681,0.000019121222,0.000019213017,0.000018712642,0.000019703042,0.00001920523,0.0000191462,0.000018988494,0.000019968551,0.000019295903,0.000019116134,0.000018579422,0.000019376283,0.000018907722,0.000018735715,0.000018600056,0.000019630366,0.000019100244,0.000019186798,0.000018694805,0.000019672045,0.000019200434,0.000019129502,0.00001897881,0.000019935747,0.000019289262,0.000019107112,0.000018585057,0.000019358571,0.000018922676,0.000018761835,0.000018636705,0.000019666042,0.000019126748,0.00001919139,0.00001868732,0.000019649227,0.000019176754,0.000019114384,0.000018969507,0.000019928184,0.000019262845,0.000019061248,0.000018530689,0.000019298057,0.000018852517,0.00001867385,0.000018569219,0.000019591113,0.000019065139,0.00001914569,0.00001866073,0.000019597575,0.000019094343,0.000019011723,0.000018875851,0.000019832836,0.000019190822,0.000019034493,0.000018551093,0.000019326015,0.000018850236,0.000018672747,0.000018553554,0.00001956419,0.000019034618,0.000019143445,0.000018714232,0.000019705487,0.000019289077,0.000019243585,0.000019119561,0.000020115205,0.000019472442,0.000019242687,0.000018707184,0.000019472274,0.000019040483,0.00001888019,0.000018743094,0.000019751524,0.00001923832,0.000019342811,0.000018821243,0.000019774161,0.000019280727,0.000019185278,0.000019006593,0.000019897912,0.000019267143,0.000019010273,0.000018474348,0.000019201972,0.000018764198,0.000018595889,0.000018419427,0.000019537974,0.000019055706,0.000019249863,0.000018728353,0.00001986746,0.000019327157,0.00001937985,0.000019337738,0.000020510428,0.00002015084,0.000020440464,0.000019925048,0.00002041181,0.000019801844,0.000019798785,0.000019642857,0.000020281766,0.000020106114,0.000020403986,0.000020062369,0.000020463714,0.000019955416,0.000019818619,0.000019654888,0.000020120711,0.000019775027,0.000019722764,0.000019216737,0.000019671126,0.000019315474,0.000019295903,0.000019192195,0.00001999563,0.000019698948,0.00002011296,0.000019791874,0.00002038201,0.000019753503,0.000019756855,0.000019508314,0.000020280799,0.000019793517,0.000019439434,0.000018640189,0.000018669274,0.000018886638,0.000019392292,0.000019986137,0.000021158983,0.00002108556,0.000021711287,0.00002137353,0.00002248453,0.000023689216,0.00002739564,0.000026380727,0.000017569133,0.000011078556,0.000013787002],[0.000016704322,0.000015526119,0.00001486559,0.000024618867,0.000029029325,0.000028872424,0.000025265432,0.000021990934,0.00002037243,0.000019830304,0.000020031073,0.00001967274,0.000020026087,0.000019626135,0.00002014642,0.00001964016,0.000020424875,0.000020330855,0.000020863734,0.000020239047,0.000020983376,0.000021235435,0.000021152306,0.00002048951,0.000020454132,0.000020731582,0.000021072214,0.000020655289,0.000020912918,0.000020967136,0.00002101043,0.000020142712,0.000020352272,0.000020232235,0.000020817366,0.000020644162,0.000021279811,0.000021095275,0.000021473292,0.000020586931,0.000020949006,0.00002082517,0.000021334146,0.000020878382,0.000021212603,0.000021157592,0.000021159283,0.00002051753,0.00002049459,0.000020577883,0.000020931115,0.000020774112,0.000021156118,0.000020972993,0.000021131458,0.000020380261,0.000020736643,0.000020833097,0.000021210742,0.000020786894,0.000021357107,0.000021146054,0.00002118319,0.000020355496,0.00002044062,0.000020622892,0.00002087446,0.000020636959,0.000021127527,0.00002093872,0.00002107356,0.000020252619,0.000020586285,0.0000208102,0.000021122189,0.00002071658,0.00002122414,0.000021048994,0.000021073982,0.000020240184,0.000020329888,0.000020555935,0.000020807145,0.000020555955,0.000021045502,0.000020884934,0.00002105028,0.00002024812,0.0000206005,0.0000207612,0.000021026483,0.00002061129,0.000021122009,0.000020945488,0.00002098768,0.00002014886,0.000020257428,0.000020460786,0.000020702775,0.000020459518,0.000020971294,0.000020832023,0.000021033404,0.000020211774,0.000020587226,0.000020778452,0.000021109263,0.000020680813,0.000021206595,0.00002102476,0.000021056885,0.000020197456,0.0000202843,0.000020515221,0.000020773063,0.000020514633,0.00002099809,0.000020830492,0.000021055379,0.000020233816,0.000020583457,0.000020775875,0.000021096483,0.000020678546,0.00002119018,0.000021003036,0.000021026282,0.000020185249,0.000020266085,0.000020471756,0.000020753836,0.00002050026,0.00002099795,0.0000208294,0.000021033946,0.000020205625,0.000020538066,0.000020731582,0.000021056383,0.000020632766,0.000021144135,0.000020969475,0.000020991121,0.00002014256,0.00002022311,0.000020437676,0.000020710339,0.000020440133,0.000020950843,0.000020785052,0.000020996147,0.000020152973,0.000020517373,0.000020696736,0.000020985137,0.000020552563,0.000021071086,0.000020895674,0.00002094569,0.000020095284,0.000020243082,0.00002044495,0.000020664509,0.000020430896,0.00002089151,0.000020802701,0.000020974014,0.000020224441,0.000020616637,0.000020834326,0.000021159347,0.000020791078,0.000021366763,0.000021177211,0.000021198914,0.000020310974,0.000020391322,0.00002061021,0.000020864549,0.000020647392,0.00002112495,0.00002093902,0.000021161666,0.000020395211,0.000020708463,0.000020858262,0.000021163605,0.000020753658,0.00002118327,0.000021016062,0.000020942234,0.000020135416,0.000020122226,0.000020342786,0.000020730415,0.000020441672,0.00002098778,0.000020731602,0.00002118319,0.000020193702,0.000020824791,0.000020809943,0.000021316819,0.000020829262,0.000021588832,0.00002128722,0.000021478842,0.000021071268,0.00002132426,0.000021135487,0.000021106121,0.000021234138,0.000021456342,0.000021419502,0.000021274354,0.000021198792,0.000021500236,0.000021534526,0.000021491362,0.000021353055,0.000021666094,0.000021373815,0.000021086827,0.00002047279,0.000020780195,0.00002071733,0.000020984256,0.000020811729,0.000021369637,0.000021134561,0.000021254034,0.000020913576,0.000021568952,0.000021488,0.000021596472,0.000021258167,0.000021469914,0.00002164825,0.000020671328,0.000020426629,0.000019554302,0.000019854015,0.000020104064,0.00002066644,0.000021211694,0.000022209722,0.000021576689,0.00002181173,0.000021356253,0.000022050071,0.000024451783,0.000025450961,0.000026700902,0.000018644792,0.000011416976,0.000013600506],[0.000016349506,0.000014733992,0.00001567023,0.000023548286,0.000029754125,0.000028660805,0.000023356346,0.00002121398,0.000018396746,0.000019566352,0.000019343383,0.000020378084,0.000019293328,0.000019729743,0.000019490482,0.000019819148,0.000019406241,0.000020305473,0.00002014792,0.000020959636,0.000020634321,0.000021512073,0.00002084146,0.000020817803,0.000020076779,0.000020703921,0.000021155553,0.000021635988,0.000020878166,0.000021295098,0.000020482965,0.000020289233,0.00001937231,0.00001977733,0.000020284358,0.000020958696,0.000020500182,0.000020894595,0.000020309075,0.00002048105,0.000019782628,0.000020339856,0.000020700447,0.000021085802,0.000020552134,0.000020856434,0.000020516434,0.000020476344,0.000019788176,0.000020127065,0.000020614318,0.000021048712,0.000020630503,0.000020751897,0.000020366486,0.000020434325,0.000019825557,0.000020367885,0.000020575784,0.000020971433,0.000020525182,0.000020786558,0.0000203647,0.000020397449,0.000019725247,0.000020198479,0.00002045944,0.000020937681,0.00002050624,0.000020613237,0.000020292311,0.000020321088,0.000019735407,0.000020350779,0.000020545822,0.000020935706,0.000020498675,0.000020729762,0.00002034222,0.00002032229,0.000019666137,0.000020141177,0.000020403713,0.00002084818,0.000020419384,0.000020520483,0.000020220179,0.00002028933,0.000019679588,0.000020273546,0.000020407391,0.0000207865,0.000020338613,0.000020559875,0.000020183401,0.000020165508,0.000019542818,0.00002000986,0.000020269701,0.000020705145,0.000020313395,0.000020429472,0.00002015109,0.000020229996,0.00001962857,0.00002025542,0.000020427331,0.000020840846,0.000020396788,0.000020651014,0.000020260539,0.000020255402,0.000019591187,0.00002007343,0.00002032386,0.000020789967,0.000020371614,0.00002047191,0.000020185249,0.00002025322,0.000019663099,0.000020271691,0.000020442627,0.000020854763,0.000020423513,0.000020655269,0.000020271016,0.000020246825,0.000019594494,0.00002006166,0.000020327154,0.000020775757,0.00002037756,0.000020480895,0.000020194182,0.000020247482,0.000019647036,0.000020264599,0.000020422109,0.000020804368,0.000020373012,0.00002060396,0.000020228414,0.000020198286,0.000019564282,0.000020021218,0.000020292195,0.000020711741,0.000020327774,0.000020400914,0.00002012691,0.000020169009,0.000019585974,0.00002018729,0.000020346219,0.000020715119,0.000020288207,0.000020511505,0.000020134341,0.000020118103,0.000019468374,0.000019955321,0.000020215764,0.0000206547,0.000020256579,0.000020391011,0.000020147036,0.000020228606,0.000019668838,0.000020318877,0.000020527119,0.000020985357,0.000020577452,0.000020813952,0.000020402214,0.000020359554,0.000019704885,0.00002017049,0.000020458485,0.000020922731,0.000020484156,0.00002059025,0.00002034682,0.000020430974,0.000019853995,0.000020422929,0.000020655623,0.000021032181,0.000020663208,0.000020840904,0.000020508238,0.000020286157,0.000019695171,0.000020043379,0.000020494297,0.000020781265,0.000020454389,0.000020475094,0.000020247811,0.000020225578,0.000019551115,0.000020271016,0.000020275616,0.000020846292,0.000020122976,0.000020625352,0.00002027842,0.000020740203,0.000019973675,0.000020637157,0.000020645894,0.000021295951,0.000020351032,0.000020665357,0.000020353107,0.000020701611,0.000020027921,0.00002068103,0.000020965974,0.00002163409,0.000020929856,0.000021002315,0.000020371497,0.000020179494,0.000019445943,0.000020033422,0.000020369827,0.000020983198,0.000020340127,0.000020569878,0.000020158703,0.000020476675,0.000020112482,0.000020918222,0.000021225818,0.000022328097,0.000021755952,0.000022112506,0.00002131816,0.000020496995,0.000019335526,0.00001939344,0.000020666088,0.000021002996,0.000021304484,0.000021628253,0.00002190499,0.000022221926,0.000021504853,0.000021635331,0.00002305764,0.00002516278,0.000025322575,0.000017654573,0.000011257137,0.000013752702],[0.000016810465,0.000013666971,0.00001558623,0.000023712904,0.000032654527,0.000030859886,0.000027178356,0.000022170721,0.000020380105,0.00001987527,0.000020493282,0.000020158395,0.000020368429,0.00001996815,0.00002028842,0.000019683212,0.00002050816,0.000020800897,0.00002181225,0.000021289676,0.00002206572,0.000022241387,0.000022584158,0.00002126689,0.000021192545,0.000021111033,0.000022297498,0.000022039305,0.000022410397,0.00002195598,0.000021795035,0.000020529056,0.000020298154,0.000020028894,0.000021051806,0.000020892645,0.000021836497,0.000021349491,0.000021912745,0.000020594553,0.00002094601,0.000020837328,0.0000219524,0.000021368089,0.000021804804,0.000021480502,0.000021819782,0.000020843667,0.000020679985,0.000020659309,0.000021583748,0.0000212635,0.00002180965,0.000021334083,0.000021783502,0.000020682686,0.00002095612,0.000020968575,0.000021858124,0.000021204089,0.000021660762,0.000021324362,0.00002164573,0.000020712769,0.00002063198,0.000020785568,0.000021444908,0.000021130489,0.000021579137,0.000021204756,0.000021634565,0.000020602192,0.000020826958,0.000020939879,0.000021819013,0.000021190586,0.000021572163,0.000021308364,0.000021563092,0.00002066039,0.000020561876,0.000020711563,0.000021403881,0.000021070826,0.000021528285,0.000021139942,0.00002159431,0.000020551173,0.000020796017,0.000020877407,0.00002170727,0.000021044418,0.000021417336,0.000021120073,0.000021378728,0.000020478315,0.000020359612,0.000020568976,0.000021217702,0.000020895714,0.000021314949,0.00002099929,0.00002145794,0.000020439744,0.000020670994,0.000020800042,0.000021662003,0.00002103543,0.000021440472,0.000021166734,0.00002148175,0.000020548214,0.000020421252,0.00002062106,0.00002125513,0.00002094579,0.00002139886,0.00002103206,0.00002149249,0.000020457586,0.000020685251,0.000020798554,0.000021657375,0.000021040445,0.00002143818,0.000021170588,0.000021465225,0.000020539983,0.000020405892,0.000020621457,0.000021268652,0.000020960197,0.000021401229,0.000021065322,0.000021531712,0.000020478197,0.000020686199,0.000020787926,0.000021652462,0.000021017022,0.000021412026,0.000021135045,0.000021442454,0.000020525866,0.000020411753,0.000020587539,0.000021230839,0.00002090853,0.00002135886,0.000021006823,0.00002146637,0.000020418567,0.000020643827,0.000020745229,0.00002158951,0.000020941237,0.000021340291,0.000021048812,0.000021351101,0.000020432473,0.000020336558,0.000020560838,0.000021194022,0.000020884296,0.000021331276,0.000020999432,0.000021490849,0.000020481442,0.000020736032,0.000020907055,0.000021789941,0.000021223006,0.00002163141,0.00002131993,0.000021585744,0.000020674464,0.000020574116,0.00002074066,0.000021406024,0.00002111935,0.000021553695,0.000021179674,0.000021614851,0.000020652767,0.000020903188,0.000020941276,0.000021853393,0.000021256852,0.000021598757,0.000021384947,0.000021548536,0.000020645777,0.000020443973,0.000020544629,0.000021335549,0.000021021311,0.000021525184,0.000021099258,0.000021673224,0.00002052471,0.000020883203,0.000020921416,0.00002194794,0.000021083832,0.000021575639,0.000021169095,0.000021719528,0.00002098724,0.000020929776,0.000021256506,0.000021867236,0.000021527298,0.000021272303,0.000021446092,0.000021630687,0.000021174385,0.000020926203,0.000021452966,0.000022315495,0.000022087446,0.000022037098,0.000021983911,0.000021846015,0.00002073781,0.000020353535,0.000020519154,0.000021374772,0.000021131678,0.00002138609,0.000020990403,0.000021153695,0.00002067878,0.000020903088,0.0000213632,0.000022533279,0.000022469869,0.000022500017,0.000022712908,0.000022069466,0.000020878722,0.000019628944,0.000019464756,0.000020281013,0.000020764091,0.000021547323,0.000021681884,0.000021701682,0.000021283688,0.000020259537,0.000020460806,0.000022450977,0.000023924857,0.000025686997,0.000017733966,0.000011374288,0.000013119424],[0.000017085758,0.000014870057,0.000017020431,0.00002586018,0.000033249406,0.000031019037,0.000024735853,0.000021834081,0.000018607827,0.000019427665,0.000018749906,0.00002005156,0.000019421774,0.000020167412,0.000019380866,0.000019853824,0.000019446741,0.000020799846,0.000019992236,0.000020978534,0.000020846788,0.0000220519,0.000021163401,0.00002065267,0.00001984048,0.00002011323,0.000020274205,0.000020850228,0.000020885274,0.000021450676,0.00002040171,0.00001991291,0.00001910775,0.000019471663,0.000019790346,0.000020537496,0.000020806827,0.00002146805,0.000020516845,0.00002028488,0.000019873714,0.000020466718,0.00002045628,0.000020763022,0.000020574666,0.000021019288,0.00002034657,0.000020002992,0.000019683266,0.000020036596,0.000020230402,0.000020442785,0.000020539594,0.00002083409,0.000020207495,0.000019867442,0.000019989206,0.000020533991,0.000020519154,0.000020589778,0.00002040383,0.000020682706,0.00001999216,0.000019613246,0.000019575144,0.000020067631,0.000020110792,0.000020259013,0.000020375152,0.000020592312,0.000020044583,0.000019645706,0.000019842504,0.000020426882,0.000020500278,0.000020574527,0.000020424273,0.000020670755,0.000020025609,0.000019587187,0.000019554509,0.000020000874,0.000020101359,0.000020222109,0.000020358135,0.000020545998,0.000020026335,0.000019608084,0.000019798483,0.000020365882,0.000020409552,0.000020458407,0.000020285132,0.000020495156,0.000019835505,0.00001937876,0.000019365569,0.000019805148,0.00001993765,0.000020030307,0.000020155492,0.00002035334,0.000019859466,0.00001944418,0.000019655563,0.000020242114,0.000020333475,0.00002038652,0.00002023343,0.000020482927,0.000019843112,0.000019402132,0.000019404279,0.000019866817,0.000019958708,0.000020069792,0.000020184729,0.000020394376,0.000019901574,0.000019495166,0.000019704077,0.000020279002,0.000020359028,0.000020417572,0.000020255246,0.000020505226,0.00001987021,0.000019432391,0.000019413923,0.00001988947,0.000019995477,0.000020101896,0.00002021644,0.000020429921,0.000019925503,0.000019511273,0.000019696317,0.000020268617,0.000020367808,0.000020433195,0.000020261836,0.000020502821,0.000019900797,0.0000194452,0.000019447278,0.000019882928,0.000019978284,0.000020061489,0.000020205027,0.000020382886,0.00001989662,0.000019468804,0.000019700017,0.000020260153,0.000020331265,0.00002035864,0.000020207264,0.000020441128,0.0000198097,0.000019381661,0.000019412164,0.00001988966,0.000019965619,0.000020074769,0.000020204547,0.000020426862,0.000019961202,0.000019600342,0.000019826162,0.000020442745,0.00002052843,0.000020630916,0.000020432357,0.00002067119,0.000019990845,0.000019564151,0.000019535199,0.000020005185,0.000020101072,0.000020245185,0.000020357049,0.00002055825,0.00002006564,0.000019684638,0.000019879648,0.000020433703,0.000020595082,0.00002067685,0.000020584457,0.000020783425,0.000020215995,0.000019618894,0.000019565681,0.000019803638,0.000020158528,0.000020142137,0.000020406458,0.000020455986,0.000020061832,0.000019498624,0.000019821227,0.000020429183,0.000020560621,0.00002061196,0.000020357998,0.000020692532,0.000020100631,0.000019867366,0.000019920904,0.00002063739,0.000020701966,0.000020995827,0.000020762289,0.000021023696,0.000020499614,0.000020305242,0.000020287454,0.000020959616,0.00002109268,0.000021311553,0.00002109455,0.000021185231,0.000020606889,0.000019837187,0.000019355784,0.000019707366,0.000019859259,0.000020233874,0.000020317637,0.000020599855,0.000019992865,0.000019904632,0.000020097374,0.000020966534,0.00002118113,0.000021952694,0.0000221479,0.000022483286,0.000022297349,0.000020807105,0.000019723553,0.000019177887,0.000020439295,0.000020684305,0.000021583726,0.000021410353,0.000022097835,0.000022204216,0.000021365848,0.000021628583,0.000022712844,0.000025008147,0.000025537978,0.00001787273,0.000010819077,0.000013337885],[0.00001694748,0.00001563682,0.000015315281,0.00002800886,0.00003326466,0.00003139209,0.000027099986,0.000022579678,0.00002039492,0.00002002626,0.000019947349,0.000019701934,0.000020651232,0.000020115416,0.000020909129,0.000020427817,0.000020807443,0.000020571997,0.000020368467,0.000020552583,0.000021445398,0.00002173082,0.00002184133,0.000020874342,0.000020529018,0.00002023233,0.000020214935,0.000020421916,0.000021302125,0.000021573745,0.00002165428,0.000020512227,0.000020108837,0.000020135416,0.00002045628,0.000020773517,0.00002175898,0.000021712447,0.000021498268,0.00002083564,0.000020834923,0.00002088876,0.000021000613,0.000021052607,0.00002153691,0.000021503314,0.000021229078,0.000020732588,0.000020500043,0.000020693618,0.000020665513,0.000020751264,0.000021285168,0.000021141555,0.000020896628,0.000020489762,0.000020617583,0.000021010932,0.000021029753,0.000021007325,0.000021368252,0.000021279142,0.000020849513,0.00002035794,0.000020274167,0.000020754767,0.00002052943,0.000020652353,0.00002113047,0.000021033564,0.0000207424,0.000020317522,0.000020392761,0.00002092794,0.00002100524,0.000021031077,0.000021374997,0.000021283951,0.000020856254,0.000020341367,0.000020236479,0.000020703408,0.000020521189,0.000020661455,0.000021127407,0.000021039903,0.000020747544,0.000020328764,0.00002038899,0.000020927839,0.00002094615,0.000020954541,0.000021254116,0.000021147887,0.000020676947,0.000020130748,0.000019985391,0.000020490916,0.000020301815,0.000020460944,0.00002087862,0.000020812504,0.0000205538,0.000020108013,0.000020157913,0.000020722944,0.000020776331,0.000020803513,0.000021117577,0.000021026364,0.00002061078,0.000020114727,0.000020010757,0.000020559562,0.000020329791,0.00002046024,0.000020899757,0.000020824236,0.000020577256,0.000020151801,0.000020203775,0.000020768626,0.000020814348,0.000020842594,0.00002116564,0.000021071068,0.00002066108,0.000020160182,0.00002002227,0.000020549272,0.000020348256,0.000020466583,0.000020901074,0.00002080637,0.000020557622,0.00002013841,0.00002023233,0.000020786341,0.000020842832,0.000020879896,0.000021196001,0.000021093403,0.000020698672,0.000020213836,0.000020074407,0.000020584988,0.000020359883,0.000020480426,0.000020901352,0.000020816691,0.000020551035,0.000020130212,0.000020212852,0.000020772726,0.000020815103,0.000020831108,0.000021148593,0.000021059555,0.000020643394,0.000020153377,0.000020052861,0.000020615735,0.000020376841,0.000020523654,0.000020981237,0.000020934247,0.000020701671,0.00002030404,0.000020378453,0.000020962696,0.00002101109,0.00002103234,0.000021346072,0.000021243375,0.000020799864,0.000020306617,0.000020200732,0.000020721738,0.000020491932,0.000020649144,0.000021093283,0.00002101233,0.000020706764,0.000020350546,0.000020407177,0.0000208936,0.000021034886,0.000021055419,0.000021391535,0.000021273236,0.000020868529,0.00002025828,0.00002010506,0.000020465508,0.000020462874,0.000020666323,0.000021062851,0.00002095534,0.000020713103,0.000020266763,0.00002046625,0.000021081198,0.000021322267,0.000021204189,0.000021595339,0.000021322125,0.000020949286,0.000020712352,0.000020618367,0.000021297434,0.00002117174,0.000021365684,0.000021525122,0.000021418336,0.000021019006,0.000021065542,0.000020793279,0.00002133557,0.000021234038,0.00002164121,0.000021721393,0.00002174618,0.00002130298,0.000020710102,0.000020299782,0.00002061471,0.000020383448,0.000020486012,0.000021059253,0.000020952162,0.00002052115,0.000020378122,0.000020576608,0.000020925625,0.000021163241,0.000021499458,0.000021697522,0.000022447251,0.000021651571,0.000021083168,0.000019163133,0.000019300302,0.00001901263,0.000020642568,0.000020753063,0.000021720109,0.000021463811,0.000021985505,0.000020984959,0.000021517939,0.000023118213,0.00002388797,0.00002473123,0.00001802973,0.000010710137,0.000013143594],[0.000016015892,0.000016659284,0.000015639043,0.000024661424,0.00003078402,0.000031602078,0.00002589473,0.000023125116,0.00001955559,0.000020285423,0.000018907633,0.000019874225,0.00001885989,0.000020284146,0.000020140506,0.000021043978,0.000019667976,0.00002061009,0.000019351372,0.000020638987,0.000019937515,0.00002160803,0.000020662934,0.000021458145,0.000019870871,0.000020523263,0.000019702593,0.000020906917,0.000020088213,0.000021933442,0.000020747306,0.000021416336,0.000019285233,0.00002024667,0.000019726658,0.000020663621,0.000019901652,0.000021246253,0.00002015134,0.00002110105,0.000019598006,0.000020874142,0.000020067764,0.000021310028,0.000020178724,0.00002147532,0.000020391633,0.00002120429,0.0000196159,0.000020751957,0.000020113403,0.000021093121,0.000019915151,0.000020953481,0.000019951838,0.000020807976,0.000019589635,0.000020842357,0.000020156222,0.000021238493,0.000020183787,0.000021189513,0.000020168374,0.000020867075,0.000019539708,0.000020767497,0.000020086605,0.00002108208,0.000019968951,0.000020917565,0.0000199386,0.000020725573,0.000019494664,0.000020800122,0.0000201627,0.000021276199,0.000020249974,0.000021222133,0.000020205336,0.000020829082,0.00001950945,0.000020707199,0.000020066484,0.000021067452,0.000019983583,0.000020927022,0.000019953723,0.000020734646,0.000019506324,0.0000207979,0.0000201406,0.000021233389,0.0000201788,0.000021109,0.000020065316,0.00002063507,0.000019325682,0.000020488864,0.000019894156,0.000020928697,0.000019819754,0.00002078394,0.000019832818,0.000020587462,0.000019338679,0.000020585656,0.000019998986,0.000021070142,0.000020034244,0.000020977635,0.000020011961,0.000020660273,0.00001939183,0.00002058173,0.00001998238,0.000020979916,0.000019839912,0.000020815658,0.000019874511,0.000020635305,0.000019416922,0.00002065206,0.000020098294,0.000021152164,0.000020096166,0.000021043616,0.0000200603,0.000020696914,0.000019392071,0.000020583771,0.00001996899,0.000020940119,0.000019775838,0.000020750787,0.000019818392,0.000020608677,0.000019414181,0.000020671881,0.000020084019,0.000021170245,0.000020131536,0.0000210777,0.000020098829,0.000020743051,0.000019454605,0.000020629619,0.000019997462,0.000020974396,0.00001982724,0.000020771517,0.000019816465,0.000020571959,0.000019382918,0.000020647076,0.000020063362,0.00002110894,0.00002007077,0.0000210062,0.000020044563,0.000020704472,0.00001945338,0.000020666776,0.000020036441,0.00002103557,0.000019905105,0.000020914591,0.000019949117,0.000020755797,0.000019539464,0.000020832818,0.000020186095,0.000021286287,0.000020178994,0.00002119574,0.000020162892,0.000020840625,0.000019513525,0.000020781146,0.000020098867,0.000021116168,0.000019952067,0.000020941556,0.000019925103,0.000020746871,0.000019463232,0.000020798456,0.000020128735,0.000021323507,0.000020270898,0.000021305415,0.000020241614,0.000020724841,0.000019297266,0.000020429883,0.000019935236,0.000020968475,0.000019907555,0.000020790207,0.000019856816,0.000020611842,0.00001947703,0.000020854564,0.000020298019,0.000021385049,0.000020373574,0.000021268754,0.000020298774,0.000021103746,0.000019785874,0.000021061243,0.000020369944,0.000021517078,0.000020341096,0.000021351425,0.000020489235,0.00002139429,0.000020093541,0.000021182503,0.000020407626,0.00002179726,0.000020842197,0.000021842392,0.000020666816,0.000021296682,0.000019647654,0.000020943653,0.00001999439,0.000021055139,0.00001989264,0.00002098738,0.00001992862,0.00002092341,0.000019687153,0.000020984036,0.000020066425,0.000021504462,0.000020785687,0.000022168608,0.000021487222,0.000021340698,0.000019352497,0.000019307243,0.00001976628,0.000020477379,0.000020800815,0.000021145306,0.000022090586,0.00002225102,0.000021584407,0.000021988208,0.000024141304,0.000024658648,0.000023043947,0.000016214062,0.00001069908,0.000013064476],[0.000016030133,0.000016295275,0.000014110809,0.000021690179,0.000031837964,0.0000346751,0.000031215157,0.00002490222,0.000021846434,0.000020961656,0.000020577962,0.000019206878,0.000020063248,0.000020381447,0.00002138095,0.000020694248,0.00002110574,0.000020901512,0.000021037155,0.000020435222,0.000020882027,0.000021510308,0.000021925014,0.000021290041,0.000021245138,0.000020984317,0.000021080112,0.000020900436,0.000021071812,0.000021792768,0.000022296967,0.000021068776,0.00002065661,0.000020316631,0.000020484878,0.000020135243,0.000020582514,0.000021308098,0.000021648682,0.000020822012,0.000020882246,0.000021220658,0.000021315986,0.00002126413,0.000021277112,0.000022064563,0.000022467488,0.000021402004,0.000021003958,0.00002118016,0.00002121667,0.000020916807,0.000020950385,0.000021588421,0.000021716298,0.00002087235,0.00002076124,0.000021164371,0.000021401165,0.000021211754,0.000021257723,0.000022023927,0.000022411039,0.000021357495,0.000020993564,0.000021230819,0.000021304564,0.000020963756,0.000021028269,0.000021674607,0.000021862814,0.000021004438,0.000020799605,0.000021209064,0.000021421667,0.000021305052,0.0000212776,0.000022115017,0.000022418433,0.000021317672,0.000020933989,0.000021206737,0.000021283384,0.000020966174,0.000021030457,0.000021694686,0.000021895594,0.000021022535,0.000020823702,0.000021229887,0.00002141562,0.00002127342,0.000021235395,0.000022022456,0.000022283723,0.000021150106,0.00002076817,0.000021028913,0.000021111033,0.000020824931,0.000020851083,0.000021552894,0.000021747863,0.000020920535,0.000020639498,0.000021026764,0.000021234686,0.000021111333,0.000021100244,0.000021840935,0.000022221588,0.000021182039,0.000020826481,0.00002110584,0.000021218006,0.000020900974,0.000020903546,0.00002157282,0.000021753815,0.000020950343,0.00002071109,0.000021110489,0.00002131564,0.000021193355,0.000021146516,0.000021878792,0.000022259064,0.000021228976,0.000020804804,0.000021077318,0.000021184786,0.000020836891,0.000020816056,0.000021516975,0.000021725724,0.000020933709,0.000020704198,0.000021137143,0.000021364154,0.000021236105,0.000021172122,0.000021910717,0.000022261209,0.000021233673,0.000020863097,0.000021135467,0.000021211308,0.000020900216,0.000020899837,0.000021554786,0.000021697791,0.000020884696,0.000020646663,0.000021081178,0.000021286978,0.000021148815,0.000021105538,0.000021863045,0.000022242917,0.000021234462,0.000020893858,0.000021176242,0.000021266382,0.000020921076,0.000020937103,0.000021628768,0.000021836247,0.000021043055,0.000020832598,0.000021231708,0.000021424588,0.000021271817,0.00002122521,0.000022017206,0.000022385108,0.000021303284,0.000020973674,0.000021263744,0.000021330197,0.000020991904,0.000021019647,0.00002169082,0.000021861835,0.000020994286,0.000020789828,0.000021185715,0.000021406433,0.000021277194,0.000021262244,0.000022171505,0.000022355624,0.000021208478,0.000020657299,0.000020994486,0.000021157914,0.000020938322,0.000021025482,0.000021655125,0.000021825317,0.00002091545,0.00002079804,0.000021279448,0.00002147663,0.000021297536,0.000021425549,0.000022063216,0.000022362405,0.000021577163,0.000021086425,0.000021573478,0.000021550017,0.000021244792,0.00002123805,0.000022088143,0.00002224122,0.000021740521,0.00002121145,0.0000217461,0.000021460375,0.000021478147,0.000021641292,0.000022591588,0.000022922894,0.000021611842,0.000021078786,0.000021186686,0.000021082826,0.00002068817,0.000020850764,0.000021111375,0.000021166348,0.000020856392,0.000020890791,0.000021055921,0.000020833175,0.000020867892,0.000021012955,0.000022127822,0.00002224385,0.000021073118,0.000019939267,0.000019183339,0.000019381476,0.000019767145,0.000020544001,0.000021346457,0.000021172951,0.000021687178,0.000020407608,0.000021181333,0.000024793999,0.000023790777,0.000021178483,0.000015423817,0.000010275451,0.000012406822],[0.000015876716,0.000014948528,0.000014010885,0.000019577907,0.0000322886,0.000034038643,0.000027806274,0.000023445387,0.000020300324,0.000019583547,0.000018306684,0.000018434679,0.000018338504,0.000019781157,0.000019365421,0.000020350177,0.000019814197,0.000020755537,0.000019422645,0.000020395562,0.000020308882,0.000021662456,0.000020188156,0.000020695157,0.000020266009,0.000020809644,0.000019990348,0.000020485271,0.00001993687,0.000021040605,0.00001960653,0.0000196923,0.000019053306,0.000019613226,0.000019320576,0.000020077987,0.000020055999,0.000021428063,0.000020203215,0.000020632453,0.000020389884,0.000021395064,0.000020673202,0.000021045604,0.000020668884,0.000021875683,0.000020833275,0.000020738384,0.000020353767,0.000020808217,0.000020545353,0.000020849731,0.000020925465,0.00002170462,0.000020716383,0.000020571291,0.000020478237,0.000021020809,0.000020632157,0.000020705542,0.000020671841,0.000021677066,0.000020975855,0.000020559326,0.000020315952,0.00002061601,0.000020456473,0.000020570917,0.000020767142,0.000021535965,0.000020716701,0.000020572683,0.000020477517,0.000020975294,0.000020598321,0.000020641486,0.000020653122,0.000021622478,0.000020960077,0.000020439431,0.00002019736,0.000020524849,0.00002040862,0.000020506672,0.000020738344,0.000021537464,0.00002073441,0.00002058703,0.000020496076,0.00002098778,0.000020614887,0.000020647569,0.000020637626,0.000021590644,0.000020871395,0.000020312544,0.000020095054,0.000020384965,0.000020291458,0.000020405912,0.000020605277,0.000021420034,0.000020646603,0.000020511641,0.000020436311,0.000020869784,0.000020499321,0.000020559464,0.00002051933,0.000021464428,0.000020768388,0.000020343678,0.000020205125,0.000020492245,0.000020424175,0.000020531641,0.000020681959,0.000021457367,0.000020667743,0.000020526297,0.000020475485,0.00002091505,0.000020565169,0.000020589268,0.000020552328,0.000021473497,0.00002078866,0.000020341891,0.000020160393,0.000020450485,0.000020381933,0.000020492382,0.00002062541,0.00002142514,0.000020663347,0.000020547646,0.000020510193,0.000020993484,0.000020625312,0.000020661711,0.000020587187,0.000021533171,0.000020845517,0.00002039891,0.000020216072,0.00002052978,0.000020438867,0.000020549976,0.000020702875,0.0000214855,0.000020657299,0.000020509802,0.00002041991,0.000020880594,0.000020516354,0.000020545116,0.000020513948,0.000021455728,0.000020761714,0.000020332698,0.000020190042,0.000020512734,0.000020437754,0.00002055072,0.000020690815,0.000021527258,0.000020732055,0.000020638257,0.000020538222,0.000021034448,0.000020627533,0.000020685015,0.000020626256,0.000021610955,0.000020897365,0.000020456493,0.00002022909,0.000020607144,0.000020458523,0.00002058648,0.000020762644,0.000021589263,0.000020753678,0.000020632531,0.000020473102,0.000021009146,0.000020581514,0.00002063863,0.000020623933,0.00002168232,0.00002099713,0.00002041395,0.000020011063,0.000020324362,0.000020314266,0.000020533169,0.000020769538,0.00002161621,0.00002080272,0.000020630603,0.000020557269,0.00002108369,0.00002068168,0.00002065464,0.000020767238,0.000021755412,0.00002122347,0.000020930755,0.000020756628,0.000021317835,0.00002088872,0.000020977815,0.000021166874,0.000022318836,0.000021702695,0.000021593958,0.000021215435,0.000021531427,0.00002062779,0.000020639183,0.000020695374,0.000022082182,0.000021176847,0.000020736266,0.00002003751,0.000020595258,0.000019788062,0.00002048107,0.00002035899,0.000021633658,0.000020436119,0.000021352444,0.000020826163,0.000021681988,0.000020308824,0.000020918902,0.000020772864,0.000022150896,0.000021124466,0.000020529018,0.000019613057,0.000019011652,0.00001956654,0.000019791158,0.00002047859,0.000021022473,0.00002114466,0.000021380747,0.000020792288,0.000021763963,0.000024592,0.00002540438,0.000021119027,0.000015867421,9.796207e-6,0.000012504653],[0.00001571276,0.000013677937,0.0000121161165,0.000018846406,0.00003005419,0.000036930593,0.000029338105,0.000024558183,0.000021428246,0.000020041678,0.000019510064,0.000018807392,0.000019965466,0.000019998586,0.00002120793,0.00002090843,0.000021767843,0.0000207135,0.00002063676,0.000020878324,0.000022387796,0.000022015485,0.00002162155,0.000021002115,0.000021848164,0.000021241169,0.000021589038,0.000021243171,0.000021834207,0.00002169624,0.000021274273,0.000020269605,0.000020844007,0.000020276331,0.000021225473,0.000021480872,0.000022449007,0.000022295117,0.000021873597,0.000021300035,0.00002240653,0.000022000688,0.00002230758,0.000022318836,0.000022926239,0.00002269576,0.000022324433,0.000021618418,0.000021967458,0.00002139433,0.000021963227,0.000022231867,0.00002310067,0.000022774917,0.000022523784,0.000021748898,0.000022344944,0.000021900356,0.00002214699,0.000022205424,0.000022964641,0.000022857319,0.000022642773,0.000021543421,0.000021803538,0.00002141601,0.000021791853,0.00002194995,0.000022869375,0.000022674407,0.000022533,0.000021878104,0.00002230956,0.00002199519,0.000022205064,0.000022265198,0.000022926326,0.000022917648,0.0000226402,0.000021467109,0.000021733265,0.000021384825,0.000021748649,0.000021939572,0.000022856535,0.000022660139,0.000022560564,0.000021872407,0.000022309026,0.000021992171,0.000022195725,0.000022254735,0.00002289316,0.000022851738,0.000022563965,0.000021371003,0.000021614356,0.000021271717,0.000021623346,0.000021803184,0.000022697708,0.000022550175,0.000022458793,0.000021847078,0.000022250659,0.000021918198,0.000022108143,0.000022155504,0.000022838232,0.000022731196,0.000022487126,0.000021421258,0.000021671445,0.000021342063,0.000021721435,0.000021906184,0.000022782477,0.000022604067,0.000022459906,0.000021814185,0.000022222222,0.000021925076,0.000022113309,0.000022157701,0.000022805476,0.00002270221,0.000022445154,0.000021362383,0.000021627779,0.00002131753,0.000021718575,0.000021917886,0.00002276695,0.000022600942,0.000022487426,0.000021916027,0.000022343178,0.000022040125,0.000022246777,0.000022295224,0.000022919701,0.000022803215,0.000022528273,0.00002143493,0.00002171665,0.000021410293,0.00002178159,0.0000219741,0.00002285405,0.000022681954,0.000022519487,0.000021881024,0.000022267493,0.000021969721,0.000022145745,0.000022207902,0.000022824926,0.000022733364,0.000022448214,0.00002140292,0.00002168935,0.000021415337,0.000021792104,0.000021989717,0.000022868351,0.000022701777,0.000022588833,0.000021955604,0.00002236953,0.00002206656,0.000022299391,0.000022335124,0.000022965036,0.000022877162,0.000022631999,0.000021479947,0.000021786369,0.000021438895,0.000021821446,0.000022002472,0.000022923725,0.000022715463,0.000022626626,0.0000219393,0.000022385577,0.000022056925,0.000022276561,0.000022309154,0.00002291592,0.000023015067,0.000022669023,0.000021478698,0.000021518861,0.000021261696,0.000021724232,0.0000219398,0.000022879018,0.000022661738,0.000022569495,0.000021779782,0.000022288314,0.000021864109,0.000022042754,0.000022026385,0.000022894776,0.000022921275,0.000022912469,0.000021985756,0.000022547487,0.00002196884,0.000022264754,0.000022224976,0.000023456705,0.000023492454,0.00002383122,0.000023037157,0.000023365948,0.000022644932,0.000022222923,0.000022018572,0.00002259286,0.000022941877,0.000022785911,0.00002160265,0.000021763899,0.000021021913,0.000021476753,0.000021080452,0.000022730655,0.000022162138,0.00002252681,0.000021823924,0.000023089417,0.000022146463,0.00002207616,0.000021744274,0.000022472119,0.00002285152,0.000021915042,0.000021561817,0.00002055821,0.000020360194,0.000019867972,0.000020687658,0.000021062508,0.000022033611,0.000020764803,0.000021371103,0.000020276255,0.000021814705,0.000025417368,0.000024444298,0.00002088378,0.000016720036,0.000010207513,0.000012553797],[0.000015541436,0.000012164813,0.000012293531,0.000016559763,0.000026556612,0.000036913905,0.000028281884,0.000023305505,0.000020063746,0.00001928288,0.000018513025,0.0000185075,0.000018135352,0.000019151496,0.00001945659,0.000020394824,0.000020076626,0.000020487205,0.000019743879,0.000020683141,0.000020682824,0.00002151322,0.000020182188,0.000019732508,0.000019581772,0.000019995763,0.000020311749,0.000020370022,0.000020344687,0.000020875535,0.000019659967,0.000019036961,0.000018871424,0.00001955723,0.000020413348,0.000021109321,0.000021323589,0.00002161885,0.000020190138,0.000019864468,0.000020013144,0.000020644595,0.000021408434,0.00002194792,0.000021992277,0.000021846725,0.000020735517,0.000020122114,0.000019774612,0.000019699099,0.000020576706,0.00002106034,0.000021421543,0.000021559637,0.00002077859,0.00002025741,0.000020517315,0.00002049508,0.000021438385,0.000021873806,0.000022290184,0.000022101629,0.000021037455,0.00002019374,0.000020008029,0.000019787118,0.000020712809,0.000021186483,0.000021666321,0.000021780552,0.000020970312,0.000020471403,0.000020715139,0.000020744852,0.000021657086,0.00002207157,0.00002252116,0.000022225508,0.000021204998,0.000020251462,0.000020094612,0.00001980715,0.000020776371,0.00002123805,0.000021747406,0.000021807364,0.0000209895,0.000020482086,0.000020713065,0.000020712454,0.000021632419,0.000022041408,0.000022473747,0.000022156813,0.000021128315,0.000020164545,0.000019980573,0.000019678426,0.000020619313,0.000021044178,0.000021544674,0.000021616086,0.000020847485,0.000020371866,0.000020609916,0.000020599422,0.00002152461,0.000021937209,0.000022413902,0.000022120099,0.000021094571,0.000020137451,0.000020000112,0.00001974627,0.00002069342,0.000021145246,0.000021628068,0.000021694896,0.00002090833,0.000020403324,0.00002060339,0.000020619842,0.000021517099,0.000021911283,0.000022324519,0.00002202922,0.000021019547,0.000020069965,0.000019936453,0.0000196932,0.000020656333,0.000021115624,0.000021635267,0.00002172328,0.000020973894,0.000020504014,0.000020741172,0.000020768943,0.000021686807,0.00002207816,0.000022479064,0.000022145428,0.000021124566,0.000020179186,0.000020056495,0.000019806188,0.000020786518,0.000021242098,0.00002173169,0.000021803184,0.000021001815,0.000020482788,0.000020697309,0.000020699421,0.000021613718,0.000022010572,0.000022441985,0.000022126049,0.000021123338,0.000020182035,0.000020066846,0.000019827863,0.000020804626,0.000021263197,0.000021732769,0.000021801083,0.000021001853,0.0000205235,0.000020734607,0.000020766527,0.000021688917,0.000022088712,0.000022510232,0.000022195876,0.00002118796,0.000020243871,0.000020103162,0.000019836849,0.000020789254,0.000021245743,0.000021747903,0.000021840726,0.000021046968,0.000020578236,0.00002085711,0.000020895233,0.00002183658,0.000022210423,0.000022681588,0.000022310325,0.000021357066,0.000020283951,0.00002012432,0.000019799672,0.000020851758,0.000021265652,0.000021748589,0.0000217325,0.000020920557,0.000020329751,0.00002052665,0.000020387415,0.000021232498,0.000021620479,0.000022026616,0.000021862483,0.00002095528,0.000020295562,0.000020357515,0.000020095189,0.000020851183,0.000021357371,0.000021810567,0.000022205275,0.000021724398,0.000021488595,0.000021787178,0.000021320438,0.000021832875,0.000021827545,0.000022271444,0.000022036216,0.000021162978,0.000020112098,0.000019737214,0.000019273062,0.000019624638,0.000020073181,0.000020243217,0.000020875557,0.000020189387,0.000020531426,0.00002069705,0.000021124044,0.000020841144,0.000021427673,0.000021834,0.000022385855,0.00002145933,0.000020656962,0.000020543943,0.000019702593,0.000020940319,0.000020842574,0.000021240052,0.000021285272,0.000021273561,0.000021317694,0.000020456437,0.000020961395,0.000024576784,0.000025011484,0.000021174465,0.000015994341,0.000010449386,0.000012731208],[0.000016475817,0.000011101305,0.0000122875645,0.000017209255,0.00002483181,0.000039305723,0.000032576736,0.000024183815,0.000020825846,0.000020020225,0.000019718645,0.000018365334,0.000019264131,0.000019215344,0.000020826263,0.000019517041,0.000021929553,0.000021182483,0.000022319922,0.00002033522,0.000021953761,0.000021820884,0.000022200957,0.000019733525,0.000020525747,0.000020930474,0.00002240873,0.000021127991,0.000021582162,0.000021780468,0.00002169568,0.00001934864,0.000020033232,0.000020700052,0.00002271371,0.000021290956,0.000022560005,0.000022075359,0.00002218104,0.000019412497,0.000020436704,0.00002120609,0.000023079025,0.000022064753,0.00002245179,0.000022171609,0.00002212126,0.000019746476,0.000019943258,0.000020374937,0.000021884802,0.00002092806,0.000021890897,0.000021933127,0.000022034808,0.00001982741,0.00002046182,0.000021240963,0.000022911965,0.00002204061,0.00002248423,0.000022382183,0.000022334487,0.000019998739,0.000020123916,0.000020652551,0.000022201337,0.00002141403,0.000022230468,0.000022295499,0.000022341623,0.00002006811,0.000020691012,0.00002152391,0.00002329875,0.000022415443,0.000022757877,0.000022687707,0.000022556627,0.000020159681,0.000020182419,0.000020686237,0.00002225917,0.000021491915,0.000022285403,0.000022319773,0.000022395783,0.000020089383,0.000020681227,0.000021486687,0.000023252713,0.00002235394,0.000022698378,0.000022588098,0.000022456286,0.000020064703,0.000020108953,0.000020572978,0.000022095854,0.000021323487,0.000022114911,0.000022180597,0.000022257387,0.000019985127,0.000020598558,0.000021440694,0.00002318259,0.000022293565,0.000022661521,0.000022590038,0.000022468346,0.000020084995,0.000020150743,0.000020651743,0.00002220807,0.000021428288,0.000022210867,0.00002227053,0.00002236456,0.000020055233,0.000020637804,0.000021436177,0.00002317786,0.000022264308,0.000022601955,0.000022506754,0.000022381586,0.000020008734,0.00002006782,0.000020579708,0.000022162922,0.00002141315,0.000022218366,0.000022318156,0.000022413837,0.000020122765,0.0000207335,0.000021556369,0.000023328786,0.000022390552,0.000022724564,0.000022613447,0.000022492593,0.000020105213,0.00002017526,0.000020699163,0.000022285849,0.000021514,0.000022297943,0.00002234567,0.00002243518,0.000020129712,0.000020714922,0.000021524591,0.00002330235,0.000022393691,0.00002272363,0.00002263761,0.000022508066,0.000020140946,0.000020195204,0.000020727728,0.000022326052,0.000021548125,0.000022304048,0.000022347418,0.000022439353,0.000020134992,0.000020730931,0.000021538839,0.000023329567,0.000022413687,0.000022759894,0.000022654025,0.0000225471,0.000020143732,0.000020195974,0.000020663249,0.000022230213,0.000021442289,0.000022277285,0.000022308643,0.000022438006,0.000020160374,0.000020780117,0.000021590808,0.00002341895,0.000022540027,0.000022851085,0.00002273074,0.00002255495,0.00002015307,0.000020112308,0.000020500866,0.000022136095,0.00002135385,0.00002224894,0.000022069615,0.00002214171,0.000019811343,0.00002041214,0.000021016882,0.000022572614,0.000021695183,0.000022169768,0.00002200396,0.000021965343,0.00001982461,0.000020324655,0.000020737158,0.000022265773,0.000021233653,0.000022109658,0.00002220157,0.000022499307,0.00002064115,0.000021410782,0.000021935093,0.000023247501,0.000022178081,0.000022348824,0.000022079088,0.000021984119,0.00001979414,0.000019867328,0.000019465051,0.000020528703,0.000019514177,0.000021204452,0.000020644988,0.000021301597,0.000019372957,0.000021540503,0.000020918742,0.000022230022,0.000020879279,0.000022057684,0.000022255052,0.00002185877,0.000020470388,0.00001996722,0.00002033394,0.000021018404,0.000021287606,0.00002121145,0.000021371308,0.000020936564,0.000020810934,0.000019268524,0.000019732564,0.00002440121,0.000024076146,0.000021639353,0.000015671201,0.000010489222,0.000012247927],[0.000016586282,0.000011123602,0.000012521658,0.000015664253,0.000021006163,0.000033501386,0.000032557295,0.000023010656,0.000019645668,0.000019021734,0.0000185179,0.000017869661,0.000018331719,0.000018901557,0.000018825336,0.000018577668,0.00001920785,0.000020405096,0.000019947596,0.00001950664,0.000020161548,0.000021363036,0.000020920437,0.000019630048,0.000019507515,0.000020421994,0.000021106645,0.0000203289,0.000020739828,0.000021468704,0.000021043757,0.000019349323,0.000019474577,0.00002005573,0.000021482774,0.000020430993,0.000021416174,0.000021570391,0.000021107067,0.000019377927,0.000019751882,0.000020873285,0.000022224194,0.000021562577,0.000021673759,0.00002161788,0.000021026824,0.000019256106,0.000019322806,0.000019789912,0.000021306756,0.000020658106,0.000021217054,0.000021210155,0.000020716463,0.000019078798,0.000019679852,0.000020616815,0.000021962138,0.000021231832,0.000021552914,0.000021543256,0.000020963296,0.000019177905,0.00001940256,0.0000199869,0.0000214615,0.000020805519,0.000021389005,0.000021408903,0.000020941356,0.000019225774,0.00001985017,0.000020818437,0.000022242853,0.00002141166,0.000021804182,0.000021709113,0.000021213109,0.000019272493,0.000019485167,0.000019989091,0.000021494478,0.000020779602,0.000021444028,0.000021439815,0.000021025842,0.000019246172,0.000019862384,0.000020774765,0.000022207625,0.00002135992,0.000021749522,0.000021642716,0.000021136497,0.000019202174,0.000019437153,0.000019918967,0.000021356598,0.000020643158,0.000021305803,0.000021302836,0.000020906517,0.000019155223,0.000019787629,0.000020703408,0.000022141541,0.000021308872,0.000021716794,0.000021641601,0.000021180464,0.000019263949,0.000019489757,0.000019990826,0.000021500422,0.00002077776,0.00002142608,0.000021419912,0.000021025682,0.000019254636,0.000019853333,0.000020746871,0.000022157066,0.000021308708,0.000021685484,0.000021590953,0.000021089903,0.000019169202,0.000019399875,0.000019901196,0.000021416132,0.000020719011,0.000021383887,0.00002139278,0.000021032422,0.000019289391,0.000019910934,0.000020826461,0.000022276286,0.000021409576,0.000021791315,0.000021659771,0.000021188282,0.000019261981,0.000019509582,0.000020023052,0.000021546173,0.000020833215,0.00002147792,0.000021462258,0.00002107155,0.000019297651,0.000019916175,0.000020832857,0.000022282235,0.000021428921,0.000021814518,0.000021696198,0.000021230899,0.000019304498,0.000019540359,0.000020044105,0.000021567677,0.000020839116,0.000021484393,0.000021464939,0.000021067288,0.000019297946,0.000019906929,0.000020820544,0.000022273907,0.000021416254,0.000021816246,0.000021701475,0.000021222235,0.000019282897,0.000019484032,0.000019957375,0.000021437158,0.00002072749,0.000021441023,0.000021463751,0.000021103424,0.000019343917,0.000019991283,0.00002091236,0.00002242701,0.000021542024,0.000021982925,0.000021733764,0.000021257458,0.000019244888,0.000019439156,0.000019804827,0.000021330708,0.000020619585,0.000021381502,0.000021143349,0.000020726045,0.000018873296,0.000019540843,0.000020244355,0.000021454296,0.00002074974,0.000021146878,0.000020983858,0.00002024227,0.000018581955,0.000019109371,0.000019857724,0.00002101233,0.000020430096,0.000020951184,0.000020990161,0.000020481382,0.000019111285,0.000019934512,0.000020724248,0.00002177563,0.000021025442,0.000021349004,0.000020715792,0.000019969239,0.000018241262,0.000018697783,0.000018395483,0.000019041463,0.000018564791,0.000019709676,0.000019539446,0.000019248908,0.000018298673,0.00001915579,0.000020016998,0.000020384712,0.000020076914,0.000020914613,0.000021505057,0.000021124508,0.00001996901,0.000020059135,0.00002031262,0.000021527236,0.00002128925,0.000021678452,0.000021008766,0.00002126194,0.000020967374,0.000020381796,0.000020696853,0.000023714283,0.00002520534,0.000022776894,0.000016025793,0.000010267204,0.000012729279],[0.000016344815,0.000010619314,0.000012476779,0.000014391121,0.00001760956,0.000030261835,0.000034767418,0.000024455956,0.000020094976,0.000019514977,0.00001903843,0.000018636936,0.00001947493,0.000019952582,0.000020741074,0.000019898083,0.00002086415,0.000020941516,0.000021357557,0.000020963775,0.000021911072,0.000022585491,0.000022591352,0.00002168232,0.000021325704,0.000021451984,0.000021772246,0.000021724292,0.000021836497,0.000022563125,0.00002214528,0.000021524978,0.000020403751,0.000021219179,0.00002180256,0.000022210781,0.000022248198,0.000022552282,0.000022102196,0.00002099709,0.000020712137,0.000021597809,0.00002252144,0.000022654262,0.00002214452,0.000022297794,0.000021668697,0.000020747939,0.000020204237,0.000020996167,0.000022341623,0.000022457485,0.000022502765,0.00002239177,0.00002161281,0.000020618918,0.000020361922,0.000021302836,0.000022118202,0.000022276074,0.00002205619,0.000022192278,0.000021419808,0.000020584124,0.000020172856,0.000021102438,0.000022226779,0.000022430218,0.000022457401,0.000022552304,0.000021683602,0.000020802581,0.000020369458,0.000021429842,0.000022145405,0.00002240732,0.000022120965,0.00002239181,0.000021566486,0.00002076211,0.000020191237,0.00002112535,0.000022131198,0.000022403772,0.000022414095,0.000022622742,0.000021745022,0.000020875257,0.000020383875,0.000021427797,0.000022128854,0.000022380518,0.000022095346,0.000022344711,0.000021514512,0.000020703565,0.000020164951,0.000021083528,0.000022029513,0.000022280727,0.000022298009,0.0000225356,0.000021638569,0.000020790087,0.000020275636,0.00002136721,0.000022066226,0.000022361659,0.000022055538,0.000022360913,0.000021534343,0.000020754926,0.000020201367,0.000021132766,0.00002213561,0.000022392687,0.00002239775,0.000022607062,0.000021746348,0.000020888203,0.000020379832,0.000021418704,0.000022090606,0.0000223442,0.00002203998,0.000022310089,0.000021473108,0.000020675076,0.000020113077,0.00002107133,0.000022064205,0.000022349934,0.000022335742,0.000022599388,0.000021727235,0.00002089139,0.000020358388,0.000021446196,0.000022153941,0.000022430944,0.000022096128,0.000022363172,0.000021538715,0.000020758567,0.000020206859,0.000021159567,0.00002217459,0.000022444598,0.000022429254,0.000022640828,0.000021762447,0.00002091858,0.000020405427,0.000021480173,0.000022174316,0.000022453267,0.000022132634,0.000022411274,0.000021585867,0.000020799864,0.000020224885,0.000021166954,0.000022175078,0.000022450977,0.000022435352,0.000022646442,0.000021765083,0.000020915928,0.000020389805,0.000021461092,0.00002214963,0.000022459113,0.000022126766,0.000022429425,0.000021585372,0.000020796195,0.000020187828,0.000021101734,0.000022052845,0.00002235492,0.000022391598,0.000022672331,0.000021801105,0.00002098736,0.000020451871,0.00002157029,0.000022221227,0.000022599237,0.000022149037,0.000022468155,0.000021527649,0.000020710318,0.000020059766,0.00002099907,0.000021869384,0.00002220375,0.000022244698,0.00002241619,0.00002143994,0.000020499496,0.000020123782,0.000021117174,0.000021767408,0.000021850934,0.000021675973,0.000021738635,0.00002067117,0.000019919367,0.000019743464,0.000020913694,0.00002192949,0.000021979551,0.000021885804,0.000021948006,0.00002079439,0.000020138583,0.000019900532,0.000021270174,0.000021555197,0.00002200837,0.00002127835,0.000021625263,0.000019954769,0.000019540657,0.000019063085,0.000020001944,0.000020152012,0.000020369458,0.000020791535,0.000021401758,0.000020390467,0.000019498364,0.00001983178,0.000020581749,0.00002090205,0.000020597261,0.000020840926,0.000021948947,0.000020972233,0.000020869824,0.00001969042,0.000020802581,0.000020647469,0.00002214053,0.000021374815,0.00002195707,0.000020437814,0.000021404432,0.000019840574,0.000020990961,0.000023509667,0.000024598545,0.000021172807,0.000017013599,0.000010317489,0.000012613308],[0.000017356257,0.000011150856,0.000010667344,0.000011448978,0.000014043994,0.000024655825,0.00003560148,0.000025154506,0.000019742503,0.0000193594,0.00001858738,0.000018853345,0.000018430796,0.000019905487,0.000020424739,0.000020950505,0.000019762529,0.000020872967,0.000020591782,0.000021725184,0.00002126563,0.000022766646,0.000021838498,0.00002267285,0.000020985939,0.000021763943,0.000021675041,0.000022622959,0.000022323968,0.000023165287,0.000022438839,0.00002235556,0.000021066506,0.000021156842,0.00002185825,0.000021961887,0.000021828939,0.0000217606,0.000020839454,0.00002111516,0.000019955587,0.000020927562,0.00002143679,0.00002218684,0.000021258758,0.00002125612,0.000020467949,0.00002047109,0.000019450912,0.000020378238,0.000021861752,0.0000226208,0.000022380049,0.0000222823,0.000021401045,0.000021432354,0.00002021239,0.000020924128,0.000021518843,0.000022305792,0.000021801105,0.00002176668,0.000021027026,0.00002101143,0.000020178897,0.000020873207,0.00002215916,0.000022845747,0.000022822054,0.000022567494,0.000021759584,0.000021683476,0.000020471658,0.00002110097,0.000021627242,0.0000223954,0.000021989257,0.000021946144,0.000021244126,0.000021162696,0.000020309832,0.00002090175,0.000022147307,0.000022804345,0.00002285141,0.000022599388,0.000021818118,0.000021696198,0.000020483472,0.00002106747,0.000021612748,0.00002235829,0.000021953552,0.000021891523,0.000021198468,0.000021115444,0.000020283796,0.000020873285,0.000022100701,0.000022738654,0.00002280004,0.000022559876,0.00002180778,0.000021641024,0.00002044682,0.00002102494,0.000021620519,0.00002236812,0.000021950265,0.000021895907,0.000021208842,0.000021124082,0.00002028546,0.000020862779,0.00002213884,0.000022796432,0.000022854767,0.000022604972,0.000021866608,0.00002171143,0.000020510799,0.000021056023,0.000021616603,0.000022346181,0.000021934864,0.00002187656,0.000021183696,0.000021086304,0.000020251848,0.000020851025,0.000022130944,0.000022800476,0.00002285394,0.000022611417,0.0000218486,0.000021691294,0.000020470467,0.000021034686,0.00002162908,0.000022355858,0.000021931455,0.000021860793,0.00002119968,0.000021119833,0.00002029893,0.00002089884,0.000022175584,0.000022840453,0.000022875962,0.000022613813,0.00002187099,0.000021718535,0.00002051528,0.000021077178,0.000021654256,0.000022395505,0.000021990978,0.000021930617,0.000021258149,0.00002117711,0.000020331343,0.00002090867,0.000022173703,0.000022838209,0.000022877492,0.000022609758,0.00002186371,0.000021714848,0.00002050239,0.000021066868,0.000021640963,0.000022391747,0.000021978858,0.000021927963,0.000021229362,0.000021148451,0.000020267691,0.000020833413,0.000022076034,0.000022730263,0.000022795799,0.000022598806,0.000021850266,0.000021750951,0.000020526963,0.00002113071,0.000021703523,0.00002242485,0.00002193953,0.000021871781,0.000021140166,0.000020985337,0.000020003927,0.000020542297,0.000021822758,0.000022405975,0.000022465005,0.000022249493,0.000021528407,0.000021323161,0.000020158874,0.000020819609,0.000021460375,0.000022139346,0.000021646536,0.000021528655,0.000020719326,0.000020585656,0.000019803996,0.000020611213,0.000021839789,0.000022608765,0.00002231358,0.000022040253,0.000021029171,0.000020906018,0.000019926207,0.000020915491,0.000021446933,0.000022273462,0.000021659089,0.00002162879,0.000020610407,0.00002003604,0.000019349527,0.000020201656,0.000020765754,0.000020931693,0.000021074664,0.000021191554,0.000020628497,0.000020157184,0.000019169222,0.000020283122,0.000019688861,0.000020450272,0.000020155338,0.000021412843,0.000020958998,0.000021271917,0.000019510864,0.000020545705,0.000021204009,0.000021988899,0.00002217178,0.00002243362,0.000022192044,0.000022240074,0.00002140678,0.000021886262,0.000025341782,0.00002397133,0.00002014477,0.000015800664,0.00001075348,0.000012649519],[0.000016852006,0.000010740924,0.000010554888,0.000010656445,0.000013049796,0.000023135835,0.000037911697,0.000026617563,0.00002107137,0.000019879439,0.000019964344,0.000019040683,0.000019662442,0.00002003388,0.000021748194,0.000021391576,0.000022149547,0.000021462585,0.00002219471,0.000021558095,0.000022640914,0.000022421984,0.000023619197,0.000022514161,0.00002253145,0.000021708202,0.00002255325,0.000022774939,0.000023806484,0.000023444425,0.000023918878,0.000022642751,0.000022783848,0.000022067234,0.000022858889,0.000022299964,0.000022769882,0.000022221036,0.000022305707,0.000021219279,0.000020890511,0.000020874062,0.000021341064,0.000021168407,0.000021206495,0.000020795202,0.00002105785,0.000020339778,0.000020385412,0.000020816036,0.000021778164,0.000022334783,0.000022754944,0.000022559532,0.00002273267,0.000021724542,0.000021282227,0.00002117594,0.000021665142,0.000021784228,0.000021946771,0.00002175618,0.000022032076,0.000021235172,0.00002098734,0.00002117838,0.000022001506,0.000022570872,0.000023082986,0.000022896827,0.000023194687,0.000022073928,0.000021578086,0.00002134485,0.000021859687,0.000021913851,0.000022115564,0.000021907583,0.00002224037,0.000021363952,0.0000211028,0.000021185575,0.000022000982,0.000022544047,0.000023082437,0.000022896173,0.000023206214,0.000022066646,0.00002156807,0.000021328247,0.000021833876,0.00002188549,0.000022071887,0.000021865359,0.000022169115,0.000021332662,0.000021070402,0.000021198246,0.000021961803,0.000022522752,0.000023023124,0.000022877904,0.00002317534,0.0000220367,0.000021518412,0.000021312957,0.0000218269,0.000021887932,0.000022060776,0.000021843245,0.000022142873,0.000021292924,0.000021020149,0.000021170024,0.000021931308,0.000022516822,0.000023017941,0.00002289041,0.000023182945,0.000022077824,0.00002156381,0.000021351549,0.00002181764,0.000021881839,0.000022046643,0.00002185552,0.000022142662,0.000021304179,0.000021022353,0.000021177475,0.000021974018,0.000022550434,0.000023049508,0.000022884953,0.000023187698,0.00002203275,0.000021520034,0.0000212927,0.000021785454,0.000021838643,0.000022016891,0.000021811127,0.000022133836,0.000021307367,0.000021045924,0.00002119396,0.00002197827,0.0000225511,0.000023038587,0.00002288144,0.000023186107,0.000022059556,0.000021551641,0.000021329732,0.000021826796,0.000021886408,0.00002207275,0.000021878875,0.000022207267,0.000021356702,0.000021070546,0.000021199721,0.00002197496,0.000022545488,0.000023043156,0.000022875854,0.000023186769,0.00002204885,0.00002155205,0.000021308708,0.00002182049,0.000021863523,0.000022074813,0.000021838145,0.00002219742,0.00002131249,0.00002106488,0.000021128737,0.000021921876,0.000022450784,0.00002301555,0.00002283061,0.000023206016,0.00002203317,0.000021568912,0.000021291788,0.000021887388,0.000021833708,0.000021999052,0.000021641457,0.000022115817,0.000021049094,0.000020823582,0.000020851221,0.000021609305,0.000022060713,0.00002266217,0.000022528187,0.000022989667,0.000021857375,0.000021420912,0.000021400452,0.000022032624,0.000022002241,0.000022091072,0.000021871574,0.000022287379,0.000021259202,0.000020895553,0.000021241854,0.000022202248,0.00002258323,0.000022791844,0.000022407556,0.000022704744,0.000021569715,0.000021428226,0.000021501897,0.000022272441,0.000022161652,0.00002237162,0.000021906351,0.00002205188,0.000020964933,0.000021093585,0.000020448128,0.00002116649,0.000020710537,0.000021429963,0.000021279548,0.000021875705,0.000020612844,0.000021042491,0.000020114054,0.000020649693,0.000019862895,0.000020714824,0.000021268266,0.000022244294,0.000021103282,0.00002048687,0.000020272833,0.000021048232,0.000021155493,0.000021760745,0.000022482815,0.000021790067,0.000022241813,0.000021211856,0.000021562906,0.000024604034,0.000020263922,0.000019077052,0.000015131125,0.000010140498,0.000012435156],[0.000017036346,0.0000124057215,0.000010839535,0.000010184856,0.000012433507,0.000020714013,0.000035109966,0.000025643456,0.000021306942,0.000020217056,0.00001976907,0.00002014984,0.000020532778,0.00002206128,0.000022781545,0.000024173278,0.000024039298,0.000024196735,0.000022545166,0.000023277162,0.000023654475,0.000025057801,0.0000241498,0.000024562796,0.00002415655,0.000024376137,0.000023959767,0.000024555184,0.00002619946,0.000026970098,0.000025673624,0.000024979758,0.000026276577,0.000025522444,0.000025111769,0.000024378625,0.000024366655,0.000024704383,0.000023387262,0.000023312306,0.000023259388,0.000023688359,0.000022570182,0.000022703618,0.000022977609,0.000023856073,0.000022556927,0.000022833461,0.00002405953,0.000024359104,0.000023997613,0.000024345054,0.00002470325,0.000025398083,0.000023900295,0.00002410369,0.00002400045,0.000024256018,0.000022981378,0.000023740193,0.000023691384,0.00002459662,0.000023077419,0.000023247767,0.00002423269,0.000023996148,0.000023619443,0.000024095096,0.000024424187,0.000025348598,0.000024195604,0.000024471565,0.000024352532,0.000024528246,0.00002317691,0.000023883162,0.000023768645,0.000024644589,0.000023097982,0.000023243356,0.0000242113,0.000023941837,0.000023542649,0.000024056477,0.000024392788,0.00002531193,0.000024195097,0.000024455187,0.000024351208,0.00002449029,0.000023157976,0.000023857756,0.000023739603,0.000024609268,0.000023071587,0.000023221779,0.000024198027,0.000023928575,0.000023497698,0.000024027862,0.00002436963,0.000025301553,0.000024253985,0.000024450663,0.000024330942,0.000024440733,0.00002313716,0.000023831833,0.000023713583,0.000024567318,0.000023043947,0.00002316438,0.000024163117,0.000023888811,0.000023469569,0.000024002351,0.00002436331,0.000025305317,0.000024265897,0.000024486131,0.000024390625,0.000024495754,0.00002316438,0.000023855617,0.000023730028,0.000024608024,0.000023078299,0.00002320316,0.00002417238,0.00002390816,0.000023507291,0.000024052668,0.000024371373,0.000025296822,0.000024259836,0.0000244564,0.000024335606,0.000024428335,0.00002310521,0.000023785877,0.000023676273,0.000024560923,0.00002303918,0.000023193536,0.00002417932,0.00002391936,0.000023497116,0.000024041523,0.000024364728,0.00002530469,0.00002425424,0.000024473944,0.000024351904,0.000024471472,0.00002314016,0.000023841903,0.000023715234,0.000024606265,0.000023076385,0.000023232986,0.000024178005,0.000023906998,0.000023475344,0.000024029192,0.000024357803,0.00002529499,0.000024225943,0.000024459967,0.000024354807,0.000024467621,0.000023130606,0.000023828605,0.000023720708,0.000024577559,0.00002304063,0.000023202498,0.00002417501,0.000023887467,0.000023468272,0.000023981986,0.000024343104,0.000025300324,0.000024187508,0.000024468462,0.000024319854,0.000024492763,0.000023163695,0.000023851888,0.000023601839,0.000024399325,0.000022803171,0.000023050388,0.000023925815,0.000023615505,0.000023127806,0.000023644008,0.000023961207,0.000025051446,0.000024133984,0.000024425353,0.000024040673,0.000024417854,0.000023169108,0.000023931769,0.000023504579,0.000024918823,0.000023369714,0.000023793205,0.000024062098,0.0000241828,0.000023618251,0.000024435045,0.000024351555,0.0000252683,0.000024187853,0.00002460218,0.000024040422,0.000024472429,0.00002331909,0.000024223795,0.000023958486,0.000024448354,0.000023216418,0.000023532795,0.000023338443,0.000023210774,0.000021952108,0.000022536393,0.000022686345,0.000023328652,0.000022340088,0.0000228699,0.00002189737,0.00002209971,0.000020045807,0.00002090163,0.000020823582,0.000022767601,0.000021969594,0.00002269405,0.000021163503,0.000022115142,0.000021453825,0.000023060215,0.000023266532,0.000024447934,0.000023441073,0.000023971217,0.00002283146,0.000024904904,0.00002366499,0.000021594722,0.000019027775,0.000015730886,0.000010205343,0.000013007674],[0.000016081627,0.000015847007,0.000013917134,0.000012385885,0.0000132402365,0.00001845167,0.00002797429,0.000025651087,0.000021834916,0.000021537278,0.00002203151,0.000022672244,0.000025058305,0.000026884994,0.00002869863,0.000028399667,0.00002956369,0.000027519047,0.00002701561,0.000026263624,0.000028970913,0.000028645094,0.000029184182,0.000027803917,0.000028915794,0.000025574438,0.000027132957,0.00002340819,0.000023430746,0.000022675553,0.000022576576,0.000023269284,0.000025066885,0.000024461835,0.000023786104,0.000022001823,0.000022754532,0.000025862102,0.000027285792,0.000027877779,0.00002804291,0.000027568483,0.00002611228,0.00002646928,0.000028517805,0.000026844416,0.000025190251,0.00002565424,0.000027271408,0.000025880954,0.000025229989,0.000024759547,0.000026861113,0.000029142077,0.00002709487,0.00002744645,0.0000282407,0.000027581553,0.000026536914,0.000026474681,0.000028396524,0.000028287384,0.000027184371,0.000027706908,0.000029813316,0.000028327147,0.00002725695,0.000026660751,0.00002828423,0.00003030209,0.000026960068,0.00002738898,0.000028241158,0.000027591812,0.000026519105,0.000026360281,0.000028239003,0.00002828585,0.00002723393,0.000027982109,0.000029629904,0.00002850981,0.00002728738,0.000026890819,0.00002839601,0.000030336616,0.000026922608,0.000027343309,0.000028176408,0.000027572925,0.000026488951,0.00002634965,0.000028208993,0.000028264303,0.000027237696,0.00002803128,0.000029522978,0.000028725079,0.000027259628,0.00002716773,0.000028709059,0.000030235617,0.00002689174,0.00002732678,0.00002809369,0.000027472923,0.000026411637,0.000026318708,0.000028152583,0.000028174203,0.000027281343,0.000028031092,0.000029489887,0.000028759454,0.00002724154,0.000027172939,0.000028712453,0.00003021388,0.000026886022,0.00002734829,0.000028141443,0.000027542783,0.000026456888,0.000026348467,0.000028186594,0.000028225568,0.00002730628,0.000028054226,0.000029442117,0.00002887303,0.000027231099,0.000027325843,0.000028787741,0.000030151477,0.000026860369,0.000027316124,0.000028086079,0.000027447497,0.000026392705,0.000026290038,0.00002814434,0.000028152957,0.00002727528,0.000028028311,0.000029483224,0.00002882087,0.000027242164,0.000027263606,0.000028767106,0.000030160913,0.000026869464,0.000027307633,0.000028096902,0.00002748123,0.0000264231,0.000026304006,0.000028139862,0.000028176111,0.000027293781,0.00002804585,0.00002944675,0.000028822053,0.000027207452,0.000027228501,0.000028721299,0.000030201956,0.000026887175,0.000027333399,0.00002814998,0.000027524218,0.00002644932,0.000026325337,0.000028186485,0.000028224276,0.000027196662,0.000027994174,0.000029591161,0.000028556886,0.000027269949,0.00002696444,0.000028519682,0.000030288513,0.000026909107,0.000027317503,0.000028097895,0.000027470776,0.000026423202,0.00002624885,0.000027975571,0.000027973038,0.000027173899,0.00002815229,0.000029192313,0.000028864715,0.000026817701,0.000027541206,0.000028636789,0.00002932468,0.000026439862,0.000026936787,0.000027352515,0.000026518168,0.000025489315,0.000025474808,0.0000272358,0.000026871438,0.000026179081,0.000027000646,0.000027978427,0.000028145792,0.000026380148,0.000026893229,0.000027733502,0.000027983177,0.000026488597,0.000026900281,0.000027109449,0.000026283444,0.000025375082,0.000025128538,0.000026516855,0.00002613189,0.000025303676,0.000025771376,0.000026656302,0.000026258667,0.000024701743,0.00002485451,0.000026019687,0.000025816344,0.000024969946,0.000024346307,0.000024164545,0.000022770097,0.000021652935,0.000020962674,0.000022730546,0.00002325553,0.00002396171,0.000023765993,0.000023615434,0.000023262182,0.000023031314,0.000023692493,0.000024471636,0.000024846404,0.0000234194,0.00002457765,0.00002461868,0.000023699386,0.000023389846,0.00001958136,0.000019501842,0.000016591866,0.000010231781,0.000013466743],[0.000017052811,0.000016976985,0.000014838212,0.000011911076,0.000012367577,0.000014639509,0.000020540867,0.000025713638,0.00002226055,0.000024150766,0.000026720032,0.000025417516,0.000021970664,0.000022665392,0.00002165758,0.000022042648,0.000019057794,0.000022362106,0.00002264992,0.00002316162,0.000020802225,0.000022334656,0.000020824951,0.000020492362,0.00001666839,0.000018536999,0.00001669846,0.0000156627,0.000013950022,0.0000146993,0.000013977494,0.000016918993,0.0000160069,0.000016690865,0.000014403409,0.000015014321,0.000013997756,0.000015026497,0.000015838727,0.000021300886,0.000022656011,0.000027190592,0.000024749443,0.000022684831,0.000018360044,0.000016495973,0.000014498127,0.000015295722,0.000014762742,0.000014962519,0.000014172712,0.000015086947,0.0000146844195,0.000016523416,0.00001850196,0.000025820455,0.000026267582,0.00003031322,0.000025588733,0.000022824035,0.000018884295,0.000017324322,0.000015644086,0.00001671908,0.000017008877,0.000016835236,0.000015666585,0.00001632103,0.000015921187,0.000017176904,0.000018786992,0.00002543194,0.00002745514,0.000031450072,0.000026326767,0.000023306817,0.00001912671,0.00001751114,0.000015818274,0.000016863114,0.000017106775,0.000016955628,0.000015844618,0.000016491616,0.000016057858,0.00001726931,0.000018847,0.000025428399,0.000027596734,0.00003150107,0.000026401363,0.000023360933,0.000019165145,0.000017545843,0.000015853824,0.000016908412,0.000017211274,0.000017121936,0.000016030577,0.000016647135,0.000016245327,0.000017461696,0.000019187162,0.000025969985,0.000027990543,0.00003177333,0.000026957112,0.000023801626,0.000019395695,0.000017674198,0.000015953712,0.000016954189,0.000017254233,0.000017131313,0.000016028407,0.000016628284,0.000016231437,0.000017431714,0.000019171872,0.000025933876,0.000027954877,0.000031761847,0.000026816602,0.000023682733,0.000019347975,0.000017672497,0.00001598882,0.000017024344,0.000017348677,0.000017265556,0.000016154901,0.000016740585,0.000016338268,0.00001755001,0.000019353125,0.000026248075,0.000028100278,0.000031847194,0.000027093216,0.000023921113,0.00001945824,0.000017716893,0.00001598984,0.000016994933,0.000017295451,0.00001718877,0.000016085492,0.000016700642,0.000016305425,0.000017525641,0.000019294615,0.000026135902,0.000028043098,0.000031766453,0.000026915139,0.000023761664,0.000019381901,0.000017705543,0.000015994721,0.000017030807,0.000017336339,0.000017232689,0.00001610769,0.000016699878,0.000016269374,0.00001745377,0.000019133406,0.00002583378,0.00002779339,0.00003161706,0.00002662414,0.00002351211,0.000019208419,0.000017541124,0.000015818861,0.000016865173,0.000017136737,0.000017007824,0.000015899837,0.000016538552,0.00001612332,0.000017356553,0.000019012974,0.000025757397,0.000027859918,0.00003166404,0.00002686183,0.00002376665,0.000019376708,0.000017766111,0.000016006945,0.0000170825,0.000017418784,0.000017576172,0.000016551474,0.000017252274,0.000017123913,0.000018780614,0.000021378342,0.00002985383,0.000030179124,0.00003279105,0.000029831548,0.000028735683,0.000024324168,0.000022238122,0.000019561932,0.00002120688,0.000022772834,0.000024626333,0.000021926226,0.000023202918,0.00002318246,0.000027361097,0.000028951885,0.00003298739,0.000030088115,0.00003198919,0.000029749246,0.000031410505,0.000028786782,0.000029614397,0.00002679122,0.000030267782,0.000030817184,0.00003572885,0.0000317736,0.00003523602,0.00003164089,0.00003361958,0.000029097675,0.000028669936,0.000023814546,0.000024517933,0.00002210363,0.000022741777,0.000022416383,0.000025450865,0.000024224879,0.000025361243,0.000023176512,0.000025076066,0.000023844268,0.000025854557,0.000024643532,0.000026740372,0.000024959018,0.00002692202,0.000025937807,0.00002499315,0.00002061186,0.000020365243,0.0000185558,0.000016435048,0.000010951859,0.00001404887],[0.000017951204,0.000021327045,0.000018202823,0.000013857113,0.000013349375,0.000013554436,0.00001351561,0.000018589684,0.000022761738,0.00002198022,0.000021763733,0.000016181115,0.000016323831,0.000016183538,0.00001779733,0.00001591727,0.000015144031,0.00001574085,0.000017419401,0.000015559202,0.000015964777,0.00001584687,0.000017022607,0.000015067724,0.00001413291,0.000014359686,0.000015165188,0.000015695461,0.000015166028,0.000015802983,0.000016101993,0.000016190392,0.000015926851,0.000015929752,0.000015661177,0.000015738779,0.000015144205,0.00001543824,0.00001525553,0.000016368305,0.00001576645,0.000016604514,0.00001728884,0.000015855472,0.000015249275,0.000014696258,0.000015111138,0.000015844105,0.000014830685,0.000014622177,0.000014989398,0.000015276886,0.000014758421,0.000014843207,0.000015739919,0.00001736344,0.00001758266,0.000017444752,0.000017981803,0.000016125765,0.000015303805,0.000014732068,0.000015056232,0.000015360112,0.0000147733335,0.000014842331,0.000015103186,0.000015320555,0.000014965073,0.00001543933,0.00001569582,0.00001745452,0.000017902581,0.000017808128,0.000018272829,0.000016240912,0.000015342866,0.000014740233,0.000015079855,0.00001546525,0.00001490224,0.000014909049,0.00001514913,0.000015372407,0.000015024046,0.000015504324,0.000015714273,0.000017424518,0.000017918639,0.000017858145,0.000018275321,0.000016241594,0.000015341242,0.000014743522,0.000015087538,0.000015470088,0.000014922421,0.000014946704,0.0000152002285,0.000015406986,0.000015074536,0.000015483785,0.000015762647,0.000017631975,0.000018073593,0.00001799656,0.000018472076,0.000016326228,0.000015414407,0.000014762868,0.000015083754,0.00001546171,0.0000149079115,0.000014937227,0.000015196374,0.000015399963,0.000015070339,0.000015457465,0.000015739319,0.000017582492,0.000018066323,0.000017986109,0.000018433344,0.000016310807,0.000015393634,0.000014755607,0.000015096935,0.000015452748,0.0000149175685,0.00001495717,0.000015224776,0.000015413276,0.000015095106,0.000015450303,0.000015790962,0.00001774283,0.00001815108,0.00001803726,0.000018541914,0.000016353717,0.000015447871,0.000014768656,0.000015094849,0.000015450994,0.000014911324,0.000014939508,0.000015207217,0.000015403577,0.000015089581,0.000015450243,0.000015785045,0.000017686405,0.00001812567,0.000018006756,0.000018475599,0.000016316142,0.000015406604,0.000014758757,0.000015099815,0.000015455931,0.000014921011,0.000014948299,0.000015211076,0.000015401609,0.000015076649,0.00001546466,0.000015749829,0.000017570406,0.000018016082,0.000017916416,0.000018369694,0.000016287584,0.000015373551,0.000014743734,0.000015084344,0.000015463318,0.000014902852,0.000014918877,0.00001516626,0.000015366442,0.0000150301075,0.000015463229,0.000015751917,0.000017519977,0.000018072766,0.00001798791,0.000018452076,0.00001634095,0.000015343261,0.000014690611,0.000015062034,0.000015477275,0.0000149659445,0.0000149821235,0.000015364492,0.00001545014,0.0000152350885,0.000015331983,0.000016394692,0.000019021354,0.000019783723,0.00001942248,0.00002109948,0.000017661714,0.000016669199,0.000015281754,0.00001504891,0.000015225806,0.000015582486,0.00001632735,0.000016876404,0.000016445098,0.000016467086,0.000017497034,0.000020358173,0.000019974532,0.000020911759,0.000019458223,0.000022045046,0.000018915458,0.00001973155,0.000018224553,0.000018514544,0.000018317809,0.000019394232,0.000019474819,0.000022108963,0.000020635363,0.000021102236,0.000021737847,0.000025077692,0.000023494158,0.0000259292,0.000025881249,0.000027277805,0.000025250763,0.000027255313,0.000026996708,0.00002788424,0.00002678593,0.000028141229,0.00002606961,0.000027293234,0.000025897718,0.000028393926,0.000026302676,0.000027292817,0.000026400256,0.000026058055,0.00001906432,0.000019164834,0.000017113889,0.000018830957,0.000015625299,0.000011367717,0.000013723105],[0.000018428915,0.000018808181,0.00001599094,0.000012491553,0.000012930473,0.000013224513,0.000010238662,0.000013873603,0.000015359718,0.00001730525,0.000015482427,0.000015551355,0.000013727582,0.00001608215,0.00001497731,0.000016575483,0.000013996101,0.000015649084,0.00001393513,0.000015641548,0.000013742239,0.000015633332,0.000013797366,0.000015524756,0.000013082817,0.000015157917,0.000014145707,0.000017669143,0.000015863776,0.000017396955,0.000015843365,0.000017788048,0.000016259446,0.00001682596,0.000015771067,0.000016739117,0.000015446722,0.00001597495,0.000015594975,0.00001588297,0.000012825273,0.0000141681985,0.000012988102,0.000014402104,0.00001437484,0.000015829199,0.000014480896,0.000016517633,0.000015161777,0.0000163971,0.000015502195,0.00001658315,0.00001561496,0.000015911139,0.000014839231,0.000016154965,0.000013827636,0.000015082603,0.000013936338,0.000014965231,0.000014571244,0.00001532849,0.000014308069,0.000016315817,0.000015007019,0.0000157152,0.000015088617,0.00001616492,0.000015460015,0.000015749589,0.000014744198,0.000016313374,0.0000138018395,0.000015085164,0.000013971509,0.000014966016,0.000014578361,0.000015293766,0.000014174173,0.000016292306,0.000015059406,0.000015673533,0.0000150918695,0.000016128917,0.000015475209,0.000015720298,0.000014728402,0.000016238513,0.000013741177,0.000015047877,0.000013951431,0.000014948613,0.000014553232,0.000015280733,0.0000141303635,0.000016280006,0.000015056032,0.00001565613,0.000015086444,0.00001610124,0.000015498765,0.000015661863,0.000014696468,0.00001622794,0.000013758669,0.000015037405,0.000013898246,0.000014895875,0.000014590725,0.00001526991,0.000014124152,0.00001625021,0.000015033864,0.000015653577,0.00001508643,0.000016105001,0.00001550326,0.000015659878,0.000014686955,0.000016239193,0.00001378365,0.000015066257,0.000013954359,0.00001493173,0.000014577609,0.000015264392,0.000014132358,0.000016236578,0.000015026067,0.000015635018,0.000015075845,0.000016081136,0.000015507296,0.000015640759,0.00001467763,0.000016258393,0.000013805157,0.000015074695,0.000013928845,0.000014924825,0.000014616142,0.000015274367,0.000014136443,0.000016242571,0.000015029519,0.000015641324,0.00001508374,0.000016089713,0.0000155145,0.000015645785,0.000014684042,0.000016256454,0.000013791157,0.00001506215,0.00001392644,0.000014904799,0.00001458534,0.000015263431,0.000014129312,0.000016230277,0.000015017557,0.000015632408,0.000015071416,0.000016085678,0.000015504724,0.000015665419,0.000014695432,0.000016267093,0.000013783741,0.00001507898,0.0000139567555,0.000014961877,0.000014592855,0.000015300435,0.000014138397,0.000016303062,0.000015069449,0.000015679034,0.000015102178,0.000016115619,0.000015484524,0.000015696989,0.000014711808,0.000016264317,0.000013782151,0.0000150519545,0.000013905989,0.000014930107,0.000014472253,0.000015199359,0.000013881689,0.000016216474,0.0000150568785,0.00001560908,0.000015108732,0.000015973259,0.000015489293,0.000015392887,0.000014479515,0.000015843441,0.000014185762,0.000015241817,0.000013992125,0.000014741203,0.000013711881,0.00001434998,0.000013237409,0.000015142904,0.000013622767,0.000015205391,0.0000149919715,0.00001598106,0.000013931395,0.000014532554,0.000014077248,0.000015752234,0.00001428485,0.000015580361,0.000014029082,0.000015399963,0.000013480236,0.000015229074,0.000014303771,0.000015911473,0.000014440309,0.000016227414,0.000015966436,0.000016892569,0.000015750895,0.000016451859,0.000016328611,0.000017694858,0.000016167618,0.000018225144,0.000018117737,0.000020531954,0.000019511534,0.000022208877,0.000021014115,0.000023068682,0.000020019155,0.000022788716,0.000021277356,0.00002460258,0.000021780863,0.000026384852,0.000024071851,0.00002578881,0.00001873048,0.00001802177,0.000016246691,0.000019104817,0.00001785852,0.000016009068,0.000011492383,0.000013998437],[0.000017040295,0.000020339778,0.000015840056,0.000014102766,0.000013610055,0.000012372132,8.982365e-6,0.000011132866,0.000013257902,0.000015002369,0.000015356993,0.000014922975,0.000015054279,0.000016483677,0.000016519258,0.000016547923,0.000014963662,0.000015275751,0.0000139608155,0.000015059277,0.000015566386,0.000016396787,0.000015286403,0.000015986747,0.00001505148,0.000016115418,0.000016105249,0.00001849261,0.000017669816,0.000018792403,0.000017554747,0.000018661265,0.000017302133,0.000018302215,0.000016828879,0.00001751585,0.00001704187,0.000017438497,0.000017031163,0.000017785047,0.000015232967,0.00001510768,0.000013473064,0.000015740685,0.000017219598,0.000018134107,0.000017009737,0.000017667895,0.00001704564,0.000018479177,0.000017391016,0.000018280218,0.00001732847,0.000018374705,0.00001744986,0.000018042338,0.00001525323,0.000015573067,0.000014155841,0.0000168836,0.000017524955,0.00001808142,0.000017263515,0.000018117997,0.00001715245,0.000018517547,0.000017250695,0.00001835887,0.00001716893,0.000018140196,0.000017477472,0.000018248518,0.000015557645,0.00001572769,0.000014179162,0.000016898515,0.000017531826,0.000018059638,0.000017304475,0.000018130995,0.000017117332,0.000018558825,0.000017291048,0.000018404256,0.00001716076,0.000018133398,0.000017470691,0.000018209612,0.000015530903,0.000015714093,0.000014176038,0.000016903672,0.000017500104,0.00001800928,0.000017293323,0.000018085559,0.00001710294,0.000018543788,0.00001730332,0.000018430426,0.000017104165,0.000018153158,0.000017399245,0.000018126257,0.000015426613,0.000015628115,0.000014040459,0.000016699925,0.0000175073,0.000018028473,0.000017265458,0.000018092356,0.00001710529,0.000018561748,0.000017315157,0.00001845857,0.000017109582,0.000018193521,0.000017421442,0.000018178918,0.000015497273,0.000015702302,0.000014123977,0.000016804343,0.000017508519,0.00001802612,0.00001726946,0.000018088715,0.000017107819,0.000018560755,0.000017323497,0.000018459925,0.000017099272,0.000018211158,0.000017387916,0.000018128712,0.000015438107,0.00001566739,0.000014057353,0.000016714057,0.000017531609,0.00001805468,0.000017272836,0.000018112882,0.000017110804,0.000018568935,0.000017324423,0.000018471179,0.000017096174,0.000018205481,0.000017398746,0.000018146546,0.000015455105,0.000015665106,0.000014068029,0.000016731967,0.00001751034,0.000018034492,0.000017265014,0.00001809529,0.00001710728,0.000018561712,0.00001732191,0.00001846822,0.000017101376,0.000018215986,0.000017436569,0.000018199873,0.000015524445,0.000015722111,0.000014149026,0.000016868198,0.00001754084,0.000018045022,0.000017324439,0.00001811817,0.000017117316,0.000018571503,0.000017308766,0.000018433204,0.000017159991,0.000018152828,0.000017446515,0.000018191111,0.0000155174,0.000015661624,0.000014073611,0.000016790038,0.000017378698,0.0000178441,0.000017292086,0.000018001554,0.00001706192,0.00001856504,0.000017382095,0.000018557552,0.000017197688,0.000018245892,0.000017172662,0.000017339396,0.000014683062,0.000015293475,0.000013478783,0.000014958397,0.000015794065,0.00001741435,0.000016401822,0.000017702505,0.000016395927,0.00001737883,0.000016570015,0.00001784873,0.000016042322,0.000016004014,0.000014060517,0.000015256011,0.000013696512,0.000014927799,0.000013206768,0.00001405986,0.000013662659,0.000015853522,0.000016764901,0.000017620765,0.000016259866,0.000016781058,0.000016346436,0.000016846365,0.000015926715,0.000015953423,0.000014178769,0.000015133621,0.000013767543,0.0000141254195,0.000013463701,0.000013594787,0.000014300156,0.000015188665,0.000015588774,0.000015549203,0.000015399273,0.000015485482,0.000015358222,0.000015865697,0.00001609008,0.000017220862,0.00001651387,0.000017251468,0.000016294762,0.000016038437,0.00001676898,0.000017835577,0.00001787358,0.000016931632,0.000011930607,0.000013326428],[0.000018227976,0.000018343733,0.000015938444,0.000013329644,0.000013841845,0.000013246325,9.788186e-6,0.000011761761,0.000012322323,0.000016131271,0.000014574635,0.000016891812,0.00001585842,0.00002054596,0.000018308743,0.000021365542,0.00001709112,0.000019896186,0.00001613115,0.000019318606,0.000017548404,0.000020286601,0.000017617655,0.00002033813,0.000017056911,0.000020780988,0.000018150025,0.00002182582,0.00001831662,0.000020090416,0.000018232498,0.000020159625,0.00001847095,0.000020631842,0.000018702207,0.000019486764,0.000017471823,0.00001873995,0.00001834809,0.000019981295,0.000016895034,0.000018348212,0.000015066085,0.000018845076,0.000018163357,0.000020128407,0.000017276723,0.000019844965,0.000017638316,0.000020354215,0.00001865751,0.00001996817,0.00001805232,0.000019636283,0.000018616134,0.00002077011,0.000017346361,0.000018877508,0.000015914417,0.00002043483,0.000017869286,0.000019427815,0.000017393106,0.000019985317,0.000017477272,0.000020131536,0.00001848993,0.000019862668,0.000017489177,0.00001934617,0.000018420496,0.000020257468,0.000017905724,0.000019027324,0.000016022233,0.0000204675,0.00001781844,0.0000194127,0.000017443637,0.000019906929,0.000017360559,0.000020085245,0.000018518977,0.000019875344,0.000017485558,0.000019364239,0.00001839385,0.000020249105,0.000017908438,0.000019018471,0.000016013037,0.000020475074,0.000017785063,0.000019353696,0.00001742068,0.000019854107,0.000017329594,0.000020064646,0.000018523233,0.00001988342,0.000017534887,0.00001940661,0.000018364002,0.000020338362,0.000017698587,0.000018842651,0.000015816764,0.000020223535,0.000017797347,0.000019381698,0.000017391265,0.000019872521,0.000017347898,0.000020081396,0.000018544973,0.00001989793,0.00001755406,0.000019401523,0.000018385048,0.00002030503,0.0000178284,0.000018952474,0.000015930269,0.000020337431,0.000017802355,0.000019376597,0.000017403509,0.000019877354,0.000017387301,0.000020111618,0.000018588087,0.000019939322,0.000017620547,0.00001945518,0.000018377912,0.00002037929,0.000017700799,0.000018871928,0.000015839663,0.000020235091,0.000017821278,0.00001939845,0.000017404273,0.000019885185,0.000017362761,0.00002010412,0.00001856851,0.000019926074,0.000017585342,0.000019435949,0.00001837765,0.000020343346,0.000017744624,0.000018890654,0.00001585892,0.000020259613,0.000017810811,0.000019395566,0.00001740409,0.000019890704,0.000017372386,0.000020115971,0.000018572831,0.000019932308,0.000017567843,0.000019422627,0.000018396271,0.000020295349,0.000017870616,0.000018999472,0.000015980117,0.000020439587,0.000017801947,0.000019353643,0.000017445633,0.000019859977,0.000017306375,0.000020078063,0.000018527297,0.00001988782,0.000017492663,0.000019365089,0.000018385223,0.000020225598,0.00001788086,0.000018936866,0.000015906813,0.00002038452,0.000017691973,0.000019079325,0.000017445367,0.000019551488,0.000017094706,0.000020009975,0.000018583196,0.000020020265,0.000017924876,0.000019684281,0.000018450703,0.000020495625,0.000016609947,0.000017760996,0.000014704781,0.00001787515,0.000017353375,0.000019324116,0.000017674416,0.000020178224,0.000018041426,0.000020851201,0.000018405344,0.000020455283,0.000018415756,0.000019620671,0.000016252116,0.000017246797,0.0000139526555,0.000016335667,0.000013283745,0.000015825577,0.000014685624,0.000019312343,0.000018104058,0.000021314705,0.000018045555,0.000020665455,0.000018386205,0.000019954312,0.000017886063,0.000018506935,0.000015594513,0.000015957257,0.000013635011,0.00001534657,0.000012878219,0.000013670517,0.000012432464,0.000015178864,0.000013981226,0.000015089681,0.000012972616,0.000014999236,0.000013134584,0.000014489169,0.000012706695,0.000015932927,0.000013760192,0.000015774105,0.000013489919,0.000016103711,0.000016363374,0.0000178848,0.00001829117,0.000016715683,0.000012451592,0.000013335188],[0.000017443886,0.000019282144,0.000015668198,0.000013589175,0.000014009309,0.0000140645,0.000011375406,0.000012472461,0.000013957008,0.000016161252,0.000017393637,0.000017671367,0.00001989262,0.000020063591,0.000021193597,0.00002177455,0.000019959738,0.000021283708,0.00002013263,0.000020321882,0.000019661562,0.00002020312,0.00002001929,0.000021309846,0.000018772109,0.000021266524,0.000019873543,0.000020912717,0.000019290715,0.000019427998,0.000018960158,0.000021315273,0.000019052724,0.000020968735,0.000018997189,0.000019532403,0.000017994345,0.000019135961,0.000019064031,0.000021132626,0.000018426472,0.000019753785,0.000017379609,0.000019894705,0.000019261432,0.000019060068,0.000018506616,0.00002036635,0.000018725157,0.000020124417,0.000019145124,0.000019512445,0.000018265826,0.000018750765,0.000019069812,0.000021516504,0.000019029083,0.000020457353,0.000018812181,0.000020240108,0.00001825985,0.000018618905,0.00001844868,0.0000190252,0.00001828552,0.000019133771,0.000018637913,0.000018858218,0.000018254,0.000018276523,0.000018758705,0.000021294143,0.00001952177,0.000020790325,0.000019077652,0.000020320582,0.000018273091,0.000018660927,0.000018517052,0.000018877254,0.000018231282,0.000019052615,0.000018559516,0.000018878156,0.00001825045,0.00001828341,0.000018790091,0.000021363545,0.000019530877,0.000020809706,0.000019084768,0.000020320951,0.000018256595,0.00001864529,0.000018501676,0.000018876086,0.000018218037,0.000019056268,0.000018584667,0.000018913872,0.000018246465,0.000018268716,0.000018825373,0.000021434213,0.000019411942,0.000020644535,0.000018899771,0.000020293684,0.00001821232,0.000018670735,0.000018469891,0.000018912933,0.000018227995,0.000019097237,0.00001860366,0.000018936957,0.000018240984,0.000018276767,0.00001880603,0.000021421913,0.000019488121,0.000020751817,0.000018999199,0.000020318761,0.000018232098,0.00001866244,0.000018473133,0.000018952745,0.00001824396,0.000019170573,0.00001862544,0.000018999199,0.000018249875,0.000018280567,0.000018850002,0.000021467376,0.000019437914,0.000020675649,0.000018931069,0.000020318606,0.000018221928,0.000018679979,0.000018477767,0.000018906892,0.0000182366,0.000019115769,0.000018615176,0.000018960682,0.000018247596,0.000018272794,0.000018813671,0.00002142939,0.000019457517,0.00002069792,0.000018956034,0.00002031512,0.000018226048,0.000018676363,0.000018480147,0.000018917135,0.000018239245,0.000019123208,0.000018614039,0.00001895354,0.000018245595,0.000018283114,0.000018791614,0.000021389822,0.000019534229,0.00002080637,0.000019070994,0.000020319538,0.000018253582,0.000018650235,0.000018518887,0.000018791561,0.00001820784,0.000018995395,0.000018523162,0.000018847826,0.000018236968,0.000018259885,0.000018759545,0.000021323161,0.000019516187,0.000020738285,0.000018956776,0.00002020547,0.000018143326,0.000018553252,0.00001847012,0.00001855127,0.000018107494,0.000018710894,0.00001834041,0.000018966342,0.000018266015,0.000018532863,0.000019164578,0.000021708367,0.000018570086,0.000019586852,0.000017406413,0.000019976304,0.000018614219,0.000018887844,0.00001861269,0.000021043676,0.00001924008,0.000021205282,0.000019418218,0.000021461581,0.000020216668,0.000021923175,0.000018834351,0.000018559269,0.000015542622,0.000017033779,0.000015379152,0.00001723241,0.000018369554,0.000020439256,0.000020411226,0.000022237042,0.000019749114,0.000021305803,0.00001991063,0.000021444375,0.0000196529,0.000020915131,0.000017541191,0.000016494385,0.000014215271,0.000015603557,0.000013745384,0.000013401431,0.000013659896,0.000015464364,0.000015311673,0.000014807212,0.000014065721,0.000014770234,0.000013775279,0.000013466435,0.00001334184,0.000014656355,0.000014212695,0.000014389515,0.000014161675,0.000014510533,0.000017133518,0.00001606613,0.000018046123,0.000016539134,0.000012516535,0.000013350023],[0.000018000797,0.000019387484,0.000017330767,0.000014545725,0.000015694639,0.00001564489,0.000012873051,0.000014283978,0.000013642959,0.000017087339,0.000016073103,0.000018728442,0.00001761065,0.000020292639,0.000018367435,0.000020901673,0.000019528363,0.000020440542,0.000019353107,0.00001988071,0.000018185316,0.000019217947,0.000018344783,0.000020572408,0.000017993572,0.000020033785,0.000019058994,0.000021356516,0.000018999997,0.000020095093,0.000019363797,0.000021177415,0.000018991519,0.000020376277,0.000019264775,0.000021303913,0.000018761479,0.000020172874,0.000019134737,0.000019822248,0.000017688077,0.000018815392,0.000017766282,0.00002087221,0.000018590144,0.000019700317,0.000018016151,0.000020182093,0.000019650575,0.000021055219,0.000019810059,0.000021715201,0.000019332041,0.00002048316,0.000019634841,0.00002145882,0.000019209188,0.000020501686,0.00001957619,0.00002179834,0.000018424274,0.000019596044,0.000018403396,0.00002021829,0.00001968432,0.000020539926,0.000019859543,0.000021143996,0.000019439545,0.000020254165,0.000019881923,0.000021520587,0.000019840083,0.000021080012,0.000020052248,0.000022079255,0.000018590994,0.000019803732,0.000018650804,0.000020341542,0.000019821624,0.000020581945,0.000019908086,0.000021128959,0.000019533727,0.00002028337,0.000020007665,0.000021593445,0.000019876938,0.000021091411,0.000020065181,0.000022063132,0.000018574656,0.000019772726,0.000018632298,0.000020329559,0.00001982342,0.00002060284,0.000019933068,0.000021154787,0.000019529294,0.000020310896,0.000020064357,0.000021636444,0.000019790346,0.000020949805,0.00001998928,0.000022106835,0.000018577082,0.000019789137,0.000018623095,0.00002034164,0.0000198532,0.00002063188,0.000019956406,0.000021169337,0.000019536166,0.000020314248,0.000020062082,0.000021634854,0.00001985763,0.00002103525,0.000020045693,0.000022101733,0.000018586494,0.000019791534,0.00001863235,0.00002034878,0.000019890513,0.000020666184,0.000019959318,0.000021208458,0.000019538626,0.000020341367,0.000020090512,0.000021667436,0.000019824649,0.000020996067,0.000020033995,0.000022145492,0.000018595376,0.0000198128,0.000018640632,0.000020348236,0.000019867006,0.000020638414,0.000019961564,0.000021179272,0.000019542,0.000020327523,0.000020068856,0.000021650912,0.000019846366,0.000021026524,0.000020044774,0.000022134744,0.000018594435,0.000019816125,0.000018641522,0.000020353864,0.000019865889,0.000020641013,0.000019959394,0.000021175878,0.000019539708,0.000020315254,0.000020026735,0.000021613141,0.000019892846,0.000021103766,0.000020085226,0.000022094862,0.000018578925,0.000019784742,0.000018647708,0.00002032727,0.00001980156,0.000020559699,0.000019885752,0.000021108033,0.000019549978,0.000020288247,0.000020024674,0.00002160665,0.000019900246,0.0000210697,0.000020045367,0.000022058357,0.000018569324,0.000019740282,0.000018633576,0.000020263398,0.0000196637,0.000020396728,0.000019695002,0.000021057365,0.00001972126,0.000020613534,0.000020580632,0.000021793934,0.000019590887,0.000020190215,0.000019497305,0.000022196911,0.000019103121,0.000020344434,0.000018580025,0.000020847467,0.00001989759,0.000021340169,0.00002036231,0.000022604843,0.00002144227,0.000021918366,0.000019632764,0.000019990177,0.000016525622,0.000017403709,0.000016433669,0.000019678931,0.000018748404,0.00002147497,0.000019446183,0.000021786887,0.000019892772,0.000021687798,0.00002074244,0.000023339911,0.000021241936,0.0000214685,0.000019324889,0.000018636047,0.000015126378,0.00001564604,0.000014064849,0.00001479132,0.00001433924,0.000016026419,0.000014920997,0.000016045398,0.000014104689,0.000015170034,0.000013742999,0.000015135108,0.00001296585,0.000015090617,0.000013347071,0.000015170108,0.000013082555,0.00001494498,0.000015010742,0.000017550628,0.00001764959,0.000015960484,0.0000129441305,0.000013791775],[0.000018751067,0.000028443657,0.000021679072,0.000016210042,0.000014515087,0.000016145661,0.000013114045,0.000014131562,0.000014416671,0.000016117201,0.00001621397,0.00001696242,0.000017314067,0.000018438319,0.000017180066,0.000018951427,0.00001861919,0.000019122315,0.0000172117,0.000017916844,0.000016833776,0.000018473203,0.00001756895,0.000018244551,0.000017254182,0.000018301098,0.000018827814,0.000018476956,0.00001836141,0.000019240519,0.000018608556,0.000018806153,0.000018101417,0.000018468483,0.000019099023,0.000018613347,0.00001822914,0.000019766487,0.000018179438,0.000017887785,0.000016445254,0.000017727609,0.000018675277,0.000018703598,0.000017697423,0.000018867537,0.000017569837,0.000019467912,0.000019453973,0.000019987832,0.000019043606,0.00002003283,0.000018422852,0.000020316573,0.00001860357,0.000020239162,0.00001880063,0.000020009613,0.000019920279,0.000019161453,0.000017800114,0.000019266356,0.000017843538,0.000019622245,0.00001870879,0.00002005659,0.000018862014,0.000020574842,0.000018421008,0.00002070165,0.000018870182,0.000020892046,0.000019434743,0.000020601505,0.00002000923,0.00001929134,0.000018073059,0.00001951051,0.000018017388,0.000019910194,0.000018946257,0.000020222802,0.000018984747,0.000020718398,0.000018524965,0.000020839116,0.000019006322,0.000020959338,0.000019425812,0.000020612018,0.000020005395,0.00001928231,0.00001804225,0.000019484703,0.000017995957,0.000019900588,0.000018955674,0.000020221509,0.000019020845,0.000020726422,0.00001856642,0.000020862104,0.000019020283,0.000020936244,0.000019344896,0.000020544372,0.000020044983,0.000019318164,0.000018052664,0.000019501953,0.00001800248,0.00001992427,0.000019003766,0.000020265448,0.000019071576,0.000020767735,0.00001858417,0.00002088653,0.00001903656,0.000020966974,0.000019389481,0.00002059298,0.000020036843,0.000019318955,0.000018055987,0.000019504483,0.00001800212,0.00001993666,0.000019035799,0.000020295194,0.000019125799,0.00002078194,0.000018620663,0.000020916268,0.000019057214,0.000020974814,0.00001939551,0.000020585127,0.000020061794,0.00001932839,0.000018079023,0.000019530411,0.000018020326,0.000019947178,0.000019016383,0.00002028432,0.000019086241,0.000020787946,0.00001859839,0.000020903426,0.000019047457,0.000020971993,0.00001941609,0.000020599715,0.000020045596,0.000019316396,0.00001807766,0.000019524452,0.000018022698,0.000019938505,0.000019015932,0.00002028165,0.000019092831,0.000020777263,0.000018588265,0.000020885931,0.000019038993,0.000020983596,0.000019469173,0.000020640304,0.000020025074,0.000019274697,0.000018071387,0.000019511235,0.000018024675,0.000019914238,0.000018950017,0.000020227237,0.000019018235,0.000020748574,0.00001857315,0.000020879139,0.000019047638,0.000020994927,0.000019490853,0.000020634478,0.000020033844,0.000019288103,0.000018052715,0.000019516261,0.000018074472,0.000019977846,0.000018960718,0.00002024984,0.000019182864,0.0000209889,0.000019031697,0.000021347088,0.000019403004,0.00002114353,0.000018792529,0.000020244934,0.000020055597,0.000020051715,0.000018209334,0.000019821096,0.000018286042,0.000020675609,0.000020098543,0.000020862899,0.000019993475,0.000021073762,0.000020837248,0.000021165219,0.000018169161,0.000018659093,0.000015700161,0.000017805327,0.00001870672,0.00001964726,0.000018638624,0.000019954008,0.000018865989,0.000021024802,0.000020340494,0.000021021773,0.000020983476,0.000021961781,0.000020642312,0.000020995747,0.000018942175,0.00001913775,0.000015374782,0.000016113005,0.000014877192,0.000015777294,0.00001658304,0.000017168946,0.000015379152,0.000016228032,0.000014085561,0.000015026382,0.0000136026065,0.000014672325,0.000013252604,0.000014650346,0.000013269273,0.000014428292,0.000013387865,0.000014807947,0.000016962938,0.000017529452,0.000018630752,0.000015847732,0.00001302632,0.00001292734],[0.000018342665,0.000030575942,0.000021822361,0.000016315644,0.000015718424,0.000014796964,0.000013300235,0.000013686183,0.000013485714,0.000014878242,0.000014221481,0.000016533299,0.000015505566,0.00001645327,0.000015792575,0.00001711286,0.000016882568,0.000017546277,0.00001601015,0.000016156644,0.000015752517,0.000016299626,0.000016006976,0.000016844358,0.000016254548,0.00001713757,0.000016546834,0.000017097005,0.000016507996,0.000016603106,0.000016275473,0.000017115064,0.000016296332,0.000016865028,0.000016215903,0.000016841836,0.000016056756,0.000016340544,0.000015591122,0.000016487937,0.000015468258,0.00001710449,0.00001664553,0.00001726424,0.000015603171,0.000016117832,0.0000160525,0.000017005375,0.000017450226,0.000017816315,0.000017308568,0.000017315122,0.000016444721,0.000017303715,0.000016880733,0.000017758895,0.000017348379,0.000018457371,0.000017399841,0.000016266304,0.00001611167,0.000016527623,0.00001677317,0.000016757005,0.000016893891,0.00001779134,0.000017375947,0.000017382576,0.000017080758,0.000017343515,0.000017502376,0.000018014174,0.000017750395,0.000018559766,0.000017339926,0.000016307322,0.000016370039,0.000016778016,0.000016971984,0.000016966562,0.000017076392,0.000017915305,0.00001747939,0.000017515333,0.000017104345,0.000017457765,0.000017528382,0.000018074266,0.000017722046,0.000018570654,0.000017343018,0.000016298709,0.000016350317,0.000016761704,0.000016952006,0.000016938156,0.000017064687,0.000017945127,0.000017461114,0.000017552571,0.000017089491,0.000017498336,0.000017501125,0.000018087905,0.000017664963,0.000018578412,0.000017384913,0.000016329233,0.00001634388,0.000016759275,0.000016952086,0.000016943699,0.000017091153,0.000017973694,0.000017487177,0.000017565297,0.000017096108,0.00001749812,0.000017521848,0.000018096945,0.000017700715,0.000018583869,0.000017367778,0.00001631854,0.000016351612,0.000016763095,0.000016951246,0.000016937494,0.000017101815,0.000017997416,0.000017496768,0.000017594117,0.000017105518,0.000017521263,0.000017528617,0.000018116494,0.00001770274,0.000018590854,0.000017371638,0.000016324671,0.000016357788,0.0000167752,0.00001696996,0.000016959719,0.000017108992,0.000017967302,0.000017508284,0.000017570306,0.000017107639,0.000017501223,0.00001753283,0.000018106613,0.000017718381,0.000018587643,0.000017357861,0.000016317248,0.000016360924,0.000016778082,0.00001696996,0.00001695925,0.000017105127,0.000017967935,0.000017511858,0.000017575334,0.0000171149,0.000017502107,0.000017545106,0.000018111017,0.000017764061,0.000018590074,0.000017330189,0.000016301958,0.000016370162,0.00001679364,0.000016983528,0.000016971628,0.000017091006,0.000017931185,0.00001752661,0.000017569017,0.000017135151,0.000017501958,0.00001757235,0.000018127226,0.000017769942,0.000018591882,0.000017363607,0.000016332302,0.000016380016,0.000016841403,0.000017057057,0.00001703901,0.00001714782,0.000018016925,0.000017710947,0.000017833672,0.000017253575,0.000017860835,0.000017682847,0.00001853608,0.000017476139,0.000018665074,0.000017715964,0.00001732804,0.000016061993,0.000016706295,0.00001683506,0.000017295599,0.000017690285,0.000018263281,0.000018058347,0.000018102523,0.000017728116,0.000018322175,0.000016440472,0.0000174015,0.000015779942,0.000017776178,0.000017620914,0.000017766602,0.000016020475,0.000016672713,0.000016973892,0.000017406264,0.000017715794,0.00001880689,0.000018662278,0.00001883356,0.000017919885,0.0000181325,0.000017546965,0.00001839678,0.00001561925,0.000017528098,0.000015786385,0.000018226465,0.000016185375,0.000018111707,0.000015459971,0.000017760742,0.000014656704,0.00001638722,0.000014476381,0.00001558204,0.000013433958,0.000015539124,0.000013457385,0.000014809345,0.000013279819,0.000015645815,0.000015982188,0.000019203217,0.000018029454,0.00001577612,0.0000123886375,0.000012516799],[0.000017362661,0.000027581076,0.000022173766,0.00001533956,0.000016314478,0.000013363884,0.000012092636,0.000012097747,0.000012719098,0.000012135173,0.000012983098,0.00001362256,0.000014164444,0.000013998745,0.000014142712,0.000014748205,0.000014593104,0.000014530211,0.000013826252,0.000013765507,0.000013823141,0.0000141908495,0.000014176404,0.000014787258,0.000014829257,0.000013976468,0.0000136212875,0.000013837345,0.000013906878,0.000014630673,0.000014650373,0.000015290923,0.00001487061,0.000013487952,0.000013200762,0.000013479669,0.000013838414,0.00001434117,0.000014645318,0.000015201693,0.000015204449,0.000014035225,0.000013835604,0.000013662841,0.000013774871,0.000013635233,0.000014399221,0.000015042655,0.00001535339,0.000015085955,0.000014617703,0.000014370892,0.000014672562,0.000014668226,0.000014997407,0.00001571252,0.000015543037,0.0000151552285,0.000014262321,0.000013705907,0.000014341525,0.00001471623,0.0000145737595,0.000014989484,0.000015000538,0.000014630924,0.000015029376,0.000014873318,0.000015228145,0.00001536244,0.00001530817,0.000016046837,0.00001559777,0.000015378888,0.0000142446925,0.000014044584,0.000014559645,0.000015024619,0.000014790785,0.000015209378,0.000015091524,0.000014746602,0.000015087495,0.000014949612,0.000015274687,0.000015401021,0.00001535235,0.000016112928,0.000015604332,0.000015352189,0.000014242342,0.000014020334,0.000014550374,0.000014985683,0.000014755353,0.000015214978,0.000015115794,0.000014739656,0.000015100075,0.000014927601,0.000015266518,0.000015377436,0.0000153613,0.000016134394,0.000015630394,0.000015346774,0.000014258664,0.000014016444,0.000014545587,0.000014982152,0.000014760827,0.000015227142,0.000015130274,0.000014758575,0.00001511379,0.000014939379,0.000015272648,0.000015394045,0.000015369813,0.000016143815,0.000015629576,0.000015358559,0.000014250181,0.000014024306,0.000014550443,0.000014985753,0.000014756098,0.000015237834,0.000015146241,0.00001476974,0.000015131428,0.00001494468,0.000015280079,0.000015403224,0.000015385034,0.00001615598,0.000015636686,0.00001536291,0.0000142447325,0.000014040392,0.000014555397,0.000015015022,0.000014786032,0.000015228289,0.000015123349,0.000014777152,0.000015120769,0.000014963347,0.000015288138,0.0000154157,0.000015378244,0.000016148771,0.000015625776,0.000015362895,0.000014241662,0.000014040512,0.000014558562,0.000015015524,0.000014784411,0.000015228581,0.000015125296,0.000014778476,0.000015124374,0.000014964361,0.0000152897,0.000015421509,0.000015379108,0.000016136011,0.0000156163,0.000015375252,0.000014230748,0.000014048776,0.000014570383,0.000015041163,0.000014808992,0.000015216922,0.000015100002,0.000014790573,0.000015134473,0.000015007936,0.000015318656,0.000015464617,0.000015395999,0.00001614149,0.000015620144,0.000015405134,0.000014269941,0.000014068055,0.000014599577,0.00001509518,0.000014908238,0.000015274774,0.000015153508,0.000014947189,0.000015364405,0.00001523025,0.000015583957,0.000015604837,0.000015652457,0.000016459438,0.00001598786,0.000015545824,0.000014781858,0.000014189794,0.000014462195,0.000014624493,0.000014963161,0.000015620366,0.00001566666,0.000015620635,0.00001547828,0.000015392401,0.000015287482,0.000016064,0.000015876443,0.000015961474,0.000015818152,0.00001507639,0.000014788246,0.000013734601,0.000014366903,0.000014660913,0.000015163816,0.000015238487,0.000015832098,0.000015805577,0.000015831238,0.00001598626,0.000015753209,0.00001616933,0.000015464231,0.000016288175,0.000015964837,0.000015722382,0.000015841491,0.000015186537,0.000015523425,0.00001548513,0.000015987738,0.000017101653,0.000017091528,0.000016555197,0.000016076185,0.00001530398,0.000014769656,0.000014832271,0.000014930733,0.000014460112,0.000013534518,0.000014265914,0.000016595697,0.000016835493,0.000016141874,0.000013520675,0.000011380875,0.000011561727],[0.00001797817,0.00002098858,0.000015147251,0.000012711301,0.000014051242,0.000012757827,0.000011634473,0.000011206718,0.000010881108,0.000011350319,0.000010682339,0.000012599748,0.00001227041,0.000013770787,0.000012916153,0.000013593581,0.000012814417,0.000013279931,0.000012262421,0.000013095137,0.000012647214,0.0000132406285,0.000013115383,0.000013197074,0.000013042268,0.000012396958,0.000011309261,0.000012218015,0.000012194083,0.000013249886,0.000013536222,0.00001375581,0.000013173145,0.0000120045515,0.000010851657,0.000012056571,0.000011951698,0.000012700334,0.000012842334,0.0000133581625,0.000013255486,0.0000123897125,0.000010992731,0.000012116381,0.000011962679,0.000012906585,0.000012455961,0.0000129396385,0.000012522829,0.00001319272,0.000012383157,0.000013475647,0.000013252187,0.000013891728,0.000013043387,0.00001317562,0.000012890606,0.000013258382,0.000012089651,0.000013169566,0.0000129549735,0.000013859996,0.000013211304,0.000013180434,0.000012826129,0.0000135312275,0.000012976749,0.000013424353,0.000014134002,0.000014412161,0.000013512233,0.000013538946,0.000012930658,0.000013329861,0.000012211703,0.000013169716,0.000013249661,0.000013998878,0.00001341725,0.000013351068,0.000012924666,0.00001357437,0.000013023711,0.000013470828,0.000014134055,0.000014434156,0.000013521526,0.000013524905,0.000012929117,0.000013317255,0.000012195363,0.000013180873,0.000013207246,0.000013990671,0.000013376353,0.0000133208,0.00001290106,0.000013575561,0.000013015331,0.000013475582,0.000014080511,0.000014428843,0.000013511048,0.000013517272,0.000012941871,0.000013329949,0.000012193932,0.000013193349,0.000013195086,0.000013992778,0.000013377514,0.000013327394,0.000012906338,0.000013578177,0.000013016845,0.000013475376,0.0000141030205,0.000014434114,0.000013522893,0.000013529911,0.000012944575,0.000013331182,0.000012199748,0.000013189223,0.000013208393,0.000013997303,0.000013372654,0.000013328118,0.000012907422,0.000013589355,0.000013016349,0.000013483257,0.000014095477,0.000014443574,0.00001352853,0.000013545391,0.0000129470445,0.000013338483,0.0000122043675,0.00001317567,0.000013235403,0.000014000199,0.000013407566,0.000013351909,0.000012930053,0.00001358074,0.000013026146,0.000013482716,0.000014128046,0.000014444469,0.000013533086,0.000013545352,0.000012944266,0.000013335392,0.000012204635,0.000013174426,0.000013237484,0.000014001441,0.000013405048,0.0000133513995,0.000012930005,0.000013584743,0.000013027166,0.000013483733,0.000014130243,0.000014447569,0.000013533706,0.000013549447,0.000012938083,0.00001333206,0.00001220737,0.000013161856,0.0000132584455,0.000014010324,0.000013431767,0.000013372093,0.00001295202,0.000013585325,0.000013041558,0.000013489495,0.000014179473,0.000014465588,0.0000135547325,0.000013569244,0.000012945736,0.0000133453395,0.000012222736,0.000013193488,0.000013271942,0.000014055449,0.000013480441,0.00001345605,0.000013041696,0.000013645899,0.000013174891,0.0000136450535,0.000014191376,0.000014573788,0.0000136775325,0.000013634777,0.000013133695,0.000013510828,0.000012274798,0.000013324434,0.000013075894,0.00001395247,0.000013102095,0.000013351845,0.00001289074,0.000013615197,0.000012804327,0.00001368082,0.000013528544,0.000013759011,0.000013090043,0.000013144509,0.000013302773,0.000013202071,0.000011793739,0.000013119374,0.0000128687425,0.000014050371,0.000013561108,0.000013914731,0.000013530737,0.000013472833,0.000013670622,0.000013848539,0.000014838751,0.000014725494,0.000013732164,0.000013614728,0.000013213382,0.00001395907,0.000012491495,0.000013841463,0.000012852357,0.00001456295,0.000013444838,0.000015157757,0.00001513521,0.000015725156,0.000014230232,0.000014419242,0.000013797998,0.000014182637,0.000013176211,0.0000139201475,0.000013572299,0.000014358207,0.000015008566,0.000016556478,0.00001483128,0.000013121113,0.000010764797,0.0000108953545],[0.000015876005,0.000019989606,0.000014851831,0.000013292373,0.000013433266,0.00001158052,0.000012338374,9.946508e-6,0.000011307772,9.867091e-6,0.000011098987,0.00001090075,0.000012919478,0.00001220737,0.000013299969,0.000011866281,0.000013110031,0.0000115582325,0.000012648324,0.000011393449,0.000012358205,0.0000112952275,0.000012897603,0.000011184554,0.000012195293,0.000010064032,0.000010869203,0.000010309688,0.000011634638,0.000011156909,0.000012977058,0.000011658897,0.000012137476,9.835992e-6,0.000010404311,0.000010142548,0.000011317202,0.000010526269,0.000012117156,0.000011051141,0.000011984581,0.000010015193,0.00001068131,0.000010369779,0.000011652216,0.000011175043,0.000012371801,0.0000108115155,0.000012376781,0.000011338299,0.000012742711,0.00001215688,0.00001362178,0.000012220276,0.0000131741135,0.000011185343,0.000012345872,0.00001094119,0.000012098186,0.0000115462335,0.000013059817,0.00001203361,0.00001314941,0.000011679595,0.000013271309,0.000012116832,0.000013058471,0.000012505393,0.0000138267005,0.0000125936085,0.000013608497,0.000011573586,0.000012672157,0.000011272564,0.000012401487,0.000011739216,0.000013190644,0.000012111045,0.0000132523255,0.00001180193,0.000013345785,0.0000121684325,0.000013088894,0.00001252622,0.000013820214,0.000012591747,0.000013586557,0.000011542678,0.000012618939,0.000011229635,0.000012351655,0.000011703032,0.000013164254,0.000012089258,0.000013228751,0.000011772511,0.000013318285,0.000012150332,0.00001307047,0.000012494855,0.000013813678,0.000012576121,0.0000135805585,0.000011524331,0.000012600288,0.000011214118,0.00001233901,0.000011696772,0.000013165232,0.000012094228,0.000013232259,0.0000117793525,0.000013327877,0.0000121585035,0.000013080159,0.000012513111,0.000013819252,0.000012593284,0.000013590924,0.0000115428975,0.000012618313,0.000011231733,0.00001235242,0.000011707497,0.000013169792,0.000012097724,0.000013237864,0.000011781532,0.000013336104,0.000012161426,0.000013082641,0.000012513146,0.000013827373,0.000012601633,0.000013605383,0.0000115554985,0.000012636015,0.00001125072,0.000012368829,0.00001172296,0.000013180194,0.000012109658,0.000013252136,0.000011807018,0.0000133569265,0.000012170986,0.0000130934,0.000012536593,0.000013827492,0.000012610398,0.000013607615,0.000011561749,0.000012640993,0.000011253305,0.00001237081,0.00001172249,0.00001317944,0.000012108147,0.000013249988,0.000011805375,0.000013354659,0.000012171972,0.000013093076,0.000012535112,0.000013828243,0.000012611672,0.00001360585,0.000011566667,0.000012647299,0.000011263291,0.000012381173,0.00001173184,0.0000131895995,0.000012119536,0.000013265515,0.000011831703,0.000013387853,0.000012179184,0.000013117785,0.000012580488,0.000013842096,0.000012640449,0.000013623391,0.00001158896,0.000012669825,0.000011280619,0.000012394653,0.000011741869,0.0000132135965,0.000012157947,0.000013310666,0.000011921497,0.000013506615,0.000012246993,0.000013237257,0.000012705858,0.000013951618,0.00001274451,0.000013766624,0.000011645051,0.000012714525,0.000011269609,0.000012308793,0.000011672825,0.000013127634,0.000012086906,0.000013069435,0.000011589788,0.000013043175,0.000012008217,0.000013127834,0.000012351831,0.000013644637,0.0000122735455,0.000012969252,0.0000108479735,0.000012207149,0.000010695357,0.000011613897,0.000011337099,0.000013093887,0.000012469107,0.000013659962,0.000012402149,0.000013920983,0.000012562708,0.000013416264,0.000013170181,0.0000144027645,0.000012848533,0.000013789698,0.00001181363,0.000013130813,0.000011578288,0.000012914402,0.000012023525,0.000014090895,0.000013029077,0.000014421512,0.000012697779,0.000014941231,0.000012874647,0.000013878116,0.000012045711,0.000013266375,0.0000116405545,0.000013161731,0.000012091011,0.000012913602,0.000011696003,0.000013282833,0.0000139801205,0.000014373784,0.000010635844,0.000010028869,0.000010602769],[0.000015920821,0.00001881645,0.00002015576,0.000014449332,0.000014282807,0.000015503008,0.000013824486,0.000013693965,0.0000119776105,0.000013029289,0.000012656155,0.000014193476,0.000012912051,0.000014467754,0.000014177687,0.000014969755,0.000013277753,0.000014150591,0.000013944142,0.000014946262,0.000013180495,0.000013603866,0.000013266856,0.000013381152,0.000012730262,0.000012934098,0.000012681019,0.00001315661,0.000012189153,0.00001298035,0.000013024145,0.000013406262,0.0000125461265,0.000012566291,0.00001237841,0.000013372629,0.000012343705,0.00001280164,0.000012745094,0.000012977603,0.000012396994,0.000012777979,0.000012472199,0.00001354362,0.000012739006,0.000013711124,0.000013416738,0.000014055865,0.000012497083,0.00001370081,0.000013540754,0.0000151813965,0.000013687632,0.000014693314,0.0000140896445,0.000014505276,0.000012651678,0.00001355997,0.000013273018,0.000014751159,0.000013297039,0.0000145797085,0.000014093421,0.000014918877,0.0000130943,0.000014209511,0.000013978307,0.000015386708,0.000013893795,0.000014945506,0.000014498997,0.000014881236,0.000012869516,0.00001377742,0.000013497319,0.000014947445,0.000013445147,0.000014672228,0.000014202141,0.000014961634,0.000013141225,0.000014217278,0.000013999732,0.00001535607,0.000013874569,0.000014913515,0.000014474724,0.0000148269955,0.000012832381,0.000013729389,0.00001346026,0.00001490288,0.000013412235,0.000014637874,0.000014172416,0.0000149299085,0.00001311592,0.00001419269,0.000013987828,0.00001534973,0.000013870891,0.000014900038,0.0000144536325,0.000014807311,0.000012818365,0.00001371447,0.000013447711,0.000014892537,0.000013405878,0.0000146365755,0.000014172119,0.000014933097,0.00001312095,0.000014197509,0.000013989189,0.000015346275,0.00001387273,0.000014905367,0.000014468417,0.000014822909,0.000012830778,0.000013728407,0.000013459772,0.000014904742,0.000013413898,0.000014642371,0.000014178783,0.000014937668,0.000013122928,0.000014200976,0.00001399019,0.000015351223,0.000013874715,0.000014913414,0.000014476256,0.000014839613,0.000012840228,0.000013744965,0.000013473951,0.000014922377,0.000013430244,0.000014659486,0.000014197361,0.000014956899,0.000013140221,0.000014214606,0.000013990137,0.000015347856,0.000013875098,0.0000149173975,0.000014488313,0.000014848036,0.000012846316,0.000013749435,0.000013476354,0.000014924896,0.00001343023,0.00001465975,0.000014196318,0.000014956171,0.000013139707,0.000014215162,0.000013993204,0.000015348749,0.000013875694,0.000014917611,0.000014489031,0.000014850105,0.000012851855,0.0000137548,0.000013484504,0.000014934663,0.000013442647,0.0000146750535,0.000014211895,0.0000149820235,0.000013155908,0.000014234439,0.0000139874555,0.000015354328,0.000013880604,0.000014935275,0.0000145146305,0.000014876696,0.000012872118,0.0000137750685,0.000013490125,0.000014940575,0.000013448199,0.000014695585,0.0000142352,0.0000150361575,0.000013211403,0.000014294471,0.0000139835865,0.000015352629,0.000013907157,0.000014990528,0.000014591963,0.000014930549,0.000012893888,0.00001375703,0.000013431472,0.000014783395,0.000013275031,0.000014412891,0.000014013557,0.000014638125,0.000013021626,0.000014002976,0.000013855475,0.0000151271715,0.000013652799,0.000014453716,0.000013915051,0.000013852067,0.000012532076,0.00001323688,0.000012896705,0.000014392,0.000013296241,0.000014703897,0.000014371097,0.000015401036,0.000013601777,0.0000146033235,0.000014129595,0.000015326605,0.000013885555,0.000015045108,0.000014693958,0.000015217112,0.000013186896,0.000014240155,0.000013604462,0.000015365182,0.000013797852,0.000015774316,0.000014814119,0.00001593972,0.000014767896,0.000016465357,0.000014728808,0.000016044021,0.000013911866,0.000015012932,0.000013892906,0.000013486626,0.000012527558,0.000012958322,0.000014185844,0.000015506748,0.000014671808,0.000013477292,0.000010718198,0.000012912235],[0.000010848802,0.000014494989,0.00001730073,0.000017205923,0.00001658527,0.000016904865,0.000016725857,0.000015989994,0.000016049546,0.000016613621,0.00001655635,0.000016886208,0.00001594769,0.000016680602,0.00001675405,0.000017239774,0.00001659804,0.000017096369,0.00001731088,0.000017084489,0.000016156737,0.00001641226,0.000015030367,0.000015625492,0.000014599897,0.00001565098,0.000015588595,0.000016055914,0.000014709957,0.000015448946,0.000014280914,0.00001514676,0.000014165281,0.000015286725,0.000015478958,0.000016176778,0.000015092588,0.000015774796,0.000014617843,0.000015310696,0.00001426447,0.000015381118,0.000015474337,0.000016394051,0.000015691854,0.000016640593,0.000015893545,0.00001640298,0.000016249976,0.000017076165,0.000016919625,0.00001733399,0.000016451058,0.000017277844,0.000017094868,0.000016688891,0.00001634924,0.000016754162,0.000016934604,0.000017223967,0.00001680431,0.000017588278,0.000016966142,0.00001711043,0.000016856635,0.000016976468,0.000016831062,0.00001730705,0.000016516342,0.000017305052,0.000017285327,0.000016997528,0.000016641674,0.000016990009,0.000017091837,0.000017359915,0.00001683164,0.000017696073,0.000017085042,0.000017161841,0.000016860396,0.000016974687,0.000016837163,0.000017299211,0.000016523196,0.000017316263,0.000017298618,0.000016946964,0.000016594828,0.000016950115,0.00001704808,0.00001730804,0.000016836488,0.00001765651,0.000017053038,0.0000171361,0.000016857084,0.000016983124,0.00001683779,0.000017298782,0.000016518248,0.0000173089,0.00001729705,0.000016930453,0.000016579972,0.00001693512,0.000017034818,0.000017298486,0.000016837628,0.000017655195,0.000017052436,0.00001714002,0.000016856056,0.00001697323,0.00001682838,0.00001729164,0.000016515743,0.000017306093,0.000017294658,0.000016944603,0.000016594446,0.000016948903,0.000017044504,0.000017307397,0.000016836007,0.000017661847,0.000017060212,0.000017144075,0.000016853646,0.000016970074,0.000016827034,0.000017291526,0.00001651428,0.000017304046,0.000017292483,0.000016962082,0.00001661093,0.00001696551,0.000017056813,0.0000173232,0.000016834128,0.000017679711,0.000017079275,0.000017162267,0.00001685371,0.000016957634,0.000016819027,0.000017282013,0.00001651338,0.000017304623,0.000017292565,0.000016965672,0.000016615033,0.000016968423,0.000017058861,0.000017325083,0.000016834627,0.000017679997,0.000017078362,0.000017160417,0.000016856378,0.000016962436,0.000016823007,0.000017287635,0.000016515649,0.000017307511,0.000017293636,0.000016967113,0.000016617569,0.000016973489,0.00001706568,0.000017339016,0.000016838127,0.000017697608,0.00001709526,0.000017183163,0.000016861057,0.000016946931,0.000016817072,0.000017280085,0.000016523212,0.000017314562,0.000017297893,0.000016984597,0.000016637008,0.000016981796,0.00001706192,0.00001733338,0.000016859865,0.000017713346,0.00001711451,0.000017229799,0.000016886948,0.000016910542,0.000016791832,0.000017258824,0.000016540254,0.000017337677,0.000017308568,0.000017050308,0.000016706408,0.000016981778,0.000016967388,0.000017047332,0.000016780818,0.00001740663,0.00001682551,0.000016850978,0.0000167689,0.000017005439,0.00001690327,0.00001729245,0.000016470933,0.000017321168,0.0000167234,0.00001632064,0.000015705553,0.000016302254,0.00001640029,0.000016836086,0.000016754735,0.000017639091,0.000017233051,0.000017695465,0.000016913526,0.0000166102,0.000016556556,0.000016878947,0.000016459328,0.000017235254,0.000017257556,0.000017291328,0.00001693953,0.000017318838,0.000017224507,0.00001760788,0.000017442522,0.000017964903,0.000017424982,0.000018527579,0.000017830016,0.000018064737,0.00001773872,0.00001816909,0.000017016551,0.000017592238,0.000016607586,0.000015946624,0.000013940884,0.000014080028,0.000014718236,0.000016303964,0.000014678847,0.00001638894,0.000013874185,0.000010469515]]]},"check_failures":[],"metadata":{"last_model":"{\"model_name\":\"pt-unet\",\"model_sha\":\"dfcd4b092e05564c36d28f1dfa7293f4233a384d81fe345c568b6bb68cafb0c8\"}","pipeline_version":"","elapsed":[499327,137411463],"dropped":[],"partition":"5299bd913d0c"}}]